latex2rtf-2.3.18/0000755000175000017500000000000013674454570013733 5ustar wilfriedwilfriedlatex2rtf-2.3.18/encodings.c0000777000175000017500000002627213050672355016057 0ustar wilfriedwilfried/* encodings.c - Translate high bit chars into RTF using codepage 1252 Copyright (C) 1995-2010 The Free Software Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. This file is available from http://sourceforge.net/projects/latex2rtf/ Authors: 1995-1997 Ralf Schlatterbeck 1998-2000 Georg Lehner 2001-2002 Scott Prahl */ #include #include #include "main.h" #include "encoding_tables.h" #include "encodings.h" #include "fonts.h" #include "chars.h" #include "parser.h" #include "vertical.h" /* Cyrillic letters with one-letter Roman equivalents can be entered `as is': {\cyr a, b, v, g}, etc. This is also true for some letter sequences that are treated as ligatures by the \LaTeX\ Cyrillic fonts ({\cyr dj, zh, lj, nj, kh, ts, ch, sh, shch, yu} and {\cyr ya}). Note that if you want to write the letter combination {\cyr t{}s} you have to write \texttt{t\{\}s} in order not to produce a {\cyr ts}. */ void CmdOT2Transliteration(int cThis) { int cNext,cThird; switch (cThis) { case 'd': cNext = getTexChar(); if (cNext == 'j') CmdUnicodeChar(0x0452); /* dj */ else { ungetTexChar(cNext); CmdUnicodeChar(ot2Unicode[cThis]); } break; case 'z': cNext = getTexChar(); if (cNext == 'h') CmdUnicodeChar(0x0436); /*zh*/ else { ungetTexChar(cNext); CmdUnicodeChar(ot2Unicode[cThis]); } break; case 'l': cNext = getTexChar(); if (cNext == 'j') CmdUnicodeChar(0x0459); /*lj*/ else { ungetTexChar(cNext); CmdUnicodeChar(ot2Unicode[cThis]); } break; case 'n': cNext = getTexChar(); if (cNext == 'j') CmdUnicodeChar(0x045A); /*nj */ else { ungetTexChar(cNext); CmdUnicodeChar(ot2Unicode[cThis]); } break; case 'k': cNext = getTexChar(); if (cNext == 'h') CmdUnicodeChar(0x0445); else { ungetTexChar(cNext); CmdUnicodeChar(ot2Unicode[cThis]); } break; case 't': cNext = getTexChar(); if (cNext == 's') CmdUnicodeChar(0x0446); /* ts */ else { ungetTexChar(cNext); CmdUnicodeChar(ot2Unicode[cThis]); } break; case 'c': cNext = getTexChar(); if (cNext == 'h') CmdUnicodeChar(0x0447); /*ch*/ else { ungetTexChar(cNext); CmdUnicodeChar(ot2Unicode[cThis]); } break; case 's': cNext = getTexChar(); if (cNext != 'h') { CmdUnicodeChar(ot2Unicode[cThis]); /*s*/ ungetTexChar(cNext); break; } cThird = getTexChar(); if (cThird != 'c') { CmdUnicodeChar(0x0448); /*sh*/ ungetTexChar(cThird); break; } cNext = getTexChar(); if (cNext != 'h') { CmdUnicodeChar(0x0448); /*sh*/ CmdUnicodeChar(ot2Unicode[cThird]); /*c*/ ungetTexChar(cNext); break; } CmdUnicodeChar(0x0449); /*shch*/ break; case 'y': cNext = getTexChar(); if (cNext == 'a') { CmdUnicodeChar(0x044F); /*ya*/ ungetTexChar(cNext); break; } if (cNext == 'u') { CmdUnicodeChar(0x044E); /*yu*/ ungetTexChar(cNext); break; } CmdUnicodeChar(ot2Unicode[cThis]); /*y*/ ungetTexChar(cNext); break; case 'D': cNext = getTexChar(); if (cNext == 'j' || cNext == 'J') CmdUnicodeChar(0x0402); /* dj */ else { ungetTexChar(cNext); CmdUnicodeChar(ot2Unicode[cThis]); } break; case 'Z': cNext = getTexChar(); if (cNext == 'h' || cNext == 'H') CmdUnicodeChar(0x0416); /*zh*/ else { ungetTexChar(cNext); CmdUnicodeChar(ot2Unicode[cThis]); } break; case 'L': cNext = getTexChar(); if (cNext == 'j' || cNext == 'J') CmdUnicodeChar(0x0409); /*lj*/ else { ungetTexChar(cNext); CmdUnicodeChar(ot2Unicode[cThis]); } break; case 'N': cNext = getTexChar(); if (cNext == 'j' || cNext == 'J') CmdUnicodeChar(0x040A); /*nj */ else { ungetTexChar(cNext); CmdUnicodeChar(ot2Unicode[cThis]); } break; case 'K': cNext = getTexChar(); if (cNext == 'h' || cNext == 'H') CmdUnicodeChar(0x0425); else { ungetTexChar(cNext); CmdUnicodeChar(ot2Unicode[cThis]); } break; case 'T': cNext = getTexChar(); if (cNext == 's' || cNext == 'S') CmdUnicodeChar(0x0426); /* ts */ else { ungetTexChar(cNext); CmdUnicodeChar(ot2Unicode[cThis]); } break; case 'C': cNext = getTexChar(); if (cNext == 'h' || cNext == 'H') CmdUnicodeChar(0x0427); /*ch*/ else { ungetTexChar(cNext); CmdUnicodeChar(ot2Unicode[cThis]); } break; case 'S': cNext = getTexChar(); if (cNext != 'h' && cNext != 'H') { CmdUnicodeChar(ot2Unicode[cThis]); /*s*/ ungetTexChar(cNext); break; } cThird = getTexChar(); if (cThird != 'c' && cThird != 'c') { CmdUnicodeChar(0x0428); /*sh*/ ungetTexChar(cThird); break; } cNext = getTexChar(); if (cNext != 'h' && cNext != 'H') { CmdUnicodeChar(0x0428); /*sh*/ CmdUnicodeChar(ot2Unicode[cThird]); /*c*/ ungetTexChar(cNext); break; } CmdUnicodeChar(0x0429); /*shch*/ break; case 'Y': cNext = getTexChar(); if (cNext == 'a' || cNext == 'A') { CmdUnicodeChar(0x042F); /*ya*/ ungetTexChar(cNext); break; } if (cNext == 'u' || cNext == 'U') { CmdUnicodeChar(0x042E); /*yu*/ ungetTexChar(cNext); break; } CmdUnicodeChar(ot2Unicode[cThis]); /*y*/ ungetTexChar(cNext); break; default: CmdUnicodeChar(ot2Unicode[cThis]); break; } } /****************************************************************************** purpose: emits a character based on the TeX encoding code is assumed to be in base 10 ******************************************************************************/ void CmdChar(int code) { char c; if (CurrentFontFamily() == TexFontNumber("Typewriter")) CmdUnicodeChar(cmttUnicode[code]); else CmdUnicodeChar(cmrUnicode[code]); c = getNonBlank(); ungetTexChar(c); } void WriteEightBitChar(unsigned char cThis, FILE *f) { int eightbit_index; if ( cThis <= 127) { fputc(cThis, f); return; } eightbit_index = cThis - 128; diagnostics(6, " WriteEightBitChar '%c' char=%3d index=%d encoding=%2d", cThis, (unsigned int) cThis, eightbit_index, CurrentFontEncoding()); if (CurrentFontEncoding() == ENCODING_RAW) fprintRTF("\\'%2X", (unsigned char) cThis); else if (CurrentFontEncoding() == ENCODING_1251) CmdUnicodeChar(cp1251Unicode[eightbit_index]); else if (CurrentFontEncoding() == ENCODING_APPLE) CmdUnicodeChar(appleUnicode[eightbit_index]); else if (CurrentFontEncoding() == ENCODING_437) CmdUnicodeChar(cp437Unicode[eightbit_index]); else if (CurrentFontEncoding() == ENCODING_850) CmdUnicodeChar(cp850Unicode[eightbit_index]); else if (CurrentFontEncoding() == ENCODING_852) CmdUnicodeChar(cp852Unicode[eightbit_index]); else if (CurrentFontEncoding() == ENCODING_855) CmdUnicodeChar(cp855Unicode[eightbit_index]); else if (CurrentFontEncoding() == ENCODING_865) CmdUnicodeChar(cp865Unicode[eightbit_index]); else if (CurrentFontEncoding() == ENCODING_866) CmdUnicodeChar(cp866Unicode[eightbit_index]); else if (CurrentFontEncoding() == ENCODING_1250) CmdUnicodeChar(cp1250Unicode[eightbit_index]); else if (CurrentFontEncoding() == ENCODING_1252) CmdUnicodeChar(cp1252Unicode[eightbit_index]); else if (CurrentFontEncoding() == ENCODING_LATIN_2) CmdUnicodeChar(latin2Unicode[eightbit_index]); else if (CurrentFontEncoding() == ENCODING_LATIN_3) CmdUnicodeChar(latin3Unicode[eightbit_index]); else if (CurrentFontEncoding() == ENCODING_LATIN_4) CmdUnicodeChar(latin4Unicode[eightbit_index]); else if (CurrentFontEncoding() == ENCODING_LATIN_5) CmdUnicodeChar(latin5Unicode[eightbit_index]); else if (CurrentFontEncoding() == ENCODING_LATIN_9) CmdUnicodeChar(latin9Unicode[eightbit_index]); else if (CurrentFontEncoding() == ENCODING_LATIN_10) CmdUnicodeChar(latin10Unicode[eightbit_index]); else if (CurrentFontEncoding() == ENCODING_NEXT) CmdUnicodeChar(nextUnicode[eightbit_index]); else if (CurrentFontEncoding() == ENCODING_KOI8_R) CmdUnicodeChar(koi8rUnicode[eightbit_index]); else if (CurrentFontEncoding() == ENCODING_KOI8_U) CmdUnicodeChar(koi8uUnicode[eightbit_index]); else if (CurrentFontEncoding() == ENCODING_DEC) CmdUnicodeChar(decmultiUnicode[eightbit_index]); else if (CurrentFontEncoding() == ENCODING_APPLE_CE) CmdUnicodeChar(appleCEUnicode[eightbit_index]); else if (CurrentFontEncoding() == ENCODING_APPLE_CYRILLIC) CmdUnicodeChar(appleCyrrilicUnicode[eightbit_index]); } latex2rtf-2.3.18/auxfile.c0000777000175000017500000000760113050672354015535 0ustar wilfriedwilfried/* * auxfile.c - handle .aux files * * Copyright (C) 1995-2002 The Free Software Foundation * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License as published by the Free * Software Foundation; either version 2 of the License, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. * * You should have received a copy of the GNU General Public License along with * this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * * This file is available from http://sourceforge.net/projects/latex2rtf/ * * Authors: * 2009-2010 Pedro A. Aranda * Scott Prahl */ #include #include #include #include "main.h" #include "utils.h" #include "parser.h" #include "convert.h" #include "auxfile.h" /* List of commands to look for when parsing the aux file */ /* TODO: put all commands in a CommandArray and create */ /* an environment for .aux file handling */ char *acronymAux[] = { "\\newlabel", "\\newacro", "\\newacroplural", "\\harvardcite", "\\bibcite", NULL }; /* * open and read an auxiliary file. * filter lines which start with the * macros contained in char *macros[] * and send them to ConvertString() */ static void FilterAuxFile(FILE *auxFile) { char linebuffer[1024]; char **candidate; int tosFStack; FILE *fStack[16]; if (auxFile == NULL) return; tosFStack = 0; fStack[tosFStack] = auxFile; while (tosFStack != -1) { while (my_fgets(linebuffer,1023,fStack[tosFStack]) != NULL) { if (strlen(linebuffer) == 0) /* should not happen */ continue; if (strstarts(linebuffer,"\\@input{")) { char *fname = strchr(linebuffer,'{'); char *p = strchr(fname,'}'); fname++; *p = '\0'; if (tosFStack >= 15) { diagnostics(WARNING,"AUX File stack overflow for <%s>",fname); } else { if (NULL == (fStack[++tosFStack] = fopen(fname,"r"))) { /* pop, warn and ignore */ diagnostics(WARNING,"File not found: %s",fname); tosFStack--; } else { /* pushed => continue */ diagnostics(WARNING,"([%d] %s)",tosFStack,fname); } } continue; } for (candidate = acronymAux; *candidate != NULL; candidate++) { if (strstarts(linebuffer,*candidate)) { char c1 = linebuffer[strlen(*candidate)]; if (c1 != 0) { char c2 = linebuffer[strlen(*candidate)+1]; if (c1 == '{' || (c1 == ' ' && c2 == '{')) ConvertString(strdup(linebuffer)); } } } } if (tosFStack > 0) { fclose(fStack[tosFStack]); } tosFStack --; } } static int alreadyLoaded = FALSE; void LoadAuxFile(void) { FILE *auxFile; /* load and parse only once */ if (alreadyLoaded == TRUE) return; alreadyLoaded = TRUE; /* ------------------------ */ auxFile = my_fopen(g_aux_name,"rb"); if (NULL == auxFile) { diagnostics(WARNING, "%s not found. Run LaTeX to create it.",g_aux_name); } else { diagnostics(WARNING,"(%s)",g_aux_name); FilterAuxFile(auxFile); } } latex2rtf-2.3.18/stack.c0000777000175000017500000001771113050672355015211 0ustar wilfriedwilfried /* stack.c - code that implements a stack to handle braces and recursive calls created by environments, and open and closing-braces Copyright (C) 1994-2002 The Free Software Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. This file is available from http://sourceforge.net/projects/latex2rtf/ Authors: 1994-1997 Ralf Schlatterbeck 1998-2000 Georg Lehner 2001-2002 Scott Prahl */ #include #include "main.h" #include "stack.h" #include "fonts.h" #define STACKSIZE 10000 static int stack[STACKSIZE]; static int top = 0; int BraceLevel = 0; int BasicPush(int lev, int brack); int BasicPop(int *lev, int *brack); int getStackRecursionLevel(void); void myprintStack(void) { int i, lev, brack; diagnostics(WARNING, "\nStack Status top=%d", top); i = 0; while (2 * i < top) { lev = stack[2 * i + 1]; brack = stack[2 * i + 2]; i++; diagnostics(WARNING, " #%d lev=%d bracket=%d", i, lev, brack); } } void InitializeStack(void) /****************************************************************************** purpose: pushes 0,1 and 1,1 on the stack to start things out ******************************************************************************/ { BraceLevel = 0; RecursionLevel = 1; PushLevels(); BraceLevel = 1; } int BasicPush(int lev, int brack) /****************************************************************************** purpose: pushes the parameters lev and brack on the stack return: top of stack ******************************************************************************/ { diagnostics(6,"pushing rec=%d and bra=%d on stack",lev,brack); ++top; stack[top] = lev; ++top; stack[top] = brack; if (top >= STACKSIZE) diagnostics(ERROR, "Nesting too deep. latex2rtf bug, if file TeXs properly"); return top; } int BasicPop(int *lev, int *brack) /****************************************************************************** purpose: pops the parameters lev and brack from the stack return: top of stack ******************************************************************************/ { *brack = stack[top]; --top; *lev = stack[top]; --top; if (top < 0) diagnostics(ERROR, "Nesting problem. latex2rtf bug, if file TeXs properly"); /* diagnostics(6,"popped rec=%d and bra=%d off stack",*lev,*brack); */ return top; } void PushLevels(void) /****************************************************************************** purpose: wrapper to hide BraceLevel from rest of program ******************************************************************************/ { diagnostics(6, "PushLevels"); CleanStack(); (void) BasicPush(RecursionLevel, BraceLevel); /* myprintStack(); */ } int PopLevels(void) /****************************************************************************** purpose: wrapper to hide BraceLevel from rest of program ******************************************************************************/ { int level; (void) BasicPop(&level, &BraceLevel); return level; } int getStackRecursionLevel(void) /****************************************************************************** purpose: returns the recursion level for the current BraceLevel ******************************************************************************/ { int PopLevel, PopBrack, PPopLevel; PPopLevel = RecursionLevel; BasicPop(&PopLevel, &PopBrack); while (BasicPop(&PopLevel, &PopBrack) >= 0) { if (PopBrack < BraceLevel) break; PPopLevel = PopLevel; } BasicPush(PopLevel, PopBrack); /* push back */ BasicPush(PPopLevel, BraceLevel); return PPopLevel; } void CleanStack(void) /****************************************************************************** purpose: removes multiple identical copies on top of stack ******************************************************************************/ { int PopLevel, PopBrack, PPopLevel, PPopBrack; diagnostics(6, "Cleaning Stack"); if (top < 4) return; BasicPop(&PPopLevel, &PPopBrack); BasicPop(&PopLevel, &PopBrack); while (PPopLevel == PopLevel && PPopBrack == PopBrack && top > 0) BasicPop(&PopLevel, &PopBrack); BasicPush(PopLevel, PopBrack); if (PPopLevel != PopLevel || PPopBrack != PopBrack) BasicPush(PPopLevel, PPopBrack); /* myprintStack(); */ } void PushBrace(void) /****************************************************************************** purpose: sets up the stack so that a closing brace will cause all commands enclosed by the braces to be completed ******************************************************************************/ { /* diagnostics(6,"Pushing Brace Level");*/ BasicPush(RecursionLevel, BraceLevel); PushFontSettings(); ++BraceLevel; } int PopBrace(void) /****************************************************************************** purpose: to return the recursion level of the matching open brace search down through the stack for the lowest recursionlevel that matches the current bracelevel-1. ******************************************************************************/ { int PopLevel, PopBrack, PPopLevel; diagnostics(6, "Popping Brace Level"); BraceLevel--; PopFontSettings(); PPopLevel = RecursionLevel; BasicPop(&PopLevel, &PopBrack); while (PopBrack >= BraceLevel) { if (PopLevel < PPopLevel) PPopLevel = PopLevel; BasicPop(&PopLevel, &PopBrack); } BasicPush(PopLevel, PopBrack); /* push back */ BasicPush(PPopLevel, BraceLevel); return PPopLevel; } /* The stack keeps track of the RecursionLevel and BraceLevel for each command. RecursionLevel is the number of recursive calls to Convert() BraceLevel is the number of open braces '{' The top of stack has the current values of RecursionLevel and BraceLevel. The initial value of RecusionLevel is 1 The initial value of BraceLevel is 0 Before each command and before each opening brace the current values of RecursionLevel and BraceLevel are pushed on the stack. Each closing brace triggers a search of the stack to find the RecursionLevel for the matching open brace. It is the lowest RecursionLevel with the same BraceLevel as now (after subtract of the 1 closing brace found). The initial values for the RecursionLevel and BraceLevel (1,0) always remain on the stack. The begin document command Pushes 1,1 For example: { Text {\em Text} Text } 1 2 3 4 5 1 Push 12 2 Push 13 3 Push 23 4 Bracket 3->2 Pop 23 Pop 13 Pop 12 Pop 11 -found- Push back 11 return to level 1 5 Bracket 2->1 return to level 1 = current -> no return \mbox{\em Text} 1 2 3 4 1 Push 11 RecursionLevel+1 2 Push 22 3 Push 32 4 Bracket 2->1 Pop 32 Pop 22 Pop 11 -found- return to level 1 from level 3 -> double return from convert The necessary Push before every command increases the stack size. If the commands don't include a recursive call the stack is not cleaned up. After every TranslateCommand-function the stack is cleaned For example: \ldots \LaTeX \today \TeX 1 2 3 4 1 Push 11 2 Push 11 3 Push 11 4 Push 11 The clean-up loop pops till the values are not identical and pushes back the last Therefore 11 will only occur once on the stack. */ latex2rtf-2.3.18/main.c0000777000175000017500000010603113664234043015021 0ustar wilfriedwilfried/* main.c - LaTeX to RTF conversion program Copyright (C) 1995-2017 The Free Software Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. This file is available from http://sourceforge.net/projects/latex2rtf/ Authors: 1995 Fernando Dorner, Andreas Granzer, Freidrich Polzer, Gerhard Trisko 1995-1997 Ralf Schlatterbeck 1998-2000 Georg Lehner 2001-2007 Scott Prahl */ #if defined(NOSTDERR) #define ERROUT stdout #else #define ERROUT stderr #endif #include #include #include #include #include #include #include "main.h" #include "mygetopt.h" #include "convert.h" #include "commands.h" #include "chars.h" #include "fonts.h" #include "stack.h" #include "direct.h" #include "ignore.h" #include "version.h" #include "funct1.h" #include "cfg.h" #include "encodings.h" #include "utils.h" #include "parser.h" #include "lengths.h" #include "counters.h" #include "preamble.h" #include "xrefs.h" #include "preparse.h" #include "vertical.h" #include "fields.h" FILE *fRtf = NULL; /* file pointer to RTF file */ char *g_tex_name = NULL; char *g_rtf_name = NULL; char *g_aux_name = NULL; char *g_toc_name = NULL; char *g_lof_name = NULL; char *g_lot_name = NULL; char *g_fff_name = NULL; char *g_ttt_name = NULL; char *g_bbl_name = NULL; char *g_home_dir = NULL; char *progname; /* name of the executable file */ int SpanishMode = FALSE; /* support spanishstyle */ int GermanMode = FALSE; /* support germanstyle */ int FrenchMode = FALSE; /* support frenchstyle */ int RussianMode = FALSE; /* support russianstyle */ int CzechMode = FALSE; /* support czech */ int twoside = FALSE; int g_verbosity_level = WARNING; int g_little_endian = FALSE; /* set properly in main() */ uint16_t g_dots_per_inch = 300; int pagenumbering = TRUE; /* by default use plain style */ int headings = FALSE; int g_processing_preamble = TRUE; /* flag set until \begin{document} */ int g_processing_figure = FALSE; /* flag, set for figures and not tables */ int g_processing_eqnarray = FALSE; /* flag set when in an eqnarry */ int g_processing_arrays = 0; int g_show_equation_number = FALSE; int g_enumerate_depth = 0; int g_suppress_equation_number = FALSE; int g_aux_file_missing = FALSE; /* assume that it exists */ int g_bbl_file_missing = FALSE; /* assume that it exists */ int g_document_type = FORMAT_ARTICLE; int g_document_bibstyle = BIBSTYLE_STANDARD; int g_safety_braces = 0; int g_processing_equation = FALSE; int g_RTF_warnings = FALSE; char *g_config_path = NULL; char *g_script_dir = NULL; char *g_tmp_dir = NULL; char *g_preamble = NULL; int g_escape_parens = FALSE; char *g_package_babel = NULL; int g_equation_display_rtf = TRUE; int g_equation_inline_rtf = TRUE; int g_equation_inline_bitmap = FALSE; int g_equation_display_bitmap = FALSE; int g_equation_comment = FALSE; int g_equation_raw_latex = FALSE; int g_equation_inline_eps = FALSE; int g_equation_display_eps = FALSE; int g_equation_mtef = FALSE; int g_figure_include_direct = TRUE; int g_figure_include_converted = TRUE; int g_figure_comment_direct = FALSE; int g_figure_comment_converted = FALSE; int g_tableofcontents = FALSE; int g_tabular_display_rtf = TRUE; int g_tabular_display_bitmap = FALSE; int g_tab_counter = 0; int g_processing_table = FALSE; int g_processing_tabbing = FALSE; int g_processing_tabular = FALSE; double g_png_equation_scale = 1.00; double g_png_figure_scale = 1.00; int g_latex_figures = FALSE; int g_endfloat_figures = FALSE; int g_endfloat_tables = FALSE; int g_endfloat_markers = TRUE; int g_graphics_package = GRAPHICS_NONE; int indent = 0; char alignment = JUSTIFIED; /* default for justified: */ int RecursionLevel = 0; int twocolumn = FALSE; int titlepage = FALSE; static void OpenRtfFile(char *filename, FILE ** f); static void CloseRtf(FILE ** f); static void ConvertLatexPreamble(void); static void InitializeLatexLengths(void); static void SetEndianness(void); static void ConvertWholeDocument(void); static void print_usage(void); static void print_version(void); extern char *optarg; extern int optind; int main(int argc, char **argv) { int c, x; char *p; char *basename = NULL; double xx; SetEndianness(); progname = argv[0]; InitializeStack(); InitializeLatexLengths(); InitializeBibliography(); ReadCfg(); InitializeDocumentFont(TexFontNumber("Roman"), 20, F_SHAPE_UPRIGHT, F_SERIES_MEDIUM, ENCODING_1252); while ((c = my_getopt(argc, argv, "lhpuvFSVWZ:o:a:b:d:f:i:s:u:C:D:E:M:P:T:t:")) != EOF) { switch (c) { case 'a': g_aux_name = optarg; break; case 'b': g_bbl_name = optarg; break; case 'd': g_verbosity_level = *optarg - '0'; if (g_verbosity_level < 0 || g_verbosity_level > 7) { diagnostics(WARNING, "debug level (-d# option) must be 0-7"); print_usage(); } break; case 'f': sscanf(optarg, "%d", &x); set_fields_use_EQ(x & 1); set_fields_use_REF(x & 2); break; case 'i': g_package_babel = strdup(optarg); break; case 'l': g_package_babel = strdup("latin"); break; case 'o': g_rtf_name = strdup(optarg); break; case 'p': g_escape_parens = TRUE; break; case 'v': print_version(); return (0); case 'C': setPackageInputenc(optarg); break; case 'D': sscanf(optarg, "%d", &x); g_dots_per_inch = (uint16_t) x; if (g_dots_per_inch < 25 || g_dots_per_inch > 600) diagnostics(WARNING, "Dots per inch must be between 25 and 600 dpi\n"); break; case 'E': sscanf(optarg, "%d", &x); diagnostics(3, "Figure option = %s x=%d", optarg, x); g_figure_include_direct = (x & 1) ? TRUE : FALSE; g_figure_include_converted = (x & 2) ? TRUE : FALSE; g_figure_comment_direct = (x & 4) ? TRUE : FALSE; g_figure_comment_converted = (x & 8) ? TRUE : FALSE; diagnostics(3, "Option g_figure_include_direct = %d", g_figure_include_direct); diagnostics(3, "Option g_figure_include_converted = %d", g_figure_include_converted); diagnostics(3, "Option g_figure_comment_direct = %d", g_figure_comment_direct); diagnostics(3, "Option g_figure_comment_converted = %d", g_figure_comment_converted); break; case 'F': g_latex_figures = TRUE; break; case 'M': sscanf(optarg, "%d", &x); diagnostics(3, "Math option = %s x=%d", optarg, x); g_equation_display_rtf = (x & 1) ? TRUE : FALSE; g_equation_inline_rtf = (x & 2) ? TRUE : FALSE; g_equation_display_bitmap= (x & 4) ? TRUE : FALSE; g_equation_inline_bitmap = (x & 8) ? TRUE : FALSE; g_equation_comment = (x & 16) ? TRUE : FALSE; g_equation_raw_latex = (x & 32) ? TRUE : FALSE; g_equation_display_eps = (x & 64) ? TRUE : FALSE; g_equation_inline_eps = (x & 128)? TRUE : FALSE; g_equation_mtef = (x & 256)? TRUE : FALSE; if (!g_equation_comment && !g_equation_inline_rtf && !g_equation_inline_bitmap && !g_equation_raw_latex && !g_equation_inline_eps) g_equation_inline_rtf = TRUE; if (!g_equation_comment && !g_equation_display_rtf && !g_equation_display_bitmap && !g_equation_raw_latex && !g_equation_display_eps) g_equation_display_rtf = TRUE; diagnostics(3, "Math option g_equation_display_rtf = %d", g_equation_display_rtf); diagnostics(3, "Math option g_equation_inline_rtf = %d", g_equation_inline_rtf); diagnostics(3, "Math option g_equation_display_bitmap = %d", g_equation_display_bitmap); diagnostics(3, "Math option g_equation_inline_bitmap = %d", g_equation_inline_bitmap); diagnostics(3, "Math option g_equation_comment = %d", g_equation_comment); diagnostics(3, "Math option g_equation_raw_latex = %d", g_equation_raw_latex); diagnostics(3, "Math option g_equation_display_eps = %d", g_equation_display_eps); diagnostics(3, "Math option g_equation_inline_eps = %d", g_equation_inline_eps); break; case 't': sscanf(optarg, "%d", &x); diagnostics(3, "Table option = %s x=%d", optarg, x); g_tabular_display_rtf = (x & 1) ? TRUE : FALSE; g_tabular_display_bitmap = (x & 2) ? TRUE : FALSE; diagnostics(3, "Table option g_tabular_display_rtf = %d", g_tabular_display_rtf); diagnostics(3, "Table option g_tabular_display_bitmap = %d", g_tabular_display_bitmap); break; case 'P': /* -P path/to/cfg:path/to/script or -P path/to/cfg or -P :path/to/script */ p = strchr(optarg, ENVSEP); if (p) { *p = '\0'; g_script_dir = strdup(p + 1); } if (p != optarg) g_config_path = strdup(optarg); diagnostics(2, "cfg=%s, script=%s", g_config_path, g_script_dir); break; case 's': if (optarg && optarg[0] == 'e') { if (sscanf(optarg, "e%lf", &xx) == 1 && xx > 0) { g_png_equation_scale = xx; } else { diagnostics(WARNING, "Mistake in command line number for scaling equations"); diagnostics(WARNING, "Either use no spaces: '-se1.22' or write as '-s e1.22'"); } } else if (optarg && optarg[0] == 'f') { if (sscanf(optarg, "f%lf", &xx) == 1 && xx > 0) { g_png_figure_scale = xx; } else { diagnostics(WARNING, "Mistake in command line number for scaling figures"); diagnostics(WARNING, "Either use no spaces: '-sf1.35' or write as '-s f1.35'"); } } else { diagnostics(WARNING, "Unknown option '-s' use '-se#' or '-sf#'"); } break; case 'S': g_field_separator = ';'; break; case 'T': g_tmp_dir = strdup(optarg); break; case 'V': print_version(); return (0); case 'W': g_RTF_warnings = TRUE; break; case 'Z': g_safety_braces = FALSE; g_safety_braces = *optarg - '0'; if (g_safety_braces < 0 || g_safety_braces > 9) { diagnostics(WARNING, "Number of safety braces (-Z#) must be 0-9"); print_usage(); } break; case 'h': case '?': default: print_usage(); } } argc -= optind; argv += optind; if (argc > 1) { diagnostics(WARNING, "Only a single file can be processed at a time"); diagnostics(ERROR, " Type \"latex2rtf -h\" for help"); } /* Parse filename. Extract directory if possible. Beware of stdin cases */ if (argc == 1 && strcmp(*argv, "-") != 0) { /* filename exists and != "-" */ char *s, *t, *ext; basename = strdup(*argv); /* parse filename */ s = strrchr(basename, PATHSEP); if (s != NULL) { g_home_dir = strdup(basename); /* parse /tmp/file.tex */ t = strdup(s + 1); free(basename); basename = t; /* basename = file.tex */ s = strrchr(g_home_dir, PATHSEP); *(s + 1) = '\0'; /* g_home_dir = /tmp/ */ } /* remove .tex or .ltx if present */ ext = basename + strlen(basename) - 4; if (strcmp(ext, ".tex") == 0 || strcmp(ext, ".ltx") == 0) { g_tex_name = strdup(basename); *ext = '\0'; } else g_tex_name = strdup_together(basename, ".tex"); if (g_rtf_name == NULL) { g_rtf_name = strdup_together3(g_home_dir,basename,".rtf"); } else if (strcmp(g_rtf_name, g_tex_name) == 0) { diagnostics(ERROR, "rtf file must be different from tex file"); } } if (g_aux_name == NULL && basename != NULL) g_aux_name = strdup_together(basename, ".aux"); if (g_bbl_name == NULL && basename != NULL) g_bbl_name = strdup_together(basename, ".bbl"); if (g_toc_name == NULL && basename != NULL) g_toc_name = strdup_together(basename, ".toc"); if (g_lof_name == NULL && basename != NULL) g_lof_name = strdup_together(basename, ".lof"); if (g_lot_name == NULL && basename != NULL) g_lot_name = strdup_together(basename, ".lot"); if (g_fff_name == NULL && basename != NULL) g_fff_name = strdup_together(basename, ".fff"); if (g_ttt_name == NULL && basename != NULL) g_ttt_name = strdup_together(basename, ".ttt"); if (basename) { diagnostics(2, "latex filename is <%s>", g_tex_name); diagnostics(2, " rtf filename is <%s>", g_rtf_name); diagnostics(2, " aux filename is <%s>", g_aux_name); diagnostics(2, " bbl filename is <%s>", g_bbl_name); diagnostics(2, "home directory is <%s>", (g_home_dir) ? g_home_dir : ""); } if (PushSource(g_tex_name, NULL) == 0) { OpenRtfFile(g_rtf_name, &fRtf); PushTrackLineNumber(TRUE); ConvertWholeDocument(); PopSource(); CloseRtf(&fRtf); printf("\n"); if (0) debug_malloc(); return 0; } else { printf("\n"); return 1; } } static void SetEndianness(void) /* purpose : Figure out endianness of machine. Needed for graphics support */ { unsigned int endian_test = (unsigned int) 0xaabbccdd; unsigned char endian_test_char = *(unsigned char *) &endian_test; if (endian_test_char == 0xdd) g_little_endian = TRUE; } static void ConvertWholeDocument(void) { char *body, *sec_head, *sec_head2, *label; char t[] = "\\begin{document}"; PushEnvironment(DOCUMENT_MODE); /* because we use ConvertString in preamble.c */ PushEnvironment(PREAMBLE_MODE); setTexMode(MODE_VERTICAL); ConvertLatexPreamble(); setPackageBabel(g_package_babel); WriteRtfHeader(); ConvertString(t); g_processing_preamble = FALSE; preParse(&body, &sec_head, &label); diagnostics(2, "\\begin{document}"); diagnostics(5,"label for this section is'%s'", label); diagnostics(5, "next section '%s'", sec_head); show_string(2, body, "body "); ConvertString(body); free(body); if (label) free(label); while (strcmp(sec_head,"\\end{document}")!=0) { preParse(&body, &sec_head2, &g_section_label); label = ExtractLabelTag(sec_head); if (label) { if (g_section_label) free(g_section_label); g_section_label = label; } diagnostics(2, "processing '%s'", sec_head); diagnostics(5, "label is '%s'", g_section_label); diagnostics(5, "next is '%s'", sec_head2); show_string(2, body, "body "); ConvertString(sec_head); ConvertString(body); free(body); free(sec_head); sec_head = sec_head2; } if (g_endfloat_figures && g_fff_name) { g_endfloat_figures = FALSE; if (PushSource(g_fff_name, NULL) == 0) { CmdNewPage(NewPage); CmdListOf(LIST_OF_FIGURES); Convert(); } } if (g_endfloat_tables && g_ttt_name) { g_endfloat_tables = FALSE; if (PushSource(g_ttt_name, NULL) == 0) { CmdNewPage(NewPage); CmdListOf(LIST_OF_TABLES); Convert(); } } if (strcmp(sec_head,"\\end{document}")==0) { diagnostics(2, "\\end{document}"); ConvertString(sec_head); } } static void print_version(void) { fprintf(stdout, "latex2rtf %s\n\n", Version); fprintf(stdout, "Copyright (C) 2012 Free Software Foundation, Inc.\n"); fprintf(stdout, "This is free software; see the source for copying conditions. There is NO\n"); fprintf(stdout, "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n"); fprintf(stdout, "Written by Prahl, Lehner, Granzer, Dorner, Polzer, Trisko, Schlatterbeck.\n"); /* fprintf(stdout, "RTFPATH = '%s'\n", getenv("RTFPATH"));*/ } static void print_usage(void) { char *s; fprintf(stdout, "`%s' converts text files in LaTeX format to rich text format (RTF).\n\n", progname); fprintf(stdout, "Usage: %s [options] input[.tex]\n\n", progname); fprintf(stdout, "Options:\n"); fprintf(stdout, " -a auxfile use LaTeX auxfile rather than input.aux\n"); fprintf(stdout, " -b bblfile use BibTex bblfile rather than input.bbl\n"); fprintf(stdout, " -C codepage charset used by the latex document (latin1, cp850, raw, etc.)\n"); fprintf(stdout, " -d level debugging output (level is 0-6)\n"); fprintf(stdout, " -D dpi number of dots per inch for bitmaps\n"); fprintf(stdout, " -E# figure handling\n"); fprintf(stdout, " -E0 do not include any figures in RTF\n"); fprintf(stdout, " -E1 include figures that need no conversion\n"); fprintf(stdout, " -E2 include figures that need conversion\n"); fprintf(stdout, " -E3 include all figures (default)\n"); fprintf(stdout, " -E4 insert filenames for figures that do not need conversion\n"); fprintf(stdout, " -E8 insert filenames for figures that need conversion\n"); fprintf(stdout, " -f# field handling\n"); fprintf(stdout, " -f0 do not use fields\n"); fprintf(stdout, " -f1 use fields for equations but not \\ref{} & \\cite{}\n"); fprintf(stdout, " -f2 use fields for \\cite{} & \\ref{}, but not equations\n"); fprintf(stdout, " -f3 use fields when possible (default)\n"); fprintf(stdout, " -F use LaTeX to convert all figures to bitmaps\n"); fprintf(stdout, " -h display help\n"); fprintf(stdout, " -i language idiom or language (e.g., german, french)\n"); fprintf(stdout, " -l use latin1 encoding (default)\n"); fprintf(stdout, " -M# math equation handling\n"); fprintf(stdout, " -M1 displayed equations to RTF\n"); fprintf(stdout, " -M2 inline equations to RTF\n"); fprintf(stdout, " -M3 inline and displayed equations to RTF (default)\n"); fprintf(stdout, " -M4 displayed equations to bitmap\n"); fprintf(stdout, " -M6 inline equations to RTF and displayed equations to bitmaps\n"); fprintf(stdout, " -M8 inline equations to bitmap\n"); fprintf(stdout, " -M12 inline and displayed equations to bitmaps\n"); fprintf(stdout, " -M16 insert Word comment field containing the raw LaTeX equation\n"); fprintf(stdout, " -M32 insert raw LaTeX equation delimited by $...$ and \\[...\\]\n"); fprintf(stdout, " -M64 displayed equations to EPS files with filenames in RTF\n"); fprintf(stdout, " -M128 inline equations to EPS files with filenames in RTF\n"); fprintf(stdout, " -o outputfile file for RTF output\n"); fprintf(stdout, " -p option to avoid bug in Word for some equations\n"); fprintf(stdout, " -P path paths to *.cfg & latex2png\n"); fprintf(stdout, " -S use ';' to separate args in RTF fields\n"); fprintf(stdout, " -se# scale factor for bitmap equations\n"); fprintf(stdout, " -sf# scale factor for bitmap figures\n"); fprintf(stdout, " -t# table handling\n"); fprintf(stdout, " -t1 tabular and tabbing environments as RTF\n"); fprintf(stdout, " -t2 tabular and tabbing environments as bitmaps\n"); fprintf(stdout, " -T /path/to/tmp temporary directory\n"); fprintf(stdout, " -v version information\n"); fprintf(stdout, " -V version information\n"); fprintf(stdout, " -W include warnings in RTF\n"); fprintf(stdout, " -Z# add # of '}'s at end of rtf file (# is 0-9)\n\n"); fprintf(stdout, "Examples:\n"); fprintf(stdout, " latex2rtf foo convert foo.tex to foo.rtf\n"); fprintf(stdout, " latex2rtf foo.RTF convert foo to foo.RTF\n"); fprintf(stdout, " latex2rtf -P ./cfg/:./scripts/ foo use alternate cfg and latex2png files\n"); fprintf(stdout, " latex2rtf -M12 foo replace equations with bitmaps\n"); fprintf(stdout, " latex2rtf -t3 foo tables as RTF *and* bitmaps\n"); fprintf(stdout, " latex2rtf -i russian foo assume russian tex conventions\n"); fprintf(stdout, " latex2rtf -C raw foo retain font encoding in rtf file\n"); fprintf(stdout, " latex2rtf -f0 foo create foo.rtf without fields\n"); fprintf(stdout, " latex2rtf -d4 foo lots of debugging information\n\n"); fprintf(stdout, "Report bugs to \n\n"); fprintf(stdout, "$RTFPATH designates the directory for configuration files (*.cfg)\n"); s = getenv("RTFPATH"); fprintf(stdout, "$RTFPATH = '%s'\n\n", (s) ? s : "not defined"); s = CFGDIR; fprintf(stdout, "CFGDIR compiled-in directory for configuration files (*.cfg)\n"); fprintf(stdout, "CFGDIR = '%s'\n\n", (s) ? s : "not defined"); fprintf(stdout, "latex2rtf %s\n", Version); exit(1); } void diagnostics(int level, char *format, ...) /**************************************************************************** purpose: Writes the message to stderr depending on debugging level ****************************************************************************/ { static int first = TRUE; char buffer[512], *buff_ptr; va_list apf; int i; buff_ptr = buffer; va_start(apf, format); if (level <= g_verbosity_level) { CurrentEnvironmentCount(); if (!first) fprintf(ERROUT,"\n"); fprintf(ERROUT, "%s:%-3d ",CurrentFileName(),CurrentLineNumber()); switch (level) { case 0: fprintf(ERROUT, "Error! "); break; case 1: if (g_RTF_warnings) { vsnprintf(buffer, 512, format, apf); fprintRTF("{\\plain\\cf2 [latex2rtf:"); while (*buff_ptr) { putRtfCharEscaped(*buff_ptr); buff_ptr++; } fprintRTF("]}"); } break; case 5: case 6: fprintf(ERROUT, " rec=%d ", RecursionLevel); /*fall through */ case 2: case 3: case 4: for (i = 0; i < BraceLevel; i++) fprintf(ERROUT, "{"); for (i = 8; i > BraceLevel; i--) fprintf(ERROUT, " "); for (i = 0; i < RecursionLevel; i++) fprintf(ERROUT, " "); break; default: break; } vfprintf(ERROUT, format, apf); first = FALSE; } va_end(apf); if (level == 0) { fprintf(ERROUT, "\n"); fflush(ERROUT); if (fRtf) fflush(fRtf); exit(EXIT_FAILURE); } } static void InitializeLatexLengths(void) { /* Default Page Sizes */ setLength("pageheight", 795 * 20); setLength("hoffset", 0 * 20); setLength("oddsidemargin", 62 * 20); setLength("headheight", 12 * 20); setLength("textheight", 550 * 20); setLength("footskip", 30 * 20); setLength("marginparpush", 5 * 20); setLength("pagewidth", 614 * 20); setLength("voffset", 0 * 20); setLength("topmargin", 18 * 20); setLength("headsep", 25 * 20); setLength("textwidth", 345 * 20); setLength("columnwidth", 345 * 20); setLength("linewidth", 345 * 20); setLength("columnsep", 10 * 20); setLength("evensidemargin", 11 * 20); /* Default Paragraph Sizes */ setLength("baselineskip", 12 * 20); setLength("parindent", 15 * 20); setLength("parskip", 0 * 20); setCounter("page", 0); setCounter("part", 0); setCounter("chapter", 0); setCounter("section", 0); setCounter("subsection", 0); setCounter("subsubsection", 0); setCounter("paragraph", 0); setCounter("subparagraph", 0); setCounter("figure", 0); setCounter("table", 0); setCounter("equation", 0); setCounter("footnote", 0); setCounter("mpfootnote", 0); setCounter("secnumdepth", 2); setCounter("endfloatfigure", 0); setCounter("endfloattable", 0); /* vertical separation lengths */ setLength("topsep", 3 * 20); setLength("partopsep", 2 * 20); setLength("parsep", (int) (2.5 * 20)); setLength("itemsep", 0 * 20); setLength("labelwidth", 0 * 20); setLength("labelsep", 0 * 20); setLength("itemindent", 0 * 20); setLength("listparindent", 0 * 20); setLength("leftmargin", 0 * 20); setLength("floatsep", 0 * 20); setLength("intextsep", 0 * 20); setLength("textfloatsep", 0 * 20); setLength("abovedisplayskip", 0 * 20); setLength("belowdisplayskip", 0 * 20); setLength("abovecaptionskip", 0 * 20); setLength("belowcaptionskip", 0 * 20); setLength("intextsep", 0 * 20); setLength("smallskipamount", 3 * 20); setLength("medskipamount", 6 * 20); setLength("bigskipamount", 12 * 20); setLength("marginparsep", 10 * 20); } static void ConvertLatexPreamble(void) /**************************************************************************** purpose: reads the LaTeX preamble (to \begin{document} ) for the file ****************************************************************************/ { char *raw_latex; char t[] = "\\begin|{|document|}"; FILE *rtf_file; /* Here we switch the file pointers ... it is important that nothing get printed to fRtf until the entire preamble has been processed. This is really hard to track down, so the processed RTF get sent directly to stderr instead. */ rtf_file = fRtf; fRtf = ERROUT; raw_latex = getSpacedTexUntil(t, 1); diagnostics(2, "Read LaTeX Preamble"); diagnostics(5, "Entering ConvertString() from ConvertLatexPreamble"); g_preamble = strdup_nocomments(raw_latex); free(raw_latex); show_string(2, g_preamble, "preamble"); ConvertString(g_preamble); diagnostics(5, "Exiting ConvertString() from ConvertLatexPreamble"); fRtf = rtf_file; } void OpenRtfFile(char *filename, FILE ** f) /**************************************************************************** purpose: creates output file and writes RTF-header. params: filename - name of outputfile, possibly NULL for already open file f - pointer to filepointer to store file ID ****************************************************************************/ { if (filename == NULL) { diagnostics(4, "Writing RTF to stdout"); *f = stdout; } else { *f = fopen(filename, "w"); if (*f == NULL) diagnostics(ERROR, "Error opening RTF file <%s>\n", filename); diagnostics(2, "Opened RTF file <%s>", filename); } } void CloseRtf(FILE ** f) /**************************************************************************** purpose: closes output file. params: f - pointer to filepointer to invalidate globals: g_tex_name; ****************************************************************************/ { int i; CmdEndParagraph(0); if (BraceLevel > 1) { diagnostics(WARNING, "Mismatched '{' in RTF file, Conversion may cause problems."); diagnostics(WARNING, "This is often caused by having environments that span "); diagnostics(WARNING, "\\section{}s. For example "); diagnostics(WARNING, " \\begin{small} ... \\section{A} ... \\section{B} ... \\end{small}"); diagnostics(WARNING, "will definitely fail."); } if (BraceLevel - 1 > g_safety_braces) diagnostics(WARNING, "Try translating with 'latex2rtf -Z%d %s'", BraceLevel - 1, g_tex_name); fprintf(*f, "}\n"); for (i = 0; i < g_safety_braces; i++) fprintf(*f, "}"); if (*f != stdout) { if (fclose(*f) == EOF) { diagnostics(WARNING, "Error closing RTF-File"); } } *f = NULL; diagnostics(4, "Closed RTF file"); fprintf(ERROUT,"\n"); } void putRtfCharEscaped(char cThis) /**************************************************************************** purpose: output a single escaped character to the RTF file this is primarily useful for the verbatim-like enviroments ****************************************************************************/ { if (getTexMode() == MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); if (cThis == '\\') fprintRTF("%s","\\\\"); else if (cThis == '{') fprintRTF("%s", "\\{"); else if (cThis == '}') fprintRTF("%s", "\\}"); else if (cThis == '\n') fprintRTF("%s", "\n\\par "); else fprintRTF("%c",cThis); } /**************************************************************************** purpose: output a string with escaped characters to the RTF file this is primarily useful for the verbatim-like enviroments ****************************************************************************/ void putRtfStrEscaped(const char * string) { char *s = (char *) string; if (string == NULL) return; while (*s) putRtfCharEscaped(*s++); } void fprintRTF(char *format, ...) /**************************************************************************** purpose: output a formatted string to the RTF file. It is assumed that the formatted string has been properly escaped for the RTF file. *ALL* output to the RTF file passes through this routine. ****************************************************************************/ { char buffer[1024]; unsigned char *text; char last='\0'; va_list apf; va_start(apf, format); vsnprintf(buffer, 1024, format, apf); va_end(apf); text = (unsigned char *) buffer; while (*text) { WriteEightBitChar(text[0], fRtf); if (*text == '{' && last != '\\') PushFontSettings(); if (*text == '}' && last != '\\') PopFontSettings(); if (*text == '\\' && last != '\\') MonitorFontChanges(text); last= *text; text++; } } char *getTmpPath(void) /**************************************************************************** purpose: return the directory to store temporary files ****************************************************************************/ { size_t n; char *t = NULL; char *u = NULL; char pathsep_str[2] = { PATHSEP, 0 }; #if defined(MSDOS) /* first use any temporary directory specified as an option */ if (g_tmp_dir) { t = strdup(g_tmp_dir); /* next try the environment variable TMPDIR */ } else { u = getenv("TMPDIR"); if (u != NULL) t = strdup(u); } /* finally just return ".\\" */ if (t==NULL) t = strdup(".\\"); /* append a final '/' if missing */ n=strlen(t)-1; if (n > 1 && t[n] != PATHSEP) { u = strdup_together(t, pathsep_str); free(t); t = u; } #else /* first use any temporary directory specified as an option */ if (g_tmp_dir) { t = strdup(g_tmp_dir); /* next try the environment variable TMPDIR */ } else { u = getenv("TMPDIR"); if (u != NULL) t = strdup(u); } /* finally just return "/tmp/" */ if (t==NULL) t = strdup("/tmp/"); /* append a final '/' if missing */ n=strlen(t)-1; if (n > 1 && t[n] != PATHSEP) { u = strdup_together(t, pathsep_str); free(t); t = u; } #endif return t; } char *my_strdup(const char *str) /**************************************************************************** purpose: duplicate string --- exists to ease porting ****************************************************************************/ { char *s = NULL; unsigned long strsize; strsize = strlen(str) + 1; s = (char *) malloc(strsize); *s = '\0'; if (s == NULL) diagnostics(ERROR, "Cannot allocate memory to duplicate string"); my_strlcpy(s, str, strsize); return s; } FILE *my_fopen(char *path, char *mode) /**************************************************************************** purpose: opens "g_home_dir/path" and ****************************************************************************/ { char *name; FILE *p; if (path == NULL || mode == NULL) return (NULL); if (g_home_dir == NULL) name = strdup(path); else name = strdup_together(g_home_dir, path); p = fopen(name, mode); if (p == NULL) { if (strstr(path, ".tex") != NULL) p = (FILE *) open_cfg(path, FALSE); } else diagnostics(2, "Opened '%s'", name); if (p == NULL) { diagnostics(WARNING, "Cannot open '%s'", name); fflush(NULL); } free(name); return p; } void debug_malloc(void) { char c; diagnostics(2, "Malloc Debugging --- press return to continue"); fflush(NULL); if (2 <= g_verbosity_level) { fscanf(stdin, "%c", &c); c++;} } latex2rtf-2.3.18/direct.c0000777000175000017500000000573513050672355015361 0ustar wilfriedwilfried /* direct.c - Convert simple LaTeX commands using direct.cfg Copyright (C) 1995-2002 The Free Software Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. This file is available from http://sourceforge.net/projects/latex2rtf/ Authors: 1995-1997 Ralf Schlatterbeck 1998-2000 Georg Lehner 2001-2002 Scott Prahl */ #include #include #include #include "main.h" #include "direct.h" #include "fonts.h" #include "cfg.h" #include "utils.h" #define MAXFONTLEN 100 void WriteCFGFontNumber(char **cfg_stream) /****************************************************************************** purpose: reads the fontname from cfg_stream and returns the appropriate font number. Supports the *FONTNAME* syntax in direct.cfg and in style.cfg ******************************************************************************/ { int n=-1; char *font_name, *star; *cfg_stream += 1; /* move past initial '*' */ if (**cfg_stream == '*') { /* two stars in a row ... bail */ fprintRTF("*"); return; } font_name = strdup(*cfg_stream); star = strchr(font_name,'*'); if (star) { *star = '\0'; n = TexFontNumber(font_name); if (n < 0) diagnostics(ERROR, "Unknown font <%s>\nFound in cfg line <%s>", font_name, cfg_stream); *cfg_stream += strlen(font_name); fprintRTF("%d",n); } free(font_name); } int TryDirectConvert(char *command) /****************************************************************************** purpose: uses data from direct.cfg to try and immediately convert some LaTeX commands into RTF commands. ******************************************************************************/ { char *buffpoint, *RtfCommand, *TexCommand; TexCommand = strdup_together("\\", command); RtfCommand = SearchCfgRtf(TexCommand, DIRECT_A); if (RtfCommand == NULL) { free(TexCommand); return FALSE; } buffpoint = RtfCommand; diagnostics(4, "Directly converting %s to %s", TexCommand, RtfCommand); while (buffpoint[0] != '\0') { if (buffpoint[0] == '*') WriteCFGFontNumber(&buffpoint); else fprintRTF("%c", *buffpoint); ++buffpoint; } free(TexCommand); return TRUE; } latex2rtf-2.3.18/commands.h0000777000175000017500000000271013050672360015677 0ustar wilfriedwilfried#ifndef _INCLUDED_COMMANDS_H #define _INCLUDED_COMMANDS_H 1 #define PREAMBLE_MODE 1 #define DOCUMENT_MODE 2 #define ITEMIZE_MODE 3 #define ENUMERATE_MODE 4 #define DESCRIPTION_MODE 5 #define INPARAENUM_MODE 6 #define LETTER_MODE 8 #define IGNORE_MODE 9 #define HYPERLATEX_MODE 10 #define FIGURE_MODE 11 #define GERMAN_MODE 12 #define FRENCH_MODE 13 #define RUSSIAN_MODE 14 #define GENERIC_MODE 15 #define CZECH_MODE 16 #define APACITE_MODE 17 #define NATBIB_MODE 18 #define HARVARD_MODE 19 #define AUTHORDATE_MODE 20 #define VERSE_MODE 21 #define VERBATIM_MODE 22 #define QUOTE_MODE 23 #define QUOTATION_MODE 24 #define BIBLIOGRAPHY_MODE 25 #define HYPERREF_MODE 26 #define ACRONYM_MODE 27 #define SPACING_MODE 28 #define ON 0x4000 #define OFF 0x0000 void PushEnvironment(int code); void PopEnvironment(void); int CallCommandFunc(char *cCommand); void CallParamFunc(char *cCommand, int AddParam); int CurrentEnvironmentCount(void); /* * move this here to associate the CommandArray * with the implementation of the commands * i.e. place the array for the acronym commands * in acronyms.c */ typedef struct commandtag { char *cmd_name; /* LaTeX command name without \ */ void (*func) (int); /* function to convert LaTeX to RTF */ int param; /* used in various ways */ } CommandArray; #endif latex2rtf-2.3.18/README.DOS0000777000175000017500000000661013050672360015234 0ustar wilfriedwilfriedLast updated July 16, 2003, W. Hennings The Unix and Mac distributions do not contain an executable for DOS / Windows. Instead, get the DOS / Windows port as file latex2rtf-x.xx_dos.zip (where x.xx is the version number) from http://sourceforge.net/projects/latex2rtf/ To install latex2rtf, extract all files from the zip archive to C:\l2r or to another folder (i.e. directory) of your choice, preserving the folder structure (winzip: check "use folder names") If you extracted them to another folder, edit the files L2R.BAT, L2RSEM.BAT and L2RPREP.BAT and change the pathes to LATEX2RT.EXE and to the cfg files to the folder where you put them. The file L2R.BAT or L2RSEM.BAT will call the DJGPP generated executable LATEX2RT.EXE. Make sure that the folder containing the files L2R.BAT, L2RSEM.BAT, L2RPREP.BAT and LATEX2PN.BAT is in your search path (e.g. adding to your autoexcec.bat: "PATH=...;...;C:\l2r") or call L2RPREP.BAT once before starting conversions. If you want to use the option to convert equations to bitmaps (-M 12), you must have TeX, ImageMagick and Ghostscript installed. This works only on win32 systems (win95, win98, winNT4, win2000, winXP) because ImageMagick is available only for win32, not for pure DOS. Get the ImageMagick version for Win2000, it will also work under win95 and win98. Either the folders where TeX, ImageMagick and Ghostscript are installed must be in your search path, or you must edit the file L2RPREP.BAT and specify the folders where TeX, ImageMagick and Ghostscript are installed in the SET commands, e.g. ... rem set folder containing latex2rt.exe and netpbm executables here: set l2rpath=C:\l2r rem set folder containing Ghostscript executables here: %l2rpath%\which gswin32c>nul if errorlevel 1 SET PATH=C:\Progra~1\gs\gs8.00\bin;C:\Progra~1\gs\gs8.00\lib;%PATH% rem set folder containing ImageMagick executables here: %l2rpath%\which identify>nul if errorlevel 1 SET PATH=C:\Progra~1\ImageM~1;%PATH% rem set folder containing LaTeX and dvips executables here: %l2rpath%\which latex>nul if errorlevel 1 SET PATH=C:\TEXMF\MIKTEX\BIN;%PATH% %l2rpath%\which latex2rt>nul if errorlevel 1 SET PATH=%l2rpath%;%PATH% Preparing the conversion: ------------------------ If the folders where TeX, ImageMagick and Ghostscript are installed are not your search path, call L2RPREP.BAT once after opening the command prompt and before starting conversions. Starting the conversion: ------------------------ Best, copy the file(s) to be converted into an empty folder. cd to this folder. Start conversion by calling l2r.bat (without -S option) or l2rsem.bat (with -S option). Whether you must use the -S option depends on the windows system in which the resulting rtf file will be opened ("target system"). In the target system, check "Start - Settings - Control Panel" ("Start - Einstellungen - Systemsteuerung") and open "country settings" ("Ländereinstellungen"). Click the tab "numbers" ("Zahlen"). The last entry in this menu is "list separator" ("Listentrennzeichen"). This is either a comma or a semicolon. If it's a comma (default for English versions of Windows), use l2r.bat or call latex2rt.exe without -S parameter. If it's a semicolon (default for German versions of Windows), use l2rsem.bat or call latex2rt.exe with -S parameter. Sorry, I don't know what the defaults are for other countries. latex2rtf-2.3.18/winmake.bat0000777000175000017500000000013712310642723016047 0ustar wilfriedwilfriedmake RM=del RMDIR="rmdir /s /q" MV=ren CC=gcc MKDIR="mkdir" SHELL=cmd.exe PLATFORM=-DMSDOS %* latex2rtf-2.3.18/styles.h0000777000175000017500000000060713050672360015424 0ustar wilfriedwilfried#ifndef _STYLES_INCLUDED #define _STYLES_INCLUDED 1 enum { INSERT_STYLE_NORMAL = 1, INSERT_STYLE_FOR_HEADER, INSERT_STYLE_NO_STYLE }; void InsertBasicStyle(const char *rtf, int how); void InsertStyle(const char *the_style); void SetCurrentStyle(const char *style); char *GetCurrentStyle(void); int IsSameAsCurrentStyle(const char *s); void InsertCurrentStyle(void); #endif latex2rtf-2.3.18/preamble.h0000777000175000017500000000217713050672360015674 0ustar wilfriedwilfried#define FORMAT_ARTICLE 1 #define FORMAT_REPORT 2 #define FORMAT_BOOK 3 #define FORMAT_SLIDES 4 #define FORMAT_LETTER 5 #define FORMAT_APA 6 #define TITLE_TITLE 1 #define TITLE_AUTHOR 2 #define TITLE_DATE 3 #define TITLE_TITLEPAGE 4 #define TITLE_AFFILIATION 5 #define TITLE_ABSTRACT 6 #define TITLE_ACKNOWLEDGE 7 #define GRAPHICS_NONE 0 #define GRAPHICS_GRAPHICS 1 #define GRAPHICS_GRAPHICX 2 #define CFOOT 1 #define LFOOT 2 #define RFOOT 3 #define LHEAD 4 #define CHEAD 5 #define RHEAD 6 #define RIGHT_SIDE 347 #define BOTH_SIDES 348 #define LEFT_SIDE 349 void CmdDocumentStyle(int code); void CmdUsepackage(int code); void CmdTitle(int code); void CmdAnd(int code); void CmdMakeTitle(int code); void CmdPreambleBeginEnd(int code); void CmdTableOfContents(int code); void PlainPagestyle(void); void CmdPagestyle(int code); void CmdHeader(int code); void RtfHeader(int where, char *what); void CmdHyphenation(int code); void WriteRtfHeader(void ); void CmdHeadFoot(int code); void CmdThePage(int code); void setPackageInputenc(char * option); void setPackageBabel(char * option); void CmdGeometry(int code); latex2rtf-2.3.18/README0000777000175000017500000000717013664465674014635 0ustar wilfriedwilfriedlatex2rtf is a translator program that translates LaTeX text into the RTF format used by various text processors, most notably Word. For the Copyright of the Program see the file Copyright. Version 2.3.18 resolves "latex2rtf ignores '-C'" (Michael Artmann 2018-09-08), adds support for user defined counters accessed through \the (Pedro Andres Aranda Gutierrez 2018-12-28), cleans up Makefile, isolating DESTDIR from PREFIX (Pedro Andres Aranda Gutierrez 2018-12-28), adds hebrew.cfg Version 2.3.17 adds support for non-ascii characters in verbatim blocks and theorem captions (Alex Itkes 2018-03-14) and support for the proof environment (Alex Itkes 2018-03-19) Version 2.3.16 fixes ukrainian.cfg and adds check for buffer overflow during construction of command line for latex2rt.exe in l2rshell.cpp Version 2.3.15 fixes a bug when \int was followed by \frac Version 2.3.14 fixes a bug when \int was followed by \left or \right and adds support for package bm, supporting \bm (bold math) Version 2.3.13 fixes a bug in main.c line 368 where a comparison was made using "=". Changed to using strcmp() !! Does not affect the windows version !! Version 2.3.12 fixes two bugs: - if output file is equal to input file, input file was deleted. Added check for file id equality. - in windows gui shell, default output file extension in the file selection window was .tex. Changed to .rtf To install (on a UNIX system) On modern Linux distributions, you would prefer to install LaTeX2RTF by the package manager of your distribution, which also provides an easy means for update and uninstallation. If your package manager does not provide the LaTeX2RTF package or you need to install LaTeX2RTF from the sources for some other reason, you should consider using 'checkinstall' which creates a package for your package manager which then can be installed and uninstalled by the package manager. If you nevertheless need to run install from the sources, note the following: If your 'mkdir' doesn't support the '-p' option, then create the necessary directories by hand and remove the option from the '$MKDIR' variable. If you have other problems, just copy 'latex2rtf' and 'latex2png' to a binary directory, and move the contents of the 'cfg/' directory to the location specified by '$CFG_INSTALL'. - Edit Makefile for your local configuration. The default install is reasonable, but if you do not have root access, then you might need to set $DESTDIR to be your home directory. - make - If this is not your first-time installation, you may want to preserve your old configuration (*.cfg) files. Copy them to a safe place before installing. - [sudo] make install - make check (expect warnings but no errors) [OPTIONAL] This tests LaTeX2RTF on a variety of LaTeX files. Expect a whole lot of warnings, but no outright errors. (On IBM AIX, use 'gmake check'.) Note that this will check the basic functionality of the 'latex2png' script, and then that of 'latex2rtf'. Reporting bugs to the homepage at Sourceforge http://sourceforge.net/projects/latex2rtf/ * Please verify your bug with the most recent version of the program. * Please provide the version of the program you are using * Please provide your operating system and version number * Provide a short latex file that exhibits the bug. It is imperative that you spend time isolating the problem into a small latex file. This shows that you actually care enough about the problem to spend some of your time trying to help isolate the bug. * Be patient. Provide patches. Enjoy. latex2rtf-2.3.18/letterformat.c0000777000175000017500000001236013050672355016607 0ustar wilfriedwilfried /* letterformat.c - LaTeX commands specific to the letter format Copyright (C) 2001-2002 The Free Software Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. This file is available from http://sourceforge.net/projects/latex2rtf/ Authors: 2001-2002 Scott Prahl */ #include #include #include "main.h" #include "parser.h" #include "letterformat.h" #include "cfg.h" #include "commands.h" #include "funct1.h" #include "convert.h" #include "vertical.h" static int g_letterOpened = FALSE; /* true after \opening */ static char *g_letterToAddress = NULL; static char *g_letterReturnAddress = NULL; static char *g_letterSignature = NULL; void CmdSignature(int code) /****************************************************************************** purpose: saves the signature in the letter document style Use in the preamble or between \begin{letter} and \opening ******************************************************************************/ { if (g_letterSignature) free(g_letterSignature); g_letterSignature = getBraceParam(); } void CmdAddress(int code) /****************************************************************************** purpose: saves the address in the letter document style Use in the preamble or between \begin{letter} and \opening ******************************************************************************/ { if (g_letterReturnAddress) free(g_letterReturnAddress); g_letterReturnAddress = getBraceParam(); } void CmdLetter(int code) /****************************************************************************** purpose: pushes all necessary letter-commands on a stack parameter: code: on/off-option for environment ******************************************************************************/ { if (code & ON) { PushEnvironment(LETTER_MODE); if (g_letterToAddress) free(g_letterToAddress); g_letterToAddress = getBraceParam(); } else { PopEnvironment(); } } void CmdOpening(int code) /****************************************************************************** purpose: /opening{Dear...} prints return address, Date, to address and opening ******************************************************************************/ { char oldalignment; char *s; /* put return address and date at the top right */ g_letterOpened = TRUE; oldalignment = getAlignment(); setAlignment(RIGHT); fprintRTF("\n\\par\\pard\\q%c ", getAlignment()); diagnostics(5, "Entering ConvertString() from CmdAddress"); ConvertString(g_letterReturnAddress); diagnostics(5, "Exiting ConvertString() from CmdAddress"); /* put the date on the right */ fprintRTF("\\par\\chdate "); /* put addressee on the left */ setAlignment(LEFT); fprintRTF("\n\\par\\pard\\q%c ", getAlignment()); diagnostics(4, "Entering Convert() from CmdOpening"); ConvertString(g_letterToAddress); diagnostics(4, "Exiting Convert() from CmdOpening"); /* finally print the opening*/ s = getBraceParam(); ConvertString(s); free(s); setAlignment(oldalignment); fprintRTF("\n\\par\\pard\\q%c ", getAlignment()); } void CmdClosing( /* @unused@ */ int code) /****************************************************************************** purpose: special command in the LaTex-letter-environment will be converted to a similar Rtf-style ******************************************************************************/ { char oldalignment; char *s; oldalignment = getAlignment(); /* print closing on the right */ setAlignment(RIGHT); fprintRTF("\n\\par\\pard\\q%c ", getAlignment()); diagnostics(5, "Entering ConvertString() from CmdClosing"); s = getBraceParam(); ConvertString(s); free(s); diagnostics(5, "Exiting ConvertString() from CmdClosing"); /* print signature a couple of lines down */ fprintRTF("\n\\par\\par\\par "); diagnostics(5, "Entering ConvertString() from CmdSignature"); ConvertString(g_letterSignature); diagnostics(5, "Exiting ConvertString() from CmdSignature"); g_letterOpened = FALSE; setAlignment(oldalignment); fprintRTF("\n\\par\\pard\\q%c ", getAlignment()); } void CmdPs(int code) /****************************************************************************** purpose: translate encl and cc into appropriate language ******************************************************************************/ { char *s = getBraceParam(); if (code == LETTER_ENCL) ConvertBabelName("ENCLNAME"); else if (code == LETTER_CC) ConvertBabelName("CCNAME"); ConvertString(s); free(s); } latex2rtf-2.3.18/labels.c0000777000175000017500000001106513050672354015341 0ustar wilfriedwilfried/* acronym.c - handle label table Copyright (C) 1995-2002 The Free Software Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. This file is available from http://sourceforge.net/projects/latex2rtf/ Authors: 1995 Fernando Dorner, Andreas Granzer, Freidrich Polzer, Gerhard Trisko 1995-1997 Ralf Schlatterbeck 1998-2000 Georg Lehner 2001-2002 Scott Prahl 2009-2010 Pedro A. Aranda */ #include #include #include #include "main.h" #include "parser.h" #include "utils.h" #include "auxfile.h" #include "labels.h" static labelElem *labelTable = NULL; static int labelCount = 0; static int labelReserved = 0; #define labelDelta 8 /* reserve 8 labels in a row when we grow the label table */ /* return pointer to new label or NULL if memory overflow */ static labelElem *newLabel(char *name,char *def) { labelElem *result = labelTable; if (labelCount == labelReserved) { /* time to reserve another chunk */ /* of 8 labels */ result = (labelElem *)realloc(labelTable, (labelReserved+labelDelta)*sizeof(labelElem)); if (NULL != result) { labelTable = result; labelReserved += labelDelta; } } if (NULL != result) { result = &labelTable[labelCount++]; result->labelName = name; result->labelDef = def; } return result; } labelElem *getLabel(char *name) { labelElem *result = NULL; int label; LoadAuxFile(); /* LoadAuxFile if not already loaded */ for (label = 0; label < labelCount; label++) { if (streq(name,labelTable[label].labelName)) { result = &labelTable[label]; break; } } return result; } /* support for labels created by \usepackage{nameref} */ /* \newlabel{acro:undef}{{1}{1}{Test section\relax }{}{}} */ /* returns the nameref */ char *getLabelNameref(char *name) { char *result = NULL; labelElem *label = getLabel(name); if (NULL != label) { char *fullDef = strdup(label->labelDef); PushSource(NULL, fullDef); ignoreBraceParam(); /* section */ ignoreBraceParam(); /* page */ result = getBraceParam(); PopSource(); free(fullDef); /* getBraceParam() strdup's, free this */ } return result; } /* from \newlabel{sec:test}{{1.1}{1}} */ /* returns the section 1.1 */ char *getLabelSection(char *name) { char *result = NULL; labelElem *label = getLabel(name); if (NULL != label) { char *fullDef = strdup(label->labelDef); PushSource(NULL, fullDef); result = getBraceParam(); PopSource(); free(fullDef); } return result; } /* from \newlabel{sec:test}{{1.1}{1}} */ /* returns the page 1 */ char *getLabelPage(char *name) { char *result = NULL; labelElem *label = getLabel(name); if (NULL != label) { char *fullDef = strdup(label->labelDef); PushSource(NULL, fullDef); ignoreBraceParam(); result = getBraceParam(); PopSource(); free(fullDef); } return result; } /* from \newlabel{sec:test}{{1.1}{1}} */ /* returns the definition {1.1}{1} */ char *getLabelDefinition(char *name) { char *result = NULL; labelElem *label = getLabel(name); if (NULL != label) { result = strdup(label->labelDef); } return result; } /* \newlabel{sec:test}{{1.1}{1}} */ void CmdNewLabel(int code) { if (LABEL_UNDONEW == code) { char *p = getBraceParam(); diagnostics(WARNING,"undoing label '%s'",p); free(p); } else { char *p1 = getBraceParam(); char *p2 = getBraceParam(); if (NULL == newLabel(p1,p2)) { diagnostics(WARNING,"memory overflow defining label '%s' as '%s'",p1,p2); free(p1); free(p2); } } } latex2rtf-2.3.18/test/0000777000175000017500000000000013664476470014720 5ustar wilfriedwilfriedlatex2rtf-2.3.18/test/fancy.tex0000777000175000017500000000165413050672360016534 0ustar wilfriedwilfried\documentclass{report} \usepackage{fancyhdr} \pagestyle{fancy} \cfoot{center} \lfoot{left} \rfoot{right} \chead{center} \rhead{right --- \textsc{Page} \thepage} \lhead{left} \begin{document} \begin{center} \sf\bfseries F\'ED\'ERATION FRAN\c{C}AISE DE LA MONTAGNE ET DE L'ESCALADE \end{center} Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah \end{document} latex2rtf-2.3.18/test/enc_koi8-u.tex0000777000175000017500000001232013050672360017365 0ustar wilfriedwilfried\documentclass[10pt]{article} \usepackage[russian]{babel} \usepackage[koi8-u]{inputenc} \begin{document} \begin{center} \begin{tabular}{ccrl} 80&&2500&BOX DRAWINGS LIGHT HORIZONTAL\\ 81&&2502&BOX DRAWINGS LIGHT VERTICAL\\ 82&&250C&BOX DRAWINGS LIGHT DOWN AND RIGHT\\ 83&&2510&BOX DRAWINGS LIGHT DOWN AND LEFT\\ 84&&2514&BOX DRAWINGS LIGHT UP AND RIGHT\\ 85&&2518&BOX DRAWINGS LIGHT UP AND LEFT\\ 86&&251C&BOX DRAWINGS LIGHT VERTICAL AND RIGHT\\ 87&&2524&BOX DRAWINGS LIGHT VERTICAL AND LEFT\\ 88&&252C&BOX DRAWINGS LIGHT DOWN AND HORIZONTAL\\ 89&&2534&BOX DRAWINGS LIGHT UP AND HORIZONTAL\\ 8A&&253C&BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL\\ 8B&&2580&UPPER HALF BLOCK\\ 8C&&2584&LOWER HALF BLOCK\\ 8D&&2588&FULL BLOCK\\ 8E&&258C&LEFT HALF BLOCK\\ 8F&&2590&RIGHT HALF BLOCK\\ 90&&2591&LIGHT SHADE\\ 91&&2592&MEDIUM SHADE\\ 92&&2593&DARK SHADE\\ 93&&2320&TOP HALF INTEGRAL\\ 94&&25A0&BLACK SQUARE\\ 95&&2022&BULLET\\ 96&&221A&SQUARE ROOT\\ 97&&2248&ALMOST EQUAL TO\\ 98&&2264&LESS-THAN OR EQUAL TO\\ 99&&2265&GREATER-THAN OR EQUAL TO\\ 9A&&A0&NO-BREAK SPACE\\ 9B&&2321&BOTTOM HALF INTEGRAL\\ 9C&&B0&DEGREE SIGN\\ 9D&&B2&SUPERSCRIPT TWO\\ 9E&&B7&MIDDLE DOT\\ 9F&&F7&DIVISION SIGN\\ \end{tabular} \pagebreak \begin{tabular}{cccl} A0&&2550&BOX DRAWINGS DOUBLE HORIZONTAL\\ A1&&2551&BOX DRAWINGS DOUBLE VERTICAL\\ A2&&2552&BOX DRAWINGS DOWN SINGLE AND RIGHT DOUBLE\\ A3&Ł&451&CYRILLIC SMALL LETTER IO\\ A4&¤&454&CYRILLIC SMALL LETTER UKRAINIAN IE\\ A5&&2554&BOX DRAWINGS DOUBLE DOWN AND RIGHT\\ A6&Ś&456&CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I\\ A7&§&457&CYRILLIC SMALL LETTER YI\\ A8&&2557&BOX DRAWINGS DOUBLE DOWN AND LEFT\\ A9&&2558&BOX DRAWINGS UP SINGLE AND RIGHT DOUBLE\\ AA&&2559&BOX DRAWINGS UP DOUBLE AND RIGHT SINGLE\\ AB&&255A&BOX DRAWINGS DOUBLE UP AND RIGHT\\ AC&&255B&BOX DRAWINGS UP SINGLE AND LEFT DOUBLE\\ AD&­&491&CYRILLIC SMALL LETTER GHE WITH UPTURN\\ AE&&255D&BOX DRAWINGS DOUBLE UP AND LEFT\\ AF&&255E&BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE\\ B0&&255F&BOX DRAWINGS VERTICAL DOUBLE AND RIGHT SINGLE\\ B1&&2560&BOX DRAWINGS DOUBLE VERTICAL AND RIGHT\\ B2&&2561&BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE\\ B3&ł&401&CYRILLIC CAPITAL LETTER IO\\ B4&´&404&CYRILLIC CAPITAL LETTER UKRAINIAN IE\\ B5&&2563&BOX DRAWINGS DOUBLE VERTICAL AND LEFT\\ B6&ś&406&CYRILLIC CAPITAL LETTER BYELORUSSIAN-UKRAINIAN I\\ B7&ˇ&407&CYRILLIC CAPITAL LETTER YI\\ B8&&2566&BOX DRAWINGS DOUBLE DOWN AND HORIZONTAL\\ B9&&2567&BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE\\ BA&&2568&BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE\\ BB&&2569&BOX DRAWINGS DOUBLE UP AND HORIZONTAL\\ BC&&256A&BOX DRAWINGS VERTICAL SINGLE AND HORIZONTAL DOUBLE\\ BD&˝&490&CYRILLIC CAPITAL LETTER GHE WITH UPTURN\\ BE&&256C&BOX DRAWINGS DOUBLE VERTICAL AND HORIZONTAL\\ BF&&A9©RIGHT SIGN\\ \end{tabular} \pagebreak \begin{tabular}{cccl} C0&Ŕ&44E&CYRILLIC SMALL LETTER YU\\ C1&Á&430&CYRILLIC SMALL LETTER A\\ C2&Â&431&CYRILLIC SMALL LETTER BE\\ C3&Ă&446&CYRILLIC SMALL LETTER TSE\\ C4&Ä&434&CYRILLIC SMALL LETTER DE\\ C5&Ĺ&435&CYRILLIC SMALL LETTER IE\\ C6&Ć&444&CYRILLIC SMALL LETTER EF\\ C7&Ç&433&CYRILLIC SMALL LETTER GHE\\ C8&Č&445&CYRILLIC SMALL LETTER HA\\ C9&É&438&CYRILLIC SMALL LETTER I\\ CA&Ę&439&CYRILLIC SMALL LETTER SHORT I\\ CB&Ë&43A&CYRILLIC SMALL LETTER KA\\ CC&Ě&43B&CYRILLIC SMALL LETTER EL\\ CD&Í&43C&CYRILLIC SMALL LETTER EM\\ CE&Î&43D&CYRILLIC SMALL LETTER EN\\ CF&Ď&43E&CYRILLIC SMALL LETTER O\\ D0&Đ&43F&CYRILLIC SMALL LETTER PE\\ D1&Ń&44F&CYRILLIC SMALL LETTER YA\\ D2&Ň&440&CYRILLIC SMALL LETTER ER\\ D3&Ó&441&CYRILLIC SMALL LETTER ES\\ D4&Ô&442&CYRILLIC SMALL LETTER TE\\ D5&Ő&443&CYRILLIC SMALL LETTER U\\ D6&Ö&436&CYRILLIC SMALL LETTER ZHE\\ D7&×&432&CYRILLIC SMALL LETTER VE\\ D8&Ř&44C&CYRILLIC SMALL LETTER SOFT SIGN\\ D9&Ů&44B&CYRILLIC SMALL LETTER YERU\\ DA&Ú&437&CYRILLIC SMALL LETTER ZE\\ DB&Ű&448&CYRILLIC SMALL LETTER SHA\\ DC&Ü&44D&CYRILLIC SMALL LETTER E\\ DD&Ý&449&CYRILLIC SMALL LETTER SHCHA\\ DE&Ţ&447&CYRILLIC SMALL LETTER CHE\\ DF&ß&44A&CYRILLIC SMALL LETTER HARD SIGN\\ \end{tabular} \pagebreak \begin{tabular}{cccl} E0&ŕ&42E&CYRILLIC CAPITAL LETTER YU\\ E1&á&410&CYRILLIC CAPITAL LETTER A\\ E2&â&411&CYRILLIC CAPITAL LETTER BE\\ E3&ă&426&CYRILLIC CAPITAL LETTER TSE\\ E4&ä&414&CYRILLIC CAPITAL LETTER DE\\ E5&ĺ&415&CYRILLIC CAPITAL LETTER IE\\ E6&ć&424&CYRILLIC CAPITAL LETTER EF\\ E7&ç&413&CYRILLIC CAPITAL LETTER GHE\\ E8&č&425&CYRILLIC CAPITAL LETTER HA\\ E9&é&418&CYRILLIC CAPITAL LETTER I\\ EA&ę&419&CYRILLIC CAPITAL LETTER SHORT I\\ EB&ë&41A&CYRILLIC CAPITAL LETTER KA\\ EC&ě&41B&CYRILLIC CAPITAL LETTER EL\\ ED&í&41C&CYRILLIC CAPITAL LETTER EM\\ EE&î&41D&CYRILLIC CAPITAL LETTER EN\\ EF&ď&41E&CYRILLIC CAPITAL LETTER O\\ F0&đ&41F&CYRILLIC CAPITAL LETTER PE\\ F1&ń&42F&CYRILLIC CAPITAL LETTER YA\\ F2&ň&420&CYRILLIC CAPITAL LETTER ER\\ F3&ó&421&CYRILLIC CAPITAL LETTER ES\\ F4&ô&422&CYRILLIC CAPITAL LETTER TE\\ F5&ő&423&CYRILLIC CAPITAL LETTER U\\ F6&ö&416&CYRILLIC CAPITAL LETTER ZHE\\ F7&÷&412&CYRILLIC CAPITAL LETTER VE\\ F8&ř&42C&CYRILLIC CAPITAL LETTER SOFT SIGN\\ F9&ů&42B&CYRILLIC CAPITAL LETTER YERU\\ FA&ú&417&CYRILLIC CAPITAL LETTER ZE\\ FB&ű&428&CYRILLIC CAPITAL LETTER SHA\\ FC&ü&42D&CYRILLIC CAPITAL LETTER E\\ FD&ý&429&CYRILLIC CAPITAL LETTER SHCHA\\ FE&ţ&427&CYRILLIC CAPITAL LETTER CHE\\ FF&˙&42A&CYRILLIC CAPITAL LETTER HARD SIGN\\ \end{tabular} \end{center} \end{document} latex2rtf-2.3.18/test/linux.aux0000644000175000017500000003376413664476467016615 0ustar wilfriedwilfried\relax \babel@aux{english}{} \@writefile{toc}{\contentsline {section}{\numberline {0.1}OPEN PUBLICATION LICENSE}{V}} \@writefile{toc}{\contentsline {subsection}{\numberline {0.1.1}REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS}{V}} \@writefile{toc}{\contentsline {subsection}{\numberline {0.1.2}COPYRIGHT}{V}} \@writefile{toc}{\contentsline {subsection}{\numberline {0.1.3}SCOPE OF LICENSE}{V}} \@writefile{toc}{\contentsline {subsection}{\numberline {0.1.4}REQUIREMENTS ON MODIFIED WORKS}{V}} \@writefile{toc}{\contentsline {subsection}{\numberline {0.1.5}GOOD-PRACTICE RECOMMENDATIONS }{VI}} \@writefile{toc}{\contentsline {subsection}{\numberline {0.1.6}LICENSE OPTIONS}{VI}} \@writefile{toc}{\contentsline {section}{\numberline {0.2}CHANGES}{VII}} \citation{24} \citation{3} \citation{2} \citation{3} \citation{4} \citation{5} \@writefile{toc}{\contentsline {chapter}{\numberline {1}INTRODUCTION}{1}} \@writefile{lof}{\addvspace {10\p@ }} \@writefile{lot}{\addvspace {10\p@ }} \@writefile{toc}{\contentsline {section}{\numberline {1.1}PROBLEM DEFINITION}{1}} \@writefile{toc}{\contentsline {section}{\numberline {1.2}AIM}{2}} \@writefile{toc}{\contentsline {section}{\numberline {1.3}QUESTIONS AT ISSUE}{2}} \@writefile{toc}{\contentsline {section}{\numberline {1.4}EXPECTED RESULT}{2}} \citation{15} \citation{15} \citation{15} \citation{15} \citation{6} \@writefile{toc}{\contentsline {chapter}{\numberline {2}THEORETICAL BACKGROUND}{3}} \@writefile{lof}{\addvspace {10\p@ }} \@writefile{lot}{\addvspace {10\p@ }} \@writefile{toc}{\contentsline {section}{\numberline {2.1}KERNEL/OPERATING SYSTEM}{3}} \citation{6} \citation{6} \citation{6} \citation{7} \citation{8} \citation{6} \citation{9} \@writefile{lof}{\contentsline {figure}{\numberline {2.1}{\ignorespaces Block diagram of an operating system.}}{4}} \newlabel{fig:OperatingSystem}{{2.1}{4}} \@writefile{toc}{\contentsline {section}{\numberline {2.2}HISTORY OF UNIX}{4}} \@writefile{toc}{\contentsline {section}{\numberline {2.3}UNIX PRODUCT OVERVIEW}{4}} \citation{6} \citation{10} \citation{24} \citation{12} \citation{12} \citation{13} \@writefile{toc}{\contentsline {section}{\numberline {2.4}PREVIOUS RESEARCH}{5}} \citation{32} \citation{15} \citation{22} \citation{15} \citation{13} \citation{13} \citation{13} \@writefile{toc}{\contentsline {section}{\numberline {2.5}IMPORTANT THEORIES}{6}} \newlabel{importanttheories}{{2.5}{6}} \@writefile{toc}{\contentsline {subsection}{\numberline {2.5.1}KERNEL SPECIFIC FEATURES}{6}} \newlabel{kernel-threads}{{2.5.1}{6}} \newlabel{hotswap}{{2.5.1}{6}} \newlabel{ipc}{{2.5.1}{6}} \newlabel{dynprocres}{{2.5.1}{6}} \newlabel{dynmemres}{{2.5.1}{6}} \newlabel{dynpagesize}{{2.5.1}{6}} \citation{15} \citation{15} \citation{28} \citation{28} \citation{14} \citation{15} \newlabel{altiopath}{{2.5.1}{7}} \newlabel{liveupg}{{2.5.1}{7}} \newlabel{procacc}{{2.5.1}{7}} \@writefile{toc}{\contentsline {subsection}{\numberline {2.5.2}DISTRIBUTED SYSTEMS}{7}} \newlabel{smp}{{2.5.2}{7}} \newlabel{numa}{{2.5.2}{7}} \@writefile{toc}{\contentsline {subsection}{\numberline {2.5.3}DISTRIBUTED FILE SYSTEMS}{7}} \citation{15} \citation{19} \citation{15} \citation{15} \citation{30} \citation{18} \citation{15} \citation{24} \newlabel{nfs}{{2.5.3}{8}} \newlabel{coda}{{2.5.3}{8}} \newlabel{smb}{{2.5.3}{8}} \newlabel{appletalk}{{2.5.3}{8}} \newlabel{netware}{{2.5.3}{8}} \@writefile{toc}{\contentsline {subsection}{\numberline {2.5.4}FILE SYSTEMS}{8}} \citation{15} \citation{15} \citation{15} \citation{15} \citation{31} \newlabel{mfs}{{2.5.4}{9}} \newlabel{raid}{{2.5.4}{9}} \citation{13} \citation{13} \citation{16} \citation{17} \citation{15} \citation{15} \citation{18} \citation{18} \newlabel{change10}{{2.5.4}{10}} \newlabel{cachefs}{{2.5.4}{10}} \newlabel{autofs}{{2.5.4}{10}} \newlabel{jfs}{{2.5.4}{10}} \newlabel{lvm}{{2.5.4}{10}} \newlabel{acl}{{2.5.4}{10}} \newlabel{hsm}{{2.5.4}{10}} \@writefile{toc}{\contentsline {subsection}{\numberline {2.5.5}NETWORK}{10}} \newlabel{ipv4}{{2.5.5}{10}} \newlabel{ipv6}{{2.5.5}{10}} \citation{15} \citation{30} \citation{30} \citation{18} \citation{18} \citation{18} \citation{18} \citation{18} \citation{18} \citation{18} \newlabel{snmp}{{2.5.5}{11}} \newlabel{decnet}{{2.5.5}{11}} \newlabel{arcnet}{{2.5.5}{11}} \newlabel{atm}{{2.5.5}{11}} \newlabel{fddi}{{2.5.5}{11}} \newlabel{ethernet}{{2.5.5}{11}} \citation{20} \citation{21} \citation{13} \citation{13} \citation{15} \citation{15} \citation{13} \citation{13} \citation{13} \citation{15} \citation{13} \citation{15} \newlabel{tokenring}{{2.5.5}{12}} \newlabel{bonding}{{2.5.5}{12}} \newlabel{tfc}{{2.5.5}{12}} \newlabel{ipsec}{{2.5.5}{12}} \newlabel{ipv4ipv6stack}{{2.5.5}{12}} \newlabel{ipv6gateway}{{2.5.5}{12}} \newlabel{rsvp}{{2.5.5}{12}} \newlabel{intserv}{{2.5.5}{12}} \newlabel{diffserv}{{2.5.5}{12}} \newlabel{aliasing}{{2.5.5}{12}} \newlabel{ipmulticast}{{2.5.5}{12}} \newlabel{sack}{{2.5.5}{12}} \citation{13} \citation{15} \citation{13} \citation{13} \citation{13} \citation{15} \citation{13} \citation{15} \newlabel{atmipswitching}{{2.5.5}{13}} \newlabel{multilinkppp}{{2.5.5}{13}} \newlabel{rfc1323}{{2.5.5}{13}} \newlabel{rfc2002}{{2.5.5}{13}} \newlabel{rfc1191}{{2.5.5}{13}} \newlabel{pathmtudiscoverudp}{{2.5.5}{13}} \newlabel{rfc1533}{{2.5.5}{13}} \newlabel{ipmultipathrouting}{{2.5.5}{13}} \@writefile{toc}{\contentsline {section}{\numberline {2.6}DELIMINATION OF THE PROBLEM AREA}{13}} \newlabel{delimination}{{2.6}{13}} \@writefile{toc}{\contentsline {chapter}{\numberline {3}METHOD}{14}} \@writefile{lof}{\addvspace {10\p@ }} \@writefile{lot}{\addvspace {10\p@ }} \@writefile{toc}{\contentsline {section}{\numberline {3.1}CHOICE OF METHOD}{14}} \@writefile{toc}{\contentsline {section}{\numberline {3.2}DESCRIPTION OF METHOD}{14}} \@writefile{toc}{\contentsline {chapter}{\numberline {4}REALIZATION}{16}} \@writefile{lof}{\addvspace {10\p@ }} \@writefile{lot}{\addvspace {10\p@ }} \newlabel{realization}{{4}{16}} \@writefile{toc}{\contentsline {section}{\numberline {4.1}IMPLEMENTATION}{16}} \newlabel{implementation}{{4.1}{16}} \citation{24} \citation{9} \citation{7} \citation{10} \citation{33} \citation{41} \citation{13} \citation{40} \citation{13} \citation{13} \citation{38} \citation{13} \citation{7} \citation{10} \citation{13} \citation{37} \citation{9} \citation{40} \citation{26} \citation{50} \citation{56} \citation{43} \citation{45} \citation{44} \citation{100} \citation{57} \citation{13} \citation{13} \citation{13} \citation{13} \citation{24} \citation{13} \citation{13} \citation{10} \citation{13} \citation{31} \citation{13} \citation{13} \citation{13} \citation{33} \citation{52} \citation{13} \citation{13} \citation{10} \citation{13} \citation{13} \citation{13} \citation{13} \citation{13} \citation{11} \citation{13} \citation{13} \citation{13} \citation{13} \citation{13} \citation{13} \citation{13} \citation{13} \citation{13} \citation{13} \citation{60} \citation{13} \citation{13} \citation{13} \citation{13} \citation{54} \citation{13} \citation{13} \citation{13} \citation{13} \@writefile{toc}{\contentsline {chapter}{\numberline {5}RESULT}{17}} \@writefile{lof}{\addvspace {10\p@ }} \@writefile{lot}{\addvspace {10\p@ }} \@writefile{toc}{\contentsline {section}{\numberline {5.1}TABLES}{17}} \newlabel{resulttable}{{5.1}{17}} \@writefile{toc}{\contentsline {subsection}{\numberline {5.1.1}TABLE WITH KERNEL SPECIFIC FUNCTIONS}{17}} \citation{38} \citation{13} \citation{13} \citation{26} \citation{13} \citation{38} \citation{42} \citation{68} \citation{10} \citation{51} \citation{31} \citation{7} \citation{10} \citation{33} \citation{54} \citation{13} \citation{7} \citation{10} \citation{3} \citation{59} \citation{13} \citation{7} \citation{10} \citation{113} \citation{7} \citation{61} \citation{55} \citation{13} \citation{13} \citation{101} \citation{13} \citation{23} \citation{13} \citation{13} \citation{13} \citation{13} \citation{54} \citation{13} \citation{13} \citation{13} \citation{13} \citation{24} \citation{13} \citation{25} \citation{13} \citation{13} \citation{10} \citation{101} \citation{33} \citation{29} \citation{106} \citation{107} \citation{108} \citation{109} \citation{110} \citation{112} \newlabel{change5}{{5.1.1}{18}} \@writefile{toc}{\contentsline {subsection}{\numberline {5.1.2}TABLE WITH FILE SYSTEM SPECIFIC FUNCTIONS}{18}} \newlabel{change1}{{5.1.2}{18}} \newlabel{change4}{{5.1.2}{18}} \citation{39} \citation{9} \citation{40} \citation{103} \citation{62} \citation{39} \citation{13} \citation{40} \citation{13} \citation{29} \citation{21} \citation{13} \citation{13} \citation{13} \citation{13} \citation{39} \citation{9} \citation{40} \citation{101} \citation{111} \citation{39} \citation{101} \citation{40} \citation{101} \citation{111} \citation{9} \citation{40} \citation{64} \citation{39} \citation{13} \citation{13} \citation{13} \citation{13} \citation{39} \citation{9} \citation{40} \citation{63} \citation{39} \citation{13} \citation{40} \citation{13} \citation{67} \citation{39} \citation{9} \citation{40} \citation{104} \citation{65} \citation{39} \citation{40} \citation{66} \citation{39} \citation{13} \citation{40} \citation{13} \citation{46} \citation{39} \citation{40} \citation{46} \citation{39} \citation{13} \citation{40} \citation{13} \citation{46} \citation{39} \citation{25} \citation{40} \citation{105} \citation{46} \citation{48} \citation{13} \citation{13} \citation{13} \citation{13} \citation{39} \citation{13} \citation{13} \citation{13} \citation{13} \citation{39} \citation{13} \citation{13} \citation{13} \citation{13} \citation{54} \citation{13} \citation{13} \citation{13} \citation{13} \citation{21} \citation{13} \citation{13} \citation{13} \citation{13} \newlabel{change2}{{5.1.2}{19}} \citation{21} \citation{13} \citation{13} \citation{13} \citation{13} \citation{39} \citation{13} \citation{13} \citation{13} \citation{13} \citation{39} \citation{13} \citation{13} \citation{13} \citation{13} \citation{13} \citation{13} \citation{13} \citation{13} \citation{13} \citation{13} \citation{13} \citation{13} \citation{13} \citation{13} \citation{13} \citation{13} \citation{53} \citation{13} \citation{13} \citation{13} \citation{13} \citation{13} \citation{13} \citation{13} \citation{13} \citation{13} \citation{13} \citation{13} \citation{13} \citation{13} \citation{13} \citation{13} \citation{13} \citation{21} \citation{13} \citation{13} \citation{13} \citation{13} \citation{13} \citation{13} \citation{13} \citation{13} \@writefile{toc}{\contentsline {subsection}{\numberline {5.1.3}TABLE WITH NETWORK SPECIFIC FUNCTIONS}{20}} \newlabel{change3}{{5.1.3}{20}} \@writefile{toc}{\contentsline {section}{\numberline {5.2}RESULT ANALYSIS}{22}} \newlabel{resultanalys}{{5.2}{22}} \citation{48} \citation{36} \citation{35} \@writefile{toc}{\contentsline {chapter}{\numberline {6}DISCUSSION}{23}} \@writefile{lof}{\addvspace {10\p@ }} \@writefile{lot}{\addvspace {10\p@ }} \@writefile{toc}{\contentsline {section}{\numberline {6.1}METHOD EVALUATION}{24}} \@writefile{toc}{\contentsline {section}{\numberline {6.2}RECEIVED RESULTS VERSUS EXPECTED RESULT}{24}} \@writefile{toc}{\contentsline {chapter}{\numberline {7}CONCLUSIONS}{25}} \@writefile{lof}{\addvspace {10\p@ }} \@writefile{lot}{\addvspace {10\p@ }} \newlabel{conclusions}{{7}{25}} \@writefile{toc}{\contentsline {section}{\numberline {7.1}PROPOSAL FOR FURTHER RESEARCH}{25}} \@writefile{toc}{\contentsline {chapter}{\numberline {8}Bibliography}{26}} \@writefile{lof}{\addvspace {10\p@ }} \@writefile{lot}{\addvspace {10\p@ }} \bibcite{1}{1} \bibcite{6}{2} \bibcite{15}{3} \bibcite{18}{4} \bibcite{30}{5} \bibcite{21}{6} \bibcite{7}{7} \bibcite{34}{8} \bibcite{8}{9} \bibcite{29}{10} \bibcite{60}{11} \bibcite{33}{12} \bibcite{46}{13} \bibcite{50}{14} \bibcite{61}{15} \@writefile{toc}{\contentsline {section}{References}{I}} \newlabel{biblio}{{8}{I}} \bibcite{62}{16} \bibcite{100}{17} \bibcite{9}{18} \bibcite{20}{19} \bibcite{42}{20} \bibcite{43}{21} \bibcite{25}{22} \bibcite{19}{23} \bibcite{10}{24} \bibcite{26}{25} \bibcite{13}{26} \bibcite{14}{27} \bibcite{16}{28} \bibcite{17}{29} \bibcite{22}{30} \bibcite{31}{31} \bibcite{32}{32} \bibcite{37}{33} \bibcite{38}{34} \bibcite{39}{35} \bibcite{11}{36} \bibcite{23}{37} \bibcite{44}{38} \bibcite{101}{39} \bibcite{102}{40} \bibcite{103}{41} \bibcite{104}{42} \bibcite{105}{43} \bibcite{51}{44} \bibcite{64}{45} \bibcite{65}{46} \bibcite{66}{47} \bibcite{106}{48} \bibcite{111}{49} \bibcite{107}{50} \bibcite{108}{51} \bibcite{113}{52} \bibcite{112}{53} \bibcite{109}{54} \bibcite{110}{55} \bibcite{52}{56} \bibcite{53}{57} \bibcite{54}{58} \bibcite{55}{59} \bibcite{56}{60} \bibcite{57}{61} \bibcite{59}{62} \bibcite{2}{63} \bibcite{4}{64} \bibcite{5}{65} \bibcite{12}{66} \bibcite{24}{67} \bibcite{27}{68} \bibcite{35}{69} \bibcite{36}{70} \bibcite{41}{71} \bibcite{45}{72} \bibcite{58}{73} \bibcite{40}{74} \bibcite{49}{75} \bibcite{68}{76} \bibcite{3}{77} \bibcite{28}{78} \bibcite{48}{79} \bibcite{63}{80} \bibcite{67}{81} \@writefile{toc}{\contentsline {subsubsection}{\numberline {8.0.0.1}Technical persons/resources}{IV}} \@writefile{toc}{\contentsline {subsubsection}{\numberline {8.0.0.2}Websites}{IV}} \citation{49} \@writefile{toc}{\contentsline {chapter}{\numberline {A}MESSAGE REPLIES FROM THE KERNEL DEVELOPMEN LIST}{V}} \@writefile{lof}{\addvspace {10\p@ }} \@writefile{lot}{\addvspace {10\p@ }} \newlabel{kernlist}{{A}{V}} \@writefile{toc}{\contentsline {section}{\numberline {A.1}Jeff Garzik 26 May 2001 22:27:09}{V}} \newlabel{a1}{{A.1}{V}} \@writefile{toc}{\contentsline {section}{\numberline {A.2}Jonathan Morton 27 May 2001}{VII}} \newlabel{a2}{{A.2}{VII}} \@writefile{toc}{\contentsline {section}{\numberline {A.3}Jeff Garzik 26 May 2001 22:55:04}{VII}} \newlabel{a3}{{A.3}{VII}} \@writefile{toc}{\contentsline {section}{\numberline {A.4}Dan Hollis 26 May 2001}{VIII}} \newlabel{a4}{{A.4}{VIII}} \@writefile{toc}{\contentsline {section}{\numberline {A.5}James Sutherland 27 May 2001}{IX}} \newlabel{a5}{{A.5}{IX}} \@writefile{toc}{\contentsline {section}{\numberline {A.6}Ingo Oeser 27 May 2001}{X}} \newlabel{a6}{{A.6}{X}} \@writefile{toc}{\contentsline {section}{\numberline {A.7}Dominik Kubla 27 May 2001}{X}} \newlabel{a7}{{A.7}{X}} \@writefile{toc}{\contentsline {section}{\numberline {A.8}Ville Herva 27 May 2001}{XI}} \newlabel{a8}{{A.8}{XI}} latex2rtf-2.3.18/test/fonttest.rtf0000644000175000017500000001357713664476467017322 0ustar wilfriedwilfried{\rtf1\ansi\uc1\deff0\deflang1024 {\fonttbl{\f0\fnil\fcharset0 Times New Roman;} {\f1\fnil\fcharset0 Arial;} {\f2\fnil\fcharset0 Arial;} {\f3\fnil\fcharset0 Courier New;} {\f4\fnil\fcharset0 Zapf Chancery;} {\f5\fnil\fcharset0 STIXGeneral;} {\f6\fnil\fcharset0 MS Gothic;} } {\colortbl; \red0\green0\blue0; \red0\green0\blue255; \red0\green255\blue255; \red0\green255\blue0; \red255\green0\blue255; \red255\green0\blue0; \red255\green255\blue0; \red255\green255\blue255; } {\stylesheet {\s0\qj\widctlpar\f0\fs20 \snext0 Normal;} {\cs10 \additive\ssemihidden Default Paragraph Font;} {\s1\qc\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 Part;} {\s2\ql\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 heading 1;} {\s3\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 2;} {\s4\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 3;} {\s5\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 4;} {\s6\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 5;} {\s7\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 6;} {\s8\qr\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext8 rightpar;} {\s9\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext9 centerpar;} {\s10\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext10 leftpar;} {\s11\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equation;} {\s12\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationNum;} {\s13\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlign;} {\s14\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlignNum;} {\s15\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArray;} {\s16\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArrayNum;} {\s17\ql\sb120\sa120\keep\widctlpar\f0\fs20 \sbasedon0\snext0 theorem;} {\s18\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 bitmapCenter;} {\s20\qc\sb240\sa240\b\f0\fs36 \sbasedon0\snext21 Title;} {\s21\qc\sa120\f0\fs20 \sbasedon0\snext0 author;} {\s22\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext22 footer;} {\s23\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext23 header;} {\s30\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 caption;} {\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext0 Figure;} {\s32\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext32 Table;} {\s33\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext33 Tabular;} {\s34\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext34 Tabbing;} {\s35\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext35 Quote;} {\s38\ql\widctlpar\f3\fs20 \snext38 verbatim;} {\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext46 List;} {\s47\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext47 List 1;} {\s50\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 latex picture;} {\s51\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 subfigure;} {\s61\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext62 bibheading;} {\s62\ql\fi-567\li567\sb0\sa0\f0\fs20 \sbasedon0\snext62 bibitem;} {\s64\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext64 endnotes;} {\s65\ql\fi-113\li397\lin397\f0\fs20 \sbasedon0\snext65 footnote text;} {\s66\qj\fi-170\li454\lin454\f0\fs20 \sbasedon0\snext66 endnote text;} {\cs62\super \additive\sbasedon10 footnote reference;} {\cs63\super \additive\sbasedon10 endnote reference;} {\s67\ql\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext67 acronym;} {\s70\qc\sa120\b\f0\fs20 \sbasedon0\snext71 abstract title;} {\s71\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext0 abstract;} {\s80\ql\sb240\sa120\keepn\f0\b\fs20 \sbasedon0\snext0 contents_heading;} {\s81\ql\li425\tqr\tldot\tx8222\sb240\sa60\keepn\f0\fs20\b \sbasedon0\snext82 toc 1;} {\s82\ql\li512\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext83 toc 2;} {\s83\ql\li1024\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext84 toc 3;} {\s84\ql\li1536\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext85 toc 4;} {\s85\ql\li2048\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 5;} {\s86\ql\li2560\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 6;} } {\info {\title Original file was fonttest.tex} {\doccomm Created using latex2rtf 2.3.18 r1266 (released May 29, 2020) on Sat May 30 17:35:19 2020 } } {\footer\pard\plain\f0\fs20\qc\chpgn\par} \paperw12280\paperh15900\margl2680\margr2700\margt2540\margb1760\pgnstart0\widowctrl\qj\ftnbj\f0\aftnnar {\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi0 {\b Examples with no Special Fonts or unicode}\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi0 Equation that does not use fields in RTF: {{\i A}={\i B}}\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi0 Equation that uses fields in RTF: {{\field{\*\fldinst{ EQ {\i A}\\s\\do5({\fs16 2})={\i B}}}{\fldrslt }} }\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi0 {\b Symbol}\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi0 Equation that does not generate fields in RTF: {{\i A}{\u8801*}{\i B}}\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi0 Equation that uses fields in RTF: {{\field{\*\fldinst{ EQ {\i A}\\s\\do5({\fs16 2}){\u8801*}{\i B}}}{\fldrslt }} }\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi0 {\b MT Extra font}\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi0 Equation that uses MT Extra, unicode, and no fields: {{\i A}={\u8945*}}\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi0 Equation that uses MT Extra, no unicode, and no fields: {{\i A}={\u8945*}}\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi0 {\b MT Extra problems: Click on equations}\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi0 Equation that uses MT Extra, unicode, and fields: {{\field{\*\fldinst{ EQ {\i A}\\s\\do5({\fs16 2})={\u8945*}}}{\fldrslt }} }\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi0 Equation that uses MT Extra, no unicode, and fields: {{\field{\*\fldinst{ EQ {\i A}\\s\\do5({\fs16 2})={\u8945*}}}{\fldrslt }} }\par }} }}}latex2rtf-2.3.18/test/fig_testc.pdf0000777000175000017500000000536113050672360017353 0ustar wilfriedwilfried%PDF-1.2 %Ç쏢 8 0 obj <> stream xœ­XËn\7 Ý߯¸Ëv1ŞDRŻm˘ëŚţ#MSŘAăíď—)]Î}c 1bQ#R:¤ŽHŽżŽŢ…ŐˇŸ_—ŻËŇúéŻ%řőß%ʟď*âúóBäý=˙zU9gt°˘ Š}„mšKĎ $WdŇŚ/˛ď:]&QT}LcŸ.=/şŸősUĂóźüžüĘ8KĘ 'œ]Î!ťš¨Œ 'RT¤œG™†lLd˘Xs?[T‡ ć‰6+ÚqXÓFc˛ášxZ0hťœ¸L쯌 &Z´ˆŮA’i(ĆD&ŠśôóEu˜`™h‹ ‡um0&ށ6 ‚ÁŰĺ䳋ĄÝOS˜xƒâ­ŕ¨Ę4Tc"Ĺ[űá˘:L°NźUńęa];“ ×Ŕ›„ ŢŕírŒŕ€yŚcňŻXQvd ÖüvF—IU‡ Í˝H´Ć!4?#Ťz—ŃbÝЊL5;Ď7§cœ‰ˆ\%™B0&`"ŇeRŐaBóŚHnj" ՘`ÝŁ X Ţ.Wř]č'ăbQźą¸e `LŔ0ŽË¤ŞĂ„ćK Pźb) Ř`ŮăĽÎĚo—ą$Ž<ĘçkŽňš!t$3ŔMĚ[î2‰˘ęÓĚ0$F÷—ĎóŚů€łĄLe—ƒCvKÇ8sdLŠ3—PŚ@ĆL–ě2Šę0Ą™ˇ‰ŤXĘB2&˜öhQX Ţ.CN.°{:Ć8ńFA’9]ËŹ DƒˇÉ¤ŞĂ„ć^${CdÁš`ÜăaŠd"3ß\ĺ´˘cœ1‰ZËrŽÎW™B2&`bŇeRŐaBóŽHë™ZĘT\Ÿ^—ďţ|űüĺďoß?ýąüô´ţŇÍ áčGÂÔť /‹6X™ťĄx˝Őƒą<˝s ű|^§p;~Ä}Ž …Ł™*ťN]ŕ61Ç5œ¸ W°…bŕj ö*gîĚuiçŠ[>ćÉ.đˇĂĺ@hWĐÓŁăĎÝ Z†Rő˙ŰGŠ~Şó./˙¸‘\oívć˜Ń_Ĺ3œĹóHŰP€$ë šx’ęŽxŽ-Á}dňÍ3˘ĐHŇŇn'ůŠ'íH”žěŘ2đýYžä&ԅš×ƒ.\łűfčÝÄÖ ÍŻH@'Ô×AJó-ӐęZ_ږúr™jćD~ ‘Ďž_9&š{ }Oîžţ˘;.ߏZ!áď傸ŽbšŃv¤ ԘžĚt˛ĺŘň]ą´ßÇĄňwłöőC(~ĺI#ăѓwőŤˇđűe¤őľÇ^ďŁö7Iέ°+!´ŽžSü:Óř'´EÔ\‡fĄłLă÷eüăńŔ°'BńëÜm9Ą÷Ôy™%ő=Ëů}k‚žQ Obz¤/iÜŇĹąyŮŞáŁČŻCj"* IT˘_4&ÚNœ7&“Á¤=‰ćî}ߢ‰îőŽĆä„ß†ŢҐDĽůľ ­Ľťč7ęŽŤŘ éąyŮ> /Contents 8 0 R >> endobj 3 0 obj << /Type /Pages /Kids [ 7 0 R ] /Count 1 >> endobj 1 0 obj <> endobj 6 0 obj <> endobj 11 0 obj <> endobj 12 0 obj <> endobj 5 0 obj <>stream xœkhŮDŔ€ endstream endobj 4 0 obj <>stream xœc`Ů endstream endobj 10 0 obj <> endobj 2 0 obj <>endobj xref 0 13 0000000000 65535 f 0000001704 00000 n 0000002259 00000 n 0000001645 00000 n 0000002036 00000 n 0000001888 00000 n 0000001752 00000 n 0000001494 00000 n 0000000015 00000 n 0000001474 00000 n 0000002183 00000 n 0000001826 00000 n 0000001856 00000 n trailer << /Size 13 /Root 1 0 R /Info 2 0 R >> startxref 2463 %%EOF latex2rtf-2.3.18/test/enc_latin2.tex0000777000175000017500000001166513050672360017455 0ustar wilfriedwilfried\documentclass[10pt]{article} \usepackage[T1]{fontenc} \usepackage[latin2]{inputenc} \usepackage{times} \usepackage{textcomp} \begin{document} \begin{tabular}{ccrl} 80& &128&\\ 81& &129&\\ 82& &130&\\ 83& &131&\\ 84& &132&\\ 85& &133&\\ 86& &134&\\ 87& &135&\\ 88& &136&\\ 89& &137&\\ 8A& &138&\\ 8B& &139&\\ 8C& &140&\\ 8D& &141&\\ 8E& &142&\\ 8F& &143&\\ 90& &144&\\ 91& &145&\\ 92& &146&\\ 93& &147&\\ 94& &148&\\ 95& &149&\\ 96& &150&\\ 97& &151&\\ 98& &152&\\ 99& &153&\\ 9A& &154&\\ 9B& &155&\\ 9C& &156&\\ 9D& &157&\\ 9E& &158&\\ 9F& &159&\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} A0& &160&NO-BREAK SPACE\\ A1&Ą&260&LATIN CAPITAL LETTER A WITH OGONEK\\ A2&˘&728&BREVE\\ A3&Ł&321&LATIN CAPITAL LETTER L WITH STROKE\\ A4&¤&164&CURRENCY SIGN\\ A5&Ľ&317&LATIN CAPITAL LETTER L WITH CARON\\ A6&Ś&346&LATIN CAPITAL LETTER S WITH ACUTE\\ A7&§&167&SECTION SIGN\\ A8&¨&168&DIAERESIS\\ A9&Š&352&LATIN CAPITAL LETTER S WITH CARON\\ AA&Ş&350&LATIN CAPITAL LETTER S WITH CEDILLA\\ AB&Ť&356&LATIN CAPITAL LETTER T WITH CARON\\ AC&Ź&377&LATIN CAPITAL LETTER Z WITH ACUTE\\ AD&­&173&SOFT HYPHEN\\ AE&Ž&381&LATIN CAPITAL LETTER Z WITH CARON\\ AF&Ż&379&LATIN CAPITAL LETTER Z WITH DOT ABOVE\\ B0&°&176&DEGREE SIGN\\ B1&ą&261&LATIN SMALL LETTER A WITH OGONEK\\ B2&˛&731&OGONEK\\ B3&ł&322&LATIN SMALL LETTER L WITH STROKE\\ B4&´&180&ACUTE ACCENT\\ B5&ľ&318&LATIN SMALL LETTER L WITH CARON\\ B6&ś&347&LATIN SMALL LETTER S WITH ACUTE\\ B7&ˇ&711&CARON\\ B8&¸&184&CEDILLA\\ B9&š&353&LATIN SMALL LETTER S WITH CARON\\ BA&ş&351&LATIN SMALL LETTER S WITH CEDILLA\\ BB&ť&357&LATIN SMALL LETTER T WITH CARON\\ BC&ź&378&LATIN SMALL LETTER Z WITH ACUTE\\ BD&˝&733&DOUBLE ACUTE ACCENT\\ BE&ž&382&LATIN SMALL LETTER Z WITH CARON\\ BF&ż&380&LATIN SMALL LETTER Z WITH DOT ABOVE\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} C0&Ŕ&340&LATIN CAPITAL LETTER R WITH ACUTE\\ C1&Á&193&LATIN CAPITAL LETTER A WITH ACUTE\\ C2&Â&194&LATIN CAPITAL LETTER A WITH CIRCUMFLEX\\ C3&Ă&258&LATIN CAPITAL LETTER A WITH BREVE\\ C4&Ä&196&LATIN CAPITAL LETTER A WITH DIAERESIS\\ C5&Ĺ&313&LATIN CAPITAL LETTER L WITH ACUTE\\ C6&Ć&262&LATIN CAPITAL LETTER C WITH ACUTE\\ C7&Ç&199&LATIN CAPITAL LETTER C WITH CEDILLA\\ C8&Č&268&LATIN CAPITAL LETTER C WITH CARON\\ C9&É&201&LATIN CAPITAL LETTER E WITH ACUTE\\ CA&Ę&280&LATIN CAPITAL LETTER E WITH OGONEK\\ CB&Ë&203&LATIN CAPITAL LETTER E WITH DIAERESIS\\ CC&Ě&282&LATIN CAPITAL LETTER E WITH CARON\\ CD&Í&205&LATIN CAPITAL LETTER I WITH ACUTE\\ CE&Î&206&LATIN CAPITAL LETTER I WITH CIRCUMFLEX\\ CF&Ď&270&LATIN CAPITAL LETTER D WITH CARON\\ D0&Đ&272&LATIN CAPITAL LETTER D WITH STROKE\\ D1&Ń&323&LATIN CAPITAL LETTER N WITH ACUTE\\ D2&Ň&327&LATIN CAPITAL LETTER N WITH CARON\\ D3&Ó&211&LATIN CAPITAL LETTER O WITH ACUTE\\ D4&Ô&212&LATIN CAPITAL LETTER O WITH CIRCUMFLEX\\ D5&Ő&336&LATIN CAPITAL LETTER O WITH DOUBLE ACUTE\\ D6&Ö&214&LATIN CAPITAL LETTER O WITH DIAERESIS\\ D7&$×$&215&MULTIPLICATION SIGN\\ D8&Ř&344&LATIN CAPITAL LETTER R WITH CARON\\ D9&Ů&366&LATIN CAPITAL LETTER U WITH RING ABOVE\\ DA&Ú&218&LATIN CAPITAL LETTER U WITH ACUTE\\ DB&Ű&368&LATIN CAPITAL LETTER U WITH DOUBLE ACUTE\\ DC&Ü&220&LATIN CAPITAL LETTER U WITH DIAERESIS\\ DD&Ý&221&LATIN CAPITAL LETTER Y WITH ACUTE\\ DE&Ţ&354&LATIN CAPITAL LETTER T WITH CEDILLA\\ DF&ß&223&LATIN SMALL LETTER SHARP S\\ \end{tabular} \pagebreak \begin{tabular}{cccl} E0&ŕ&341&LATIN SMALL LETTER R WITH ACUTE\\ E1&á&225&LATIN SMALL LETTER A WITH ACUTE\\ E2&â&226&LATIN SMALL LETTER A WITH CIRCUMFLEX\\ E3&ă&259&LATIN SMALL LETTER A WITH BREVE\\ E4&ä&228&LATIN SMALL LETTER A WITH DIAERESIS\\ E5&ĺ&314&LATIN SMALL LETTER L WITH ACUTE\\ E6&ć&263&LATIN SMALL LETTER C WITH ACUTE\\ E7&ç&231&LATIN SMALL LETTER C WITH CEDILLA\\ E8&č&269&LATIN SMALL LETTER C WITH CARON\\ E9&é&233&LATIN SMALL LETTER E WITH ACUTE\\ EA&ę&281&LATIN SMALL LETTER E WITH OGONEK\\ EB&ë&235&LATIN SMALL LETTER E WITH DIAERESIS\\ EC&ě&283&LATIN SMALL LETTER E WITH CARON\\ ED&í&237&LATIN SMALL LETTER I WITH ACUTE\\ EE&î&238&LATIN SMALL LETTER I WITH CIRCUMFLEX\\ EF&ď&271&LATIN SMALL LETTER D WITH CARON\\ F0&đ&273&LATIN SMALL LETTER D WITH STROKE\\ F1&ń&324&LATIN SMALL LETTER N WITH ACUTE\\ F2&ň&328&LATIN SMALL LETTER N WITH CARON\\ F3&ó&243&LATIN SMALL LETTER O WITH ACUTE\\ F4&ô&244&LATIN SMALL LETTER O WITH CIRCUMFLEX\\ F5&ő&337&LATIN SMALL LETTER O WITH DOUBLE ACUTE\\ F6&ö&246&LATIN SMALL LETTER O WITH DIAERESIS\\ F7&$÷$&247&DIVISION SIGN\\ F8&ř&345&LATIN SMALL LETTER R WITH CARON\\ F9&ů&367&LATIN SMALL LETTER U WITH RING ABOVE\\ FA&ú&250&LATIN SMALL LETTER U WITH ACUTE\\ FB&ű&369&LATIN SMALL LETTER U WITH DOUBLE ACUTE\\ FC&ü&252&LATIN SMALL LETTER U WITH DIAERESIS\\ FD&ý&253&LATIN SMALL LETTER Y WITH ACUTE\\ FE&ţ&355&LATIN SMALL LETTER T WITH CEDILLA\\ FF&˙&729&DOT ABOVE\\ \end{tabular} \end{document} latex2rtf-2.3.18/test/report.lof0000644000175000017500000000060413664476470016731 0ustar wilfriedwilfried\addvspace {10\p@ } \contentsline {figure}{\numberline {1.1}{\ignorespaces This is figure 1}}{3} \contentsline {figure}{\numberline {1.2}{\ignorespaces This is figure 2}}{4} \addvspace {10\p@ } \contentsline {figure}{\numberline {2.1}{\ignorespaces This is figure 3}}{5} \contentsline {figure}{\numberline {2.2}{\ignorespaces This is figure 4}}{6} \addvspace {10\p@ } \addvspace {10\p@ } latex2rtf-2.3.18/test/eqns.tex0000777000175000017500000002123413050672357016404 0ustar wilfriedwilfried\documentclass{article} \usepackage{amsmath} \begin{document} \section{Testing overrightarrow} Compare $$ \vec{p} $$ and $$ \overrightarrow{p} $$ \begin{tabular}{rl} \multicolumn{2}{c}{$\overrightarrow{p} = m\overrightarrow{v}$}\\ \\ $\overrightarrow{p}$&: momentum ($kg.m.s^{-1}$ + direction)\\ $m$&: mass ($kg$)\\ $\overrightarrow{v}$&: velocity ($m.s^{-1}$ + direction)\\ \end{tabular} \section{looking at font styles in equations} For example, in \[ {\bf n}(t+1) = A {\bf n}(t) {\rm Q} \] both the $\rm Q$ and the bold font $\bf n$ should not be italicized in the .rtf output. LaTeX never italicizes bold font in math mode (as this is never needed/wanted). \section{testing \texttt{align} environment} First \verb#\begin{align}# without an asterisk. \begin{align} zw &= (3+2i)(2-i) \notag \\ &= 6-3i+4i-2i^2 \notag \\ &= 8+i \notag \end{align} Next \verb#\begin{eqnarray}# without an asterisk. \begin{eqnarray} zw &=& (3+2i)(2-i) \nonumber \\ &=& 6-3i+4i-2i^2 \nonumber \\ &=& 8+i \nonumber \end{eqnarray} Now align with an asterisk. \begin{align*} zw &= (3+2i)(2-i) \\ &= 6-3i+4i-2i^2 \\ &= 8+i \end{align*} \section{testing equation references} \begin{equation} x=y \label{eqn1} \end{equation} The equation before this is equation \ref{eqn1}. Alternatively one might use \eqref{eqn1}. \section{reported (non-) problems in 1.9.15} First commas in equations $$ \hbox{for } x,y \hbox{ in } A $$ as an inline $\forall x, y \in Z$. Yet another comma example $R_1, R_2$ Now for the problem associated with \verb#\sum# $$ \sum = 1 $$ \section{Inline equations} First, test an inline equation in a paragraph of its own $x^2+y^2=z^2$ Lets test baselines of equations. First compare these ...$\ldots$... as well as ...$.$... Now descenders like y $y$ and finally x$^2$ vs $x^2$ or x$_2$ vs $x_2$ Parsing the tricky \verb#$$# properly $\varepsilon $$_o$ as an example. First begin with simple \verb#$# delimited equation such as $x+y=w$ as an example. All the equations in this section should look identical. Next how about a simple \verb#\begin{math}# delimited equation such as \begin{math}x+y=w\end{math} as an example. All the equations in this section should look identical. Now consider \verb#\(# and \verb#\)# delimited equation such as \(x+y=w\) as an example. All the equations in this section should look identical. \section{Unnumbered equations} I will start with a simple \verb#$$# wave equation that will have no number $$ \nabla^2 \phi -{1\over c} {\partial \phi\over \partial t} = 0 $$ Bug that caused crash when equation began with \verb#\ldots# $$ \ldots\nabla^2 \phi -{1\over c} {\partial \phi\over \partial t} = 0 $$ another reported crash with ldots \begin{eqnarray*} \ldots & = & b \\ c & = & d \end{eqnarray*} Note: Delimiting an equation by \verb|$$| is a plain\TeX{} command which causes inconsistent vertical distances and does not obey the class option \textsf{fleqn}. Therefore it should \emph{not} be used in \LaTeX{} documents. Use \verb#\[...\]# instead: \[ \nabla^2 \phi -{1\over c} {\partial \phi\over \partial t} = 0 \] This is followed by a \verb#displaymath# environment \begin{displaymath} \nabla^2 \phi -{1\over c} {\partial \phi\over \partial t} = 0 \end{displaymath} Here is an example of the \verb#\[# environment \[ \nabla^2 \phi -{1\over c} {\partial \phi\over \partial t} = 0 \] \noindent Here we check indentation \[ a=b \] displaymath \begin{displaymath} a=b \end{displaymath} enddisplaymath \section{Numbered equations} Next comes an \verb#equation# environment \begin{equation} \nabla^2 \phi -{1\over c} {\partial \phi\over \partial t} = 0 \end{equation} Note that \verb#\nonumber# in an \verb#equation# environment does not get an equation number usually. However, when the \verb#amsmath# package gets loaded then it is suppressed, \begin{equation} \nabla^2 \phi -{1\over c} {\partial \phi\over \partial t} = 0 \nonumber \end{equation} \section{Testing equation array} Here the equation array is being tested. This equation has no equation number and is about as simple as an equation array can get. \begin{eqnarray*} z & = & w + x + \\ & & 5w - 8c \end{eqnarray*} Here the equation array is being tested. This equation has equation numbers and is almost as simple as an equation array can get. \begin{eqnarray} z & = & w + x + \\ & & 5w - 8c \end{eqnarray} Here the equation array is being tested. This equation the first and third equations numbered \begin{eqnarray} z & = & w + x \\ z & = & w + x \nonumber\\ z & = & w + x \end{eqnarray} Here the equation array is being tested. This checks for a bug when \verb#\nonumber# is present in an \verb#\begin{eqnarray*}# environment. No equations should be numbered. \begin{eqnarray*} z & = & w + x \\ z & = & w + x \nonumber\\ z & = & w + x \end{eqnarray*} \section{Equation numbering test} This equation needs a number \begin{equation}\label{ab3} \,\varphi\,=\,\left|\, \begin{array}{c} \psi_1 \\ \psi_2 \end{array}\,\right|\,; \quad {\rm and} \quad \,\chi\,=\,\left|\, \begin{array}{c} \psi_3 \\ \psi_4 \end{array}\,\right|\,; \quad {\rm or} \quad \,\eta\,=\,\left|\, \begin{array}{c} \tilde{\psi}_1 \\ \tilde{\psi}_2 \end{array}\,\right|\,; \quad {\rm and} \quad \,\lambda\,=\,\left|\, \begin{array}{c} \tilde{\psi}_3 \\ \tilde{\psi}_4 \end{array}\,\right|\,; \end{equation} more text following \section{Testing math environment closing} For a while, getting \texttt{latex2rtf} to contain all the math elements to the enclosing was a major headache. It is working for now. Here are a few test cases. Case 1 Here a math environment is found within an italic environment \textit{s$_c+1$} or {\it s$_c$} Case 2 The odd construction \verb#$a+\bf R$# follows $a+\bf R$ which should make ``a'' italic and ``R'' bold Case 3 Same as above but using \verb#\(# to enter a math environment \(a+\bf R\) roman type follows Case 4 Same as above but using \verb#\[# to enter a math environment \[a+\bf R\] roman type follows Case 5 Same as above but using \verb#\begin{math}# to enter a math environment \begin{math}a+\bf R\end{math} roman type follows Case 6 Same as above but using \verb#\begin{equation}# to enter a math environment \begin{equation}a+ \bf R\end{equation} roman type follows Case 7 Same as above but using \verb#\begin{eqnarray}# to enter a math environment \begin{eqnarray}a+ \bf R\end{eqnarray} roman type follows Case 8 Same as above but using \verb#\begin{equation*}# to enter a math environment \\ Note: \verb#\begin{equation*}# produces LaTeX error.\\ Use \verb#\begin{displaymath}# instead. Case 8a Same as above but using \verb#\begin{displaymath}# to enter a math environment \begin{displaymath}a+ \bf R\end{displaymath} roman type follows Case 9 Same as above but using \verb#$$# to enter a math environment $$a+ \bf R$$ roman type follows Note: Delimiting an equation by \verb|$$| is a plain\TeX{} command and should \emph{not} be used in \LaTeX{} documents. \section{Large Delimiters} \subsection{Determinant} \[ \det A = \left| \begin{array}{cccc} a_{11} & a_{12} & \cdots & a_{1n}\\ a_{21} & a_{22} & \cdots & a_{2n}\\ \vdots & \vdots & \ddots & \vdots\\ a_{m1} & a_{m2} & \cdots & a_{mn} \end{array} \right| \] \subsection{Mixed Delimiters} \[ w = \left| 4 x^3 + \left( (x-y) + \frac{42}{1+x^4} \right) \right|. \] \subsection{Submatrices} \[ A = \left[ \begin{array}{cccc} \left|\begin{array}{cc} b_{11}&b_{12}\\ b_{21}&b_{22} \end{array}\right| & a_{12} & \cdots & a_{1n}\\ a_{21} & a_{22} & \cdots & a_{2n}\\ \vdots & \vdots & \ddots & \vdots\\ a_{m1} & a_{m2} & \cdots & a_{mn} \end{array} \right] \] \subsection{Fractions} Simple \[ {x \over y} \] More complicated \[ {x+1 \over {x+2 \over y+z +w}} \] Missing braces \[ x \over y \] Including braces \[ {\{ x+y \} \over w} \] Including left \[ {\left\{\sqrt{y+z}\right\}\over w} \] \section{fields} Problem with mbox containing \$ in a field \[ x[l]\leftarrow x[(l+m) \bmod n] \oplus \mbox{shiftright}(x[l]) \oplus \left\{ \begin{array}{ll} 0 & \mbox{if LSB of $x[l]$=0} \\ b & \mbox{if LSB of $x[l]$=1,} \end{array} \right. \] problem with correctly delimiting the above equation $ x[l]\leftarrow x[(l+m) \bmod n] \oplus \mbox{shiftright}(x[l]) \oplus \left\{ \begin{array}{ll} 0 & \mbox{if LSB of $x[l]$=0} \\ b & \mbox{if LSB of $x[l]$=1,} \end{array} \right. $ Look at the position of the superscript in this: \[ \left[ \begin{array}{ccc} 1 & 2 & 3\\ 4 & 5 & 6\\ 7 & 8 & 9 \end{array} \right]^T \] or the superscript and subscript superposition: \[ s = \sum_{i=1}^n x^2_i \] or embedded sub/superscripts: \[ s_n=s^{n^2} \] and \[ s_n=s^{n_2} \] \end{document} latex2rtf-2.3.18/test/linux.toc0000644000175000017500000000717613664476467016603 0ustar wilfriedwilfried\babel@toc {english}{} \contentsline {section}{\numberline {0.1}OPEN PUBLICATION LICENSE}{V} \contentsline {subsection}{\numberline {0.1.1}REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS}{V} \contentsline {subsection}{\numberline {0.1.2}COPYRIGHT}{V} \contentsline {subsection}{\numberline {0.1.3}SCOPE OF LICENSE}{V} \contentsline {subsection}{\numberline {0.1.4}REQUIREMENTS ON MODIFIED WORKS}{V} \contentsline {subsection}{\numberline {0.1.5}GOOD-PRACTICE RECOMMENDATIONS }{VI} \contentsline {subsection}{\numberline {0.1.6}LICENSE OPTIONS}{VI} \contentsline {section}{\numberline {0.2}CHANGES}{VII} \contentsline {chapter}{\numberline {1}INTRODUCTION}{1} \contentsline {section}{\numberline {1.1}PROBLEM DEFINITION}{1} \contentsline {section}{\numberline {1.2}AIM}{2} \contentsline {section}{\numberline {1.3}QUESTIONS AT ISSUE}{2} \contentsline {section}{\numberline {1.4}EXPECTED RESULT}{2} \contentsline {chapter}{\numberline {2}THEORETICAL BACKGROUND}{3} \contentsline {section}{\numberline {2.1}KERNEL/OPERATING SYSTEM}{3} \contentsline {section}{\numberline {2.2}HISTORY OF UNIX}{4} \contentsline {section}{\numberline {2.3}UNIX PRODUCT OVERVIEW}{4} \contentsline {section}{\numberline {2.4}PREVIOUS RESEARCH}{5} \contentsline {section}{\numberline {2.5}IMPORTANT THEORIES}{6} \contentsline {subsection}{\numberline {2.5.1}KERNEL SPECIFIC FEATURES}{6} \contentsline {subsection}{\numberline {2.5.2}DISTRIBUTED SYSTEMS}{7} \contentsline {subsection}{\numberline {2.5.3}DISTRIBUTED FILE SYSTEMS}{7} \contentsline {subsection}{\numberline {2.5.4}FILE SYSTEMS}{8} \contentsline {subsection}{\numberline {2.5.5}NETWORK}{10} \contentsline {section}{\numberline {2.6}DELIMINATION OF THE PROBLEM AREA}{13} \contentsline {chapter}{\numberline {3}METHOD}{14} \contentsline {section}{\numberline {3.1}CHOICE OF METHOD}{14} \contentsline {section}{\numberline {3.2}DESCRIPTION OF METHOD}{14} \contentsline {chapter}{\numberline {4}REALIZATION}{16} \contentsline {section}{\numberline {4.1}IMPLEMENTATION}{16} \contentsline {chapter}{\numberline {5}RESULT}{17} \contentsline {section}{\numberline {5.1}TABLES}{17} \contentsline {subsection}{\numberline {5.1.1}TABLE WITH KERNEL SPECIFIC FUNCTIONS}{17} \contentsline {subsection}{\numberline {5.1.2}TABLE WITH FILE SYSTEM SPECIFIC FUNCTIONS}{18} \contentsline {subsection}{\numberline {5.1.3}TABLE WITH NETWORK SPECIFIC FUNCTIONS}{20} \contentsline {section}{\numberline {5.2}RESULT ANALYSIS}{22} \contentsline {chapter}{\numberline {6}DISCUSSION}{23} \contentsline {section}{\numberline {6.1}METHOD EVALUATION}{24} \contentsline {section}{\numberline {6.2}RECEIVED RESULTS VERSUS EXPECTED RESULT}{24} \contentsline {chapter}{\numberline {7}CONCLUSIONS}{25} \contentsline {section}{\numberline {7.1}PROPOSAL FOR FURTHER RESEARCH}{25} \contentsline {chapter}{\numberline {8}Bibliography}{26} \contentsline {section}{References}{I} \contentsline {subsubsection}{\numberline {8.0.0.1}Technical persons/resources}{IV} \contentsline {subsubsection}{\numberline {8.0.0.2}Websites}{IV} \contentsline {chapter}{\numberline {A}MESSAGE REPLIES FROM THE KERNEL DEVELOPMEN LIST}{V} \contentsline {section}{\numberline {A.1}Jeff Garzik 26 May 2001 22:27:09}{V} \contentsline {section}{\numberline {A.2}Jonathan Morton 27 May 2001}{VII} \contentsline {section}{\numberline {A.3}Jeff Garzik 26 May 2001 22:55:04}{VII} \contentsline {section}{\numberline {A.4}Dan Hollis 26 May 2001}{VIII} \contentsline {section}{\numberline {A.5}James Sutherland 27 May 2001}{IX} \contentsline {section}{\numberline {A.6}Ingo Oeser 27 May 2001}{X} \contentsline {section}{\numberline {A.7}Dominik Kubla 27 May 2001}{X} \contentsline {section}{\numberline {A.8}Ville Herva 27 May 2001}{XI} latex2rtf-2.3.18/test/enc_cp1250.tex0000777000175000017500000001234013050672357017173 0ustar wilfriedwilfried\documentclass[10pt]{article} \usepackage[T1]{fontenc} \usepackage[cp1250]{inputenc} \usepackage{times} \usepackage{textcomp} \begin{document} \begin{tabular}{ccrl} 80&€&8364&Euro sign\\ 81& &65535&unknown\\ 82&‚&8218&SINGLE LOW-9 QUOTATION MARK\\ 83& &65535&unknown\\ 84&„&8222&DOUBLE LOW-9 QUOTATION MARK\\ 85&$…$&8230&HORIZONTAL ELLIPSIS\\ 86&†&8224&DAGGER\\ 87&‡&8225&DOUBLE DAGGER\\ 88& &65535&unknown\\ 89&‰&8240&PER MILLE SIGN\\ 8A&Š&352&LATIN CAPITAL LETTER S WITH CARON\\ 8B&‹&8249&SINGLE LEFT-POINTING ANGLE QUOTATION MARK\\ 8C&Œ&346&LATIN CAPITAL LETTER S WITH ACUTE\\ 8D&&356&LATIN CAPITAL LETTER T WITH CARON\\ 8E&Ž&381&LATIN CAPITAL LETTER Z WITH CARON\\ 8F&&377&LATIN CAPITAL LETTER Z WITH ACUTE\\ 90& &65535&unknown\\ 91&‘&8216&LEFT SINGLE QUOTATION MARK\\ 92&’&8217&RIGHT SINGLE QUOTATION MARK\\ 93&“&8220&LEFT DOUBLE QUOTATION MARK\\ 94&”&8221&RIGHT DOUBLE QUOTATION MARK\\ 95&•&8226&BULLET\\ 96&–&8211&EN DASH\\ 97&—&8212&EM DASH\\ 98& &65535&unknown\\ 99&™&8482&TRADE MARK SIGN\\ 9A&š&353&LATIN SMALL LETTER S WITH CARON\\ 9B&›&8250&SINGLE RIGHT-POINTING ANGLE QUOTATION MARK\\ 9C&œ&347&LATIN SMALL LETTER S WITH ACUTE\\ 9D&&357&LATIN SMALL LETTER T WITH CARON\\ 9E&ž&382&LATIN SMALL LETTER Z WITH CARON\\ 9F&Ÿ&378&LATIN SMALL LETTER Z WITH ACUTE\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} A0& &160&NO-BREAK SPACE\\ A1&Ą&711&CARON\\ A2&˘&728&BREVE\\ A3&Ł&321&LATIN CAPITAL LETTER L WITH STROKE\\ A4&¤&164&CURRENCY SIGN\\ A5&Ľ&260&LATIN CAPITAL LETTER A WITH OGONEK\\ A6&Ś&166&BROKEN BAR\\ A7&§&167&SECTION SIGN\\ A8&¨&168&DIAERESIS\\ A9&$Š$&169©RIGHT SIGN\\ AA&Ş&350&LATIN CAPITAL LETTER S WITH CEDILLA\\ AB&Ť&171&LEFT-POINTING DOUBLE ANGLE QUOTATION MARK\\ AC& &65535&unknown\\ AD&­&173&SOFT HYPHEN\\ AE&Ž&174®ISTERED SIGN\\ AF&Ż&379&LATIN CAPITAL LETTER Z WITH DOT ABOVE\\ B0&°&176&DEGREE SIGN\\ B1&$ą$&177&PLUS-MINUS SIGN\\ B2&˛&731&OGONEK\\ B3&ł&322&LATIN SMALL LETTER L WITH STROKE\\ B4&´&180&ACUTE ACCENT\\ B5&$ľ$&181&MICRO SIGN\\ B6&ś&182&PILCROW SIGN\\ B7&ˇ&183&MIDDLE DOT\\ B8&¸&184&CEDILLA\\ B9&š&261&LATIN SMALL LETTER A WITH OGONEK\\ BA&ş&351&LATIN SMALL LETTER S WITH CEDILLA\\ BB&ť&187&RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK\\ BC&ź&317&LATIN CAPITAL LETTER L WITH CARON\\ BD&˝&733&DOUBLE ACUTE ACCENT\\ BE&ž&318&LATIN SMALL LETTER L WITH CARON\\ BF&ż&380&LATIN SMALL LETTER Z WITH DOT ABOVE\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} C0&Ŕ&340&LATIN CAPITAL LETTER R WITH ACUTE\\ C1&Á&193&LATIN CAPITAL LETTER A WITH ACUTE\\ C2&Â&194&LATIN CAPITAL LETTER A WITH CIRCUMFLEX\\ C3&Ă&258&LATIN CAPITAL LETTER A WITH BREVE\\ C4&Ä&196&LATIN CAPITAL LETTER A WITH DIAERESIS\\ C5&Ĺ&313&LATIN CAPITAL LETTER L WITH ACUTE\\ C6&Ć&262&LATIN CAPITAL LETTER C WITH ACUTE\\ C7&Ç&199&LATIN CAPITAL LETTER C WITH CEDILLA\\ C8&Č&268&LATIN CAPITAL LETTER C WITH CARON\\ C9&É&201&LATIN CAPITAL LETTER E WITH ACUTE\\ CA&Ę&280&LATIN CAPITAL LETTER E WITH OGONEK\\ CB&Ë&203&LATIN CAPITAL LETTER E WITH DIAERESIS\\ CC&Ě&282&LATIN CAPITAL LETTER E WITH CARON\\ CD&Í&205&LATIN CAPITAL LETTER I WITH ACUTE\\ CE&Î&206&LATIN CAPITAL LETTER I WITH CIRCUMFLEX\\ CF&Ď&270&LATIN CAPITAL LETTER D WITH CARON\\ D0&Đ&272&LATIN CAPITAL LETTER D WITH STROKE\\ D1&Ń&323&LATIN CAPITAL LETTER N WITH ACUTE\\ D2&Ň&327&LATIN CAPITAL LETTER N WITH CARON\\ D3&Ó&211&LATIN CAPITAL LETTER O WITH ACUTE\\ D4&Ô&212&LATIN CAPITAL LETTER O WITH CIRCUMFLEX\\ D5&Ő&336&LATIN CAPITAL LETTER O WITH DOUBLE ACUTE\\ D6&Ö&214&LATIN CAPITAL LETTER O WITH DIAERESIS\\ D7&$×$&215&MULTIPLICATION SIGN\\ D8&Ř&344&LATIN CAPITAL LETTER R WITH CARON\\ D9&Ů&366&LATIN CAPITAL LETTER U WITH RING ABOVE\\ DA&Ú&218&LATIN CAPITAL LETTER U WITH ACUTE\\ DB&Ű&368&LATIN CAPITAL LETTER U WITH DOUBLE ACUTE\\ DC&Ü&220&LATIN CAPITAL LETTER U WITH DIAERESIS\\ DD&Ý&221&LATIN CAPITAL LETTER Y WITH ACUTE\\ DE&Ţ&354&LATIN CAPITAL LETTER T WITH CEDILLA\\ DF&ß&223&LATIN SMALL LETTER SHARP S\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} E0&ŕ&341&LATIN SMALL LETTER R WITH ACUTE\\ E1&á&225&LATIN SMALL LETTER A WITH ACUTE\\ E2&â&226&LATIN SMALL LETTER A WITH CIRCUMFLEX\\ E3&ă&259&LATIN SMALL LETTER A WITH BREVE\\ E4&ä&228&LATIN SMALL LETTER A WITH DIAERESIS\\ E5&ĺ&314&LATIN SMALL LETTER L WITH ACUTE\\ E6&ć&263&LATIN SMALL LETTER C WITH ACUTE\\ E7&ç&231&LATIN SMALL LETTER C WITH CEDILLA\\ E8&č&269&LATIN SMALL LETTER C WITH CARON\\ E9&é&233&LATIN SMALL LETTER E WITH ACUTE\\ EA&ę&281&LATIN SMALL LETTER E WITH OGONEK\\ EB&ë&235&LATIN SMALL LETTER E WITH DIAERESIS\\ EC&ě&283&LATIN SMALL LETTER E WITH CARON\\ ED&í&237&LATIN SMALL LETTER I WITH ACUTE\\ EE&î&238&LATIN SMALL LETTER I WITH CIRCUMFLEX\\ EF&ď&271&LATIN SMALL LETTER D WITH CARON\\ F0&đ&273&LATIN SMALL LETTER D WITH STROKE\\ F1&ń&324&LATIN SMALL LETTER N WITH ACUTE\\ F2&ň&328&LATIN SMALL LETTER N WITH CARON\\ F3&ó&243&LATIN SMALL LETTER O WITH ACUTE\\ F4&ô&244&LATIN SMALL LETTER O WITH CIRCUMFLEX\\ F5&ő&337&LATIN SMALL LETTER O WITH DOUBLE ACUTE\\ F6&ö&246&LATIN SMALL LETTER O WITH DIAERESIS\\ F7&$÷$&247&DIVISION SIGN\\ F8&ř&345&LATIN SMALL LETTER R WITH CARON\\ F9&ů&367&LATIN SMALL LETTER U WITH RING ABOVE\\ FA&ú&250&LATIN SMALL LETTER U WITH ACUTE\\ FB&ű&369&LATIN SMALL LETTER U WITH DOUBLE ACUTE\\ FC&ü&252&LATIN SMALL LETTER U WITH DIAERESIS\\ FD&ý&253&LATIN SMALL LETTER Y WITH ACUTE\\ FE&ţ&355&LATIN SMALL LETTER T WITH CEDILLA\\ FF&˙&729&DOT ABOVE\\ \end{tabular} \end{document} latex2rtf-2.3.18/test/report.toc0000644000175000017500000000103413664476470016734 0ustar wilfriedwilfried\contentsline {chapter}{\numberline {1}First Chapter}{3} \contentsline {section}{\numberline {1.1}Intro}{3} \contentsline {section}{\numberline {1.2}Method}{4} \contentsline {chapter}{\numberline {2}Second Chapter}{5} \contentsline {section}{\numberline {2.1}Intro}{5} \contentsline {section}{\numberline {2.2}Method}{5} \contentsline {chapter}{\numberline {A}First Appendix}{7} \contentsline {section}{\numberline {A.1}Intro}{7} \contentsline {chapter}{\numberline {B}Second Appendix}{8} \contentsline {section}{\numberline {B.1}Intro}{8} latex2rtf-2.3.18/test/ttgfsr7.tex0000777000175000017500000012017513050672360017034 0ustar wilfriedwilfried\documentstyle[epsf,12pt]{article} % Specifies the document style. %\documentstyle[12pt,doublespace]{article} % Specifies the document style. % The preamble begins here. \textheight 245mm \textwidth 172mm \oddsidemargin -4 mm \topmargin -25mm %\setstretch{1} % Change this if double-spacing is required. \title{Twisted GFSR Generators II \footnotetext{ {\bf Categories and Subject Descriptors:} G. 2.1. [Discrete Mathematics] : Combinatorics--{\sl recurrences and difference equations}; G. 3. [Probability and Statistics]--{\sl random number generation. } } \footnotetext{ {\bf General Terms}: Algorithms, Theory, Experimentation } \footnotetext{ {\bf Additional Key Words and Phrases}: GFSR, TGFSR, $m$-sequences, $k$-distribution, finite fields } } \author{Makoto Matsumoto \\ Research Institute for Mathematical Sciences \\ Kyoto University, Kyoto 606, Japan \\ and \\ Yoshiharu Kurita \\ National Research Laboratory of Metrology \\ Tsukuba 305, Japan} % Declares the author's name. %\date{December 2, 1988} % Deleting this command produces today's date. \def\thefootnote{\fnsymbol{footnote}} \def\bx{{\bf x}} \def\by{{\bf y}} \def\bz{{\bf z}} \def\bu{{\bf u}} \def\bi{{\bf i}} \def\ba{{\bf a}} \def\bb{{\bf b}} \def\bc{{\bf c}} \def\bd{{\bf d}} \def\be{{\bf e}} \def\bp{{\bf p}} \def\calx{{\cal X}} \def\mod{{\mbox{ mod }}} \def\appro{\mbox{trunc}} \def\notdivide{{\hspace{1.5pt}| \hspace{-4.65pt} /}} % does not divide \begin{document} % End of preamble and beginning of text. \maketitle % Produces the title. \def\N{{\rm I\kern-0.2em N}} % Ensemble des nombres naturels. \def\rmI{{\rm I}} %\newpage \begin{abstract} The twisted GFSR generators proposed in a previous paper have a defect in $k$-distribution for $k$ larger than the order of recurrence. In this follow-up paper we introduce and analyze a new TGFSR variant having better $k$-distribution property. An efficient algorithm to obtain the order of equidistribution is provided, together with a tight upper bound on the order. A method to search for generators attaining this bound is discussed, and some such generators are listed. The upper bound turns out to be (sometimes far) less than the maximum order of equidistribution for a generator of that period length, but far more than that for a GFSR with a working area of the same size. \end{abstract} \section{Introduction} In the previous paper\cite{matsumoto}, we introduced a random-number-generating algorithm, the {\em twisted GFSR generator} (TGFSR). \paragraph{Definition 1.} A sequence $\bx_0,\bx_1,\bx_2,\ldots$ of $w$-bit integers is {\em a TGFSR sequence} with parameters $(w,n,m,A)$ ($n>m$ : positive integers) if it satisfies \begin{equation} \bx_{l+n} = \bx_{l+m} \oplus \bx_iA \quad (l=0,1,2,\ldots), \label{eq:recA} \end{equation} where $\bx_i$ are regarded as row vectors of bits, $\oplus$ denotes the bitwise exclusive-or operation, $A$ is a $w\times w$ matrix with components in GF(2), and $\bx_iA$ denotes the multiplication between a row vector and a matrix over GF(2). \vskip 3mm If $A$ is an identity matrix, then the sequence is a GFSR sequence based on a characteristic trinomial. As shown in \cite[\S\S3.7, \S\S3.8]{lecuyer2}, both GFSR and TGFSR can be viewed as implementation approaches of digital matrix generators, and TGFSR generators can also be implemented as large GFSRs (based on a characteristic polynomial of order $wn$). With a suitable choice of $(w,n,m,A)$, the sequence attains the maximal period $2^{nw}-1$. Here we treat only TGFSR with maximal periods, and simply call them TGFSR. In the previous paper, we dealt with the case where $A$ is of rational normal form, as below, because it permits an efficient implementation of the recurrence (\ref{eq:recA}). \paragraph{Definition 2.} A TGFSR sequence with \[ A=R:=\left( \begin{array}{ccccc} & 1 & & & \\ & & 1 & & \\ & & & \ddots & \\ & & & & 1 \\ a_0 & a_1 & \cdots & \cdots & a_{w-1} \\ \end{array} \right) \] is called {\em a TGFSR sequence of rational normal form} (TGFSR(R)). \vskip 3mm Unfortunately, a TGFSR(R) has a defect from the viewpoint of {\em $k$-distribution to $v$-bit accuracy}\cite{tootill}, defined as follows. \paragraph{Definition 3.} A pseudorandom sequence ${\bx_i}$ of $w$-bit integers of period $P$ satisfying the following condition is said to be {\em $k$-distributed to $v$-bit accuracy}: let $\appro_v(\bx)$ denote the number formed by the leading $v$ bits of $\bx$, and consider the $kv$-bit vectors $$ (\appro_v(\bx_i), \appro_v(\bx_{i+1}), \ldots, \appro_v(\bx_{i+k-1})) \ \ \ (0\leq i < P). $$ Then, each of the $2^{kv}$ possible combinations of bits occurs the same number of times in a period, except for the all-zero combination that occurs once less often. \vskip 3mm Let $\bx_0,\bx_1,\ldots$ be a sequence of $w$-bit integers and let $P$ be its period. For each $v=1,2,\ldots,w$, let $k(v)$ denote the maximum number such that the sequence is $k(v)$-distributed to $v$-bit accuracy. Clearly we have the inequality $2^{k(v)v}-1 \leq P$, since at most $P$ patterns can occur in one period. In the case of TGFSR, $P=2^{nw}-1$ holds, hence we have $k(v) \leq \lfloor nw/v\rfloor $ with $n$ being the number of words. However, as Tezuka\cite{tezuka} pointed out, TGFSR(R) is only $n$-distributed to 2-bit accuracy, far smaller than the upper bound $k(v) \leq \lfloor nw/v\rfloor$. (Generators attaining this upper bound for every $v$ $(1\leq v \leq w)$ are called {\em asymptotically random}\cite{tootill}.) This led us to consider $k$-distribution of TGFSR with other types of $A$ instead of $R$. The purpose of this paper is to introduce a new feasible variant of TGFSR with better $k$-distribution. It turns out that TGFSR has a tighter upper bound than the one deduced above, namely $k(v)\leq n\lfloor w/v \rfloor$. Consequently, a TGFSR is never asymptotically random. However, we could find an efficient algorithm to obtain $A$ attaining this bound and an efficient implementation of the corresponding TGFSR. We shall list some TGFSR generators attaining these upper bounds $n\lfloor w/v\rfloor$ simultaneously for all $v$. They are much better than the $\lfloor n/v \rfloor$ achieved by a GFSR of the same size (i.e., $n$ words of $w$-bit integers). One may still insist that a GFSR of the same {\em period} $2^{nw}-1$ (consuming $w$ times memory area of TGFSR) may achieve an asymptotically random distribution $k(v)=\lfloor nw / v \rfloor$, and consequently that Theorem~1 is a negative result. This is not necessarily the case, as shown in the following comparison with an asymptotically random GFSR of $N$-words ($N \sim nw$) with $k(v)=\lfloor N/v \rfloor$. \newline (i) To obtain a TGFSR whose $k(v)$ exceeds $\lfloor N/v \rfloor$ for all $v$, it is sufficient to take $n=\lceil 2N/(w+1) \rceil$ words ($\ll N$). (This follows from a simple calculation.) Thus, a TGFSR needs much less memory than a GFSR of the same $k$-distribution property. Note that in a multi-task system, a memory-consuming program is sometimes time-consuming, because of swapping of memories. \newline (ii) In the GFSR case, to obtain $k(v)$ for a given initial value, one must calculate the rank of an $N\times N$ matrix for each $v$, while any initial value attains the upper bound in the case of TGFSR. \newline (iii) Even an asymptotically random GFSR is rejected by the weight-distribution test, if it is based on a trinomial (see Section~4. See also \cite{matsumoto}). A brief sketch of this paper is as follows. In Section~2, we provide an efficient algorithm to obtain $k(v)$ through simple operations on matrix $A$ (Theorem 1), which also shows that TGFSR has the upper bound $k(v)\leq n\lfloor w/v \rfloor$. In Section~3, we discuss how to search for the matrix $A$ which satisfies the above bounds at once for all $v$ and also allows for an efficient implementation. In Subsection~3.1, we analyze the bad correlation in TGFSR(R) by applying Theorem~1. In Subsection~3.2, based on this analysis, we discuss a method to modify the output sequence of a TGFSR(R) by a simple linear transformation into a sequence of TGFSR satisfying the bound of Theorem~1. This modification requires only a few instructions to be added to the previous TGFSR(R) program. In Subsection~3.3, we discuss an efficient way to determine a modifying parameter. In Section~4, we list some efficient generators attaining these bounds. We conduct empirical tests on these generators and the old TGFSR(R), and we dismiss the latter type. \section{Criterion for equidistribution} The next theorem provides an efficient algorithm to obtain $k(v)$ and its tight upper bound for the general TGFSR. \paragraph{Theorem 1.} Let $(w,n,m,A)$ be the parameters of a TGFSR. Let $\bd_j^{(i)}$ denote the $i$-th column vector of $A^j$. Consider the sequence of vectors $$ \bd_0^{(0)}, \bd_0^{(1)}, \ldots, \bd_0^{(v-1)}, \bd_1^{(0)}, \bd_1^{(1)}, \ldots, \bd_1^{(v-1)}, \bd_2^{(0)}, \ldots. $$ Let $\bd_{j_0}^{(i_0)}$ be the first vector that is GF(2)-linearly dependent with the preceding vectors. Then we have $$k(v)=nj_0.$$ \paragraph{Corollary 1.} $$n|k(v) \mbox{ and } k(v)\leq n\lfloor w/v \rfloor \quad (v=1,2,\ldots,w).$$ \paragraph{Proof} (by R. Couture). Fix $k$ and $v$. Let $V_w:=GF(2)^w$ be the space of $w$-bit integers regarded as a row vector space. Define $$ \Omega_w:=\Omega_w':=V_w^k, $$ and identify $\Omega_w$ with the space of $k\times w$ matrices. Similarly define $V_v$, $\Omega_v$, and $\Omega_v'$. Let $\rho:V_w^n \rightarrow \Omega_w$ map $(\bx_0,\ldots,\bx_{n-1})$ to the first $k$ values $(\bx_0,\ldots,\bx_{k-1})$ of the TGFSR sequence $(\bx_0,\bx_1,\ldots,\bx_j,\ldots)$ with initial value $(\bx_0,\ldots,\bx_{n-1})$. Let $\appro:V_w\rightarrow V_v$ denote the truncation map defined in Definition~3, that is, the multiplication by the $w\times v$-matrix $Q:=\left(\begin{array}{c} \rmI_v \\ 0 \end{array}\right)$ from the right. We denote the multiplication from the right by $\times Q$ and from the left by $Q\times$. Now the $k$-distribution to $v$-bit accuracy is equivalent to the surjectivity of the composition map $$ V_w^n \stackrel{\rho}{\rightarrow}\Omega_w \stackrel{\times Q}{\rightarrow} \Omega_v, $$ since the state vector assumes all nonzero values in $V_w^n$ in one period. Let $\tau:V_w^n \rightarrow \Omega_w'$ be the map defined by $$ (\bx_0,\bx_1,\ldots,\bx_{n-1})\mapsto (\bx_0,\bx_1,\ldots,\bx_{n-1},\bx_0A,\bx_1A\ldots,\bx_{n-1}A, \bx_0A^2,\ldots, \bx_0A^q,\ldots,\bx_{r-1}A^q), $$ where $r$ and $q$ are the residue and the quotient of $k/n$, respectively. Let us consider the linear recurrence $$ y_{l+n} = y_{l+m} + y_lX \quad (l=0,1,2,\ldots), $$ where $X$ is an indeterminate, $y_0,\ldots,y_{n-1}$ are indeterminates, and $y_l \ (l\geq n)$ is a polynomial of these indeterminates. Then, for any integer $N$, $y_N$ can be written as a linear combination of $$ \{ y_iX^j | i=0,1,\ldots,n-1, i+jn \leq N \}, $$ and the coefficient of $y_iX^j$ for unique $(i,j)$ with $N=i+jn$ does not vanish. By substituting $y_l:=\bx_l$ and $X:= A$, we see that there is a regular lower-half triangular $k\times k$-matrix $T$ such that the composition $$ V_w^n \stackrel{\tau}\rightarrow \Omega_w' \stackrel{T\times}{\rightarrow}\Omega_w $$ coincides with $\rho$. Now we have a commutative diagram $$ \begin{array}{ccccc} V_w^n & \stackrel{\tau}\rightarrow & \Omega_w' & \stackrel{\times Q}{\rightarrow} & \Omega_v'\\ \| & & \downarrow & & \downarrow \\ V_w^n & \stackrel{\rho}\rightarrow & \Omega_w & \stackrel{\times Q}{\rightarrow} & \Omega_v\\ \end{array}, $$ where the two vertical maps are the isomorphisms $T\times$. Hence, it is sufficient to consider the surjectivity of the upper row, which is the linear transformation $$ (\bx_0,\bx_1,\ldots,\bx_{n-1})\mapsto (\bx_0Q,\bx_1Q,\ldots,\bx_{n-1}Q,\bx_0AQ,\bx_1AQ,\ldots,\bx_{n-1}AQ, \bx_0A^2Q,\ldots, \bx_{r-1}A^qQ), $$ and this splits to a direct sum according to $V_w^n=V_w\oplus V_w\oplus\cdots \oplus V_w$. Thus the surjectivity of the upper row reduces to the surjectivity of $$ \begin{array}{ccc} V_w^n & \rightarrow & V_v^{q+1} \\ \bx & \mapsto & \bx U, \end{array} $$ where $U$ is a $w\times (q+1)v$-matrix $$ U:= (Q, AQ, A^2Q, \ldots, A^qQ). $$ Thus, $k$-distribution of the $v$-bit accuracy is equivalent to the rank of $U$ being $(q+1)v$. In other words, to the independence of columns of $U$. The maximum $q$ equals $j_0$ in the statement of the theorem, and since $q= \lfloor k / n \rfloor$, the theorem follows. Corollary~1 is an immediate consequence of the theorem. \paragraph{Remark 1.} The $j_0$ in the theorem coincides with the order of equidistribution to $v$-bit accuracy of the matrix linear congruential sequence defined by $ z_{i+1}=z_iA$, if $\varphi_A(t)$ is primitive. It is worth noting that the condition for a TGFSR with parameters $(w,n,m,A)$ to achieve the upper bound in Corollary~1 depends only on $A$, and is independent of $n$ and $m$, unlike the case of GFSR\cite{tootill}\cite{fushimi}. This implies that one good $A$ serves for any $n$ and $m$, provided that $(w,n,m,A)$ is a tuple of parameters of a (maximal period) TGFSR generator. \vskip 3mm \section{How to attain the bound} We want to find matrices $A$ satisfying the upper bound in Corollary~1 and permitting an efficient implementation. We will show that TGFSR(R)s cannot reach that upper bound, and then propose a way of constructing matrices $A$ that satisfy those conditions. \subsection{Bad correlation in TGFSR(R)} We interpret $j_0$ in Theorem~1 as the degree of the minimal-degree relation between some polynomials, in order to investigate bad correlations in TGFSR(R). Let us fix one set of parameters $(w,n,m,A)$ providing a TGFSR. Let $\eta$ be an eigenvalue of $A$. Then $\eta$ generates GF$(2^w)$ over GF(2) and is of multiplicity one, because the characteristic polynomial of $A$ is irreducible. Thus, the corresponding row eigenvector can be taken in GF($2^w$)$^w$. Let $(\phi_1,\ldots,\phi_w)$ be such a (row) eigenvector of $A$, namely, \begin{equation}\label{eigen} (\phi_1,\ldots,\phi_w)A = (\eta\phi_1,\ldots,\eta\phi_w), \ \phi_i \in \mbox{GF}(2^w). \end{equation} We can state Theorem~1 in terms of degree, as follows. \paragraph{Theorem 2.} Let $\eta\in\mbox{GF}(2^w)$ be an eigenvalue of $A$ and $(\phi_1,\ldots,\phi_w)$ be a corresponding row eigenvector. Let us define the degree of an element of GF$(2^w)$ as the minimal degree of its representations as a nonzero polynomial in $\eta$. (Thus, degree of $0$ is $w$.) Let $v$ be an integer with $1\leq v \leq w$. For a linear relation $\sum_{i=1}^v \gamma_i\phi_i=0$ in GF$(2^w)$, we define the degree of the linear relation as the maximum degree of $\gamma_i$ $(i=1,\ldots,v)$. Then, $k(v)$ equals $n$ times the degree of the minimal-degree relation between $\{\phi_1,\phi_2,\ldots,\phi_v \}$. \paragraph{Proof.} First we claim that $\{\phi_1,\phi_2,\ldots,\phi_w \}$ is linearly independent over GF(2). Because, if not, they satisfy a linear relation over GF(2), and hence all Galois conjugates of the set $\{\phi_1,\phi_2,\ldots,\phi_w\}$ satisfy the same linear relation. Thus, the Galois conjugates of the vector $(\phi_1,\phi_2,\ldots,\phi_w)$ (there are exactly $w$ conjugates) are linearly dependent. This contradicts that each of these vectors lies in an eigenspace with distinct eigenvalues. By this and Theorem~1, $k(v)$ is $n$ times the minimum $j$ such that the components in the $(j+1)v$-dim GF$(2^w)$-vector $$ (\phi_1,\phi_2,\ldots,\phi_v)(Q, AQ, A^2Q, \ldots, A^jQ) $$ ($Q$: the $w\times v$ matrix defined in the proof of Theorem~1) are linearly dependent over GF(2), in other words, the set $$ \{\phi_1,\phi_2,\ldots,\phi_v,\eta\phi_1,\eta\phi_2,\ldots,\eta\phi_v \eta^2\phi_1,\ldots,\eta^j\phi_1,\ldots, \eta^j\phi_v\} $$ being linearly dependent. Thus, $j$ is nothing but the degree of the minimal-degree relation between $\{\phi_1,\ldots,\phi_v\}$. \vskip 3mm We shall apply this theorem to TGFSR(R). A direct calculation shows the following. \paragraph{Lemma~1.} Let $A:=R$ be the matrix in Definition~2. Then, a GF($2^w$) vector $(\phi_1,\phi_2,\ldots,\phi_w)$ is a (row) eigenvector of $R$ if and only if it satisfies the equations \begin{equation}\label{eq:bit1} \phi_i=\eta\phi_{i+1}+a_i\phi_w \quad (i=1,\ldots,w-1) \end{equation} and \begin{equation}\label{eq:bit2} a_0\phi_w=\eta\phi_1. \end{equation} \vskip 5mm Because $a_0=1$, equations~(\ref{eq:bit1}) and (\ref{eq:bit2}) in the above lemma show that \begin{equation}\label{eq:bit3} \phi_i=\eta(\phi_{i+1}+a_i\phi_1), \quad (i=1,\ldots,w-1). \end{equation} Thus, in the case of $i=1$, this shows that the degree of the minimal-degree linear relation between $\phi_1$ and $\phi_2$ is one, and hence Theorem~2 shows that $k(2) = n \times 1$, recovering a result of Tezuka\cite{tezuka}. Next, we consider consecutive three bits $\phi_i$, $\phi_{i+1}$, and $\phi_{i+2}$. If $a_i$ is zero, then by (\ref{eq:bit1}) the minimal-degree linear relation between $\phi_{i}$ and $\phi_{i+1}$ has degree one; hence the $i$-th bit and $i+1$-th bit are at most $n$-distributed. If $a_{i+1}$ is zero, the same is true between the $i+1$-th and the $i+2$-th bits. If $a_i=a_{i+1}=1$, then one can eliminate $\phi_w$ from equation~(\ref{eq:bit1}) to obtain $$\phi_i-\phi_{i+1}=\eta\phi_{i+1}-\eta\phi_{i+2},$$ which asserts the following. \paragraph{Proposition 1.} In the TGFSR sequence, any three consecutive bits of $\bx_i$ are at most $n$-distributed. \vskip 3mm From (\ref{eq:bit3}) we obtain a recurring formula $$ \phi_{i+1}=\eta^{-1}\phi_i+a_i\phi_1, $$ and by solving this inductively, it is easy to see that $$\phi_i=\Phi_i(\eta^{-1})\phi_1$$ holds for some polynomial $\Phi_i(t)\in$GF(2)$[t]$ of degree $i-1$ ($i\leq w$). Thus, any GF(2)-linear combination of $\phi_1,\ldots, \phi_s$ can be written in the form of $\Psi(\eta^{-1})\phi_1$ with $\Psi(t)$ of degree $\leq s-1$. Any two such linear combinations $\Psi(\eta^{-1})\phi_1$ and $\Psi(\eta^{-1})'\phi_1$ have a linear relation of degree $\leq s-1$, namely, $(\Psi(\eta^{-1})'\eta^{s-1})\cdot\Psi(\eta^{-1})\phi_1 =(\Psi(\eta^{-1})\eta^{s-1})\cdot\Psi(\eta^{-1})'\phi_1$. By Theorem~2 we have proven the following. \paragraph{Proposition 2.} Any two linear combinations of $(\phi_1,\ldots,\phi_s)$ has a linear relation of degree $s-1$. Thus, for a TGFSR(R) sequence, any two linear combinations of the most significant $s$ bits are at most $n(s-1)$-distributed. \subsection{Tempering TGFSR(R)} We shall provide an efficient method to search for a good $A$ based on the above analysis of TGFSR(R). The idea is the following modification (called {\em tempering}) of TGFSR(R) generators, which is equivalent to considering a general $A$. Let $\{\bx_i\}$ be a TGFSR(R) sequence, and define a sequence $\{\bz_i\}$ by putting \begin{equation} \bz_i := \bx_i P, \label{eq:recP} \end{equation} where $P$ is a regular GF(2)-matrix. By deleting $\bx$ from (\ref{eq:recA}) using (\ref{eq:recP}), we realize that $\{\bz_i\}$ is a TGFSR sequence with parameters $(w,n,m,P^{-1}RP)$. Since the characteristic polynomial of $A$ of a (maximal period) TGFSR is irreducible, $A$ is similar to a (unique) rational normal form $R$, that is, $A=P^{-1}RP$ holds for certain $P$ and $R$. Hence, any (maximal period) TGFSR can be obtained in this way. Thus, what we should do is to choose a simple $P$ such that $\{z_i\}$ attains the bound in Theorem~1. Let $(\phi_1,\ldots,\phi_w)$ be the row eigenvector of $R$, as in \S3.1. Then, the eigenvector of $A=P^{-1}RP$ is $$ (\phi_1',\ldots,\phi_w')=(\phi_1,\ldots,\phi_w)P, $$ and hence Theorem~2 can be applied. We shall investigate a feasible transform $\bx \mapsto \bx P$ permitting an efficient implementation. The linear operations with respect to GF(2) existing in a usual instruction set are exclusive-or, bit shift, and bitwise AND with a constant bitmask. Proposition~1 suggests that bitwise AND will be necessary in some way, since the others do not cut off the adjacency of the consecutive bits. Proposition~2 asserts that a $P$ such as $ \left( \begin{array}{cc} U & V \\ 0 & W \end{array} \right), $ where $U$ is an $s\times 2$ matrix and $s -1 < \lfloor w/2 \rfloor$, never attains the bound on $k(2)$ since $k(2)\leq n(s-1)$. To attain the bound, $P$ should add the $s$-th bit of $\bx$ with $s-1 \geq \lfloor w/2 \rfloor$ to one of the most significant two bits. This observation and the limitation in the instruction set lead us to a transformation \begin{equation} \bx \mapsto \bx \oplus (\bx << s-2), \label{eq:simple} \end{equation} with $s-1\geq \lfloor w/2 \rfloor$, where $\bx << s-2$ denotes the $(s-2)$-bit shiftleft operation on $\bx$. Taking Proposition~1 into account, we contrive a transformation \begin{equation} \by := \bx \oplus ((\bx << \mbox{ some bits } ) \& \mbox{BITMASK}), \label{eq:one} \end{equation} where $\&$ represents the bitwise AND operation and BITMASK is a suitable bitmask. A more complicated combinatorial analysis with many case divisions shows that this transform is not yet sufficient. We extensively examined several alternatives, and finally found a feasible transformation, namely, applying the transform~(\ref{eq:one}) twice: \paragraph{Transform 1.} We define $P$ to be the transform $\bx \rightarrow \bx P = \bz$ given by \begin{eqnarray} \by & := & \bx \oplus ((\bx << s) \& \bb); \nonumber \\ \bz & := & \by \oplus ((\by << t) \& \bc); \label{eq:trans} \end{eqnarray} where $s$ and $t$ are integers, $\bb$ and $\bc$ are suitable bitmasks of word size, $(\bx << s)$ indicates the $s$-bit shiftleft, and $\&$ means the bitwise AND operation. \vskip 3mm Note that $0\geq s,t \geq w-1$. To attain the bound on $k(2)$, it is necessary to satisfy $s+t \geq \lfloor w/2 \rfloor -1$, since $P$ is easily seen to have the form $ \left( \begin{array}{cc} U & V \\ 0 & W \end{array} \right) $ with $U$ of size $(s+t+2)\times 2$. Empirically, all TGFSR(R) that we have found can be tempered into TGFSR which attains the bounds by using Transform~1. \subsection{How to find parameters} In this section, a strategy to determine the bitmasks $\bb$ and $\bc$ is described. Take $s$ and $t$ satisfying the condition stated after Transform~1. Experimentally, we could find $\bb$ and $\bc$ attaining the bound if we choose $t$ near $\lfloor w/2 \rfloor -1$ and $s$ near $t/2$ (see Table~1). %According to our experiments the choices $t \sim \lfloor w/2 \rfloor -1$ and %$s \sim t/2$ seem appropriate to attain the bounds. Now we fix such $s$ and $t$, and explain a way to find such $\bb$ and $\bc$. First set $\bb:=0;\ \ \bc:=0$. Assume that the converted sequence $\{z_i\}$ shows the optimal order of equidistribution up to $(v-1)$-bit accuracy in the sense of the Corollary~1. Now we shall optimize the order of equidistribution to $v$-bit accuracy. The bits of $\bb$ and $\bc$ possibly affecting the $v$-th bit of $\bz$ are $$ b^{(v)}, c^{(v)}, b^{(v+t)}, $$ where $b^{(v)}$ denotes the $v$-th bit of $\bb$, etc. The easiest bit to control is $c^{(v)}$. This bit does not affect more significant bits in $z$. Bit $b^{(v)}$ influences $z^{(v-t)}$ if $v-t>0$ and $c^{(v-t)}=1$, and hence should not be changed in this case. Bit $b^{(v+t)}$ does not affect more significant bits, but if $c^{(v)}=0$, then it does not affect $z^{(v)}$. In summary, we may change the bitmasks under the following restrictions. \begin{eqnarray*} c^{(v)} & = & \left\{ \begin{array}{ll} 0 & \mbox{if $v > w-t$} \\ (0, 1) & \mbox{otherwise}, \end{array} \right. \\ b^{(v)} & = & \left\{ \begin{array}{ll} 0 & \mbox{if $v > w-s$} \\ \mbox{as it was} & \mbox{if $c^{(v-t)}=1$ and $v-t>0$}\\ (0, 1) & \mbox{otherwise}, \end{array} \right. \\ b^{(v+t)} & = & \left\{ \begin{array}{ll} 0 & \mbox{if $v+t > w-s$ or $c^{(v)}=0$} \\ (0, 1) & \mbox{otherwise.} \end{array} \right. \end{eqnarray*} By checking $k(v)$ in each case, we determine these three bits. We use the backtracking technique to find a parameter satisfying the bounds on $k(v)$, $v=0,1,\ldots,w-1$. Note that independence of some columns of $P^{-1}R^jP$, as in Theorem~1 (see also Definition~5), is equivalent to that of $R^jP$. Instead of using columns of $R^jP$, it is somewhat easier to use rows of $^tP^tR^j$. The $i$-th row $\bp_i$ of $^tP$ is obtained by \begin{eqnarray*} \by & := & \be_i \oplus ((\be_i \& \bc) >> t); \\ \bp_i & := & \by \oplus ((\by \& \bb) >> s); \end{eqnarray*} where $\be_i$ is the $i$-th unit (row) vector. The transform $\bx \mapsto \bx^tR$ is obtained by $\bx^tR=\mbox{shift left}(\bx) \oplus q$, where $q$ is 0 or $\be_w$ according to the parity of the number of 1s in $\bx \& \ba$. \section{Practical generators and their tests} Table~1 lists some examples of TGFSR obtained by the method in \S3.3. In the table, TT*** is obtained by tempering T*** in the previous paper\cite{matsumoto}. Hence tempering can easily be implemented by adding two lines (\ref{eq:trans}) to the original programs for T***. T800 is an original TGFSR(R) generator without tempering, used here for comparison. G607 is an asymptotically random GFSR generator proposed in \cite{tootill}. Observe that $k(v)$ coincides with $n\lfloor w/v \rfloor$ for the tempered TGFSR, which is the upper bound given in the Corollary~1. Note also that any TGFSR satisfies $k(v)\geq n$, as proven in \cite{matsumoto}. \vskip 5mm \begin{center} {\footnotesize \begin{tabular}{|c|c|rrrr rrrr|}\hline \multicolumn{2}{|c|}{Generator} & \multicolumn{8}{c|}{The order of equidistribution} \\ \hline ID & Parameters & $k(1)$&$k(2)$&$k(3)$&$k(4)$&$k(5)$&$k(6)$&$k(7)$&$k(8)$ \\ & & $k(9)$&$k(10)$&$k(11)$&$k(12)$&$k(13)$&$k(14)$&$k(15)$&$k(16)$ \\ & & $k(17)$&$k(18)$&$k(19)$&$k(20)$&$k(21)$&$k(22)$&$k(23)$&$k(24)$ \\ & & $k(25)$&$k(26)$&$k(27)$&$k(28)$&$k(29)$&$k(30)$&$k(31)$&$k(32)$ \\ \hline %\multicolumn{8}{c|}{$k(v)$ for $v=1,\ldots,w$} \\ \hline TT400 & $(w,n,m)=(16,25,11)$ &400&200&125&100&75&50&50&50 \\ & \ba = {\tt A875} & 25& 25& 25& 25&25&25&25&25 \\ & s=2, \bb = {\tt 6A68} &*&*&*&*&*&*&*&* \\ & t=7, \bc = {\tt 7500} &*&*&*&*&*&*&*&* \\ \hline TT403 & $(w,n,m)=(31,13,2)$ &403&195&130&91&78&65&52&39 \\ & \ba={\tt 6B5ECCF6} &39&39&26&26&26&26&26&13 \\ & s=8, \bb={\tt 102D1200} &13&13&13&13&13&13&13&13 \\ & t=14, \bc={\tt 66E50000} &13&13&13&13&13&13&13&* \\ \hline TT775 & $(w,n,m)=(31,25,8)$ &775&375&250&175&150&125&100&75 \\ &\ba = {\tt 6C6CB38C} &75&75&50&50&50&50&50&25 \\ &s=6, \bb={\tt 1ABD5900} &25&25&25&25&25&25&25&25 \\ &t=14, \bc={\tt 776A0000} &25&25&25&25&25&25&25&25 \\ \hline TT800 &$(w,n,m)=(32,25,7)$ &800&400&250&200&150&125&100&100 \\ & \ba={\tt 8EBFD028} &75&75&50&50&50&50&50&50 \\ & s=7, \bb={\tt 2B5B2500} &25&25&25&25&25&25&25&25 \\ & t=15, \bc={\tt DB8B0000} &25&25&25&25&25&25&25&25 \\ \hline T800 & $(w,n,m)=(32,25,7)$ &800&25&25&25&25&25&25&25 \\ & \ba={\tt 8EBFD028} &25&25&25&25&25&25&25&25 \\ & &25&25&25&25&25&25&25&25 \\ & &25&25&25&25&25&25&25&25 \\ \hline G607 & $(w,n,m)=(23,607,334)$ &607&303&202&151&121&101&86&75 \\ & (an asymptotically random GFSR &67&60&55&50&46&43&40&37 \\ & of 607 words\cite{tootill}) &35&33&31&30&28&27&26& * \\ & & *&*&*&*&*&*&*&* \\ \hline \end{tabular} } \smallskip {\footnotetext{$^*$If $w=31$, the most significant bit is always zero in 32-bit words.} Table 1$^*$. $k$-distribution of four tempered TGFSR(R), one plain TGFSR(R), and one GFSR} \end{center} \vskip 5mm In Table~1, $\ba$, $\bb$, and $\bc$ are written in hexadecimal. Thus, for example, the TT775 31-bit pseudorandom-integer generators can be implemented as follows (C-like notations are used for bit operations). Define four integer constants $n:=25$, $m:=8$, $s:=6$, and $t:=14$, and three 32-bit integers in the hexadecimal notation $\ba := {\tt 6C6CB38C}$, $\bb := {\tt 1ABD5900}$, and $\bc := {\tt 776A0000}$. Let $x[n]$ be an array of $n$ 32-bit integers, $y$ be a 32-bit integer variable, and $l$ be an integer variable. \begin{description} \item[Step 1.] $l\leftarrow 0$ \item[Step 2.] Set $x[0]$, $x[1]$, $\ldots$, $x[n-1]$ to suitable nonzero initial values (with most significant bit 0). \item[Step 3.] $y \leftarrow x[l] \oplus ((x[l]<< s) \& \bb)$; $y \leftarrow y \oplus ((y << t) \& \bc)$; output $y$. \item[Step 4.] $x[l]\leftarrow x[(l+m) \mod n] \oplus \mbox{shiftright}(x[l]) \oplus \left\{ \begin{array}{ll} 0 & \mbox{if LSB of $x[l]$=0} \\ \ba & \mbox{if LSB of $x[l]$=1,} \end{array} \right. $ \item[Step 5.] $l\leftarrow (l+1) \mod n$ \item[Step 6.] Goto Step 3. \end{description} \paragraph{Statistical Tests.} $ $ To verify the improvement due to tempering, the following statistical tests, {\em weight distribution tests}\cite{matsumoto}, are performed. These tests are designed for a statistical treatment of the deviation of weights of trinomial-based $m$-sequences, which was pointed out by Fredricsson\cite{fredricsson}. Using a randomly selected initial seed, we generate $ N \times r $ uniformly distributed random numbers $x_1,x_2,...,x_{N \times r} \ \in [0,1]$. This sequence is divide into $r$ pieces: $ y_1:=(x_ 1 ,x_ 2 ,\ldots,x_ N ), y_2:=(x_{ N+1},x_{ N+2},\ldots,x_{2N}),\ldots, y_r:=(x_{(r-1)N+1},x_{(r-1)N+2},\ldots,x_{rN}) $. For each $y_i \ (1 \leq i \leq r)$, let $X_i$ be the number of components of $y_i$ greater than $R$, where $R$ is a fixed constant $0 #define N 25 #define M 7 double genrand() { unsigned long y; static int k = 0; static unsigned long x[N]={ /* initial seeds: N=25 words */ 0x95f24dab, 0x0b685215, 0xe76ccae7, 0xaf3ec239, 0x715fad23, 0x24a590ad, 0x69e4b5ef, 0xbf456141, 0x96bc1b7b, 0xa7bdf825, 0xc1de75b7, 0x8858a9c9, 0x2da87693, 0xb657f9dd, 0xffdc8a9f, 0x8121da71, 0x8b823ecb, 0x885d05f5, 0x4e20cd47, 0x5a9ad5d9, 0x512c0c03, 0xea857ccd, 0x4cc1d30f, 0x8891a8a1, 0xa6b7aadb }; if (k==N) { /* generate N words at one time */ int kk; for (kk=0;kk> 1); } else { x[kk] = x[kk+M] ^ (x[kk] >> 1) ^ 0x8ebfd028; } /* a */ } for (; kk> 1); } else { x[kk] = x[kk+(M-N)] ^ (x[kk] >> 1) ^ 0x8ebfd028; } /* a */ } k=0; } y = x[k++]; y ^= (y << 7) & 0x2b5b2500; /* s and b */ y ^= (y << 15) & 0xdb8b0000; /* t and c */ return( (double) y / (unsigned long) 0xffffffff); } \end{verbatim} } \begin{thebibliography}{99} %\bibitem{compagner} %Compagner, A. %The hierarchy of correlations in random binary sequences. %{\em J. of Stat. Phys.} {\rm 63}(1991), 883--896. %\bibitem{bright} %Bright, H.S. and Enison, R.L. %Quasi-random number sequences from a long period TLP generator with %remarks on application to cryptography. %{\em ACM Computing Survey} {\rm 11}(1979), 357--370. \bibitem{fredricsson} Fredricsson, S. A. Pseudo-randomness Properties of Binary Shift Register Sequences. {\em IEEE Trans. Inform. Theory} IT-21 (1975), 115--120. %YEAR=1975, %VOLUME="IT-21", %NUMBER=1, %PAGES="115-120", %MONTH="Jan." \bibitem{fushimi2} Fushimi, M. Random number generation with the recursion $X_t=X_{t-3p}\oplus X_{t-3q}$. {\em J. Comp. and Appl. Math.} 31 (1990), 105--118. \bibitem{fushimi} Fushimi, M. and Tezuka, S. The $k$-distribution of generalized feedback shift register pseudorandom numbers. {\em Commun. ACM} {\rm 26}(1983), 516--523. \bibitem{knuth} Knuth, D. E. {\em The art of Computer Programming}, Vol 2: {\em Seminumerical Algorithms}, 2nd ed. Addison-Wesley, Reading, Mass., 1981. %\bibitem{lidl} %Lidl, R., and Niederreiter, H. {\em Finite Fields.} %Addison-Wesley, Reading, Mass., 1983. \bibitem{lecuyer} L'Ecuyer, P. Testing random number generators. {\em Proceedings of the 1992 Winter Simulation Conference}, IEEE Press (1992), 305--313. \bibitem{lecuyer2} L'Ecuyer, P. Uniform random number generation. {\em Annals of Operations Research}, to appear. \bibitem{lindholm} Lindholm, J. H. An analysis of the pseudo-randomness properties of subsequences of long $m$-sequences. {\em IEEE Trans. Inform. Theory}, IT-14(July 1968), 569--576. \bibitem{marsaglia1} Marsaglia, G. and Zaman, A. A new class of random number generators. {\em Annals of Applied Probability} {\rm 1}(1991), 462--480. \bibitem{matsumoto} Matsumoto, M. and Kurita, Y. Twisted GFSR generators. {\em ACM Trans. on Modelling and Computer Simulation} {\rm 2}(1992), 179--194. %\bibitem{niederreiter} %Niederreiter, H. %Random Number Generation and Quasi-Monte Carlo Methods. %SIAM, Philadelphia, 1992. %\bibitem{matsumoto} %Matsumoto, M., and Kurita, Y. %Trinomials are mischoice for long period $m$-sequences %(Tests on modulated $m$-sequences.) %{\em Yet unpublished.} %\bibitem{tausworthe} %Tausworthe, R. C. Random numbers generated by linear recurrence modulo two. %{\em Math. Comp.}{\rm 19}(1965), 201--209. %\bibitem{tootill} %Tootill, J. P. R., Robinson, W. D. and Adams, A. G. %The runs up-and-down performance of Tausworthe pseudo-random number generators. %{\em J. ACM} {\rm 18, 3}(July 1971), 381--399. \bibitem{tezuka} Tezuka, S. A unified view of long-period random number generators. {\em A manuscript.} \bibitem{tootill} Tootill, J. P. R., Robinson, W. D. and Eagle, D. J. An asymptotically random Tausworthe sequence. {\em J. ACM} {\rm 20, 3}(July 1973), 469--481. \end{thebibliography} \end{document} latex2rtf-2.3.18/test/misc4.log0000644000175000017500000002154613664476470016446 0ustar wilfriedwilfriedThis is pdfTeX, Version 3.14159265-2.6-1.40.18 (TeX Live 2017/Debian) (preloaded format=latex 2019.1.18) 30 MAY 2020 17:35 entering extended mode restricted \write18 enabled. %&-line parsing enabled. **misc4 (./misc4.tex LaTeX2e <2017-04-15> Babel <3.18> and hyphenation patterns for 8 language(s) loaded. (/usr/share/texlive/texmf-dist/tex/latex/base/latex209.def File: latex209.def 2015/02/22 v0.53 Standard LaTeX file Entering LaTeX 2.09 COMPATIBILITY MODE ************************************************************* !!WARNING!! !!WARNING!! !!WARNING!! !!WARNING!! This mode attempts to provide an emulation of the LaTeX 2.09 author environment so that OLD documents can be successfully processed. It should NOT be used for NEW documents! New documents should use Standard LaTeX conventions and start with the \documentclass command. Compatibility mode is UNLIKELY TO WORK with LaTeX 2.09 style files that change any internal macros, especially not with those that change the FONT SELECTION or OUTPUT ROUTINES. Therefore such style files MUST BE UPDATED to use Current Standard LaTeX: LaTeX2e. If you suspect that you may be using such a style file, which is probably very, very old by now, then you should attempt to get it updated by sending a copy of this error message to the author of that file. ************************************************************* \footheight=\dimen102 \@maxsep=\dimen103 \@dblmaxsep=\dimen104 \@cla=\count79 \@clb=\count80 \mscount=\count81 (/usr/share/texlive/texmf-dist/tex/latex/base/tracefnt.sty Package: tracefnt 2015/02/21 v3.0k Standard LaTeX package (font tracing) \tracingfonts=\count82 LaTeX Info: Redefining \selectfont on input line 106. ) \symbold=\mathgroup4 \symsans=\mathgroup5 \symtypewriter=\mathgroup6 \symitalic=\mathgroup7 \symsmallcaps=\mathgroup8 \symslanted=\mathgroup9 LaTeX Font Info: Redeclaring math alphabet \mathbf on input line 268. LaTeX Font Info: Redeclaring math alphabet \mathsf on input line 269. LaTeX Font Info: Redeclaring math alphabet \mathtt on input line 270. LaTeX Font Info: Redeclaring math alphabet \mathit on input line 276. LaTeX Info: Redefining \em on input line 286. (/usr/share/texlive/texmf-dist/tex/latex/base/latexsym.sty Package: latexsym 1998/08/17 v2.2e Standard LaTeX package (lasy symbols) \symlasy=\mathgroup10 LaTeX Font Info: Overwriting symbol font `lasy' in version `bold' (Font) U/lasy/m/n --> U/lasy/b/n on input line 52. ) LaTeX Font Info: Redeclaring math delimiter \lgroup on input line 332. LaTeX Font Info: Redeclaring math delimiter \rgroup on input line 334. LaTeX Font Info: Redeclaring math delimiter \bracevert on input line 336. ) (/usr/share/texlive/texmf-dist/tex/latex/base/report.cls Document Class: report 2014/09/29 v1.4h Standard LaTeX document class (/usr/share/texlive/texmf-dist/tex/latex/base/size12.clo File: size12.clo 2014/09/29 v1.4h Standard LaTeX file (size option) ) \c@part=\count83 \c@chapter=\count84 \c@section=\count85 \c@subsection=\count86 \c@subsubsection=\count87 \c@paragraph=\count88 \c@subparagraph=\count89 \c@figure=\count90 \c@table=\count91 \abovecaptionskip=\skip41 \belowcaptionskip=\skip42 Compatibility mode: definition of \rm ignored. Compatibility mode: definition of \sf ignored. Compatibility mode: definition of \tt ignored. Compatibility mode: definition of \bf ignored. Compatibility mode: definition of \it ignored. Compatibility mode: definition of \sl ignored. Compatibility mode: definition of \sc ignored. LaTeX Info: Redefining \cal on input line 576. LaTeX Info: Redefining \mit on input line 577. \bibindent=\dimen105 ) (/usr/share/texlive/texmf-dist/tex/latex/a4wide/a4wide.sty Package: a4wide 1994/08/30 (/usr/share/texlive/texmf-dist/tex/latex/ntgclass/a4.sty Package: a4 2004/04/15 v1.2g A4 based page layout )) (./misc4.aux) \openout1 = `misc4.aux'. LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 44. LaTeX Font Info: ... okay on input line 44. LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 44. LaTeX Font Info: ... okay on input line 44. LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 44. LaTeX Font Info: ... okay on input line 44. LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 44. LaTeX Font Info: ... okay on input line 44. LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 44. LaTeX Font Info: ... okay on input line 44. LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 44. LaTeX Font Info: ... okay on input line 44. LaTeX Font Info: External font `cmex10' loaded for size (Font) <14.4> on input line 52. LaTeX Font Info: External font `cmex10' loaded for size (Font) <7> on input line 52. LaTeX Font Info: Try loading font information for U+lasy on input line 52. (/usr/share/texlive/texmf-dist/tex/latex/base/ulasy.fd File: ulasy.fd 1998/08/17 v2.2e LaTeX symbol font definitions ) [0 ] (./misc4.toc LaTeX Font Info: External font `cmex10' loaded for size (Font) <12> on input line 2. LaTeX Font Info: External font `cmex10' loaded for size (Font) <8> on input line 2. LaTeX Font Info: External font `cmex10' loaded for size (Font) <6> on input line 2. [1 ]) \tf@toc=\write3 \openout3 = `misc4.toc'. [2] (./misc4.lot) \tf@lot=\write4 \openout4 = `misc4.lot'. [3 ] Chapter 1. [1 ] [2] [3] [4] [5] Chapter 2. LaTeX Font Info: External font `cmex10' loaded for size (Font) <24.88> on input line 293. LaTeX Font Info: External font `cmex10' loaded for size (Font) <20.74> on input line 293. LaTeX Font Info: External font `cmex10' loaded for size (Font) <17.28> on input line 293. [6 ] [7] LaTeX Font Info: Try loading font information for OMS+cmtt on input line 419 . LaTeX Font Info: No file OMScmtt.fd. on input line 419. LaTeX Font Warning: Font shape `OMS/cmtt/m/n' undefined (Font) using `OMS/cmsy/m/n' instead (Font) for symbol `textbraceleft' on input line 419. [8] [9] [10] [11] LaTeX Font Info: External font `cmex10' loaded for size (Font) <5> on input line 673. [12] [13] LaTeX Font Info: Try loading font information for OMS+cmr on input line 805. (/usr/share/texlive/texmf-dist/tex/latex/base/omscmr.fd File: omscmr.fd 2014/09/29 v2.5h Standard LaTeX font definitions ) LaTeX Font Info: Font shape `OMS/cmr/m/n' in size <10> not available (Font) Font shape `OMS/cmsy/m/n' tried instead on input line 805. LaTeX Font Info: Font shape `OMS/cmr/m/n' in size <12> not available (Font) Font shape `OMS/cmsy/m/n' tried instead on input line 833. [14] [15] [16] [17] LaTeX Font Info: Try loading font information for OML+cmr on input line 1094 . (/usr/share/texlive/texmf-dist/tex/latex/base/omlcmr.fd File: omlcmr.fd 2014/09/29 v2.5h Standard LaTeX font definitions ) LaTeX Font Info: Font shape `OML/cmr/m/n' in size <12> not available (Font) Font shape `OML/cmm/m/it' tried instead on input line 1094. [18] [19] [20] [21] LaTeX Font Info: Font shape `OMS/cmr/m/it' in size <12> not available (Font) Font shape `OMS/cmsy/m/n' tried instead on input line 1362. Overfull \hbox (23.32162pt too wide) in paragraph at lines 1361--1367 []\OT1/cmr/m/n/12 All the en-vi-ron-ments are be-gun by a \OT1/cmtt/m/n/12 \beg in\OMS/cmsy/m/n/12 f\OT1/cmr/m/it/12 name\OMS/cmsy/m/n/12 g \OT1/cmr/m/n/12 com -mand and ended by an \OT1/cmtt/m/n/12 \end\OMS/cmsy/m/n/12 f\OT1/cmr/m/it/12 n ame\OMS/cmsy/m/n/12 g\OT1/cmr/m/n/12 , [] [22] [23] [24] [25] [26] [27] [28] [29] [30] [31] [32] [33] [34] [35] [36] Overfull \hbox (57.55075pt too wide) in paragraph at lines 2278--2283 []\OT1/cmr/m/n/12 It is im-por-tant that all group de-lim-iters be prop-erly ma tched, i.e., braces and \OT1/cmtt/m/n/12 \begin\OMS/cmsy/m/n/12 fg\OT1/cmr/m/n/ 12 ...\OT1/cmtt/m/n/12 \end\OMS/cmsy/m/n/12 fg [] [37] [38] Chapter 3. [39 ] [40] [41] [42] [43] [44] [45] [46] [47] [48] [49] [50] [51] [52] Overfull \hbox (12.03763pt too wide) in paragraph at lines 3224--3230 \OT1/cmr/m/n/12 The []\OT1/cmtt/m/n/12 \underline \OT1/cmr/m/n/12 com-mand will place an un-bro-ken line un-der its ar-gu-ment, and the []\OT1/cmtt/m/n/12 \ov erline [] [53] [54] [55] [56] \c@thm=\count92 \c@prop=\count93 \c@conjec=\count94 \c@wildshot=\count95 [57] [58] [59] (./misc4.aux) LaTeX Font Warning: Some font shapes were not available, defaults substituted. ) Here is how much of TeX's memory you used: 611 strings out of 494872 7433 string characters out of 6178408 64853 words of memory out of 5000000 3959 multiletter control sequences out of 15000+600000 29202 words of font info for 106 fonts, out of 8000000 for 9000 14 hyphenation exceptions out of 8191 24i,18n,21p,207b,283s stack positions out of 5000i,500n,10000p,200000b,80000s Output written on misc4.dvi (63 pages, 218548 bytes). latex2rtf-2.3.18/test/fig_test3.tex0000777000175000017500000000111113050672360017307 0ustar wilfriedwilfried\documentclass{article} \usepackage{graphicx} \begin{document} \begin{figure} \includegraphics{fig_testd.pdf} \caption{Grid with one-quarter inch squares} \end{figure} \begin{figure} \includegraphics{fig_testd.ps} \caption{Grid with one-quarter inch squares (multiplied by 200/216 because the \texttt{.ps} file is that much smaller than the \texttt{.pdf} file).} \end{figure} \begin{figure} \includegraphics{fig_teste.pdf} \caption{This is the image that has been giving us so much trouble. Hopefully it converts properly on both XP and unix systems..} \end{figure} \end{document} latex2rtf-2.3.18/test/essential.aux0000644000175000017500000000424013664476467017430 0ustar wilfriedwilfried\relax \@writefile{toc}{\contentsline {section}{\numberline {1}Introduction}{1}} \@writefile{toc}{\contentsline {section}{\numberline {2}How does \LaTeX {} work?}{1}} \@writefile{toc}{\contentsline {section}{\numberline {3}A Sample \LaTeX {} file}{2}} \@writefile{toc}{\contentsline {subsection}{\numberline {3.1}Running Text}{2}} \@writefile{lof}{\contentsline {figure}{\numberline {1}{\ignorespaces A Sample \LaTeX {} File}}{3}} \newlabel{fig:sample}{{1}{3}} \@writefile{toc}{\contentsline {section}{\numberline {1}Simple Text}{4}} \@writefile{toc}{\contentsline {subsection}{\numberline {1.1}A Warning or Two}{4}} \@writefile{lof}{\contentsline {figure}{\numberline {2}{\ignorespaces The result of processing the sample file}}{4}} \newlabel{fig:result}{{2}{4}} \@writefile{toc}{\contentsline {subsection}{\numberline {3.2}\LaTeX {} Commands}{5}} \@writefile{toc}{\contentsline {subsection}{\numberline {3.3}Overall structure}{6}} \@writefile{toc}{\contentsline {subsection}{\numberline {3.4}Other Things to Look At}{6}} \@writefile{toc}{\contentsline {section}{\numberline {4}Document Styles and Style Options}{7}} \newlabel{sec:styles}{{4}{7}} \@writefile{toc}{\contentsline {section}{\numberline {5}Environments}{8}} \@writefile{toc}{\contentsline {subsection}{\numberline {5.1}Quotations}{8}} \@writefile{toc}{\contentsline {subsection}{\numberline {5.2}Centering and Flushing}{8}} \@writefile{toc}{\contentsline {subsection}{\numberline {5.3}Lists}{9}} \@writefile{toc}{\contentsline {subsection}{\numberline {5.4}Tables}{9}} \@writefile{toc}{\contentsline {subsection}{\numberline {5.5}Verbatim Output}{10}} \@writefile{toc}{\contentsline {section}{\numberline {6}Type Styles}{11}} \@writefile{toc}{\contentsline {section}{\numberline {7}Sectioning Commands and Tables of Contents}{11}} \@writefile{toc}{\contentsline {section}{\numberline {8}Producing Special Symbols}{12}} \@writefile{toc}{\contentsline {section}{\numberline {9}Titles}{13}} \newlabel{sec:title}{{9}{13}} \@writefile{toc}{\contentsline {section}{\numberline {10}Letters}{13}} \@writefile{toc}{\contentsline {section}{\numberline {11}Errors}{14}} \@writefile{toc}{\contentsline {section}{\numberline {12}A Final Reminder}{17}} latex2rtf-2.3.18/test/essential.rtf0000644000175000017500000020405313664476467017432 0ustar wilfriedwilfried{\rtf1\ansi\uc1\deff0\deflang1024 {\fonttbl{\f0\fnil\fcharset0 Times New Roman;} {\f1\fnil\fcharset0 Arial;} {\f2\fnil\fcharset0 Arial;} {\f3\fnil\fcharset0 Courier New;} {\f4\fnil\fcharset0 Zapf Chancery;} {\f5\fnil\fcharset0 STIXGeneral;} {\f6\fnil\fcharset0 MS Gothic;} } {\colortbl; \red0\green0\blue0; \red0\green0\blue255; \red0\green255\blue255; \red0\green255\blue0; \red255\green0\blue255; \red255\green0\blue0; \red255\green255\blue0; \red255\green255\blue255; } {\stylesheet {\s0\qj\widctlpar\f0\fs22 \snext0 Normal;} {\cs10 \additive\ssemihidden Default Paragraph Font;} {\s1\qc\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 Part;} {\s2\ql\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 heading 1;} {\s3\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 2;} {\s4\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 3;} {\s5\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 4;} {\s6\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 5;} {\s7\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 6;} {\s8\qr\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext8 rightpar;} {\s9\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext9 centerpar;} {\s10\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext10 leftpar;} {\s11\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equation;} {\s12\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationNum;} {\s13\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlign;} {\s14\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlignNum;} {\s15\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArray;} {\s16\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArrayNum;} {\s17\ql\sb120\sa120\keep\widctlpar\f0\fs20 \sbasedon0\snext0 theorem;} {\s18\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 bitmapCenter;} {\s20\qc\sb240\sa240\b\f0\fs36 \sbasedon0\snext21 Title;} {\s21\qc\sa120\f0\fs22 \sbasedon0\snext0 author;} {\s22\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext22 footer;} {\s23\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext23 header;} {\s30\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 caption;} {\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext0 Figure;} {\s32\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext32 Table;} {\s33\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext33 Tabular;} {\s34\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext34 Tabbing;} {\s35\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext35 Quote;} {\s38\ql\widctlpar\f3\fs22 \snext38 verbatim;} {\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext46 List;} {\s47\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext47 List 1;} {\s50\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 latex picture;} {\s51\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 subfigure;} {\s61\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext62 bibheading;} {\s62\ql\fi-567\li567\sb0\sa0\f0\fs20 \sbasedon0\snext62 bibitem;} {\s64\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext64 endnotes;} {\s65\ql\fi-113\li397\lin397\f0\fs22 \sbasedon0\snext65 footnote text;} {\s66\qj\fi-170\li454\lin454\f0\fs22 \sbasedon0\snext66 endnote text;} {\cs62\super \additive\sbasedon10 footnote reference;} {\cs63\super \additive\sbasedon10 endnote reference;} {\s67\ql\sb60\sa60\keepn\f0\fs22 \sbasedon0\snext67 acronym;} {\s70\qc\sa120\b\f0\fs22 \sbasedon0\snext71 abstract title;} {\s71\qj\li1024\ri1024\fi340\widctlpar\f0\fs22 \sbasedon0\snext0 abstract;} {\s80\ql\sb240\sa120\keepn\f0\b\fs20 \sbasedon0\snext0 contents_heading;} {\s81\ql\li425\tqr\tldot\tx8222\sb240\sa60\keepn\f0\fs22\b \sbasedon0\snext82 toc 1;} {\s82\ql\li512\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs22 \sbasedon0\snext83 toc 2;} {\s83\ql\li1024\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs22 \sbasedon0\snext84 toc 3;} {\s84\ql\li1536\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs22 \sbasedon0\snext85 toc 4;} {\s85\ql\li2048\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs22 \sbasedon0\snext86 toc 5;} {\s86\ql\li2560\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs22 \sbasedon0\snext86 toc 6;} } {\info {\title Original file was essential.tex} {\doccomm Created using latex2rtf 2.3.18 r1266 (released May 29, 2020) on Sat May 30 17:35:19 2020 } } {\footer\pard\plain\f0\fs22\qc\chpgn\par} \paperw12280\paperh15900\margl2680\margr2700\margt2540\margb1760\pgnstart0\widowctrl\qj\ftnbj\f0\aftnnar {\pard\plain\s20\qc\sb240\sa240\b\f0\fs36\sl240\slmult1 \fi0 Essential {\plain L{\up5\fs18 A}T{\dn7 E}X}\par \pard\plain\s21\qc\sa120\f0\fs22\sl240\slmult1 \fi340 Jon Warbrick\par \pard\plain\s21\qc\sa120\f0\fs22\sl240\slmult1 \fi340 \chdate \par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 1 Introduction\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \fi0 This document is an attempt to give you all the essential information that you will need in order to use the {\plain L{\up5\fs18 A}T{\dn7 E}X}{} Document Preparation System. Only very basic features are covered, and a vast amount of detail has been omitted. In a document of this size it is not possible to include everything that you might need to know, and if you intend to make extensive use of the program you should refer to a more complete reference. Attempting to produce complex documents using only the information found below will require much more work than it should, and will probably produce a less than satisfactory result.\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 The main reference for {\plain L{\up5\fs18 A}T{\dn7 E}X}{} is {\i The {\plain L{\up5\fs18 A}T{\dn7 E}X}{} User\rquote s guide and Reference Manual} by Leslie Lamport (M05.04\endash 200). This contains all the information that you will ever need to know about the program, and you will need access to a copy if you are to use {\plain L{\up5\fs18 A}T{\dn7 E}X}{} seriously.\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 Both the Manual and this document avoid mentioning anything that depends on the particular computer system that you are using. This is because {\plain L{\up5\fs18 A}T{\dn7 E}X}{} is available on a number of systems and they all differ in one way or another. Instead, they both refer to a {\i local guide} for their particular system. For {\plain L{\up5\fs18 A}T{\dn7 E}X}{} on the Prime, the {\i local guide} is the handout {\i The Local Guide to {\plain L{\up5\fs18 A}T{\dn7 E}X}{} on the Plymouth Prime System} (U05.04\endash 201).\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 2 How does {\plain L{\up5\fs18 A}T{\dn7 E}X}{} work?\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \fi0 In order to use {\plain L{\up5\fs18 A}T{\dn7 E}X}{} you generate a file containing both the text that you wish to print and instructions to tell {\plain L{\up5\fs18 A}T{\dn7 E}X}{} how you want it to appear. You will normally create this file using your system\rquote s text editor. You can give the file any name you like, but it should end \ldblquote {\i0\scaps0\b0\f3 .TEX}\rdblquote to identify the file\rquote s contents. You then get {\plain L{\up5\fs18 A}T{\dn7 E}X}{} to process the file, and it creates a new file of typesetting commands; this has the same name as your file but the \ldblquote {\i0\scaps0\b0\f3 .TEX}\rdblquote ending is replaced by \ldblquote {\i0\scaps0\b0\f3 .DVI}\rdblquote . This stands for \lquote {\scaps0\b0\i D}e{\scaps0\b0\i v}ice {\scaps0\b0\i I}ndependent\rquote and, as the name implies, this file can be used to create output on a range of printing devices. Your {\i local guide} will go into more detail.\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 Rather than encourage you to dictate exactly how your document should be laid out, {\plain L{\up5\fs18 A}T{\dn7 E}X}{} instructions allow you describe its {\i logical structure}. For example, you can think of a quotation embedded within your text as an element of this logical structure: you would normally expect a quotation to be displayed in a recognisable style to set it off from the rest of the text. A human typesetter would recognise the quotation and handle it accordingly, but since {\plain L{\up5\fs18 A}T{\dn7 E}X}{} is only a computer program it requires your help. There are therefore {\plain L{\up5\fs18 A}T{\dn7 E}X}{} commands that allow you to identify quotations and as a result allow {\plain L{\up5\fs18 A}T{\dn7 E}X}{} to typeset them correctly.\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 Fundamental to {\plain L{\up5\fs18 A}T{\dn7 E}X}{} is the idea of a {\i document style} that determines exactly how a document will be formatted. {\plain L{\up5\fs18 A}T{\dn7 E}X}{} provides standard document styles that describe how standard logical structures (such as quotations) should be formatted. You may have to supplement these styles by specifying the formatting of logical structures peculiar to your document, such as mathematical formulae. You can also modify the standard document styles or even create an entirely new one, though you should know the basic principles of typographical design before creating a radically new style.\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 There are a number of good reasons for concentrating on the logical structure rather than on the appearance of a document. It prevents you from making elementary typographical errors in the mistaken idea that they improve the aesthetics of a document\emdash you should remember that the primary function of document design is to make documents easier to read, not prettier. It is more flexible, since you only need to alter the definition of the quotation style to change the appearance of all the quotations in a document. Most important of all, logical design encourages better writing. A visual system makes it easier to create visual effects rather than a coherent structure; logical design encourages you to concentrate on your writing and makes it harder to use formatting as a substitute for good writing.\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 \par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 3 A Sample {\plain L{\up5\fs18 A}T{\dn7 E}X}{} file\par {\pard\plain\s31\qc\sb120\sa0\keep\widctlpar\f0\fs22\sl240\slmult1 \sb300 \fi0 {\fs18 {\par \pard\plain\s38\ql\widctlpar\f3\fs22\sl240\slmult1 \fi0 \fs18 \par 1: % SMALL.TEX -- Released 5 July 1985 \par 2: % USE THIS FILE AS A MODEL FOR MAKING YOUR OWN LaTeX INPUT FILE. \par 3: % EVERYTHING TO THE RIGHT OF A % IS A REMARK TO YOU AND IS IGNORED \par 4: % BY LaTeX. \par 5: % \par 6: % WARNING! DO NOT TYPE ANY OF THE FOLLOWING 10 CHARACTERS EXCEPT AS \par 7: % DIRECTED: & $ # % _ \{ \} ^ ~ \\ \par 8: \par 9: \\documentstyle[11pt,a4]\{article\} % YOUR INPUT FILE MUST CONTAIN THESE \par 10: \\begin\{document\} % TWO LINES PLUS THE \\end COMMAND AT \par 11: % THE END \par 12: \par 13: \\section\{Simple Text\} % THIS COMMAND MAKES A SECTION TITLE. \par 14: \par 15: Words are separated by one or more spaces. Paragraphs are \par 16: separated by one or more blank lines. The output is not affected \par 17: by adding extra spaces or extra blank lines to the input file. \par 18: \par 19: \par 20: Double quotes are typed like this: ``quoted text''. \par 21: Single quotes are typed like this: `single-quoted text'. \par 22: \par 23: Long dashes are typed as three dash characters---like this. \par 24: \par 25: Italic text is typed like this: \{\\em this is italic text\}. \par 26: Bold text is typed like this: \{\\bf this is bold text\}. \par 27: \par 28: \\subsection\{A Warning or Two\} % THIS MAKES A SUBSECTION TITLE. \par 29: \par 30: If you get too much space after a mid-sentence period---abbreviations \par 31: like etc.\\ are the common culprits)---then type a backslash followed by \par 32: a space after the period, as in this sentence. \par 33: \par 34: Remember, don't type the 10 special characters (such as dollar sign and \par 35: backslash) except as directed! The following seven are printed by \par 36: typing a backslash in front of them: \\$ \\& \\# \\% \\_ \\\{ and \\\}. \par 37: The manual tells how to make other symbols. \par 38: \par 39: \\end\{document\} % THE INPUT FILE ENDS LIKE THIS \par \par }}\pard\plain\s30\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 {Figure {\*\bkmkstart BMfig_sample}1{\*\bkmkend BMfig_sample}: A Sample {\plain L{\up5\fs18 A}T{\dn7 E}X}{} File}{\field{\*\fldinst TC "1 A Sample {\plain L{\up5\fs18 A}T{\dn7 E}X}{} File" \\f f}{\fldrslt }}\par }{\pard\plain\s31\qc\sb120\sa0\keep\widctlpar\f0\fs22\sl240\slmult1 \sb480 \fi340 \par ______________________________________________________________\pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 1 Simple Text\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \fi0 Words are separated by one or more spaces. Paragraphs are separated by one or more blank lines. The output is not affected by adding extra spaces or extra blank lines to the input file.\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 Double quotes are typed like this: \ldblquote quoted text\rdblquote . Single quotes are typed like this: \lquote single-quoted text\rquote .\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 Long dashes are typed as three dash characters\emdash like this.\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 Italic text is typed like this: {\i this is italic text}. Bold text is typed like this: {\i0\scaps0\b this is bold text}.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 1.1 A Warning or Two\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \fi0 If you get too much space after a mid-sentence period\emdash abbreviations like etc. are the common culprits)\emdash then type a backslash followed by a space after the period, as in this sentence.\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 Remember, don\rquote t type the 10 special characters (such as dollar sign and backslash) except as directed! The following seven are printed by typing a backslash in front of them: $ & # % _ \{ and \}. The manual tells how to make other symbols.\par ______________________________________________________________\pard\plain\s30\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 {Figure {\*\bkmkstart BMfig_result}2{\*\bkmkend BMfig_result}: The result of processing the sample file}{\field{\*\fldinst TC "2 The result of processing the sample file" \\f f}{\fldrslt }}\par }\pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb240 \fi0 Have a look at the example {\plain L{\up5\fs18 A}T{\dn7 E}X}{} file in Figure\~{\field{\*\fldinst{\lang1024 REF BMfig_sample \\* MERGEFORMAT }}{\fldrslt{1}}}. It is a slightly modified copy of the standard {\plain L{\up5\fs18 A}T{\dn7 E}X}{} example file {\i0\scaps0\b0\f3 SMALL.TEX}. Your local guide will tell you how you can make your own copy of this file. The line numbers down the left-hand side are not part of the file, but have been added to make it easier to identify various portions. Also have a look at Figure\~{\field{\*\fldinst{\lang1024 REF BMfig_result \\* MERGEFORMAT }}{\fldrslt{2}}} which shows, more or less, the result of processing this file.\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 \par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 3.1 Running Text\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \fi0 Most documents consist almost entirely of running text\emdash words formed into sentences, which are in turn formed into paragraphs\emdash and the example file is no exception. Describing running text poses no problems, you just type it in naturally. In the output that it produces, {\plain L{\up5\fs18 A}T{\dn7 E}X}{} will fill lines and adjust the spacing between words to give tidy left and right margins. The spacing and distribution of the words in your input file will have no effect at all on the eventual output. Any number of spaces in your input file are treated as a single space by {\plain L{\up5\fs18 A}T{\dn7 E}X}{}, it also regards the end of each line as a space between words (see lines 15\endash 17). A new paragraph is indicated by a blank line in your input file, so don\rquote t leave any blank lines unless you really wish to start a paragraph.\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 {\plain L{\up5\fs18 A}T{\dn7 E}X}{} reserves a number of the less common keyboard characters for its own use. The ten characters {\par {\pard\plain\s38\ql\widctlpar\f3\fs22\sl240\slmult1 \sb60 \li512\ri512\fi0 \par # $ % & ~ _ ^ \\ \{ \} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb120 \fi0 should not appear as part of your text, because if they do {\plain L{\up5\fs18 A}T{\dn7 E}X}{} will get confused.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 3.2 {\plain L{\up5\fs18 A}T{\dn7 E}X}{} Commands\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \fi0 There are a number of words in the file that start \lquote {\b0\i0\scaps0\f3 \\}\rquote (see lines 9, 10 and 13). These are {\plain L{\up5\fs18 A}T{\dn7 E}X}{} {\i commands} and they describe the structure of your document. There are a number of things that you should realise about these commands: {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs22\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab All {\plain L{\up5\fs18 A}T{\dn7 E}X}{} commands consist of a \lquote {\b0\i0\scaps0\f3 \\}\rquote followed by one or more characters.\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs22\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab {\plain L{\up5\fs18 A}T{\dn7 E}X}{} commands should be typed using the correct mixture of upper- and lower-case letters. {\b0\i0\scaps0\f3 \\BEGIN} is {\i not} the same as {\b0\i0\scaps0\f3 \\begin}.\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs22\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Some commands are placed within your text. These are used to switch things, like different typestyles, on and off. The {\b0\i0\scaps0\f3 \\em} command is used like this to emphasise text, normally by changing to an {\scaps0\b0\i italic} typestyle (see line 25). The command and the text are always enclosed between \lquote {\b0\i0\scaps0\f3 \{}\rquote and \lquote {\b0\i0\scaps0\f3 \}}\rquote \emdash the \lquote {\b0\i0\scaps0\f3 \{\\em}\rquote turns the effect on and and the \lquote {\b0\i0\scaps0\f3 \}}\rquote turns it off.\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs22\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab There are other commands that look like {\par {\pard\plain\s38\ql\widctlpar\f3\fs22\sl240\slmult1 \sb60 \li1112\ri512\fi0 \par \\command\{text\} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb120 \li600\fi0 In this case the text is called the \ldblquote argument\rdblquote of the command. The {\b0\i0\scaps0\f3 \\section} command is like this (see line 13). Sometimes you have to use curly brackets \lquote {\b0\i0\scaps0\f3 \{\}}\rquote to enclose the argument, sometimes square brackets \lquote {\b0\i0\scaps0\f3 []}\rquote , and sometimes both at once. There is method behind this apparent madness, but for the time being you should be sure to copy the commands exactly as given.\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs22\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab When a command\rquote s name is made up entirely of letters, you must make sure that the end of the command is marked by something that isn\rquote t a letter. This is usually either the opening bracket around the command\rquote s argument, or it\rquote s a space. When it\rquote s a space, that space is always ignored by {\plain L{\up5\fs18 A}T{\dn7 E}X}. We will see later that this can sometimes be a problem.\par }\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb220 \fi0 3.3 Overall structure\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \fi0 There are some {\plain L{\up5\fs18 A}T{\dn7 E}X}{} commands that must appear in every document. The actual text of the document always starts with a {\b0\i0\scaps0\f3 \\begin\{document\}} command and ends with an {\b0\i0\scaps0\f3 \\end\{document\}} command (see lines 10 and 39). Anything that comes after the {\b0\i0\scaps0\f3 \\end\{document\}} command is ignored. Everything that comes before the {\b0\i0\scaps0\f3 \\begin\{document\}} command is called the {\i preamble}. The preamble can only contain {\plain L{\up5\fs18 A}T{\dn7 E}X}{} commands to describe the document\rquote s style.\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 One command that must appear in the preamble is the {\b0\i0\scaps0\f3 \\documentstyle} command (see line 9). This command specifies the overall style for the document. Our example file is a simple technical document, and uses the {\i0\scaps0\b0\f3 article} style, modified to print in eleven-point type on A4 paper. There are other styles that you can use, as you will find out later on in this document.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 3.4 Other Things to Look At\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \fi0 {\plain L{\up5\fs18 A}T{\dn7 E}X}{} can print both opening and closing quote characters, and can manage either of these either single or double. To do this it uses the two quote characters from your keyboard: {\i0\scaps0\b0\f3 \lquote } and {\i0\scaps0\b0\f3 \rquote }. You will probably think of {\i0\scaps0\b0\f3 \rquote } as the ordinary single quote character which probably looks like {\i0\scaps0\b0\f3 \u769?} or {\i0\scaps0\b0\f3 \u-1794?} on your keyboard, and {\i0\scaps0\b0\f3 \lquote } as a \ldblquote funny\rdblquote character that probably appears as {\i0\scaps0\b0\f3 \u768?}. You type these characters once for single quote (see line 21), and twice for double quotes (see line 20). The double quote character {\i0\scaps0\b0\f3 "} itself is almost never used.\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 {\plain L{\up5\fs18 A}T{\dn7 E}X}{} can produce three different kinds of dashes. A long dash, for use as a punctuation symbol, as is typed as three dash characters in a row, like this \lquote {\b0\i0\scaps0\f3 ---}\rquote (see line 23). A shorter dash, used between numbers as in \lquote 10\endash 20\rquote , is typed as two dash characters in a row, while a single dash character is used as a hyphen.\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 From time to time you will need to include one or more of the {\plain L{\up5\fs18 A}T{\dn7 E}X}{} special symbols in your text. Seven of them can be printed by making them into commands by proceeding them by backslash (see line 36). The remaining three symbols can be produced by more advanced commands, as can symbols that do not appear on your keyboard such as \'86, \'87, \'a7, \'a3, \'a9, {{\u9839*}} and {{\u9827*}}.\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 It is sometimes useful to include comments in a {\plain L{\up5\fs18 A}T{\dn7 E}X}{} file, to remind you of what you have done or why you did it. Everything to the right of a {\b0\i0\scaps0\f3 %} sign is ignored by {\plain L{\up5\fs18 A}T{\dn7 E}X}{}, and so it can be used to introduce a comment.\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 {\*\bkmkstart BMsec_styles}4{\*\bkmkend BMsec_styles} Document Styles and Style Options\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \fi0 There are four standard document styles available in {\plain L{\up5\fs18 A}T{\dn7 E}X}: {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs22\sl240\slmult1 \sb50 \li600\fi-300 {\b {\i0\scaps0\b0\f3 article}} intended for short documents and articles for publication. Articles do not have chapters, and when {\b0\i0\scaps0\f3 \\maketitle} is used to generate a title (see Section\~{\field{\*\fldinst{\lang1024 REF BMsec_title \\* MERGEFORMAT }}{\fldrslt{9}}}) it appears at the top of the first page rather than on a page of its own.\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs22\sl240\slmult1 \sb50 \li600\fi-300 {\b {\i0\scaps0\b0\f3 report}} intended for longer technical documents. It is similar to {\i0\scaps0\b0\f3 article}, except that it contains chapters and the title appears on a page of its own.\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs22\sl240\slmult1 \sb50 \li600\fi-300 {\b {\i0\scaps0\b0\f3 book}} intended as a basis for book publication. Page layout is adjusted assuming that the output will eventually be used to print on both sides of the paper.\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs22\sl240\slmult1 \sb50 \li600\fi-300 {\b {\i0\scaps0\b0\f3 letter}} intended for producing personal letters. This style will allow you to produce all the elements of a well laid out letter: addresses, date, signature, etc. \par }\pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \fi340 These standard styles can be modified by a number of {\i style options}. They appear in square brackets after the {\b0\i0\scaps0\f3 \\documentstyle} command. Only one style can ever be used but you can have more than one style option, in which case their names should be separated by commas. The standard style options are: {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs22\sl240\slmult1 \sb50 \li600\fi-300 {\b {\i0\scaps0\b0\f3 11pt}} prints the document using eleven-point type for the running text rather that the ten-point type normally used. Eleven-point type is about ten percent larger than ten-point.\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs22\sl240\slmult1 \sb50 \li600\fi-300 {\b {\i0\scaps0\b0\f3 12pt}} prints the document using twelve-point type for the running text rather than the ten-point type normally used. Twelve-point type is about twenty percent larger than ten-point.\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs22\sl240\slmult1 \sb50 \li600\fi-300 {\b {\i0\scaps0\b0\f3 twoside}} causes documents in the article or report styles to be formatted for printing on both sides of the paper. This is the default for the book style.\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs22\sl240\slmult1 \sb50 \li600\fi-300 {\b {\i0\scaps0\b0\f3 twocolumn}} produces two column on each page.\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs22\sl240\slmult1 \sb50 \li600\fi-300 {\b {\i0\scaps0\b0\f3 titlepage}} causes the {\b0\i0\scaps0\f3 \\maketitle} command to generate a title on a separate page for documents in the {\i0\scaps0\b0\f3 article}\~style. A separate page is always used in both the {\i0\scaps0\b0\f3 report} and {\i0\scaps0\b0\f3 book} styles.\par }\pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb100 \fi0 There is one further option which, while not standard to {\plain L{\up5\fs18 A}T{\dn7 E}X}{}, is very useful in all European countries. The {\i0\scaps0\b0\f3 a4} option causes the output in all of the standard styles to be adjusted to fit correctly on A4 paper. {\plain L{\up5\fs18 A}T{\dn7 E}X}{} was designed in America where the standard paper is shorter and slightly wider than A4; without this option you will find that your output looks a little strange.\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 \par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 5 Environments\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \fi0 We mentioned earlier the idea of identifying a quotation to {\plain L{\up5\fs18 A}T{\dn7 E}X}{} so that it could arrange to typeset it correctly. To do this you enclose the quotation between the commands {\b0\i0\scaps0\f3 \\begin\{quotation\}} and {\b0\i0\scaps0\f3 \\end\{quotation\}}. This is an example of a {\plain L{\up5\fs18 A}T{\dn7 E}X}{} construction called an {\i environment}. A number of special effects are obtained by putting text into particular environments.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 5.1 Quotations\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \fi0 There are two environments for quotations: {\i0\scaps0\b0\f3 quote}\~and\~{\i0\scaps0\b0\f3 quotation}. {\i0\scaps0\b0\f3 quote} is used either for a short quotation or for a sequence of short quotations separated by blank lines:\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 {{\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \li600\fi-300 {}{}\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs22\sl240\slmult1 \sb50 \li600\fi-300 {}\tab \fs18 {{ {\par \pard\plain\s38\ql\widctlpar\f3\fs22\sl240\slmult1 \li600\fi0 \fs18 \par US presidents ... pithy remarks: \par \\begin\{quote\} \par The buck stops here. \par \par I am not a crook. \par \\end\{quote\} \par \par }}}\pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \li600\fi0 \fs18 {{US presidents have been known for their pithy remarks: {\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \li1112\ri512\fi0 \fs18 The buck stops here.\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \li1112\ri512\fi0 \fs18 I am not a crook. \par }}}}}\pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb100 \fi0 Use the {\i0\scaps0\b0\f3 quotation} environment for quotations that consist of more than one paragraph. Paragraphs in the input are separated by blank lines as usual: {{\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \li600\fi-300 {}{}\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs22\sl240\slmult1 \sb50 \li600\fi-300 {}\tab \fs18 {{ {\par \pard\plain\s38\ql\widctlpar\f3\fs22\sl240\slmult1 \li600\fi0 \fs18 \par Here is some advice to remember: \par \\begin\{quotation\} \par Environments for making \par ...other things as well. \par \par Many problems \par ...environments. \par \\end\{quotation\} \par \par }}}\pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \li600\fi0 \fs18 {{Here is some advice to remember: {\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \li1112\ri512\fi0 \fs18 Environments for making quotations can be used for other things as well.\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \li1112\ri512\fi0 \fs18 Many problems can be solved by novel applications of existing environments. \par }}}}}\pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb100 \fi0 \par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 5.2 Centering and Flushing\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \fi0 Text can be centred on the page by putting it within the {\i0\scaps0\b0\f3 center} environment,\~and\~it\~will\~appear\~flush\~against\~the\~left\~or\~right\~margins\~if\~it is\~placed\~within\~the\~{\i0\scaps0\b0\f3 flushleft}\~or\~{\i0\scaps0\b0\f3 flushright}\~environments. Notice the spelling of {\i0\scaps0\b0\f3 center}\emdash unfortunately {\plain L{\up5\fs18 A}T{\dn7 E}X}{} doesn\rquote t understand the English spelling.\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 Text within these environments will be formatted in the normal way, in { particular the ends of the lines that you type are just regarded as spaces. To indicate a \ldblquote newline\rdblquote you need to type the {\b0\i0\scaps0\f3 \\\\} command. For example: {{\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \li600\fi-300 {}{}\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs22\sl240\slmult1 \sb50 \li600\fi-300 {}\tab \fs18 {{ {\par \pard\plain\s38\ql\widctlpar\f3\fs22\sl240\slmult1 \li600\fi0 \fs18 \par \\begin\{center\} \par one \par two \par three \\\\ \par four \\\\ \par five \par \\end\{center\} \par \par }}}\pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \li600\fi0 \fs18 {{{\par \pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \li600\fi0 \fs18 one two three \par \pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \li600\fi0 \fs18 four \par \pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \li600\fi0 \fs18 five \par }}}}}}\pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb100 \fi0 \par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 5.3 Lists\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \fi0 There are three environments for constructing lists. In each one each new item is begun with an {\b0\i0\scaps0\f3 \\item} command. In the {\i0\scaps0\b0\f3 itemize}\~environment the\~start\~of\~each\~item\~is\~given\~a\~marker,\~in\~the\~{\i0\scaps0\b0\f3 enumerate} environment\~each\~item\~is\~marked\~by\~a\~number. These environments can be nested within each other in which case the amount of indentation used is adjusted accordingly: {{\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \li600\fi-300 {}{}\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs22\sl240\slmult1 \sb50 \li600\fi-300 {}\tab \fs18 {{ {\par \pard\plain\s38\ql\widctlpar\f3\fs22\sl240\slmult1 \li600\fi0 \fs18 \par \\begin\{itemize\} \par \\item Itemized lists are handy. \par \\item However, don't forget \par \\begin\{enumerate\} \par \\item The `item' command. \par \\item The `end' command. \par \\end\{enumerate\} \par \\end\{itemize\} \par \par }}}\pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \li600\fi0 \fs18 {{{\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs22\sl240\slmult1 \sb50 \li1200\fi-300 \fs18 \bullet\tab Itemized lists are handy. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs22\sl240\slmult1 \sb50 \li1200\fi-300 \fs18 \bullet\tab However, don\rquote t forget {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs22\sl240\slmult1 \sb50 \li1800\fi-300 \fs18 1.\tab The \lquote item\rquote command. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs22\sl240\slmult1 \sb50 \li1800\fi-300 \fs18 2.\tab The \lquote end\rquote command. \par }}}}}}\pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb100 \fi340 The third list making environment is {\i0\scaps0\b0\f3 description}. In a description you specify the item labels inside square brackets after the {\b0\i0\scaps0\f3 \\item} command. For example: {{\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \li600\fi-300 {}{}\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs22\sl240\slmult1 \sb50 \li600\fi-300 {}\tab \fs18 {{ {\par \pard\plain\s38\ql\widctlpar\f3\fs22\sl240\slmult1 \li600\fi0 \fs18 \par Three animals that you should \par know about are: \par \\begin\{description\} \par \\item[gnat] A small animal... \par \\item[gnu] A large animal... \par \\item[armadillo] A ... \par \\end\{description\} \par \par }}}\pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \li600\fi0 \fs18 {{Three animals that you should know about are: {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs22\sl240\slmult1 \sb50 \li1200\fi-300 \fs18 {\b gnat} A small animal that causes no end of trouble. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs22\sl240\slmult1 \sb50 \li1200\fi-300 \fs18 {\b gnu} A large animal that causes no end of trouble. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs22\sl240\slmult1 \sb50 \li1200\fi-300 \fs18 {\b armadillo} A medium-sized animal. \par }}}}}\pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb100 \fi340 \par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 5.4 Tables\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \fi0 Because {\plain L{\up5\fs18 A}T{\dn7 E}X}{} will almost always convert a sequence of spaces into a single space, it can be rather difficult to lay out tables. See what happens in this example {{\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \li600\fi-300 {}{}\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs22\sl240\slmult1 \sb50 \li600\fi-300 {}\tab \fs18 {{ {\par \pard\plain\s38\ql\widctlpar\f3\fs22\sl240\slmult1 \li600\fi0 \fs18 \par \\begin\{flushleft\} \par Income Expenditure Result \\\\ \par 20s 0d 19s 11d happiness \\\\ \par 20s 0d 20s 1d misery \\\\ \par \\end\{flushleft\} \par \par }}}\pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \li600\fi0 \fs18 {{{\par \pard\plain\s10\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \li600\fi0 \fs18 Income Expenditure Result \par \pard\plain\s10\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \li600\fi0 \fs18 20s 0d 19s 11d happiness \par \pard\plain\s10\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \li600\fi0 \fs18 20s 0d 20s 1d misery \par \pard\plain\s10\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \li600\fi0 \fs18 \par }}}}}\pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb100 \fi0 The {\i0\scaps0\b0\f3 tabbing}\~environment\~overcomes\~this\~problem. Within it you set tabstops and tab to them much like you do on a typewriter. Tabstops are set with the {\b0\i0\scaps0\f3 \\=} command, and the {\b0\i0\scaps0\f3 \\>} command moves to the next stop. The {\b0\i0\scaps0\f3 \\\\} command is used to separate each line. A line that ends {\b0\i0\scaps0\f3 \\kill} produces no output, and can be used to set tabstops: {{\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \li600\fi-300 {}{}\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs22\sl240\slmult1 \sb50 \li600\fi-300 {}\tab \fs18 {{ {\par \pard\plain\s38\ql\widctlpar\f3\fs22\sl240\slmult1 \li600\fi0 \fs18 \par \\begin\{tabbing\} \par Income \\=Expenditure \\= \\kill \par Income \\>Expenditure \\>Result \\\\ \par 20s 0d \\>19s 11d \\>Happiness \\\\ \par 20s 0d \\>20s 1d \\>Misery \\\\ \par \\end\{tabbing\} \par \par }}}\pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \li600\fi0 \fs18 {{{\par {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql Income\cell} {\pard\intbl\ql Expenditure\cell} {\pard\intbl\ql Result\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql 20s 0d\cell} {\pard\intbl\ql 19s 11d\cell} {\pard\intbl\ql Happiness\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql 20s 0d\cell} {\pard\intbl\ql 20s 1d\cell} {\pard\intbl\ql Misery\cell} \row} } }}\par }}\pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \fi0 Unlike a typewriter\rquote s tab key, the {\b0\i0\scaps0\f3 \\>} command always moves to the next tabstop in sequence, even if this means moving to the left. This can cause text to be overwritten if the gap between two tabstops is too small.\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 \par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 5.5 Verbatim Output\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \fi0 Sometimes you will want to include text exactly as it appears on a terminal screen. For example, you might want to include part of a computer program. Not only do you want {\plain L{\up5\fs18 A}T{\dn7 E}X}{} to stop playing around with the layout of your text, you also want to be able to type all the characters on your keyboard without confusing {\plain L{\up5\fs18 A}T{\dn7 E}X}. The {\i0\scaps0\b0\f3 verbatim}\~environment\~has\~this\~effect: {{\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \li600\fi-300 {}{}\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs22\sl240\slmult1 \sb50 \li600\fi-300 {}\tab \fs18 {{ {\par \pard\plain\s10\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \li600\fi0 \fs18 {\b0\i0\scaps0\f3 The section of program in} \par \pard\plain\s10\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \li600\fi0 \fs18 {\b0\i0\scaps0\f3 question is:} \par \pard\plain\s10\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \li600\fi0 \fs18 {\b0\i0\scaps0\f3 \\begin\{verbatim\}} \par \pard\plain\s10\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \li600\fi0 \fs18 {\b0\i0\scaps0\f3 \{ this finds %a & %b \}} \par \pard\plain\s10\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \sb18 \li600\fi0 \fs18 \par \pard\plain\s10\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \li600\fi0 \fs18 {\b0\i0\scaps0\f3 for i := 1 to 27 do} \par \pard\plain\s10\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \li600\fi0 \fs18 {\b0\i0\scaps0\f3 begin} \par \pard\plain\s10\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \li600\fi0 \fs18 {\b0\i0\scaps0\f3 table[i] := fn(i);} \par \pard\plain\s10\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \li600\fi0 \fs18 {\b0\i0\scaps0\f3 process(i)} \par \pard\plain\s10\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \li600\fi0 \fs18 {\b0\i0\scaps0\f3 end;} \par \pard\plain\s10\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \li600\fi0 \fs18 {\b0\i0\scaps0\f3 \\end\{verbatim\}} \par }}}\pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \li600\fi0 \fs18 {{The section of program in question is: {\par \pard\plain\s38\ql\widctlpar\f3\fs22\sl240\slmult1 \li600\fi0 \fs18 \par \{ this finds %a & %b \} \par \par for i := 1 to 27 do \par begin \par table[i] := fn(i); \par process(i) \par end; \par \par \par }}}}}\pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb100 \fi0 \par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 6 Type Styles\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \fi0 We have already come across the {\b0\i0\scaps0\f3 \\em} command for changing typeface. Here is a full list of the available typefaces: {\par {\pard\plain\s34\qc\sb120\sa0\keep\widctlpar\f0\fs22\sl240\slmult1 \sb60 \li512\ri512\fi0 \par {\trowd\cellx1150\cellx2300\cellx3450\cellx4600\cellx5750\cellx6900 {\pard\intbl\ql {\b0\i0\scaps0\f3 \\rm}\cell} {\pard\intbl\ql \i0\scaps0\b0\f0 Roman\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\it}\cell} {\pard\intbl\ql \scaps0\b0\i Italic\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\sc}\cell} {\pard\intbl\ql \i0\b0\scaps Small Caps\cell} \row} {\trowd\cellx1150\cellx2300\cellx3450\cellx4600\cellx5750\cellx6900 {\pard\intbl\ql {\b0\i0\scaps0\f3 \\em}\cell} {\pard\intbl\ql \i Emphatic\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\sl}\cell} {\pard\intbl\ql \scaps0\b0\i Slanted\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\tt}\cell} {\pard\intbl\ql \i0\scaps0\b0\f3 Typewriter\cell} \row} {\trowd\cellx1150\cellx2300\cellx3450\cellx4600 {\pard\intbl\ql {\b0\i0\scaps0\f3 \\bf}\cell} {\pard\intbl\ql \i0\scaps0\b Boldface\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\sf}\cell} {\pard\intbl\ql \i0\scaps0\b0\f2 Sans Serif\cell} \row} }\par }\pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \fi340 Remember that these commands are used {\i inside} a pair of braces to limit the amount of text that they effect. In addition to the eight typeface commands, there are a set of commands that alter the size of the type. These commands are: {\par {\pard\plain\s34\qc\sb120\sa0\keep\widctlpar\f0\fs22\sl240\slmult1 \sb60 \li512\ri512\fi0 \par {\trowd\cellx1725\cellx3450\cellx5175\cellx6900 {\pard\intbl\ql {\b0\i0\scaps0\f3 \\tiny}\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\small}\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\large}\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\huge}\cell} \row} {\trowd\cellx1725\cellx3450\cellx5175\cellx6900 {\pard\intbl\ql {\b0\i0\scaps0\f3 \\scriptsize}\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\normalsize}\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\Large}\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\Huge}\cell} \row} {\trowd\cellx1725\cellx3450\cellx5175 {\pard\intbl\ql {\b0\i0\scaps0\f3 \\footnotesize}\cell} {\pard\intbl\ql \cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\LARGE}\cell} \row} }\par }\pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb300 \fi0 7 Sectioning Commands and Tables of Contents\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \fi0 Technical documents, like this one, are often divided into sections. Each section has a heading containing a title and a number for easy reference. {\plain L{\up5\fs18 A}T{\dn7 E}X}{} has a series of commands that will allow you to identify different sorts of sections. Once you have done this {\plain L{\up5\fs18 A}T{\dn7 E}X}{} takes on the responsibility of laying out the title and of providing the numbers.\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 The commands that you can use are: {\par {\pard\plain\s34\qc\sb120\sa0\keep\widctlpar\f0\fs22\sl240\slmult1 \sb60 \li512\ri512\fi0 \par {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {\b0\i0\scaps0\f3 \\chapter}\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\subsection}\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\paragraph}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {\b0\i0\scaps0\f3 \\section}\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\subsubsection}\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\subparagraph}\cell} \row} }\par }\pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \fi0 The naming of these last two is unfortunate, since they do not really have anything to do with \lquote paragraphs\rquote in the normal sense of the word; they are just lower levels of section. In most document styles, headings made with {\b0\i0\scaps0\f3 \\paragraph} and {\b0\i0\scaps0\f3 \\subparagraph} are not numbered. {\b0\i0\scaps0\f3 \\chapter} is not available in document style {\i0\scaps0\b0\f3 article}. The commands should be used in the order given, since sections are numbered within chapters, subsections within sections, etc.\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 A seventh sectioning command, {\b0\i0\scaps0\f3 \\part}, is also available. Its use is always optional, and it is used to divide a large document into series of parts. It does not alter the numbering used for any of the other commands.\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 Including the command {\b0\i0\scaps0\f3 \\tableofcontents} in you document will cause a contents list to be included, containing information collected from the various sectioning commands. You will notice that each time your document is run through {\plain L{\up5\fs18 A}T{\dn7 E}X}{} the table of contents is always made up of the headings from the previous version of the document. This is because {\plain L{\up5\fs18 A}T{\dn7 E}X}{} collects information for the table as it processes the document, and then includes it the next time it is run. This can sometimes mean that the document has to be processed through {\plain L{\up5\fs18 A}T{\dn7 E}X}{} twice to get a correct table of contents.\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 \par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 8 Producing Special Symbols\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \fi0 You can include in you {\plain L{\up5\fs18 A}T{\dn7 E}X}{} document a wide range of symbols that do not appear on you your keyboard. For a start, you can add an accent to any letter: {\par {\pard\plain\s34\qc\sb120\sa0\keep\widctlpar\f0\fs22\sl240\slmult1 \sb60 \li512\ri512\fi0 \par {\trowd\cellx575\cellx1150\cellx1725\cellx2300\cellx2875\cellx3450\cellx4025\cellx4600\cellx5175\cellx5750 {\pard\intbl\ql \'f3\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\`\{o\}}\cell} {\pard\intbl\ql \'f5\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\~\{o\}}\cell} {\pard\intbl\ql \u466o\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\v\{o\}}\cell} {\pard\intbl\ql {\f5\u807\'b8}o\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\c\{o\}}\cell} {\pard\intbl\ql \'f3\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\'\{o\}}\cell} \row} {\trowd\cellx575\cellx1150\cellx1725\cellx2300\cellx2875\cellx3450\cellx4025\cellx4600\cellx5175\cellx5750 {\pard\intbl\ql \u333o\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\=\{o\}}\cell} {\pard\intbl\ql \u337o\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\H\{o\}}\cell} {\pard\intbl\ql \u7885o\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\d\{o\}}\cell} {\pard\intbl\ql \'f4\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\^\{o\}}\cell} {\pard\intbl\ql \u559o\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\.\{o\}}\cell} \row} {\trowd\cellx575\cellx1150\cellx1725\cellx2300 {\pard\intbl\ql {oo}\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\t\{oo\}}\cell} {\pard\intbl\ql \u817_o\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\b\{o\}}\cell} \row} {\trowd\cellx575\cellx1150\cellx1725\cellx2300 {\pard\intbl\ql \'f6\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\"\{o\}}\cell} {\pard\intbl\ql \u335o\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\u\{o\}}\cell} \row} }\par }\pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \fi340 A number of other symbols are available, and can be used by including the following commands: {\par {\pard\plain\s34\qc\sb120\sa0\keep\widctlpar\f0\fs22\sl240\slmult1 \sb60 \li512\ri512\fi0 \par {\trowd\cellx1150\cellx2300\cellx3450\cellx4600\cellx5750\cellx6900 {\pard\intbl\ql \'86\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\dag}\cell} {\pard\intbl\ql \'a7\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\S}\cell} {\pard\intbl\ql \'a9\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\copyright}\cell} \row} {\trowd\cellx1150\cellx2300\cellx3450\cellx4600\cellx5750\cellx6900 {\pard\intbl\ql \'87\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\ddag}\cell} {\pard\intbl\ql \'b6\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\P}\cell} {\pard\intbl\ql \'a3\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\pounds}\cell} \row} {\trowd\cellx1150\cellx2300\cellx3450\cellx4600\cellx5750\cellx6900 {\pard\intbl\ql \'9c\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\oe}\cell} {\pard\intbl\ql \'8c\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\OE}\cell} {\pard\intbl\ql \'e6\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\AE}\cell} \row} {\trowd\cellx1150\cellx2300\cellx3450\cellx4600\cellx5750\cellx6900 {\pard\intbl\ql \'c6\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\AE}\cell} {\pard\intbl\ql \'e5\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\aa}\cell} {\pard\intbl\ql \'c5\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\AA}\cell} \row} {\trowd\cellx1150\cellx2300\cellx3450\cellx4600\cellx5750\cellx6900 {\pard\intbl\ql \'f8\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\o}\cell} {\pard\intbl\ql \'d8\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\O}\cell} {\pard\intbl\ql \u323?\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\l}\cell} \row} {\trowd\cellx1150\cellx2300\cellx3450\cellx4600\cellx5750\cellx6900 {\pard\intbl\ql \u322?\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\L}\cell} {\pard\intbl\ql \'df\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\ss}\cell} {\pard\intbl\ql \'bf \cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 ?`}\cell} \row} {\trowd\cellx1150\cellx2300\cellx3450\cellx4600\cellx5750\cellx6900 {\pard\intbl\ql \'a1 \cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 !`}\cell} {\pard\intbl\ql \u8230?\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\ldots}\cell} {\pard\intbl\ql {\plain L{\up5\fs18 A}T{\dn7 E}X}\cell} {\pard\intbl\ql {\b0\i0\scaps0\f3 \\LaTeX}\cell} \row} }\par }\pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \fi0 There is also a {\b0\i0\scaps0\f3 \\today} command that prints the current date. When you use these commands remember that {\plain L{\up5\fs18 A}T{\dn7 E}X}{} will ignore any spaces that follow them, so that you can type \lquote {\b0\i0\scaps0\f3 \\pounds 20}\rquote to get \lquote \'a320\rquote . However, if you type \lquote {\b0\i0\scaps0\f3 LaTeX is wonderful}\rquote you will get \lquote {\plain L{\up5\fs18 A}T{\dn7 E}X}is wonderful\rquote \emdash notice the lack of space after {\plain L{\up5\fs18 A}T{\dn7 E}X}. To overcome this problem you can follow any of these commands by a pair of empty brackets and then any spaces that you wish to include, and you will see that {\b0\i0\scaps0\f3 \\LaTeX\{\} really is wonderful!} ({\plain L{\up5\fs18 A}T{\dn7 E}X}{} really is wonderful!).\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 Finally, {\plain L{\up5\fs18 A}T{\dn7 E}X}{} \lquote math\rquote mode, normally used to layout mathematical formulae, gives access to an even larger range of symbols, including the upper and lower case greek mathematical alphabet, calligraphic letters, mathematical operators and relations, arrows and a whole lot more. This document has not mentioned math mode, and it isn\rquote t going to either, so you will have to refer to the manual if you really need something that you can\rquote t get otherwise.\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 {\*\bkmkstart BMsec_title}9{\*\bkmkend BMsec_title} Titles\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \fi0 Most documents have a title. To title a {\plain L{\up5\fs18 A}T{\dn7 E}X}{} document, you include the following commands in your document, usually just after {\b0\i0\scaps0\f3 begin\{document\}}. {\par \fs18 {\pard\plain\s38\ql\widctlpar\f3\fs22\sl240\slmult1 \sb60 \li512\ri512\fi0 \fs18 \par \\title\{required title\} \par \\author\{required author\} \par \\date\{required date\} \par \\maketitle \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb120 \fi0 If there are several authors, then their names should be separated by {\b0\i0\scaps0\f3 \\and}; they can also be separated by {\b0\i0\scaps0\f3 \\\\} if you want them to be centred on different lines. If the {\b0\i0\scaps0\f3 \\date} command is left out, then the current date will be printed. {{\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \li600\fi-300 {}{}\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs22\sl240\slmult1 \sb50 \li600\fi-300 {}\tab \fs18 {{ {\par \pard\plain\s38\ql\widctlpar\f3\fs22\sl240\slmult1 \li600\fi0 \fs18 \par \\title\{Essential \\LaTeX\} \par \\author\{J Warbrick\\and A N Other\} \par \\date\{14th February 1988\} \par \\maketitle \par \par }}}\pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \li600\fi0 \fs18 {{ {\par \pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \li600\fi0 \fs18 {\fs22 Essential {\plain L{\up5\fs18 A}T{\dn7 E}X}}\par \pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \sb36 \li600\fi0 \fs18 J WarbrickA N Other\par \pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \sb18 \li600\fi0 \fs18 14th February 1988 \par }}}}}\pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb100 \fi0 The exact appearance of the title varies depending on the document style. In styles {\i0\scaps0\b0\f3 report}\~and\~{\i0\scaps0\b0\f3 book}\~the\~title\~appears\~on\~a page\~of\~its\~own. In the {\i0\scaps0\b0\f3 article} style it normally appears at the top of the first page, the style option {\i0\scaps0\b0\f3 titlepage} will alter this (see Section\~{\field{\*\fldinst{\lang1024 REF BMsec_styles \\* MERGEFORMAT }}{\fldrslt{4}}}).\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 \par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 10 Letters\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \fi0 Producing letters is simple with {\plain L{\up5\fs18 A}T{\dn7 E}X}{}. To do this you use the document style {\i0\scaps0\b0\f3 letter}. You can make any number of letters with a single input file. Your name and address, which are likely to be the same for all letters, are given once at the top of the file. Each letter is produced by a {\i0\scaps0\b0\f3 letter} environment, having the name and address of the recipient as its argument. The letter itself begins with an {\b0\i0\scaps0\f3 \\opening} command to generate the salutation.\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 The letter ends with a {\b0\i0\scaps0\f3 \\closing} command, you can use the commands {\b0\i0\scaps0\f3 \\encl} and {\b0\i0\scaps0\f3 \\cc} to generate lists of enclosures and people to whom you are sending copies. Any text that follows the {\b0\i0\scaps0\f3 \\closing} must be proceeded by a {\b0\i0\scaps0\f3 \\ps} command. This command produces no text\emdash you\rquote ll have to type \ldblquote P.S.\rdblquote yourself\emdash but is needed to format the additional text correctly.\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 Perhaps an example will make this clearer: {\par \fs18 {\pard\plain\s38\ql\widctlpar\f3\fs22\sl240\slmult1 \sb60 \li512\ri512\fi0 \fs18 \par \\documentstyle\{letter\} \par \\begin\{document\} \par \par \\address\{1234 Avenue of the Armadillos \\\\ \par Gnu York, G.Y. 56789\} \par \\signature\{R. (Ma) Dillo \\\\ Director of Cuisine\} \par \par \\begin\{letter\}\{G. Natheniel Picking \\\\ \par Acme Exterminators \\\\ \par Illinois\} \par \par \\opening\{Dear Nat,\} \par \par I'm afraid that the armadillo problem is still with us. \par I did everything ... \par \par ... and I hope that you can get rid of the nasty \par beasts this time. \par \par \\closing\{Best Regards,\} \par \\cc\{Jimmy Carter\\\\Richard M. Nixon\} \par \\end\{letter\} \par \par \\end\{document\} \par \par }}\pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb360 \fi0 11 Errors\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \fi0 When you create a new input file for {\plain L{\up5\fs18 A}T{\dn7 E}X}{} you will probably make mistakes. Everybody does, and it\rquote s nothing to be worried about. As with most computer programs, there are two sorts of mistake that you can make: those that {\plain L{\up5\fs18 A}T{\dn7 E}X}{} notices and those that it doesn\rquote t. To take a rather silly example, since {\plain L{\up5\fs18 A}T{\dn7 E}X}{} doesn\rquote t understand what you are saying it isn\rquote t going to be worried if you mis-spell some of the words in your text. You will just have to accurately proof-read your printed output. On the other hand, if you mis-spell one of the environment names in your file then {\plain L{\up5\fs18 A}T{\dn7 E}X}won\rquote t know what you want it to do.\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 When this sort of thing happens, {\plain L{\up5\fs18 A}T{\dn7 E}X}{} prints an error message on your terminal screen and then stops and waits for you to take some action. Unfortunately, the error messages that it produces are rather user-unfriendly and not a little frightening. Nevertheless, if you know where to look they will probably tell you where the error is and went wrong.\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 Consider what would happen if you mistyped {\b0\i0\scaps0\f3 \\begin\{itemize\}} so that it became {\b0\i0\scaps0\f3 \\begin\{itemie\}}. When {\plain L{\up5\fs18 A}T{\dn7 E}X}{} processes this instruction, it displays the following on your terminal: {\par \fs18 {\pard\plain\s38\ql\widctlpar\f3\fs22\sl240\slmult1 \sb60 \li512\ri512\fi0 \fs18 \par LaTeX error. See LaTeX manual for explanation. \par Type H for immediate help. \par ! Environment itemie undefined. \par \\@latexerr ...for immediate help.\}\\errmessage \{#1\} \par \\endgroup \par l.140 \\begin\{itemie\} \par \par ? \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb120 \fi0 After typing the \lquote ?\rquote {\plain L{\up5\fs18 A}T{\dn7 E}X}{} stops and waits for you to tell it what to do.\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 The first two lines of the message just tell you that the error was detected by {\plain L{\up5\fs18 A}T{\dn7 E}X}{}. The third line, the one that starts \lquote !\rquote is the {\i error indicator}. It tells you what the problem is, though until you have had some experience of {\plain L{\up5\fs18 A}T{\dn7 E}X}{} this may not mean a lot to you. In this case it is just telling you that it doesn\rquote t recognise an environment called {\i0\scaps0\b0\f3 itemie}. The next two lines tell you what {\plain L{\up5\fs18 A}T{\dn7 E}X}{} was doing when it found the error, they are irrelevant at the moment and can be ignored. The final line is called the {\i error locator}, and is a copy of the line from your file that caused the problem. It start with a line number to help you to find it in your file, and if the error was in the middle of a line it will be shown broken at the point where {\plain L{\up5\fs18 A}T{\dn7 E}X}{} realised that there was an error. {\plain L{\up5\fs18 A}T{\dn7 E}X}{} can sometimes pass the point where the real error is before discovering that something is wrong, but it doesn\rquote t usually get very far.\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 At this point you could do several things. If you knew enough about {\plain L{\up5\fs18 A}T{\dn7 E}X}{} you might be able to fix the problem, or you could type \lquote X\rquote and press the return key to stop {\plain L{\up5\fs18 A}T{\dn7 E}X}{} running while you go and correct the error. The best thing to do, however, is just to press the return key. This will allow {\plain L{\up5\fs18 A}T{\dn7 E}X}{} to go on running as if nothing had happened. If you have made one mistake, then you have probably made several and you may as well try to find them all in one go. It\rquote s much more efficient to do it this way than to run {\plain L{\up5\fs18 A}T{\dn7 E}X}{} over and over again fixing one error at a time. Don\rquote t worry about remembering what the errors were\emdash a copy of all the error messages is being saved in a {\i log} file so that you can look at them afterwards. See your {\i local guide} to find out what this file is called.\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 If you look at the line that caused the error it\rquote s normally obvious what the problem was. If you can\rquote t work out what you problem is look at the hints below, and if they don\rquote t help consult Chapter\~6 of the manual. It contains a list of all of the error messages that you are likely to encounter together with some hints as to what may have caused them.\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 Some of the most common mistakes that cause errors are {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs22\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab A mis-spelt command or environment name. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs22\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Improperly matched \lquote {\b0\i0\scaps0\f3 \{}\rquote and \lquote {\b0\i0\scaps0\f3 \}}\rquote \emdash remember that they should always come in pairs. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs22\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Trying to use one of the ten special characters {\b0\i0\scaps0\f3 # $ % & _ \{ \} ~ ^} and {\b0\i0\scaps0\f3 \\} as an ordinary printing symbol. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs22\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab A missing {\b0\i0\scaps0\f3 \\end} command. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs22\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab A missing command argument (that\rquote s the bit enclosed in \rquote {\b0\i0\scaps0\f3 \{}\rquote and \lquote {\b0\i0\scaps0\f3 \}}\rquote ). \par }\pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \fi340 One error can get {\plain L{\up5\fs18 A}T{\dn7 E}X}{} so confused that it reports a series of spurious errors as a result. If you have an error that you understand, followed by a series that you don\rquote t, then try correcting the first error\emdash the rest may vanish as if by magic.\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 Sometimes {\plain L{\up5\fs18 A}T{\dn7 E}X}{} may write a {\i0\scaps0\b0\f3 *} and stop without an error message. This is normally caused by a missing {\b0\i0\scaps0\f3 \\end\{document\}} command, but other errors can cause it. If this happens type {\b0\i0\scaps0\f3 \\stop} and press the return key.\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 Finally, {\plain L{\up5\fs18 A}T{\dn7 E}X}{} will sometimes print {\i warning} messages. They report problems that were not bad enough to cause {\plain L{\up5\fs18 A}T{\dn7 E}X}{} to stop processing, but nevertheless may require investigation. The most common problems are \lquote overfull\rquote and \lquote underfull\rquote lines of text. A message like: {\par \fs18 {\pard\plain\s38\ql\widctlpar\f3\fs22\sl240\slmult1 \sb60 \li512\ri512\fi0 \fs18 \par Overfull \\hbox (10.58649pt too wide) in paragraph at lines 172--175 \par []\\tenrm Mathematical for-mu-las may be dis-played. A dis-played \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb120 \fi0 indicates that {\plain L{\up5\fs18 A}T{\dn7 E}X}{} could not find a good place to break a line when laying out a paragraph. As a result, it was forced to let the line stick out into the right-hand margin, in this case by 10.6 points. Since a point is about 1/72nd of an inch this may be rather hard to see, but it will be there none the less.\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 This particular problem happens because {\plain L{\up5\fs18 A}T{\dn7 E}X}{} is rather fussy about line breaking, and it would rather generate a line that is too long than generate a paragraph that doesn\rquote t meet its high standards. The simplest way around the problem is to enclose the entire offending paragraph between {\b0\i0\scaps0\f3 \\begin\{sloppypar\}} and {\b0\i0\scaps0\f3 \\end\{sloppypar\}} commands. This tells {\plain L{\up5\fs18 A}T{\dn7 E}X}{} that you are happy for it to break its own rules while it is working on that particular bit of text.\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 Alternatively, messages about \ldblquote Underfull {\b0\i0\scaps0\f3 \\hbox}\rquote es\rdblquote may appear. These are lines that had to have more space inserted between words than {\plain L{\up5\fs18 A}T{\dn7 E}X}{} would have liked. In general there is not much that you can do about these. Your output will look fine, even if the line looks a bit stretched. About the only thing you could do is to re-write the offending paragraph!\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 \par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 12 A Final Reminder\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \fi0 You now know enough {\plain L{\up5\fs18 A}T{\dn7 E}X}{} to produce a wide range of documents. But this document has only scratched the surface of the things that {\plain L{\up5\fs18 A}T{\dn7 E}X}{} can do. This entire document was itself produced with {\plain L{\up5\fs18 A}T{\dn7 E}X}{} (with no sticking things in or clever use of a photocopier) and even it hasn\rquote t used all the features that it could. From this you may get some feeling for the power that {\plain L{\up5\fs18 A}T{\dn7 E}X}{} puts at your disposal.\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 Please remember what was said in the introduction: if you {\i0\scaps0\b do} have a complex document to produce then {\i0\scaps0\b go and read the manual}. You will be wasting your time if you rely only on what you have read here.\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 One other warning: having dabbled with {\plain L{\up5\fs18 A}T{\dn7 E}X}{} your documents will never be the same again \u8230?.\par }} }}}latex2rtf-2.3.18/test/babel_french.tex0000777000175000017500000002701713050672357020035 0ustar wilfriedwilfried\documentclass{article} %\usepackage{ffme-cd,mf-pala} \usepackage[T1]{fontenc} \usepackage[french]{babel} \usepackage[cp850]{inputenc} \begin{document} %\entete \begin{center} \Large\bf Modifications propos‚es au projet de RŠglement int‚rieur\\ D‚finition des diverses pratiques f‚d‚rales\\\medskip\normalsize Daniel \textsc{Taupin} --- \today \end{center} \begin{quotation}\sl Il est n‚cessaire de d‚finir quelque part la signification des mots d‚signant nos diverses activit‚s. La premiŠre raison est la compr‚hension par les non-sp‚cialistes, notamment les ‚ventuels d‚cideurs, les gouvernants, voire les juristes. Le grand public ou les m‚dias ne sont pas {\slshape a priori\/} destinataires. La deuxiŠme raison est de pouvoir rapidement d‚terminer si une nouvelle activit‚ qu'on nous proposerait (notamment sous la pression de secteurs commerciaux de <<~loisirs-aventure~>> en fait totalement aseptis‚s) relŠve ou pourrait ˆtre assimil‚e … une extension de l'une de nos disciplines, ou doit au contraire ˆtre renvoy‚e … une autre f‚d‚ration. Une troisiŠme raison --- purement potentielle --- est de pouvoir, si le besoin s'en fait sentir, transf‚rer sans ambigu‹t‚ une activit‚ (ou une variante d'activit‚) d'un comit‚ sportif … un autre, comme on l'a fait pour la {\slshape via ferrata\/}, moyennant une r‚vision minime du rŠglement int‚rieur en Assembl‚e g‚n‚rale. Mais ceci n'est pas … l'ordre du jour~: pour l'instant il s'agit de faire l'inventaire et de l'ordonner tel qu'il est en pratique. \medskip Intentionnellement, les activit‚s d‚crites sont plus nombreuses que nos comit‚s sportifs, car ceux-ci traitent ou peuvent traiter de plusieurs activit‚s diff‚rentes, pas forc‚ment par leur pratique, mais surtout par le milieu (artificiel, s‚curis‚ ou d'aventure) dans lequel elles s'exercent et qui entraŒne des diff‚rences de traitement de la s‚curit‚. Je pr‚cise que mon avis {\sl\bfseries personnel\/} est que nos activit‚s doivent se d‚finir avant tout en fonction du milieu o— elles s'exercent, et non en fonction des instruments (skis, chaussons, snowboards, crampons, corde, casque, baudrier ou rien du tout) avec lesquelles elles s'exercent. \end{quotation} \section*{Article 45.1 --- D‚finition des activit‚s pratiqu‚es par la FFME} {\sl Cet article se placerait dans le Titre VI, avant l'article 45 du projet examin‚ le 28 septembre 2002.} \begin{description} \item [Escalade sur site naturel :] consiste … gravir ou progresser sur des surfaces raides, verticales ou surplombantes, convexes, planes ou concaves, d'origine g‚ologique ou provenant d'ouvrages d'art d‚saffect‚s, en utilisant les reliefs naturels de la surface escalad‚e. \begin{description} \item [Escalade sportive sur site naturel :] la protection s'y r‚alise au moyen d'ancrages, de tapis ou tous autres dispositifs install‚s … demeure ou pendant la dur‚e de la pratique. Le but principal de l'escalade sportive est la recherche de la performance physique ou technique, personnelle, comparative ou comp‚titive, … tous niveaux. \item [Escalade d'aventure :] La s‚curit‚ et la protection y sont entiŠrement … la charge du pratiquant ou de son encadrement, qui doivent g‚rer toutes les incertitudes r‚sultant du rocher et de l'environnement. Le but principal de l'escalade d'aventure est de r‚ussir sans accident le parcours entrepris dans des d‚lais compatibles avec la s‚curit‚. \end{description} \item [Escalade sportive sur structure artificielle :] consiste … gravir ou progresser sur des surfaces raides, verticales ou surplombantes, convexes, planes ou concaves, construites ou am‚nag‚es artificiellement pour la pratique de l'escalade, en utilisant les reliefs pr‚vus … cet usage. La protection s'y r‚alise au moyen d'ancrages, de tapis ou tous autres dispositifs install‚s … demeure ou pendant la dur‚e de la pratique. Le but principal de l'escalade sportive est la recherche de la performance physique ou technique, personnelle, comparative ou comp‚titive, … tous niveaux. \item[Alpinisme :] consiste … gravir des montagnes, atteindre des points remarquables, parcourir des itin‚raires qui les int‚ressent, r‚aliser des enchaŒnements, en milieu potentiellement hostile ou en haute montagne. La s‚curit‚ y est entiŠrement … la charge du pratiquant ou de son encadrement, qui doivent g‚rer toutes les incertitudes r‚sultant du rocher et de l'environnement. Outre l'int‚rˆt des paysages et de l'environnement, le but principal est de r‚ussir sans accident le parcours entrepris dans des d‚lais compatibles avec la s‚curit‚. \item[Canyonisme sportif :] sport de pleine nature qui se pratique dans un environnement particulier. Il consiste … descendre un thalweg pouvant se pr‚senter sous forme de torrents, ruisseaux, riviŠres, gorges (plus ou moins ‚troits et profonds), avec ou sans pr‚sence permanente d'eau et pouvant pr‚senter des cascades, des vasques, des biefs, des parties sub-verticales. Il exige une progression et des franchissement par~: la marche, la nage, les sauts, les glissades, la d‚sescalade ou le rappel. Cette discipline impose de poss‚der un mat‚riel et une technique sp‚cifique li‚s … la variabilit‚ du milieu naturel. \begin{description} \item [Canyonisme sportif :] La protection et les rappels s'y r‚alisent au moyen d'ancrages ou tous autres dispositifs install‚s … demeure ou pendant la dur‚e de la pratique. Le canyonisme sportif est cependant une activit‚ de terrain d'aventure et, moyennant usage des ‚quipements en place qu'il convient de v‚rifier, la s‚curit‚ y est entiŠrement … la charge du pratiquant ou de son encadrement. \item [Canyonisme d'aventure :] La protection et les rappels s'y r‚alisent au moyen d'ancrages ou tous autres dispositifs install‚s par les pratiquants ou leur encadrement. De ce fait, le s‚curit‚ y est entiŠrement … la charge du pratiquant ou de son encadrement. \end{description} \item[Ski de montagne :] consiste … parcourir un itin‚raire enneig‚ comportant d'importantes d‚nivel‚es … la mont‚e et … la descente, au moyens de skis ayant des dispositifs permettant la mont‚e et la descente, sans utilisation de moyens m‚caniques ou motoris‚s. \begin{description} \item[Ski de montagne sportif :] Le but principal du ski de montagne sportif est la recherche de la performance physique ou technique, personnelle, comparative ou comp‚titive, … tous niveaux, sur un itin‚raire impos‚ ou d‚limit‚ par les organisateurs. Sauf cas de force majeure, les dangers objectifs y cont minimis‚s par l'organisation. \item[Ski de montagne d'aventure :] (appel‚ aussi ski alpinisme ou ski de randonn‚e) La s‚curit‚ y est entiŠrement … la charge du pratiquant ou de son encadrement, qui doivent g‚rer toutes les incertitudes r‚sultant de la neige, de la montagne, de la m‚t‚orologie et de l'environnement en utilisant le cas ‚ch‚ant les techniques de l'alpinisme. Outre l'int‚rˆt des paysages et de l'environnement, le but principal est de r‚ussir sans accident le parcours entrepris dans des d‚lais compatibles avec la s‚curit‚. \end{description} \item[Raid sportif de montagne :] consiste, soit … parcourir … pied un itin‚raire fix‚ et d‚pourvu de dangers objectifs comportant d'importantes d‚nivel‚es … la mont‚e et … la descente, soit … atteindre … pied un certain nombre de points fix‚s … l'avance. Le but principal du raid sporttif de montagne sportive est la recherche de la performance physique ou technique, personnelle, comparative ou comp‚titive, … tous niveaux. \item[Randonn‚e de montagne :] consiste … gravir des montagnes, atteindre des points remarquables, parcourir des itin‚raires int‚ressants, r‚aliser des enchaŒnements, en milieu de montagne ou accident‚, en g‚n‚ral hors sentiers am‚nag‚s. La s‚curit‚ y est entiŠrement … la charge du pratiquant ou de son encadrement, qui doivent g‚rer toutes les incertitudes r‚sultant du terrain, de l'enneigement ‚ventuel et de l'environnement. Outre l'int‚rˆt des paysages et de l'environnement, le but principal est de r‚ussir sans accident le parcours entrepris dans des d‚lais compatibles avec la s‚curit‚. \item[Course de vitesse en raquette … neige :] consiste … parcourir un itin‚raire enneig‚ et d‚pourvu de dangers objectifs au moyen de raquettes … neige, sans utilisation de moyens m‚caniques ou motoris‚s. Le but principal de la course de raquette … neige est la recherche de la performance physique, personnelle, comparative ou comp‚titive, … tous niveaux. \item[Raquette alpinisme ou de randonn‚e :] consiste … parcourir un itin‚raire enneig‚ pouvant comporter d'importantes d‚nivel‚es … la mont‚e et … la descente, au moyen de raquettes … neige, sans utilisation de moyens m‚caniques ou motoris‚s. La s‚curit‚ y est entiŠrement … la charge du pratiquant ou de son encadrement, qui doivent g‚rer toutes les incertitudes r‚sultant de la neige, de la montagne, de la m‚t‚orologie et de l'environnement en utilisant le cas ‚ch‚ant les techniques de l'alpinisme. Outre l'int‚rˆt des paysages et de l'environnement, le but principal est de r‚ussir sans accident le parcours entrepris dans des d‚lais compatibles avec la s‚curit‚. \item[Exp‚ditions :] pratique des activit‚s en milieu non s‚curis‚ (alpinisme, ski-alpinisme, randonn‚e … skis, raquettes ou … pied, etc.) dans des r‚gions lointaines, n‚cessitant une logistique importante telle que portage, camps d'altitude ou ‚loign‚s, avec des conditions difficiles d'altitude ou de climat. \item[Via ferrata :] consiste … parcourir sur des surfaces raides, verticaux ou surplombants, convexes, plans ou concaves, d'origine g‚ologique ou artificielle, des itin‚raires am‚nag‚s en utilisant des prises, des cƒbles et tous autres am‚nagements pr‚vus … cet usage. La protection s'y r‚alise au moyen d'ancrages ou tout autre dispositif install‚ … demeure. \end{description} \section*{Article 45.2 --- Organisation et composition} {\sl Cet article reprend avec quelques pr‚cisions, au Titre VI, l'article 45 du projet examin‚ le 28 septembre 2002.} Les disciplines ou activit‚s suivantes sont constitu‚es en comit‚s sportifs dont les d‚nominations sont~: \subsection*{R‚partition (actuelle)} \begin{itemize} \item one \item two \end{itemize} \subsection*{R‚partition (actuelle)} \begin{description} \item[Alpinisme] \item[Canyonisme :]\ \begin{itemize} \item Canyonisme d'aventure \end{itemize} \item[Escalade :]\ \begin{itemize} \item Escalade sportive sur structure artificielle \item Escalade sportive sur site naturel \item Via ferrata \item Escalade d'aventure \end{itemize} \item[Exp‚ditions] \item[Randonn‚e, raid sportif, raquette … neige (voir note finale) :]\ \begin{itemize} \item Raid sportif de montagne \item Randonn‚e de montagne \item Course de raquette … neige \item Raquette alpinisme ou de randonn‚e \end{itemize} \item[Ski de montagne (voir note finale):]\ \begin{itemize} \item Ski de montagne sportif \item Ski alpinisme et de randonn‚e \end{itemize} \end{description} {\sl Le reste de l'article 45 (composition et fonctionnement de chaque comit‚) … la suite dans le 45.2.} \bigskip{\large\bf Une autre r‚partition est envisageable, en fonction des centres d'int‚rˆts des comit‚s sportifs, mais ma proposition pour le RI actuel se limite … ce qui pr‚cŠde.} \subsection*{Commentaires} Plusieurs appellations m‚riteraient d'ˆtre pr‚cis‚es pour ‚viter les ambigu‹t‚s~: \begin{itemize} \item Le comit‚ sportif <<~Ski de montagne~>> devenant {\slshape ski de montagne de comp‚tition\/} ou, encore mieux, {\slshape ski de montagne de performance\/} (cf. UIAA). \item Dans le nom du comit‚ sportif <<~Randonn‚e...~>>, mettre les mots <<~raid~>> en tˆte (peut-ˆtre) car le mot Randonn‚e fait confusion avec le domaine de la FFRP. \end{itemize} \end{document} latex2rtf-2.3.18/test/babel_frenchb.tex0000777000175000017500000000252513050672360020166 0ustar wilfriedwilfried\documentclass{article} \usepackage[frenchb]{babel} \usepackage[T1]{fontenc} \usepackage[applemac]{inputenc} \makeatletter \newcommand{\noun}[1]{\textsc{#1}} \makeatother \begin{document} \title{Les donnŽs chez les Chartreux} \author{Charles de Miramon} \maketitle Ë la fin du \noun{xii}\textsuperscript{e} sicle, des mouvements religieux la•cs se dŽveloppent en Occident. Ë c™tŽ des moines et des clercs Žmerge une Žlite de la•cs qui souhaite vivre une vie ˆ mi-chemin entre le statut d'un religieux et celui d'un la•c. Certains de ces mouvements ont ŽtŽ bien ŽtudiŽs comme les bŽguines. Les donnŽs ont ŽtŽ longtemps ignorŽs par l'historiographie alors qu'il s'agit d'un phŽnomne de grande ampleur. Les donnŽs sont des la•cs ou, plus rarement, des clercs qui passent contrat avec une institution religieuse : un h™pital, une lŽproserie, un monastre. En Žchange de la dŽvolution de l'ensemble de leurs biens et de leur personne physique, ils reoivent la confraternitŽ de l'institution, c'est-ˆ-dire la possibilitŽ de participer ˆ ses biens temporels et spirituels. S'ils sont astreints ˆ une vie religieuse -- port d'un habit et surtout d'un insigne, participation aux activitŽs quotidiennes du monastre et de l'h™pital --, ils ne prononcent pas de voeux monastiques et ne sont pas gŽnŽralement obligŽs ˆ la chastetŽ ou ˆ la pauvretŽ. \end{document} latex2rtf-2.3.18/test/tikz.tex0000777000175000017500000000264613050672355016423 0ustar wilfriedwilfried\documentclass{article} \usepackage{tikz} \usetikzlibrary{shapes,snakes} \begin{document} \begin{verbatim} :Title: Node shapes :Tags: Basics, Nodes and shapes, Matrix, PGF 1.18 An overview of predefined node shapes. Note that only the ``rectangle`` and ``circle`` shapes are loaded by default. To use other shapes, load the ``shape`` library. The ``regular polygon`` and ``star`` shapes are only available for PGF >= v 1.18. \end{verbatim} \begin{tikzpicture}[scale=2] \tikzstyle{ann} = [draw=none,fill=none,right] \matrix[nodes={draw, ultra thick, fill=blue!20}, row sep=0.3cm,column sep=0.5cm] { \node[draw=none,fill=none] {Plain node}; & \node[rectangle] {Rectangle}; & \node[circle] {Circle};\\ \node[ellipse] {Ellipse};& \node[circle split] {Circle \nodepart{lower} split};& \node[forbidden sign,text width=4em, text centered] {Forbidden sign};\\ \node[diamond] {Diamond};& \node[cross out] {Cross out};& \node[strike out] {Strike out};\\ \node[regular polygon,regular polygon sides=5] {$n=5$};& \node[regular polygon,regular polygon sides=7] {$n=7$};& \node[regular polygon,regular polygon sides=9] {$n=9$};& \node[ann]{Regular polygon};\\ \node[star,star points=4] {$p=4$};& \node[star,star points=7,star point ratio=0.8] {$p=7$};& \node[star,star points=10] {$p=9$};& \node[ann]{Star};\\ }; \end{tikzpicture} \end{document} latex2rtf-2.3.18/test/html.sty0000777000175000017500000007600513256667750016440 0ustar wilfriedwilfried% % $Id: html.sty,v 1.23 1998/02/26 10:32:24 latex2html Exp $ % LaTeX2HTML Version 96.2 : html.sty % % This file contains definitions of LaTeX commands which are % processed in a special way by the translator. % For example, there are commands for embedding external hypertext links, % for cross-references between documents or for including raw HTML. % This file includes the comments.sty file v2.0 by Victor Eijkhout % In most cases these commands do nothing when processed by LaTeX. % % Place this file in a directory accessible to LaTeX (i.e., somewhere % in the TEXINPUTS path.) % % NOTE: This file works with LaTeX 2.09 or (the newer) LaTeX2e. % If you only have LaTeX 2.09, some complex LaTeX2HTML features % like support for segmented documents are not available. % Changes: % See the change log at end of file. % Exit if the style file is already loaded % (suggested by Lee Shombert \ifx \htmlstyloaded\relax \endinput\else\let\htmlstyloaded\relax\fi \makeatletter \providecommand{\latextohtml}{\LaTeX2\texttt{HTML}} %%% LINKS TO EXTERNAL DOCUMENTS % % This can be used to provide links to arbitrary documents. % The first argumment should be the text that is going to be % highlighted and the second argument a URL. % The hyperlink will appear as a hyperlink in the HTML % document and as a footnote in the dvi or ps files. % \newcommand{\htmladdnormallinkfoot}[2]{#1\footnote{#2}} % This is an alternative definition of the command above which % will ignore the URL in the dvi or ps files. \newcommand{\htmladdnormallink}[2]{#1} % This command takes as argument a URL pointing to an image. % The image will be embedded in the HTML document but will % be ignored in the dvi and ps files. % \newcommand{\htmladdimg}[1]{} %%% CROSS-REFERENCES BETWEEN (LOCAL OR REMOTE) DOCUMENTS % % This can be used to refer to symbolic labels in other Latex % documents that have already been processed by the translator. % The arguments should be: % #1 : the URL to the directory containing the external document % #2 : the path to the labels.pl file of the external document. % If the external document lives on a remote machine then labels.pl % must be copied on the local machine. % %e.g. \externallabels{http://cbl.leeds.ac.uk/nikos/WWW/doc/tex2html/latex2html} % {/usr/cblelca/nikos/tmp/labels.pl} % The arguments are ignored in the dvi and ps files. % \newcommand{\externallabels}[2]{} % This complements the \externallabels command above. The argument % should be a label defined in another latex document and will be % ignored in the dvi and ps files. % \newcommand{\externalref}[1]{} % Suggested by Uffe Engberg (http://www.brics.dk/~engberg/) % This allows the same effect for citations in external bibliographies. % An \externallabels command must be given, locating a labels.pl file % which defines the location and keys used in the external .html file. % \newcommand{\externalcite}{\nocite} %%% HTMLRULE % This command adds a horizontal rule and is valid even within % a figure caption. % Here we introduce a stub for compatibility. \newcommand{\htmlrule}{\protect\HTMLrule} \newcommand{\HTMLrule}{\@ifstar\htmlrulestar\htmlrulestar} \newcommand{\htmlrulestar}[1]{} % This command adds information within the ... tag % \newcommand{\bodytext}[1]{} \newcommand{\htmlbody}{} %%% HYPERREF % Suggested by Eric M. Carol % Similar to \ref but accepts conditional text. % The first argument is HTML text which will become ``hyperized'' % (underlined). % The second and third arguments are text which will appear only in the paper % version (DVI file), enclosing the fourth argument which is a reference to a label. % %e.g. \hyperref{using the tracer}{using the tracer (see Section}{)}{trace} % where there is a corresponding \label{trace} % \newcommand{\hyperref}{\hyperrefx[ref]} \def\hyperrefx[#1]{{\def\next{#1}% \def\tmp{ref}\ifx\next\tmp\aftergroup\hyperrefref \else\def\tmp{pageref}\ifx\next\tmp\aftergroup\hyperpageref \else\def\tmp{page}\ifx\next\tmp\aftergroup\hyperpageref \else\def\tmp{noref}\ifx\next\tmp\aftergroup\hypernoref \else\def\tmp{no}\ifx\next\tmp\aftergroup\hypernoref \else\typeout{*** unknown option \next\space to hyperref ***}% \fi\fi\fi\fi\fi}} \newcommand{\hyperrefref}[4]{#2\ref{#4}#3} \newcommand{\hyperpageref}[4]{#2\pageref{#4}#3} \newcommand{\hypernoref}[3]{#2} %%% HYPERCITE --- added by RRM % Suggested by Stephen Simpson % effects the same ideas as in \hyperref, but for citations. % It does not allow an optional argument to the \cite, in LaTeX. % % \hypercite{}{}{}{} % % uses the pre/post-texts in LaTeX, with a \cite{} % % \hypercite[ext]{}{}{} % % uses the pre/post-texts in LaTeX, with a \nocite{} % the actual reference comes from an \externallabels file. % \newcommand{\hypercite}{\hypercitex[int]} \def\hypercitex[#1]{{\def\next{#1}% \def\tmp{int}\ifx\next\tmp\aftergroup\hyperciteint \else\def\tmp{cite}\ifx\next\tmp\aftergroup\hyperciteint \else\def\tmp{ext}\ifx\next\tmp\aftergroup\hyperciteext \else\def\tmp{nocite}\ifx\next\tmp\aftergroup\hyperciteext \else\def\tmp{no}\ifx\next\tmp\aftergroup\hyperciteext \else\typeout{*** unknown option \next\space to hypercite ***}% \fi\fi\fi\fi\fi}} \newcommand{\hyperciteint}[4]{#2{\def\tmp{#3}\def\emptyopt{}% \ifx\tmp\emptyopt\cite{#4}\else\cite[#3]{#4}\fi}} \newcommand{\hyperciteext}[3]{#2\nocite{#3}} %%% HTMLREF % Reference in HTML version only. % Mix between \htmladdnormallink and \hyperref. % First arg is text for in both versions, second is label for use in HTML % version. \newcommand{\htmlref}[2]{#1} %%% HTMLCITE % Reference in HTML version only. % Mix between \htmladdnormallink and \hypercite. % First arg is text for in both versions, second is citation for use in HTML % version. \newcommand{\htmlcite}[2]{#1} %%% HTMLIMAGE % This command can be used inside any environment that is converted % into an inlined image (eg a "figure" environment) in order to change % the way the image will be translated. The argument of \htmlimage % is really a string of options separated by commas ie % [scale=],[external],[thumbnail= % The scale option allows control over the size of the final image. % The ``external'' option will cause the image not to be inlined % (images are inlined by default). External images will be accessible % via a hypertext link. % The ``thumbnail'' option will cause a small inlined image to be % placed in the caption. The size of the thumbnail depends on the % reduction factor. The use of the ``thumbnail'' option implies % the ``external'' option. % % Example: % \htmlimage{scale=1.5,external,thumbnail=0.2} % will cause a small thumbnail image 1/5th of the original size to be % placed in the final document, pointing to an external image 1.5 % times bigger than the original. % \newcommand{\htmlimage}[1]{} % \htmlborder causes a border to be placed around an image or table % when the image is placed within a cell. \newcommand{\htmlborder}[1]{} % Put \begin{makeimage}, \end{makeimage} around LaTeX to ensure its % translation into an image. % This shields sensitive text from being translated. \newenvironment{makeimage}{}{} % A dummy environment that can be useful to alter the order % in which commands are processed, in LaTeX2HTML \newenvironment{tex2html_deferred}{}{} %%% HTMLADDTONAVIGATION % This command appends its argument to the buttons in the navigation % panel. It is ignored by LaTeX. % % Example: % \htmladdtonavigation{\htmladdnormallink % {\htmladdimg{http://server/path/to/gif}} % {http://server/path}} \newcommand{\htmladdtonavigation}[1]{} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Comment.sty version 2.0, 19 June 1992 % selectively in/exclude pieces of text: the user can define new % comment versions, and each is controlled separately. % This style can be used with plain TeX or LaTeX, and probably % most other packages too. % % Examples of use in LaTeX and TeX follow \endinput % % Author % Victor Eijkhout % Department of Computer Science % University Tennessee at Knoxville % 104 Ayres Hall % Knoxville, TN 37996 % USA % % eijkhout@cs.utk.edu % % Usage: all text included in between % \comment ... \endcomment % or \begin{comment} ... \end{comment} % is discarded. The closing command should appear on a line % of its own. No starting spaces, nothing after it. % This environment should work with arbitrary amounts % of comment. % % Other 'comment' environments are defined by % and are selected/deselected with % \includecomment{versiona} % \excludecoment{versionb} % % These environments are used as % \versiona ... \endversiona % or \begin{versiona} ... \end{versiona} % with the closing command again on a line of its own. % % Basic approach: % to comment something out, scoop up every line in verbatim mode % as macro argument, then throw it away. % For inclusions, both the opening and closing comands % are defined as noop % % Changed \next to \html@next to prevent clashes with other sty files % (mike@emn.fr) % Changed \html@next to \htmlnext so the \makeatletter and % \makeatother commands could be removed (they were causing other % style files - changebar.sty - to crash) (nikos@cbl.leeds.ac.uk) % Changed \htmlnext back to \html@next... \def\makeinnocent#1{\catcode`#1=12 } \def\csarg#1#2{\expandafter#1\csname#2\endcsname} \def\ThrowAwayComment#1{\begingroup \def\CurrentComment{#1}% \let\do\makeinnocent \dospecials \makeinnocent\^^L% and whatever other special cases \endlinechar`\^^M \catcode`\^^M=12 \xComment} {\catcode`\^^M=12 \endlinechar=-1 % \gdef\xComment#1^^M{\def\test{#1}\edef\test{\meaning\test} \csarg\ifx{PlainEnd\CurrentComment Test}\test \let\html@next\endgroup \else \csarg\ifx{LaLaEnd\CurrentComment Test}\test \edef\html@next{\endgroup\noexpand\end{\CurrentComment}} \else \csarg\ifx{LaInnEnd\CurrentComment Test}\test \edef\html@next{\endgroup\noexpand\end{\CurrentComment}} \else \let\html@next\xComment \fi \fi \fi \html@next} } \def\includecomment #1{\expandafter\def\csname#1\endcsname{}% \expandafter\def\csname end#1\endcsname{}} \def\excludecomment #1{\expandafter\def\csname#1\endcsname{\ThrowAwayComment{#1}}% {\escapechar=-1\relax \edef\tmp{\string\\end#1}% \csarg\xdef{PlainEnd#1Test}{\meaning\tmp}% \edef\tmp{\string\\end\string\{#1\string\}}% \csarg\xdef{LaLaEnd#1Test}{\meaning\tmp}% \edef\tmp{\string\\end \string\{#1\string\}}% \csarg\xdef{LaInnEnd#1Test}{\meaning\tmp}% }} \excludecomment{comment} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % end Comment.sty %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % Alternative code by Robin Fairbairns, 22 September 1997 % \newcommand\@gobbleenv{\let\reserved@a\@currenvir\@gobble@nv} \long\def\@gobble@nv#1\end#2{\def\reserved@b{#2}% \ifx\reserved@a\reserved@b \edef\reserved@a{\noexpand\end{\reserved@a}}% \expandafter\reserved@a \else \expandafter\@gobble@nv \fi} \renewcommand{\excludecomment}[1]{% \csname newenvironment\endcsname{#1}{\@gobbleenv}{}} %%% RAW HTML % % Enclose raw HTML between a \begin{rawhtml} and \end{rawhtml}. % The html environment ignores its body % \excludecomment{rawhtml} %%% HTML ONLY % % Enclose LaTeX constructs which will only appear in the % HTML output and will be ignored by LaTeX with % \begin{htmlonly} and \end{htmlonly} % \excludecomment{htmlonly} % Shorter version \newcommand{\html}[1]{} % for images.tex only \excludecomment{imagesonly} %%% LaTeX ONLY % Enclose LaTeX constructs which will only appear in the % DVI output and will be ignored by latex2html with %\begin{latexonly} and \end{latexonly} % \newenvironment{latexonly}{}{} % Shorter version \newcommand{\latex}[1]{#1} %%% LaTeX or HTML % Combination of \latex and \html. % Say \latexhtml{this should be latex text}{this html text} % %\newcommand{\latexhtml}[2]{#1} \long\def\latexhtml#1#2{#1} %%% tracing the HTML conversions % This alters the tracing-level within the processing % performed by latex2html by adjusting $VERBOSITY % (see latex2html.config for the appropriate values) % \newcommand{\htmltracing}[1]{} \newcommand{\htmltracenv}[1]{} %%% \strikeout for HTML only % uses ... tags on the argument % LaTeX just gobbles it up. \newcommand{\strikeout}[1]{} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%% JCL - stop input here if LaTeX2e is not present %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \ifx\if@compatibility\undefined %LaTeX209 \makeatother\relax\expandafter\endinput \fi \if@compatibility %LaTeX2e in LaTeX209 compatibility mode \makeatother\relax\expandafter\endinput \fi %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % Start providing LaTeX2e extension: % This is currently: % - additional optional argument for \htmladdimg % - support for segmented documents % \ProvidesPackage{html} [1996/12/22 v1.1 hypertext commands for latex2html (nd, hws, rrm)] %%%%MG % This command takes as argument a URL pointing to an image. % The image will be embedded in the HTML document but will % be ignored in the dvi and ps files. The optional argument % denotes additional HTML tags. % % Example: \htmladdimg[ALT="portrait" ALIGN=CENTER]{portrait.gif} % \renewcommand{\htmladdimg}[2][]{} %%% HTMLRULE for LaTeX2e % This command adds a horizontal rule and is valid even within % a figure caption. % % This command is best used with LaTeX2e and HTML 3.2 support. % It is like \hrule, but allows for options via key--value pairs % as follows: \htmlrule[key1=value1, key2=value2, ...] . % Use \htmlrule* to suppress the
tag. % Eg. \htmlrule[left, 15, 5pt, "none", NOSHADE] produces %

. % Renew the necessary part. \renewcommand{\htmlrulestar}[1][all]{} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % renew some definitions to allow optional arguments % % The description of the options is missing, as yet. % \renewcommand{\latextohtml}{\textup{\LaTeX2\texttt{HTML}}} \renewcommand{\htmladdnormallinkfoot}[3][]{#2\footnote{#3}} \renewcommand{\htmladdnormallink}[3][]{#2} \renewcommand{\htmlbody}[1][]{} \renewcommand{\hyperref}[1][ref]{\hyperrefx[#1]} \renewcommand{\hypercite}[1][int]{\hypercitex[#1]} \renewcommand{\htmlref}[3][]{#2} \renewcommand{\htmlcite}[1]{#1\htmlcitex} \newcommand{\htmlcitex}[2][]{{\def\tmp{#1}\ifx\tmp\@empty\else~[#1]\fi}} \renewcommand{\htmlimage}[2][]{} \renewcommand{\htmlborder}[2][]{} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % HTML HTMLset HTMLsetenv % % These commands do nothing in LaTeX, but can be used to place % HTML tags or set Perl variables during the LaTeX2HTML processing; % They are intended for expert use only. \newcommand{\HTMLcode}[2][]{} \ifx\undefined\HTML\newcommand{\HTML}[2][]{}\else \typeout{*** Warning: \string\HTML\space had an incompatible definition ***}% \typeout{*** instead use \string\HTMLcode\space for raw HTML code ***}% \fi \newcommand{\HTMLset}[3][]{} \newcommand{\HTMLsetenv}[3][]{} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % The following commands pertain to document segmentation, and % were added by Herbert Swan (with help from % Michel Goossens ): % % % This command inputs internal latex2html tables so that large % documents can to partitioned into smaller (more manageable) % segments. % \newcommand{\internal}[2][internals]{} % % Define a dummy stub \htmlhead{}. This command causes latex2html % to define the title of the start of a new segment. It is not % normally placed in the user's document. Rather, it is passed to % latex2html via a .ptr file written by \segment. % \newcommand{\htmlhead}[3][]{} % In the LaTeX2HTML version this will eliminate the title line % generated by a \segment command, but retains the title string % for use in other places. % \newcommand{\htmlnohead}{} % In the LaTeX2HTML version this put a URL into a tag % within the ... portion of a document. % \newcommand{\htmlbase}[1]{} % % % The dummy command \endpreamble is needed by latex2html to % mark the end of the preamble in document segments that do % not contain a \begin{document} % \newcommand{\startdocument}{} % \tableofchildlinks, \htmlinfo % by Ross Moore --- extensions dated 27 September 1997 % % These do nothing in LaTeX but for LaTeX2HTML they mark % where the table of child-links and info-page should be placed, % when the user wants other than the default. % \tableofchildlinks % put mini-TOC at this location % \tableofchildlinks[off] % not on current page % \tableofchildlinks[none] % not on current and subsequent pages % \tableofchildlinks[on] % selectively on current page % \tableofchildlinks[all] % on current and all subsequent pages % \htmlinfo % put info-page at this location % \htmlinfo[off] % no info-page in current document % \htmlinfo[none] % no info-page in current document % *-versions omit the preceding
tag. % \newcommand{\tableofchildlinks}{% \@ifstar\tableofchildlinksstar\tableofchildlinksstar} \newcommand{\tableofchildlinksstar}[1][]{} \newcommand{\htmlinfo}{\@ifstar\htmlinfostar\htmlinfostar} \newcommand{\htmlinfostar}[1][]{} % This redefines \begin to allow for an optional argument % which is used by LaTeX2HTML to specify `style-sheet' information \let\realLaTeX@begin=\begin \renewcommand{\begin}[1][]{\realLaTeX@begin} % % Allocate a new set of section counters, which will get incremented % for "*" forms of sectioning commands, and for a few miscellaneous % commands. % \newcounter{lpart} \newcounter{lchapter}[part] \@ifundefined{c@chapter}% {\let\Hchapter\relax \newcounter{lsection}[part]}% {\let\Hchapter=\chapter \newcounter{lsection}[chapter]} \newcounter{lsubsection}[section] \newcounter{lsubsubsection}[subsection] \newcounter{lparagraph}[subsubsection] \newcounter{lsubparagraph}[paragraph] \newcounter{lequation} % % Redefine "*" forms of sectioning commands to increment their % respective counters. % \let\Hpart=\part %\let\Hchapter=\chapter \let\Hsection=\section \let\Hsubsection=\subsection \let\Hsubsubsection=\subsubsection \let\Hparagraph=\paragraph \let\Hsubparagraph=\subparagraph \let\Hsubsubparagraph=\subsubparagraph \ifx\c@subparagraph\undefined \newcounter{lsubsubparagraph}[lsubparagraph] \else \newcounter{lsubsubparagraph}[subparagraph] \fi % % The following definitions are specific to LaTeX2e: % (They must be commented out for LaTeX 2.09) % \renewcommand{\part}{\@ifstar{\stepcounter{lpart}% \bgroup\def\tmp{*}\H@part}{\bgroup\def\tmp{}\H@part}} \newcommand{\H@part}[1][]{\def\tmp@a{#1}\check@align \expandafter\egroup\expandafter\Hpart\tmp} \ifx\Hchapter\relax\else \def\chapter{\resetsections \@ifstar{\stepcounter{lchapter}% \bgroup\def\tmp{*}\H@chapter}{\bgroup\def\tmp{}\H@chapter}}\fi \newcommand{\H@chapter}[1][]{\def\tmp@a{#1}\check@align \expandafter\egroup\expandafter\Hchapter\tmp} \renewcommand{\section}{\resetsubsections \@ifstar{\stepcounter{lsection}\bgroup\def\tmp{*}% \H@section}{\bgroup\def\tmp{}\H@section}} \newcommand{\H@section}[1][]{\def\tmp@a{#1}\check@align \expandafter\egroup\expandafter\Hsection\tmp} \renewcommand{\subsection}{\resetsubsubsections \@ifstar{\stepcounter{lsubsection}\bgroup\def\tmp{*}% \H@subsection}{\bgroup\def\tmp{}\H@subsection}} \newcommand{\H@subsection}[1][]{\def\tmp@a{#1}\check@align \expandafter\egroup\expandafter\Hsubsection\tmp} \renewcommand{\subsubsection}{\resetparagraphs \@ifstar{\stepcounter{lsubsubsection}\bgroup\def\tmp{*}% \H@subsubsection}{\bgroup\def\tmp{}\H@subsubsection}} \newcommand{\H@subsubsection}[1][]{\def\tmp@a{#1}\check@align \expandafter\egroup\expandafter\Hsubsubsection\tmp} \renewcommand{\paragraph}{\resetsubparagraphs \@ifstar{\stepcounter{lparagraph}\bgroup\def\tmp{*}% \H@paragraph}{\bgroup\def\tmp{}\H@paragraph}} \newcommand\H@paragraph[1][]{\def\tmp@a{#1}\check@align \expandafter\egroup\expandafter\Hparagraph\tmp} \renewcommand{\subparagraph}{\resetsubsubparagraphs \@ifstar{\stepcounter{lsubparagraph}\bgroup\def\tmp{*}% \H@subparagraph}{\bgroup\def\tmp{}\H@subparagraph}} \newcommand\H@subparagraph[1][]{\def\tmp@a{#1}\check@align \expandafter\egroup\expandafter\Hsubparagraph\tmp} \ifx\Hsubsubparagraph\relax\else\@ifundefined{subsubparagraph}{}{% \def\subsubparagraph{% \@ifstar{\stepcounter{lsubsubparagraph}\bgroup\def\tmp{*}% \H@subsubparagraph}{\bgroup\def\tmp{}\H@subsubparagraph}}}\fi \newcommand\H@subsubparagraph[1][]{\def\tmp@a{#1}\check@align \expandafter\egroup\expandafter\Hsubsubparagraph\tmp} \def\check@align{\def\empty{}\ifx\tmp@a\empty \else\def\tmp@b{center}\ifx\tmp@a\tmp@b\let\tmp@a\empty \else\def\tmp@b{left}\ifx\tmp@a\tmp@b\let\tmp@a\empty \else\def\tmp@b{right}\ifx\tmp@a\tmp@b\let\tmp@a\empty \else\expandafter\def\expandafter\tmp@a\expandafter{\expandafter[\tmp@a]}% \fi\fi\fi \def\empty{}\ifx\tmp\empty\let\tmp=\tmp@a \else \expandafter\def\expandafter\tmp\expandafter{\expandafter*\tmp@a}% \fi\fi} % \def\resetsections{\setcounter{section}{0}\setcounter{lsection}{0}% \reset@dependents{section}\resetsubsections } \def\resetsubsections{\setcounter{subsection}{0}\setcounter{lsubsection}{0}% \reset@dependents{subsection}\resetsubsubsections } \def\resetsubsubsections{\setcounter{subsubsection}{0}\setcounter{lsubsubsection}{0}% \reset@dependents{subsubsection}\resetparagraphs } % \def\resetparagraphs{\setcounter{lparagraph}{0}\setcounter{lparagraph}{0}% \reset@dependents{paragraph}\resetsubparagraphs } \def\resetsubparagraphs{\ifx\c@subparagraph\undefined\else \setcounter{subparagraph}{0}\fi \setcounter{lsubparagraph}{0}% \reset@dependents{subparagraph}\resetsubsubparagraphs } \def\resetsubsubparagraphs{\ifx\c@subsubparagraph\undefined\else \setcounter{subsubparagraph}{0}\fi \setcounter{lsubsubparagraph}{0}} % \def\reset@dependents#1{\begingroup\let \@elt \@stpelt \csname cl@#1\endcsname\endgroup} % % % Define a helper macro to dump a single \secounter command to a file. % \newcommand{\DumpPtr}[2]{% \count255=\arabic{#1}\def\dummy{dummy}\def\tmp{#2}% \ifx\tmp\dummy\else\advance\count255 by \arabic{#2}\fi \immediate\write\ptrfile{% \noexpand\setcounter{#1}{\number\count255}}} % % Define a helper macro to dump all counters to the file. % The value for each counter will be the sum of the l-counter % actual LaTeX section counter. % Also dump an \htmlhead{section-command}{section title} command % to the file. % \newwrite\ptrfile \def\DumpCounters#1#2#3#4{% \begingroup\let\protect=\noexpand \immediate\openout\ptrfile = #1.ptr \DumpPtr{part}{lpart}% \ifx\Hchapter\relax\else\DumpPtr{chapter}{lchapter}\fi \DumpPtr{section}{lsection}% \DumpPtr{subsection}{lsubsection}% \DumpPtr{subsubsection}{lsubsubsection}% \DumpPtr{paragraph}{lparagraph}% \DumpPtr{subparagraph}{lsubparagraph}% \DumpPtr{equation}{lequation}% \DumpPtr{footnote}{dummy}% \def\tmp{#4}\ifx\tmp\@empty \immediate\write\ptrfile{\noexpand\htmlhead{#2}{#3}}\else \immediate\write\ptrfile{\noexpand\htmlhead[#4]{#2}{#3}}\fi \dumpcitestatus \dumpcurrentcolor \immediate\closeout\ptrfile \endgroup } %% interface to natbib.sty \def\dumpcitestatus{} \def\loadcitestatus{\def\dumpcitestatus{% \ifciteindex\immediate\write\ptrfile{\noexpand\citeindextrue}% \else\immediate\write\ptrfile{\noexpand\citeindexfalse}\fi }% } \@ifpackageloaded{natbib}{\loadcitestatus}{% \AtBeginDocument{\@ifpackageloaded{natbib}{\loadcitestatus}{}}} %% interface to color.sty \def\dumpcurrentcolor{} \def\loadsegmentcolors{% \let\real@pagecolor=\pagecolor \let\pagecolor\segmentpagecolor \let\segmentcolor\color \ifx\current@page@color\undefined \def\current@page@color{{}}\fi \def\dumpcurrentcolor{\bgroup\def\@empty@{{}}% \expandafter\def\expandafter\tmp\space####1@{\def\thiscol{####1}}% \ifx\current@color\@empty@\def\thiscol{}\else \expandafter\tmp\current@color @\fi \immediate\write\ptrfile{\noexpand\segmentcolor{\thiscol}}% \ifx\current@page@color\@empty@\def\thiscol{}\else \expandafter\tmp\current@page@color @\fi \immediate\write\ptrfile{\noexpand\segmentpagecolor{\thiscol}}% \egroup}% \global\let\loadsegmentcolors=\relax } % These macros are needed within images.tex since this inputs % the .ptr files for a segment, so that counters are % colors are synchronised. % \newcommand{\segmentpagecolor}[1][]{% \@ifpackageloaded{color}{\loadsegmentcolors\bgroup \def\tmp{#1}\ifx\@empty\tmp\def\next{[]}\else\def\next{[#1]}\fi \expandafter\segmentpagecolor@\next}% {\@gobble}} \def\segmentpagecolor@[#1]#2{\def\tmp{#1}\def\tmpB{#2}% \ifx\tmpB\@empty\let\next=\egroup \else \let\realendgroup=\endgroup \def\endgroup{\edef\next{\noexpand\realendgroup \def\noexpand\current@page@color{\current@color}}\next}% \ifx\tmp\@empty\real@pagecolor{#2}\def\model{}% \else\real@pagecolor[#1]{#2}\def\model{[#1]}% \fi \edef\next{\egroup\def\noexpand\current@page@color{\current@page@color}% \noexpand\real@pagecolor\model{#2}}% \fi\next} % \newcommand{\segmentcolor}[2][named]{\@ifpackageloaded{color}% {\loadsegmentcolors\segmentcolor[#1]{#2}}{}} \@ifpackageloaded{color}{\loadsegmentcolors}{\let\real@pagecolor=\@gobble \AtBeginDocument{\@ifpackageloaded{color}{\loadsegmentcolors}{}}} % Define the \segment[align]{file}{section-command}{section-title} command, % and its helper macros. This command does four things: % 1) Begins a new LaTeX section; % 2) Writes a list of section counters to file.ptr, each % of which represents the sum of the LaTeX section % counters, and the l-counters, defined above; % 3) Write an \htmlhead{section-title} command to file.ptr; % 4) Inputs file.tex. \def\segment{\@ifstar{\@@htmls}{\@@html}} \def\endsegment{} \newcommand{\@@htmls}[1][]{\@@htmlsx{#1}} \newcommand{\@@html}[1][]{\@@htmlx{#1}} \def\@@htmlsx#1#2#3#4{\csname #3\endcsname* {#4}% \DumpCounters{#2}{#3*}{#4}{#1}\input{#2}} \def\@@htmlx#1#2#3#4{\csname #3\endcsname {#4}% \DumpCounters{#2}{#3}{#4}{#1}\input{#2}} \makeatother \endinput % Modifications: % % (The listing of Initiales see Changes) % $Log: html.sty,v $ % Revision 1.23 1998/02/26 10:32:24 latex2html % -- use \providecommand for \latextohtml % -- implemented \HTMLcode to do what \HTML did previously % \HTML still works, unless already defined by another package % -- fixed problems remaining with undefined \chapter % -- defined \endsegment % % Revision 1.22 1997/12/05 11:38:18 RRM % -- implemented an optional argument to \begin for style-sheet info. % -- modified use of an optional argument with sectioning-commands % % Revision 1.21 1997/11/05 10:28:56 RRM % -- replaced redefinition of \@htmlrule with \htmlrulestar % % Revision 1.20 1997/10/28 02:15:58 RRM % -- altered the way some special html-macros are defined, so that % star-variants are explicitly defined for LaTeX % -- it is possible for these to occur within images.tex % e.g. \htmlinfostar \htmlrulestar \tableofchildlinksstar % % Revision 1.19 1997/10/11 05:47:48 RRM % -- allow the dummy {tex2html_nowrap} environment in LaTeX % use it to make its contents be evaluated in environment order % % Revision 1.18 1997/10/04 06:56:50 RRM % -- uses Robin Fairbairns' code for ignored environments, % replacing the previous comment.sty stuff. % -- extensions to the \tableofchildlinks command % -- extensions to the \htmlinfo command % % Revision 1.17 1997/07/08 11:23:39 RRM % include value of footnote counter in .ptr files for segments % % Revision 1.16 1997/07/03 08:56:34 RRM % use \textup within the \latextohtml macro % % Revision 1.15 1997/06/15 10:24:58 RRM % new command \htmltracenv as environment-ordered \htmltracing % % Revision 1.14 1997/06/06 10:30:37 RRM % - new command: \htmlborder puts environment into a
cell % with a border of specified width, + other attributes. % - new commands: \HTML for setting arbitrary HTML tags, with attributes % \HTMLset for setting Perl variables, while processing % \HTMLsetenv same as \HTMLset , but it gets processed % as if it were an environment. % - new command: \latextohtml --- to set the LaTeX2HTML name/logo % - fixed some remaining problems with \segmentcolor & \segmentpagecolor % % Revision 1.13 1997/05/19 13:55:46 RRM % alterations and extra options to \hypercite % % Revision 1.12 1997/05/09 12:28:39 RRM % - Added the optional argument to \htmlhead, also in \DumpCounters % - Implemented \HTMLset as a no-op in LaTeX. % - Fixed a bug in accessing the page@color settings. % % Revision 1.11 1997/03/26 09:32:40 RRM % - Implements LaTeX versions of \externalcite and \hypercite commands. % Thanks to Uffe Engberg and Stephen Simpson for the suggestions. % % Revision 1.10 1997/03/06 07:37:58 RRM % Added the \htmltracing command, for altering $VERBOSITY . % % Revision 1.9 1997/02/17 02:26:26 RRM % - changes to counter handling (RRM) % - shuffled around some definitions % - changed \htmlrule of 209 mode % % Revision 1.8 1997/01/26 09:04:12 RRM % RRM: added optional argument to sectioning commands % \htmlbase sets the tag % \htmlinfo and \htmlinfo* allow the document info to be positioned % % Revision 1.7 1997/01/03 12:15:44 L2HADMIN % % - fixes to the color and natbib interfaces % % - extended usage of \hyperref, via an optional argument. % % - extended use comment environments to allow shifting expansions % % e.g. within \multicolumn (`bug' reported by Luc De Coninck). % % - allow optional argument to: \htmlimage, \htmlhead, % % \htmladdimg, \htmladdnormallink, \htmladdnormallinkfoot % % - added new commands: \htmlbody, \htmlnohead % % - added new command: \tableofchildlinks % % Revision 1.6 1996/12/25 03:04:54 JCL % added patches to segment feature from Martin Wilck % % Revision 1.5 1996/12/23 01:48:06 JCL % o introduced the environment makeimage, which may be used to force % LaTeX2HTML to generate an image from the contents. % There's no magic, all what we have now is a defined empty environment % which LaTeX2HTML will not recognize and thus pass it to images.tex. % o provided \protect to the \htmlrule commands to allow for usage % within captions. % % Revision 1.4 1996/12/21 19:59:22 JCL % - shuffled some entries % - added \latexhtml command % % Revision 1.3 1996/12/21 12:22:59 JCL % removed duplicate \htmlrule, changed \htmlrule back not to create a \hrule % to allow occurrence in caption % % Revision 1.2 1996/12/20 04:03:41 JCL % changed occurrence of \makeatletter, \makeatother % added new \htmlrule command both for the LaTeX2.09 and LaTeX2e % sections % % % jcl 30-SEP-96 % - Stuck the commands commonly used by both LaTeX versions to the top, % added a check which stops input or reads further if the document % makes use of LaTeX2e. % - Introduced rrm's \dumpcurrentcolor and \bodytext % hws 31-JAN-96 - Added support for document segmentation % hws 10-OCT-95 - Added \htmlrule command % jz 22-APR-94 - Added support for htmlref % nd - Created latex2rtf-2.3.18/test/geometry.rtf0000644000175000017500000001052013664476467017270 0ustar wilfriedwilfried{\rtf1\ansi\uc1\deff0\deflang1024 {\fonttbl{\f0\fnil\fcharset0 Times New Roman;} {\f1\fnil\fcharset0 Arial;} {\f2\fnil\fcharset0 Arial;} {\f3\fnil\fcharset0 Courier New;} {\f4\fnil\fcharset0 Zapf Chancery;} {\f5\fnil\fcharset0 STIXGeneral;} {\f6\fnil\fcharset0 MS Gothic;} } {\colortbl; \red0\green0\blue0; \red0\green0\blue255; \red0\green255\blue255; \red0\green255\blue0; \red255\green0\blue255; \red255\green0\blue0; \red255\green255\blue0; \red255\green255\blue255; } {\stylesheet {\s0\qj\widctlpar\f0\fs20 \snext0 Normal;} {\cs10 \additive\ssemihidden Default Paragraph Font;} {\s1\qc\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 Part;} {\s2\ql\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 heading 1;} {\s3\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 2;} {\s4\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 3;} {\s5\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 4;} {\s6\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 5;} {\s7\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 6;} {\s8\qr\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext8 rightpar;} {\s9\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext9 centerpar;} {\s10\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext10 leftpar;} {\s11\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equation;} {\s12\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationNum;} {\s13\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlign;} {\s14\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlignNum;} {\s15\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArray;} {\s16\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArrayNum;} {\s17\ql\sb120\sa120\keep\widctlpar\f0\fs20 \sbasedon0\snext0 theorem;} {\s18\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 bitmapCenter;} {\s20\qc\sb240\sa240\b\f0\fs36 \sbasedon0\snext21 Title;} {\s21\qc\sa120\f0\fs20 \sbasedon0\snext0 author;} {\s22\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext22 footer;} {\s23\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext23 header;} {\s30\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 caption;} {\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext0 Figure;} {\s32\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext32 Table;} {\s33\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext33 Tabular;} {\s34\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext34 Tabbing;} {\s35\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext35 Quote;} {\s38\ql\widctlpar\f3\fs20 \snext38 verbatim;} {\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext46 List;} {\s47\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext47 List 1;} {\s50\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 latex picture;} {\s51\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 subfigure;} {\s61\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext62 bibheading;} {\s62\ql\fi-567\li567\sb0\sa0\f0\fs20 \sbasedon0\snext62 bibitem;} {\s64\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext64 endnotes;} {\s65\ql\fi-113\li397\lin397\f0\fs20 \sbasedon0\snext65 footnote text;} {\s66\qj\fi-170\li454\lin454\f0\fs20 \sbasedon0\snext66 endnote text;} {\cs62\super \additive\sbasedon10 footnote reference;} {\cs63\super \additive\sbasedon10 endnote reference;} {\s67\ql\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext67 acronym;} {\s70\qc\sa120\b\f0\fs20 \sbasedon0\snext71 abstract title;} {\s71\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext0 abstract;} {\s80\ql\sb240\sa120\keepn\f0\b\fs20 \sbasedon0\snext0 contents_heading;} {\s81\ql\li425\tqr\tldot\tx8222\sb240\sa60\keepn\f0\fs20\b \sbasedon0\snext82 toc 1;} {\s82\ql\li512\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext83 toc 2;} {\s83\ql\li1024\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext84 toc 3;} {\s84\ql\li1536\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext85 toc 4;} {\s85\ql\li2048\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 5;} {\s86\ql\li2560\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 6;} } {\info {\title Original file was geometry.tex} {\doccomm Created using latex2rtf 2.3.18 r1266 (released May 29, 2020) on Sat May 30 17:35:19 2020 } } {\footer\pard\plain\f0\fs20\qc\chpgn\par} \paperw12280\paperh15900\margl1138\margr1707\margt569\margb2862\pgnstart0\widowctrl\qj\ftnbj\f0\aftnnar {}} }}}latex2rtf-2.3.18/test/bibentry_plain.bib0000777000175000017500000000143313050672360020364 0ustar wilfriedwilfried@Book{ floo-comp, editor = {Gavin Flood}, title = {{The Blackwell Companion to Hinduism}}, publisher = {Blackwell}, year = 2003, address = {Oxford}, isbn = {0-631-21535-2} } @Book{ zysk-conj, author = {Kenneth G. Zysk}, title = {Conjugal Love in {India}}, year = 2002, publisher = {Brill}, address = {Leiden}, volume = 1, series = {Sir Henry Wellcome Asian Series}, annote = {http://www.brill.nl/m\_catalogue\_sub6\_id10452.htm}, isbn = {90 04 12598 1} } @Book{ ping-cata, author = {David Pingree}, title = {Catalogue of Jyoti\d{s}a Manuscripts in the Wellcome Library. Sanskrit Astral and Mathematical Literature}, year = 2004, publisher = {Brill}, address = {Leiden}, volume = 2, series = {Sir Henry Wellcome Asian Series} } latex2rtf-2.3.18/test/report.aux0000644000175000017500000000275413664476470016756 0ustar wilfriedwilfried\relax \@writefile{toc}{\contentsline {chapter}{\numberline {1}First Chapter}{3}} \@writefile{lof}{\addvspace {10\p@ }} \@writefile{lot}{\addvspace {10\p@ }} \@writefile{toc}{\contentsline {section}{\numberline {1.1}Intro}{3}} \newlabel{fig1}{{1.1}{3}} \@writefile{lof}{\contentsline {figure}{\numberline {1.1}{\ignorespaces This is figure 1}}{3}} \@writefile{toc}{\contentsline {section}{\numberline {1.2}Method}{4}} \newlabel{fig2}{{1.2}{4}} \@writefile{lof}{\contentsline {figure}{\numberline {1.2}{\ignorespaces This is figure 2}}{4}} \@writefile{toc}{\contentsline {chapter}{\numberline {2}Second Chapter}{5}} \@writefile{lof}{\addvspace {10\p@ }} \@writefile{lot}{\addvspace {10\p@ }} \@writefile{toc}{\contentsline {section}{\numberline {2.1}Intro}{5}} \newlabel{fig3}{{2.1}{5}} \@writefile{lof}{\contentsline {figure}{\numberline {2.1}{\ignorespaces This is figure 3}}{5}} \@writefile{toc}{\contentsline {section}{\numberline {2.2}Method}{5}} \newlabel{fig4}{{2.2}{6}} \@writefile{lof}{\contentsline {figure}{\numberline {2.2}{\ignorespaces This is figure 4}}{6}} \@writefile{toc}{\contentsline {chapter}{\numberline {A}First Appendix}{7}} \@writefile{lof}{\addvspace {10\p@ }} \@writefile{lot}{\addvspace {10\p@ }} \@writefile{toc}{\contentsline {section}{\numberline {A.1}Intro}{7}} \@writefile{toc}{\contentsline {chapter}{\numberline {B}Second Appendix}{8}} \@writefile{lof}{\addvspace {10\p@ }} \@writefile{lot}{\addvspace {10\p@ }} \@writefile{toc}{\contentsline {section}{\numberline {B.1}Intro}{8}} latex2rtf-2.3.18/test/fig_subfig.tex0000777000175000017500000000342213050672360017533 0ustar wilfriedwilfried\documentclass{article} \usepackage{graphicx} \usepackage{subfigure} \begin{document} Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Proin euismod. Proin commodo consectetuer erat. Nam ullamcorper justo. Vestibulum eget nisl. Sed neque arcu, eleifend vitae, ultricies non, consequat quis, mi. Sed blandit. Vestibulum nonummy, dolor vitae convallis molestie, justo libero molestie magna, ut faucibus justo neque id massa. Sed auctor. \begin{figure}[h] \begin{center} \subfigure[Big]{\includegraphics[width=0.3\textwidth]{fig_test.png}}\quad \subfigure[Medium]{\includegraphics[width=0.25\textwidth]{fig_test.png}}\quad \subfigure[Small]{\includegraphics[width=0.2\textwidth]{fig_test.png}} \end{center} \caption{Three subfigures} \end{figure} Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Proin euismod. Proin commodo consectetuer erat. Nam ullamcorper justo. Vestibulum eget nisl. Sed neque arcu, eleifend vitae, ultricies non, consequat quis, mi. Sed blandit. Vestibulum nonummy, dolor vitae convallis molestie, justo libero molestie magna, ut faucibus justo neque id massa. Sed auctor. \begin{figure}[h] \begin{center} \subfigure[Big]{\includegraphics[width=0.3\textwidth]{fig_test.png}}\quad \subfigure{\includegraphics[width=0.25\textwidth]{fig_test.png}}\quad \subfigure[Small]{\includegraphics[width=0.2\textwidth]{fig_test.png}} \end{center} \caption{Testing numbering of subfigures} \end{figure} Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Proin euismod. Proin commodo consectetuer erat. Nam ullamcorper justo. Vestibulum eget nisl. Sed neque arcu, eleifend vitae, ultricies non, consequat quis, mi. Sed blandit. Vestibulum nonummy, dolor vitae convallis molestie, justo libero molestie magna, ut faucibus justo neque id massa. Sed auctor. \end{document}latex2rtf-2.3.18/test/bib_harvard.bib0000777000175000017500000000262613050672360017633 0ustar wilfriedwilfried @book{latex, author = "Leslie Lamport", publisher = "Addison-Wesley", title = "{\LaTeX \rm:} {A} Document Preparation System", year = "1986" } @book{latex:guide, author = "Helmut Kopka and Patrick W. Daly", publisher = "Addison-Wesley", title = "A Guide to {\LaTeX \rm:} {D}ocument Preparation for Beginners and Advanced Users", year = "1993" } @unpublished{btxdoc, author = "Oren Patashnik", month = jan, note = "Documentation for general BibTeX users", title = "{{BibTeXing}}", year = "1988" } @book{agsm, author = "John Pitson", address = "Canberra", edition = "3rd", publisher = "Australian Government Publishing Service", title = "Style Manual for authors editors and printers of {A}ustralian government publications", year = "1978" } @unpublished{latex2htmldoc, author = "Nikos Drakos", month = jan, note = "Documentation accompanying the {\LaTeX} to {\sc html} translator", title = "The {\LaTeX}2{\sc html} Translator", year = "1994", URL = "http://cbl.leeds.ac.uk/nikos/tex2html/doc/latex2html/latex2html.html" } @article{aharanov1995, Author = {E. Aharanov and J. A. Whitehead and P. B. Kelemen and M. Spiegelman}, Journal = {Journal of Geophysical Research}, Keywords = {geologic, stability}, Number = {B10}, Pages = {20433--20450}, Title = {Channeling instability of upwelling melt in the mantle}, Volume = {100}, Year = {1995}} latex2rtf-2.3.18/test/include1.tex0000777000175000017500000000236313050672360017136 0ustar wilfriedwilfried\subsection{This is the first subsection from file \texttt{include1.tex}} \label{section11} Here is some text to create a paragraph or two so that we can see if this works or not. It will be interesting to see if the labels work properly. As I create these testing files I realize that I need to add parsing support for \verb#\input# and \verb#\include# in the getSection function. Furthermore, after reading the \LaTeX{} book, I see that \verb#\include# files will all start on a new page. This is not the case for \verb#\input# files. Here is a reference to the next subsection \ref{section12}. \subsection{This is the second subsection from file \texttt{include1.tex}} \label{section12} Here is some text to create a paragraph or two so that we can see if this works or not. It will be interesting to see if the labels work properly. As I create these testing files I realize that I need to add parsing support for \verb#\input# and \verb#\include# in the getSection function. Furthermore, after reading the \LaTeX{} book, I see that \verb#\include# files will all start on a new page. This is not the case for \verb#\input# files. Here is a reference to the previous subsection \ref{section11}. \endinput Here is text that should never be seen.latex2rtf-2.3.18/test/enc_latin9.tex0000777000175000017500000001140113050672360017450 0ustar wilfriedwilfried\documentclass[10pt]{article} \usepackage[T1]{fontenc} \usepackage[latin9]{inputenc} \usepackage{times} \usepackage{textcomp} \begin{document} \begin{tabular}{ccrl} 80& &128&\\ 81& &129&\\ 82& &130&\\ 83& &131&\\ 84& &132&\\ 85& &133&\\ 86& &134&\\ 87& &135&\\ 88& &136&\\ 89& &137&\\ 8A& &138&\\ 8B& &139&\\ 8C& &140&\\ 8D& &141&\\ 8E& &142&\\ 8F& &143&\\ 90& &144&\\ 91& &145&\\ 92& &146&\\ 93& &147&\\ 94& &148&\\ 95& &149&\\ 96& &150&\\ 97& &151&\\ 98& &152&\\ 99& &153&\\ 9A& &154&\\ 9B& &155&\\ 9C& &156&\\ 9D& &157&\\ 9E& &158&\\ 9F& &159&\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} A0& &160&NO-BREAK SPACE\\ A1&Ą&161&INVERTED EXCLAMATION MARK\\ A2&˘&162&CENT SIGN\\ A3&Ł&163&POUND SIGN\\ A4&¤&8364&EURO SIGN\\ A5&Ľ&165&YEN SIGN\\ A6&Ś&352&LATIN CAPITAL LETTER S WITH CARON\\ A7&§&167&SECTION SIGN\\ A8&¨&353&LATIN SMALL LETTER S WITH CARON\\ A9&$Š$&169©RIGHT SIGN\\ AA&Ş&170&FEMININE ORDINAL INDICATOR\\ AB&Ť&171&LEFT-POINTING DOUBLE ANGLE QUOTATION MARK\\ AC&$Ź$&172&NOT SIGN\\ AD&­&173&SOFT HYPHEN\\ AE&Ž&174®ISTERED SIGN\\ AF&Ż&175&MACRON\\ B0&°&176&DEGREE SIGN\\ B1&$ą$&177&PLUS-MINUS SIGN\\ B2&$˛$&178&SUPERSCRIPT TWO\\ B3&$ł$&179&SUPERSCRIPT THREE\\ B4&´&381&LATIN CAPITAL LETTER Z WITH CARON\\ B5&$ľ$&181&MICRO SIGN\\ B6&ś&182&PILCROW SIGN\\ B7&ˇ&183&MIDDLE DOT\\ B8&¸&382&LATIN SMALL LETTER Z WITH CARON\\ B9&$š$&185&SUPERSCRIPT ONE\\ BA&ş&186&MASCULINE ORDINAL INDICATOR\\ BB&ť&187&RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK\\ BC&ź&338&LATIN CAPITAL LIGATURE OE\\ BD&˝&339&LATIN SMALL LIGATURE OE\\ BE&ž&376&LATIN CAPITAL LETTER Y WITH DIAERESIS\\ BF&ż&191&INVERTED QUESTION MARK\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} C0&Ŕ&192&LATIN CAPITAL LETTER A WITH GRAVE\\ C1&Á&193&LATIN CAPITAL LETTER A WITH ACUTE\\ C2&Â&194&LATIN CAPITAL LETTER A WITH CIRCUMFLEX\\ C3&Ă&195&LATIN CAPITAL LETTER A WITH TILDE\\ C4&Ä&196&LATIN CAPITAL LETTER A WITH DIAERESIS\\ C5&Ĺ&197&LATIN CAPITAL LETTER A WITH RING ABOVE\\ C6&Ć&198&LATIN CAPITAL LETTER AE\\ C7&Ç&199&LATIN CAPITAL LETTER C WITH CEDILLA\\ C8&Č&200&LATIN CAPITAL LETTER E WITH GRAVE\\ C9&É&201&LATIN CAPITAL LETTER E WITH ACUTE\\ CA&Ę&202&LATIN CAPITAL LETTER E WITH CIRCUMFLEX\\ CB&Ë&203&LATIN CAPITAL LETTER E WITH DIAERESIS\\ CC&Ě&204&LATIN CAPITAL LETTER I WITH GRAVE\\ CD&Í&205&LATIN CAPITAL LETTER I WITH ACUTE\\ CE&Î&206&LATIN CAPITAL LETTER I WITH CIRCUMFLEX\\ CF&Ď&207&LATIN CAPITAL LETTER I WITH DIAERESIS\\ D0&Đ&208&LATIN CAPITAL LETTER ETH\\ D1&Ń&209&LATIN CAPITAL LETTER N WITH TILDE\\ D2&Ň&210&LATIN CAPITAL LETTER O WITH GRAVE\\ D3&Ó&211&LATIN CAPITAL LETTER O WITH ACUTE\\ D4&Ô&212&LATIN CAPITAL LETTER O WITH CIRCUMFLEX\\ D5&Ő&213&LATIN CAPITAL LETTER O WITH TILDE\\ D6&Ö&214&LATIN CAPITAL LETTER O WITH DIAERESIS\\ D7&$×$&215&MULTIPLICATION SIGN\\ D8&Ř&216&LATIN CAPITAL LETTER O WITH STROKE\\ D9&Ů&217&LATIN CAPITAL LETTER U WITH GRAVE\\ DA&Ú&218&LATIN CAPITAL LETTER U WITH ACUTE\\ DB&Ű&219&LATIN CAPITAL LETTER U WITH CIRCUMFLEX\\ DC&Ü&220&LATIN CAPITAL LETTER U WITH DIAERESIS\\ DD&Ý&221&LATIN CAPITAL LETTER Y WITH ACUTE\\ DE&Ţ&222&LATIN CAPITAL LETTER THORN\\ DF&ß&223&LATIN SMALL LETTER SHARP S\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} E0&ŕ&224&LATIN SMALL LETTER A WITH GRAVE\\ E1&á&225&LATIN SMALL LETTER A WITH ACUTE\\ E2&â&226&LATIN SMALL LETTER A WITH CIRCUMFLEX\\ E3&ă&227&LATIN SMALL LETTER A WITH TILDE\\ E4&ä&228&LATIN SMALL LETTER A WITH DIAERESIS\\ E5&ĺ&229&LATIN SMALL LETTER A WITH RING ABOVE\\ E6&ć&230&LATIN SMALL LETTER AE\\ E7&ç&231&LATIN SMALL LETTER C WITH CEDILLA\\ E8&č&232&LATIN SMALL LETTER E WITH GRAVE\\ E9&é&233&LATIN SMALL LETTER E WITH ACUTE\\ EA&ę&234&LATIN SMALL LETTER E WITH CIRCUMFLEX\\ EB&ë&235&LATIN SMALL LETTER E WITH DIAERESIS\\ EC&ě&236&LATIN SMALL LETTER I WITH GRAVE\\ ED&í&237&LATIN SMALL LETTER I WITH ACUTE\\ EE&î&238&LATIN SMALL LETTER I WITH CIRCUMFLEX\\ EF&ď&239&LATIN SMALL LETTER I WITH DIAERESIS\\ F0&đ&240&LATIN SMALL LETTER ETH\\ F1&ń&241&LATIN SMALL LETTER N WITH TILDE\\ F2&ň&242&LATIN SMALL LETTER O WITH GRAVE\\ F3&ó&243&LATIN SMALL LETTER O WITH ACUTE\\ F4&ô&244&LATIN SMALL LETTER O WITH CIRCUMFLEX\\ F5&ő&245&LATIN SMALL LETTER O WITH TILDE\\ F6&ö&246&LATIN SMALL LETTER O WITH DIAERESIS\\ F7&$÷$&247&DIVISION SIGN\\ F8&ř&248&LATIN SMALL LETTER O WITH STROKE\\ F9&ů&249&LATIN SMALL LETTER U WITH GRAVE\\ FA&ú&250&LATIN SMALL LETTER U WITH ACUTE\\ FB&ű&251&LATIN SMALL LETTER U WITH CIRCUMFLEX\\ FC&ü&252&LATIN SMALL LETTER U WITH DIAERESIS\\ FD&ý&253&LATIN SMALL LETTER Y WITH ACUTE\\ FE&ţ&254&LATIN SMALL LETTER THORN\\ FF&˙&255&LATIN SMALL LETTER Y WITH DIAERESIS\\ \end{tabular} \end{document} latex2rtf-2.3.18/test/bib_style.tex0000777000175000017500000004446513050672360017417 0ustar wilfriedwilfried\def\thefootnote{}%Remove footnote numbering \documentclass[12pt,a4paper]{article} \usepackage{graphicx} \usepackage{setspace} \usepackage[sort&compress]{natbib} \doublespacing \newif\iflatextortf \bibstyle{nature} \addtolength{\topmargin}{-1cm} \addtolength{\textheight}{3cm} \addtolength{\oddsidemargin}{-1cm} \addtolength{\textwidth}{2cm} \begin{document} {\noindent\bf This is the title to a fake manuscript} {\raggedright\noindent Joe Bloggs\textsuperscript{1,*}, Oregano Marjoram\textsuperscript{2} \vskip 10pt\noindent% \hfil\break % \textsuperscript{1}Naritasan Shinshoji Temple, 1 Narita, Narita City, Chiba 113-0032, Japan \footnote{% \textsuperscript{*}Also at: Royal Botanic Gardens, Kew, Richmond, Surrey TW9 3AB, UK } \vskip 5pt\noindent% % \textsuperscript{2}Royal Botanic Gardens, Kew, Richmond, Surrey TW9 3AB, UK \vskip 5pt\noindent% Manuscript for submission to {\em Nature}: May 12, 2010; revised Oct. 13, 2010. \vskip 10pt\noindent \doublespacing } {\bf According to the handbook of van Leunen\citep{Birch1952, Stevenson1981}, this paragraph---and certainly this section---should be longer than one sentence \citep{FearnLoper1981}. According to the handbook of van Leunen, this paragraph---and certainly this This may have a seismically observable signal. } Here we see if the reference\citep{Stevenson1981, Woodetal2006} to the Narendra article comes out OK, in particular, with volume, number \& pages. The necessary information for those who would use BibTeX is available in the 1988 document of Prof.\ Patashnik\citep{Rubieetal2004, Ozawaetal2008, Frostetal2010, HiltyCrafts1952}. Interested readers who can read French may also want to read Poussin's proof\citep{LayYoung1990, Garneroetal1993, Tanaka2007, AlexandrakisEaton2010}, though it has nothing at all to do with BibTeX. \bigskip\noindent {\bf Methods summary}. Data are from the Sacred Place of Bando Fudasho Kannon number 8, to which believers from far and near visit to pay homage. This place is dedicated to the Eleven-headed Kanzeon bosatsu. Designated as Chiba Prefectural Tangible Cultural Asset. %%\bibliography{bib_style} \begin{thebibliography}{10} \expandafter\ifx\csname url\endcsname\relax \def\url#1{\texttt{#1}}\fi \expandafter\ifx\csname urlprefix\endcsname\relax\def\urlprefix{URL }\fi \providecommand{\bibinfo}[2]{#2} \providecommand{\eprint}[2][]{\url{#2}} \bibitem{Birch1952} \bibinfo{author}{Birch, F.} \newblock \bibinfo{title}{{Elasticity and constitution of the Earth's interior}}. \newblock \emph{\bibinfo{journal}{J. Geophys. Res.}} \textbf{\bibinfo{volume}{57}}, \bibinfo{pages}{227--286} (\bibinfo{year}{1952}). \bibitem{Stevenson1981} \bibinfo{author}{Stevenson, D.~J.} \newblock \bibinfo{title}{{Models of the Earth's core}}. \newblock \emph{\bibinfo{journal}{Science}} \textbf{\bibinfo{volume}{214}}, \bibinfo{pages}{611--619} (\bibinfo{year}{1981}). \bibitem{FearnLoper1981} \bibinfo{author}{Fearn, D.~R.} \& \bibinfo{author}{Loper, D.~E.} \newblock \bibinfo{title}{{Compositional convection and stratification of Earth's core}}. \newblock \emph{\bibinfo{journal}{Nature}} \textbf{\bibinfo{volume}{289}}, \bibinfo{pages}{393--394} (\bibinfo{year}{1981}). \bibitem{Woodetal2006} \bibinfo{author}{Wood, B.~J.}, \bibinfo{author}{Walter, M.~J.} \& \bibinfo{author}{Wade, J.} \newblock \bibinfo{title}{{Accretion of the Earth and segregation of its core}}. \newblock \emph{\bibinfo{journal}{Nature}} \textbf{\bibinfo{volume}{441}}, \bibinfo{pages}{825--833} (\bibinfo{year}{2006}). \bibitem{Rubieetal2004} \bibinfo{author}{Rubie, D.~C.}, \bibinfo{author}{Gessmann, C.~K.} \& \bibinfo{author}{Frost, D.~J.} \newblock \bibinfo{title}{{Partitioning of oxygen during core formation on the Earth and Mars}}. \newblock \emph{\bibinfo{journal}{Nature}} \textbf{\bibinfo{volume}{429}}, \bibinfo{pages}{58--61} (\bibinfo{year}{2004}). \bibitem{Ozawaetal2008} \bibinfo{author}{Ozawa, H.} \emph{et~al.} \newblock \bibinfo{title}{{Chemical equilibrium between ferropericlase and molten iron to 134 GPa and implications for iron content at the bottom of the mantle}}. \newblock \emph{\bibinfo{journal}{Geophys. Res. Lett.}} \textbf{\bibinfo{volume}{34}}, \bibinfo{pages}{doi:10.1029/2007GL032648} (\bibinfo{year}{2008}). \bibitem{Frostetal2010} \bibinfo{author}{Frost, D.~J.} \emph{et~al.} \newblock \bibinfo{title}{{The partitioning of oxygen between the Earth's mantle and core}}. \newblock \emph{\bibinfo{journal}{J. Geophys. Res.}} \textbf{\bibinfo{volume}{115}}, \bibinfo{pages}{doi:10.1029/2009JB006302} (\bibinfo{year}{2010}). \bibitem{HiltyCrafts1952} \bibinfo{author}{Hilty, D.~C.} \& \bibinfo{author}{Crafts, W.} \newblock \bibinfo{title}{{Liquidus surface of the Fe-S-O system}}. \newblock \emph{\bibinfo{journal}{J. Metals (Trans. AIME)}} \textbf{\bibinfo{volume}{4}}, \bibinfo{pages}{1307--1312} (\bibinfo{year}{1952}). \bibitem{LayYoung1990} \bibinfo{author}{Lay, T.} \& \bibinfo{author}{Young, C.} \newblock \bibinfo{title}{{The stably-stratified outermost core revisited}}. \newblock \emph{\bibinfo{journal}{Geophys. Res. Lett.}} \textbf{\bibinfo{volume}{17}}, \bibinfo{pages}{2001--2004} (\bibinfo{year}{1990}). \bibitem{Garneroetal1993} \bibinfo{author}{Garnero, E.~J.}, \bibinfo{author}{Helmberger, D.~V.} \& \bibinfo{author}{Grand, S.~P.} \newblock \bibinfo{title}{{Constraining outermost core velocity with {S$m$KS} waves}}. \newblock \emph{\bibinfo{journal}{Geophys. Res. Lett.}} \textbf{\bibinfo{volume}{20}}, \bibinfo{pages}{2463--2466} (\bibinfo{year}{1993}). \bibitem{Tanaka2007} \bibinfo{author}{Tanaka, S.} \newblock \bibinfo{title}{{Possibility of a low P-wave velocity layer in the outermost core from global {S$m$KS} waveforms}}. \newblock \emph{\bibinfo{journal}{Earth Planet. Sci. Lett.}} \textbf{\bibinfo{volume}{259}}, \bibinfo{pages}{486--499} (\bibinfo{year}{2007}). \bibitem{AlexandrakisEaton2010} \bibinfo{author}{Alexandrakis, C.} \& \bibinfo{author}{Eaton, D.~W.} \newblock \bibinfo{title}{{Precise seismic-wave velocity atop Earth's core: No evidence for outer-core stratification}}. \newblock \emph{\bibinfo{journal}{Phys. Earth Planet. Inter.}} \textbf{\bibinfo{volume}{180}}, \bibinfo{pages}{59--65} (\bibinfo{year}{2010}). \bibitem{DziewonskiAnderson1981} \bibinfo{author}{Dziewonski, A.} \& \bibinfo{author}{Anderson, D.~L.} \newblock \bibinfo{title}{{Preliminary reference Earth model}}. \newblock \emph{\bibinfo{journal}{Phys. Earth Planet. Inter.}} \textbf{\bibinfo{volume}{25}}, \bibinfo{pages}{297--356} (\bibinfo{year}{1981}). \bibitem{HelffrichKaneshima2004} \bibinfo{author}{Helffrich, G.} \& \bibinfo{author}{Kaneshima, S.} \newblock \bibinfo{title}{{Seismological constraints on core composition from Fe-O-S liquid immiscibility}}. \newblock \emph{\bibinfo{journal}{Science}} \textbf{\bibinfo{volume}{306}}, \bibinfo{pages}{2239--2242} (\bibinfo{year}{2004}). \bibitem{MastersGubbins2003} \bibinfo{author}{Masters, G.} \& \bibinfo{author}{Gubbins, D.} \newblock \bibinfo{title}{{On the resolution of density within the Earth}}. \newblock \emph{\bibinfo{journal}{Phys. Earth Planet. Inter.}} \textbf{\bibinfo{volume}{140}}, \bibinfo{pages}{159--167} (\bibinfo{year}{2003}). \bibitem{Loper2000} \bibinfo{author}{Loper, D.~E.} \newblock \bibinfo{title}{{A model of the dynamical structure of the Earth's outer core}}. \newblock \emph{\bibinfo{journal}{Phys. Earth Planet. Inter.}} \textbf{\bibinfo{volume}{117}}, \bibinfo{pages}{179--196} (\bibinfo{year}{2000}). \bibitem{Braginsky1993} \bibinfo{author}{Braginsky, S.~I.} \newblock \bibinfo{title}{{MAC-Oscillations of the Hidden Ocean of the Core}}. \newblock \emph{\bibinfo{journal}{J. Geomag. Geoelectr.}} \textbf{\bibinfo{volume}{45}}, \bibinfo{pages}{1517--1538} (\bibinfo{year}{1993}). \bibitem{Gubbinsetal1982} \bibinfo{author}{Gubbins, D.}, \bibinfo{author}{Thomson, C.} \& \bibinfo{author}{Whaler, K.} \newblock \bibinfo{title}{{Stable regions in the earths liquid core}}. \newblock \emph{\bibinfo{journal}{Geophys. J. R. astron. Soc.}} \textbf{\bibinfo{volume}{68}}, \bibinfo{pages}{241--251} (\bibinfo{year}{1982}). \bibitem{ListerBuffett1998} \bibinfo{author}{Lister, J.~R.} \& \bibinfo{author}{Buffett, B.~A.} \newblock \bibinfo{title}{{Stratification of the outer core at the core-mantle boundary}}. \newblock \emph{\bibinfo{journal}{Phys. Earth Planet. Inter.}} \textbf{\bibinfo{volume}{105}}, \bibinfo{pages}{5--19} (\bibinfo{year}{1998}). \bibitem{RoseBrenan2001} \bibinfo{author}{Rose, L.~A.} \& \bibinfo{author}{Brenan, J.~M.} \newblock \bibinfo{title}{{Wetting Properties of Fe-Ni-Co-Cu-O-S Melts against Olivine: Implications for Sulfide Melt Mobility}}. \newblock \emph{\bibinfo{journal}{Econ. Geol.}} \textbf{\bibinfo{volume}{96}}, \bibinfo{pages}{145--157} (\bibinfo{year}{2001}). \bibitem{Usselman1975} \bibinfo{author}{Usselman, T.~M.} \newblock \bibinfo{title}{{Experimental approach to the state of the core: Part I. The liquidus relations of the Fe-rich portion of the Fe-Ni-S system from 30 to 100 kb}}. \newblock \emph{\bibinfo{journal}{Am. J. Sci.}} \textbf{\bibinfo{volume}{275}}, \bibinfo{pages}{278--290} (\bibinfo{year}{1975}). \bibitem{KilburnWood1997} \bibinfo{author}{Kilburn, M.~R.} \& \bibinfo{author}{Wood, B.~J.} \newblock \bibinfo{title}{{Metal-silicate partitioning and the incompatibility of S and Si during core formation}}. \newblock \emph{\bibinfo{journal}{Earth Planet. Sci. Lett.}} \textbf{\bibinfo{volume}{152}}, \bibinfo{pages}{139--148} (\bibinfo{year}{1997}). \bibitem{BuffettSeagle2010} \bibinfo{author}{Buffett, B.~A.} \& \bibinfo{author}{Seagle, C.~T.} \newblock \bibinfo{title}{{Stratification of the top of the core due to chemical interactions with the mantle}}. \newblock \emph{\bibinfo{journal}{J. Geophys. Res.}} \textbf{\bibinfo{volume}{115}}, \bibinfo{pages}{doi:10.1029/2009JB006751} (\bibinfo{year}{2010}). \bibitem{Watsonetal2008} \bibinfo{author}{Watson, H.~C.}, \bibinfo{author}{Watson, E.~B.} \& \bibinfo{author}{Fei, Y.} \newblock \bibinfo{title}{{Diffusion of Au, Pd, Re, and P in FeNi alloys at High Pressure}}. \newblock \emph{\bibinfo{journal}{Geochim. Cosmochim. Acta}} \textbf{\bibinfo{volume}{72}}, \bibinfo{pages}{3550--3561} (\bibinfo{year}{2008}). \bibitem{Garmanyetal1979} \bibinfo{author}{Garmany, J.}, \bibinfo{author}{Orcutt, J.~A.} \& \bibinfo{author}{Parker, R.~L.} \newblock \bibinfo{title}{{Travel time inversion: a geometrical approach}}. \newblock \emph{\bibinfo{journal}{J. Geophys. Res.}} \textbf{\bibinfo{volume}{84}}, \bibinfo{pages}{3615--3622} (\bibinfo{year}{1979}). \bibitem{Mastersetal2000} \bibinfo{author}{Masters, G.}, \bibinfo{author}{Laske, G.}, \bibinfo{author}{Bolton, H.} \& \bibinfo{author}{Dziewonski, A.} \newblock \bibinfo{title}{{The relative behavior of shear velocity, bulk sound speed, and compressional velocity in the mantle: Implications for chemical and thermal structure}}. \newblock In \bibinfo{editor}{Karato, S.-I.}, \bibinfo{editor}{Forte, A.~M.}, \bibinfo{editor}{Liebermann, R.~C.}, \bibinfo{editor}{Masters, G.} \& \bibinfo{editor}{Stixrude, L.} (eds.) \emph{\bibinfo{booktitle}{{Earth's deep interior: Mineral physics and tomography from the atomic to the global scale}}}, vol. \bibinfo{volume}{117} of \emph{\bibinfo{series}{{Geophys. Mon.}}}, \bibinfo{pages}{63--87} (\bibinfo{publisher}{{Amer. Geophys. Un.}}, \bibinfo{year}{2000}). \bibitem{KennettEngdahl1991} \bibinfo{author}{Kennett, B. L.~N.} \& \bibinfo{author}{Engdahl, E.~R.} \newblock \bibinfo{title}{{Traveltimes for global earthquake location and phase identification}}. \newblock \emph{\bibinfo{journal}{Geophys. J. Int.}} \textbf{\bibinfo{volume}{105}}, \bibinfo{pages}{429--465} (\bibinfo{year}{1991}). \bibitem{MorelliDziewonski1993} \bibinfo{author}{Morelli, A.} \& \bibinfo{author}{Dziewonski, A.~M.} \newblock \bibinfo{title}{{Body wave traveltimes and a spherically symmetric P- and S-wave velocity model}}. \newblock \emph{\bibinfo{journal}{Geophys. J. Int.}} \textbf{\bibinfo{volume}{112}}, \bibinfo{pages}{178--194} (\bibinfo{year}{1993}). \bibitem{Kennettetal1995} \bibinfo{author}{Kennett, B. L.~N.}, \bibinfo{author}{Engdahl, E.~R.} \& \bibinfo{author}{Buland, R.} \newblock \bibinfo{title}{{Constraints on seismic velocities in the Earth from traveltimes}}. \newblock \emph{\bibinfo{journal}{Geophys. J. Int.}} \textbf{\bibinfo{volume}{126}}, \bibinfo{pages}{108--124} (\bibinfo{year}{1995}). \bibitem{Alfeetal2002} \bibinfo{author}{Alf\'{e}}, \bibinfo{author}{Price, G.~D.} \& \bibinfo{author}{Gillan, M.~J.} \newblock \bibinfo{title}{{Iron under Earth's core conditions: Liquid-state thermodynamics and high-pressure melting curve from ab initio calculations}}. \newblock \emph{\bibinfo{journal}{Phys. Rev. B}} \textbf{\bibinfo{volume}{65}}, \bibinfo{pages}{art. no. 165118} (\bibinfo{year}{2002}). \end{thebibliography} \bigskip\noindent {\bf Acknowledgements}. This work was supported by air travel from Flying Carpet Airlines. \bigskip\noindent {\bf Author Contributions}. Authors contributed equally to the project. \bigskip\noindent {\bf Competing Interests}. The authors declare no competing financial interests. \bigskip\noindent Figure 1. Experiment geometry. \hfil\break \bigskip\noindent Figure 2. Data and velocity profile. \bigskip\noindent Figure 3. Compositional profile. \section*{Methods.} \renewcommand{\thefigure}{S\arabic{figure}} \setcounter{figure}{0} \renewcommand{\thetable}{ST\arabic{table}} \renewcommand{\tablename}{} \setcounter{table}{0} \section*{Analysis} The web page http://www.cs.stir.ac.uk/~kjt/software/latex/showbst.html also illustrates several bibliography styles for easy comparison. Of the 44 styles listed above, the first 21 insert just a number in brackets at the point of citation [2], while items 22-37 use some variation of author/year [K.S.Narenda and K.Parthsarathy, 1990], and the rest use some idiosyncratic reference code \citep{EatonKendall2006, Kind1979} Some of the styles re-order the references in the bibliography in alphabetical order of author, while others list them in the order that they are first cited. Several of these styles are part of all LaTeX installations, and others can be downloaded from http://www.tug.org/tex-archive/biblio/bibtex/contrib/. Each is a file with the suffix .bst; for example, to use abbrvnat style, you must have the file abbrvnat.bst installed in your LaTeX directory, or in your current working directory, or anywhere where LaTeX can find it. Those dissatisfied with the 100+ styles available online can design their own, if they wish; see Oren Patashnik's Designing BibTeX Styles \citep{Andersonetal1993}. %%\bibliography{bib_style} \begin{thebibliography}{10} \setcounter{NAT@ctr}{30} \expandafter\ifx\csname url\endcsname\relax \def\url#1{\texttt{#1}}\fi \expandafter\ifx\csname urlprefix\endcsname\relax\def\urlprefix{URL }\fi \iflatextortf \relax \else \providecommand{\bibinfo}[2]{#2} \providecommand{\eprint}[2][]{\url{#2}} \fi \bibitem{Kind1979} \bibinfo{author}{Kind, R.} \newblock \bibinfo{title}{{Extensions of the reflectivity method for a buried source}}. \newblock \emph{\bibinfo{journal}{J. Geophys.}} \textbf{\bibinfo{volume}{45}}, \bibinfo{pages}{373--380} (\bibinfo{year}{1979}). \bibitem{EatonKendall2006} \bibinfo{author}{Eaton, D.~W.} \& \bibinfo{author}{Kendall, J.-M.} \newblock \bibinfo{title}{{Improving seismic resolution of outermost core structure by multichannel analysis and deconvolution of broadband SmKS phases}}. \newblock \emph{\bibinfo{journal}{Phys. Earth Planet. Inter.}} \textbf{\bibinfo{volume}{155}}, \bibinfo{pages}{104--119} (\bibinfo{year}{2006}). \bibitem{Boehler1992} \bibinfo{author}{Boehler, R.} \newblock \bibinfo{title}{{Melting of the Fe-FeO and the Fe-FeS systems at high-pressure - constraints on core temperatures}}. \newblock \emph{\bibinfo{journal}{Earth Planet. Sci. Lett.}} \textbf{\bibinfo{volume}{111}}, \bibinfo{pages}{217--227} (\bibinfo{year}{1992}). \bibitem{Boehler1993} \bibinfo{author}{Boehler, R.} \newblock \bibinfo{title}{{Temperatures in the earths core from melting-point measurements of iron at high static pressures}}. \newblock \emph{\bibinfo{journal}{Nature}} \textbf{\bibinfo{volume}{363}}, \bibinfo{pages}{534--536} (\bibinfo{year}{1993}). \bibitem{Svendsenetal1989} \bibinfo{author}{Svendsen, B.}, \bibinfo{author}{Anderson, W.~W.}, \bibinfo{author}{Ahrens, T.~J.} \& \bibinfo{author}{Bass, J.~D.} \newblock \bibinfo{title}{{Ideal Fe-FeS, Fe-FeO phase relations and Earth's core}}. \newblock \emph{\bibinfo{journal}{Phys. Earth Planet. Inter.}} \textbf{\bibinfo{volume}{55}}, \bibinfo{pages}{154--186} (\bibinfo{year}{1989}). \bibitem{Feietal1990} \bibinfo{author}{Fei, Y.}, \bibinfo{author}{Saxena, S.~K.} \& \bibinfo{author}{Navrotsky, A.} \newblock \bibinfo{title}{{Internally Consistent Thermodynamic Data and Equilibrium Phase Relations for Compounds in the System MgO-SiO2 at High Pressure and high temperature}}. \newblock \emph{\bibinfo{journal}{J. Geophys. Res.}} \textbf{\bibinfo{volume}{95}}, \bibinfo{pages}{6915--6928} (\bibinfo{year}{1990}). \bibitem{Andersonetal1992} \bibinfo{author}{Anderson, O.~L.}, \bibinfo{author}{Isaak, D.} \& \bibinfo{author}{Oda, H.} \newblock \bibinfo{title}{{High-temperature elastic constant data on minerals relevant to geophysics}}. \newblock \emph{\bibinfo{journal}{Rev. Geophys.}} \textbf{\bibinfo{volume}{30}}, \bibinfo{pages}{57--90} (\bibinfo{year}{1992}). \bibitem{BinaHelffrich1992} \bibinfo{author}{Bina, C.~R.} \& \bibinfo{author}{Helffrich, G.} \newblock \bibinfo{title}{{Calculation of elastic properties from thermodynamic equation of state principles}}. \newblock \emph{\bibinfo{journal}{Annu. Rev. Earth Planet. Sci.}} \textbf{\bibinfo{volume}{20}}, \bibinfo{pages}{527--552} (\bibinfo{year}{1992}). \bibitem{Morardetal2007} \bibinfo{author}{Morard, G.} \emph{et~al.} \newblock \bibinfo{title}{{Structure of eutectic Fe-FeS melts to pressures up to 17 GPa: Implications for planetary cores}}. \newblock \emph{\bibinfo{journal}{Earth Planet. Sci. Lett.}} \textbf{\bibinfo{volume}{263}}, \bibinfo{pages}{128--139} (\bibinfo{year}{2007}). \bibitem{Andersonetal1993} \bibinfo{author}{Anderson, O.~L.}, \bibinfo{author}{Oda, H.}, \bibinfo{author}{Chopelas, A.} \& \bibinfo{author}{Isaak, D.} \newblock \bibinfo{title}{{A Thermodynamic Theory of the Gr\"{u}neisen Ratio at Extreme Conditions: MgO as an Example}}. \newblock \emph{\bibinfo{journal}{Phys. Chem. Minerals}} \textbf{\bibinfo{volume}{19}}, \bibinfo{pages}{369--380} (\bibinfo{year}{1993}). \end{thebibliography} \end{document} latex2rtf-2.3.18/test/include.rtf0000644000175000017500000004201113664476467017060 0ustar wilfriedwilfried{\rtf1\ansi\uc1\deff0\deflang1024 {\fonttbl{\f0\fnil\fcharset0 Times New Roman;} {\f1\fnil\fcharset0 Arial;} {\f2\fnil\fcharset0 Arial;} {\f3\fnil\fcharset0 Courier New;} {\f4\fnil\fcharset0 Zapf Chancery;} {\f5\fnil\fcharset0 STIXGeneral;} {\f6\fnil\fcharset0 MS Gothic;} } {\colortbl; \red0\green0\blue0; \red0\green0\blue255; \red0\green255\blue255; \red0\green255\blue0; \red255\green0\blue255; \red255\green0\blue0; \red255\green255\blue0; \red255\green255\blue255; } {\stylesheet {\s0\qj\widctlpar\f0\fs20 \snext0 Normal;} {\cs10 \additive\ssemihidden Default Paragraph Font;} {\s1\qc\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 Part;} {\s2\ql\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 heading 1;} {\s3\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 2;} {\s4\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 3;} {\s5\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 4;} {\s6\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 5;} {\s7\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 6;} {\s8\qr\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext8 rightpar;} {\s9\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext9 centerpar;} {\s10\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext10 leftpar;} {\s11\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equation;} {\s12\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationNum;} {\s13\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlign;} {\s14\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlignNum;} {\s15\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArray;} {\s16\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArrayNum;} {\s17\ql\sb120\sa120\keep\widctlpar\f0\fs20 \sbasedon0\snext0 theorem;} {\s18\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 bitmapCenter;} {\s20\qc\sb240\sa240\b\f0\fs36 \sbasedon0\snext21 Title;} {\s21\qc\sa120\f0\fs20 \sbasedon0\snext0 author;} {\s22\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext22 footer;} {\s23\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext23 header;} {\s30\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 caption;} {\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext0 Figure;} {\s32\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext32 Table;} {\s33\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext33 Tabular;} {\s34\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext34 Tabbing;} {\s35\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext35 Quote;} {\s38\ql\widctlpar\f3\fs20 \snext38 verbatim;} {\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext46 List;} {\s47\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext47 List 1;} {\s50\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 latex picture;} {\s51\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 subfigure;} {\s61\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext62 bibheading;} {\s62\ql\fi-567\li567\sb0\sa0\f0\fs20 \sbasedon0\snext62 bibitem;} {\s64\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext64 endnotes;} {\s65\ql\fi-113\li397\lin397\f0\fs20 \sbasedon0\snext65 footnote text;} {\s66\qj\fi-170\li454\lin454\f0\fs20 \sbasedon0\snext66 endnote text;} {\cs62\super \additive\sbasedon10 footnote reference;} {\cs63\super \additive\sbasedon10 endnote reference;} {\s67\ql\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext67 acronym;} {\s70\qc\sa120\b\f0\fs20 \sbasedon0\snext71 abstract title;} {\s71\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext0 abstract;} {\s80\ql\sb240\sa120\keepn\f0\b\fs20 \sbasedon0\snext0 contents_heading;} {\s81\ql\li425\tqr\tldot\tx8222\sb240\sa60\keepn\f0\fs20\b \sbasedon0\snext82 toc 1;} {\s82\ql\li512\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext83 toc 2;} {\s83\ql\li1024\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext84 toc 3;} {\s84\ql\li1536\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext85 toc 4;} {\s85\ql\li2048\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 5;} {\s86\ql\li2560\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 6;} } {\info {\title Original file was include.tex} {\doccomm Created using latex2rtf 2.3.18 r1266 (released May 29, 2020) on Sat May 30 17:35:19 2020 } } {\footer\pard\plain\f0\fs20\qc\chpgn\par} \paperw12280\paperh15900\margl2680\margr2700\margt2540\margb1760\pgnstart0\widowctrl\qj\ftnbj\f0\aftnnar {\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi0 Most of this first page will be blank in RTF because we begin this file with an include file. We have a short message from our rtf text that will start on the next page.\par \page \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 This comment will only show up in the RTF conversion of a tex file.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 We return you to the normal latex file now. \par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 {\*\bkmkstart BMsection01}1{\*\bkmkend BMsection01} This is the first section in file {\f3 include.tex}\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 Here is some text to create a paragraph or two so that we can see if this works or not. It will be interesting to see if the labels work properly. As I create these testing files I realize that I need to add parsing support for {\b0\i0\scaps0\f3 \\input} and {\b0\i0\scaps0\f3 \\include} in the getSection function. Furthermore, after reading the {\plain L{\up5\fs16 A}T{\dn6 E}X}{} book, I see that {\b0\i0\scaps0\f3 \\include} files will all start on a new page. This is not the case for {\b0\i0\scaps0\f3 \\input} files. Here is a reference to the next section {\field{\*\fldinst{\lang1024 REF BMsection02 \\* MERGEFORMAT }}{\fldrslt{3}}} in this file, and one to the first subsection in the first include file {\f3 include1} {\field{\*\fldinst{\lang1024 REF BMsection11 \\* MERGEFORMAT }}{\fldrslt{1.1}}}. This is a reference {\field{\*\fldinst{\lang1024 REF BMsection31 \\* MERGEFORMAT }}{\fldrslt{2.0.1}}} to the first subsubsection in the file {\f3 include3} that is included by {\f3 include2}.\par \page \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 {\*\bkmkstart BMsection11}1.1{\*\bkmkend BMsection11} This is the first subsection from file {\f3 include1.tex}\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 Here is some text to create a paragraph or two so that we can see if this works or not. It will be interesting to see if the labels work properly. As I create these testing files I realize that I need to add parsing support for {\b0\i0\scaps0\f3 \\input} and {\b0\i0\scaps0\f3 \\include} in the getSection function. Furthermore, after reading the {\plain L{\up5\fs16 A}T{\dn6 E}X}{} book, I see that {\b0\i0\scaps0\f3 \\include} files will all start on a new page. This is not the case for {\b0\i0\scaps0\f3 \\input} files. Here is a reference to the next subsection {\field{\*\fldinst{\lang1024 REF BMsection12 \\* MERGEFORMAT }}{\fldrslt{1.2}}}.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 {\*\bkmkstart BMsection12}1.2{\*\bkmkend BMsection12} This is the second subsection from file {\f3 include1.tex}\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 Here is some text to create a paragraph or two so that we can see if this works or not. It will be interesting to see if the labels work properly. As I create these testing files I realize that I need to add parsing support for {\b0\i0\scaps0\f3 \\input} and {\b0\i0\scaps0\f3 \\include} in the getSection function. Furthermore, after reading the {\plain L{\up5\fs16 A}T{\dn6 E}X}{} book, I see that {\b0\i0\scaps0\f3 \\include} files will all start on a new page. This is not the case for {\b0\i0\scaps0\f3 \\input} files. Here is a reference to the previous subsection {\field{\*\fldinst{\lang1024 REF BMsection11 \\* MERGEFORMAT }}{\fldrslt{1.1}}}.\par \page \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 {\*\bkmkstart BMsection21}1.3{\*\bkmkend BMsection21} This is the first subsection in file {\f3 include2.tex}\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 Here is some text to create a paragraph or two so that we can see if this works or not. It will be interesting to see if the labels work properly. As I create these testing files I realize that I need to add parsing support for {\b0\i0\scaps0\f3 \\input} and {\b0\i0\scaps0\f3 \\include} in the getSection function. Furthermore, after reading the {\plain L{\up5\fs16 A}T{\dn6 E}X}{} book, I see that {\b0\i0\scaps0\f3 \\include} files will all start on a new page. This is not the case for {\b0\i0\scaps0\f3 \\input} files. Here is a reference to the next subsection {\field{\*\fldinst{\lang1024 REF BMsection22 \\* MERGEFORMAT }}{\fldrslt{1.4}}}.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 {\*\bkmkstart BMsection22}1.4{\*\bkmkend BMsection22} This is the second subsection in file {\f3 include2.tex}\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 Here is some text to create a paragraph or two so that we can see if this works or not. It will be interesting to see if the labels work properly. As I create these testing files I realize that I need to add parsing support for {\b0\i0\scaps0\f3 \\input} and {\b0\i0\scaps0\f3 \\include} in the getSection function. Furthermore, after reading the {\plain L{\up5\fs16 A}T{\dn6 E}X}{} book, I see that {\b0\i0\scaps0\f3 \\include} files will all start on a new page. This is not the case for {\b0\i0\scaps0\f3 \\input} files. Here is a reference to the previous subsection {\field{\*\fldinst{\lang1024 REF BMsection21 \\* MERGEFORMAT }}{\fldrslt{1.3}}}. Here is a reference to the first section in {\f3 include1.tex} {\field{\*\fldinst{\lang1024 REF BMsection11 \\* MERGEFORMAT }}{\fldrslt{1.1}}}.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Now we include another file from within an included file\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 {\*\bkmkstart BMsection3}2{\*\bkmkend BMsection3} Testing how including files within other files\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 The trick here is to test the various ways that files might be included within another file. \par \pard\plain\s5\ql\sb240\sa120\keepn\f0\b\fs24\sl240\slmult1 \sb120 \fi0 {\*\bkmkstart BMsection31}2.0.1{\*\bkmkend BMsection31} This is the first subsubsection from file {\f3 include3.tex}\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 Here is some text to create a paragraph or two so that we can see if this works or not. It will be interesting to see if the labels work properly. As I create these testing files I realize that I need to add parsing support for {\b0\i0\scaps0\f3 \\input} and {\b0\i0\scaps0\f3 \\include} in the getSection function. Furthermore, after reading the {\plain L{\up5\fs16 A}T{\dn6 E}X}{} book, I see that {\b0\i0\scaps0\f3 \\include} files will all start on a new page. This is not the case for {\b0\i0\scaps0\f3 \\input} files. Here is a reference to the next subsubsection {\field{\*\fldinst{\lang1024 REF BMsection32 \\* MERGEFORMAT }}{\fldrslt{2.0.2}}}.\par \pard\plain\s5\ql\sb240\sa120\keepn\f0\b\fs24\sl240\slmult1 \sb120 \fi0 {\*\bkmkstart BMsection32}2.0.2{\*\bkmkend BMsection32} This is the second subsubsection from file {\f3 include3.tex}\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 Here is some text to create a paragraph or two so that we can see if this works or not. It will be interesting to see if the labels work properly. As I create these testing files I realize that I need to add parsing support for {\b0\i0\scaps0\f3 \\input} and {\b0\i0\scaps0\f3 \\include} in the getSection function. Furthermore, after reading the {\plain L{\up5\fs16 A}T{\dn6 E}X}{} book, I see that {\b0\i0\scaps0\f3 \\include} files will all start on a new page. This is not the case for {\b0\i0\scaps0\f3 \\input} files. Here is a reference to the previous subsubsection {\field{\*\fldinst{\lang1024 REF BMsection31 \\* MERGEFORMAT }}{\fldrslt{2.0.1}}}. Here is a reference to the first subsection from {\f3 include1.tex} {\field{\*\fldinst{\lang1024 REF BMsection11 \\* MERGEFORMAT }}{\fldrslt{1.1}}}.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 This is the content following {\b0\i0\scaps0\f3 \\input\{include3\}}. There should be no pagebreak.\par \pard\plain\s5\ql\sb240\sa120\keepn\f0\b\fs24\sl240\slmult1 \sb120 \fi0 {\*\bkmkstart BMsection41}2.0.3{\*\bkmkend BMsection41} This is the first subsubsection from file {\f3 include4.tex}\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 Here is some text to create a paragraph or two so that we can see if this works or not. It will be interesting to see if the labels work properly. As I create these testing files I realize that I need to add parsing support for {\b0\i0\scaps0\f3 \\input} and {\b0\i0\scaps0\f3 \\include} in the getSection function. Furthermore, after reading the {\plain L{\up5\fs16 A}T{\dn6 E}X}{} book, I see that {\b0\i0\scaps0\f3 \\include} files will all start on a new page. This is not the case for {\b0\i0\scaps0\f3 \\input} files. Here is a reference to the next subsubsection {\field{\*\fldinst{\lang1024 REF BMsection42 \\* MERGEFORMAT }}{\fldrslt{2.0.4}}} and one in the next input file {\field{\*\fldinst{\lang1024 REF BMsection52 \\* MERGEFORMAT }}{\fldrslt{3.0.2}}}.\par \pard\plain\s5\ql\sb240\sa120\keepn\f0\b\fs24\sl240\slmult1 \sb120 \fi0 {\*\bkmkstart BMsection42}2.0.4{\*\bkmkend BMsection42} This is the second subsubsection from file {\f3 include4.tex}\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 Here is some text to create a paragraph or two so that we can see if this works or not. It will be interesting to see if the labels work properly. As I create these testing files I realize that I need to add parsing support for {\b0\i0\scaps0\f3 \\input} and {\b0\i0\scaps0\f3 \\include} in the getSection function. Furthermore, after reading the {\plain L{\up5\fs16 A}T{\dn6 E}X}{} book, I see that {\b0\i0\scaps0\f3 \\include} files will all start on a new page. This is not the case for {\b0\i0\scaps0\f3 \\input} files. Here is a reference to the previous subsubsection {\field{\*\fldinst{\lang1024 REF BMsection41 \\* MERGEFORMAT }}{\fldrslt{2.0.3}}}. Here is a reference to the first subsection from {\f3 include1.tex} {\field{\*\fldinst{\lang1024 REF BMsection11 \\* MERGEFORMAT }}{\fldrslt{1.1}}}. This is the content following {\b0\i0\scaps0\f3 \\input include4 }. There should be no pagebreak.\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 {\*\bkmkstart BMsection02}3{\*\bkmkend BMsection02} This is the second section in file {\f3 include.tex}\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 Here is some text to create a paragraph or two so that we can see if this works or not. It will be interesting to see if the labels work properly. As I create these testing files I realize that I need to add parsing support for {\b0\i0\scaps0\f3 \\input} and {\b0\i0\scaps0\f3 \\include} in the getSection function. Furthermore, after reading the {\plain L{\up5\fs16 A}T{\dn6 E}X}{} book, I see that {\b0\i0\scaps0\f3 \\include} files will all start on a new page. This is not the case for {\b0\i0\scaps0\f3 \\input} files. Here is a reference to the first subsection in {\f3 include2.tex} {\field{\*\fldinst{\lang1024 REF BMsection21 \\* MERGEFORMAT }}{\fldrslt{1.3}}}. Here is a reference to the first subsection in {\f3 include1.tex} {\field{\*\fldinst{\lang1024 REF BMsection11 \\* MERGEFORMAT }}{\fldrslt{1.1}}}. And finally one to the first section of this file {\field{\*\fldinst{\lang1024 REF BMsection01 \\* MERGEFORMAT }}{\fldrslt{1}}}.\par \pard\plain\s5\ql\sb240\sa120\keepn\f0\b\fs24\sl240\slmult1 \sb120 \fi0 {\*\bkmkstart BMsection51}3.0.5{\*\bkmkend BMsection51} This is the first subsubsection from file {\f3 include5.tex}\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 Here is a reference to the next subsubsection {\field{\*\fldinst{\lang1024 REF BMsection52 \\* MERGEFORMAT }}{\fldrslt{3.0.2}}} and one in the previous input file {\field{\*\fldinst{\lang1024 REF BMsection42 \\* MERGEFORMAT }}{\fldrslt{2.0.4}}}. Notice that the reference to the next subsubsection is 3.0.5 and not 3.0.1. This shows sections reset subsection counters, but not subsubsection counters. How bizarre!\par \pard\plain\s5\ql\sb240\sa120\keepn\f0\b\fs24\sl240\slmult1 \sb120 \fi0 {\*\bkmkstart BMsection52}3.0.6{\*\bkmkend BMsection52} This is the second subsubsection from file {\f3 include5.tex}\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 Furthermore, after reading the {\plain L{\up5\fs16 A}T{\dn6 E}X}{} book, I see that {\b0\i0\scaps0\f3 \\include} files will all start on a new page. This is not the case for {\b0\i0\scaps0\f3 \\input} files. Here is a reference to the previous subsubsection {\field{\*\fldinst{\lang1024 REF BMsection51 \\* MERGEFORMAT }}{\fldrslt{3.0.1}}}. Here is a reference to the first subsection from {\f3 include1.tex} {\field{\*\fldinst{\lang1024 REF BMsection11 \\* MERGEFORMAT }}{\fldrslt{1.1}}}. This is the content following {\b0\i0\scaps0\f3 \\input include5.tex}. There should be no pagebreak.\par }} }}}latex2rtf-2.3.18/test/fonts.rtf0000644000175000017500000003565013664476467016601 0ustar wilfriedwilfried{\rtf1\ansi\uc1\deff0\deflang1024 {\fonttbl{\f0\fnil\fcharset0 Times New Roman;} {\f1\fnil\fcharset0 Arial;} {\f2\fnil\fcharset0 Arial;} {\f3\fnil\fcharset0 Courier New;} {\f4\fnil\fcharset0 Zapf Chancery;} {\f5\fnil\fcharset0 STIXGeneral;} {\f6\fnil\fcharset0 MS Gothic;} } {\colortbl; \red0\green0\blue0; \red0\green0\blue255; \red0\green255\blue255; \red0\green255\blue0; \red255\green0\blue255; \red255\green0\blue0; \red255\green255\blue0; \red255\green255\blue255; } {\stylesheet {\s0\qj\widctlpar\f0\fs20 \snext0 Normal;} {\cs10 \additive\ssemihidden Default Paragraph Font;} {\s1\qc\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 Part;} {\s2\ql\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 heading 1;} {\s3\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 2;} {\s4\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 3;} {\s5\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 4;} {\s6\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 5;} {\s7\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 6;} {\s8\qr\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext8 rightpar;} {\s9\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext9 centerpar;} {\s10\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext10 leftpar;} {\s11\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equation;} {\s12\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationNum;} {\s13\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlign;} {\s14\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlignNum;} {\s15\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArray;} {\s16\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArrayNum;} {\s17\ql\sb120\sa120\keep\widctlpar\f0\fs20 \sbasedon0\snext0 theorem;} {\s18\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 bitmapCenter;} {\s20\qc\sb240\sa240\b\f0\fs36 \sbasedon0\snext21 Title;} {\s21\qc\sa120\f0\fs20 \sbasedon0\snext0 author;} {\s22\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext22 footer;} {\s23\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext23 header;} {\s30\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 caption;} {\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext0 Figure;} {\s32\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext32 Table;} {\s33\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext33 Tabular;} {\s34\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext34 Tabbing;} {\s35\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext35 Quote;} {\s38\ql\widctlpar\f3\fs20 \snext38 verbatim;} {\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext46 List;} {\s47\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext47 List 1;} {\s50\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 latex picture;} {\s51\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 subfigure;} {\s61\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext62 bibheading;} {\s62\ql\fi-567\li567\sb0\sa0\f0\fs20 \sbasedon0\snext62 bibitem;} {\s64\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext64 endnotes;} {\s65\ql\fi-113\li397\lin397\f0\fs20 \sbasedon0\snext65 footnote text;} {\s66\qj\fi-170\li454\lin454\f0\fs20 \sbasedon0\snext66 endnote text;} {\cs62\super \additive\sbasedon10 footnote reference;} {\cs63\super \additive\sbasedon10 endnote reference;} {\s67\ql\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext67 acronym;} {\s70\qc\sa120\b\f0\fs20 \sbasedon0\snext71 abstract title;} {\s71\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext0 abstract;} {\s80\ql\sb240\sa120\keepn\f0\b\fs20 \sbasedon0\snext0 contents_heading;} {\s81\ql\li425\tqr\tldot\tx8222\sb240\sa60\keepn\f0\fs20\b \sbasedon0\snext82 toc 1;} {\s82\ql\li512\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext83 toc 2;} {\s83\ql\li1024\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext84 toc 3;} {\s84\ql\li1536\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext85 toc 4;} {\s85\ql\li2048\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 5;} {\s86\ql\li2560\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 6;} } {\info {\title Original file was fonts.tex} {\doccomm Created using latex2rtf 2.3.18 r1266 (released May 29, 2020) on Sat May 30 17:35:19 2020 } } {\footer\pard\plain\f0\fs20\qc\chpgn\par} \paperw12280\paperh15900\margl2680\margr2700\margt2540\margb1760\pgnstart0\widowctrl\qj\ftnbj\f0\aftnnar {\pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 1 Font commands\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 First the trickiest bit. {\scaps0\b0\i This is in italics {\i0 this is emphasized} but this is italics and {\i0 this final bit is emphasized} but this is not.}\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 An easier test. {\i This is in italics {\i0\b0\scaps0 this is emphasized} but this is italics and {\i0\b0\scaps0 this final bit is emphasized} but this is not.}\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 This is roman, testing {\b0\i0\scaps0\f3 itshape} {\scaps0\i italics} more roman text. This is roman, testing {\b0\i0\scaps0\f3 \\begin\{itshape\}} {\scaps0\i italics} more roman text. This is roman, testing {\b0\i0\scaps0\f3 \\textit} {\i italics} more roman text.\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 2 Emphasize commands\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb180 \fi0 2.1 the em environment\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 Testing the {\b0\i0\scaps0\f3 \\em} environment by {\i emphasizing text and then {\i0 embedding another level inside} of the first level.}\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 this is some text {\i with some emphasized text } in the middle.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 {\i0\scaps0\b this is some bold text {\i with some emphasized text } in the middle.}\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 {\b this is some bold text {\i with some emphasized text } in the middle.}\par {\i \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 \scaps0\i this is some italic text {\i0 with some emphasized text } in the middle.}\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 2.2 the emph command\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 Next testing {\b0\i0\scaps0\f3 \\emph} by {\i emphasizing text and then {\i0\b0\scaps0 embedding another level inside} of the first level.}\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 this is some text {\i with some emphasized text} in the middle.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 {\i0\scaps0\b this is some bold text {\i with some emphasized text} in the middle.}\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 {\b this is some bold text {\i with some emphasized text} in the middle.}\par {\i \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 \scaps0\i this is some italic text {\i0\b0\scaps0 with some emphasized text} in the middle.}\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 2.3 the em command\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 First testing {\b0\i0\scaps0\f3 \\em} by {\i emphasizing text and then {\i0 embedding another level inside} of the first level.}\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 this is some text {\i with some emphasized text} in the middle.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 {\i0\scaps0\b this is some bold text {\i with some emphasized text} in the middle.}\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 {\b this is some bold text {\i with some emphasized text} in the middle.}\par {\i \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 \scaps0\i this is some italic text {\i0 with some emphasized text} in the middle.}\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 3 Miscellaneous\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 what about \scaps0\b0\i some italics \i0\scaps0\b some bold \i0\scaps0\b0\f0 followed by roman\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 {\scaps0\b0\i here is italics \i0\scaps0\b0\f3 followed by plain typewriter}\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 {\scaps0\b0\i here is italics \i0\scaps0\b0\f2 followed by plain sans serif}\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 {\b here is bold roman \i0\scaps0\b0\f2 followed by plain sans serif}\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 {\i0\scaps0\b here is bold roman {\f2 followed by bold sans serif}}\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 {\b {\i bold italics \i0\scaps0\b0\f2 followed by plain sans serif}}\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 {\b {\i bold italics {\f2 followed by bold italics sans serif}}}\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 4 Normal roman font\par {\pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Testing {\b0\i0\scaps0\f3 \\rm} by {\f2 sans serif text with {\i0\scaps0\b0\f0 some roman text} in the middle}. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Testing {\b0\i0\scaps0\f3 \\rm} by {\i italic text with {\i0\scaps0\b0\f0 some roman text} in the middle}. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Testing {\b0\i0\scaps0\f3 \\rm} by {\b bold text with {\i0\scaps0\b0\f0 some plain roman text} in the middle}. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Testing {\b0\i0\scaps0\f3 \\rm} by {\scaps small caps with some {\i0\scaps0\b0\f0 some plain roman text} in the middle}. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Testing {\b0\i0\scaps0\f3 \\textrm} by {\f2 sans serif text with {\f0 some roman text} in the middle}. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Testing {\b0\i0\scaps0\f3 \\textrm} by {\i italic text with {\f0 some italic roman text} in the middle}. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Testing {\b0\i0\scaps0\f3 \\textrm} by {\b bold text with {\f0 some bold roman text} in the middle}. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Testing {\b0\i0\scaps0\f3 \\textrm} by {\scaps small caps with some {\f0 some small caps roman text} in the middle}. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Testing {\b0\i0\scaps0\f3 \\rmfamily} by {\f2 sans serif text with {\f0 some roman text} in the middle}. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Testing {\b0\i0\scaps0\f3 \\rmfamily} by {\i italic text with {\f0 some italic roman text} in the middle}. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Testing {\b0\i0\scaps0\f3 \\rmfamily} by {\b bold text with {\f0 some bold roman text} in the middle}. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Testing {\b0\i0\scaps0\f3 \\rmfamily} by {\scaps small caps with some {\f0 some roman text} in the middle}. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab We also have math {{\i x}+{\i y}={\f0 {\i t}{\i r}{\i u}{\i t}{\i h}}}. \par }\pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb300 \fi0 5 Normal sans serif font\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 This is some text. {\i This text is emphasized} {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Testing {\b0\i0\scaps0\f3 \\sf} by {\f0 roman text with {\i0\scaps0\b0\f2 some plain sans serif text} in the middle}. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Testing {\b0\i0\scaps0\f3 \\sf} by {\i italic text with {\i0\scaps0\b0\f2 some plain sans serif text} in the middle}. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Testing {\b0\i0\scaps0\f3 \\sf} by {\b bold text with {\i0\scaps0\b0\f2 some plain sans serif text} in the middle}. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Testing {\b0\i0\scaps0\f3 \\sf} by {\scaps small caps with some {\i0\scaps0\b0\f2 some plain sans serif text} in the middle}. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Testing {\b0\i0\scaps0\f3 \\textsf} by {\f0 roman text with {\f2 some sans serif text} in the middle}. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Testing {\b0\i0\scaps0\f3 \\textsf} by {\i italic text with {\f2 some italic sans serif text} in the middle}. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Testing {\b0\i0\scaps0\f3 \\textsf} by {\b bold text with {\f2 some bold sans serif text} in the middle}. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Testing {\b0\i0\scaps0\f3 \\textsf} by {\scaps small caps with some {\f2 some small caps sans serif text} in the middle}. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Testing {\b0\i0\scaps0\f3 \\sffamily} by {\f0 roman text with {\f2 some sans serif text} in the middle}. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Testing {\b0\i0\scaps0\f3 \\sffamily} by {\i italic text with {\f2 some italic sans serif text} in the middle}. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Testing {\b0\i0\scaps0\f3 \\sffamily} by {\b bold text with {\f2 some bold sans serif text} in the middle}. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Testing {\b0\i0\scaps0\f3 \\sffamily} by {\scaps small caps with some {\f2 some small caps sans serif text} in the middle}. \par }}} }}}latex2rtf-2.3.18/test/enc_cp1251.tex0000777000175000017500000001157213050672360017174 0ustar wilfriedwilfried\documentclass[10pt]{article} \usepackage[russian]{babel} \usepackage{textcomp} \usepackage[cp1251]{inputenc} \begin{document} \begin{center} \begin{tabular}{ccrl} 80&€&402&CYRILLIC CAPITAL LETTER DJE\\ 81&&403&CYRILLIC CAPITAL LETTER GJE\\ 82&‚&201A&SINGLE LOW-9 QUOTATION MARK\\ 83&ƒ&453&CYRILLIC SMALL LETTER GJE\\ 84&„&201E&DOUBLE LOW-9 QUOTATION MARK\\ 85&…&2026&HORIZONTAL ELLIPSIS\\ 86&†&2020&DAGGER\\ 87&‡&2021&DOUBLE DAGGER\\ 88&ˆ&20AC&EURO SIGN\\ 89&‰&2030&PER MILLE SIGN\\ 8A&Š&409&CYRILLIC CAPITAL LETTER LJE\\ 8B&‹&2039&SINGLE LEFT-POINTING ANGLE QUOTATION MARK\\ 8C&Œ&40A&CYRILLIC CAPITAL LETTER NJE\\ 8D&&40C&CYRILLIC CAPITAL LETTER KJE\\ 8E&Ž&40B&CYRILLIC CAPITAL LETTER TSHE\\ 8F&&40F&CYRILLIC CAPITAL LETTER DZHE\\ 90&&452&CYRILLIC SMALL LETTER DJE\\ 91&‘&2018&LEFT SINGLE QUOTATION MARK\\ 92&’&2019&RIGHT SINGLE QUOTATION MARK\\ 93&“&201C&LEFT DOUBLE QUOTATION MARK\\ 94&”&201D&RIGHT DOUBLE QUOTATION MARK\\ 95&•&2022&BULLET\\ 96&–&2013&EN DASH\\ 97&—&2014&EM DASH\\ 99&™&2122&TRADE MARK SIGN\\ 9A&š&459&CYRILLIC SMALL LETTER LJE\\ 9B&›&203A&SINGLE RIGHT-POINTING ANGLE QUOTATION MARK\\ 9C&œ&45A&CYRILLIC SMALL LETTER NJE\\ 9D&&45C&CYRILLIC SMALL LETTER KJE\\ 9E&ž&45B&CYRILLIC SMALL LETTER TSHE\\ 9F&Ÿ&45F&CYRILLIC SMALL LETTER DZHE\\ \end{tabular} \pagebreak \begin{tabular}{cccl} A0& &A0&NO-BREAK SPACE\\ A1&Ą&40E&CYRILLIC CAPITAL LETTER SHORT U\\ A2&˘&45E&CYRILLIC SMALL LETTER SHORT U\\ A3&Ł&408&CYRILLIC CAPITAL LETTER JE\\ A4&¤&A4&CURRENCY SIGN\\ A5&Ľ&490&CYRILLIC CAPITAL LETTER GHE WITH UPTURN\\ A6&Ś&A6&BROKEN BAR\\ A7&§&A7&SECTION SIGN\\ A8&¨&401&CYRILLIC CAPITAL LETTER IO\\ A9&Š&A9©RIGHT SIGN\\ AA&Ş&404&CYRILLIC CAPITAL LETTER UKRAINIAN IE\\ AB&Ť&AB&LEFT-POINTING DOUBLE ANGLE QUOTATION MARK\\ AC&$Ź$&AC&NOT SIGN\\ AD&­&AD&SOFT HYPHEN\\ AE&Ž&AE®ISTERED SIGN\\ AF&Ż&407&CYRILLIC CAPITAL LETTER YI\\ B0&°&B0&DEGREE SIGN\\ B1&$ą$&B1&PLUS-MINUS SIGN\\ B2&˛&406&CYRILLIC CAPITAL LETTER BYELORUSSIAN-UKRAINIAN I\\ B3&ł&456&CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I\\ B4&´&491&CYRILLIC SMALL LETTER GHE WITH UPTURN\\ B5&$ľ$&B5&MICRO SIGN\\ B6&ś&B6&PILCROW SIGN\\ B7&ˇ&B7&MIDDLE DOT\\ B8&¸&451&CYRILLIC SMALL LETTER IO\\ B9&š&2116&NUMERO SIGN\\ BA&ş&454&CYRILLIC SMALL LETTER UKRAINIAN IE\\ BB&ť&BB&RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK\\ BC&ź&458&CYRILLIC SMALL LETTER JE\\ BD&˝&405&CYRILLIC CAPITAL LETTER DZE\\ BE&ž&455&CYRILLIC SMALL LETTER DZE\\ BF&ż&457&CYRILLIC SMALL LETTER YI\\ \end{tabular} \pagebreak \begin{tabular}{cccl} C0&Ŕ&410&CYRILLIC CAPITAL LETTER A\\ C1&Á&411&CYRILLIC CAPITAL LETTER BE\\ C2&Â&412&CYRILLIC CAPITAL LETTER VE\\ C3&Ă&413&CYRILLIC CAPITAL LETTER GHE\\ C4&Ä&414&CYRILLIC CAPITAL LETTER DE\\ C5&Ĺ&415&CYRILLIC CAPITAL LETTER IE\\ C6&Ć&416&CYRILLIC CAPITAL LETTER ZHE\\ C7&Ç&417&CYRILLIC CAPITAL LETTER ZE\\ C8&Č&418&CYRILLIC CAPITAL LETTER I\\ C9&É&419&CYRILLIC CAPITAL LETTER SHORT I\\ CA&Ę&41A&CYRILLIC CAPITAL LETTER KA\\ CB&Ë&41B&CYRILLIC CAPITAL LETTER EL\\ CC&Ě&41C&CYRILLIC CAPITAL LETTER EM\\ CD&Í&41D&CYRILLIC CAPITAL LETTER EN\\ CE&Î&41E&CYRILLIC CAPITAL LETTER O\\ CF&Ď&41F&CYRILLIC CAPITAL LETTER PE\\ D0&Đ&420&CYRILLIC CAPITAL LETTER ER\\ D1&Ń&421&CYRILLIC CAPITAL LETTER ES\\ D2&Ň&422&CYRILLIC CAPITAL LETTER TE\\ D3&Ó&423&CYRILLIC CAPITAL LETTER U\\ D4&Ô&424&CYRILLIC CAPITAL LETTER EF\\ D5&Ő&425&CYRILLIC CAPITAL LETTER HA\\ D6&Ö&426&CYRILLIC CAPITAL LETTER TSE\\ D7&×&427&CYRILLIC CAPITAL LETTER CHE\\ D8&Ř&428&CYRILLIC CAPITAL LETTER SHA\\ D9&Ů&429&CYRILLIC CAPITAL LETTER SHCHA\\ DA&Ú&42A&CYRILLIC CAPITAL LETTER HARD SIGN\\ DB&Ű&42B&CYRILLIC CAPITAL LETTER YERU\\ DC&Ü&42C&CYRILLIC CAPITAL LETTER SOFT SIGN\\ DD&Ý&42D&CYRILLIC CAPITAL LETTER E\\ DE&Ţ&42E&CYRILLIC CAPITAL LETTER YU\\ DF&ß&42F&CYRILLIC CAPITAL LETTER YA\\ \end{tabular} \pagebreak \begin{tabular}{cccl} E0&ŕ&430&CYRILLIC SMALL LETTER A\\ E1&á&431&CYRILLIC SMALL LETTER BE\\ E2&â&432&CYRILLIC SMALL LETTER VE\\ E3&ă&433&CYRILLIC SMALL LETTER GHE\\ E4&ä&434&CYRILLIC SMALL LETTER DE\\ E5&ĺ&435&CYRILLIC SMALL LETTER IE\\ E6&ć&436&CYRILLIC SMALL LETTER ZHE\\ E7&ç&437&CYRILLIC SMALL LETTER ZE\\ E8&č&438&CYRILLIC SMALL LETTER I\\ E9&é&439&CYRILLIC SMALL LETTER SHORT I\\ EA&ę&43A&CYRILLIC SMALL LETTER KA\\ EB&ë&43B&CYRILLIC SMALL LETTER EL\\ EC&ě&43C&CYRILLIC SMALL LETTER EM\\ ED&í&43D&CYRILLIC SMALL LETTER EN\\ EE&î&43E&CYRILLIC SMALL LETTER O\\ EF&ď&43F&CYRILLIC SMALL LETTER PE\\ F0&đ&440&CYRILLIC SMALL LETTER ER\\ F1&ń&441&CYRILLIC SMALL LETTER ES\\ F2&ň&442&CYRILLIC SMALL LETTER TE\\ F3&ó&443&CYRILLIC SMALL LETTER U\\ F4&ô&444&CYRILLIC SMALL LETTER EF\\ F5&ő&445&CYRILLIC SMALL LETTER HA\\ F6&ö&446&CYRILLIC SMALL LETTER TSE\\ F7&÷&447&CYRILLIC SMALL LETTER CHE\\ F8&ř&448&CYRILLIC SMALL LETTER SHA\\ F9&ů&449&CYRILLIC SMALL LETTER SHCHA\\ FA&ú&44A&CYRILLIC SMALL LETTER HARD SIGN\\ FB&ű&44B&CYRILLIC SMALL LETTER YERU\\ FC&ü&44C&CYRILLIC SMALL LETTER SOFT SIGN\\ FD&ý&44D&CYRILLIC SMALL LETTER E\\ FE&ţ&44E&CYRILLIC SMALL LETTER YU\\ FF&˙&44F&CYRILLIC SMALL LETTER YA\\ \end{tabular} \end{center} \end{document} latex2rtf-2.3.18/test/misc4.rtf0000644000175000017500000101411613664476470016454 0ustar wilfriedwilfried{\rtf1\ansi\uc1\deff0\deflang1024 {\fonttbl{\f0\fnil\fcharset0 Times New Roman;} {\f1\fnil\fcharset0 Arial;} {\f2\fnil\fcharset0 Arial;} {\f3\fnil\fcharset0 Courier New;} {\f4\fnil\fcharset0 Zapf Chancery;} {\f5\fnil\fcharset0 STIXGeneral;} {\f6\fnil\fcharset0 MS Gothic;} } {\colortbl; \red0\green0\blue0; \red0\green0\blue255; \red0\green255\blue255; \red0\green255\blue0; \red255\green0\blue255; \red255\green0\blue0; \red255\green255\blue0; \red255\green255\blue255; } {\stylesheet {\s0\qj\widctlpar\f0\fs24 \snext0 Normal;} {\cs10 \additive\ssemihidden Default Paragraph Font;} {\s1\qc\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 Part;} {\s2\ql\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 heading 1;} {\s3\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 2;} {\s4\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 3;} {\s5\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 4;} {\s6\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 5;} {\s7\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 6;} {\s8\qr\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext8 rightpar;} {\s9\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext9 centerpar;} {\s10\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext10 leftpar;} {\s11\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equation;} {\s12\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationNum;} {\s13\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlign;} {\s14\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlignNum;} {\s15\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArray;} {\s16\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArrayNum;} {\s17\ql\sb120\sa120\keep\widctlpar\f0\fs20 \sbasedon0\snext0 theorem;} {\s18\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 bitmapCenter;} {\s20\qc\sb240\sa240\b\f0\fs36 \sbasedon0\snext21 Title;} {\s21\qc\sa120\f0\fs24 \sbasedon0\snext0 author;} {\s22\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext22 footer;} {\s23\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext23 header;} {\s30\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 caption;} {\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext0 Figure;} {\s32\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext32 Table;} {\s33\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext33 Tabular;} {\s34\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext34 Tabbing;} {\s35\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext35 Quote;} {\s38\ql\widctlpar\f3\fs24 \snext38 verbatim;} {\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext46 List;} {\s47\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext47 List 1;} {\s50\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 latex picture;} {\s51\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 subfigure;} {\s61\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext62 bibheading;} {\s62\ql\fi-567\li567\sb0\sa0\f0\fs20 \sbasedon0\snext62 bibitem;} {\s64\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext64 endnotes;} {\s65\ql\fi-113\li397\lin397\f0\fs24 \sbasedon0\snext65 footnote text;} {\s66\qj\fi-170\li454\lin454\f0\fs24 \sbasedon0\snext66 endnote text;} {\cs62\super \additive\sbasedon10 footnote reference;} {\cs63\super \additive\sbasedon10 endnote reference;} {\s67\ql\sb60\sa60\keepn\f0\fs24 \sbasedon0\snext67 acronym;} {\s70\qc\sa120\b\f0\fs24 \sbasedon0\snext71 abstract title;} {\s71\qj\li1024\ri1024\fi340\widctlpar\f0\fs24 \sbasedon0\snext0 abstract;} {\s80\ql\sb240\sa120\keepn\f0\b\fs20 \sbasedon0\snext0 contents_heading;} {\s81\ql\li425\tqr\tldot\tx8222\sb240\sa60\keepn\f0\fs24\b \sbasedon0\snext82 toc 1;} {\s82\ql\li512\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs24 \sbasedon0\snext83 toc 2;} {\s83\ql\li1024\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs24 \sbasedon0\snext84 toc 3;} {\s84\ql\li1536\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs24 \sbasedon0\snext85 toc 4;} {\s85\ql\li2048\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs24 \sbasedon0\snext86 toc 5;} {\s86\ql\li2560\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs24 \sbasedon0\snext86 toc 6;} } {\info {\title Original file was misc4.tex} {\doccomm Created using latex2rtf 2.3.18 r1266 (released May 29, 2020) on Sat May 30 17:35:20 2020 } } {\footer\pard\plain\f0\fs24\qc\chpgn\par} \paperw11960\paperh16900\margl1440\margr1300\margt2180\margb1700\pgnstart0\widowctrl\qj\ftnbj\f0\aftnnar {\pard\plain\s20\qc\sb240\sa240\b\f0\fs36\sl240\slmult1 \fi0 An introduction to {\plain T{\dn7 E}X} and friends\par \pard\plain\s21\qc\sa120\f0\fs24\sl240\slmult1 \fi360 Gavin Maltby\par \pard\plain\s21\qc\sa120\f0\fs24\sl240\slmult1 \fi360 November 1992\par \pard\plain\s80\ql\sb240\sa120\keepn\f0\b\fs24\sl240\slmult1 \fi0 Contents\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 \par {\field{\*\fldinst TOC \\o "1-3" }{\fldrslt }} \page \pard\plain\s80\ql\sb240\sa120\keepn\f0\b\fs24\sl240\slmult1 \sb60 \fi0 List of Tables\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 \par {\field{\*\fldinst TOC \\f t }{\fldrslt }} \page \pard\plain\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \sb60 \fi0 Chapter 1\par \pard\plain\s2\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \sb240 \fi0 Getting acquainted with {\plain T{\dn7 E}X}\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb240 \fi0 {\plain T{\dn7 E}X} is well known to be {\i the} typesetting package, and a vast cult of {\plain T{\dn7 E}X} lovers has evolved. But to the beginning {\plain T{\dn7 E}X} user, or to someone wondering if they should bother changing to {\plain T{\dn7 E}X}, it is often not clear what all the fuss is about. After all, are not both WordPerfect and Ventura Publisher capable of high quality output? Newcomers have often already seen what {\plain T{\dn7 E}X} is capable of (many books, journals, letters are now prepared with {\plain T{\dn7 E}X}) and so expect to find a tremendously powerful and friendly package. In fact they {\i do}, but that fact is well hidden in one\rquote s initial {\plain T{\dn7 E}X} experiences. In this chapter we describe a little of what makes {\plain T{\dn7 E}X} great, and why other packages cannot even begin to compete. Be warned that a little patience is required\emdash {\plain T{\dn7 E}X}\rquote s virtues are rather subtle to begin with. But when the penny drops, you will wonder how you ever put up with anything different.\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 1.1 The spirit of {\plain T{\dn7 E}X}\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 In order to really appreciate {\plain T{\dn7 E}X} one needs to get a feel for what I call the \ldblquote spirit\rdblquote of {\plain T{\dn7 E}X}. When {\plain T{\dn7 E}X} appears to be making me work overtime to achieve something that I think ought to be perfectly straightforward, consultation with the {\plain T{\dn7 E}X} spirit shows me the error of my ways.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 1.1.1 {\plain T{\dn7 E}X} is a typesetter, not a word-processor\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\plain T{\dn7 E}X} was designed with no limiting application in mind. It was intended to be able to prepare practically any document\emdash from a single page all-text letter to a full blown book with huge numbers of formulae, tables, figures etc. The size and the complexity of a {{\plain T{\dn7 E}X}}able document is limited only by hardware considerations. Furthermore, {\plain T{\dn7 E}X} seeks to achieve all this whilst setting typesetting standards of the highest order for itself. The expertise of generations of professional printers has been captured in {\plain T{\dn7 E}X}, and it has been taught all the tricks of the trade.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Historically, printers prepared a document by placing metal characters in a large tray and arranging and binding them to form a page. This was very precisely done, but the ultimate precision was limited because of the mechanical nature of things and by time considerations. {\plain T{\dn7 E}X} prepares a page in an analogous manner (putting your characters and formulae into \ldblquote boxes\rdblquote which are then \ldblquote glued\rdblquote together to form the page), but has the advantage of enormous precision because placement calculations are performed by computer. Indeed, {\plain T{\dn7 E}X}\rquote s internal unit (the \ldblquote scaled point\rdblquote ) is about one-hundredth of the wavelength of natural light!\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 \ldblquote But conventional word processors run on computers , too\rdblquote , you object. Yes, but their fundamental limitation is that they try to \ldblquote keep up\rdblquote with you and \ldblquote typeset\rdblquote your document as you type. This means that it can only make decisions at a local level (eg, it decides where to break a line just as you type the end of the line). {\plain T{\dn7 E}X}\rquote s secret is that it waits until you have typed the {\i whole} document before it typesets a single thing! This means that {\plain T{\dn7 E}X} can make decisions of a global nature in order to optimise the aesthetic appeal of your document. It has been taught what looks good and what looks bad (having been given a measure of the \ldblquote badness\rdblquote of various possibilities) and makes choices for your document that are designed to make it \ldblquote minimally bad\rdblquote .\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 But {\plain T{\dn7 E}X}\rquote s virtues run much deeper than that, which is just as well because it is possible to get satisfactory, though imperfect, results from some word processors. One of {\plain T{\dn7 E}X}\rquote s strongest points is its ability to typeset complicated formulae with ease. Not only does {\plain T{\dn7 E}X} make hundreds of special symbols easily accessible, it will lay them out for you in your formulae. It has been taught all the spacing, size, font, \u8230?conventions that printers have decided look best in typeset formulae. Although, of course, it doesn\rquote t understand any mathematics it knows the grammar of mathematics\emdash it recognises binary relations, binary operators, unary operators, etc. and has been taught how these parts should be set. It is consequently rather difficult to get an equation to look bad in {\plain T{\dn7 E}X}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Another advantage of compiling a document after it is typed is that cross-referencing can be done. You can label and refer back to chapters, sections, tables etc. by {\i name} rather than absolute number, and {\plain T{\dn7 E}X} will number and cross-reference these for you. Similarly, it will compile a table of contents, glossary, index and bibliography for you.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Essential to the spirit of {\plain T{\dn7 E}X} is that {\i it formats the document whilst you just take care of the content}, making for increased productivity. The cross-referencing just mentioned is just part of this. Many more labour-saving mechanisms are provided for through {\i style files}. These are generic descriptions of classes of documents, teaching {\plain T{\dn7 E}X} just how each class likes to be formatted. This is taught in terms of font preferences, default page sizes, placement of title, author, date, etc. For instance, a {\i0\scaps0\b0\f3 paper} style file could teach {\plain T{\dn7 E}X} that when typesetting a theorem it should embolden the part that states the theorem number and typeset the text of the theorem statement in slanted Roman typeface (as in many journals). The typist simply provides and indication that a theorem is being stated, and then types the text of the theorem {\i without} bothering to choose any fonts or do any formatting\emdash all that is done by the style file. Style files exist for all manner of document\emdash letters, articles, papers, books, proceedings, review articles, and so on.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 In addition to style files, there are {\i macro packages}. A {\i macro} is just a definition of a new {\plain T{\dn7 E}X} command in terms of existing ones. Don\rquote t think small when you think of macros! When typing a document that has a lot of repetition in it, say the same expression is used again and again in different different equations, you can define a macro in your document to abbreviate that expression. But macros can teach {\plain T{\dn7 E}X} how to typeset all sorts of complicated structures, not just parts of an equation. Many macro packages (files that are just collections of definitions) have been written to teach {\plain T{\dn7 E}X} all sorts of applications. There are specialist maths packages ({\plain {\i AmS}-T{\dn7 E}X}, {\plain {\i AmS}-L{\up6\fs19 A}T{\dn7 E}X}), general purpose packages ({\plain L{\up6\fs19 A}T{\dn7 E}X}), packages for setting tree diagrams, Feynmann diagrams, languages like Chinese, Arabic and Ancient Greek, orchestral scores, and many, many more. All these are freely available, a spin-off of the giant {\plain T{\dn7 E}X} cult.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Another facet of the design of {\plain T{\dn7 E}X} allows it to use practically {\i any} output device. In fact, {\plain T{\dn7 E}X} doesn\rquote t talk to any printers, screens, phototypesetters at all! Instead, when a document is compiled a {\i device independent} ({\i0\scaps0\b0\f3 .dvi}) is produced\emdash {\plain T{\dn7 E}X} does not compile with any particular output device in mind. Printer drivers are then invoked on this {\i0\scaps0\b0\f3 .dvi} file and, in consultation with the font data for that printer, produce output suitable for the particular device. You can choose an HP Laserjet driver, or an Apple LaserWriter driver, or a dot matrix driver etc. All use the same {\i0\scaps0\b0\f3 .dvi} file as input (and remember the material in there is set to enormous accuracy) and attempt to image that file on the particular device as faithfully as possible. If you are using a top of the line laser printer or phototypesetter, then {\plain T{\dn7 E}X}\rquote s massive internal precision will not be wasted. Alternatively, a dot matrix printer will give a coarse approximation of the ideal image that is suitable only for proof-reading. In addition to portability, these {\i0\scaps0\b0\f3 .dvi} files help ensure that there are very few printing surprises when you move from one device to another: how many times has your favourite word-processor made you reformat a document when you wish to change printers?\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 There are many other motivations one could cite for the superiority of {\plain T{\dn7 E}X}. But it is time that we started to get our hands dirty. One last comment: {\plain T{\dn7 E}X} was not designed to supplant secretaries and professional printers\emdash it was designed to aid them in their work and, in the words of the {\plain T{\dn7 E}X} designer Donald Knuth, allow them to \ldblquote go forward and create masterpieces of the publishing art\rdblquote .It also allows those who generate the material to be typeset\emdash mathematicians, physicists, computer scientists, etc\emdash to prepare their own documents in a language that is intimately linked to the language we use for writing such material.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 The novice reader will still have no idea of what a {\plain T{\dn7 E}X} source file looks like. Indeed, why do we keep referring to it as a {\i source file}? The fact of the matter is that {\plain T{\dn7 E}X} is essentially a {\i programming language}. Just as in any compiled language (e.g., Pascal, C) one prepares a source file and submits it to the compiler which attempts to produce an object file ({\i0\scaps0\b0\f3 .dvi} file in the {\plain T{\dn7 E}X} case). To learn {\plain T{\dn7 E}X} is to learn the command syntax of the commands that can be used in the source file.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 1.1.2 Typical {\plain T{\dn7 E}X} interfaces\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\plain T{\dn7 E}X} was designed to run on a multitude of computers. It is therefore the case that the documentation for {\plain T{\dn7 E}X} and its \ldblquote friends\rdblquote {\plain L{\up6\fs19 A}T{\dn7 E}X}, {\plain {\i AmS}-T{\dn7 E}X}, etc. is not computer specific. Only command syntax is described\emdash i.e., the content of your source file\emdash but few details of how to get from there to a printout are given. Those details are left to site-specific documents.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 The average user loses little in using {\plain T{\dn7 E}X} on, say, a PC rather than on a bigger machine. Indeed, compilation times on the new PCs begin to rival those on a Sun Sparc Station 2 (no slouch). Running on top of DOS can cause memory problems when very large documents are being prepared. That aside, the quality of the document is not affected because of the careful design of {\plain T{\dn7 E}X}\emdash whether you work on a a machine with massive floating point precision or a modest XT the {\i0\scaps0\b0\f3 .dvi} files produced on compilation will be identical; and when those files are submitted to printer equivalent printer drivers (say for an HP LaserJet III attached to a Sun in one case and a PC in the other) the output will be identical because the font information they draw on is identical.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 By the nature of {\plain T{\dn7 E}X} most time is spent editing the source document (before submitting it for compilation). No special interface is necessary here, you just use your favourite text editor (perhaps customising it to enhance {{\plain T{\dn7 E}X}}nical typing. Thus {\plain T{\dn7 E}X} user interfaces are usually small and simple, often even missing. One frequently uses {\plain T{\dn7 E}X} at command line level, just running the editor, compiler etc. as you need them. Sometimes a {{\plain T{\dn7 E}X}}shell program is present, which runs these for you when you choose various menu options.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Whatever the interface, there are just a few basic steps to preparing a document: {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 1.\tab Choose a document style to base your document on (e.g., letter, article). \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 2.\tab Glance through the material you have to type, and decide what definitions might be made to save you a lot of time. Also, decide on the overall structure of the prospective document (e.g., will the largest sectional unit be a chapter or a part?). If you are going to compose as you type, then pause a moment to think ahead and plan the structure of your document. The importance of this step cannot be overstressed, for it makes clear in {\i your} mind what you want from {\plain T{\dn7 E}X}. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 3.\tab Prepare your input file, specifying only the content and the logical structure (parts, sections, theorems,...) thereof and forgetting about formatting details. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 4.\tab Submit your input, or source, file to the {\plain T{\dn7 E}X} compiler for compilation of a {\i0\scaps0\b0\f3 .dvi} file. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 5.\tab If the compiler finds anything in your source file strongly objectionable, say incorrect command syntax, then return to editing. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 6.\tab Run a {\i previewer} to preview your compiled document on the screen. Resolution is only limited by your screen, and can be very good indeed on some modern monitors. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 7.\tab Go back to editing your document until glaring errors have been taken care of. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 8.\tab Make a printout of your compiled document, and check for those errors that you failed to notice on the screen. \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 Performing these steps may be effected through typing at the system prompt (barebones technique) or through choosing menu options in a {{\plain T{\dn7 E}X}}shell program. The latter will probably provide some conveniences to make your life easier.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 If you think this sounds like a lot of work, it is time that you consult with the {\plain T{\dn7 E}X} spirit! Sure your first couple of tries may be hesitant, but before long you\rquote ll find that you can take {\i less} time to prepare a document on {\plain T{\dn7 E}X} than on any other package.\par \page \pard\plain\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \fi0 Chapter 2\par \pard\plain\s2\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \sb240 \fi0 Getting started with {\plain L{\up6\fs19 A}T{\dn7 E}X}\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb480 \fi0 2.1 Why start with {\plain L{\up6\fs19 A}T{\dn7 E}X}?\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 To answer this question we must say a little more about some of the macro packages we mentioned earlier.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 The {\plain T{\dn7 E}X} typesetting system was designed by the eminent Stanford computer scientist Donald Knuth, on commission from the American Mathematical Society. It was designed with enormous care, to be ultimately powerful and maximally flexible. The enormous success of Knuth\rquote s design is apparent from the vast number of diverse applications {\plain T{\dn7 E}X} has found. In reading the following you must keep one thing clearly in mind: {\i there is only {\plain T{\dn7 E}X} language, and all the other packages whose names end in the suffix {-{\plain T{\dn7 E}X}} simply harness it\rquote s power via a whole lot of complicated macro definitions}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\plain T{\dn7 E}X} proper is a collection of around 300 so called {\i primitive} typesetting commands. These work at the very lowest level, affording enormous power. But to make this raw power manageable, some macros must be defined to tame raw {\plain T{\dn7 E}X} somewhat. The standard set of macros is called Plain {\plain T{\dn7 E}X}, and consists of about 600 macro definitions. It is clear that these definitions must be made in terms of {\plain T{\dn7 E}X} primitives, or in terms of previously made definitions. Plain {\plain T{\dn7 E}X}, however, is still no place for the timid. A strong working knowledge of {\plain T{\dn7 E}X} is still required to understand the ins and outs of Plain {\plain T{\dn7 E}X}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 In the few years after the initial {\plain T{\dn7 E}X} release (1982), the macro packages {\plain {\i AmS}-T{\dn7 E}X} and {\plain L{\up6\fs19 A}T{\dn7 E}X} were born. {\plain {\i AmS}-T{\dn7 E}X} was written by Michael Spivak, also on commission from the AMS. This package was designed to facilitate the preparation of the numerous books, journals, and review indices that fall under the auspices of the AMS and its affiliates. Married to the macro package was a style file\emdash the AMS preprint style. This was distributed along with the macro package, so that authors submitting to journals could use it in the preparation of their articles. The given style was based on the style used by the {\i Journal of the American Mathematical Society}, i.e., it conformed to their page sizes and typographical conventions. This meant that people around the world produced papers that were all based on the same style. The clever part is this: when a source file is submitted to a journal {\i other} than the {\i Journal of the AMS}, the journal staff simply substitute their style file for the AMS preprint style and the paper will appear completely different {\i with no other changes to the source code}! To create their style file, a journal just needed to tweak the standard AMS prepint style: for instance, the original preprint style places author addresses at the very end of a paper; If a journal wishes this to appear on the first page then they just modify their in-house version of the style file, and the change will be effected without having to change the file submitted by the author.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\plain L{\up6\fs19 A}T{\dn7 E}X} was written for more general usage. It lacks some of the mathematical finesse inherited by {\plain {\i AmS}-T{\dn7 E}X} from the vast experience of the AMS technical staff, but more than makes up for this in its ability to enhance the typesetting of letters, books, poetry, etc. {\plain L{\up6\fs19 A}T{\dn7 E}X} also scores high points for its enhanced command syntax.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 With {\plain {\i AmS}-T{\dn7 E}X} and {\plain L{\up6\fs19 A}T{\dn7 E}X} being released at around the same time (1984\endash 1985), there were born many {\plain {\i AmS}-T{\dn7 E}X} literate but {\plain L{\up6\fs19 A}T{\dn7 E}X} illiterate users, and conversely. {\plain L{\up6\fs19 A}T{\dn7 E}X} was easier to learn because of its more friendly syntax, and also provided powerful cross-referencing commands that {\plain {\i AmS}-T{\dn7 E}X} did not. So the AMS commissioned another project to furnish {\plain L{\up6\fs19 A}T{\dn7 E}X} users with the additional power of {\plain {\i AmS}-T{\dn7 E}X} while not compromising the {\plain L{\up6\fs19 A}T{\dn7 E}X} command syntax or cross-referencing commands. This resulted in the {\plain {\i AmS}-L{\up6\fs19 A}T{\dn7 E}X} macro package and associated style file for submission to journals.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\i That} is why we will kick off our {\plain T{\dn7 E}X} careers with {\plain L{\up6\fs19 A}T{\dn7 E}X}! It is easier to learn and provides many conveniences, and the user who requires additional mathematical typesetting prowess can easily move on to {\plain {\i AmS}-L{\up6\fs19 A}T{\dn7 E}X}. Much of what we say will be true for {\plain T{\dn7 E}X} itself, but we shall regard {\plain L{\up6\fs19 A}T{\dn7 E}X} as the lowest common-denominator. By far the majority of {\plain L{\up6\fs19 A}T{\dn7 E}X} and {\plain {\i AmS}-L{\up6\fs19 A}T{\dn7 E}X} users will never have to learn \ldblquote raw\rdblquote {\plain T{\dn7 E}X}, for they will be shielded from direct exposure by the numerous powerful macro packages. In the rare case that something way out of the ordinary is required, the local {\plain T{\dn7 E}X} guru can be consulted.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 \par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 2.2 {\plain L{\up6\fs19 A}T{\dn7 E}X} formats, and we compose\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 The {\i free form nature} of the input file is essential to the spirit of {\plain T{\dn7 E}X}. As we type, we do not concern ourselves with linebreaks and pagebreaks so much as the content of what we are typing. In fact, we\rquote ll see that {\plain T{\dn7 E}X} will choose nice line breaks even for bizarre looking input. This is just part of the concept of only having to describe the {\i logical} structure of the document to {\plain L{\up6\fs19 A}T{\dn7 E}X}, and not worry about nuisance-value formatting details. We inform {\plain L{\up6\fs19 A}T{\dn7 E}X} of the logical structure of our document by telling it when to begin a new paragraph, subsection, section, chapter, theorem, definition, remark, poem, list etc. When typing a particular element of the logical structure, we need pay little attention to how we lay our source file out.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 A consequence of this is that we have to go to a bit of effort to mess things up. Starting a new line, for instance, entails more than just pressing Return because {\plain L{\up6\fs19 A}T{\dn7 E}X} will just regard the next word you type as exactly that\emdash the next word in the paragraph. You have to specifically ask for a line to be terminated. Things like this may seem to be a bit of a nuisance, but it is a small price to pay for the automatic formatting that necessitated it. Further, such small inconveniences have been localised to rare events. I have, for instance, not once forced a new line up until this point in the present document.\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 2.3 Document styles\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 We have explained the concept of a document style during our discussion of the virtues of {\plain T{\dn7 E}X} and the discussion of {\plain {\i AmS}-T{\dn7 E}X}. It remains to name a few, and indicate where they would be used. One {\i always} has to choose a document style when preparing a document with {\plain L{\up6\fs19 A}T{\dn7 E}X}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 The basic document styles in {\plain L{\up6\fs19 A}T{\dn7 E}X} are {\i0\scaps0\b0\f3 letter}, {\i0\scaps0\b0\f3 article}, {\i0\scaps0\b0\f3 report}, and {\i0\scaps0\b0\f3 book}. Many more are available, but these few cover the majority of straightforward applications. This is because styles are not rigid\emdash you can impose your own parameter choices if you want. So one chooses the style that most closely approximates the document you have in mind, and performs some minor tweaks here and there. The {\i0\scaps0\b0\f3 article} style is used for documents that are to have the appearance of a journal or magazine article. The {\i0\scaps0\b0\f3 report} style is usually used for larger documents than the {\i0\scaps0\b0\f3 article} style. These styles really only differ in their choice of default page size, font, placement of title and author, sectional units, etc. and on how they format certain {\plain L{\up6\fs19 A}T{\dn7 E}X} constructs. You use the same {\plain L{\up6\fs19 A}T{\dn7 E}X} commands in each. Since the examples here will be small, we will choose to use the {\i0\scaps0\b0\f3 article} document style.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 There are a number of possible options with each document style. The syntax for choosing a document style follows. Don\rquote t worry if this leaves you with no idea of how to choose a document style, for we will soon be seeing some examples. Also, remember that an argument in square brackets is optional, and can omitted altogether (including the brackets). {\par \i0\scaps0\b0\f3 \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 \f3 \u92?documentstyle [{\i options}]\{{\i style}\} \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 where {\i style} is the main document style (eg {\i0\scaps0\b0\f3 report}) and the optional argument {\i options} is a list of document style options chosen from the following list: {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 {\i0\scaps0\b0\f3 11pt}\tab chooses 11-point as the default font size for the document, instead of the default 10-point. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 {\i0\scaps0\b0\f3 12pt}\tab chooses 12-point as the default font size. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 {\i0\scaps0\b0\f3 twoside}\tab formats output as left and right pages, as in a book. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 {\i0\scaps0\b0\f3 twocolumn}\tab produces two-column magazine like output. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 {\i0\scaps0\b0\f3 titlepage}\tab applies to the {\i0\scaps0\b0\f3 article} style only, causing the title and abstract to appear on a page each. \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 In fact there are many, many more document style options but we won\rquote t mention any more here.\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 2.4 Preparing a non-mathematical document\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 We assume that you have read the local guides to {\plain T{\dn7 E}X} at your site and have decided which system environment you want to work in. There you have been shown how to perform the steps required to produce a printed document from a {\plain L{\up6\fs19 A}T{\dn7 E}X} source file.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 2.4.1 Sentences and paragraphs\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 Let\rquote s create our very first {\plain L{\up6\fs19 A}T{\dn7 E}X} document, which will consist of just a few paragraphs.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 As mentioned above, paragraph input is free-form. You type the words and separate them by spaces so that {\plain L{\up6\fs19 A}T{\dn7 E}X} can distinguish between words. For these purposes, pressing Return is equivalent to inserting a space\emdash it does not indicate the end of a line, but the end of a word. You tell {\plain L{\up6\fs19 A}T{\dn7 E}X} that a sentence has ended by typing a period followed by a space. {\plain L{\up6\fs19 A}T{\dn7 E}X} ignores extra spaces; typing three or three thousand will get you no more space between the words that these spaces separate than typing just one space. Finally, you tell {\plain L{\up6\fs19 A}T{\dn7 E}X} that a paragraph has ended by leaving one or more blank lines. In summary: {\plain L{\up6\fs19 A}T{\dn7 E}X} concerns itself only with the logical concepts end-of-word, end-of-sentence, and end-of-paragraph. Sounds complicated? An example should clear things up:\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par \\documentstyle\{article\} \par \\begin\{document\} \par Words within a sentence are ended by spaces. One space \par between words is equivalent to any number. We are only \par interested in separating one word from the \par next, not in formatting the space between them. \par For these purposes, pressing Return \par at the end of a line \par and starting a new word on the next line \par just serves to separate \par words, not to cut a line short. \par The end of a sentence is indicated by a period \par followed by one or more spaces. \par \par The end of a paragraph is indicated by leaving a blank line. \par All this \par means that we can type without too much regard for layout, and \par the typesetter will sort things out for us. \par \\end\{document\} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 produces the result\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\fs19 Words within a sentence are ended by spaces. One space between words is equivalent to any number. We are only interested in separating one word from the next, not in formatting the space between them. For these purposes, pressing Return at the end of a line and starting a new word on the next line just serves to separate words, not to cut a line short. The end of a sentence is indicated by a period followed by one or more spaces.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 \fs19 The end of a paragraph is indicated by leaving a blank line. All this means that we can type without too much regard for layout, and the typesetter will sort things out for us. }}\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 Perhaps you would like to try running {\plain L{\up6\fs19 A}T{\dn7 E}X} on the above input. Consult your local guide for details.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Note that we have learned more than just how {\plain L{\up6\fs19 A}T{\dn7 E}X} recognises words, sentences and paragraphs. We\rquote ve also seen how to specify our choice of document style and how to tell {\plain L{\up6\fs19 A}T{\dn7 E}X} where our document begins and ends. Any material that is to be printed must lie somewhere between the declaration of {\b0\i0\scaps0\f3 \\begin\{document\}} and that of {\b0\i0\scaps0\f3 \\end\{document\}}. Definitions that are to apply to the entire document can be made before the declaration of the document beginning. The specification of document style must precede all other material.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 In future examples we won\rquote t explicitly display the commands that select document style and delimit the start and end of the document. But if you wish to try any of the examples, don\rquote t forget to include those commands. The {\i0\scaps0\b0\f3 article} document style will do for most of our examples. Of course, the preceding example looks not at all like an article because it is so short and because we specified no title or author information.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Most of what you need to know to type regular text is contained in the example above. When you consider that by far the majority of any document consists of straight text, it is obvious that {\plain L{\up6\fs19 A}T{\dn7 E}X} makes this fabulously straightforward. {\plain L{\up6\fs19 A}T{\dn7 E}X} will do all the routine work of formatting, and we simply get on with the business of composing.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\plain L{\up6\fs19 A}T{\dn7 E}X} does more than simply choose pleasing line breaks and provide natural spacing when setting a paragraph. Remember we said that {\plain T{\dn7 E}X} has inherited the knowledge of generations of professional printers\emdash well part of that knowledge includes being on the look-out for {\i ligatures}. These are combinations of letters within words which should be typeset as a single special symbol because they will \ldblquote clash\rdblquote with each if this is not done. Have a look at these words {\par \pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 flight, flagstaff, chaff, fixation \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 and compare them with these {\par \pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 f{l}ight, f{l}agstaf{f}, chaf{f}, f{i}xation \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 See the difference? In the first set I let {\plain L{\up6\fs19 A}T{\dn7 E}X} run as it usually does. In the second I overruled it somewhat, and stopped it from creating ligatures. Notice how the \lquote fl\rquote , \lquote ff\rquote , and \lquote fi\rquote combinations are different in the two sets\emdash in the former they form a single symbol (a ligature) and in the latter they are comprised of two disjoint symbols. There are other combinations that yields ligatures, but we don\rquote t have to bother remembering any of them because {\plain L{\up6\fs19 A}T{\dn7 E}X} will take care of these, too.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Notice, too, that {\plain L{\up6\fs19 A}T{\dn7 E}X} has been taught how to hyphenate the majority of words. It will hyphenate a word if it feels that the overall quality of the paragraph will be improved. For long words it has been taught several potential hyphenation positions.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\plain L{\up6\fs19 A}T{\dn7 E}X} also goes to a lot of trouble to try to choose pleasing page breaks. It avoids \ldblquote widows\rdblquote , which are single lines of a paragraph occurring by themselves at either the bottom of a page (where it would have to be the first line of a paragraph) or at the top of a page (where it would have to be the last). It also \ldblquote vertically justifies\rdblquote your page so that all pages have exactly the same height, no matter what appears on them. As testimony to the success of the pagebreaking algorithm, I have (to this point) not once chosen a page break in this document.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 2.4.2 Punctuation\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 Typists have a convention whereby a single space is left after a mid-sentence comma, and two spaces are left after a sentence-ending period. How do we enforce this if {\plain L{\up6\fs19 A}T{\dn7 E}X} treats a string of spaces just like a single one? The answer, unsurprisingly, is that we {\i don\rquote t}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par To have a comma followed by the appropriate space, we simply \par type a comma follows by at least one space. To end a sentence \par we type a period with at least one following space. No space will \par be inserted if we type a comma or period followed straight away \par by something other than a space, because there are times when \par we won't require any space, i.e., we do what comes narurally. \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 will produce\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\fs19 To have a comma followed by the appropriate space, we simply type a comma follows by at least one space. To end a sentence we type a period with at least one following space. No space will be inserted if we type a comma or period followed straight away by something other than a space, because there are times when we won\rquote t require any space, i.e., we do what comes naturally. }}\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 {\plain L{\up6\fs19 A}T{\dn7 E}X} will produce suitable space after commas, periods, semi-colons and colons, exclamation marks, question marks etc. if they are followed by a space. In stretching a line to justify to the right margin, it also knows that space after a punctuation character should be more \ldblquote stretchable\rdblquote than normal inter-word space and that space after a sentence-ending period should be stretched more than space after a mid-sentence comma. {\plain T{\dn7 E}X} knows the nature of punctuation if you stick to the simple rules outlined here. As we\rquote ve already said, those rules tell {\plain L{\up6\fs19 A}T{\dn7 E}X} how to distinguish consecutive words, sentences, phrases, etc.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Actually, there is more to ending sentences than mentioned above. Since {\plain L{\up6\fs19 A}T{\dn7 E}X} cannot speak English, it works on the assumption that {\i a period followed by a space ends a sentence unless the period follows a capital letter}. This works most of the time, but can fail. To get a normal inter-word space after a period that doesn\rquote t end a sentence, follow the period by a {\i control space}\emdash a {\b0\i0\scaps0\f3 \\ } (a {\i0\scaps0\b0\f3 \u92?} character followed by a space or return). Very rarely, you will have to force a sentence to end after a period that follows a capital letter (remember that {\plain L{\up6\fs19 A}T{\dn7 E}X} assumes this doesn\rquote t end a sentence). This is done by preceding the period with a {\b0\i0\scaps0\f3 \\@} command (you can guess from the odd syntax that this is rarely needed).\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 It\rquote s time we saw some examples of this. After all, this is our first experience of {\i control symbols} (don\rquote t worry, there are many more to come).\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par We must be careful not to confuse intra-sentence periods \par with periods that end a sentence, i.e.\\ we must remember \par that our task is to describe the sentence structure. Periods \par that the typesetter requires a little help with typically result \par from abbreviations, as in etc.\\ and others. We have to work \par somewhat harder to break a sentence after a capital letter, \par but that shouldn't bother us to much if we keep up our intake \par of vitamin E\\@. All this goes for other sentence-ending \par punctuation characters, so I could have said vitamin E\\@! \par Fortunately, these are rare occurrences. \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 results in\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\fs19 We must be careful not to confuse intra-sentence periods with periods that end a sentence, i.e. we must remember that our task is to describe the sentence structure. Periods that the typesetter requires a little help with typically result from abbreviations, as in etc. and others. We have to work somewhat harder to break a sentence after a capital letter, but that shouldn\rquote t bother us to much if we keep up our intake of vitamin E. All this goes for other sentence-ending punctuation characters, so I could have said vitamin E! Fortunately, these are rare occurrences. }}\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 Quotation marks is another area where {\plain L{\up6\fs19 A}T{\dn7 E}X} will do some work for us. Keyboards have the characters {\b0\i0\scaps0\f3 `}, {\b0\i0\scaps0\f3 `}, and {\b0\i0\scaps0\f3 "} but we want to to have access to each of \lquote , \rquote , \ldblquote , and \rdblquote . So we proceed like this:\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par `\\LaTeX' is no conventional word-processor, and \par to to get quotes, like ``this'', we type repeated \par ` and ' characters. Note that modern \par convention is that ``punctuation comes after \par the closing quote character''. \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 which gives just what we want\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\fs19 \lquote {\plain L{\up6\fs19 A}T{\dn7 E}X}\rquote is no conventional word-processor, and to to get quotes, like \ldblquote this\rdblquote , we type repeated {\i0\scaps0\b0\f3 \lquote } and {\i0\scaps0\b0\f3 \rquote } characters. Note that modern convention is that \ldblquote punctuation comes after the closing quote character\rdblquote . }}\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 Very rarely, you have three quote characters together. Merely typing those three quote characters one-after-the-other is ambiguous\emdash how should they be grouped? You tell {\plain L{\up6\fs19 A}T{\dn7 E}X} how you want them grouped by inserting a very small space called {\b0\i0\scaps0\f3 \\,}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par ``\\,`Green ham' or `Eggs?'\\,'' is the question. \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 gives the desired result\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\fs19 \ldblquote {\charscalex50\~}\lquote Green ham\rquote or \lquote Eggs?\rquote {\charscalex50\~}\rdblquote is the question. }}\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 Since we have a typesetter at our disposal, we might as well use the correct dashes where we need them. There are three types of dash: the hyphen, the endash, and the emdash. A minus sign is not a dash.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Hyphens are typed as you\rquote d hope, just by typing a {\b0\i0\scaps0\f3 -} at the point in the word that you want a hyphen. Don\rquote t forget that {\plain L{\up6\fs19 A}T{\dn7 E}X} takes care of hyphenation that is required to produce pretty linebreaks. You only type a hyphen when you explicitly want one to appear, as in a combination like \ldblquote inter-college\rdblquote .\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 An endash is the correct dash to use in indicating number ranges, as in \ldblquote questions\~1\endash 3\rdblquote . To specify an endash you type two consecutive dashes on the keyboard, as in {\b0\i0\scaps0\f3 1--3}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 An emdash is a punctuation dash, used at the end of a sentence\emdash I tend to use them too much. To specify an emdash you type three consecutive dashes on the keyboard, as in \ldblquote \u8230?{\b0\i0\scaps0\f3 a sentence---I tend to}\u8230?\rdblquote .\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par Theorems 1--3 concern the semi-completeness \par of our new construct---in the case that it \par satisfies the first axiom. \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 yields\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\fs19 Theorems 1\endash 3 concern the semi-completeness of our new construct\emdash in the case that it satisfies the first axiom. }}\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb180 \fi0 2.4.3 Ties\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 When you always remember to use {\i ties}, you know that you are becoming {{\plain T{\dn7 E}X}}nically inclined. Ties are used to prevent {\plain L{\up6\fs19 A}T{\dn7 E}X} from breaking lines at certain places. {\plain L{\up6\fs19 A}T{\dn7 E}X} will always choose line breaks that result in the most aesthetically pleasing paragraph as judged by its stringent rules. But because {\plain L{\up6\fs19 A}T{\dn7 E}X} does not actually understand the material it is setting so beautifully, it can make some poor choices.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 A {\i tie} is the character {\b0\i0\scaps0\f3 ~}. It behaves as a normal interword space in all respects {\i except} that the line-breaking algorithm will never break a line at that point. Thus\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par Dr. Seuss should be typed as Dr.~Seuss \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 for this makes sure that {\plain L{\up6\fs19 A}T{\dn7 E}X} will never leave the \lquote Dr\rquote at the end of one line and put the \lquote Seuss\rquote at the beginning of the next.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 One should try to get in to the habit of typing ties first-time, not after waiting to see if {\plain L{\up6\fs19 A}T{\dn7 E}X} will make a poor choice This will allow you to make all sorts of changes to your text without ever having to go back and insert a tie at a point that has migrated to the end of a line from the middle of a line as a result of those changes. Remember, of course, that the line-breaks \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Here are some more examples of places where you should remember to place ties.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\fs19 \i0\scaps0\b0\f3 {\par {\trowd\cellx4610\cellx9220 {\pard\intbl\ql Chapter{\b0\i0\scaps0\f3 ~}10\cell} {\pard\intbl\ql Donald{\b0\i0\scaps0\f3 ~}E. Knuth\cell} \row} {\trowd\cellx4610\cellx9220 {\pard\intbl\ql Appendix{\b0\i0\scaps0\f3 ~}C\cell} {\pard\intbl\ql width{\b0\i0\scaps0\f3 ~}2\cell} \row} {\trowd\cellx4610\cellx9220 {\pard\intbl\ql Figure{\b0\i0\scaps0\f3 ~}1\cell} {\pard\intbl\ql function{\b0\i0\scaps0\f3 ~}f\cell} \row} {\trowd\cellx4610\cellx9220 {\pard\intbl\ql Theorem{\b0\i0\scaps0\f3 ~}2\cell} {\pard\intbl\ql 1,{\b0\i0\scaps0\f3 ~}2, or{\b0\i0\scaps0\f3 ~}3\cell} \row} {\trowd\cellx4610\cellx9220 {\pard\intbl\ql Lemmas 3 and{\b0\i0\scaps0\f3 ~}4\cell} {\pard\intbl\ql equals{\b0\i0\scaps0\f3 ~}5\cell} \row} } }\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 {\*\bkmkstart BMsec_reserved}2.4.4{\*\bkmkend BMsec_reserved} Specially reserved symbols\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 In the sequel we will see that the the ten characters\par {{\b0\i0\scaps0\f3 # $ % & ~ _ ^ \\ \{ \}}}are\~reserved\~for\~special\~use. Indeed, we have seen already that {\i0\scaps0\b0\f3 \u92?} and {\b0\i0\scaps0\f3 ~} are non-printing characters that perform special services (and we\rquote ll have a lot more to say about the use of {\i0\scaps0\b0\f3 \u92?}).But what if we need one of these special symbols to appear in our document? The answer for seven of the symbols is to precede them by a {\i0\scaps0\b0\f3 \u92?} character, so forming another {\i control symbol} (remember that {\i0\scaps0\b0\f3 \u92?} followed by a space was also a control symbol).{\fs19 {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par It is not 100\\% straightforward to typeset the \par characters \\$ \\& \\% \\_ \\\{ \\\}, but given the \par enormous convenience of the use they are normally \par reserved for this is a small price to pay. \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 produces\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\fs19 It is not 100% straightforward to typeset the characters $ & % _ \{ \}, but given the enormous convenience of the use they are normally reserved for this is a small price to pay. }}\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb180 \fi0 2.4.5 So what are control symbols and words?\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 In typing a document, we can think of ourselves as being in one of two distinct modes. We are either typing {\i literal text} (which will just be set into neat paragraphs for us) or we are typing text that will be {\i interpreted} by {\plain L{\up6\fs19 A}T{\dn7 E}X} as an instruction to insert a special symbol or to perform some action. Thus we are either typing material that will go straight into the document (with some beautification), or we are giving commands to {\plain L{\up6\fs19 A}T{\dn7 E}X}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Some commands are implicit, in that we don\rquote t have to do anything much extra. For instance, we command {\plain L{\up6\fs19 A}T{\dn7 E}X} to end the present sentence by typing a period (that doesn\rquote t follow a capital letter). These are no so much commands as part of having to describe the logical structure of a document.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 A {\i control word} is something of the form {\b0\i0\scaps0\f3 \\commandname}, where the command name is a word made up only of the letters a to\~z and A to\~Z. A {\i control symbol} consists of a {\i0\scaps0\b0\f3 \u92?} followed by single symbol that is not a letter.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Here are some examples: {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab we have met the control space symbol {\b0\i0\scaps0\f3 \\ } before, \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab the commands to set symbols like % and $ are control symbols \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab {\b0\i0\scaps0\f3 \\@} was a control symbol that told told {\plain L{\up6\fs19 A}T{\dn7 E}X} that the very next period did really end the sentence, \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab {\b0\i0\scaps0\f3 \\LaTeX} is a control word that tell {\plain L{\up6\fs19 A}T{\dn7 E}X} to insert its own name at the current point, \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab {\b0\i0\scaps0\f3 \\clubsuit} instructs that a {{\u9827*}} be inserted, \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab {\b0\i0\scaps0\f3 \\pounds} inserts a \'a3 symbol, \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab {\b0\i0\scaps0\f3 \\S} inserts a \'b6 symbol, \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab {\b0\i0\scaps0\f3 \\em} makes the ensuing text {\i be emphasised}, \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 These examples show that control sequences can be used to access symbols not available from the keyboard, do some typesetting tricks like setting the word {\plain L{\up6\fs19 A}T{\dn7 E}X} the way it does, and change the appearance of whole chunks of text as with {\b0\i0\scaps0\f3 \\em}. We\rquote ll be meeting many more of these type of control sequences.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Another enormously powerful class of control sequences is those that accept {\i arguments}. They tell {\plain L{\up6\fs19 A}T{\dn7 E}X} to take the parts of text you supply and do something with them\emdash like make a fraction by setting the first argument over the second and drawing a line of the appropriate length between them. These are part of what makes {\plain L{\up6\fs19 A}T{\dn7 E}X} so powerful, and here are some examples.\par {\pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab {\b0\i0\scaps0\f3 \\chapter\{The beginning\}} causes {\plain L{\up6\fs19 A}T{\dn7 E}X} to start a new chapter with name \ldblquote The Beginning\rdblquote , number it in sequence, typeset the chapter heading in a suitable font, and make an entry in the table of contents, \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab {\b0\i0\scaps0\f3 \\overline\{words\}} causes {{\field{\*\fldinst{ EQ \\x\\to( {words}) }}{\fldrslt }} } to be overlined, \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab {\b0\i0\scaps0\f3 \\frac\{a+b\}\{c+d\}} sets the given two argument as a fraction, doing most of the dirty work for us: {{\field{\*\fldinst{ EQ \\F({\i a}+{\i b},{\i c}+{\i d})}}{\fldrslt }} }, \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab {\b0\i0\scaps0\f3 \\sqrt[5]\{a+b\}} typesets the fifth-root of {{\i a}+{\i b}}, like this: {{\field{\*\fldinst{ EQ \\R(5,{\i a}+{\i b})}}{\fldrslt }} }. The {\i0\scaps0\b0\f3 5} is in square brackets instead of braces because it is an optional argument and could be ommited all together (giving the default of square root), \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 Mandatory arguments are given enclosed by braces, and optional arguments enclosed by square brackets. Each command knows how many arguments to expect, so you don\rquote t have to provide any indication of that.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 We have actually jumped the gun a little. The above examples include examples of {\i mathematical} typesetting, and we haven\rquote t yet seen how to tell {\plain L{\up6\fs19 A}T{\dn7 E}X} that it is typesetting maths as opposed to some other random string of symbols that it doesn\rquote t understand either. We\rquote ll come to mathematical typesetting in good time.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 We need to dwell on a {{\plain T{\dn7 E}X}}nicality for a moment. How does {\plain L{\up6\fs19 A}T{\dn7 E}X} know where the name of a control sequence ends? Will it accept both {\b0\i0\scaps0\f3 \\pounds3} and {\b0\i0\scaps0\f3 \\pounds 3} in order to set \'a33, and will {\b0\i0\scaps0\f3 \\emWalrus} and {\b0\i0\scaps0\f3 \\em Walrus} both be acceptable in order to get {\i Walrus}? The answer is easy when you remember that a control word consists only of alphabetic characters, and a control symbol consists of exactly one nonalphabetic character.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 So to determine which control sequence you typed, {\plain L{\up6\fs19 A}T{\dn7 E}X} does the following: {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 1.\tab when a {\i0\scaps0\b0\f3 \u92?} character is encountered, {\plain L{\up6\fs19 A}T{\dn7 E}X} knows that either a control symbol or a control word will follow. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 2.\tab If the {\i0\scaps0\b0\f3 \u92?} is followed by a nonalphabetic character, then {\plain L{\up6\fs19 A}T{\dn7 E}X} knows that it is a control {\i symbol} that you have typed. It then recognises which one it was, typesets it, and goes on to read the character which follows the symbol you typed. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 3.\tab If the {\i0\scaps0\b0\f3 \u92?} is followed by an alphabetic character, then {\plain L{\up6\fs19 A}T{\dn7 E}X} knows that it is a control word that you have typed. But it has to work out where the name of the control word ends and where the ensuing text takes over again. Since only alphabetic characters are allowed, {\plain L{\up6\fs19 A}T{\dn7 E}X} reads everything up to just before that first nonalphabetic character as the control sequence name. Since it is common to delimit the end of a control word by a space, {\plain L{\up6\fs19 A}T{\dn7 E}X} will {\i ignore} any space that follows a control word, since you want that space treated as end-of-control-word space rather than interword space. \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 This has one important consequence: The character in the input file immediately after a control symbol will be \ldblquote seen\rdblquote by {\plain L{\up6\fs19 A}T{\dn7 E}X}, but {\i any space following a control word will be discarded and never processed.} This does not affect one much if you adopt the convention of always typing a space after a control sequence name.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 There is a rare circumstance where this necessitates a little extra work and thought, which we illustrate by example:\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par If we type a control word like \\LaTeX in the running text \par then we must be cautious, because the string of spaces that \par come after it will be discarded by the \\LaTeX\\ system. \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 which produces the output\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\fs19 If we type a control word like {\plain L{\up6\fs19 A}T{\dn7 E}X}in the running text then we must be cautious, because the string of spaces that come after it will be discarded by the {\plain L{\up6\fs19 A}T{\dn7 E}X} system. }}\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb180 \fi0 {\*\bkmkstart BMsec_groups}2.4.6{\*\bkmkend BMsec_groups} Commands to change appearance\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 We\rquote ve seen a little of how to access various symbols using control sequences and we mentioned the {\b0\i0\scaps0\f3 \\em} command to emphasise text, but we didn\rquote t see how to use them. We look here at commands that change the appearance of the text.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Each of the control words here is a directive rather than a control sequence that accepts an argument. This is because potential arguments consisting of text that wants to be emboldened or emphasised are very large, and it would be a nuisance to have to enclose such an argument in argument-enclosing braces.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 To delimit the area of text over which one of these commands has effect (its {\i scope}) we make that text into what is called a {\i group}. Groups are used extensively in {\plain L{\up6\fs19 A}T{\dn7 E}X} to keep effects local to an area, rather than affecting the whole document. Apart from enhancing usability, this also in a sense protects distinct parts of a document from each other.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 The {\plain L{\up6\fs19 A}T{\dn7 E}X} commands for changing type style are given in table\~{\field{\*\fldinst{\lang1024 REF BMtab_typestyles \\* MERGEFORMAT }}{\fldrslt{2.1}}}, and those for changing type size are given in table\~{\field{\*\fldinst{\lang1024 REF BMtab_sizes \\* MERGEFORMAT }}{\fldrslt{2.2}}}. Commands for selecting fonts other than these are not discussed here.\par {\pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs24\sl240\slmult1 \sb240 \fi0 \par {\pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs24\sl240\slmult1 \fi0 \par {\trowd\cellx1237\cellx2929\cellx3142\cellx4379\cellx6071\cellx6284\cellx7521\cellx9213 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\rm}}\cell} {\pard\intbl\ql {Roman}\cell} {\pard\intbl\ql {}\cell} {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\it}}\cell} {\pard\intbl\ql {\scaps0\b0\i italic}\cell} {\pard\intbl\ql {}\cell} {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\sc}}\cell} {\pard\intbl\ql {\i0\b0\scaps Capitals}\cell} \row} {\trowd\cellx1237\cellx2929\cellx3142\cellx4379\cellx6071\cellx6284\cellx7521\cellx9213 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\em}}\cell} {\pard\intbl\ql {\i Emphasised}\cell} {\pard\intbl\ql {}\cell} {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\sl}}\cell} {\pard\intbl\ql {\scaps0\b0\i slanted}\cell} {\pard\intbl\ql {}\cell} {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\tt}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 typewriter}\cell} \row} {\trowd\cellx1237\cellx2929\cellx3142\cellx4379\cellx6071\cellx6284\cellx7521 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\bf}}\cell} {\pard\intbl\ql {\i0\scaps0\b boldface}\cell} {\pard\intbl\ql {}\cell} {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\sf}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f2 sans serif}\cell} {\pard\intbl\ql {}\cell} {\pard\intbl\ql {}\cell} \row} } \par \pard\plain\s30\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 {Table {\*\bkmkstart BMtab_typestyles}2.1{\*\bkmkend BMtab_typestyles}: Commands for selecting type styles}{\field{\*\fldinst TC "2.1 Commands for selecting type styles" \\f t}{\fldrslt }}\par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb240 \fi360 Each of the type style selection commands selects the specified style but does not change the size of font being used. The default type style is roman (you are reading a roman style font now). To change type size you issue one of the type size changing commands in table\~{\field{\*\fldinst{\lang1024 REF BMtab_sizes \\* MERGEFORMAT }}{\fldrslt{2.2}}}, which will select the indicated size in the currently active style. The release of {\plain L{\up6\fs19 A}T{\dn7 E}X} 3.0 (the present version is 2.09) will see the New Font Selection Scheme in place as a standard feature. This makes font matters much easier to deal with.\par {\pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs24\sl240\slmult1 \sb240 \fi0 \par {\pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs24\sl240\slmult1 \fi0 \par {\trowd\cellx4250\clbrdrb\brdrs\cellx6165\clbrdrb\brdrs\cellx7691\clbrdrb\brdrs\cellx9217 {\pard\intbl\ql {size}\cell} {\pard\intbl\qc {default (10pt)}\cell} {\pard\intbl\qc {11pt option}\cell} {\pard\intbl\qc {12pt option}\cell} \row} {\trowd\clbrdrr\brdrs\cellx4250\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6165\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7691\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx9217 {\pard\intbl\ql { {\b0\i0\scaps0\f3 \\tiny}}\cell} {\pard\intbl\qr {5pt}\cell} {\pard\intbl\qr {6pt}\cell} {\pard\intbl\qr {6pt}\cell} \row} {\trowd\clbrdrr\brdrs\cellx4250\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6165\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7691\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx9217 {\pard\intbl\ql { {\b0\i0\scaps0\f3 \\scriptsize}}\cell} {\pard\intbl\qr {7pt}\cell} {\pard\intbl\qr {8pt}\cell} {\pard\intbl\qr {8pt}\cell} \row} {\trowd\clbrdrr\brdrs\cellx4250\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6165\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7691\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx9217 {\pard\intbl\ql { {\b0\i0\scaps0\f3 \\footnotesize}}\cell} {\pard\intbl\qr {8pt}\cell} {\pard\intbl\qr {9pt}\cell} {\pard\intbl\qr {10pt}\cell} \row} {\trowd\clbrdrr\brdrs\cellx4250\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6165\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7691\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx9217 {\pard\intbl\ql { {\b0\i0\scaps0\f3 \\small}}\cell} {\pard\intbl\qr {9pt}\cell} {\pard\intbl\qr {10pt}\cell} {\pard\intbl\qr {11pt}\cell} \row} {\trowd\clbrdrr\brdrs\cellx4250\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6165\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7691\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx9217 {\pard\intbl\ql { {\b0\i0\scaps0\f3 \\normalsize}}\cell} {\pard\intbl\qr {10pt}\cell} {\pard\intbl\qr {11pt}\cell} {\pard\intbl\qr {12pt}\cell} \row} {\trowd\clbrdrr\brdrs\cellx4250\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6165\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7691\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx9217 {\pard\intbl\ql { {\b0\i0\scaps0\f3 \\large}}\cell} {\pard\intbl\qr {12pt}\cell} {\pard\intbl\qr {12pt}\cell} {\pard\intbl\qr {14pt}\cell} \row} {\trowd\clbrdrr\brdrs\cellx4250\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6165\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7691\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx9217 {\pard\intbl\ql { {\b0\i0\scaps0\f3 \\Large}}\cell} {\pard\intbl\qr {14pt}\cell} {\pard\intbl\qr {14pt}\cell} {\pard\intbl\qr {17pt}\cell} \row} {\trowd\clbrdrr\brdrs\cellx4250\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6165\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7691\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx9217 {\pard\intbl\ql { {\b0\i0\scaps0\f3 \\LARGE}}\cell} {\pard\intbl\qr {17pt}\cell} {\pard\intbl\qr {17pt}\cell} {\pard\intbl\qr {20pt}\cell} \row} {\trowd\clbrdrr\brdrs\cellx4250\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6165\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7691\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx9217 {\pard\intbl\ql { {\b0\i0\scaps0\f3 \\huge}}\cell} {\pard\intbl\qr {20pt}\cell} {\pard\intbl\qr {20pt}\cell} {\pard\intbl\qr {25pt}\cell} \row} {\trowd\clbrdrr\brdrs\cellx4250\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6165\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7691\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx9217 {\pard\intbl\ql { {\b0\i0\scaps0\f3 \\Huge}}\cell} {\pard\intbl\qr {25pt}\cell} {\pard\intbl\qr {25pt}\cell} {\pard\intbl\qr {25pt}\cell} \row} } \par \pard\plain\s30\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 {Table {\*\bkmkstart BMtab_sizes}2.2{\*\bkmkend BMtab_sizes}: {\plain L{\up6\fs19 A}T{\dn7 E}X} size-changing commands.}{\field{\*\fldinst TC "2.2 {\plain L{\up6\fs19 A}T{\dn7 E}X} size-changing commands." \\f t}{\fldrslt }}\par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb240 \fi360 The point-size option referred to in table\~{\field{\*\fldinst{\lang1024 REF BMtab_sizes \\* MERGEFORMAT }}{\fldrslt{2.2}}} is that specified in the {\b0\i0\scaps0\f3 \\documentstyle} command issued at the beginning of the input file. Through it you select that base (or default) font for your document to be 10, 11, or\~12 point Roman. If no options are specified, the default is 10-point Roman. The table shows, for instance, that if I issue a {\b0\i0\scaps0\f3 \\large} in this document for which I chose the {\i0\scaps0\b0\f3 12pt} document style option the result will be a {\fs29 14-point Roman typeface}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 We mentioned that to restrict the scope of a type-changing command we will set the text to be affected off in a group. Let\rquote s look at an example of this.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par When we want to \{\\em emphasise\\/\} some text we \par use the \{\\tt em\} command, and use grouping to \par restrict the scope. We can change font \{\\large sizes\} \par in much the same way. We can also obtain \{\\it italicised\}, \par \{\\bf emboldened\}, \{\\sc Capitals\} and \{\\sf sans serif\} styles. \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\fs19 When we want to {\i emphasise} some text we use the {\i0\scaps0\b0\f3 em} command, and use grouping to restrict the scope. We can change font {\fs29 sizes} in much the same way. We can also obtain {\scaps0\b0\i italicised}, {\i0\scaps0\b emboldened}, {\i0\b0\scaps Capitals} and {\i0\scaps0\b0\f2 sans serif} styles. }}\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 Notice how clever grouping allows us to do all that without once having to use {\b0\i0\scaps0\f3 \\rm} or {\b0\i0\scaps0\f3 \\normalsize}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 One more thing slipped into that example\emdash and {italic correction} {\b0\i0\scaps0\f3 \\/}. This is a very small amount of additional space that we asked to be inserted to allow for the change from sloping {\i emphasised} text to upright text, because the interword space has been made to look less substantial from the terminal sloping character. One has to keep an eye open for circumstances where this is necessary. See the effect of omitting an italic correction after the emphasised text earlier in this paragraph.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 One might expect, by now, that {\plain L{\up6\fs19 A}T{\dn7 E}X} would insert an italic correction for us. But there are enough occasions when it is not wanted, and there is no good rule for {\plain L{\up6\fs19 A}T{\dn7 E}X} to use to decide just when to do it for us. So the italic correction is always left up to the typist.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 2.4.7 Accents\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\plain L{\up6\fs19 A}T{\dn7 E}X} provides accents for just about all occasions. They are accessed through a variety of control symbols and single-letter control worlds which accept a single argument\emdash the letter to be accented. These control sequences are detailed in table\~{\field{\*\fldinst{\lang1024 REF BMtab_accents \\* MERGEFORMAT }}{\fldrslt{2.3}}}.\par {\pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs24\sl240\slmult1 \sb240 \fi0 \par {\pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs24\sl240\slmult1 \fi0 \par {\trowd\cellx2567\cellx3805\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\`\{o\}}}\cell} {\pard\intbl\ql {\'f2}\cell} {\pard\intbl\ql {(grave accent)}\cell} \row} {\trowd\cellx2567\cellx3805\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\'\{o\}}}\cell} {\pard\intbl\ql {\'f3}\cell} {\pard\intbl\ql {(acute accent)}\cell} \row} {\trowd\cellx2567\cellx3805\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\^\{o\}}}\cell} {\pard\intbl\ql {\'f4}\cell} {\pard\intbl\ql {(circumflex or \ldblquote hat\rdblquote )}\cell} \row} {\trowd\cellx2567\cellx3805\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\"\{o\}}}\cell} {\pard\intbl\ql {\'f6}\cell} {\pard\intbl\ql {(umlaut or dieresis)}\cell} \row} {\trowd\cellx2567\cellx3805\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\~\{o\}}}\cell} {\pard\intbl\ql {\'f5}\cell} {\pard\intbl\ql {(tilde or \ldblquote squiggle\rdblquote )}\cell} \row} {\trowd\cellx2567\cellx3805\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\=\{o\}}}\cell} {\pard\intbl\ql {\u333o}\cell} {\pard\intbl\ql {(macron or \ldblquote bar\rdblquote )}\cell} \row} {\trowd\cellx2567\cellx3805\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\.\{o\}}}\cell} {\pard\intbl\ql {\u559o}\cell} {\pard\intbl\ql {(dot accent)}\cell} \row} {\trowd\cellx2567\cellx3805\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\u\{o\}}}\cell} {\pard\intbl\ql {\u335o}\cell} {\pard\intbl\ql {(breve accent)}\cell} \row} {\trowd\cellx2567\cellx3805\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\v\{o\}}}\cell} {\pard\intbl\ql {\u466o}\cell} {\pard\intbl\ql {(h\'e1\u269cek or \ldblquote check\rdblquote )}\cell} \row} {\trowd\cellx2567\cellx3805\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\H\{o\}}}\cell} {\pard\intbl\ql {\u337o}\cell} {\pard\intbl\ql {(long Hungarian umlaut)}\cell} \row} {\trowd\cellx2567\cellx3805\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\t\{oo\}}}\cell} {\pard\intbl\ql {{oo}}\cell} {\pard\intbl\ql {(tie-after accent)}\cell} \row} {\trowd\cellx2567\cellx3805\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\c\{o\}}}\cell} {\pard\intbl\ql {{\f5\u807\'b8}o}\cell} {\pard\intbl\ql {(cedilla accent)}\cell} \row} {\trowd\cellx2567\cellx3805\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\d\{o\}}}\cell} {\pard\intbl\ql {\u7885o}\cell} {\pard\intbl\ql {(dot-under accent)}\cell} \row} {\trowd\cellx2567\cellx3805\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\b\{o\}}}\cell} {\pard\intbl\ql {\u817_o}\cell} {\pard\intbl\ql {(bar-under accent)}\cell} \row} } \par \pard\plain\s30\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 {Table {\*\bkmkstart BMtab_accents}2.3{\*\bkmkend BMtab_accents}: Control sequences for accents}{\field{\*\fldinst TC "2.3 Control sequences for accents" \\f t}{\fldrslt }}\par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb240 \fi360 Thus we can produce \'f3 by typing {\b0\i0\scaps0\f3 \\'\{o\}}, \u462a by typing {\b0\i0\scaps0\f3 \\v\{a\}}, and P\'e1l Erd\'f6s by typing {\b0\i0\scaps0\f3 P\\'\{a\}l Erd\\"\{o\}s}. Take special care when accenting an {{\i i}} or a {{\i j}}, for they should lose their dots when accented. Use the control words {\b0\i0\scaps0\f3 \\i} and {\b0\i0\scaps0\f3 \\j} to produce dotless versions of these letters. Thus the best way to type to type \u277ex{\f5\u774u}\u305igent is {\b0\i0\scaps0\f3 \\u\{e\}x\\u\{\\i\}gent}.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 2.4.8 Over-ruling some of {\plain T{\dn7 E}X}\rquote s choices\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 We\rquote ve seen that ties can be used to stop linebreaks occurring between words. But how can we stop {\plain L{\up6\fs19 A}T{\dn7 E}X} from hyphenating a particular word? More generally, how can we stop it from splitting any given group of characters across two lines. The answer is to make that group of characters appears as one solid {\i box}, through use of an {\b0\i0\scaps0\f3 \\mbox} command.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par For instance, if we wanted to be sure that the word \par \{\\em currentitem\\/\} is not split across lines \par then we should type it as \\mbox\{\\em currentitem\}. \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 If for some reason we wish to break a line\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 in the middle of nowhere, preventing {\plain L{\up6\fs19 A}T{\dn7 E}X} from justifying that line to the prevailing right margin, the we use the {\b0\i0\scaps0\f3 \\newline} command. One can also use the abbreviated form {\b0\i0\scaps0\f3 \\\\}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par We start with a short line.\\newline \par And now we continue with the normal \par text, remembering that where we press \par Return in the input file probably won't \par correspond to a line break in the final \par document. More short lines\\\\ \par are easy, too. \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 will produce the line breaks we want\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\fs19 We start with a short line.\line And now we continue with the normal text, remembering that where we press Return in the input file probably won\rquote t correspond to a line break in the final document. More short lines\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 \fs19 are easy, too. }}\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 A warning is in order: {\b0\i0\scaps0\f3 \\newline} must only end part of a line that is \ldblquote already set\rdblquote . It cannot be used to add additional space between paragraphs, nor to leave space for a picture you want to paste in. This is not to be awkward, but is just part of {\plain L{\up6\fs19 A}T{\dn7 E}X} holding up its end of the deal by making you have to specially request additional vertical space. This prevents unwanted extra space from entering your document.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Later we shall see how to impose our own choice of page size, paragraph indentation, etc. For now we will continue to accept those declared for us in the document style.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 2.4.9 Commenting your document\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 It is handy to be able to make comments to yourself in the source file for a document. Things like \ldblquote I must rewrite this section\rdblquote and \ldblquote This is version 3 of the document\rdblquote are likely. It would also be useful to be able to make the compiler ignore certain parts of the document at times. For this purpose we can use the {\b0\i0\scaps0\f3 %} character, for all text on an input line that is after a {\b0\i0\scaps0\f3 %} which is not part of an occurrence of the control symbol {\b0\i0\scaps0\f3 \\%} is discarded by the compiler. Here is an example:\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par There was a 100\\% turnout today, \par an all-time record. %perhaps I should check this claim! \par %Indeed, there are lots of unsubstantiated claims here! \par This made for an extremely productive session. \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 will yields\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\fs19 There was a 100% turnout today, an all-time record. This made for an extremely productive session. }}\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb180 \fi0 2.4.10 Footnotes\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 Inserting footnotes is easy\emdash {\plain L{\up6\fs19 A}T{\dn7 E}X} will position and number them for you. You just indicate {\i exactly} where the footnote marker should go, and provide the text of the footnote. The footnote text will be placed at the bottom of the present page in a somewhat smaller font, and be separated from the main text by a short horizontal rule{\cs62\super\chftn} {\*\footnote\pard \s65\ql\fi-113\li397\lin397\f0\fs24{\cs62\super\chftn} See for yourself! It\rquote s easy when you don\rquote t have to do any work.} to conform with convention. The footnote in the last line was typed like this:\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par ...rule\\footnote\{See for yourself! It's easy ...work.\} to conform \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 No space was typed between the {\i0\scaps0\b0\f3 rule} and the {\b0\i0\scaps0\f3 \\footnote}, because we want the footnote marker to appear right next to the last letter of the word.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Multiple footnotes{\cs62\super\chftn} {\*\footnote\pard \s65\ql\fi-113\li397\lin397\f0\fs24{\cs62\super\chftn} Here is another footnote} are obtained just by using the {\b0\i0\scaps0\f3 \\footnote} command again and again.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 2.4.11 Topmatter\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 We declare the title and author information using the {\b0\i0\scaps0\f3 \\title} and {\b0\i0\scaps0\f3 \\author} commands, each of which accept a single argument. Multiple authors are all listed in the argument of {\b0\i0\scaps0\f3 \\title}, separated by {\b0\i0\scaps0\f3 \\and}\rquote s. The {\b0\i0\scaps0\f3 \\date} command can be used to date a document. After we have declared each of these, we issue a {\b0\i0\scaps0\f3 \\maketitle} command to have them typeset for us. In the {\b0\i0\scaps0\f3 book} and {\b0\i0\scaps0\f3 article} document styles this will result in a separate page; in the {\b0\i0\scaps0\f3 article} style the \ldblquote top matter\rdblquote will be placed at the top of the first page. The style files determine the placement and the choice of font.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par \\title\{A Thought for the Day\} \par \\author\{Fred Basset \\and Horace Hosepipe\} \par \\date\{November 1992\} \par \\maketitle \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 will produce something along the lines of\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\fs19 {\par \pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \fs19 {\fs34 A Thought for the Day}\par \pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \fs19 \par \pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \sb60 \fi0 \fs19 Fred Basset{ }Horace Hosepipe\par \pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \fs19 \par \pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \sb60 \fi0 \fs19 November 1992 \par }}}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 This topmatter must appear {\i after} the {\b0\i0\scaps0\f3 \\begin\{document\}} and before any other printing material.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 2.4.12 Sectioning commands\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 As part of our task of describing the logical structure of the document, we must indicate to {\plain L{\up6\fs19 A}T{\dn7 E}X} where to start sectional units. To do this we make use of the sectioning commands shown in table\~{\field{\*\fldinst{\lang1024 REF BMtab_sectioning \\* MERGEFORMAT }}{\fldrslt{2.4}}}.\par {\pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs24\sl240\slmult1 \sb240 \fi0 \par \pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 {\i0\scaps0\b0\f3 {\par {\trowd\cellx2570\cellx5963\cellx9219 {\pard\intbl\ql {\u92?part}\cell} {\pard\intbl\ql {\u92?subsection}\cell} {\pard\intbl\ql {\u92?paragraph}\cell} \row} {\trowd\cellx2570\cellx5963\cellx9219 {\pard\intbl\ql {\u92?chapter}\cell} {\pard\intbl\ql {\u92?subsubsection}\cell} {\pard\intbl\ql {\u92?subparagraph}\cell} \row} {\trowd\cellx2570\cellx5963\cellx9219 {\pard\intbl\ql {\u92?section}\cell} {\pard\intbl\ql {}\cell} {\pard\intbl\ql {}\cell} \row} } } \par \pard\plain\s30\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 {Table {\*\bkmkstart BMtab_sectioning}2.4{\*\bkmkend BMtab_sectioning}: {\plain L{\up6\fs19 A}T{\dn7 E}X} sectioning commands}{\field{\*\fldinst TC "2.4 {\plain L{\up6\fs19 A}T{\dn7 E}X} sectioning commands" \\f t}{\fldrslt }}\par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb240 \fi360 Each sectioning command accepts a single argument\emdash the section heading that is to be used. {\plain L{\up6\fs19 A}T{\dn7 E}X} will provide the section numbering (and numbering of subsections within sections, etc.) so there is no need to include any number in the argument. {\plain L{\up6\fs19 A}T{\dn7 E}X} will also take care of whatever spacing is required to set the new logical unit off from the others, perhaps through a little extra space and using a larger font. It will also start a new page in the case that a new chapter is begun.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 The {\b0\i0\scaps0\f3 \\part} command is used for major subdivisions of substantial documents. The {\b0\i0\scaps0\f3 \\paragraph} and {\b0\i0\scaps0\f3 \\subparagraph} commands are, unfortunately confusing. They are used to section off a modest number of paragraphs of text\emdash they don\rquote t start new paragraphs (remember that that was done by leaving a blank line in our input file). The names were retained for historical reasons.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 It is always a good idea to {\i plan} the overall sectional structure of a document in advance, or at least give it a little thought. Not that it would be difficult to change your mind later (you could use the global replace feature of an editor, for instance), but so that you have a good idea of the structure that you have to describe to {\plain L{\up6\fs19 A}T{\dn7 E}X}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 The sectioning command that began the present sectional unit of this document was\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {{\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \par \\subsection\{Sectioning commands\} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 and that was all that was required to get the numbered section name and the table of contents entry.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 There are occasions when you want a heading to have all the appearance of a particular sectioning command, but shouldn\rquote t be numbered as a section in its own right or produce a table of contents entry. This can be achieved through using the {\i *-form} of the command, as in {\b0\i0\scaps0\f3 \\section*\{...\}}. We\rquote ll see that many {\plain L{\up6\fs19 A}T{\dn7 E}X} commands have such a *-form which modify their behaviour slightly.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Not only will {\plain L{\up6\fs19 A}T{\dn7 E}X} number your sectional units for you, it will compile a table of contents too. Just include the command {\b0\i0\scaps0\f3 \\tableofcontents} after the {\b0\i0\scaps0\f3 \\begin\{document\}} command and after the topmatter that should precede it.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 2.4.13 {\plain L{\up6\fs19 A}T{\dn7 E}X} environments\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 Perhaps the most powerful and convenient concept in the {\plain L{\up6\fs19 A}T{\dn7 E}X} syntax is that of an {\i environment}. We will see most of the \ldblquote heavy\rdblquote typesetting problems we will encounter can be best tackled by one or other of the {\plain L{\up6\fs19 A}T{\dn7 E}X} environments.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Some environments are used to {\i display} a portion of text, i.e. to set it off from the surrounding text by indenting it. The {\i0\scaps0\b0\f3 quote} and {\i0\scaps0\b0\f3 verse} environments are examples of these. The {\i0\scaps0\b0\f3 center} environment allows us to centre portions of text, while the {\i0\scaps0\b0\f3 flushright} environment sets small portions of text flush against the right margin.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 But the true power of {\plain L{\up6\fs19 A}T{\dn7 E}X} begins to show itself when we look at environments such as those that provide facilities for itemised or enumerated lists, complex tabular arrangements, and for taking care of figure and table positioning and captioning. What we learn here will also be applicable in typesetting some complicated mathematical arrangements in the next chapter.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 All the environments are begun by a {\i0\scaps0\b0\f3 \u92?begin{\{{\i name}\}}} command and ended by an {\i0\scaps0\b0\f3 \u92?end{\i \{name\}}}, where {\i name} is the environment name. These commands also serve as begin-group and end-group{\cs62\super\chftn} {\*\footnote\pard \s65\ql\fi-113\li397\lin397\f0\fs24{\cs62\super\chftn} See section {\field{\*\fldinst{\lang1024 REF BMsec_groups \\* MERGEFORMAT }}{\fldrslt{2.4.6}}}} markers, so that all commands are local to the present environment\emdash they cannot affect text outside the environment.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 We can also have environment embedded within environment within environment and so on, limited only by memory available on the computer. We must, however, be careful to check that each of these {\i nested} environments is indeed contained within the one just outside of it.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 2.4.14 {\i0\scaps0\b0\f3 em} environment\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 We start with a very simple environment, one which provides an alternative to the {\b0\i0\scaps0\f3 \\em} command. Remember that {\b0\i0\scaps0\f3 \\em} does not accept an argument; it applies to everything within its scope as dictated by the group within which it is used. This can be tricky if we wish to emphasise a large amount of text, for we may forget a group-delimiting brace and so upset the entire grouping structure of our document. In cases where we fear this might happen, we can proceed as follows.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par \\begin\{em\} \par We must always be careful to match our group-delimiting \par braces correctly. If the braces in a document are unevenly \par matched then \\LaTeX\\ will become confused because we will \par have, in effect, indicated different scopes than we \par intended for commands. \par \\end\{em\} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 which will give\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\fs19 {\i We must always be careful to match our group-delimiting braces correctly. If the braces in a document are unevenly matched then {\plain L{\up6\fs19 A}T{\dn7 E}X} will become confused because we will have, in effect, indicated different scopes than we intended for commands. } }}\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 Although {\plain L{\up6\fs19 A}T{\dn7 E}X} doesn\rquote t care too much for how we format our source file, it is obviously a good idea to lay it out logically and readably anyway. This helps minimise errors as well as aids in finding them. For this reason I have adopted the convention of always placing the environment {\b0\i0\scaps0\f3 \\begin} and {\b0\i0\scaps0\f3 \\end} commands on lines by themselves.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 2.4.15 {\i0\scaps0\b0\f3 quote} and {\i0\scaps0\b0\f3 quotation} environments\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 This environment can be used to display a part of a sentence or paragraph, or even several paragraphs, in such a manner that the material stands out from the rest of the text. This can be used to enhance readability, or to simply emphasise something. Its syntax is simple:\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par Horace smiled and retaliated: \par \\begin\{quote\} \par \\em You can mock the non-WYSIWYG nature of \\TeX\\ \par all you like. You don't understand that that is \par precisely what makes \\TeX\\ enormously more powerful \par than that lame excuse for a typesetter you use. \par And I'll bet that from start to finish of preparing \par a document I'm quicker than you are, even if you \par do type at twice the speed and have the so-called \par advantage of WYSIWYG. In your case, what you see \par is \{\\em all\\/\} you get! \par \\end\{quote\} \par and then continued with composing his masterpiece of the \par typesetting art. \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 produces the following typeset material:\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {{\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\fs19 Horace smiled and retaliated: {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \fs19 \i You can mock the non-WYSIWYG nature of {\plain T{\dn7 E}X} all you like. You don\rquote t understand that that is precisely what makes {\plain T{\dn7 E}X} enormously more powerful than that lame excuse for a typesetter you use. And I\rquote ll bet that from start to finish of preparing a document I\rquote m quicker than you are, even if you do type at twice the speed and have the so-called advantage of WYSIWYG. In your case, what you see is {\i0 all} you get! \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 \fs19 and then continued with composing his masterpiece of the typesetting art. }}\par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 That is a much more readable manner of presenting Horace\rquote s piece of mind than embedding it within a regular paragraph. The {\i0\scaps0\b0\f3 quote} environment was responsible for the margins being indented on both sides during the quote. This example has also been used to show how the commands that begin and end an environment restrict the scope of commands issued within that environment: The {\b0\i0\scaps0\f3 \\em} at the beginning of the quote did not affect the text following the quote. We have also learned here that if we use {\b0\i0\scaps0\f3 \\em} within already emphasised text, the result is roman type\emdash and we don\rquote t require an italic correction here because the final letter of \lquote all\rquote was not sloping to the right.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 The {\i0\scaps0\b0\f3 quotation} environment is used in just the same way as the {\i0\scaps0\b0\f3 quote} environment above, but it is intended for setting long quotations of several paragraphs. It would be suitable for quoting a few paragraphs from the text of some speech, for instance. {\plain L{\up6\fs19 A}T{\dn7 E}X} treats the given text just like normal text that it has to set into paragraphs, except that it indents the margins a little.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 2.4.16 {\i0\scaps0\b0\f3 verse} environment\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 This is provided to facilitate the setting of poetry. When within the {\i0\scaps0\b0\f3 verse} environment, we use {\b0\i0\scaps0\f3 \\newline} (or {\b0\i0\scaps0\f3 \\\\}) to end a line; and what would normally signify a new paragraph serves to indicate the start of a new stanza. Let\rquote s have a shot at some cheap poetry.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par \\begin\{verse\} \par Roses are red\\\\ \par Violets are blue\\\\ \par I think \\TeX\\ is great\\\\ \par And so will you! \par \par Roses are still red\\\\ \par Violets are still blue\\\\ \par I'm schizophrenic\\\\ \par And so am I. \par \\end\{verse\} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 will produce the following stunningly-creative \ldblquote poem\rdblquote :\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\fs19 {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \li1134\fi0 \fs19 Roses are red\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \li1134\fi0 \fs19 Violets are blue\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \li1134\fi0 \fs19 I think {\plain T{\dn7 E}X} is great\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \li1134\fi0 \fs19 And so will you!\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \li1134\fi0 \fs19 Roses are still red\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \li1134\fi0 \fs19 Violets are still blue\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \li1134\fi0 \fs19 I\rquote m schizophrenic\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \li1134\fi0 \fs19 And so am I. \par }}}\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 2.4.17 {\i0\scaps0\b0\f3 center} environment\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 This environment allows the centring of consecutive lines of text, new lines being indicated by a {\b0\i0\scaps0\f3 \\\\}. If you don\rquote t separate lines with the {\b0\i0\scaps0\f3 \\\\} command then you\rquote ll get a centred paragraph the width of the page, which won\rquote t look any different to normal. If only one line is to be centred, then no {\b0\i0\scaps0\f3 \\\\} is necessary.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par The \{\\tt center\} environment takes care of the vertical \par spacing before and after it, so we don't need to leave any. \par \\begin\{center\} \par If we leave no blank line after the\\\\ \par \{\\tt center\} environment\\\\ \par then the ensuing text will not\\\\ \par be regarded as part of a new\\\\ \par paragraph, and so will not be indented.\\\\ \par \\end\{center\} \par \par In this case we left a blank line after the environment, \par so the new text was regarded as starting a new paragraph. \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 gives the following text\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\fs19 The {\i0\scaps0\b0\f3 center} environment takes care of the vertical spacing before and after it, so we don\rquote t need to leave any. {\par \pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \fs19 If we leave no blank line after the\par \pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \fs19 {\i0\scaps0\b0\f3 center} environment\par \pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \fs19 then the ensuing text will not\par \pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \fs19 be regarded as part of a new\par \pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \fs19 paragraph, and so will not be indented.\par \pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \fs19 \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 \fs19 In this case we left a blank line after the environment, so the new text was regarded as starting a new paragraph. }}\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb180 \fi0 2.4.18 {\i0\scaps0\b0\f3 flushright} and {\i0\scaps0\b0\f3 flushleft} environments\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 The {\i0\scaps0\b0\f3 flushright} environment causes each line to be set with its last character against the right margin, without trying to stretch the line to to current text width. The {\i0\scaps0\b0\f3 flushleft} environment is similar.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par We can stop \\LaTeX\\ from justifying each line to both the \par left and the right margins. \par \\begin\{flushright\} \par The \{\\tt flushright\} environment is\\\\ \par used for text with an even right margin\\\\ \par and a ragged left margin. \par \\end\{flushright\} \par \\begin\{flushleft\} \par and the \{\\tt flushleft\} environment is\\\\ \par used for text with an even left margin\\\\ \par and a ragged right margin. \par \\end\{flushleft\} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 gives the desired display\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\fs19 We can stop {\plain L{\up6\fs19 A}T{\dn7 E}X} from justifying each line to both the left and the right margins. {\par \pard\plain\s8\qr\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \fs19 The {\i0\scaps0\b0\f3 flushright} environment is\par \pard\plain\s8\qr\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \fs19 used for text with an even right margin\par \pard\plain\s8\qr\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \fs19 and a ragged left margin. \par }{\pard\plain\s10\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \fs19 and the {\i0\scaps0\b0\f3 flushleft} environment is\par \pard\plain\s10\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \fs19 used for text with an even left margin\par \pard\plain\s10\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \fs19 and a ragged right margin. \par }}}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 One must be wary not to lapse into \ldblquote word-processing\rdblquote mode when using these environments. Remember that pressing return at the end of a line in the input file does not serve to end the current line there, but just to indicate the end of another word. We have to use the {\b0\i0\scaps0\f3 \\\\} command to end a line.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 2.4.19 {\i0\scaps0\b0\f3 verbatim} environment\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 We can simulate typed text using the {\i0\scaps0\b0\f3 verbatim} environment. The {\b0\i0\scaps0\f3 \\tt} (typewriter text) type style can be used for simulating typed words, but runs into trouble if one of the characters in the simulated typed text is a specially reserved {\plain L{\up6\fs19 A}T{\dn7 E}X} character. For instance, {\b0\i0\scaps0\f3 \{\\tt type \\newline\}} would not have the desired effect because {\plain L{\up6\fs19 A}T{\dn7 E}X} would interpret the {\b0\i0\scaps0\f3 \\newline} is an instruction to start a new line.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 The {\i0\scaps0\b0\f3 verbatim} environment allows the simulation of multiple typed lines. {\i Everything} within the environment is typeset in typewriter font exactly as it appears in our source file\emdash obeying spaces and line breaks as in the source file and not recognising the existence of any special symbols.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\fs19 {\par \i0\scaps0\b0\f3 \pard\plain\s10\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \f3 \fs19 \u92?begin\{verbatim\}\par \pard\plain\s10\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \f3 \fs19 In the verbatim environment we can type anything\par \pard\plain\s10\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \f3 \fs19 we like.\par \pard\plain\s10\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \f3 \fs19 So we don\rquote t need to look out for uses of %, $, & etc,\par \pard\plain\s10\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \f3 \fs19 nor will control sequences like \u92?newline have any\par \pard\plain\s10\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \f3 \fs19 effect.\par \pard\plain\s10\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \f3 \fs19 \u92?end\{verbatim\} \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 will produce the simulated input text\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par In the verbatim environment we can type anything \par we like. \par So we don't need to look out for uses of %, $, & etc, \par nor will control sequences like \\newline have any \par effect. \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 The only thing that cannot be typed in the {\i0\scaps0\b0\f3 verbatim} environment is the sequence {\b0\i0\scaps0\f3 \\end\{verbatim\}}. You might notice that I still managed to simulate that control sequence above. One can always get what you want in {\plain T{\dn7 E}X}, perhaps with a little creativity.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 If we want only to simulate a few typed words, such as when I say to use {\b0\i0\scaps0\f3 \\newline} to start a new line, then the {\b0\i0\scaps0\f3 \\verb} command is used. This command has a slightly odd syntax, pressed upon it by the use for which it was intended. It cannot accept an argument, because we may want to simulate typed text that is enclosed by {\b0\i0\scaps0\f3 \{braces\}}. What one does is to choose any character that is {\i not} in the text to be simulated, and use a pair of these characters as \ldblquote argument delimiters\rdblquote . I usually use the {\b0\i0\scaps0\f3 @} or {\b0\i0\scaps0\f3 "} charachters, as I rarely have any other uses for them. Thus\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\fs19 use {\b0\i0\scaps0\f3 \\%} to obtain a % sign }}\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 is typed as\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 { \fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par use \\verb"\\%" to obtain a \\% sign \par \par }}\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb180 \fi0 2.4.20 {\i0\scaps0\b0\f3 itemize}, {\i0\scaps0\b0\f3 enumerate}, {\i0\scaps0\b0\f3 description} environments\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\plain L{\up6\fs19 A}T{\dn7 E}X} provides three predefined list-making environment, and a \ldblquote primitive\rdblquote list environment for designing new list environments of your own. We shall just describe the predefined ones here.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 There is delightfully little to learn in order to be able to create lists. The only new command is {\b0\i0\scaps0\f3 \\item} which indicates the beginning of a new list item (and the end of the last one if this is not the first item). This command accepts an optional argument (which means you\rquote d enclose it in square brackets) that can be used to provide an item label. If no optional argument is given, then {\plain L{\up6\fs19 A}T{\dn7 E}X} will provide the item label for you; in an {\i0\scaps0\b0\f3 itemize} list it will bullet the items, in an {\i0\scaps0\b0\f3 enumerate} list it will number the items, and in a list of {\i0\scaps0\b0\f3 description}s the default is to have no label (which would look a bit odd, so you\rquote re expected to use the optional argument there).\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Remember that {\b0\i0\scaps0\f3 \\item} is used to separate list items; it does not accept the list item as an argument. \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par \\begin\{itemize\} \par \\item an item is begun with \\verb@\\item@ \par \\item if we don't specify labels, then \par \\LaTeX\\ will bullet the items for us \par \\item I indent lines after the first in the \par input file, but that is just to keep things \par readable. As always, \\LaTeX\\ ignores additional \par spaces. \par \par \\item a blank line between items is ignored, for \par \\LaTeX\\ is responsible for spacing items. \par \\item \\LaTeX\\ is in paragraph-setting mode when \par it reads the text of an item, and so will \par perform all the usual functions \par \\end\{itemize\} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 produces the following itemised list:\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\fs19 {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 \fs19 \bullet\tab an item is begun with {\i0\scaps0\b0\f3 \u92?item}\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 \fs19 \bullet\tab if we don\rquote t specify labels, then {\plain L{\up6\fs19 A}T{\dn7 E}X} will bullet the items for us \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 \fs19 \bullet\tab I indent lines after the first in the input file, but that is just to keep things readable. As always, {\plain L{\up6\fs19 A}T{\dn7 E}X} ignores additional spaces.\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 \fs19 \bullet\tab a blank line between items is ignored, for {\plain L{\up6\fs19 A}T{\dn7 E}X} is responsible for spacing items. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 \fs19 \bullet\tab {\plain L{\up6\fs19 A}T{\dn7 E}X} is in paragraph-setting mode when it reads the text of an item, and so will perform all the usual functions \par }}}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi360 Lists can also be embedded within one another, for they are just environments and we said that environments have this property. Remember that we must nest them in the correct order. We demonstrate with the following list, which also shows how to use the {\i0\scaps0\b0\f3 enumerate} environment.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par \\noindent I still have to do the following things: \par \\begin\{enumerate\} \par \\item Sort out LAN accounts for people on the course \par \\begin\{itemize\} \par \\item Have new accounts created for those not already \par registered on the LAN \par \\item Make sure all users have a personal directory \par on the data drive \par \\item Give read and scan rights to users in the \\TeX\\ \par directories \par \\item Add users to the appropriate LAN print queues \par \\end\{itemize\} \par \\item Have a \\TeX\\ batch file added to a directory that \par is on a public search path \par \\item Finish typing these course notes and proof-read them \par \\item Photocopy and bind the finished notes \par \\end\{enumerate\} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 will give the following list\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\fs19 I still have to do the following things: {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 \fs19 1.\tab Sort out LAN accounts for people on the course {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li1200\fi-300 \fs19 \bullet\tab Have new accounts created for those not already registered on the LAN \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li1200\fi-300 \fs19 \bullet\tab Make sure all users have a personal directory on the data drive \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li1200\fi-300 \fs19 \bullet\tab Give read and scan rights to users in the {\plain T{\dn7 E}X} directories \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li1200\fi-300 \fs19 \bullet\tab Add users to the appropriate LAN print queues \par }\pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 \fs19 2.\tab Have a {\plain T{\dn7 E}X} batch file added to a directory that is on a public search path \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 \fs19 3.\tab Finish typing these course notes and proof-read them \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 \fs19 4.\tab Photocopy and bind the finished notes \par }}}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi360 See how I lay the source file out in a readable fashion. This is to assist myself, not {\plain L{\up6\fs19 A}T{\dn7 E}X}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 The {\i0\scaps0\b0\f3 description} environment is, unsurprisingly, for making lists of descriptions.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par \\begin\{description\} \par \\item[\\tt itemize] an environment for setting itemised lists. \par \\item[\\tt enumerate] an environment for setting numbered lists. \par \\item[\\tt description] an environment for listing descriptions. \par \\end\{description\} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 will typeset the following descriptions:\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\fs19 {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 \fs19 {\b \i0\scaps0\b0\f3 itemize} an environment for setting itemised lists. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 \fs19 {\b \i0\scaps0\b0\f3 enumerate} an environment for setting numbered lists. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 \fs19 {\b \i0\scaps0\b0\f3 description} an environment for listing descriptions. \par }}}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi360 Note that the scope of the {\b0\i0\scaps0\f3 \\tt} commands used in the item labels was restricted to the labels.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 2.4.21 {\i0\scaps0\b0\f3 tabbing} environment\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 This environment simulates tabbing on typewriters. There one chose the tab stops in advance (analysing the material to be typed for the longest item in each column) and typed entries consecutively, hitting the tab key to move to the next tab stop and return to move to the next line.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 In the {\i0\scaps0\b0\f3 tabbing} environment, we proceed similarly. We look for the worst-case line (that which will determine the desired tab stops) and use it to set the tabs by inserting {\b0\i0\scaps0\f3 \\=} control symbols at the points where we want tab stops. We then discard that line using {\b0\i0\scaps0\f3 \\kill}, since the worst-case line might not be the first line in the material we have to type. We then type each line, using {\b0\i0\scaps0\f3 \\>} to move to the next tab stop and {\b0\i0\scaps0\f3 \\\\} to end a line.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par \\begin\{tabbing\} \par Cheddar cheese \\= Recommended \\= \\$2.00 \\kill \par Green Ham \\> Recommended \\> \\$2.00 \par Eggs \\> 1 a week \\> \\$1.50 \par Cheddar cheese \\> Hmmm \\> \\$0.80 \par Yak cheese \\> Avoid \\> \\$0.05 \par \\end\{tabbing\} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 gives the following uniformly-tabbed table\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\fs19 {\par {\trowd\cellx3073\cellx6146\cellx9219 {\pard\intbl\ql Green Ham\cell} {\pard\intbl\ql Recommended\cell} {\pard\intbl\ql $2.00\cell} \row} {\trowd\cellx3073\cellx6146\cellx9219 {\pard\intbl\ql Eggs\cell} {\pard\intbl\ql 1 a week\cell} {\pard\intbl\ql $1.50\cell} \row} {\trowd\cellx3073\cellx6146\cellx9219 {\pard\intbl\ql Cheddar cheese\cell} {\pard\intbl\ql Hmmm\cell} {\pard\intbl\ql $0.80\cell} \row} {\trowd\cellx3073\cellx6146\cellx9219 {\pard\intbl\ql Yak cheese\cell} {\pard\intbl\ql Avoid\cell} {\pard\intbl\ql $0.05\cell} \row} } }}\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 In the format line I chose the longest entry from each of the prospective columns. I lined some of the {\b0\i0\scaps0\f3 \\>} commands up in the source just to keep things readable.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Remember that excess spaces are ignored. {\plain L{\up6\fs19 A}T{\dn7 E}X} sets the {\b0\i0\scaps0\f3 \\kill}ed line normally and sees where the tab stops requested will be needed in the typeset text. Note also that commands given within the {\i0\scaps0\b0\f3 tabbing} environment are local to {\i the current item}. \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Actually, we use the above approach in the case that we require uniformly tabbed columns. The format line is not compulsory, and we can define tab stops dynamically. See if you can make sense of the following.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par \\begin\{tabbing\} \par Entry in position 1,1 \\= Entry 1,2 \\= Entry 1,3\\\\ \par Entry in position 2,1 \\> Entry 2,2 \\> Entry 2,3\\\\ \par Entry 3,1 \\= Entry 3,2 \\> Entry 3,3\\\\ \par Entry 4,1 \\> Entry 4,2 \\> Entry 4,3 \par \\end\{tabbing\} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 which produces\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\fs19 {\par {\trowd\cellx3073\cellx6146\cellx9219 {\pard\intbl\ql Entry in position 1,1\cell} {\pard\intbl\ql Entry 1,2\cell} {\pard\intbl\ql Entry 1,3\cell} \row} {\trowd\cellx3073\cellx6146\cellx9219 {\pard\intbl\ql Entry in position 2,1\cell} {\pard\intbl\ql Entry 2,2\cell} {\pard\intbl\ql Entry 2,3\cell} \row} {\trowd\cellx3073\cellx6146\cellx9219 {\pard\intbl\ql Entry 3,1\cell} {\pard\intbl\ql Entry 3,2\cell} {\pard\intbl\ql Entry 3,3\cell} \row} {\trowd\cellx3073\cellx6146\cellx9219 {\pard\intbl\ql Entry 4,1\cell} {\pard\intbl\ql Entry 4,2\cell} {\pard\intbl\ql Entry 4,3\cell} \row} } }}\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 The are additional commands that can be used within the tabbing environment to achieve special effects, but we won\rquote t be discussing them here.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 2.4.22 {\i0\scaps0\b0\f3 tabular} environment\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 The {\i0\scaps0\b0\f3 tabular} environment is used to produce tables of items, particularly when the table is predominantly rectangular and when line drawing is required. {\plain L{\up6\fs19 A}T{\dn7 E}X} will make most decisions for us; for instance it will align everything for us without having to be told which are the longest entries in each column.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 This environment is the first of many that use the {\plain T{\dn7 E}X} \ldblquote tabbing character\rdblquote {\i0\scaps0\b0\f3 &}. This character is used to separate consecutive entries in a row of a table, array, etc. The end of a row is indicated in the usual manner, by using {\b0\i0\scaps0\f3 \\\\}. In this way the individual cells of the table, or array, are clearly described to {\plain L{\up6\fs19 A}T{\dn7 E}X}, and it can analyse them to make typesetting decisions. Commands issued within a cell so defined are, again, local to that cell.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 The {\i0\scaps0\b0\f3 tabular} environment is also our first example of an {\i environment with arguments}. The arguments are given, in braces as usual, just after the closing brace after the environments name. In the case of {\i0\scaps0\b0\f3 tabular} there is a single mandatory argument giving the justification of the entries in each column: {\i0\scaps0\b0\f3 l} for left justified, {\i0\scaps0\b0\f3 r} for right justified, and {\i0\scaps0\b0\f3 c} for centred. There must be an entry for each column of the table, and there is no default. Let\rquote s start with a simple table.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par \\begin\{tabular\}\{llrrl\} \par \\bf Student name & \\bf Number & \\bf Test 1 & \\bf Test 2 & \\bf Comment\\\\ \par F. Basset & 865432 & 78 & 85 & Pleasing\\\\ \par H. Hosepipe & 829134 & 5 & 10 & Improving\\\\ \par I.N. Middle & 853931 & 48 & 47 & Can make it \par \\end\{tabular\} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 will produce the following no-frills table\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\fs19 {\par {\trowd\cellx2547\cellx4176\cellx5805\cellx7434\cellx9216 {\pard\intbl\ql {\i0\scaps0\b Student name}\cell} {\pard\intbl\ql {\i0\scaps0\b Number}\cell} {\pard\intbl\qr {\i0\scaps0\b Test 1}\cell} {\pard\intbl\qr {\i0\scaps0\b Test 2}\cell} {\pard\intbl\ql {\i0\scaps0\b Comment}\cell} \row} {\trowd\cellx2547\cellx4176\cellx5805\cellx7434\cellx9216 {\pard\intbl\ql {F. Basset}\cell} {\pard\intbl\ql {865432}\cell} {\pard\intbl\qr {78}\cell} {\pard\intbl\qr {85}\cell} {\pard\intbl\ql {Pleasing}\cell} \row} {\trowd\cellx2547\cellx4176\cellx5805\cellx7434\cellx9216 {\pard\intbl\ql {H. Hosepipe}\cell} {\pard\intbl\ql {829134}\cell} {\pard\intbl\qr {5}\cell} {\pard\intbl\qr {10}\cell} {\pard\intbl\ql {Improving}\cell} \row} {\trowd\cellx2547\cellx4176\cellx5805\cellx7434\cellx9216 {\pard\intbl\ql {I.N. Middle}\cell} {\pard\intbl\ql {853931}\cell} {\pard\intbl\qr {48}\cell} {\pard\intbl\qr {47}\cell} {\pard\intbl\ql {Can make it}\cell} \row} } }}\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 Note that a {\b0\i0\scaps0\f3 \\\\} was not necessary at the end of the last row. Also note that, once again, the alignment of the {\b0\i0\scaps0\f3 &} characters was for human readability. It is conventional to set columns of numbers with right justification. The {\b0\i0\scaps0\f3 \\bf} directives apply only the entries in which they are given.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 A {\i0\scaps0\b0\f3 \emdash } typed in the {\i0\scaps0\b0\f3 tabular} environment\rquote s argument causes a vertical line to be drawn at the indicated position and extending for the height of the entire table. An {\b0\i0\scaps0\f3 \\hline} given in the environment draws a horizontal line extending the width of the table to be drawn at the vertical position at which the command is given. A {\b0\i0\scaps0\f3 \\cline}{\{{\i i}}-{{\i j}\}} draws a line spanning columns {{\i i}} to {{\i j}}, at the vertical position at which the command is given. A repeated line-drawing command causes a double line to be drawn. We illustrate line drawing in tables by putting some lines into our first table. We will type this example in a somewhat expanded form, trying to make it clear why the lines appear where they do.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par \\begin\{tabular\}\{|l|l|r|r|l|\} \par \\hline \par \\bf Student name & \\bf Number & \\bf Test 1 & \\bf Test 2 & \\bf Comment\\\\ \par \\hline \par F. Basset & 865432 & 78 & 85 & Pleasing\\\\ \par \\hline \par H. Hosepipe & 829134 & 5 & 10 & Improving\\\\ \par \\hline \par I.N. Middle & 853931 & 48 & 47 & Can make it\\\\ \par \\hline \par \\end\{tabular\} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 which will give\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\fs19 {\par {\trowd\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3233\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx4695\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6157\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7619\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx9217 {\pard\intbl\ql { \i0\scaps0\b Student name}\cell} {\pard\intbl\ql {\i0\scaps0\b Number}\cell} {\pard\intbl\qr {\i0\scaps0\b Test 1}\cell} {\pard\intbl\qr {\i0\scaps0\b Test 2}\cell} {\pard\intbl\ql {\i0\scaps0\b Comment}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3233\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx4695\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6157\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7619\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx9217 {\pard\intbl\ql { F. Basset}\cell} {\pard\intbl\ql {865432}\cell} {\pard\intbl\qr {78}\cell} {\pard\intbl\qr {85}\cell} {\pard\intbl\ql {Pleasing}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3233\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx4695\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6157\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7619\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx9217 {\pard\intbl\ql { H. Hosepipe}\cell} {\pard\intbl\ql {829134}\cell} {\pard\intbl\qr {5}\cell} {\pard\intbl\qr {10}\cell} {\pard\intbl\ql {Improving}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3233\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx4695\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6157\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7619\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx9217 {\pard\intbl\ql { I.N. Middle}\cell} {\pard\intbl\ql {853931}\cell} {\pard\intbl\qr {48}\cell} {\pard\intbl\qr {47}\cell} {\pard\intbl\ql {Can make it}\cell} \row} } }}\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 That way of laying out the source file makes it clear where the lines will go. As we (by now) well know, the returns that we pressed after the {\b0\i0\scaps0\f3 \\\\}s in typing this table might as well have been spaces as far as {\plain L{\up6\fs19 A}T{\dn7 E}X} is concerned. Thus it is common to have the {\b0\i0\scaps0\f3 \\hline} commands following the {\b0\i0\scaps0\f3 \\\\}s on the input lines. We will do this in future examples.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 The {\b0\i0\scaps0\f3 \\multicolumn} column can be used to overrule the overall format of the table for a few columns. The syntax of this command is\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \i0\scaps0\b0\f3 \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 \f3 \u92?multicolumn \{{\i n}\}\{{\i pos}\}\{{\i item}\} \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 where {{\i n}} is the number of columns of the original format that {\i item} is to span, and {\i pos} specifies the justification of the new argument.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par \\begin\{tabular\}\{||l|c|c|c||\} \\hline \par \\multicolumn\{4\}\{|c|\}\{\\LaTeX\\ size changing commands\}\\\\ \\hline \par Style option & 10pt (default) & \\tt 11pt & \\tt 12pt\\\\ \\hline \par \\tt\\bs footnotesize & 8pt & 9pt & 10pt\\\\ \\hline \par \\tt\\bs small & 9pt & 10pt & 11pt\\\\ \\hline \par \\tt\\bs large & 12pt & 12pt & 14pt\\\\ \\hline \par \\end\{tabular\} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 produces the following table:\par {\fs19 {\pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \fs19 \par {\trowd\clmgf\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\cellx4720\clmrg\clbrdrt\brdrs\clbrdrb\brdrs\cellx6780\clmrg\clbrdrt\brdrs\clbrdrb\brdrs\cellx8000\clmrg\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx9220 {\pard\intbl\qc { {\plain L{\up6\fs19 A}T{\dn7 E}X} size changing commands\cell} {\pard\intbl\cell} {\pard\intbl\cell} {\pard\intbl}\cell} \row} {\trowd\clbrdrl\brdrdb\clbrdrb\brdrs\clbrdrr\brdrs\cellx4720\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6780\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx8000\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrdb\cellx9220 {\pard\intbl\ql { Style option}\cell} {\pard\intbl\qc {10pt (default)}\cell} {\pard\intbl\qc {\i0\scaps0\b0\f3 11pt}\cell} {\pard\intbl\qc {\i0\scaps0\b0\f3 12pt}\cell} \row} {\trowd\clbrdrl\brdrdb\clbrdrb\brdrs\clbrdrr\brdrs\cellx4720\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6780\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx8000\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrdb\cellx9220 {\pard\intbl\ql { \i0\scaps0\b0\f3 \u92?footnotesize}\cell} {\pard\intbl\qc {8pt}\cell} {\pard\intbl\qc {9pt}\cell} {\pard\intbl\qc {10pt}\cell} \row} {\trowd\clbrdrl\brdrdb\clbrdrb\brdrs\clbrdrr\brdrs\cellx4720\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6780\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx8000\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrdb\cellx9220 {\pard\intbl\ql { \i0\scaps0\b0\f3 \u92?small}\cell} {\pard\intbl\qc {9pt}\cell} {\pard\intbl\qc {10pt}\cell} {\pard\intbl\qc {11pt}\cell} \row} {\trowd\clbrdrl\brdrdb\clbrdrb\brdrs\clbrdrr\brdrs\cellx4720\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6780\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx8000\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrdb\cellx9220 {\pard\intbl\ql { \i0\scaps0\b0\f3 \u92?large}\cell} {\pard\intbl\qc {12pt}\cell} {\pard\intbl\qc {12pt}\cell} {\pard\intbl\qc {14pt}\cell} \row} } \par }\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 2.4.23 {\i0\scaps0\b0\f3 figure} and {\i0\scaps0\b0\f3 table} environments\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 Figures (diagrams, pictures, etc.) and tables (perhaps created with the {\i0\scaps0\b0\f3 tabular} environment) cannot be split across pages. So {\plain L{\up6\fs19 A}T{\dn7 E}X} provides a mechanism for \ldblquote floating\rdblquote them to a nearby place where there is room for them. This may mean that your figure or table may appear a little later in the document than its declaration in the source file might suggest. You can suggest to {\plain L{\up6\fs19 A}T{\dn7 E}X} that it try to place the figure or table at the present position if there is room or, failing that, at the top or bottom of the present or following page. You can also ask for it to be presented by itself on a \ldblquote page of floats\rdblquote . \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 You suggest these options to {\plain L{\up6\fs19 A}T{\dn7 E}X} through an optional argument to the environment. One lists a combination of the letters {\i0\scaps0\b0\f3 h}, {\i0\scaps0\b0\f3 t}, {\i0\scaps0\b0\f3 b}, and {\i0\scaps0\b0\f3 p} where {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 {\b h} means that the object should be placed {\i here} if there is room, so that things will appear in the same order as in the source file, \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 {\b t} means that the object can be placed at the {\i top} of the of a text page, but no earlier than the present page. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 {\b b} means that the object can be placed at the {\i bottom} of a text page, but no earlier than the present page. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 {\b p} means that the object should be set on a {\i page of floats} that consists only of tables and figures. \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 A combination of these indicates decreasing order of preference. The default is {\i0\scaps0\b0\f3 tbp}. In this document I have tended to use {\i0\scaps0\b0\f3 htbp}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\plain L{\up6\fs19 A}T{\dn7 E}X} will also number and caption a figure or table for you, and compile a list of tables and a list of figures. Just include {\b0\i0\scaps0\f3 \\listoffigures} and {\b0\i0\scaps0\f3 \\listoftables} next to your {\b0\i0\scaps0\f3 \\tableofcontents} command at the beginning of the document. To caption a table of figure, include {\b0\i0\scaps0\f3 \\caption\{}{\i caption text}{\b0\i0\scaps0\f3 \}} just before the {\b0\i0\scaps0\f3 \\end\{table\}} or {\b0\i0\scaps0\f3 \\end\{figure\}} command. Here\rquote s a sample source file.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par \\begin\{table\}[htbp] \par \\begin\{tabular\}\{lrll\} \par ... \par \\end\{tabular\} \par \\caption\{Mark analysis\} \par \\end\{table\} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 To leave space for a figure that will inserted by some other means at a later date, we can use the {\b0\i0\scaps0\f3 \\vspace} command:\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par \\begin\{figure\}[htbp] \par \\vspace\{9.5cm\} \par \\caption\{An artists impression\} \par \\end\{figure\} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 Including graphics files prepared with drawing packages is possible, but beyond the scope of this introduction.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 2.4.24 The {\i0\scaps0\b0\f3 letter} document style\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 All this and we still don\rquote t know how to prepare a simple letter! Actually, there is very little to it.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Figure\~{\field{\*\fldinst{\lang1024 REF BMfig_letter \\* MERGEFORMAT }}{\fldrslt{2.1}}} shows a sample letter. We declare our own address and signature before entering the {\i0\scaps0\b0\f3 letter} environment because we can use repeated {\i0\scaps0\b0\f3 letter} environments to prepare multiple letters from the same source file. The address of the intended recipient of a particular letter is given as an argument to the {\i0\scaps0\b0\f3 letter} environment.\par {\pard\plain\s31\qc\sb120\sa0\keep\widctlpar\f0\fs24\sl240\slmult1 \sb240 \fi360 {\fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par \\documentstyle[12pt]\{letter\} \par \\begin\{document\} \par \\address\{(Underneath) Lion Bridge\\\\ \par Midway down Commercial Road\\\\ \par Pietermaritzburg\\\\ \par 3200\} \par \par \\signature\{F. Basset\\\\ \par Public nuisance\} \par \par \\begin\{Letter\}\{Director of Public Parks\\\\ \par Pietermaritzburg Municipality\\\\ \par Pietermaritzburg\} \par \par \\opening\{Kind Sir/Madam\} \par \par I wish to complain about the shocking practice of \par fencing off the base of trees. I notice with grave \par concern that this has occurred in the park bordering \par my stately residence. \par \par This has already caused me great inconvenience \par and public embarrassment, as you can imagine it would \par for a hound of my social standing. I demand that \par you take these obscene obstructions away without \par delay. \par \par \\closing\{Yours anxiously\} \par \\end\{letter\} \par \\end\{document\} \par \par }}\pard\plain\s30\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 {Figure {\*\bkmkstart BMfig_letter}2.1{\*\bkmkend BMfig_letter}: A sample letter}{\field{\*\fldinst TC "2.1 A sample letter" \\f f}{\fldrslt }}\par }\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb360 \fi0 2.4.25 Common pitfalls; Error messages\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 By now it should be clear that we have to work quite accurately when preparing a document. Typing errors in the running text can be absorbed, but messing up a control sequence name will halt the compiler with an error message. Before we look at some common errors and some ways to avoid them, let\rquote s have a look at a sample error message.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 You\rquote ll have noticed by now that when you run {\plain L{\up6\fs19 A}T{\dn7 E}X} on a source file, the transcript of the compiler session is written on a log file. When errors have accumulated to the point that {\plain L{\up6\fs19 A}T{\dn7 E}X} is hopelessly confused, it is time to debug your source file. The log file contains a reference to the line, or lines, of your source file that generated the error together with a description of the error.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\plain T{\dn7 E}X} and {\plain L{\up6\fs19 A}T{\dn7 E}X} error messages appear frightening at first sight, to say the least. They are actually very informative, but they can take some getting used to. Mistyped control sequences cause little pain, but a missing {\b0\i0\scaps0\f3 \\end\{}{\i environment}{\b0\i0\scaps0\f3 \}} can cause a good deal of confusion because it has the effect of making {\plain L{\up6\fs19 A}T{\dn7 E}X} try to set material into that environment that was never intended/designed to fit in such a place. Also, ommiting a mandatory argument can cause great confusion.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Suppose we type {\b0\i0\scaps0\f3 \\bold} instead of {\b0\i0\scaps0\f3 \\bf} in the following line:\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 { \fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par this is going to be \{\\bold very\} messy. \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 This produces the following error message:\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 { \fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par ! Undefined control sequence. \par 1.683 this is going to be \{\\bold \par very\} messy. \par ? \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 That not so bad! The line beginning with {\i0\scaps0\b0\f3 !} tells us that we have tried to used a control sequence that was not known to {\plain L{\up6\fs19 A}T{\dn7 E}X}; the {\i0\scaps0\b0\f3 1.683} tells us that the error occurred on line 683 of the source file; and the error message is split over two lines with the break occurring at the point where {\plain L{\up6\fs19 A}T{\dn7 E}X} detected a problem.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 But suppose we try the following\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par \\begin\{tabular\}\{llrrl\} \par Student name & Number & Test 1 & Test 2 & Comment\\\\ \par F. Basset & 865432 & 78 & 85 & Pleasing\\\\ \par H. Hosepipe & 829134 & 5 & 10 & Improving\\\\ \par I.N. Middle & 853931 & 48 & 47 & Can make it \par \par This shows that H.~Hosepipe's newfound concentration has... \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 i.e., we omit to provide the {\b0\i0\scaps0\f3 \\end\{tabular\}} that delimits the end of the environment. Not having been told that the environment is supposed to be concluded, {\plain L{\up6\fs19 A}T{\dn7 E}X} will try to set the text of the next paragraph as a table item\emdash and will scream blue murder when it finds that it doesn\rquote t conform to the syntax demanded.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par LaTeX error. See LaTeX manual for explanation. \par Type H for immediate help. \par ! \\begin\{tabular\} ended by \\end\{document\}. \par \\@latexerr ...diate help.\}\\errmessage \{#1\} \par \par \\@checkend ...urrenvir \\else \\@badend \{#1\} \par \\fi \par \\enddocument ->\\@checkend \{document\} \par \\clearpage \\begingroup \\if@filesw... \par \\end #1->\\csname end#1\\endcsname \par \\@checkend \{#1\}\\expandafter \\endgrou... \par l.58 \\end\{document\} \par \par ? \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 Now {\i that\rquote s} informative! Actually it {\i is} if we agree to ignore all but the the error indication line (the one beginning with the {\i0\scaps0\b0\f3 !}) and the line telling us where {\plain L{\up6\fs19 A}T{\dn7 E}X} noticed that all was not well (the one beginning {\i0\scaps0\b0\f3 1.58} in this case). The rest of the error message you can regard as being for your local {\plain T{\dn7 E}X} wizard to sort your problem out if you are unable to after consulting the manuals. Tough as it looks, we can decipher this message straight away: the error indicator line tell us that a {\i0\scaps0\b0\f3 tabular} environment was ended incorrectly (in this case by an {\b0\i0\scaps0\f3 \\end\{document\}}).\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\plain T{\dn7 E}X} error messages aren\rquote t all that bad once you\rquote ve made enough errors to get used to a few! Most can be avoided through {\i careful} preparation of the source file. Typing accurately and knowledge of the command syntax is a good start, but there are some other precautions that make good sense: {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 1.\tab Even if {\plain L{\up6\fs19 A}T{\dn7 E}X} is happy with free-form input, try to lay your input file out as regularly and logically as possible. See our examples of environments for formats to adopt. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 2.\tab It is important that all group delimiters be properly matched, i.e., braces and {\i0\scaps0\b0\f3 \u92?begin\{\}}\u8230?{\i0\scaps0\b0\f3 \u92?end\{\}} must come in pairs. A good habit to fall in to is to always type such things in pairs and then move the cursor back between them and type the intervening material. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 3.\tab Don\rquote t forget command arguments when they are mandatory. Always ask yourself what a particular commands {\i needs from you} in order to make the decisions that are required of it. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 4.\tab Remember the 10 characters that are specially reserved for commenting, table item separation, etc. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 5.\tab When we look at mathematical typesetting in the next chapter, we will see that the same principles apply there. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 6.\tab Try to use a text editor that has a {\plain T{\dn7 E}X} mode, or at least one that will match brackets for you. \par }\pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb300 \fi0 2.5 Summary\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 We have learned pretty much all we need to know in order to prepare non-mathematical documents. There has been quite a lot of material, all told, but we\rquote re fortunate that the average document requires only a fraction of what we\rquote ve listed here. Furthermore, we\rquote ll find that what we\rquote ve learned equips us with a good deal of the framework needed for mathematical typesetting.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 The important thing to extract from this chapter is some feel for what I termed the \ldblquote spirit of {\plain T{\dn7 E}X}\rdblquote at the chapter beginning. I cannot emphasise enough the importance of getting your mind out of \ldblquote word processing\rdblquote mode and into \ldblquote typesetting\rdblquote mode. Always keep uppermost in your mind the task at hand: you are to describe the logical content of the document to {\plain L{\up6\fs19 A}T{\dn7 E}X}, so furnishing it with enough information to perform all the formatting for you.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Many of the earlier sections of this chapter will become trivially easy to you after just a little experimentation with {\plain L{\up6\fs19 A}T{\dn7 E}X}. The best way to learn the syntax of the more complicated environments is to use them\emdash try typesetting the examples, for instance. It is important that you come to terms with the {\i0\scaps0\b0\f3 tabular} environment, for its syntax is typical of many of the mathematical constructs that we will use.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 If you have not already done so, then now is the time to try preparing some documents of your own. Try including all the material from this chapter, for that is the best way to remember it all. When the initial lack of familiarity wears off, you\rquote ll find that {\plain L{\up6\fs19 A}T{\dn7 E}X} is really a whole lot friendlier and easier to use than you expected.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 We must also recognise that there is a lot more to some of the command than detailed here. Some accept optional argumnets that were not mentioned, others have more options than we considered. And even once we have a full description of each command, there is still much to be learned for there is much that can be achieved through creative use of some of the environments.\par \page \pard\plain\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \fi0 Chapter 3\par \pard\plain\s2\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \sb240 \fi0 Mathematical typesetting with {\plain L{\up6\fs19 A}T{\dn7 E}X}\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb240 \fi0 The last chapter taught us a good deal of what we need to know in order to prepare quite complicated non-mathematical documents. There are still a number of useful topics that we have not covered (such as cross-referencing), but we\rquote ll defer discussion of those until a later chapter. In the present chapter, we\rquote ll learn how {\plain L{\up6\fs19 A}T{\dn7 E}X} typesets mathematics. It should come as no surprise that {\plain L{\up6\fs19 A}T{\dn7 E}X} does most of the work for us.\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 3.1 Introduction\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 In text-only documents we saw that our task was to describe the logical components of each sentence, paragraph, section, table, etc. When we tell {\plain L{\up6\fs19 A}T{\dn7 E}X} to go into {\i mathematical mode}, we have to describe the logical parts of a formula, matrix, operator, special symbol, etc. {\plain T{\dn7 E}X} has been taught to recognize a binary operation, a binary relation, a variable, an operator that expects limits, and so on. We just need to supply the parts that make up each of these, and {\plain T{\dn7 E}X} will take care of the rest. It will leave appropriate space around operators, italicise variables, set an operator name in roman type, leave the correct space after colons, place sub- and superscripts in the correct positions (based on what it is you\rquote re working with), choose the correct typesizes, \u8230? the list of things it has been taught is enormous. When you want to revert to setting normal text again, you tell {\plain L{\up6\fs19 A}T{\dn7 E}X} too leave maths mode and go back into the mode it was in (paragraphing mode).\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\plain L{\up6\fs19 A}T{\dn7 E}X} cannot be expected to perform these mode shifts itself, for it is not always clear just when it is mathematics that has been typed. For example, should an isolated letter {\i0\scaps0\b0\f3 a} in the input file be regarded as a word (as in the definite article) or a mathematical variable (as in the variable {{\i a}}). There are no reliable rules for {\plain L{\up6\fs19 A}T{\dn7 E}X} to make such decisions by, so the begin-math and end-math mode switching is left entirely to you.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 The symbol {\b0\i0\scaps0\f3 $} is specially reserved{\cs62\super\chftn} {\*\footnote\pard \s65\ql\fi-113\li397\lin397\f0\fs24{\cs62\super\chftn} See section {\field{\*\fldinst{\lang1024 REF BMsec_reserved \\* MERGEFORMAT }}{\fldrslt{2.4.4}}}} by {\plain L{\up6\fs19 A}T{\dn7 E}X} as the \ldblquote math shift\rdblquote symbol. When {\plain L{\up6\fs19 A}T{\dn7 E}X} starts setting a document it is in paragraphing mode, ready to set lines of the input file into paragraphs. It remains in this mode until it encounters a {\b0\i0\scaps0\f3 $} symbol, which shifts {\plain L{\up6\fs19 A}T{\dn7 E}X} into mathematical mode. It now knows to be on the look-out for the components of a mathematical expression, rather than for words and paragraphs. It reads everything up to the next {\b0\i0\scaps0\f3 $} sign in this mathemtical mode, and then shifts back to paragraphing mode (i.e. the mode it was in before we took it in to maths mode).\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 You must be careful to balance your begin-math and end-math symbols. It is often a good idea to type two {\b0\i0\scaps0\f3 $} symbols and then move back between them and type the mathematical expression. If the math-shift symbols in a document are not matched, then {\plain L{\up6\fs19 A}T{\dn7 E}X} will become confused because it will be trying to set non-mathematical material as mathematics.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 For those who find having the same symbol for both math-begin and math-end confusing or dangerous, there are two control symbols that perform the same operations: the control symbol {\b0\i0\scaps0\f3 \\(} is a begin-math instruction, and the control symbol {\b0\i0\scaps0\f3 \\)} is an end-math instruction. Since it is easy to \ldblquote lose\rdblquote a {\b0\i0\scaps0\f3 $} sign when typing a long formula, a math environment is provided for such occasions: you can use {\b0\i0\scaps0\f3 \\begin\{math\}} and {\b0\i0\scaps0\f3 \\end\{math\}} as the math-shift instructions. Of course, you could just decide to use {\b0\i0\scaps0\f3 $} and take your chances.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Let\rquote s have a look at some mathematics.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par \\LaTeX\\ is normally in paragraphing mode, where \par it expects to find the usual paragraph material. Including \par a mathematical expression, like $2x+3y - 4z= -1$, in the \par paragraph text is easy. \\TeX\\ has been taught to recognize \par the basic elements of an expression, and typeset them appropriately, \par choosing spacing, positioning, fonts, and so on. \par Typing the above expression without entering maths \par mode produces the incorrect result: 2x+3y - 4z= -1 \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 will produce the following paragraph\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\fs19 {\plain L{\up6\fs19 A}T{\dn7 E}X} is normally in paragraphing mode, where it expects to find the usual paragraph material. Including a mathematical expression, like {2{\i x}+3{\i y}\u8722?4{\i z}=\u8722?1}, in the paragraph text is easy. {\plain T{\dn7 E}X} has been taught to recognize the basic elements of an expression, and typeset them appropriately, choosing spacing, positioning, fonts, and so on. Typing the above expression without entering maths mode produces the incorrect result: 2x+3y - 4z= -1 }}\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 Notice that {\plain L{\up6\fs19 A}T{\dn7 E}X} sets space around the binary relation {=} and space around the binary operators {+} and {\u8722?} on the left hand side of the equation, ignoring the spacing we typed in the input. It was also able to recognize that the {\u8722?1} on the right hand side of the equation was a unary minus\emdash negating the {1} rather than being used to indicate subtraction\emdash and so did not put space around it. It also italicised the variables {{\i x}}, {{\i y}}, and {{\i z}}. However, it did not italicise the number {1}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 In typing a mathematical expression we must remember to keep the following in mind: {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 1.\tab All letters that are not part of an argument to some control sequence will be italicised. Arguments to control sequences will be set according to the definition of the command used. So typing {\b0\i0\scaps0\f3 $f(x)>0 for x > 1$} will produce \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx4610\sl240\slmult1 \li600\fi0 \tab {\i f}({\i x})>0{\i f}{\i o}{\i r}{\i x}>1\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \li600\fi0 instead of the expression \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx4610\sl240\slmult1 \li600\fi0 \tab {\i f}({\i x})>0{{ }for{ }}{\i x}>1\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \li600\fi0 that we intended. Numerals and punctuation marks are set in normal roman type but {\plain L{\up6\fs19 A}T{\dn7 E}X} will take care of the spacing around punctuation symbols, as in\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \li600\fi0 {\fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \li600\fi0 \fs19 \par $f(x,y) \\geq 0$ \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li600\fi0 which produces \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx4610\sl240\slmult1 \li600\fi0 \tab {\i f}({\i x},{\i y}){\u8805*}0{ }.\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 2.\tab Even a single letter can constitute a formula, as in \ldblquote the constant {{\i a}}\rdblquote . To type this you enter {\b0\i0\scaps0\f3 $a$} in your source file. If you do not go in to maths mode to type the symbol, you\rquote ll get things like \ldblquote the constant a\rdblquote .\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 3.\tab Some symbols have a different meaning when typed in maths mode. Not only do ordinary letters become variables, but symbols such as {\b0\i0\scaps0\f3 -} and {\b0\i0\scaps0\f3 +} are now interpreted as mathematical symbols. Thus in maths mode {\b0\i0\scaps0\f3 -} is no longer considered a hyphen, but as a minus sign.\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 4.\tab {\plain L{\up6\fs19 A}T{\dn7 E}X} ignores all spaces and carriage returns when in maths mode, without exception. So typing something like {\b0\i0\scaps0\f3 the constant$ a$} will produce \ldblquote the constant{{\i a}}\rdblquote . You should have typed {\b0\i0\scaps0\f3 the constant $a$}. {\plain L{\up6\fs19 A}T{\dn7 E}X} is responsible for all spacing when in maths mode, and (as in paragraphing mode) you have to specially ask to have spacing changed. Even if {\plain L{\up6\fs19 A}T{\dn7 E}X} does ignore all spaces when in maths mode you should (as always in {\plain T{\dn7 E}X}) still employ spaces to keep your source file readable. \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 The above means that, at least for most material, a typist need not understand the mathematics in order to typeset it correctly. And even if one does understand the mathematics, {\plain L{\up6\fs19 A}T{\dn7 E}X} is there to make sure that you adhere to accepted typesetting conventions (whether you were aware of their existence or not).\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 So one could type either\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 { \fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par $f(x, y) = 2 (x+ y)y/(5xy - 3 )$ \par \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 \fs19 {\fs24 or}\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par $f(x,y) = 2(x+y)y / (5xy-3)$ \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 and you\rquote d still get the correct result \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx4610\sl240\slmult1 \fi0 \tab {\i f}({\i x},{\i y})=2({\i x}+{\i y}){\i y}/(5{\i x}{\i y}\u8722?3){ }.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 There are some places where this can go wrong. For instance, if we wish to speak of the {{\i x}}-{{\i y}} plane then one has to know that it is an {\i endash} that is supposed to be placed between the {{\i x}} and the {{\i y}}, not a minus sign (as {\b0\i0\scaps0\f3 $x-y$} would produce). But typing {\b0\i0\scaps0\f3 $x--y$} will produce {{\i x}\u8722?\u8722?{\i y}} since both dashes are interpreted as minus signs. To avoid speaking of the {{\i x}\u8722?{\i y}} plane or the {{\i x}\u8722?\u8722?{\i y}} plane, we should type it as {\b0\i0\scaps0\f3 the $x$--$y$ plane}. We are fortunate that {\plain L{\up6\fs19 A}T{\dn7 E}X} can recognise and cope with by far the majority of our mathematical typesetting needs.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Another thing to look out for is the use of braces in an expression. Typing\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 { \fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par $\{x : f(x)>0\}$ \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 will not produce any braces. This is because, as we well know, braces are reserved for delimiting groups in the input file. Looking back to section\~{\field{\*\fldinst{\lang1024 REF BMsec_reserved \\* MERGEFORMAT }}{\fldrslt{2.4.4}}}, we see how it should be done:\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 { \fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par $ \\\{ x: f(x)>0 \\\} $ \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 Math shift commands also behave as scope delimiters, so that commands issued in an expression cannot affect anything else in a document.\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 {\*\bkmkstart BMsec_display}3.2{\*\bkmkend BMsec_display} Displaying a formula\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\plain L{\up6\fs19 A}T{\dn7 E}X} considers an expression {\b0\i0\scaps0\f3 $ ... $} to be word-like in the sense that it considers it to be eligible for splitting across lines of a paragraph (but without hyphenation, of course). {\plain L{\up6\fs19 A}T{\dn7 E}X} assigns quite a high penalty to doing this, thus trying to avoid it (remember that {\plain L{\up6\fs19 A}T{\dn7 E}X} tries to minimize the \ldblquote badness\rdblquote of a paragraph). When there is no other way, it will split the expression at a suitable place. But there are some expressions which are just too long to fit into the running text without looking awkward. These are best \ldblquote displayed\rdblquote on a line by themselves. Also, some expressions are sufficiently important that they should be made to stand out. These, too, should be displayed on a line of their own.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 The mechanism for displaying an expression is the {\i display math} mode, which is begun by typing {\b0\i0\scaps0\f3 $$} and ended by typing the same sequence (which again means that we\rquote d better be sure to type them in pairs). Corresponding to the alternatives {\b0\i0\scaps0\f3 \\(} and {\b0\i0\scaps0\f3 \\)} that we had for the math shift character {\b0\i0\scaps0\f3 $}, we may use {\b0\i0\scaps0\f3 \\[} and {\b0\i0\scaps0\f3 \\]} as the display-math shift sequences. One can also use the environment\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par \\begin\{displaymath\} ... \\end\{displaymath\} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 which is equivalent to {\b0\i0\scaps0\f3 $$ ... $$} and is suitable for use with long displayed expressions. If you wish {\plain L{\up6\fs19 A}T{\dn7 E}X} to number your equations for you you can use the environment\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 { \fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par \\begin\{equation\} ... \\end\{equation\} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 which is the same as the {\b0\i0\scaps0\f3 displaymath} environment, except that an equation number will be generated.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 It is poor style to have a displayed expression either begin a paragraph or be a paragraph by itself. This can be avoided if you agree to {\i never leave a blank line in your input file before a math display}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 We will see later how to typeset an expression that is to span multiple lines. For now, let\rquote s look at an example of displaying an expression:\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par For each $a$ for which the Lebesgue-set $L_a(f) \\neq \\emptyset$ we define \par $$ % We could have used \\begin\{displaymath\} here \par \{\\cal B\}_a(f) = \\\{ L_\{a+r\}(f) : r > 0 \\\}, \par $$ % and \\end\{displaymath\} here \par and these are easily seen to be completely regular. \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 which produces\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\fs19 For each {{\i a}} for which the Lebesgue-set {{\field{\*\fldinst{ EQ {\i L}\\s\\do4({\fs15 {\i a}})({\i f}){\u8800*}{\u8709*}}}{\fldrslt }} } we define \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx4610\sl240\slmult1 \fi0 \fs19 \tab {\field{\*\fldinst{ EQ {{\i B}}\\s\\do4({\fs15 {\i a}})({\i f})=\{{\i L}\\s\\do4({\fs15 {\i a}+{\i r}})({\i f}):{\i r}>0\}\\,}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 \fs19 and these are easily seen to be completely regular. }}\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 That illustrates how to display an expression, but also shows that we\rquote ve got a lot more to learn about mathematical typesetting. Before we have a look at how to arrange symbols all over the show (e.g. the subscripting above) we must learn how to access the multitude of symbols that are used in mathematical texts.\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 {\*\bkmkstart BMsec_symbols}3.3{\*\bkmkend BMsec_symbols} Using mathematical symbols\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\plain L{\up6\fs19 A}T{\dn7 E}X} puts all the esoteric symbols of mathematics at our fingertips. They are all referenced by name, with the naming system being perfectly logical and systematic. None of the control words that access these symbols accepts an argument, but we\rquote ll soon see that some of them prepare {\plain L{\up6\fs19 A}T{\dn7 E}X} for something that might follow. For instance, when you ask for the symbol \lquote {{\field{\*\fldinst{ EQ \\i \\su(,, )}}{\fldrslt }} }\rquote {\plain L{\up6\fs19 A}T{\dn7 E}X} is warned that any sub- or superscripts that follow should be positioned appropriately as limits to a summation. In keeping with the {\plain T{\dn7 E}X} spirit, none of this requires any additional work on your part.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 We\rquote ll also see that some of the symbols behave differently depending on where they are used. For instance, when I ask for {{\field{\*\fldinst{ EQ \\i \\su({\i i}=1,{\i n}, ){\i a}\\s\\do6({\fs20 {\i i}})}}{\fldrslt }} } within the running text, the limits are places differently to when I ask for that expression to be displayed: \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx4610\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ \\i \\su({\i i}=1,{\i n}, ){\i a}\\s\\do6({\fs20 {\i i}}){ }.}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 Again, I typed nothing different here\emdash just asked for display math mode.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 It is important to note that {\i almost all of the special maths symbols are unavailable in ordinary paragraphing mode}. If you need to use one there, then use an in-line math expression {\b0\i0\scaps0\f3 $...$}.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 3.3.1 Symbols available from the keyboard\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 A small percentage of the available symbols can be obtained from just a single key press. They are {+} {\u8722?} {=} {<} {>} {|} {/} {(} {)} {[} {]} and {*}. Note that these must be typed {\i within maths mode} to be interpreted as math symbols.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Of course, all of {{\i a}}\endash {{\i z}}, {{\i A}}\endash {{\i Z}}, the numerals {0,1,2,\u8230?,9} and the punctuation characters {,} {;} and {:} are available directly from the keyboard. Alphabetic letters will be assumed to be variables that are to be italicised, unless told otherwise{\cs62\super\chftn} {\*\footnote\pard \s65\ql\fi-113\li397\lin397\f0\fs24{\cs62\super\chftn} See section {\field{\*\fldinst{\lang1024 REF BMsec_mathtext \\* MERGEFORMAT }}{\fldrslt{3.4.6}}}} . The numerals receive no special attention, appearing precisely as in normal paragraphing mode. The punctuation symbols are still set in standard roman type when read in maths mode, but a little space is left after them so that expressions like {{\field{\*\fldinst{ EQ \{{\i x}\\s\\do6({\fs20 {\i i}}):{\i i}=1\\,2\\,\u8230?\\,10\}}}{\fldrslt }} } look like they should. Note that this means that normal sentence punctuation should not migrate into an expression.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 3.3.2 Greek letters\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 Tables {\field{\*\fldinst{\lang1024 REF BMtab_lgreek \\* MERGEFORMAT }}{\fldrslt{3.1}}} and {\field{\*\fldinst{\lang1024 REF BMtab_ugreek \\* MERGEFORMAT }}{\fldrslt{3.2}}} show the control sequences that produce the letters of the Greek alphabet. We see that a lowercase Greek letter is simply is accessed by typing the control word of the same name as the symbol, using all lowercase letters. To obtain an uppercase Greek letter, simply capitalise the {\i first} letter of its name.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Just as {\b0\i0\scaps0\f3 $mistake$} produces {{\i m}{\i i}{\i s}{\i t}{\i a}{\i k}{\i e}} because the letters are interpreted as variables, so too will {\b0\i0\scaps0\f3 $\\tai \\epsilon \\chi$} produce the incorrectly spaced {{\u964*}{\u949*}{\u967*}} if you try to type greek words like this. {\plain T{\dn7 E}X} can be taught to set Greek, but this is not the way. {{\u964*}{\u949*}{\u967*}}, incidentally, is the Greek word for \ldblquote art\rdblquote and it is from the initials of the Greek letters constituting this word that the name {\plain T{\dn7 E}X} was derived. {\plain T{\dn7 E}X} is \ldblquote the art of typesetting\rdblquote .\par {\pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs24\sl240\slmult1 \sb240 \fi0 \par \fs19 {\pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs24\sl240\slmult1 \fi0 \fs19 \par {\trowd\cellx768\cellx2271\cellx3239\cellx4942\cellx5576\cellx6945\cellx7713\cellx9216 {\pard\intbl\ql {{{\u945*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?alpha}\cell} {\pard\intbl\ql {{{\u946*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?beta}\cell} {\pard\intbl\ql {{{\u947*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?gamma}\cell} {\pard\intbl\ql {{{\u948*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?delta}\cell} \row} {\trowd\cellx768\cellx2271\cellx3239\cellx4942\cellx5576\cellx6945\cellx7713\cellx9216 {\pard\intbl\ql {{{\u949*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?epsilon}\cell} {\pard\intbl\ql {{{\u949*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?varepsilon}\cell} {\pard\intbl\ql {{{\u950*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?zeta}\cell} {\pard\intbl\ql {{{\u951*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?eta}\cell} \row} {\trowd\cellx768\cellx2271\cellx3239\cellx4942\cellx5576\cellx6945\cellx7713\cellx9216 {\pard\intbl\ql {{{\u920*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?theta}\cell} {\pard\intbl\ql {{{\u977*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?vartheta}\cell} {\pard\intbl\ql {{{\u953*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?iota}\cell} {\pard\intbl\ql {{{\u954*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?kappa}\cell} \row} {\trowd\cellx768\cellx2271\cellx3239\cellx4942\cellx5576\cellx6945\cellx7713\cellx9216 {\pard\intbl\ql {{{\u955*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?lambda}\cell} {\pard\intbl\ql {{{\u956*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?mu}\cell} {\pard\intbl\ql {{{\u957*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?nu}\cell} {\pard\intbl\ql {{{\u958*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?xi}\cell} \row} {\trowd\cellx768\cellx2271\cellx3239\cellx4942\cellx5576\cellx6945\cellx7713\cellx9216 {\pard\intbl\ql {{{\u960*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?pi}\cell} {\pard\intbl\ql {{{\u982*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?varpi}\cell} {\pard\intbl\ql {{{\u1009*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?rho}\cell} {\pard\intbl\ql {{{\u1009*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?varrho}\cell} \row} {\trowd\cellx768\cellx2271\cellx3239\cellx4942\cellx5576\cellx6945\cellx7713\cellx9216 {\pard\intbl\ql {{{\u963*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?sigma}\cell} {\pard\intbl\ql {{{\u962*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?varsigma}\cell} {\pard\intbl\ql {{{\u964*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?tau}\cell} {\pard\intbl\ql {{{\u8593*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?upsilon}\cell} \row} {\trowd\cellx768\cellx2271\cellx3239\cellx4942\cellx5576\cellx6945\cellx7713\cellx9216 {\pard\intbl\ql {{{\u966*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?phi}\cell} {\pard\intbl\ql {{{\u981*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?varphi}\cell} {\pard\intbl\ql {{{\u967*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?chi}\cell} {\pard\intbl\ql {{{\u968*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?psi}\cell} \row} {\trowd\cellx768\cellx2271 {\pard\intbl\ql {{{\u969*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?omega}\cell} \row} } \par \pard\plain\s30\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \fs19 {Table {\*\bkmkstart BMtab_lgreek}3.1{\*\bkmkend BMtab_lgreek}: \i0\scaps0\b0\f0 Lowercase Greek letters}{\field{\*\fldinst TC "3.1 \i0\scaps0\b0\f0 Lowercase Greek letters" \\f t}{\fldrslt }}\par }{\pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs24\sl240\slmult1 \sb480 \fi0 \par \fs19 {\pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs24\sl240\slmult1 \fi0 \fs19 \par {\trowd\cellx701\cellx2229\cellx2930\cellx4458\cellx5159\cellx6687\cellx7538\cellx9216 {\pard\intbl\ql {{{\u915*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?Gamma}\cell} {\pard\intbl\ql {{{\u916*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?Delta}\cell} {\pard\intbl\ql {{{\u964*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?Theta}\cell} {\pard\intbl\ql {{{\u923*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?Lambda}\cell} \row} {\trowd\cellx701\cellx2229\cellx2930\cellx4458\cellx5159\cellx6687\cellx7538\cellx9216 {\pard\intbl\ql {{{\u926*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?Xi}\cell} {\pard\intbl\ql {{{\u928*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?Pi}\cell} {\pard\intbl\ql {{{\u931*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?Sigma}\cell} {\pard\intbl\ql {{{\u933*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?Upsilon}\cell} \row} {\trowd\cellx701\cellx2229\cellx2930\cellx4458\cellx5159\cellx6687 {\pard\intbl\ql {{{\u934*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?Phi}\cell} {\pard\intbl\ql {{{\u936*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?Psi}\cell} {\pard\intbl\ql {{{\u937*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?Omega}\cell} \row} } \par \pard\plain\s30\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \fs19 {Table {\*\bkmkstart BMtab_ugreek}3.2{\*\bkmkend BMtab_ugreek}: \i0\scaps0\b0\f0 Uppercase Greek letters}{\field{\*\fldinst TC "3.2 \i0\scaps0\b0\f0 Uppercase Greek letters" \\f t}{\fldrslt }}\par }\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb360 \fi0 3.3.3 Calligraphic uppercase letters\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 The letters {{\i A},\u8230?,{\i Z}} are available through use of the style changing command {\b0\i0\scaps0\f3 \\cal}. This command behaves like the other style changing commands {\b0\i0\scaps0\f3 \\em}, {\b0\i0\scaps0\f3 \\it}, etc. so its scope must be delimited as with them. Thus we can type\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 { \fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par ... for the filter $\\cal F$ we have $\\varphi(\{\\cal F\}) = \\cal G$. \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 to obtain\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\fs19 for the filter {{\i F}} we have {{\u981*}({{\i F}})={\i G}}. }}\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 There is no need to tabulate all the calligraphic letters, since they are all obtained by just a type style changing command. We will just list them so that we can see, for reference purposes, what they all look like. Here they are:\par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx4610\sl240\slmult1 \fi0 \tab {{\i A}}{{\i B}}{{\i C}}{{\i D}}{{\i E}}{{\i F}}{{\i G}}{{\i H}}{{\i I}}{{\i J}}{{\i K}}{{\i L}}{{\i M}}{{\i N}}{{\i O}}{{\i P}}{{\i Q}}{{\i R}}{{\i S}}{{\i T}}{{\i U}}{{\i V}}{{\i W}}{{\i X}}{{\i Y}}{\i Z}\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 3.3.4 Binary operators\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\plain L{\up6\fs19 A}T{\dn7 E}X} has been taught to recognise binary operators and set the appropriate space either side of one\emdash i.e., it sets the first argument followed by a little space, then the operator followed by the same little space and finally the second argument. Table\~{\field{\*\fldinst{\lang1024 REF BMtab_binops \\* MERGEFORMAT }}{\fldrslt{3.3}}} shows the binary operators that are available via {\plain L{\up6\fs19 A}T{\dn7 E}X} control words (recall that the binary operators {+}, {\u8722?}, and {*} can be typed from the keyboard). Here are some examples of their use: {\par \fs19 {{\pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \sb120 \fi0 \fs19 \par {\trowd\cellx5020\cellx9220 {\pard\intbl\ql {\scaps0\b0\i {Type}}\cell} {\pard\intbl\ql {\scaps0\b0\i To produce}\cell} \row} {\trowd\cellx5020\cellx9220 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $a+b$}}\cell} {\pard\intbl\ql {{{\i a}+{\i b}}}\cell} \row} {\trowd\cellx5020\cellx9220 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $(a+b) \\ otimes c$}}\cell} {\pard\intbl\ql {{({\i a}+{\i b}){\f5\u8855*}{\i c}}}\cell} \row} {\trowd\cellx5020\cellx9220 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $(a \\vee b) \\wedge c$}}\cell} {\pard\intbl\ql {{({\i a}{\f5\u8744*}{\i b}){\f5\u8743*}{\i c}}}\cell} \row} {\trowd\cellx5020\cellx9220 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $X - (A \\cap B) = (X-A) \\cup (X-B)$}}\cell} {\pard\intbl\ql {{{\i X}\u8722?({\i A}{\u8745*}{\i B})=({\i X}\u8722?{\i A}){\f5\u8746*}({\i X}\u8722?{\i B})}}\cell} \row} }\par }}{\pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs24\sl240\slmult1 \sb360 \fi0 \par \fs19 {\pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs24\sl240\slmult1 \fi0 \fs19 \par {\trowd\cellx692\cellx2037\cellx2789\cellx4193\cellx5360\cellx7179\cellx7871\cellx9216 {\pard\intbl\ql {{{\u177*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?pm}\cell} {\pard\intbl\ql {{{\u8745*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?cap}\cell} {\pard\intbl\ql {{{\u8900*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?diamond}\cell} {\pard\intbl\ql {{{\f5\u8853*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?oplus}\cell} \row} {\trowd\cellx692\cellx2037\cellx2789\cellx4193\cellx5360\cellx7179\cellx7871\cellx9216 {\pard\intbl\ql {{{\f5\u8723*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?mp}\cell} {\pard\intbl\ql {{{\f5\u8746*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?cup}\cell} {\pard\intbl\ql {{{\f5\u9651*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?bigtriangleup}\cell} {\pard\intbl\ql {{{\f5\u8854*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?ominus}\cell} \row} {\trowd\cellx692\cellx2037\cellx2789\cellx4193\cellx5360\cellx7179\cellx7871\cellx9216 {\pard\intbl\ql {{{\u215*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?times}\cell} {\pard\intbl\ql {{{\u8846*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?uplus}\cell} {\pard\intbl\ql {{{\f5\u9661*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?bigtriangledown}\cell} {\pard\intbl\ql {{{\f5\u8855*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?otimes}\cell} \row} {\trowd\cellx692\cellx2037\cellx2789\cellx4193\cellx5360\cellx7179\cellx7871\cellx9216 {\pard\intbl\ql {{{\u247*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?div}\cell} {\pard\intbl\ql {{{\u8851*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?sqcap}\cell} {\pard\intbl\ql {{{\u9667*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?triangleleft}\cell} {\pard\intbl\ql {{{\f5\u8856*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?oslash}\cell} \row} {\trowd\cellx692\cellx2037\cellx2789\cellx4193\cellx5360\cellx7179\cellx7871\cellx9216 {\pard\intbl\ql {{{\u8727*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?ast}\cell} {\pard\intbl\ql {{{\u8852*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?sqcup}\cell} {\pard\intbl\ql {{{\u9657*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?triangleright}\cell} {\pard\intbl\ql {{{\f5\u8857*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?odot}\cell} \row} {\trowd\cellx692\cellx2037\cellx2789\cellx4193\cellx5360\cellx7179\cellx7871\cellx9216 {\pard\intbl\ql {{{\u8902*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?star}\cell} {\pard\intbl\ql {{{\f5\u8744*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?vee}\cell} {\pard\intbl\ql {{{\f5\u8743*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?wedge}\cell} {\pard\intbl\ql {{{\u9675*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?bigcirc}\cell} \row} {\trowd\cellx692\cellx2037\cellx2789\cellx4193\cellx5360\cellx7179\cellx7871\cellx9216 {\pard\intbl\ql {{\'86}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?dagger}\cell} {\pard\intbl\ql {{{\u8726*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?setminus}\cell} {\pard\intbl\ql {{{\f5\u8720*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?amalg}\cell} {\pard\intbl\ql {{{\u8728*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?circ}\cell} \row} {\trowd\cellx692\cellx2037\cellx2789\cellx4193\cellx5360\cellx7179\cellx7871\cellx9216 {\pard\intbl\ql {{\'87}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?ddagger}\cell} {\pard\intbl\ql {{{\u8901*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?cdot}\cell} {\pard\intbl\ql {{{\u8768*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?wr}\cell} {\pard\intbl\ql {{{\u8226*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?bullet}\cell} \row} } \par \pard\plain\s30\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \fs19 {Table {\*\bkmkstart BMtab_binops}3.3{\*\bkmkend BMtab_binops}: \i0\scaps0\b0\f0 Binary Operation Symbols}{\field{\*\fldinst TC "3.3 \i0\scaps0\b0\f0 Binary Operation Symbols" \\f t}{\fldrslt }}\par }\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb360 \fi0 3.3.5 Binary relations\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\plain L{\up6\fs19 A}T{\dn7 E}X} has been taught to recognize the use of binary relations, too. Table\~{\field{\*\fldinst{\lang1024 REF BMtab_binrels \\* MERGEFORMAT }}{\fldrslt{3.4}}} shows those available via {\plain L{\up6\fs19 A}T{\dn7 E}X} control words. There are a few that you can obtain directly from the keyboard: {<}, {>}, {=}, and {|}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 To negate a symbol you can precede the control word that gives the symbol by a {\b0\i0\scaps0\f3 \\not}. Some symbols come with ready-made negations, which should be used above the {\b0\i0\scaps0\f3 \\not}\rquote ing method because the slope of the negating line is just slightly changed to look more pleasing. Thus {\b0\i0\scaps0\f3 \\notin} should be used above {\b0\i0\scaps0\f3 \\not\\in}, and {\b0\i0\scaps0\f3 \\neq} should be used above {\b0\i0\scaps0\f3 \\not =}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 If negating a symbol produces a slash whose horizontal positioning is not to your liking, then use the math spacing characters described in section\~{\field{\*\fldinst{\lang1024 REF BMsec_mathspace \\* MERGEFORMAT }}{\fldrslt{3.4.12}}} to adjust it.\par {\pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs24\sl240\slmult1 \sb240 \fi0 \par \fs19 {\pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs24\sl240\slmult1 \fi0 \fs19 \par {\trowd\cellx904\cellx2489\cellx3393\cellx4978\cellx5635\cellx6973\cellx7754\cellx9216 {\pard\intbl\ql {{{\u8804*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?leq}\cell} {\pard\intbl\ql {{{\u8805*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?geq}\cell} {\pard\intbl\ql {{{\u8801*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?equiv}\cell} {\pard\intbl\ql {{{\u8871*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?models}\cell} \row} {\trowd\cellx904\cellx2489\cellx3393\cellx4978\cellx5635\cellx6973\cellx7754\cellx9216 {\pard\intbl\ql {{{\u8826*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?prec}\cell} {\pard\intbl\ql {{{\u8827*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?succ}\cell} {\pard\intbl\ql {{{\f5\u8764*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?sim}\cell} {\pard\intbl\ql {{{\f5\u8869*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?perp}\cell} \row} {\trowd\cellx904\cellx2489\cellx3393\cellx4978\cellx5635\cellx6973\cellx7754\cellx9216 {\pard\intbl\ql {{{\f5\u10927*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?preceq}\cell} {\pard\intbl\ql {{{\f5\u10928*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?succeq}\cell} {\pard\intbl\ql {{{\u8771*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?simeq}\cell} {\pard\intbl\ql {{|}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?mid}\cell} \row} {\trowd\cellx904\cellx2489\cellx3393\cellx4978\cellx5635\cellx6973\cellx7754\cellx9216 {\pard\intbl\ql {{{\f5\u8810*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?ll}\cell} {\pard\intbl\ql {{{\f5\u8811*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?gg}\cell} {\pard\intbl\ql {{{\u8781*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?asymp}\cell} {\pard\intbl\ql {{{\f5\u8741*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?parallel}\cell} \row} {\trowd\cellx904\cellx2489\cellx3393\cellx4978\cellx5635\cellx6973\cellx7754\cellx9216 {\pard\intbl\ql {{{\f5\u8834*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?subset}\cell} {\pard\intbl\ql {{{\f5\u8835*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?supset}\cell} {\pard\intbl\ql {{{\u8776*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?approx}\cell} {\pard\intbl\ql {{{\u8904*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?bowtie}\cell} \row} {\trowd\cellx904\cellx2489\cellx3393\cellx4978\cellx5635\cellx6973\cellx7754\cellx9216 {\pard\intbl\ql {{{\f5\u8838*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?subseteq}\cell} {\pard\intbl\ql {{{\f5\u8839*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?supseteq}\cell} {\pard\intbl\ql {{{\u8773*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?cong}\cell} {\pard\intbl\ql {{{\u8904*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?Join}\cell} \row} {\trowd\cellx904\cellx2489\cellx3393\cellx4978\cellx5635\cellx6973\cellx7754\cellx9216 {\pard\intbl\ql {{{\u8847*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?sqsubset}\cell} {\pard\intbl\ql {{{\u8848*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?sqsupset}\cell} {\pard\intbl\ql {{{\u8800*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?neq}\cell} {\pard\intbl\ql {{{\f5\u8995*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?smile}\cell} \row} {\trowd\cellx904\cellx2489\cellx3393\cellx4978\cellx5635\cellx6973\cellx7754\cellx9216 {\pard\intbl\ql {{{\u8849*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?sqsubseteq}\cell} {\pard\intbl\ql {{{\u8850*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?sqsupseteq}\cell} {\pard\intbl\ql {{{\u8784*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?doteq}\cell} {\pard\intbl\ql {{{\f5\u8994*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?frown}\cell} \row} {\trowd\cellx904\cellx2489\cellx3393\cellx4978\cellx5635\cellx6973 {\pard\intbl\ql {{{\f5\u8712*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?in}\cell} {\pard\intbl\ql {{{\f5\u8715*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?ni}\cell} {\pard\intbl\ql {{{\f5\u8733*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?propto}\cell} \row} {\trowd\cellx904\cellx2489\cellx3393\cellx4978 {\pard\intbl\ql {{{\u8866*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?vdash}\cell} {\pard\intbl\ql {{{\u8867*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?dashv}\cell} \row} } \par \pard\plain\s30\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \fs19 {Table {\*\bkmkstart BMtab_binrels}3.4{\*\bkmkend BMtab_binrels}: \i0\scaps0\b0\f0 Binary relations}{\field{\*\fldinst TC "3.4 \i0\scaps0\b0\f0 Binary relations" \\f t}{\fldrslt }}\par }\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb360 \fi0 3.3.6 Miscellaneous symbols\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 Table\~{\field{\*\fldinst{\lang1024 REF BMtab_miscsym \\* MERGEFORMAT }}{\fldrslt{3.5}}} shows a number of general-purpose symbols. Remember that these are only available in maths mode. Note that {\b0\i0\scaps0\f3 \\imath} and {\b0\i0\scaps0\f3 \\jmath} should be used when you need to accent an {{\i i}} or a\~{{\i j}} in maths mode{\cs62\super\chftn} {\*\footnote\pard \s65\ql\fi-113\li397\lin397\f0\fs24{\cs62\super\chftn} See section {\field{\*\fldinst{\lang1024 REF BMsec_mathacc \\* MERGEFORMAT }}{\fldrslt{3.3.10}}}} \emdash you cannot use {\b0\i0\scaps0\f3 \\i} or {\b0\i0\scaps0\f3 \\j} that were available in paragraphing mode. To get a prime symbol, you can use {\b0\i0\scaps0\f3 \\prime} or you can just type {\b0\i0\scaps0\f3 '} when in maths mode, as in {\b0\i0\scaps0\f3 $f''(x)=x$} which produces {{\i f}''({\i x})={\i x}}.\par {\pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs24\sl240\slmult1 \sb240 \fi0 \par \fs19 {\pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs24\sl240\slmult1 \fi0 \fs19 \par {\trowd\cellx602\cellx1895\cellx2686\cellx4168\cellx5022\cellx6567\cellx7546\cellx9216 {\pard\intbl\ql {{{\u8501*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?aleph}\cell} {\pard\intbl\ql {{'}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?prime}\cell} {\pard\intbl\ql {{{\f5\u8704*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?forall}\cell} {\pard\intbl\ql {{{\u8734*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?infty}\cell} \row} {\trowd\cellx602\cellx1895\cellx2686\cellx4168\cellx5022\cellx6567\cellx7546\cellx9216 {\pard\intbl\ql {{{\u295*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?hbar}\cell} {\pard\intbl\ql {{{\u8709*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?emptyset}\cell} {\pard\intbl\ql {{{\f5\u8707*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?exists}\cell} {\pard\intbl\ql {{{\u9633*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?Box}\cell} \row} {\trowd\cellx602\cellx1895\cellx2686\cellx4168\cellx5022\cellx6567\cellx7546\cellx9216 {\pard\intbl\ql {{{\u305*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?imath}\cell} {\pard\intbl\ql {{{\f5\u8711*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?nabla}\cell} {\pard\intbl\ql {{{\u8800*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?neg}\cell} {\pard\intbl\ql {{{\u9653*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?triangle}\cell} \row} {\trowd\cellx602\cellx1895\cellx2686\cellx4168\cellx5022\cellx6567\cellx7546\cellx9216 {\pard\intbl\ql {{{\u567*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?jmath}\cell} {\pard\intbl\ql {{{\u8730*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?surd}\cell} {\pard\intbl\ql {{{\f5\u9837*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?flat}\cell} {\pard\intbl\ql {{{\u9653*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?triangle}\cell} \row} {\trowd\cellx602\cellx1895\cellx2686\cellx4168\cellx5022\cellx6567\cellx7546\cellx9216 {\pard\intbl\ql {{{\u8467*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?ell}\cell} {\pard\intbl\ql {{{\u8890*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?top}\cell} {\pard\intbl\ql {{{\u9838*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?natural}\cell} {\pard\intbl\ql {{{\u9827*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?clubsuit}\cell} \row} {\trowd\cellx602\cellx1895\cellx2686\cellx4168\cellx5022\cellx6567\cellx7546\cellx9216 {\pard\intbl\ql {{{\u8472*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?wp}\cell} {\pard\intbl\ql {{{\f5\u8869*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?bot}\cell} {\pard\intbl\ql {{{\u9839*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?sharp}\cell} {\pard\intbl\ql {{{\u9830*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?diamondsuit}\cell} \row} {\trowd\cellx602\cellx1895\cellx2686\cellx4168\cellx5022\cellx6567\cellx7546\cellx9216 {\pard\intbl\ql {{{\u8476*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?Re}\cell} {\pard\intbl\ql {{|}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?\emdash }\cell} {\pard\intbl\ql {{\\}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?backslash}\cell} {\pard\intbl\ql {{{\u9829*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?heartsuit}\cell} \row} {\trowd\cellx602\cellx1895\cellx2686\cellx4168\cellx5022\cellx6567\cellx7546\cellx9216 {\pard\intbl\ql {{{\u8465*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?Im}\cell} {\pard\intbl\ql {{{\f5\u8736*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?angle}\cell} {\pard\intbl\ql {{{\u8706*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?partial}\cell} {\pard\intbl\ql {{{\u9824*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?spadesuit}\cell} \row} {\trowd\cellx602\cellx1895 {\pard\intbl\ql {{{\u8487*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?mho}\cell} \row} } \par \pard\plain\s30\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \fs19 {Table {\*\bkmkstart BMtab_miscsym}3.5{\*\bkmkend BMtab_miscsym}: \i0\scaps0\b0\f0 Miscellaneous symbols}{\field{\*\fldinst TC "3.5 \i0\scaps0\b0\f0 Miscellaneous symbols" \\f t}{\fldrslt }}\par }\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb360 \fi0 3.3.7 Arrow symbols\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\plain L{\up6\fs19 A}T{\dn7 E}X} has a multitude of arrow symbols, which it will set the correct space around. Note that vertical arrows can all be used as delimiters\emdash see section\~{\field{\*\fldinst{\lang1024 REF BMsec_delims \\* MERGEFORMAT }}{\fldrslt{3.3.8}}}. The available symbols are listed in table\~{\field{\*\fldinst{\lang1024 REF BMtab_arrows \\* MERGEFORMAT }}{\fldrslt{3.6}}}.\par {\pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs24\sl240\slmult1 \sb240 \fi0 \par \fs19 {\pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs24\sl240\slmult1 \fi0 \fs19 \par {\trowd\cellx1305\cellx3273\cellx4638\cellx6666\cellx7609\cellx9215 {\pard\intbl\ql {{{\field{\*\fldinst{ EQ {\u8592*}}}{\fldrslt }} }}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?leftarrow}\cell} {\pard\intbl\ql {{{\f5\u10229*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?longleftarrow}\cell} {\pard\intbl\ql {{{\u8593*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?uparrow}\cell} \row} {\trowd\cellx1305\cellx3273\cellx4638\cellx6666\cellx7609\cellx9215 {\pard\intbl\ql {{{\u8656*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?Leftarrow}\cell} {\pard\intbl\ql {{{\f5\u10232*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?Longleftarrow}\cell} {\pard\intbl\ql {{{\u8657*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?Uparrow}\cell} \row} {\trowd\cellx1305\cellx3273\cellx4638\cellx6666\cellx7609\cellx9215 {\pard\intbl\ql {{{\field{\*\fldinst{ EQ {\u8594*}}}{\fldrslt }} }}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?rightarrow}\cell} {\pard\intbl\ql {{{\f5\u10230*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?longrightarrow}\cell} {\pard\intbl\ql {{{\u8595*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?downarrow}\cell} \row} {\trowd\cellx1305\cellx3273\cellx4638\cellx6666\cellx7609\cellx9215 {\pard\intbl\ql {{{\f5\u8658*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?Rightarrow}\cell} {\pard\intbl\ql {{{\f5\u10233*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?Longrightarrow}\cell} {\pard\intbl\ql {{{\u8659*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?Downarrow}\cell} \row} {\trowd\cellx1305\cellx3273\cellx4638\cellx6666\cellx7609\cellx9215 {\pard\intbl\ql {{{\field{\*\fldinst{ EQ {\u8596*}}}{\fldrslt }} }}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?leftrightarrow}\cell} {\pard\intbl\ql {{{\f5\u10231*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?longleftrightarrow}\cell} {\pard\intbl\ql {{{\u8597*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?updownarrow}\cell} \row} {\trowd\cellx1305\cellx3273\cellx4638\cellx6666\cellx7609\cellx9215 {\pard\intbl\ql {{{\f5\u8660*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?Leftrightarrow}\cell} {\pard\intbl\ql {{{\f5\u10234*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?Longleftrightarrow}\cell} {\pard\intbl\ql {{{\u8661*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?Updownarrow}\cell} \row} {\trowd\cellx1305\cellx3273\cellx4638\cellx6666\cellx7609\cellx9215 {\pard\intbl\ql {{{\u8614*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?mapsto}\cell} {\pard\intbl\ql {{{\f5\u10236*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?longmapsto}\cell} {\pard\intbl\ql {{{\f5\u8599*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?nearrow}\cell} \row} {\trowd\cellx1305\cellx3273\cellx4638\cellx6666\cellx7609\cellx9215 {\pard\intbl\ql {{{\u8617*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?hookleftarrow}\cell} {\pard\intbl\ql {{{\u8618*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?hookrightarrow}\cell} {\pard\intbl\ql {{{\f5\u8600*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?searrow}\cell} \row} {\trowd\cellx1305\cellx3273\cellx4638\cellx6666\cellx7609\cellx9215 {\pard\intbl\ql {{{\field{\*\fldinst{ EQ {\u8636*}}}{\fldrslt }} }}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?leftharpoonup}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ {\u8640*}}}{\fldrslt }} }}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?rightharpoonup}\cell} {\pard\intbl\ql {{{\f5\u8601*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?swarrow}\cell} \row} {\trowd\cellx1305\cellx3273\cellx4638\cellx6666\cellx7609\cellx9215 {\pard\intbl\ql {{{\field{\*\fldinst{ EQ {\u8637*}}}{\fldrslt }} }}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?leftharpoondown}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ {\u8641*}}}{\fldrslt }} }}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?rightharpoondown}\cell} {\pard\intbl\ql {{{\f5\u8598*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?nwarrow}\cell} \row} {\trowd\cellx1305\cellx3273\cellx4638\cellx6666 {\pard\intbl\ql {{{\field{\*\fldinst{ EQ \\o ({\up4 {\u8636*}},{\dn4 {\u8641*}}) }}{\fldrslt }} }}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?rightleftharpoons}\cell} {\pard\intbl\ql {{{\u8669*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?leadsto}\cell} \row} } \par \pard\plain\s30\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \fs19 {Table {\*\bkmkstart BMtab_arrows}3.6{\*\bkmkend BMtab_arrows}: \i0\scaps0\b0\f0 Arrow symbols}{\field{\*\fldinst TC "3.6 \i0\scaps0\b0\f0 Arrow symbols" \\f t}{\fldrslt }}\par }\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb360 \fi0 {\*\bkmkstart BMsec_delims}3.3.8{\*\bkmkend BMsec_delims} Expression delimiters\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 A pair of delimters often enclose an expression, as in \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx4610\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ \\b \\bc\\[ ({ \\a \\ac \\co2 ({\i a}\\s\\do6({\fs20 11}),{\i a}\\s\\do6({\fs20 12}),{\i a}\\s\\do6({\fs20 21}),{\i a}\\s\\do6({\fs20 22}))}){{ }and{ }}{\i f}({\i x})= \\b \\lc\\\{ ({ \\a \\al \\co2 ({\i x},{if\~}\~x\~<\~1\~,x\\s\\up6({\fs20 2}),\~{if\~}\~x\~{\u8805*}1 )}){ }.}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 {\plain L{\up6\fs19 A}T{\dn7 E}X} will scale delimiters to the correct size (determined by what they enclose) for you, if you ask it to. There are times when you don\rquote t want a delimiter to be scaled, so it is left up to you to ask for scaling.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 To ask that a delimter be scaleable, you precede it by {\b0\i0\scaps0\f3 \\left} or {\b0\i0\scaps0\f3 \\right} according as it is the left or right member of the pair. Scaled delimiters must be balanced correctly. It sometimes occurs, as in the right-hand example above, that only one member of a delimiting pair is to be visible. For this purpose, use the commands {\b0\i0\scaps0\f3 \\left.} and {\b0\i0\scaps0\f3 \\right.} which will produce no visible delimiter but can be used to correctly balance the delimiters in an expression. For examples of the use of delimiters, see section\~{\field{\*\fldinst{\lang1024 REF BMsec_arrays \\* MERGEFORMAT }}{\fldrslt{3.4.11}}} where we learn about arrays.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Table\~{\field{\*\fldinst{\lang1024 REF BMtab_delims \\* MERGEFORMAT }}{\fldrslt{3.7}}} shows the symbols that {\plain L{\up6\fs19 A}T{\dn7 E}X} will recognise as delimiters, i.e. symbols that may follow a {\b0\i0\scaps0\f3 \\left} or a {\b0\i0\scaps0\f3 \\right}. Note that you have to use {\b0\i0\scaps0\f3 \\left\\\{} and {\b0\i0\scaps0\f3 \\right\\\}} in order to get scaled braces.\par {\pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs24\sl240\slmult1 \sb240 \fi0 \par \fs19 {\pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs24\sl240\slmult1 \fi0 \fs19 \par {\trowd\cellx757\cellx2318\cellx3294\cellx5074\cellx6196\cellx9218 {\pard\intbl\ql {{(}}\cell} {\pard\intbl\ql {{(}}\cell} {\pard\intbl\ql {{)}}\cell} {\pard\intbl\ql {{)}}\cell} {\pard\intbl\ql {{{\u8593*}}}\cell} {\pard\intbl\ql {{\i0\scaps0\b0\f3 \u92?uparrow}}\cell} \row} {\trowd\cellx757\cellx2318\cellx3294\cellx5074\cellx6196\cellx9218 {\pard\intbl\ql {{[}}\cell} {\pard\intbl\ql {]}\cell} {\pard\intbl\ql {{]}}\cell} {\pard\intbl\ql {]}\cell} {\pard\intbl\ql {{{\u8595*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?downarrow}\cell} \row} {\trowd\cellx757\cellx2318\cellx3294\cellx5074\cellx6196\cellx9218 {\pard\intbl\ql {{\{}}\cell} {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\\{}}\cell} {\pard\intbl\ql {{\}}}\cell} {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\\}}}\cell} {\pard\intbl\ql {{{\u8597*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?updownarrow}\cell} \row} {\trowd\cellx757\cellx2318\cellx3294\cellx5074\cellx6196\cellx9218 {\pard\intbl\ql {{{\f5\u8970*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?lfloor}\cell} {\pard\intbl\ql {{{\f5\u8971*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?rfloor}\cell} {\pard\intbl\ql {{{\u8657*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?Uparrow}\cell} \row} {\trowd\cellx757\cellx2318\cellx3294\cellx5074\cellx6196\cellx9218 {\pard\intbl\ql {{{\f5\u8968*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?lceil}\cell} {\pard\intbl\ql {{{\f5\u8969*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?rceil}\cell} {\pard\intbl\ql {{{\u8659*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?Downarrow}\cell} \row} {\trowd\cellx757\cellx2318\cellx3294\cellx5074\cellx6196\cellx9218 {\pard\intbl\ql {{{\f5\u9001*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?langle}\cell} {\pard\intbl\ql {{{\f5\u9002*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?rangle}\cell} {\pard\intbl\ql {{{\u8661*}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?Updownarrow}\cell} \row} {\trowd\cellx757\cellx2318\cellx3294\cellx5074 {\pard\intbl\ql {{/}}\cell} {\pard\intbl\ql {/}\cell} {\pard\intbl\ql {{\\}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?backslash}\cell} \row} {\trowd\cellx757\cellx2318\cellx3294\cellx5074 {\pard\intbl\ql {{|}}\cell} {\pard\intbl\ql {\emdash }\cell} {\pard\intbl\ql {{|}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?\emdash }\cell} \row} } \par \pard\plain\s30\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \fs19 {Table {\*\bkmkstart BMtab_delims}3.7{\*\bkmkend BMtab_delims}: \i0\scaps0\b0\f0 Delimiters}{\field{\*\fldinst TC "3.7 \i0\scaps0\b0\f0 Delimiters" \\f t}{\fldrslt }}\par }\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb360 \fi0 3.3.9 Operators like {{\field{\*\fldinst{ EQ \\i \\in(,, )}}{\fldrslt }} } and {{\field{\*\fldinst{ EQ \\i \\su(,, )}}{\fldrslt }} }\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 These behave differently when used in display-math mode as compared with in-text math mode. When used in text, they will appear in their small form and any limits provided will be set so as to reduce the overall height of the operator, as in {{\field{\*\fldinst{ EQ \\i \\su({\i i}=1,{\i N}, ){\i f}\\s\\do6({\fs20 {\i i}})}}{\fldrslt }} }. When used in display-math mode, {\plain L{\up6\fs19 A}T{\dn7 E}X} will choose to use the larger form and will not try to reduce the height of the operator, as in \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx4610\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ \\i \\su({\i i}=1,{\i N}, ){\i f}\\s\\do6({\fs20 {\i i}}){ }.}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Table\~{\field{\*\fldinst{\lang1024 REF BMtab_bigops \\* MERGEFORMAT }}{\fldrslt{3.8}}} describes what variable-size symbols are available, showing both the small (in text) and the large (displayed) form of each. In section\~{\field{\*\fldinst{\lang1024 REF BMsec_subsup \\* MERGEFORMAT }}{\fldrslt{3.4.1}}} we will learn how to place limits on these operators.\par {\pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs24\sl240\slmult1 \sb240 \fi0 \par \fs19 {\pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs24\sl240\slmult1 \fi0 \fs19 \par {\trowd\cellx2015\cellx2881\cellx5049\cellx5991\cellx8236\cellx9217 {\pard\intbl\ql {{{{\field{\*\fldinst{ EQ \\i \\su(,, ) \\i \\su(,, )}}{\fldrslt }} }}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?sum}\cell} {\pard\intbl\ql {{{{\u8899*}{\u8899*}}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?bigcap}\cell} {\pard\intbl\ql {{{{\f5\u10752*}{\f5\u10752*}}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?bigodot}\cell} \row} {\trowd\cellx2015\cellx2881\cellx5049\cellx5991\cellx8236\cellx9217 {\pard\intbl\ql {{{{\field{\*\fldinst{ EQ \\i \\pr(,, ) \\i \\pr(,, )}}{\fldrslt }} }}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?prod}\cell} {\pard\intbl\ql {{{{\u8898*}{\u8898*}}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?bigcup}\cell} {\pard\intbl\ql {{{{\f5\u10754*}{\f5\u10754*}}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?bigotimes}\cell} \row} {\trowd\cellx2015\cellx2881\cellx5049\cellx5991\cellx8236\cellx9217 {\pard\intbl\ql {{{{\f5\u8720*}{\f5\u8720*}}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?coprod}\cell} {\pard\intbl\ql {{{{\f5\u10758*}{\f5\u10758*}}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?bigsqcup}\cell} {\pard\intbl\ql {{{{\f5\u10753*}{\f5\u10753*}}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?bigoplus}\cell} \row} {\trowd\cellx2015\cellx2881\cellx5049\cellx5991\cellx8236\cellx9217 {\pard\intbl\ql {{{{\field{\*\fldinst{ EQ \\i \\in(,, ) \\i \\in(,, )}}{\fldrslt }} }}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?int}\cell} {\pard\intbl\ql {{{{\u8897*}{\u8897*}}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?bigvee}\cell} {\pard\intbl\ql {{{{\f5\u10756*}{\f5\u10756*}}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?biguplus}\cell} \row} {\trowd\cellx2015\cellx2881\cellx5049\cellx5991 {\pard\intbl\ql {{{{\f5\u8750*}{\f5\u8750*}}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?oint}\cell} {\pard\intbl\ql {{{{\u8896*}{\u8896*}}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?bigwedge}\cell} \row} } \par \pard\plain\s30\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \fs19 {Table {\*\bkmkstart BMtab_bigops}3.8{\*\bkmkend BMtab_bigops}: \i0\scaps0\b0\f0 Variable-sized symbols}{\field{\*\fldinst TC "3.8 \i0\scaps0\b0\f0 Variable-sized symbols" \\f t}{\fldrslt }}\par }\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb360 \fi0 {\*\bkmkstart BMsec_mathacc}3.3.10{\*\bkmkend BMsec_mathacc} Accents\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 The accenting commands that we learned for paragraphing mode do not apply in maths mode. Consult table\~{\field{\*\fldinst{\lang1024 REF BMtab_mathacc \\* MERGEFORMAT }}{\fldrslt{3.9}}} to see how to accent a symbol in maths mode (all the examples there accent the symbol {{\i u}}, but they work with any letter). Remember that {{\i i}} and {{\i j}} should lose their dots when accented, so {\b0\i0\scaps0\f3 \\imath} and {\b0\i0\scaps0\f3 \\jmath} should be used.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 There also exist commands that give a \ldblquote wide hat\rdblquote or a \ldblquote wide tilde\rdblquote to their argument, {\b0\i0\scaps0\f3 \\widehat} and {\b0\i0\scaps0\f3 \\widetilde}.\par {\pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs24\sl240\slmult1 \sb240 \fi0 \par \fs19 {\pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs24\sl240\slmult1 \fi0 \fs19 \par {\trowd\cellx791\cellx2399\cellx3190\cellx4798\cellx5463\cellx6945\cellx7673\cellx9218 {\pard\intbl\ql {{\'fb}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?hat\{u\}}\cell} {\pard\intbl\ql {{\'fa}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?acute\{u\}}\cell} {\pard\intbl\ql {{\u363u}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?bar\{u\}}\cell} {\pard\intbl\ql {{{\f5\u775.}{\i u}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?dot\{u\}}\cell} \row} {\trowd\cellx791\cellx2399\cellx3190\cellx4798\cellx5463\cellx6945\cellx7673\cellx9218 {\pard\intbl\ql {{\u468u}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?check\{u\}}\cell} {\pard\intbl\ql {{\'f9}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?grave\{u\}}\cell} {\pard\intbl\ql {{{\f5 \u8407-}{\i u}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?vec\{u\}}\cell} {\pard\intbl\ql {{\'fc}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?ddot\{u\}}\cell} \row} {\trowd\cellx791\cellx2399\cellx3190\cellx4798 {\pard\intbl\ql {{{\f5\u774u}{\i u}}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?breve\{u\}}\cell} {\pard\intbl\ql {{\u361u}}\cell} {\pard\intbl\ql {\i0\scaps0\b0\f3 \u92?tilde\{u\}}\cell} \row} } \par \pard\plain\s30\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \fs19 {Table {\*\bkmkstart BMtab_mathacc}3.9{\*\bkmkend BMtab_mathacc}: \i0\scaps0\b0\f0 Math accents}{\field{\*\fldinst TC "3.9 \i0\scaps0\b0\f0 Math accents" \\f t}{\fldrslt }}\par }\pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb480 \fi0 3.4 Some common mathematical structures\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 In this section we shall begin to learn how to manipulate all the symbols listed in section\~{\field{\*\fldinst{\lang1024 REF BMsec_symbols \\* MERGEFORMAT }}{\fldrslt{3.3}}}. Indeed, by the end of this section we\rquote ll be able to typeset some quite large expressions. In the section following this we will learn how use various alignment environments that allow us to prepare material like multi-line expressions and arrays.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 {\*\bkmkstart BMsec_subsup}3.4.1{\*\bkmkend BMsec_subsup} Subscripts and superscripts\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 Specifying a sub- or superscript is as easy as you\rquote d hope\emdash you just give an indication that you want a sub- or superscript to the last expression and provide the material to be placed there, and {\plain L{\up6\fs19 A}T{\dn7 E}X} will position things correctly. So sub- and superscripting a single symbol, an operator, or a big array all involve the same input, and {\plain L{\up6\fs19 A}T{\dn7 E}X} places the material according to what the expression is that is being sub- or superscripted: \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx4610\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ {\i x}\\s\\up6({\fs20 2}){ }\\,{ } \\i \\pr({\i i}=1,{\i N}, ){\i X}\\s\\do6({\fs20 {\i i}}){ }\\,{ } \\b \\bc\\[ ({ \\a \\ac \\co3 ({\i a}\\s\\do6({\fs20 11}),{\i a}\\s\\do6({\fs20 12}),{\i a}\\s\\do6({\fs20 13}),{\i a}\\s\\do6({\fs20 21}),{\i a}\\s\\do6({\fs20 22}),{\i a}\\s\\do6({\fs20 23}),{\i a}\\s\\do6({\fs20 31}),{\i a}\\s\\do6({\fs20 32}),{\i a}\\s\\do6({\fs20 33}))})\\s\\up17({\fs20 2}){ }.}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 To tell {\plain L{\up6\fs19 A}T{\dn7 E}X} that you want a single character set as a superscript to the last expression, you just type a {\b0\i0\scaps0\f3 ^} before it. The \ldblquote last expression\rdblquote is the preceding group or, if there is no preceding group, the single character or symbol that the {\b0\i0\scaps0\f3 ^} follows:\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \fs19 {{\pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \sb120 \fi0 \fs19 \par {\trowd\cellx4956\cellx9219 {\pard\intbl\ql {\scaps0\b0\i {Type}}\cell} {\pard\intbl\ql {\scaps0\b0\i To produce}\cell} \row} {\trowd\cellx4956\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $x^2$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ {\i x}\\s\\up4({\fs15 2})}}{\fldrslt }} }}\cell} \row} {\trowd\cellx4956\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $a^b$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ {\i a}\\s\\up4({\fs15 {\i b}})}}{\fldrslt }} }}\cell} \row} {\trowd\cellx4956\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $Y^X$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ {\i Y}\\s\\up4({\fs15 {\i X}})}}{\fldrslt }} }}\cell} \row} {\trowd\cellx4956\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $\\gamma^2$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ {\u947*}\\s\\up4({\fs15 2})}}{\fldrslt }} }}\cell} \row} {\trowd\cellx4956\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $(A+B)^2$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ ({\i A}+{\i B})\\s\\up4({\fs15 2})}}{\fldrslt }} }}\cell} \row} {\trowd\cellx4956\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $\\left[ \\frac\{x^2+1\}\{x^2 + y^2\} \\right]^n$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ \\b \\bc\\[ ( \\F({\i x}\\s\\up4({\fs15 2})+1,{\i x}\\s\\up4({\fs15 2})+{\i y}\\s\\up4({\fs15 2})))\\s\\up13({\fs15 {\i n}})}}{\fldrslt }} }}\cell} \row} }\par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi360 Subscripts of a single character are equally easy\emdash you just use the underscore character {\b0\i0\scaps0\f3 _} where you used {\b0\i0\scaps0\f3 ^} for superscripting:\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \fs19 {{\pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \sb120 \fi0 \fs19 \par {\trowd\cellx6113\cellx9219 {\pard\intbl\ql {\scaps0\b0\i {Type}}\cell} {\pard\intbl\ql {\scaps0\b0\i To produce}\cell} \row} {\trowd\cellx6113\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $x_2$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ {\i x}\\s\\do4({\fs15 2})}}{\fldrslt }} }}\cell} \row} {\trowd\cellx6113\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $x_i$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ {\i x}\\s\\do4({\fs15 {\i i}})}}{\fldrslt }} }}\cell} \row} {\trowd\cellx6113\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $\\Gamma_1(x)$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ {\u915*}\\s\\do4({\fs15 1})({\i x})}}{\fldrslt }} }}\cell} \row} }\par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi360 Now let\rquote s see how to set a sub- or superscript that consists of more than just one character. This is no more difficult than before if we remember the following rule: {\i {\b0\i0\scaps0\f3 _} and {\b0\i0\scaps0\f3 ^} set the group that follows them as a sub- and superscripts to the group that precedes the sub- and superscript symbols.} We see now now that our initial examples worked by considering a single character to be a group by itself. Here are some examples:\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \fs19 {{\pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \sb120 \fi0 \fs19 \par {\trowd\cellx5111\cellx9219 {\pard\intbl\ql {\scaps0\b0\i {Type}}\cell} {\pard\intbl\ql {\scaps0\b0\i To produce}\cell} \row} {\trowd\cellx5111\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $a^2b^3$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ {\i a}\\s\\up4({\fs15 2}){\i b}\\s\\up4({\fs15 3})}}{\fldrslt }} }}\cell} \row} {\trowd\cellx5111\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $2^\{21\}$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ 2\\s\\up4({\fs15 21})}}{\fldrslt }} }}\cell} \row} {\trowd\cellx5111\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $2^21$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ 2\\s\\up4({\fs15 2})1}}{\fldrslt }} }}\cell} \row} {\trowd\cellx5111\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $a^\{x+1\}$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ {\i a}\\s\\up4({\fs15 {\i x}+1})}}{\fldrslt }} }}\cell} \row} {\trowd\cellx5111\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $a^\{x^2+1\}$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ {\i a}\\s\\up4({\fs15 {\i x}\\s\\up3({\fs12 2})+1})}}{\fldrslt }} }}\cell} \row} {\trowd\cellx5111\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $(x+1)^3$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ ({\i x}+1)\\s\\up4({\fs15 3})}}{\fldrslt }} }}\cell} \row} {\trowd\cellx5111\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $\\Gamma_\{\\alpha\\beta\\gamma\}$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ {\u915*}\\s\\do4({\fs15 {\u945*}{\u946*}{\u947*}})}}{\fldrslt }} }}\cell} \row} {\trowd\cellx5111\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $\{\}_1A_2$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ {}\\s\\do4({\fs15 1}){\i A}\\s\\do4({\fs15 2})}}{\fldrslt }} }}\cell} \row} }\par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi360 In the very last example we see a case of setting a subscript to an empty group, which resulted in a kind of \ldblquote pre-subscript\rdblquote . With some imagination this can be put to all sorts of uses.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 In all of the above examples the sub- and superscripts were set to single-character groups. Nowhere did we group an expression before sub- or superscripting it. Even in setting the expression {{\field{\*\fldinst{ EQ ({\i x}+1)\\s\\up6({\fs20 3})}}{\fldrslt }} }, the superscript {{\field{\*\fldinst{ EQ {}\\s\\up6({\fs20 3})}}{\fldrslt }} } was really only set to the character {)}. If we had wanted to group the {({\i x}+1)} before setting the superscript, we would have typed {\b0\i0\scaps0\f3 $\{(x+1)\}^3$} which gives {{\field{\*\fldinst{ EQ {({\i x}+1)}\\s\\up6({\fs20 3})}}{\fldrslt }} }, with the superscript slightly raised. One has to go to this trouble because, to most people, something like {{\field{\*\fldinst{ EQ ({\i x}\\s\\up6({\fs20 {\i a}}))\\s\\up6({\fs20 {\i b}})}}{\fldrslt }} } is just as acceptable and as readable as {{\field{\*\fldinst{ EQ {({\i x}\\s\\up6({\fs20 {\i a}}))}\\s\\up6({\fs20 {\i b}})}}{\fldrslt }} }. It also has the advantage of aligning the base lines in expressions such as \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx4610\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ ({\i a}{\i b})\\s\\up6({\fs20 \u8722?2})=[({\i a}{\i b})\\s\\up6({\fs20 \u8722?1})]\\s\\up6({\fs20 2})=[{\i b}\\s\\up6({\fs20 \u8722?1}){\i a}\\s\\up6({\fs20 \u8722?1})]\\s\\up6({\fs20 2})={\i b}\\s\\up6({\fs20 \u8722?1}){\i a}\\s\\up6({\fs20 \u8722?1}){\i b}\\s\\up6({\fs20 \u8722?1}){\i a}\\s\\up6({\fs20 \u8722?1})}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 which looks more pleasing than if we use additional grouping to force \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx4610\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ {({\i a}{\i b})}\\s\\up6({\fs20 \u8722?2})={[{({\i a}{\i b})}\\s\\up6({\fs20 \u8722?1})]}\\s\\up6({\fs20 2})={[{\i b}\\s\\up6({\fs20 \u8722?1}){\i a}\\s\\up6({\fs20 \u8722?1})]}\\s\\up6({\fs20 2})={\i b}\\s\\up6({\fs20 \u8722?1}){\i a}\\s\\up6({\fs20 \u8722?1}){\i b}\\s\\up6({\fs20 \u8722?1}){\i a}\\s\\up6({\fs20 \u8722?1}){ }\\,}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 and the latter has rather more braces in it that require balancing.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Here are some more examples, showing how {\plain L{\up6\fs19 A}T{\dn7 E}X} will set things just as we want without any further work on our part:\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \fs19 {{\pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \sb120 \fi0 \fs19 \par {\trowd\cellx5229\cellx9219 {\pard\intbl\ql {\scaps0\b0\i {Type}}\cell} {\pard\intbl\ql {\scaps0\b0\i To produce}\cell} \row} {\trowd\cellx5229\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $x^\{y^z\}$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ {\i x}\\s\\up4({\fs15 {\i y}\\s\\up3({\fs12 {\i z}})})}}{\fldrslt }} }}\cell} \row} {\trowd\cellx5229\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $2^\{(2^2)\}$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ 2\\s\\up4({\fs15 (2\\s\\up3({\fs12 2}))})}}{\fldrslt }} }}\cell} \row} {\trowd\cellx5229\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $2^\{2^\{2^\{\\aleph_0\}\}\}$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ 2\\s\\up4({\fs15 2\\s\\up3({\fs12 2\\s\\up3({\fs10 {\u8501*}\\s\\do2({\fs8 0})})})})}}{\fldrslt }} }}\cell} \row} {\trowd\cellx5229\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $\\Gamma^\{z_c^d\}$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ {\u915*}\\s\\up4({\fs15 {\i z}\\s\\up({\fs12 {\i d},{\i c}})})}}{\fldrslt }} }}\cell} \row} }\par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi360 We can also make use of empty groups in order to stagger sub- and superscripts to an expression, as in\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 { \fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par $\\Gamma_\{\\alpha\\beta\}\{\}^\{\\gamma\}\{\}_\\delta$ \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 which will yield\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\fs19 {{\field{\*\fldinst{ EQ {\u915*}\\s\\do4({\fs15 {\u945*}{\u946*}}){}\\s\\up4({\fs15 {\u947*}}){}\\s\\do4({\fs15 {\u948*}})}}{\fldrslt }} } }}\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 One can specify the sub- and superscripts to a group in any order, but it is best to be consistent. The most natural order seems to be to have subscripts first, but you may think otherwise. It is also a good idea to always include your sub- and superscripts in braces (i.e. make them a group), whether they consist of just a single character or not. This enhances readability and also helps avoid the unfortunate case where you believe that a particular control word gives a single symbol yet it really is defined in terms of several.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 3.4.2 Primes\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\plain L{\up6\fs19 A}T{\dn7 E}X} provides the control word {\b0\i0\scaps0\f3 \\prime} ({'}) for priming symbols. Note that it is not automatically at the superscript height, so that to get {{\field{\*\fldinst{ EQ {\i f}\\s\\up6({\fs20 '})}}{\fldrslt }} } you would have to type\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 { \fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par $f^\\prime$ . \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 To make lighter work of this, {\plain L{\up6\fs19 A}T{\dn7 E}X} will interpret a right-quote character as a prime if used in maths mode. Thus we can type\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 { \fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par $f'(g(x)) g'(x) h''(x)$ \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 in order to get\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\fs19 {{\i f}'({\i g}({\i x})){\i g}'({\i x}){\i h}''({\i x}){ }.} }}\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb180 \fi0 3.4.3 Fractions\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\plain L{\up6\fs19 A}T{\dn7 E}X} provides the {\b0\i0\scaps0\f3 \\frac} command that accepts two arguments: the numerator and the denominator (in that order). Before we look at examples of its use, let us just note that many simple in-text fractions are often better written in the form {{\scaps0\b0\i num}/{\scaps0\b0\i den}}, as with {3/8} which can be typed as {\b0\i0\scaps0\f3 $3/8$}. This is also often the better form for a fraction that occurs {\i within} some expression.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \fs19 {{\pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \sb120 \fi0 \fs19 \par {\trowd\cellx4280\cellx9220 {\pard\intbl\ql {\scaps0\b0\i {Type}}\cell} {\pard\intbl\ql {\scaps0\b0\i To produce}\cell} \row} {\trowd\cellx4280\cellx9220 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $\\frac\{x+1\}\{x+2\}$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ \\F({\i x}+1,{\i x}+2)}}{\fldrslt }} }}\cell} \row} {\trowd\cellx4280\cellx9220 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $\\frac\{1\}\{x^2+1\}$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ \\F(1,{\i x}\\s\\up4({\fs15 2})+1)}}{\fldrslt }} }}\cell} \row} {\trowd\cellx4280\cellx9220 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $\\frac\{1+x^2\}\{x^2+y^2\} + x^2 y$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ \\F(1+{\i x}\\s\\up4({\fs15 2}),{\i x}\\s\\up4({\fs15 2})+{\i y}\\s\\up4({\fs15 2}))+{\i x}\\s\\up4({\fs15 2}){\i y}}}{\fldrslt }} }}\cell} \row} {\trowd\cellx4280\cellx9220 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $\\frac\{1\}\{1 + \\frac\{x\}\{2\}\}$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ \\F(1,1+ \\F({\i x},2))}}{\fldrslt }} }}\cell} \row} {\trowd\cellx4280\cellx9220 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $\\frac\{1\}\{1+x/2\}$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ \\F(1,1+{\i x}/2)}}{\fldrslt }} }}\cell} \row} }\par }}\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 3.4.4 Roots\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 The {\b0\i0\scaps0\f3 \\sqrt} command accepts two arguments. The first, and optional, argument specifies what order of root you desire if it is anything other than the square root. The second, and mandatory, argument specifies the expression that the root sign should enclose:\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 { {\par \fs19 {{\pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \sb120 \fi0 \fs19 \par {\trowd\cellx4322\cellx9219 {\pard\intbl\ql {\scaps0\b0\i {Type}}\cell} {\pard\intbl\ql {\scaps0\b0\i To produce}\cell} \row} {\trowd\cellx4322\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $\\sqrt\{a+b\}$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ \\R(,{\i a}+{\i b})}}{\fldrslt }} }}\cell} \row} {\trowd\cellx4322\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $\\sqrt[5]\{a+b\}$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ \\R(5,{\i a}+{\i b})}}{\fldrslt }} }}\cell} \row} {\trowd\cellx4322\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $\\sqrt[n]\{\\frac\{1+x\}\{1+x^2\}\}$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ \\R({\i n}, \\F(1+{\i x},1+{\i x}\\s\\up4({\fs15 2})))}}{\fldrslt }} }}\cell} \row} {\trowd\cellx4322\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $\\frac\{\\sqrt\{x+1\}\} \{\\sqrt[3]\{x^3+1\}\}$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ \\F( \\R(,{\i x}+1), \\R(3,{\i x}\\s\\up4({\fs15 3})+1))}}{\fldrslt }} }}\cell} \row} }\par }}}\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 3.4.5 Ellipsis\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 Simply typing three periods in a row will not give the correct spacing of the periods if it is an ellipsis that is desired. So {\plain L{\up6\fs19 A}T{\dn7 E}X} provides the commands {\b0\i0\scaps0\f3 \\ldots} and {\b0\i0\scaps0\f3 \\cdots}. Centered ellipsis should be used between symbols like {+}, {\u8722?}, {*}, {{\u215*}}, and {=}. Here are some examples:\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \fs19 {{\pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \sb120 \fi0 \fs19 \par {\trowd\cellx4964\cellx9219 {\pard\intbl\ql {\scaps0\b0\i {Type}}\cell} {\pard\intbl\ql {\scaps0\b0\i To produce}\cell} \row} {\trowd\cellx4964\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $a_1+ \\cdots + a_n$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ {\i a}\\s\\do4({\fs15 1})+{\u8943*}+{\i a}\\s\\do4({\fs15 {\i n}})}}{\fldrslt }} }}\cell} \row} {\trowd\cellx4964\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $x_1 \\times x_2 \\times \\cdots \\times x_n$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ {\i x}\\s\\do4({\fs15 1}){\u215*}{\i x}\\s\\do4({\fs15 2}){\u215*}{\u8943*}{\u215*}{\i x}\\s\\do4({\fs15 {\i n}})}}{\fldrslt }} }}\cell} \row} {\trowd\cellx4964\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $v_1 = v_2 = \\cdots = v_n = 0$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ {\i v}\\s\\do4({\fs15 1})={\i v}\\s\\do4({\fs15 2})={\u8943*}={\i v}\\s\\do4({\fs15 {\i n}})=0}}{\fldrslt }} }}\cell} \row} {\trowd\cellx4964\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $f(x_1,\\ldots,x_n) = 0$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ {\i f}({\i x}\\s\\do4({\fs15 1})\\,\u8230?\\,{\i x}\\s\\do4({\fs15 {\i n}}))=0}}{\fldrslt }} }}\cell} \row} }\par }}\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 {\*\bkmkstart BMsec_mathtext}3.4.6{\*\bkmkend BMsec_mathtext} Text within an expression\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 One can use the {\b0\i0\scaps0\f3 \\mbox} command to insert normal text into an expression. This command forces {\plain L{\up6\fs19 A}T{\dn7 E}X} temporarily out of maths mode, so that its argument will be treated as normal text. It\rquote s use is simple, but we must be wary on one count: remember that {\plain L{\up6\fs19 A}T{\dn7 E}X} ignores all space characters when in maths mode; so to surround words in an expression that were placed by an {\b0\i0\scaps0\f3 \\mbox} command by space you must include the space in the {\b0\i0\scaps0\f3 \\mbox} argument.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \fs19 {{\pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \sb120 \fi0 \fs19 \par {\trowd\cellx4910\cellx9219 {\pard\intbl\ql {\scaps0\b0\i {Type}}\cell} {\pard\intbl\ql {\scaps0\b0\i To produce}\cell} \row} {\trowd\cellx4910\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $f_i(x) \\leq 0 \\mbox\{ for \} x \\in I$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ {\i f}\\s\\do4({\fs15 {\i i}})({\i x}){\u8804*}0{\~for\~}{\i x}{\f5\u8712*}{\i I}}}{\fldrslt }} }}\cell} \row} {\trowd\cellx4910\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $\\Gamma(n)=(n-1)! \\mbox\{ when $n$ is an integer\}$}}\cell} {\pard\intbl\ql {{{\u915*}({\i n})=({\i n}\u8722?1)!{\~when\~{{\i n}} is an integer}}}\cell} \row} }\par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi360 In section\~{\field{\*\fldinst{\lang1024 REF BMsec_mathspace \\* MERGEFORMAT }}{\fldrslt{3.4.12}}} we\rquote ll learn of some special spacing commands that can be used in math mode. These are often very useful in positioning text within an expression, enhancing readability and logical layout.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 3.4.7 Log-like functions\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 There are a number of function names and operation symbols that should be set in normal (roman) type in an expression, such as in \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx4610\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ {\i f}({\u920*})={\plain sin}{\u920*}+{\plain log}({\u920*}+1)\u8722?{\plain sinh}({\u920*}\\s\\up6({\fs20 2})+1)}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 and \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx4610\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ \\a\\ac(lim,{\i h}{\u8594*}0) \\F({\plain sin}{\i h},{\i h})=1{ }.}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 We know that simply typing {\b0\i0\scaps0\f3 $log\\theta$} would produce the incorrect result \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx4610\sl240\slmult1 \fi0 \tab {\i l}{\i o}{\i g}{\u920*}\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 and that using {\b0\i0\scaps0\f3 $\\mbox\{log\}\\theta$} would leave us having to insert a little extra space between the log and the {{\u920*}} \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx4610\sl240\slmult1 \fi0 \tab {log}{\u920*}{ }.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 So {\plain L{\up6\fs19 A}T{\dn7 E}X} provides a collection of \ldblquote log-like functions\rdblquote defined as control sequences. Table\~{\field{\*\fldinst{\lang1024 REF BMtab_loglike \\* MERGEFORMAT }}{\fldrslt{3.10}}} shows those that are available. Here are some examples of their use:\par {\pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs24\sl240\slmult1 \sb240 \fi0 {\par \fs19 \i0\scaps0\b0\f3 {\pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs24\sl240\slmult1 \fi0 \f3 \fs19 \par {\trowd\cellx1263\cellx2389\cellx3447\cellx4505\cellx5768\cellx7031\cellx8089\cellx9215 {\pard\intbl\ql {\u92?arccos}\cell} {\pard\intbl\ql {\u92?cos}\cell} {\pard\intbl\ql {\u92?csc}\cell} {\pard\intbl\ql {\u92?exp}\cell} {\pard\intbl\ql {\u92?ker}\cell} {\pard\intbl\ql {\u92?limsup}\cell} {\pard\intbl\ql {\u92?min}\cell} {\pard\intbl\ql {\u92?sinh}\cell} \row} {\trowd\cellx1263\cellx2389\cellx3447\cellx4505\cellx5768\cellx7031\cellx8089\cellx9215 {\pard\intbl\ql {\u92?arcsin}\cell} {\pard\intbl\ql {\u92?cosh}\cell} {\pard\intbl\ql {\u92?deg}\cell} {\pard\intbl\ql {\u92?gcd}\cell} {\pard\intbl\ql {\u92?lg}\cell} {\pard\intbl\ql {\u92?ln}\cell} {\pard\intbl\ql {\u92?Pr}\cell} {\pard\intbl\ql {\u92?sup}\cell} \row} {\trowd\cellx1263\cellx2389\cellx3447\cellx4505\cellx5768\cellx7031\cellx8089\cellx9215 {\pard\intbl\ql {\u92?arctan}\cell} {\pard\intbl\ql {\u92?cot}\cell} {\pard\intbl\ql {\u92?det}\cell} {\pard\intbl\ql {\u92?hom}\cell} {\pard\intbl\ql {\u92?lim}\cell} {\pard\intbl\ql {\u92?log}\cell} {\pard\intbl\ql {\u92?sec}\cell} {\pard\intbl\ql {\u92?tan}\cell} \row} {\trowd\cellx1263\cellx2389\cellx3447\cellx4505\cellx5768\cellx7031\cellx8089\cellx9215 {\pard\intbl\ql {\u92?arg}\cell} {\pard\intbl\ql {\u92?coth}\cell} {\pard\intbl\ql {\u92?dim}\cell} {\pard\intbl\ql {\u92?inf}\cell} {\pard\intbl\ql {\u92?liminf}\cell} {\pard\intbl\ql {\u92?max}\cell} {\pard\intbl\ql {\u92?sin}\cell} {\pard\intbl\ql {\u92?tanh}\cell} \row} }} \par \pard\plain\s30\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 {Table {\*\bkmkstart BMtab_loglike}3.10{\*\bkmkend BMtab_loglike}: \i0\scaps0\b0\f0 Log-like functions}{\field{\*\fldinst TC "3.10 \i0\scaps0\b0\f0 Log-like functions" \\f t}{\fldrslt }}\par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb240 \fi360 {\par \fs19 {{\pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \sb120 \fi0 \fs19 \par {\trowd\cellx4956\cellx9219 {\pard\intbl\ql {\scaps0\b0\i {Type}}\cell} {\pard\intbl\ql {\scaps0\b0\i To produce}\cell} \row} {\trowd\cellx4956\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $f(x)=\\sin x + \\log(x^2)$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ {\i f}({\i x})={\plain sin}{\i x}+{\plain log}({\i x}\\s\\up4({\fs15 2}))}}{\fldrslt }} }}\cell} \row} {\trowd\cellx4956\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $\\delta = \\min \\\{ \\delta_1, \\delta_2 \\\}$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ {\u948*}={\plain min}\{{\u948*}\\s\\do4({\fs15 1})\\,{\u948*}\\s\\do4({\fs15 2})\}}}{\fldrslt }} }}\cell} \row} {\trowd\cellx4956\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $\\chi(X) = \\sup_\{x\\in X\} \\chi(x)$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ {\u967*}({\i X})={\plain sup}\\s\\do4({\fs15 {\i x}{\f5\u8712*}{\i X}}){\u967*}({\i x})}}{\fldrslt }} }}\cell} \row} {\trowd\cellx4956\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $\\lim_\{n \\rightarrow \\infty\} S_n = \\gamma$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ \\a\\ac(lim,{\i n}{\u8594*}{\u8734*}){\i S}\\s\\do4({\fs15 {\i n}})={\u947*}}}{\fldrslt }} }}\cell} \row} }\par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi360 Notice how {\plain L{\up6\fs19 A}T{\dn7 E}X} does more than just set an operation like sup in roman type. It also knew where a subscript to that operator should go.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 3.4.8 Over- and Underlining and bracing\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 The {\b0\i0\scaps0\f3 \\underline} command will place an unbroken line under its argument, and the {\b0\i0\scaps0\f3 \\overline} command will place an unbroken line over its argument. These two commands can also be used in normal paragraphing mode (but be careful: {\plain L{\up6\fs19 A}T{\dn7 E}X} will not break the line within an under- or overlined phrase, so don\rquote t go operating on large phrases).\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 You can place horizontal braces above or below an expression by making that expression the argument of {\b0\i0\scaps0\f3 \\overbrace} or {\b0\i0\scaps0\f3 \\underbrace}. You can place a label on an overbrace (resp. underbrace) by superscripting (resp. subscripting the group defined by the bracing command.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \fs19 {{\pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \sb120 \fi0 \fs19 \par {\trowd\cellx5020\cellx9220 {\pard\intbl\ql {\scaps0\b0\i {Type}}\cell} {\pard\intbl\ql {\scaps0\b0\i To produce}\cell} \row} {\trowd\cellx5020\cellx9220 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $\\overline\{a+bi\} = a- bi$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ \\x\\to( {\i a}+{\i b}{\i i}) ={\i a}\u8722?{\i b}{\i i}}}{\fldrslt }} }}\cell} \row} {\trowd\cellx5020\cellx9220 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $\\overline\{\\overline\{a+bi\}\} = a+bi$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ \\x\\to( \\x\\to( {\i a}+{\i b}{\i i}) ) ={\i a}+{\i b}{\i i}}}{\fldrslt }} }}\cell} \row} }\par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi360 And some examples of horizontal bracing:\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 { \fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par $A^n=\\overbrace\{A \\times A \\times \\ldots \\times A\}^\{\\mbox\{$n$ terms\}\}$ \par \par $\\forall x \\underbrace\{\\exists y (y \\succ x)\}_\{\\mbox\{scope of $\\forall$\}\}$ \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 will produce \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx4610\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ {\i A}\\s\\up6({\fs20 {\i n}})={{\i A}{\u215*}{\i A}{\u215*}\u8230?{\u215*}{\i A}}\\s\\up6({\fs20 {{{\i n}} terms}})}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 and \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx4610\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ {\f5\u8704*}{\i x}{{\f5\u8707*}{\i y}({\i y}{\u8827*}{\i x})}\\s\\do6({\fs20 {scope\~of\~{{\f5\u8704*}}}})}}{\fldrslt }} \par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 3.4.9 Stacking symbols\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\plain L{\up6\fs19 A}T{\dn7 E}X} allows you to set one symbol above another through the {\b0\i0\scaps0\f3 \\stackrel} command. This command accepts two arguments, and sets the first centrally above the second.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \fs19 {{\pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \sb120 \fi0 \fs19 \par {\trowd\cellx4990\cellx9219 {\pard\intbl\ql {\scaps0\b0\i {Type}}\cell} {\pard\intbl\ql {\scaps0\b0\i To produce}\cell} \row} {\trowd\cellx4990\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $X \\stackrel\{f^*\}\{\\rightarrow\}Y$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ {\i X} \\a ({\fs15 {\i f}\\s\\up3({\fs12 *})},{\u8594*}) {\i Y}}}{\fldrslt }} }}\cell} \row} {\trowd\cellx4990\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $f(x) \\stackrel\{\\triangle\}\{=\} x^2 + 1$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ {\i f}({\i x}) \\a ({\fs15 {\u9653*}},=) {\i x}\\s\\up4({\fs15 2})+1}}{\fldrslt }} }}\cell} \row} }\par }}\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 3.4.10 Operators; Sums, Integrals, etc.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 Each of the operation symbols in table\~{\field{\*\fldinst{\lang1024 REF BMtab_bigops \\* MERGEFORMAT }}{\fldrslt{3.8}}} can occur with limits. They are specified as sub- and superscripts to the operator, and {\plain L{\up6\fs19 A}T{\dn7 E}X} will position them appropriately. In an in-text formula they will appear in more-or-less the usual scripting positions; but in a displayed formula they will be set below and above the symbol (which will also be a little larger). The following should give you an idea of how to use them:\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \fs19 {{\pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \sb120 \fi0 \fs19 \par {\trowd\cellx4870\cellx9219 {\pard\intbl\ql {\scaps0\b0\i {Type}}\cell} {\pard\intbl\ql {\scaps0\b0\i To produce}\cell} \row} {\trowd\cellx4870\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $\\sum_\{i=1\}^\{N\} a_i$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ \\i \\su({\i i}=1,{\i N}, ){\i a}\\s\\do4({\fs15 {\i i}})}}{\fldrslt }} }}\cell} \row} {\trowd\cellx4870\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $\\int_a^b f$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ \\i ({\i a},{\i b}, ){\i f}}}{\fldrslt }} }}\cell} \row} {\trowd\cellx4870\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $\\oint_\{\\cal C\}f(x)\\,dx$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ {\f5\u8750*}\\s\\do4({\fs15 {\i C}}){\i f}({\i x}){\charscalex50\~}{\i d}{\i x}}}{\fldrslt }} }}\cell} \row} {\trowd\cellx4870\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $\\prod_\{\\alpha \\in A\} X_\\alpha$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ \\i \\pr({\u945*}{\f5\u8712*}{\i A},, ){\i X}\\s\\do4({\fs15 {\u945*}})}}{\fldrslt }} }}\cell} \row} {\trowd\cellx4870\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $\\lim_\{N\\rightarrow\\infty\}\\sum_\{i=1\}^\{N\}f(x_i)\\Delta x_i$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ \\a\\ac(lim,{\i N}{\u8594*}{\u8734*}) \\i \\su({\i i}=1,{\i N}, ){\i f}({\i x}\\s\\do4({\fs15 {\i i}})){\u916*}{\i x}\\s\\do4({\fs15 {\i i}})}}{\fldrslt }} }}\cell} \row} }\par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi360 We\rquote ll have more to say about the use of {\b0\i0\scaps0\f3 \\,} in section\~{\field{\*\fldinst{\lang1024 REF BMsec_mathspace \\* MERGEFORMAT }}{\fldrslt{3.4.12}}}. Let\rquote s have a look at each of those expressions when displayed:\par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx4610\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ \\i \\su({\i i}=1,{\i N}, ){\i a}\\s\\do6({\fs20 {\i i}}){ }\\,{ } \\i ({\i a},{\i b}, ){\i f}{ }\\,{ }{\f5\u8750*}\\s\\do6({\fs20 {\i C}}){\i f}({\i x}){\charscalex50\~}{\i d}{\i x}{ }\\,{ } \\i \\pr({\u945*}{\f5\u8712*}{\i A},, ){\i X}\\s\\do6({\fs20 {\u945*}}){ }\\,{ }\\a\\ac(lim,{\i N}{\u8594*}{\u8734*}) \\i \\su({\i i}=1,{\i N}, ){\i f}({\i x}\\s\\do6({\fs20 {\i i}})){\u916*}{\i x}\\s\\do6({\fs20 {\i i}})}}{\fldrslt }} \par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 {\*\bkmkstart BMsec_arrays}3.4.11{\*\bkmkend BMsec_arrays} Arrays\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 The {\b0\i0\scaps0\f3 array} environment is provided for typesetting arrays and array-like material. It accepts two arguments, one optional and one mandatory. The optional argument specifies the vertical alignment of the array\emdash use {\b0\i0\scaps0\f3 t}, {\b0\i0\scaps0\f3 b}, or {\b0\i0\scaps0\f3 c} to align the top, bottom, or centre of the array with the centreline of the line it occurs on (the default being {\b0\i0\scaps0\f3 c}). The second argument is as for the {\b0\i0\scaps0\f3 tabular} environment: a series of {\b0\i0\scaps0\f3 l}, {\b0\i0\scaps0\f3 r}, and {\b0\i0\scaps0\f3 c}\rquote s that specify the number of columns and the justification of these columns. The body of the {\b0\i0\scaps0\f3 array} environment uses the same syntax as the {\b0\i0\scaps0\f3 tabular} environment to specify the individual entries of the array.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 For instance the input\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 { \fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par ... let $A = \\begin\{array\}\{rrr\} \par 12 & 3 & 4\\\\ \par -2 & 1 & 0\\\\ \par 3 & 7 & 9 \par \\end\{array\}$ ... \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 will produce the output\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\fs19 let {{\field{\*\fldinst{ EQ {\i A}= \\b \\bc\\[ ({ \\a \\ar \\co3 (12,3,4,\u8722?2,1,0,3,7,9)})}}{\fldrslt }} }}}\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 Note that we had to choose and supply the enclosing brackets ourselves (they are not placed for us so that we can use the {\b0\i0\scaps0\f3 array} environment for array-like material; also, we get to choose what type of brackets we want this way). As in the {\b0\i0\scaps0\f3 tabular} environment, the scope of a command given inside a matrix entry is restricted to that entry.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 We can use ellipsis within arrays as in the following example:\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 { \fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par \\det A = \\left| \\begin\{array\}\{cccc\} \par a_\{11\} & a_\{12\} & \\cdots & a_\{1n\}\\\\ \par a_\{21\} & a_\{22\} & \\cdots & a_\{2n\}\\\\ \par \\vdots & \\vdots & \\ddots & \\vdots\\\\ \par a_\{m1\} & a_\{m2\} & \\cdots & a_\{mn\} \par \\end\{array\} \\right| \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 which produces\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\fs19 {{\field{\*\fldinst{ EQ {\plain det}{\i A}= \\b \\lc\\|\\rc\\| ({ \\a \\ac \\co4 ({\i a}\\s\\do4({\fs15 11}),{\i a}\\s\\do4({\fs15 12}),{\u8943*},{\i a}\\s\\do4({\fs15 1{\i n}}),{\i a}\\s\\do4({\fs15 21}),{\i a}\\s\\do4({\fs15 22}),{\u8943*},{\i a}\\s\\do4({\fs15 2{\i n}}),{\u8942*},{\u8942*},{\u8945*},{\u8942*},{\i a}\\s\\do4({\fs15 {\i m}1}),{\i a}\\s\\do4({\fs15 {\i m}2}),{\u8943*},{\i a}\\s\\do4({\fs15 {\i m}{\i n}}))})}}{\fldrslt }} } }}\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 The {\b0\i0\scaps0\f3 array} environment is often used to typeset material that is not, strictly speaking, an array:\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 { \fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par f(x) = \\left\\\{ \\begin\{array\}\{ll\} \par x & \\mbox\{for $x<1$\}\\\\ \par x^2 & \\mbox\{for $x \\geq 1$\} \par \\end\{array\} \\right. \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 which will yield\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\fs19 {{\field{\*\fldinst{ EQ {\i f}({\i x})= \\b \\lc\\\{ ({ \\a \\al \\co2 ({\i x},{for\~{{\i x}<1}},x\\s\\up4({\fs15 2}), {for\~{{\i x}{\u8805*}1}} )})}}{\fldrslt }} } }}\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb180 \fi0 {\*\bkmkstart BMsec_mathspace}3.4.12{\*\bkmkend BMsec_mathspace} Changes to spacing\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 Sometimes {\plain L{\up6\fs19 A}T{\dn7 E}X} needs a little help in spacing an expression, or perhaps you think that the default spacing needs adjusting. For these purposes we have the following spacing commands:\par {\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 \par {\trowd\cellx1760\cellx4489\cellx4727\cellx6626\cellx9217 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\,}}\cell} {\pard\intbl\ql {thin space}\cell} {\pard\intbl\ql {}\cell} {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\:}}\cell} {\pard\intbl\ql {medium space}\cell} \row} {\trowd\cellx1760\cellx4489\cellx4727\cellx6626\cellx9217 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\!}}\cell} {\pard\intbl\ql {negative thin space}\cell} {\pard\intbl\ql {}\cell} {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\;}}\cell} {\pard\intbl\ql {thick space}\cell} \row} {\trowd\cellx1760\cellx4489\cellx4727\cellx6626\cellx9217 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\quad}}\cell} {\pard\intbl\ql {a quad of space}\cell} {\pard\intbl\ql {}\cell} {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\qquad}}\cell} {\pard\intbl\ql {two quads of space}\cell} \row} }\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi360 The spacing commands {\b0\i0\scaps0\f3 \\,}, {\b0\i0\scaps0\f3 \\quad}, and {\b0\i0\scaps0\f3 \\qquad} can be used in paragraphing mode, too. Here are some examples of these spacing commands used to make subtle modifications to some expressions.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\par \fs19 {{\pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \sb120 \fi0 \fs19 \par {\trowd\cellx4999\cellx9219 {\pard\intbl\ql {\scaps0\b0\i {Type}}\cell} {\pard\intbl\ql {\scaps0\b0\i To produce}\cell} \row} {\trowd\cellx4999\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $\\sqrt\{2\} \\, x$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ \\R(,2){\charscalex50\~}{\i x}}}{\fldrslt }} }}\cell} \row} {\trowd\cellx4999\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $\\int_a^b f(x)\\,dx$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ \\i ({\i a},{\i b}, ){\i f}({\i x}){\charscalex50\~}{\i d}{\i x}}}{\fldrslt }} }}\cell} \row} {\trowd\cellx4999\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $\\Gamma_\{\\!2\}$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ {\u915*}\\s\\do4({\fs15 2})}}{\fldrslt }} }}\cell} \row} {\trowd\cellx4999\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $\\int_a^b \\! \\int_c^d f(x,y)\\,dx\\,dy$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ \\i ({\i a},{\i b}, ) \\i ({\i c},{\i d}, ){\i f}({\i x}\\,{\i y}){\charscalex50\~}{\i d}{\i x}{\charscalex50\~}{\i d}{\i y}}}{\fldrslt }} }}\cell} \row} {\trowd\cellx4999\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $x / \\! \\sin x$}}\cell} {\pard\intbl\ql {{{\i x}/{\plain sin}{\i x}}}\cell} \row} {\trowd\cellx4999\cellx9219 {\pard\intbl\ql {{\b0\i0\scaps0\f3 $\\sqrt\{\\,\\sin x\}$}}\cell} {\pard\intbl\ql {{{\field{\*\fldinst{ EQ \\R(,{\charscalex50\~}{\plain sin}{\i x})}}{\fldrslt }} }}\cell} \row} }\par }}\pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb360 \fi0 3.5 Alignment\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 Recall that the {\b0\i0\scaps0\f3 $equation$} environment can be used to display and automatically number a single- line equation{\cs62\super\chftn} {\*\footnote\pard \s65\ql\fi-113\li397\lin397\f0\fs24{\cs62\super\chftn} See section {\field{\*\fldinst{\lang1024 REF BMsec_display \\* MERGEFORMAT }}{\fldrslt{3.2}}}} . The {\b0\i0\scaps0\f3 eqnarray} environment is used for displaying and automatically numbering either a single expression that spreads over several lines or multiple expressions, while taking care of alignment for us. The syntax is similar to that of the {\b0\i0\scaps0\f3 tabular} and {\b0\i0\scaps0\f3 array} environments, except that no argument is necessary to declare the number and justification of columns. The {\b0\i0\scaps0\f3 eqnarray*} environment does this without numbering any equations.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 { \fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par \\begin\{eqnarray\} \par (a+b)(a+b) & = & a^2 + 2ab + b^2\\\\ \par (a+b)(a-b) & = & a^2 - b^2 \par \\end\{eqnarray\} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 will give\par {\pard\plain\s16\ql\sb120\sa120\keep\widctlpar\f0\tqr\tx4149\tqc\tx4610\tql\tx5071\tqr\tx9220\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ ({\i a}+{\i b})({\i a}+{\i b})}}{\fldrslt }} \tab {\field{\*\fldinst{ EQ =}}{\fldrslt }} \tab {\field{\*\fldinst{ EQ {\i a}\\s\\up6({\fs20 2})+2{\i a}{\i b}+{\i b}\\s\\up6({\fs20 2})}}{\fldrslt }} \tab{\b0 (1)}\par \pard\plain\s16\ql\sb120\sa120\keep\widctlpar\f0\tqr\tx4149\tqc\tx4610\tql\tx5071\tqr\tx9220\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ ({\i a}+{\i b})({\i a}\u8722?{\i b})}}{\fldrslt }} \tab {\field{\*\fldinst{ EQ =}}{\fldrslt }} \tab {\field{\*\fldinst{ EQ {\i a}\\s\\up6({\fs20 2})\u8722?{\i b}\\s\\up6({\fs20 2})}}{\fldrslt }} \tab{\b0 (3.2)}\par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 See how we identify the columns so as to line the {=} signs up. We can also leave entries empty, to obtain effect like the following:\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 { \fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par \\begin\{eqnarray*\} \par \\frac\{d\}\{dx\} \\sin x & = & \\lim_\{h\\rightarrow0\}\\frac\{\\sin(x+h)-\\sin x\}\{h\}\\\\ \par & = & \\lim_\{h\\rightarrow0\}\\frac\{\\sin x\\cos h + \\cos x\\sinh - \\sin x\}\{h\}\\\\ \par & = & \\lim_\{h\\rightarrow0\}\\frac\{\\sin x(\\cos h-1)\}\{h\} + \\cos x\\frac\{\\sin h\}\{h\}\\\\ \par & = & \\cos x \par \\end\{eqnarray*\} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 which produces\par {\pard\plain\s15\ql\sb120\sa120\keep\widctlpar\f0\tqr\tx4149\tqc\tx4610\tql\tx5071\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ \\F({\i d},{\i d}{\i x}){\plain sin}{\i x}}}{\fldrslt }} \tab {\field{\*\fldinst{ EQ =}}{\fldrslt }} \tab {\field{\*\fldinst{ EQ \\a\\ac(lim,{\i h}{\u8594*}0) \\F({\plain sin}({\i x}+{\i h})\u8722?{\plain sin}{\i x},{\i h})}}{\fldrslt }} \par \pard\plain\s15\ql\sb120\sa120\keep\widctlpar\f0\tqr\tx4149\tqc\tx4610\tql\tx5071\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ }}{\fldrslt }} \tab {\field{\*\fldinst{ EQ =}}{\fldrslt }} \tab {\field{\*\fldinst{ EQ \\a\\ac(lim,{\i h}{\u8594*}0) \\F({\plain sin}{\i x}{\plain cos}{\i h}+{\plain cos}{\i x}{\plain sinh}\u8722?{\plain sin}{\i x},{\i h})}}{\fldrslt }} \par \pard\plain\s15\ql\sb120\sa120\keep\widctlpar\f0\tqr\tx4149\tqc\tx4610\tql\tx5071\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ }}{\fldrslt }} \tab {\field{\*\fldinst{ EQ =}}{\fldrslt }} \tab {\field{\*\fldinst{ EQ \\a\\ac(lim,{\i h}{\u8594*}0) \\b \\bc\\\{ ( \\F({\plain sin}{\i x}({\plain cos}{\i h}\u8722?1),{\i h})+{\plain cos}{\i x} \\F({\plain sin}{\i h},{\i h}))}}{\fldrslt }} \par \pard\plain\s15\ql\sb120\sa120\keep\widctlpar\f0\tqr\tx4149\tqc\tx4610\tql\tx5071\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ }}{\fldrslt }} \tab {\field{\*\fldinst{ EQ =}}{\fldrslt }} \tab {\field{\*\fldinst{ EQ {\plain cos}{\i x}}}{\fldrslt }} \par }\pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 3.6 Theorems, Propositions, Lemmas, {\u8230?}\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 Suppose you document contains four kinds of theorem-like structures: \ldblquote theorems\rdblquote , \ldblquote propositions\rdblquote , \ldblquote conjectures\rdblquote , and \ldblquote wild guesses\rdblquote . Then near the beginning of the document you should have something like the following:\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 { \fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par \\newtheorem\{thm\}\{Theorem\} \par \\newtheorem\{prop\}\{Proposition\} \par \\newtheorm\{conjec\}\{Conjecture\} \par \\newtheorem\{wildshot\}\{Hypothesis\} % make it sound good! \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 The first argument to {\b0\i0\scaps0\f3 \\newtheorem} defines a new theorem-like environment name of your own choosing. The second argument contains the text that you want inserted when your theorem is proclaimed:\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 { \fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par \\begin\{thm\} $X$ is normal if, and only if, each pair of disjoint \par closed sets in $X$ is completely separated. \par \\end\{thm\} \par \par \\begin\{wildshot\} % remember, we chose the name 'wildshot' \par The property of Moore extends to all objects of the class $\\Sigma$. \par \\end\{wildshot\} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 which will produce the following:\par {\pard\plain\s17\ql\sb120\sa120\keep\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\b Theorem 1} {\i {{\i X}} is normal if, and only if, each pair of disjoint closed sets in {{\i X}} is completely separated. }\par }{\pard\plain\s17\ql\sb120\sa120\keep\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 {\b Hypothesis 1} {\i The property of Moore extends to all objects of the class {{\u931*}}. }\par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 Notice that {\plain L{\up6\fs19 A}T{\dn7 E}X} italicises the theorem statement, and that you still have to shift in to maths mode when you want to set symbols and expression. Typically, it is the style file that determines what a theorem will appear like\emdash so don\rquote t go changing this if you are preparing for submission for publication (because the journal staff want to substitute their production style for your document style choice, and not be over-ridden by other commands).\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 3.7 Where to from here?\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 We have covered a good deal of {\plain L{\up6\fs19 A}T{\dn7 E}X}\rquote s mathematical abilities, albeit rather superficial coverage here and there. There is much that has been impressive, but there is clearly a lot more to {{\plain T{\dn7 E}X}}nical typesetting than we have covered here\emdash it is not difficult to think of an expression that we don\rquote t yet know how to typeset. Also, there are places where {\plain L{\up6\fs19 A}T{\dn7 E}X} is a little weak and it leaves us to do somewhat more work than the spirit of {\plain T{\dn7 E}X} would suggest.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Of course, we cannot criticise {\plain L{\up6\fs19 A}T{\dn7 E}X} until we know its full capability. So the first place to go from here is the {\i {\plain L{\up6\fs19 A}T{\dn7 E}X} User\rquote s Guide & Reference Manual}. Particularly, the command reference guide in Appendix C of that book is an invaluable source of {\plain L{\up6\fs19 A}T{\dn7 E}X} information that few can afford to do without. With good knowledge of the {\plain L{\up6\fs19 A}T{\dn7 E}X} environments and their options (and we\rquote ve left out many here) one can accomplish a good deal of most typesetting problems. A little imagination (say putting an environment to a slightly non-standard use) can often solve more difficult problems. Lastly, of course, much of raw {\plain T{\dn7 E}X} still sits underneath {\plain L{\up6\fs19 A}T{\dn7 E}X} and so it is true to say that you can do {\i anything} with {\plain L{\up6\fs19 A}T{\dn7 E}X}\emdash but you may need some divine inspiration from time to time (ask your local {\plain T{\dn7 E}X} guru).\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 In the next chapter we will look, very briefly, at a number of {\plain L{\up6\fs19 A}T{\dn7 E}X} commands that we have not yet considered. Nothing exciting on the mathematical front, but there is some other important material (e.g. cross-referencing and page-sizing). For now, let\rquote s look at the \ldblquote way forward\rdblquote with respect to mathematical typesetting.\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 3.8 {\plain {\i AmS}-L{\up6\fs19 A}T{\dn7 E}X}\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 Back in the introduction we said that {\plain {\i AmS}-L{\up6\fs19 A}T{\dn7 E}X} was just a big macro package, the result of a marriage of {\plain L{\up6\fs19 A}T{\dn7 E}X} and {\plain {\i AmS}-T{\dn7 E}X} designed to endow the powerful general-purpose {\plain L{\up6\fs19 A}T{\dn7 E}X} package with the mathematical prowess of {\plain {\i AmS}-T{\dn7 E}X} without compromising the {\plain L{\up6\fs19 A}T{\dn7 E}X} syntax. Most of that is true, except that {\plain {\i AmS}-L{\up6\fs19 A}T{\dn7 E}X} is really just a document-style option (like {\b0\i0\scaps0\f3 12pt}) that can be used within a \ldblquote tweaked {\plain L{\up6\fs19 A}T{\dn7 E}X}\rdblquote . The most visible part of this tweak is the {\i new font selection scheme of Mittelbach and Sch\'f6pf}, discussed more fully in the next chapter. Almost every {\plain L{\up6\fs19 A}T{\dn7 E}X} command and environment survived the transition to {\plain {\i AmS}-L{\up6\fs19 A}T{\dn7 E}X}, the exceptions being those that were considered redundant or under-used (space is at a premium with such a big package). The tweaked {\plain L{\up6\fs19 A}T{\dn7 E}X} package is therefore able to deal with practically every existing {\plain L{\up6\fs19 A}T{\dn7 E}X} document, giving just a few (often pleasant) surprises.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 With the {\b0\i0\scaps0\f3 amstex} style option, one can just start a {\plain L{\up6\fs19 A}T{\dn7 E}X} document with\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 { \fs19 {\par \pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \fi0 \fs19 \par \\documentstyle[amstex]\{article\} % or report, book, etc \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 to gain access to the {{\plain T{\dn7 E}X}}nical excellence of the AMS technical staff. It is not necessary to have read {\i The Joy of {\plain T{\dn7 E}X}} (the {\plain {\i AmS}-T{\dn7 E}X} reference guide) to be able to use the {\b0\i0\scaps0\f3 amstex} option, for {\plain {\i AmS}-L{\up6\fs19 A}T{\dn7 E}X} comes with its own reference guide. Even so, {\i The Joy of TeX} is still highly recommended reading. The syntax of {\plain {\i AmS}-T{\dn7 E}X} has been changed to that of {\plain L{\up6\fs19 A}T{\dn7 E}X}, but one can perform that transformation as you read \ldblquote {\i Joy}\rdblquote and still learn much of the art of technical typesetting. Nowhere else will you find so comprehensive a coverage of the conventions and pitfalls of mathematical typesetting. In addition, {\i Joy} lists all the extra symbols that are available through the {\b0\i0\scaps0\f3 amstex} option (if you thought {\plain L{\up6\fs19 A}T{\dn7 E}X} had a fair selection of esoteric symbols, just wait \rquote til you see those!) and provides in-depth accounts where the {\plain {\i AmS}-L{\up6\fs19 A}T{\dn7 E}X} documentation is brief.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Just as {\plain {\i AmS}-T{\dn7 E}X} comes with the AMS preprint style ({\b0\i0\scaps0\f3 amsppt}), {\plain {\i AmS}-L{\up6\fs19 A}T{\dn7 E}X} comes with a specialist style file for preparation of articles with {\plain {\i AmS}-L{\up6\fs19 A}T{\dn7 E}X} for submission to journals: {\b0\i0\scaps0\f3 amsart}. The {\plain {\i AmS}-L{\up6\fs19 A}T{\dn7 E}X} User\rquote s Guide is quite short and very terse in its explanations (assuming you to be competent in {\plain L{\up6\fs19 A}T{\dn7 E}X}), but is supplemented by a large body of examples and a comprehensive sample article that is a showcase of the abilities of the {\b0\i0\scaps0\f3 amsart} style. You must read both these documents to really learn {\plain {\i AmS}-L{\up6\fs19 A}T{\dn7 E}X}. The AMS also distributes a guide to authors who wish to submit using {\plain {\i AmS}-L{\up6\fs19 A}T{\dn7 E}X}, and this is a must-read once you are familiar with some of {\plain {\i AmS}-L{\up6\fs19 A}T{\dn7 E}X}. \par }} }}}latex2rtf-2.3.18/test/hndout.sty0000777000175000017500000000557313050672360016760 0ustar wilfriedwilfried% Plymouth Polytechnic Computing Service - HANDOUT Document style % Jon Warbrick January 1988 % Copyright (C) Jon Warbrick and Plymouth Polytechnic 1989 % Permission is granted to reproduce the document in any way providing % that it is distributed for free, except for any reasonable charges for % printing, distribution, staff time, etc. Direct commercial % exploitation is not permitted. Extracts may be made from this % document providing an acknolwledgment of the original source is % maintained. % This option re-defines the \maketitle command to generate a standard % Computing Service handout banner. It currently only works for an % 11pt article (though I may fix it oneday) % Just modify the textwidth a bit to center the text on the page \setlength{\textwidth}{6.5in} \setlength{\oddsidemargin}{0in} \setlength{\evensidemargin}{0in} % The title is made up of information supplied by the \title, \author % and \date commands, along with an extra command \docnumber. The % date defaults to the current month and year. \def\docnumber#1{\gdef\@docnumber{#1}} \gdef\@docnumber{X99.99--999} \gdef\@title{There and Back Again} \gdef\@author{Bilbo Baggins} \def\@date{\ifcase\month\or January\or February\or March\or April\or May\or June\or July\or August\or September\or October\or November\or December\fi\space\number\year} \def\maketitle{ \begin{picture}(0,100)(55,-8) \put(0,36){\framebox(214,84){Computing Service Logo}} % dummy logo % \put(0,120){\special{include TeX>inputs>hologo.ps}} \put(234,112){\parbox[t]{234pt}{\centering\Large\bf\@title}} \put(234,60){\parbox[t]{234pt}{\centering \@docnumber \\\relax \@date \\[1em] \@author}} \put(0,0){\line(1,0){468}} \end{picture} \let\maketitle\relax \gdef\@author{}\gdef\@title{}\gdef\@docnumber{}\gdef\@date{} } % Technical documents don't look very good with indented paragraphs, % so set parindent to zero, and increse parskip. To do this job properly, % the space above and below all of the list making enviroments should be % reduced by this ammount as well - again I may do this someday. \setlength{\parindent}{0pt} \setlength{\parskip}{7pt plus 2pt minus 1pt} % Some extra help with including examples of computer input/output is rather % handy. Here is a definition of the alltt enviroment (like verbatim, but % still recognises \, { and }) and example (like alltt, but indented) \def\docspecials{\do\ \do\$\do\&% \do\#\do\^\do\^^K\do\_\do\^^A\do\%\do\~} \def\alltt{\trivlist \item[]\if@minipage\else\vskip\parskip\fi \leftskip\@totalleftmargin\rightskip\z@ \parindent\z@\parfillskip\@flushglue\parskip\z@ \@tempswafalse \def\par{\if@tempswa\hbox{}\fi\@tempswatrue\@@par} \obeylines \tt \catcode``=13 \@noligs \let\do\@makeother \docspecials \frenchspacing\@vobeyspaces} \let\endalltt=\endtrivlist \newenvironment{example}% {\nopagebreak[3]\begin{quote}\begin{alltt}}% {\end{alltt}\end{quote}} \endinput latex2rtf-2.3.18/test/enc_cp866.tex0000777000175000017500000001252713050672360017130 0ustar wilfriedwilfried\documentclass[10pt]{article} \usepackage[russian]{babel} \usepackage[cp866]{inputenc} \begin{document} \begin{center} \begin{tabular}{ccrl} 80&€&410&CYRILLIC CAPITAL LETTER A\\ 81&&411&CYRILLIC CAPITAL LETTER BE\\ 82&‚&412&CYRILLIC CAPITAL LETTER VE\\ 83&ƒ&413&CYRILLIC CAPITAL LETTER GHE\\ 84&„&414&CYRILLIC CAPITAL LETTER DE\\ 85&…&415&CYRILLIC CAPITAL LETTER IE\\ 86&†&416&CYRILLIC CAPITAL LETTER ZHE\\ 87&‡&417&CYRILLIC CAPITAL LETTER ZE\\ 88&ˆ&418&CYRILLIC CAPITAL LETTER I\\ 89&‰&419&CYRILLIC CAPITAL LETTER SHORT I\\ 8A&Š&41A&CYRILLIC CAPITAL LETTER KA\\ 8B&‹&41B&CYRILLIC CAPITAL LETTER EL\\ 8C&Œ&41C&CYRILLIC CAPITAL LETTER EM\\ 8D&&41D&CYRILLIC CAPITAL LETTER EN\\ 8E&Ž&41E&CYRILLIC CAPITAL LETTER O\\ 8F&&41F&CYRILLIC CAPITAL LETTER PE\\ 90&&420&CYRILLIC CAPITAL LETTER ER\\ 91&‘&421&CYRILLIC CAPITAL LETTER ES\\ 92&’&422&CYRILLIC CAPITAL LETTER TE\\ 93&“&423&CYRILLIC CAPITAL LETTER U\\ 94&”&424&CYRILLIC CAPITAL LETTER EF\\ 95&•&425&CYRILLIC CAPITAL LETTER HA\\ 96&–&426&CYRILLIC CAPITAL LETTER TSE\\ 97&—&427&CYRILLIC CAPITAL LETTER CHE\\ 98&˜&428&CYRILLIC CAPITAL LETTER SHA\\ 99&™&429&CYRILLIC CAPITAL LETTER SHCHA\\ 9A&š&42A&CYRILLIC CAPITAL LETTER HARD SIGN\\ 9B&›&42B&CYRILLIC CAPITAL LETTER YERU\\ 9C&œ&42C&CYRILLIC CAPITAL LETTER SOFT SIGN\\ 9D&&42D&CYRILLIC CAPITAL LETTER E\\ 9E&ž&42E&CYRILLIC CAPITAL LETTER YU\\ 9F&Ÿ&42F&CYRILLIC CAPITAL LETTER YA\\ \end{tabular} \pagebreak \begin{tabular}{cccl} A0& &430&CYRILLIC SMALL LETTER A\\ A1&Ą&431&CYRILLIC SMALL LETTER BE\\ A2&˘&432&CYRILLIC SMALL LETTER VE\\ A3&Ł&433&CYRILLIC SMALL LETTER GHE\\ A4&¤&434&CYRILLIC SMALL LETTER DE\\ A5&Ľ&435&CYRILLIC SMALL LETTER IE\\ A6&Ś&436&CYRILLIC SMALL LETTER ZHE\\ A7&§&437&CYRILLIC SMALL LETTER ZE\\ A8&¨&438&CYRILLIC SMALL LETTER I\\ A9&Š&439&CYRILLIC SMALL LETTER SHORT I\\ AA&Ş&43A&CYRILLIC SMALL LETTER KA\\ AB&Ť&43B&CYRILLIC SMALL LETTER EL\\ AC&Ź&43C&CYRILLIC SMALL LETTER EM\\ AD&­&43D&CYRILLIC SMALL LETTER EN\\ AE&Ž&43E&CYRILLIC SMALL LETTER O\\ AF&Ż&43F&CYRILLIC SMALL LETTER PE\\ B0&&2591&LIGHT SHADE\\ B1&&2592&MEDIUM SHADE\\ B2&&2593&DARK SHADE\\ B3&&2502&BOX DRAWINGS LIGHT VERTICAL\\ B4&&2524&BOX DRAWINGS LIGHT VERTICAL AND LEFT\\ B5&&2561&BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE\\ B6&&2562&BOX DRAWINGS VERTICAL DOUBLE AND LEFT SINGLE\\ B7&&2556&BOX DRAWINGS DOWN DOUBLE AND LEFT SINGLE\\ B8&&2555&BOX DRAWINGS DOWN SINGLE AND LEFT DOUBLE\\ B9&&2563&BOX DRAWINGS DOUBLE VERTICAL AND LEFT\\ BA&&2551&BOX DRAWINGS DOUBLE VERTICAL\\ BB&&2557&BOX DRAWINGS DOUBLE DOWN AND LEFT\\ BC&&255D&BOX DRAWINGS DOUBLE UP AND LEFT\\ BD&&255C&BOX DRAWINGS UP DOUBLE AND LEFT SINGLE\\ BE&&255B&BOX DRAWINGS UP SINGLE AND LEFT DOUBLE\\ BF&&2510&BOX DRAWINGS LIGHT DOWN AND LEFT\\ \end{tabular} \pagebreak \begin{tabular}{cccl} C0&&2514&BOX DRAWINGS LIGHT UP AND RIGHT\\ C1&&2534&BOX DRAWINGS LIGHT UP AND HORIZONTAL\\ C2&&252C&BOX DRAWINGS LIGHT DOWN AND HORIZONTAL\\ C3&&251C&BOX DRAWINGS LIGHT VERTICAL AND RIGHT\\ C4&&2500&BOX DRAWINGS LIGHT HORIZONTAL\\ C5&&253C&BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL\\ C6&&255E&BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE\\ C7&&255F&BOX DRAWINGS VERTICAL DOUBLE AND RIGHT SINGLE\\ C8&&255A&BOX DRAWINGS DOUBLE UP AND RIGHT\\ C9&&2554&BOX DRAWINGS DOUBLE DOWN AND RIGHT\\ CA&&2569&BOX DRAWINGS DOUBLE UP AND HORIZONTAL\\ CB&&2566&BOX DRAWINGS DOUBLE DOWN AND HORIZONTAL\\ CC&&2560&BOX DRAWINGS DOUBLE VERTICAL AND RIGHT\\ CD&&2550&BOX DRAWINGS DOUBLE HORIZONTAL\\ CE&&256C&BOX DRAWINGS DOUBLE VERTICAL AND HORIZONTAL\\ CF&&2567&BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE\\ D0&&2568&BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE\\ D1&&2564&BOX DRAWINGS DOWN SINGLE AND HORIZONTAL DOUBLE\\ D2&&2565&BOX DRAWINGS DOWN DOUBLE AND HORIZONTAL SINGLE\\ D3&&2559&BOX DRAWINGS UP DOUBLE AND RIGHT SINGLE\\ D4&&2558&BOX DRAWINGS UP SINGLE AND RIGHT DOUBLE\\ D5&&2552&BOX DRAWINGS DOWN SINGLE AND RIGHT DOUBLE\\ D6&&2553&BOX DRAWINGS DOWN DOUBLE AND RIGHT SINGLE\\ D7&&256B&BOX DRAWINGS VERTICAL DOUBLE AND HORIZONTAL SINGLE\\ D8&&256A&BOX DRAWINGS VERTICAL SINGLE AND HORIZONTAL DOUBLE\\ D9&&2518&BOX DRAWINGS LIGHT UP AND LEFT\\ DA&&250C&BOX DRAWINGS LIGHT DOWN AND RIGHT\\ DB&&2588&FULL BLOCK\\ DC&&2584&LOWER HALF BLOCK\\ DD&&258C&LEFT HALF BLOCK\\ DE&&2590&RIGHT HALF BLOCK\\ DF&&2580&UPPER HALF BLOCK\\ \end{tabular} \pagebreak \begin{tabular}{cccl} E0&ŕ&440&CYRILLIC SMALL LETTER ER\\ E1&á&441&CYRILLIC SMALL LETTER ES\\ E2&â&442&CYRILLIC SMALL LETTER TE\\ E3&ă&443&CYRILLIC SMALL LETTER U\\ E4&ä&444&CYRILLIC SMALL LETTER EF\\ E5&ĺ&445&CYRILLIC SMALL LETTER HA\\ E6&ć&446&CYRILLIC SMALL LETTER TSE\\ E7&ç&447&CYRILLIC SMALL LETTER CHE\\ E8&č&448&CYRILLIC SMALL LETTER SHA\\ E9&é&449&CYRILLIC SMALL LETTER SHCHA\\ EA&ę&44A&CYRILLIC SMALL LETTER HARD SIGN\\ EB&ë&44B&CYRILLIC SMALL LETTER YERU\\ EC&ě&44C&CYRILLIC SMALL LETTER SOFT SIGN\\ ED&í&44D&CYRILLIC SMALL LETTER E\\ EE&î&44E&CYRILLIC SMALL LETTER YU\\ EF&ď&44F&CYRILLIC SMALL LETTER YA\\ F0&đ&401&CYRILLIC CAPITAL LETTER IO\\ F1&ń&451&CYRILLIC SMALL LETTER IO\\ F2&ň&404&CYRILLIC CAPITAL LETTER UKRAINIAN IE\\ F3&ó&454&CYRILLIC SMALL LETTER UKRAINIAN IE\\ F4&ô&407&CYRILLIC CAPITAL LETTER YI\\ F5&ő&457&CYRILLIC SMALL LETTER YI\\ F6&ö&40E&CYRILLIC CAPITAL LETTER SHORT U\\ F7&÷&45E&CYRILLIC SMALL LETTER SHORT U\\ F8&ř&B0&DEGREE SIGN\\ F9&ů&2022&BULLET\\ FA&ú&B7&MIDDLE DOT\\ FB&$ű$&221A&SQUARE ROOT\\ FC&ü&2116&NUMERO SIGN\\ FD&ý&A4&CURRENCY SIGN\\ FE&ţ&25A0&BLACK SQUARE\\ FF&˙&A0&NO-BREAK SPACE\\ \end{tabular} \end{center} \end{document} latex2rtf-2.3.18/test/fig_testd.ps0000777000175000017500000000636113050672360017226 0ustar wilfriedwilfried%!PS-Adobe-3.0 %%Pages: (atend) %%BoundingBox: 8 8 208 208 %%HiResBoundingBox: 8.750000 8.750000 207.250000 207.250000 %......................................... %%Creator: AFPL Ghostscript 800 (pswrite) %%CreationDate: 2003/10/07 08:18:30 %%DocumentData: Clean7Bit %%LanguageLevel: 2 %%EndComments %%BeginProlog % This copyright applies to everything between here and the %%EndProlog: % Copyright (C) 2002 artofcode LLC, Benicia, CA. All rights reserved. %%BeginResource: procset GS_pswrite_2_0_1001 /GS_pswrite_2_0_1001 80 dict dup begin /PageSize 2 array def/setpagesize{ PageSize aload pop 3 index eq exch 4 index eq and{ pop pop pop}{ PageSize dup 1 5 -1 roll put 0 4 -1 roll put dup null eq {false} {dup where} ifelse{ exch get exec} { pop/setpagedevice where { pop 1 dict dup /PageSize PageSize put setpagedevice} { /setpage where{ pop PageSize aload pop pageparams 3 {exch pop} repeat setpage}if}ifelse}ifelse}ifelse} bind def /!{bind def}bind def/#{load def}!/N/counttomark # /rG{3{3 -1 roll 255 div}repeat setrgbcolor}!/G{255 div setgray}!/K{0 G}! /r6{dup 3 -1 roll rG}!/r5{dup 3 1 roll rG}!/r3{dup rG}! /w/setlinewidth #/J/setlinecap # /j/setlinejoin #/M/setmiterlimit #/d/setdash #/i/setflat # /m/moveto #/l/lineto #/c/rcurveto # /p{N 2 idiv{N -2 roll rlineto}repeat}! /P{N 0 gt{N -2 roll moveto p}if}! /h{p closepath}!/H{P closepath}! /lx{0 rlineto}!/ly{0 exch rlineto}!/v{0 0 6 2 roll c}!/y{2 copy c}! /re{4 -2 roll m exch dup lx exch ly neg lx h}! /^{3 index neg 3 index neg}! /f{P fill}!/f*{P eofill}!/s{H stroke}!/S{P stroke}! /q/gsave #/Q/grestore #/rf{re fill}! /Y{P clip newpath}!/Y*{P eoclip newpath}!/rY{re Y}! /|={pop exch 4 1 roll 3 array astore cvx exch 1 index def exec}! /|{exch string readstring |=}! /+{dup type/nametype eq{2 index 7 add -3 bitshift 2 index mul}if}! /@/currentfile #/${+ @ |}! /B{{2 copy string{readstring pop}aload pop 4 array astore cvx 3 1 roll}repeat pop pop true}! /Ix{[1 0 0 1 11 -2 roll exch neg exch neg]exch}! /,{true exch Ix imagemask}!/If{false exch Ix imagemask}!/I{exch Ix image}! /Ic{exch Ix false 3 colorimage}! /F{/Columns counttomark 3 add -2 roll/Rows exch/K -1/BlackIs1 true>> /CCITTFaxDecode filter}!/FX{<‘+IÉ2.1Ž‘KwŽKERNEL/OPERA‘ţĄĎTING‘™™SYSTEMŽŸY˜‘+IšA‘ňďkćgernel›ó is–ó merely“a˜computer“program˜that“acts˜as“a˜mediator“through˜which“the˜user“interĚĐ-ޤ ‘+Iacts–Œwith“the“computer“and“its“components“and“peripheral“deŔvices“(processor™Ÿ,‘processes,‘ les,ŽĄ‘+Idisks,–h×terminals,“printers,“plotters,‘hÖetc.).‘HjA‘:UNIX‘:operating–:Fsystem“consists“of‘:Ea“kćgernel“andŽĄ‘+Isome–hźsystem›h˝programs.‘×There“are˜also“some˜application“programs˜for“doing˜wšćgork.‘×The“k˜ernelŽĄ‘+Iis–Wthe›Vheart“of˜the“operating˜systemŸü^˙Ń1ŽŽ‘š.‘ĺœIt˜kćgeeps“track˜of“ les˜on“the˜disk,‘?Źstarts˜programs“andŽĄ‘+Iruns–“%them›“$concurrently‘˙Y ,‘×íassigns“memory˜and“other˜resources“to˜všŔarious“processes,‘×írecei˜vŮ esŽĄ‘+Ipackćgets–&from›%and“sends˜packćgets“to˜the“netwćgork,‘6Žand“so˜on.‘Đ The˜kćgernel“does˜vŮ ery“little˜by“it-ŽĄ‘+Iself,‘b^bšĚĐut‘5it–5proŮ vides“tools“with“which“all“services“can“be“b˜uilt.‘8ßIt“also“preŔvšŮ ents“an˜yone“fromŽĄ‘+Iaccessing–?the›?hardwćgare“directly‘˙Y ,‘nÜforcing“eŔvŮ eryone“to˜use“the“tools“it˜proŮ vides.‘VÝThis˜wćgay“theŽĄ‘+Ikćgernel–ľproŮ vides›śsome“protection˜for“users˜from“each˜other‘˙s8.‘Ą¸The“tools˜proŮ vided“by˜the“kćgernelŽĄ‘+Iare–v used“via“system“calls.‘FWhen“loaded,‘x the“module“code“resides“in“the“kćgernel'‘˙s8s“address“spaceŽĄ‘+Iand›€e•Ů x“ecutes˜entirely˜within˜the˜conte“xt˜of˜the˜kćgernel.‘˜[3Ž‘]ŽŠ‘+IEvŮ erything–[)that›[*the“kćgernel“support“does˜not“haĚĐvŮ e“to“be˜in“memory“all˜the“time.‘ PNoŔw˜days“mostŽĄ‘+Iof–R˙the›Rţkćgernels“are˜modular‘˙s8.‘ ˜It˜means“that˜some“system˜functions“are˜loaded“into˜memory“whenŽĄ‘+Ineeded.A‘Ą@kćgernel–ĄHmodule›ĄIis“simply˜an“object“ le˜containing“routines˜and/or“data˜to“load˜into“aŽĄ‘+Irunning‘€kćgernel.‘˜[3Ž‘]ŽŚ‘+IThe–üXsystem“programs›üYuse“the“tools“proŮ vided˜by“the“kćgernel“to“implement˜the“vŔarious“servicesŽĄ‘+Irequired–Üîfrom“an“operating“system.‘0bSystem“programs,›ô)and“all“other“programs,˜run“`on“top“ofŽĄ‘+Ithe– ˝kćgernel',‘.Źin› žwhat“is“called“the“user˜mode.‘źĎThe“di erence“between˜system“and“applicationŽĄ‘+Iprograms–×äis›×ĺone“of˜intent:‘É`applications˜are“intended˜for“getting“useful˜things“done˜(or“forŽĄ‘+Iplaying,›Linux“it“is“not“as‘=clear“since“it“is“spread“all“o•Ů v“er–>the“FTP‘sites“of“the“wćgorld“or“bĚĐundledŽĄ‘+Iwith–€di erent“distribĚĐutions.‘˜[3Ž‘]Ž‘GŸőž‰ffŠÔ÷Ÿ ƒč‘ ćhŸý-:Ó1ŽŽŽ‘fhŇIn–řÖfšë†act,‘úFit“is‘ř×often“mistak˜enly›ř×considered“to“be˜the“operating˜system“itself,‘úEb× ut˜it“is˜not.‘x}An“operating˜system“pro•áMvides˜man“y‘řÖmoreŽŸ €services–than“a“plain“kë†ernel.ŽŽŸ’ăÜQš3ŽŽŒ‹ź ɍ ýCŸüfd‘GšLinux–€V‘ţă×ersus“AIX,“HP-UX,“TŚgru64“UNIX,“SolarisŽŽŽ’t˘mby–€C‘Žžó3Žesar“da“SilvŔaŽŽŽŽ‘GŸ‰ff¨–ŽŽŽŽ Ÿ ý˘üŸÝŐȍ’Ě>ň**Missing**ŽŸ ’`jFigure–€2.1:‘˜Block“diagram“of“an“operating“system.ŽŽŽŸ8Ś‘+IÉ2.2Ž‘KwŽHIST˝ŤOR‘˙~űY–™™OF“UNIXŽŸ§Á‘+IšDennis– SRitchie“and“KšŔen“Thompson‘ Rat“Bell“Laboratories“de˜vŮ eloped“UNIX‘ /on“a“PDP-7“in“theޤ ‘+Ilate–/>1960s;‘†Ţit“wćgas“ rst“called‘/?UNIX›/in“1970.‘'SAfter“1975,‘[UNIX˜deŔvŮ eloped“along‘/?twćgo“sepa-ŽĄ‘+Irate–óbranches‘ôleading“to“BerkšćgeleŮ y“(BSD)–ÍUNIX“and–óSystem“V‘ÍUNIX.“NoŔw˜adays,‘;pSystem“VŽĄ‘+IUNIX‘Vis›V6aĚĐvŔailable–V7on“most˜computers“bĚĐut“di erent“to˜popular“belief,‘‹Äthere“is“no˜such“thingŽĄ‘+Ias–ƒÄa›ƒĹ"standard"“UNIX‘ƒvŮ ersion.‘$ĺAlthough˜the“basic“commands˜are“aĚĐvŔailable“in˜most“UNIXŽĄ‘+Iimplementations,‘shardwšćgare–Č\vŮ endors“lik˜e›Č]to“add“non-standard˜options“and“an˜identical“itemŽĄ‘+Icommands–ě;to“tailor“their“UNIX‘ěto“their“machines.‘^JStandardization“is,‘Iho•Ŕwe“vŮ er™Ÿ,‘Jbeing‘ě;underĚĐ-ŽĄ‘+Itakšćgen–pWby“the“Open‘pVSoftw˜are“FŮ oundation“(OSF)‘pSand,‘syseparately‘˙Y ,‘sxby“Unix“International;‘uthe“ rstŽĄ‘+Iprecede,–€OSF/1,“is“running“on“the“neŔw“DEC“an“Alpha“computer‘˙s8.‘˜[2Ž‘]ŽŸN)‘+ISince–8˙the›9mid-1980s“approximately‘˙Y ,‘G3UNIX‘8íhas“eŔvĚĐolvŮ ed˜into“the˜operating“system“of˜choice“forŽĄ‘+Imost–š°machines›šŻ(probably“because“it˜is“cheap“for˜a“hardwćgare“vŮ endor˜to“adopt“it),‘Ą[which“meansŽĄ‘+Ithat–Ośusers›Oˇin“a˜multi-vŮ endor“computer˜en™Ÿvironment“no“longer˜haĚĐvŮ e“to˜learn“a˜neŔw“operatingŽĄ‘+Isystem–gŰwheneŔvšŮ er“the˜y“get‘gÜa“nešŔw“computer“(no˜w“thešŮ y“only“haĚĐv˜e‘gÜto“fćgamiliarize“themselv˜es“withŽĄ‘+Ithe–€system-speci c“eŮ xtensions).[2Ž‘]ŽŸN*‘+IUNIX‘ŕYdoes–ŕqhaĚĐvŮ e“some›ŕrstrong“points:‘Ú{it“is˜fćgairly“portable,›řŽ eŮ xible“(i.e.,˜easy“to“change,˜adaptŽĄ‘+Iand–vOešŮ xtend)“and“contains“se•Ŕv˜eral›vNpo“werful–vOutilities.‘]Also,‘x@it˜supports“multiple“users“and“multi-ŽĄ‘+Itasking.‘ZŮNeŔvšŮ ertheless,‘p…UNIX‘@9is–@kstill“v˜ery“much“an‘@joperating“system“for“computer“program-ŽĄ‘+Imers;‘ŕŚin›Ŕnskilled–Ŕohands,‘Њit“is“vŮ ery˜poŔwerful,‘ЊbĚĐut“to“the˜noŮ vice“end-user˜it“is“sometimes˜a“night-ŽĄ‘+Imare–,ż(system-speci c‘,ŔešŮ xtensions,‘Wďinconsistent“syntax).‘×F˜ortunately‘˙Y ,‘Wďon“the‘,Ŕmodern“graphicsŽĄ‘+Iwšćgorkstations–€more“and“more“tools“become“aĚĐvŔailable“which“mak˜e“life“easier‘˙s8.[2Ž‘]ŽŸ$n‘+IÉ2.3Ž‘KwŽUNIX–™™PR‘oODUCT“O‘˙G­VER‘˙5FVIEWŽŸ§Â‘+IĚAIXŽŽ‘BešŸü^˙Ń2ŽŽ‘JLĺšwćgas›ç-the–ç, rst“major˜second-generation“UNIX‘ćĐproduct“to“ship“after˜Sun“and“HP‘ćĐes-ŽĄ‘AItablished–mHits›mGUNIX‘m beachheads“in˜the“1980s.[2Ž‘]˜AIX‘m 5L‘m is“the˜ rst“vŮ ersion˜of“AIX‘m toŽĄ‘AIsupport–eplatforms“other“than“IBM'‘˙s8s“PoŔwerĚĐ-based“hardwćgare.‘ȞThis“vŮ ersion“runs“also“onŽĄ‘AIsystems–!Ábased›!Âon“Intel'‘˙s8s˜upcoming“64-bit˜Itanium“(IA-64)˜processor™Ÿ,‘J1putting˜IBM‘!˜in“aŽĄ‘AIstrong–ĄJposition“to“takćge“an“early“lead“on“IA-64“with“a“production-grade“UNIX‘ ˙systemŽĄ‘AIaĚĐvšŔailable–ÎŔon“the“day“of“shipment.‘ŘIt‘ÎÁno˜w“also“has“the“capability“to“run“Linux“programs,ŽĄ‘AIwhich–€are“compiled“with“their“"AIX“T‘˙37oolbox“for“Linux"“package.[7Ž‘]ŽŸœR‘+IĚHP-UXŽŽ‘Oş0Ÿü^˙Ń3ŽŽ‘V‡š{–ĚçHP‘ĚÓhas›Ěćlong“been˜a“leading˜supplier˜of“commercial˜UNIX‘ĚÓsolutions,‘ŕ succeedingŽĄ‘AIin–ç&part“by“emphasizing“bĚĐusiness-oriented“fćgactors“such“as“quality‘˙Y ,‘ďin™ŸvŮ estment“protection,ŽĄ‘AIconsulting–&Xabilities,›8Fand“support.‘űľIn“the“80s,˜HP‘&Awćgas“one“of›&Wthe“ rst“major“vŮ endors˜to“pre-ŽĄ‘AIdict–œĚthe“markćget“potential“of“an“impro•Ů v“e–œĚand“robĚĐust“UNIX›œĹoperating“system.‘oüHP˜seeks“toŽĄ‘AIposition–#HP-UX‘as“the“preferred›"enterprise“UNIX‘for“neŮ xt-generation˜commodity“servŮ ersŽĄ‘AIbased–‡3on“IA-64.‘/2Due“in“part“to“its“focus“on“the“needs“of‘‡4bĚĐusiness“users,‘‰HP‘‡1has“a“historyŽĄ‘AIof–#×introducing›#ŘadvŔanced“UNIX‘#­functions˜conserv•Ŕati“vŮ ely–#×in“HP-UX,˜optimizing“insteadŽĄ‘AIfor–ž[criteria“such“as›ž\stability“and“in™ŸvŮ estment“protection.‘ÔŠBut˜with“HP-UX‘žK11i“announcedŽĄ‘AIin–:DJuly“2000,‘H6HP›:3clearly“shoŔwed‘:Cits“intensions“about“pushing“HP-UX˜technically‘˙Y ,‘H6includ-ŽĄ‘AIing–€a“bĚĐurst“of“competitišŔvŮ e“tactical“features“in“the“ne˜west“release.‘˜[9Ž‘]ŽŸœS‘+IĚSOLARIS‘€8ŽŽ‘cwŸü^˙Ń4ŽŽ‘iČ#š{–P”Sun›P“originally“made˜UNIX‘Pˆfćgashionable.‘ ÉAfter˜establishing“itself˜as“a˜leadingŽĄ‘AIsupplier–"Ôof“high-performance“wćgorkstations‘"Óduring“the“1980s“and“early“1990s,‘5vSun“shiftedŽ‘GŸ,ń‰ffŠÔ÷Ÿ ƒč‘ ćhŸý-:Ó2ŽŽŽ‘fhŇAIX–is“copë†yrighted“by“IBM.ޤ Ă鍍‘ ćhŸý-:Ó3ŽŽŽ‘fhŇHP-UX–is“copë†yrighted“by“HeĚÍwlett“PáMackard.ŽĄ‘ ćhŸý-:Ó4ŽŽŽ‘fhŇSolaris–is“copë†yrighted“by“Sun“Microsystems.ŽŽŸ’ăÜQš4ŽŽŽŽŽŽŽŒ‹Ú ɍ ýCŸüfd‘GšLinux–€V‘ţă×ersus“AIX,“HP-UX,“TŚgru64“UNIX,“SolarisŽŽŽ’t˘mby–€C‘Žžó3Žesar“da“SilvŔaŽŽŽŽ‘GŸ‰ff¨–ŽŽŽŽ Ÿ ý„‘AIits–¤°stratešŮ gic“goal“to‘¤Żbecoming“a“ rst-tier“v˜endor“of“enterprise‘¤Żserv˜ers.[2Ž‘]“Sun“announcedޤ ‘AIthe–SSolaris“8“release“on“January“26,‘Á¨2000.‘‘Sun“also“announced“the“free“access“to“theŽĄ‘AISolaris–L}source›L~and“end-user“binary‘˙Y .‘mThe“Solaris“8˜Operating“En™Ÿvironment“is˜aĚĐvŔailable“forŽĄ‘AIboth–€the“SP‘˙ARC(tm)“and“Intel“platforms.[18Ž‘ ]ŽŠ‘+IĚTRł7U64‘€UNIXŽŽ‘jí`Ÿü^˙Ń5ŽŽ‘qłAšderiŔvŮ es–Ĺáfrom›Ĺŕa“long“and“sometimes“contentious˜relationship“between“UNIXŽĄ‘AIculture–×%and›×$Digital“Equipment“Corporation,‘,íwhich˜Compaq“purchased“in˜early“1998.ŽĄ‘AIUnix–7Íwćgas›7Ěborn“and“bred“on˜Digital“hardwćgare“in˜the“1970s.‘‡A‘ţă×T&T‘7ťand˜uniŔvŮ ersities“mostlyŽĄ‘AIdro•Ů v“e›šŠUNIX‘ššdeŔv“elopment,‘ČbĚĐut˜Digital‘šŞal•ćgw“ays˜maintained˜a˜UNIX‘ššgroup˜to˜deŔvŮ elop˜andŽĄ‘AIsupport–Ş=drišŔvŮ ers“as“well‘Ş>as“to“test“ne˜w“designs“on“UNIX.‘Ş>Digital“e˜vŮ entually“released“UL-ŽĄ‘AITRIX,–ö which›ö!wćgas“UNIX‘öimpro•Ů v“ed–ö by˜clearer“documentation,‘¨enhancements˜speci c“toŽĄ‘AIDigital–/Vhardwćgare,‘?yand“support“services.‘ţśAs“the“industry›/WbeŮ gó7an“to“use˜UNIX‘/Bmore,‘?xDigitalŽĄ‘AIalong–Á#with›Á"other“vŮ endors,‘Ńkfunded˜e orts“such˜as“the“X‘ÁW™ŸindoŔw“System,‘Ńkthe˜Open“Soft-ŽĄ‘AIwćgare–ĽśFšŮ oundation“(OSF)‘ĽŹinitiatiŔv˜e.‘ŠšTŚgru64“UNIX‘ĽŹbecame›Ľľthe“ rst“in“the˜industry“to“mo•Ů v“eŽĄ‘AIto›˙64–˙bits,‘Ýand“also˜played“an˜early˜role“in˜the“creation˜of˜Linux“by˜donating“resources˜andŽĄ‘AIequipment–Wso“that“Linux›Vhad“a“natiŔvŮ e“Alpha“port“by“1994.[2Ž‘]“The˜latest“TŚgru64“UNIX‘>v5.1ŽĄ‘AIwšćgas–éreleased‘éin“the“f˜all›éof“2000.‘TÍT‘˙37oday‘˙Y ,‘VCompaq'‘˙s8s“Alpha˜UNIX‘č÷bĚĐusiness“is˜focused“onŽĄ‘AI Ŕv•Ů e›9üstrate“gic˜markćgets:‘Business˜Intelligence,‘h{High˜Performance˜T‘˙LĐechnical˜Computing,ŽĄ‘AIT‘˙LĐelco–€and“Internet“Applications,“and“Enterprise“Applications.[24Ž‘ ]ŽŚ‘+IĚLINUXŽŽ‘PI‰š{–§óLinus›§ôT‘˙37orvŔalds,‘ąđa“Finnish˜student,‘ąđ rst“deŔvŮ eloped“LinuxŸü^˙Ń6ŽŽ‘§ôšin“1991.‘‘rHe˜deŔvŮ eloped“aŽĄ‘AIminimal–˘Unix“kćgernel›Ąand“posted“a“message˜to“an“Internet“neŔwsgroup,‘7Iasking“if“anŮ yoneŽĄ‘AIwćgould–ibe›jinterested“in˜helping“him“to˜deŔvŮ elop“it.‘fFirst“tens,‘ˆthen“hundreds˜of“indiŔvidualsŽĄ‘AIbeŮ gó7an–“dedicating›’˙their“free˜time“to˜dešŔvŮ eloping“Linux.‘R–No˜w“the›’˙number“of˜vĚĐolunteersŽĄ‘AIhas–ÝÝgroŔwn›ÝŢinto“the˜thousands.‘30IndiŔviduals“vĚĐolunteer˜their“time“to˜perform“such˜tasks“asŽĄ‘AIkćgernel–€debĚĐugging,“quality“control,“and“writing“documentation.ŽŠ‘AIA‘ŔLinux–Ŕ(distribĚĐution“includes“the›Ŕ'kćgernel“and“user“utilities“from˜the“GNU‘Ŕsystem,‘Đ2deŔvŮ el-ŽĄ‘AIoped–¤Oby“the“Free“Softwšćgare“FŮ oundation‘¤Psince“1982,‘­cwhich“mak˜es“it“a“complete“operatingŽĄ‘AIsystem.‘;ĄThis–‹Xtools›‹YhaĚĐvŮ e“been“in˜deŔvŮ elopment“for“about“a˜decade“before“the˜Linux“deŔvŮ el-ŽĄ‘AIopment–Ństarted.‘ó The“utilities/tools›ĐalloŔws“Linux“distribĚĐutions˜to“haĚĐvŮ e“a“complete˜set“ofŽĄ‘AItools–€that“can“be“eŮ xpected“of“an“UNIX“operating“system.ŽŚ‘AIThere–9ƒare›9‚vŔarious“distribĚĐutions“that˜are“free“to˜doŔwnload“from“the˜Internet“or“that˜you“canŽĄ‘AIbĚĐuy–rfor“a›ssmall“amount“of“moneŮ y‘˙Y .‘ôżThe“result“is“a“commercial“operating˜system“that“ri•Ŕv“als,ŽĄ‘AIor‘<eŔv•Ů en›<e“xceeds,‘IĽcommercial˜releases–<of“Unix˜aĚĐvŔailable“today‘˙Y .‘óIts“stability“and˜breadth“ofŽĄ‘AIfeatures–Ţhas›Ţcaptured“the“attention“of˜netwćgork“administrators“who“haĚĐvŮ e˜deploćgyed“LinuxŽĄ‘AIfor–4u le,‘a’print“and“W‘˙37eb“servŮ ers.‘6÷Linux“is“one“of“the“most“popular“UNIX‘4Gclones“amongŽĄ‘AIhome– Ęusers,‘#Őwhich“has› ËcontribĚĐuted“to“a“wider“acceptance“and˜knoŔwledge“of“UNIX‘ ­amongŽĄ‘AIend–tŹusers,‘vđwhere“it'‘˙s8s›t­usage“is“increasing“rapidly‘˙Y .‘ŇLinux“is“also“starting“to“get˜its“foot“intoŽĄ‘AIthe–€embedded“and“corporation“markćget.[67Ž‘ ]ŽŚ‘AIThe–tlatest“stable›trelease“branch“is“vŮ ersion“2.4,‘vtwhich“wćgas“released“on“the˜4:th“of“JanuaryŽĄ‘AI2001,‘%which–Đĺincludes‘ĐćmanšŮ y“impro˜v˜ed“enhancements›Đćrelated“to“the˜preŔvious“vŮ ersions,ŽĄ‘AIthe–Đmost›Ńnotable“impro•Ů v“ement–Đis˜support“for“the˜multitude“of˜printers,‘@Ddigital“cameras,ŽĄ‘AIscanners,–ÇŃkšćgeŮ yboards,“mice,“netw˜ork›†Acards,‘ÇŇmodems,“Zip˜dri•ŔvŮ es˜and˜other‘†Bde“vices˜thatŽĄ‘AIplug–˛into›˛the“uniŔvŮ ersal˜serial“bĚĐus˜(USB)‘˛ port,‘žžSMP‘ţă×,“and˜3-D‘˛ accelerated“cards.‘ŻâThe“neŔwŽĄ‘AIkšćgernel–Wis“already“included“in“vŔarious“Linux“distribĚĐutions“(SuSe,‘ŒÉLinux“Mandrak˜e,‘ŒČRedŽĄ‘AIHat.–˙.“.“.[66Ž‘ ]ŽŸ%żü‘+IÉ2.4Ž‘KwŽPREVIOUS‘™™RESEARCHŽŸY˜‘+IšThere–áŢis›áßno“knoŔwn“research˜of“this“kind˜about“Linux.‘?3The˜latest“kćgernel“vŮ ersion˜2.4.x“branch,ŽĄ‘+Iwćgas–ťreleased›źon“the“4:th˜of“January“2001[66Ž‘ ].‘rĘIf˜anŮ y“similar“research˜before“has˜been“done,‘Ľ*itŽ‘GŸž‰ffŠÔ÷Ÿ ƒč‘ ćhŸý-:Ó5ŽŽŽ‘fhŇT¸Sru64–UNIX“is“copë†yrighted“by“Compaq.ŽŸ Ă鍍‘ ćhŸý-:Ó6ŽŽŽ‘fhŇLinux–is“a“trademark“by“Linus“T‘˙\,orvĚÍalds.ŽŽŸ’ăÜQš5ŽŽŽŽŽŽŽŒ‹ąŮ ɍ ýCŸüfd‘GšLinux–€V‘ţă×ersus“AIX,“HP-UX,“TŚgru64“UNIX,“SolarisŽŽŽ’t˘mby–€C‘Žžó3Žesar“da“SilvŔaŽŽŽŽ‘GŸ‰ff¨–ŽŽŽŽ Ÿ ý„‘+Iwćgould–ďbe›ďwith“an“older“branch˜of“the“kćgernel,‘ Ýwhich˜means“that“the˜research“is“not“up˜to“dateޤ ‘+Iand–˜Vhence“not›˜Wthe“same“as“this“report.‘b›There“is“a“research˜by“D.H.“BroŔwn“Associates,‘žlInc“thatŽĄ‘+Icompares›ÎĘAIX‘Îľ4.3.3,–â|HP-UX‘Îś11i,“Solaris‘ÎÉ8,“TŚgru64˜UNIX–Îś5.1‘ÎÉand˜UNIXW‘ţĚĐARE“7.1.1‘ÎÉto˜eachŽĄ‘+Iother™Ÿ,–€Linux“is“neŔvŮ er“compared“in“this“studies.[26Ž‘ ]ŽŸ%żü‘+IÉ2.5Ž‘KwŽIMPOR‘˙l”T‘ţ´CANT‘™™THEORIESŽŸY˜‘+IÍ2.5.1Ž‘OIKERNEL–SPECIFIC“FEA‘ţÜ,TURESŽŸżţ‘+IĚKERNEL‘€THREADSŽŽ’"˙š{–ŃEA‘Ń0thread“(as“de ned“by“Maurice‘ŃDBach'‘˙s8s“\The“Design“of“the“UNIXŽĄ‘AIOperating–nSystem")›ois“an“independent“ oŔw˜of“control“within˜a“process,‘>‰composed˜of“aŽĄ‘AIconte•Ů xt›Ő§(including‘Ő¨re“gister˜set˜and–Ő¨a˜program˜counter)˜and“a˜sequence˜of“instructions˜toŽĄ‘AIe•Ů x“ecute.‘¨UThe–Ż”traditional“ oŔw“of“control“within›Ż•a“program“has“been“a“process˜with“a“sin-ŽĄ‘AIgle–ěĄcontešŮ xt“of“re˜gisters,‘ÉfolloŔwing“a“single“path“through‘ě the“code.‘_{This“is“referred“to“asŽĄ‘AIthe–D\process-base"“or“\single-threaded›Cmodel".‘ÖdFŮ or“an“application˜in“a“single-threadedŽĄ‘AImodel–ĹŐto“handle“multiple“tasks,‘×Jit“wćgould“haĚĐvŮ e“to“break“those“tasks“up“into“multiple“pro-ŽĄ‘AIcesses,‘IËcoordinate–<>with“signal‘<=handlers“to“prošŮ vide“some“concurrenc˜y‘˙Y ,‘IËor‘<=simply“deal“withŽĄ‘AIthose–ěotasks“serially›ěn(one“after“the“other).[32Ž‘ ]“In“this˜case“it“is“the“kćgernel“itself˜and“not“aŽĄ‘AIuserĚĐ-space–M§process›M¨that“is˜threaded.‘‚ŽThis“alloŔws˜for“independent“tasks˜in“the˜kćgernel“toŽĄ‘AIbe–lĺrun›lćsynchronously“instead˜of“being˜forced“to˜use“asynchronous˜multipleŮ xing“betweenŽĄ‘AIactiŔvities.[3Ž‘]ŽŠ‘+IĚHO™ŸT‘€SW‘ţĚĐAPŽŽ‘dVš{–ĘAlloŔws“changing“peripheral“while“the“computer‘Ëis“running.‘ćöThis“means“thatŽĄ‘AIthere–œOis›œNno“need˜to“stop“the˜system“while˜hardwćgare“maintenance˜is“done“(i.e.‘nƒchanging“aŽĄ‘AIfćgaulty–€hard“disk).[30Ž‘ ]ŽŚ‘+IĚSYSV–€INTERPRł7OCESS“COMMUNICA‘˙ ĎTION“(IPC)ŽŽ’Átšis–ćha“set“of“programming“interfćgace“thatŽĄ‘AIallošŔw–ša“programmer“to“create“and“manage‘šindi˜vidual“program“process“that“can“run“con-ŽĄ‘AIcurrently–ˆin›‡˙an“operating˜system.‘1—This˜alloŔws“a˜program“to˜handle“manŮ y˜user“requests˜atŽĄ‘AIthe–!Jsame“time.‘ýuSince“a›!Isingle“user“request“may˜result“in“multiple“processes˜running“inŽĄ‘AIthe–Vfoperating“system“on“the“user'›˙s8s“behalf,‘^¸the“processes“need“to“communicate“with“other˜.ŽĄ‘AIThe–uĘIPC‘uŠinterfšćgaces“mak˜e“this“possible.‘úöEach“IPC‘uŠmethod“has“its“ošŔwn“adv˜antages“andŽĄ‘AIlimitations–ôso“it“is“not›ôŽunusual“for“a“single“program“to“use“all“of“the˜IPC‘ôqmethods.‘wEIPCŽĄ‘AImethods‘€include:‘˜[3Ž‘]ŽŠ‘IÄy¸ŽŽŽ‘SÄzšpipe–€and“named“pipeޤ‘IÄy¸ŽŽŽ‘SÄzšmessage‘€queueingŽĄ‘IÄy¸ŽŽŽ‘SÄzšsemaphoreŽĄ‘IÄy¸ŽŽŽ‘SÄzšshared‘€memoryŽĄ‘IÄy¸ŽŽŽ‘SÄzšsockćgetsŽŚ‘+IĚD™ŸYNĚĐAMIC–€PRł7OCESSOR“RESILIENCEŽŽ’ŕemš{–Ż6The“operating“system“isolates“fćgaulty“CPUs.‘§:Inޤ ‘AIthe–ŃešŔvŮ ent“of“a“non-fćgatal“error“that“allo˜ws‘Ňthe“system“to“continue“processing,‘)Ĺthe“systemŽĄ‘AIdiscontinues–˘íthe“usage“of“the“fšćgailed“CPU.‘˘îIf“the“system“crashes“because“of“the“f˜aultyŽĄ‘AICPU,–€the“system“will“restart“and“isolate“the“fćgaulty“CPU.ŽŠ‘+IĚD™ŸYNĚĐAMIC–€MEMORŚgY“RESILIENCEŽŽ’Ň˙šalloŔw–ZUthe“operating“system“to“isolate“fćgaulty“memoryŽĄ‘AIareas–-‹that“su er›-Šfrom“single-bit“errors,‘Xíso“that˜the“softwšćgare“w˜ont“use‘-ŠanŮ y“of“unreliableŽĄ‘AImemory‘€are.[26Ž‘ ]ŽŚ‘+IĚD™ŸYNĚĐAMIC–€P‘˙BA‘˙s8GE“SIZINGŽŽ’Łeš{–ŃĄUNIX‘ŃIoperating›Ń systems“normally˜uses“ xŮ ed{size˜pages“toŽĄ‘AIperform–”¤I/O‘”žoperations.‘W„But“some“application‘”Łmay“bene t“from“vŔariable“page“sizes.‘WƒFŮ orŽĄ‘AIešŮ xample,‘s†programs–pgthat‘phuses“man˜y›phsmall“ les˜(such“as˜e-mail“servŮ ers)˜may“operate˜moreŽĄ‘AIeciently–"Ůwith›"Úsmall“pages,‘Kwhile˜I/O{intensiŔvŮ e“programs“using“larŃđge˜blocks“transfersŽĄ‘AImay–€run“better“with“larŃđger“page“sizes.[26Ž‘ ]ŽŽŸ’ăÜQ6ŽŽŽŽŽŽŽŒ‹ÇJ ɍ ýCŸüfd‘GšLinux–€V‘ţă×ersus“AIX,“HP-UX,“TŚgru64“UNIX,“SolarisŽŽŽ’t˘mby–€C‘Žžó3Žesar“da“SilvŔaŽŽŽŽ‘GŸ‰ff¨–ŽŽŽŽ Ÿ ý„‘+IĚAL‘˙TERNĚĐA›˙ ĎTE–€I/O“P‘˙BA˜THINGŽŽ’ʍ šallošŔws–úěthe“operating‘úísystem“to“re-route“the“I/O‘ú‹of“de˜vices,ޤ ‘AIsuch–€as“disk“or“netwšćgork“adapters,“to“a“backup“deŔvice,“in“case“of“f˜ailure.[26Ž‘ ]ŽŠ‘+IĚLIVE‘€UPGRADEŽŽ‘|třšalloŔws–@¨installation›@§of“operating“system˜image“to˜occur“simultaneouslyŽĄ‘AIwhile–€the“system“is“being“use.ŽŚ‘+IĚBSD–€PrŃđocess“AccountingŽŽ’™oŔšalloŔw–ćhfor“a“userĚĐ-space“program“to“record“detailed“information“aboutŽĄ‘AIanŮ y–ÜWparticular›ÜVprocess,‘ólhoŔw“much“memory˜and“CPU‘Ü?cŮ ycles˜it“utilized,›ólthe“oŔwner™Ÿ,˜whenŽĄ‘AIit–€beŮ gó7an“and“ended,“etc.ŽŸ Ÿü‘+IÍ2.5.2Ž‘OIDISTRIBáIUTED‘SYSTEMSŽŸżţ‘+IšThe–ćhnormal“usage“of“distribĚĐuted“systems“is“to“archiŔvŮ e“high-performance“systems,‘ load-balancingŸü^˙Ń7ŽŽŽĄ‘+Išand–€high-aĚĐvŔailabilityŸü^˙Ń8ŽŽ‘€šsystems“or“anŮ y“combination“of“them.[3Ž‘]ŽŸ‘+IĚSYMMETRIC–€MUL‘˙TI-PRł7OCESSING“MODEL“(SMP)ŽŽ’tœš{–yIn›za“symmetric˜multiprocessingŽĄ‘AImodel–GR(often“abbreŔviated“as“SMP)‘GDall“the“processors“share‘GSidentical“copćgy“of“the“same“op-ŽĄ‘AIerating›Ňîsystem,–çŠmemory‘˙Y ,‘ç¨I/O‘ŇŮresources,“and–Ňíthe˜copies“of˜the˜operating“system˜commu-ŽĄ‘AInicate–Uîwith›Uíone“another“as“needed.‘ ’Since˜all“processors“in˜an“SMP‘UăservŮ er“must“be˜able“toŽĄ‘AIaccess–iAall›i@system“resources˜simultaneously‘˙Y ,‘mÎoperating˜systems“are˜deeply“in™ŸvĚĐolvŮ ed˜in“theŽĄ‘AIquality–8of“an“SMP‘7őimplementation.‘›Indeed,‘Fmenabling“a“kćgernel‘8to“e ectiŔvŮ ely“manage“larŃđgeŽĄ‘AInumbers–9Úof“processors›9Űhas“traditionally“presented“an“eŮ xtraordinary˜and“tedious“challengeŽĄ‘AIfor–€operating-system“deŔvŮ elopers.[3Ž‘]ŽŠ‘AIThere–Nřis“no›N÷generally“appropriate“wćgay“to˜anticipate“hoŔw“well“an˜application“will“scaleŽĄ‘AIon›—Šan–—ŞSMP‘—Łsystem“under˜real{wćgorld“conditions,‘“bĚĐut“the˜TCP-C‘—¤(TŚgransaction˜ProcessingŽĄ‘AIPerformance–ĂôCouncil)›Ăőbenchmark“is“the“most˜widely“accepted“method“to˜measure“SMPŽĄ‘AIsystems.‘3TCP-C‘Ýľare›ÝÎvŮ endorĚĐ-neutral–ÝÍand“subjected˜to“rigorous˜auditing“procedures.‘3TheŽĄ‘AItest– sstresses› ta“number˜of“system˜components“that˜are“frequently˜e•Ů x“ercised‘ sin˜commercial-ŽĄ‘AIservŮ er‘€applications.[78Ž‘ ]ŽŚ‘AIBut–­šas›­™you“can˜read“from“the˜TCP-C‘­Ltestes,‘ůbiggest˜is“not˜al•ćgw“ays–­šbest,‘ř˙because“theŮ yŽĄ‘AIdon'Ńđt–Í˙scale“well.‘”And“all“vŮ endors›Íţseldom“sell“machines“with“their˜maximum“amount“ofŽĄ‘AIpossible–€processors“(look“at“the“vŮ endors“o erings).[78Ž‘ ]ŽŸ‘+IĚNON-UNIFORM–€MEMORŚgY“A‘˙s8CCESS“(NUMA)ŽŽ’ţ}š{–°?On›°@a“multi“processor“system˜the“pro-ŽĄ‘AIcessors–LUnormally“share›LVthe“same“bĚĐus“to˜the“memory“and“I/O‘L!deŔvices.‘~˜This“means“thatŽĄ‘AIall–ayCPUs“in“the“system“are“subjected‘axto“the“same“latencŮ y“and“bandwidth“restrictions“withŽĄ‘AIrespect–ßto“accessing“the“system'‘˙s8s“memory“and“I/O‘šchannels.‘Ű5Uniform“Memory“AccessŽĄ‘AI(UMA)‘î‰is–îŽa“term“sometimes“used‘îŻto“describe“this“system“architecture.‘é(One“wćgay“to“addressŽĄ‘AIthis–{’bottleneck“is“to›{“design“a“system“bĚĐuilt“from“SMP‘{‘blocks“(each˜with“a“limited“numberŽĄ‘AIof–šŽCPUs,‘ĄZmemory“arrays“and›šŻI/O‘š§ports)“and“add˜a“second-leŔvŮ el“bĚĐus“or˜switch“to“connectŽĄ‘AIthe– blocks.‘ů˘Non-Uniform› Memory“Access“(NUMA)‘ is˜the“term˜used“to“describe˜this“typeŽĄ‘AIof–Ć7system›Ć8architecture“because˜it“results˜in“a˜bandwidth“and“latencŮ y˜di erence,‘×Ĺdepend-ŽĄ‘AIing–Aon“whether“a‘Aparticular“CPU›A accesses“memory“and“I/O˜resources‘Alocally“(in“the“sameŽĄ‘AIbšĚĐuilding–€block“where“the“CPU“resides)“or“remotely“(in“another“b˜uilding“block).[27Ž‘ ]ŽŸ Ÿü‘+IÍ2.5.3Ž‘OIDISTRIBáIUTED–FILE“SYSTEMSŽŸżţ‘+IšDistribĚĐuted–Ök le›Ölsystem“stores˜ les“on“one˜or“more“computers˜called“servŮ ers,‘ěand˜makćges“themŽĄ‘+Iaccessible–€Ěto“other›€Ëcomputers“called“clients,‘€ţwhere“theŮ y“appear“as˜normal“ les.‘űThere“are“seŔv-ŽĄ‘+Ieral–W advŔantages›W to“using˜ le“servŮ ers:‘the“ les˜are“more“widely˜aĚĐvŔailable“since˜manŮ y“computersŽĄ‘+Ican–?access“the“servŮ ers,‘:and“sharing“the“ les“from“a“single‘@location“is“easier“than“distribĚĐutingŽĄ‘+Icopies–.6of›.5 les“to˜indiŔvidual“clients.‘ţTBackups“and˜safety“of˜the“information˜are“easier˜to“arrangeŽ‘GŸž‰ffŠÔ÷Ÿ nl‘ ćhŸý-:Ó7ŽŽŽ‘fhŇThe–main“system“distrib× utes“the“system“load“between“the“di erent“CPUs“belonging“to“the“system.ŽŸ Ă鍍‘ ćhŸý-:Ó8ŽŽŽ‘fhŇSystems–that“no“matter“what,“ha× váMe“to“run“24“hour“a“day“and“7“days“a“week.ŽŽŸ’ăÜQš7ŽŽŽŽŽŽŽŒ‹ؐ ɍ ýCŸüfd‘GšLinux–€V‘ţă×ersus“AIX,“HP-UX,“TŚgru64“UNIX,“SolarisŽŽŽ’t˘mby–€C‘Žžó3Žesar“da“SilvŔaŽŽŽŽ‘GŸ‰ff¨–ŽŽŽŽ Ÿ ý„‘+Isince–úonly“the“servšŮ ers‘ůneed“to“be“backćged“up.‘ďěThe“serv˜ers‘ůcan“pro˜vide“larŃđge“storage“space,‘űwhichޤ ‘+Imight–:źbe“costly“or“impractical›:˝to“supply“to“eŔvŮ ery“client.‘IĚThe˜usefulness“of“a“distribĚĐuted“ leŽĄ‘+Isystem–Ëibecomes“clear“when“considering“a“group“of“emploćgyees“sharing“documents.‘űÓHo•Ŕwe“vŮ er™Ÿ,ŽĄ‘+Imore–¤Ôis“possible.‘ˆFšŮ or“e˜xample,›Ž sharing‘¤Őapplication“softwćgare,˜and“printers“are‘¤Őan“equally“goodŽĄ‘+Icandidate.‘˜In–€both“cases“system“administration“becomes“easier[3Ž‘].ŽŠ‘+IThe–tVprotocols“that“we“are“going“to“get“in“touch‘tWwith“and“that“makćges“use“of“the“functionality“ofŽĄ‘+Ian–€distribĚĐuted“ lesystem“are:ŽŸ‘+IĚNETWćgORK–€FILE“SYSTEMŽŽ’ŞÄ6šwćgas–ű€deŔvŮ eloped›űby“Sun˜Microsystems“and˜introduced“to˜theŽĄ‘AImarkćget–€1984.‘˜The“most“common“used“všŮ ersion“of“NFS“are“v˜ersion“2“and“3.[3Ž‘]ŽŸ‘AINFS‘֘všŮ ersion‘Öď3–Öđcontains“seŔv˜eral“features“to“impro˜v˜e“performance,‘,Ťreduce“serv˜er“load,ŽĄ‘AIand–ČGreduce“netwšćgork“trac.‘ňmSince“NFS‘Č4vŮ ersion“3“is“f˜aster“for“I/O‘Č4writes,‘ÚYand“uses“feŔwerŽĄ‘AIoperations›ŕo•Ů v“er˜the–ánetwćgork,‘GŘit˜will˜use˜the“netwćgork˜more˜ecient.‘ů9Higher˜throughputŽĄ‘AImay–îmakšćge“the“netw˜ork“bĚĐusier‘˙s8.‘ĽbNFS‘ÍvšŮ ersion“3“maintains“the“stateless“serv˜er“design“andŽĄ‘AIsimple›Ńécrash‘Ńčreco•Ů v“ery˜of˜v“ersion–Ńč2˜along˜with“its˜approach“to˜bĚĐuild˜a“distribĚĐuted˜ leŽĄ‘AIservice–€from“cooperating“protocols.[23Ž‘ ]ŽŚ‘+IĚCODŚgA–€FILE“SYSTEMŽŽ’’ßšis–ěan›íeŮ xperimental“ le˜system,‘#§with“its˜origin“in˜AFS2Ÿü^˙Ń9ŽŽ‘š,‘#§deŔvŮ elopedŽĄ‘AIin–€the“group“of“M.“Satyanarayanan“at“CarnešŮ gie“Mellon“UniŔv˜ersity“since“1987.[3Ž‘]ŽŚ‘+IĚSER–˙s8VER›€MESSA“GE˜BLOCKŽŽ’ą‹ćš(commonly–ŘwabbreŔviated“as‘ŘvSMB)‘Ř`protocol.‘"üThis“protocol“isŽĄ‘AIsometimes–Žşalso“referred“to“as“the“Common‘ŽšInternet“File“System“(CIFS),“LanManager“orŽĄ‘AINetBIOS–€protocol.‘˜IBM“and“Microsoft“deŔvŮ eloped“it.[3Ž‘]ŽŚ‘+IĚAPPLET‘˙ ALKŽŽ‘lI€šis–Ö/local›Ö.area“netwćgork˜communication“protocol˜originally“created˜for“AppleŽĄ‘AIcomputers.‘AIt–+alloŔws‘,Macintosh“computers“to“communicate,‘vshare“resources“through“theŽĄ‘AInetwćgork.‘˜[5Ž‘]ŽŚ‘+IĚNETW‘ţĚĐAREŽŽ‘b‰‰šmade‘ďčby›ďéNo•Ů v“ell.‘iPInitially˜v“ery–ďčsuccessful“in˜installing“its“products“in˜larŃđge“andŽĄ‘AIsmall–×[oce›×Zlocal“area“netwćgorks˜(LANs),‘í1No•Ů v“ell–×[has˜redesigned“(or“at˜least“re-featured)ŽĄ‘AINetW‘˙37are–<Üto›<Űwćgork“successfully˜as“part“of˜larŃđger“and˜heterogeneous“netwćgorks,‘lincludingŽĄ‘AIthe‘€Internet.[4Ž‘]ŽŸ Ÿü‘+IÍ2.5.4Ž‘OIFILE‘SYSTEMSŽŸżţ‘+IšAlmost–ÁűešŔvŮ ery“operating“system‘Áühas“its“o˜wn“ lesystem“(the“mechanism‘Áüfor“storage“and“accessŽĄ‘+Ito–€the“data“and“programs“on“the“storage).[3Ž‘]ŽŚ‘+IThe–Źšsupport›ʏof“vŔarious“ le“systems˜alloŔws“the“system“to˜be“used“for“reading/writing˜to“mediaŽĄ‘+Iin–ÔŮan›ÔŘen™Ÿvironment“with“di erent“other˜operating“systems,‘*without“the“usage˜of“distribĚĐutedŽĄ‘+I lesystem‘€method.ŽŚ‘+IHere–€is“a“short“presentation“of“someŸü^˙Ń10ŽŽ› šof“the“ le“systems“[67Ž˜]:ŽŸ‘+IĚVF‘˙ A‘˙ ĎTŽŽ‘Ipš{‘€W™ŸindoŔws.ŽŚ‘+IĚEXTŽŽ‘D ™š{–€Used“by“older“Linux.‘˜There“is“a“neŔwer“impro•Ů v“ed›€v“ersion˜called˜EXT2.ŽŚ‘+IĚISO‘€9660ŽŽ‘WĚš{–€A“ lesystem“standard“for“CD'‘˙s8s.ŽŚ‘+IĚNTFSŽŽ‘I ™š{‘€NT‘˙B.ŽŚ‘+IĚHPFSŽŽ‘I ˜š{‘€OS/2.ŽŚ‘+IĚUFSŽŽ‘Bőš{–̘used“by“System“V‘˙B;“Coherent;‘räXenix;‘răBSD;“and“deri•Ŕv“ati“vŮ es–̘likćge“SunOS,“FreeBSD,ŽĄ‘AINetBSD,–€and“NeXTStep.ŽŚ‘+IĚHFSŽŽ‘C„pš{–€The“older“Macintosh“Hierarchical“File“System.‘˜The“neŔwer“ lesystem“is“called“HFS+.Ž‘GŸž‰ffŠÔ÷Ÿ ƒč‘ ćhŸý-:Ó9ŽŽŽ‘fhŇAFS‘%’is–%Ýmarkë†eted,‘oSmaintained,‘oTand“eáMxtended“by“T¸Sransarc“Corporation.‘ěxAFS‘%‘is“based“on‘%Ţa“distrib× uted“ le“system“originallyŽŸ €deĚÍvšáMeloped–at“the“Information“T‘˙pŚechnology“Center“at“Carne˜gie-Mellon“UniĚÍv˜ersity“that“wë†as“called“the“AndreĚÍw“File“System.ŽŸ Ă鍍‘ćhŸý-:Ó10ŽŽŽ‘fhŇThere–are“to“manáMy“to“mention“them“all“in“this“thesis.ŽŽŸ’ăÜQš8ŽŽŽŽŽŽŽŒ‹ ëá ɍ ýCŸüfd‘GšLinux–€V‘ţă×ersus“AIX,“HP-UX,“TŚgru64“UNIX,“SolarisŽŽŽ’t˘mby–€C‘Žžó3Žesar“da“SilvŔaŽŽŽŽ‘GŸ‰ff¨–ŽŽŽŽ Ÿ ý„‘+IĚAFFSŽŽ‘IAš{–€Amigó7a“FŮ ast“File“System.ŽŸ‘+IĚMemory–€File“SystemŽŽ’ˆ`oš{–€The“ le{system“resides“completely“in“virtual“memory‘˙Y .ޤ‘+IThe–;ltechniques›;mdescribed“beloŔw˜can“be˜stackćged˜in“a“number˜of“wćgays˜to“maximize˜performanceŽŠ ‘+Iand–€reliability›˙Y ,“though“at“the“cost“of“added“compleŮ xity˜.ŽĄ‘+IĚREDUNDŚgANT–€ARRA‘ţ˙˙Y“OF“INDEPENDENT“DISKS“(RAID)ŽŽ’4íšis–+~a›+}wćgay“of“storing˜the“sameŽŚ‘AIdata–8Éin›8Ędi erent“places˜(thus,‘fűredundantly)˜on“multiple“hard˜disk“.‘CőBy“placing˜data“onŽŚ‘AImultiple–Qzdisks,›…×I/O‘QDoperations“can“o•Ů v“erlap‘Qyin–Qza“balanced“wćgay‘˙Y ,˜improŮ ving“performance.ŽŚ‘AISince–mmultiple“disks“increases“the“mean“time“between“fćgailure“(MTBF),“storing“data“re-ŽŚ‘AIdundantly–€also“increases“fćgault-tolerance.[3Ž‘]ޤ‘AIA–jŒRAID“appears–j’to›j‘the“operating˜system“to˜be“a˜single“logical˜hard“disk.‘sRAID‘jŒemploćgysŽŚ‘AIthe–`:technique“of›`9striping“,‘˜Hwhich˜in™ŸvĚĐolvšŮ es“partitioning“each“driŔv˜er'‘˙s8s‘`9storage“space“intoŽŚ‘AIunits–%Wranging“from“a“sector“(512“bytes)“up“to‘%XseŔvšŮ eral“me˜gó7abytes.‘ The“stripes“of“all“theŽŚ‘AIdisks–€are“interleaĚĐvŮ ed“and“addressed“in“order‘˙s8.[3Ž‘]ŽĄ‘AIIn–ç_a›ç`single-user“system“where“larŃđge˜records,‘6such˜as“medical“or“other˜scienti c“images,ŽŚ‘AIare–ůłstored,‘the›ů˛stripes“are“typically˜set“up˜to“be“small˜(perhaps“512“bytes)˜so“that˜a“sin-ŽŚ‘AIgle– Rrecord“spans› Qall“disks“and“can“be“accessed˜quickly“by“reading“all“disks˜at“the“sameŽŚ‘AItime.[3Ž‘]ŽĄ‘AIIn–Ś a›Ś multi-user“system,‘Żbetter“performance˜requires“establishing“a˜stripe“wide˜enough“toŽŚ‘AIhold–ˆ\the“typical“or“maximum“size“record.‘2ŤThis“allošŔws“o•Ů v“erlapped–ˆ\disk“I/O‘ˆZacross“dri˜vŮ es.ŽŚ‘AIThere–€eŮ xists“twćgo“methods“on“implementing“RAID:[3Ž‘]ŽŸ‘AIĚSoftwarŃđe‘€RAIDŽŽ’ˆAŃš{–ÂImplemented›Âon“the“kćgernel.‘ßáSloŔw“bĚĐut˜cheap.‘ßáThis“is“the“one˜used“inŽŚ‘SÄzthis–€thesis“for“comparation.ŽĄ‘AIĚHardŮ warŃđe‘€RAIDŽŽ’ŞČš{–ŠImplemented“in“the“hardwćgare“and“use“on“SAN'‘˙s8s“and“almost“eŔvŮ eryŽŚ‘SÄzSCSI‘çncontroller›çĚhas–çËsupport“for“it.‘PůIn“comparation˜to“softwšćgare“RAID,“hardw˜areŽŚ‘SÄzRAID‘ß`is–ßşmore“e•Ů xpensiŔv“e–ßşbĚĐut“also›ßťmuch“fćgaster™Ÿ,‘7¨ecient“and˜has“more“functions:ŽŚ‘SÄzremote–€copšćgy‘˙Y ,“ ashcop˜y.–˙.“.ŽŸ‘AIThere–€are“at“least“nine“types“of“RAID“plus“a“non-redundant“array“(RAID-0):‘˜[31Ž‘ ]ŽŸ‘AIĚRAID-0ŽŽ‘gňš{–ć This“technique“has‘ć striping“bĚĐut“no“redundancŮ y“of“data.‘K¸It“o ers“the“bestŽŚ‘SÄzperformance–€bĚĐut“no“fćgault-tolerance.ŽĄ‘AIĚRAID-1ŽŽ‘gňš{–Ç­This›ÇŽtype“is“also˜knoŔwn“as“disk˜mirroring“and“consists˜of“at“least˜twćgo“driŔvŮ esŽŚ‘SÄzthat–eĽduplicate“the“storage“of‘eŚdata.‘ʇThere“is“no“striping.‘ʈRead“performance“is“im-ŽŚ‘SÄzpro•Ů v“ed–osince›peither“disk˜can“be“read˜at“the“same˜time.‘qćWrite“performance˜is“theŽŚ‘SÄzsame–xas“for“single“disk“storage.‘öRAID-1“proŮ vides“the“best“performance“and“the“bestŽŚ‘SÄzfćgault-tolerance–€in“a“multi-user“system.ŽĄ‘AIĚRAID-2ŽŽ‘gňš{–"This“type“uses“striping“across‘"disks“with“some“disks“storing“error“checkingŽŚ‘SÄzand–€correcting“(ECC)“information.‘˜It“has“no“advŔantage“o•Ů v“er‘€RAID-3.Ÿü^˙Ń11ŽŽŽĄ‘AIĚRAID-3ŽŽ‘gňš{–— This“type›—uses“striping“and“dedicates˜one“driŔvŮ e“to“storing˜parity“information.ŽŚ‘SÄzThe–ô˜embedded“error“checking›ô™(ECC)‘ô8information“is“used“to“detect˜errors.‘w`DataŽŚ‘SÄzreco•Ů v“ery–A)is›A*accomplished“by“calculating˜the“e•Ů xclusiŔv“e–A)OR‘A(XOR)‘Aof˜the“informationŽŚ‘SÄzrecorded–jŻon“the“other“drišŔvŮ es.‘~Since“an“I/O‘jŠoperation‘j°addresses“all“dri˜vŮ es“at“the“sameŽŚ‘SÄztime,‘“óRAID-3–\Ăcannot“o•Ů v“erlap–\ĂI/O.“FŮ or“this–\Âreason,‘“ôRAID-3“is–\Ăbest“for“single-userŽŚ‘SÄzsystems–€with“long“record“applications.ŽĄ‘AIĚRAID-4ŽŽ‘gňš{–ť~This›ť}type“uses“larŃđge˜stripes,‘ ]which˜means“you˜can“read“records˜from“anŮ yŽŚ‘SÄzsingle›7ůdri•ŔvŮ e.‘A‚This‘7řallo“ws˜you˜to˜takćge‘7řadv“antage˜of˜o•Ů v“erlapped–7řI/O‘7Ęfor“read˜opera-ŽŚ‘SÄztions.‘”qSince–¨óall‘¨ôwrite“operations“haĚĐvšŮ e“to“update“the“parity“driŔv˜e,‘ł0no“I/O‘¨éo˜v˜erlappingŽŚ‘SÄzis–€possible.‘˜RAID-4“o ers“no“advŔantage“o•Ů v“er‘€RAID-5.Ž‘GŸž‰ffŠÔ÷Ÿ ƒč‘ćhŸý-:Ó11ŽŽŽ‘fhŇRAID-2– €and› -3“requires˜spindle“synchronization˜in“order˜to“achieĚÍváMe˜good“performance.‘^V‘˙Źery“feĚÍw˜commodity“driĚÍváMes˜support“thatŽŸ €today‘˙zć,therefore–these“RAID“lešĚÍváMels“are“almost“ne˜váMer“used.ŽŽŸ’ăÜQš9ŽŽŽŽŽŽŽŒ‹ ýt ɍ ýCŸüfd‘GšLinux–€V‘ţă×ersus“AIX,“HP-UX,“TŚgru64“UNIX,“SolarisŽŽŽ’t˘mby–€C‘Žžó3Žesar“da“SilvŔaŽŽŽŽ‘GŸ‰ff¨–ŽŽŽŽ Ÿ ý„‘AIĚRAID-5ŽŽ‘gňš{–TThis›Tžtype“includes“a˜rotating“parity“array‘˙Y ,‘]Kthus“addressing“the˜write“limitationޤ ‘SÄzin–ńâRAID-4.‘o@Thus,‘[all“read›ńăand“write˜operations“can˜be“o•Ů v“erlapped.‘o@RAID-5‘ńâstoresŽĄ‘SÄzparity–É_information“bšĚĐut‘É^not“redundant“data“(b˜ut›É^parity“information“can“be˜used“toŽĄ‘SÄzreconstruct–bşdata).‘×RAID-5“requires“at›bťleast“three˜and“usually“ ŔvŮ e˜disks“for˜the“array‘˙Y .ŽĄ‘SÄzIt'‘˙s8s–\ĺbest“for›\ćmulti-user“systems“in“which“performance˜is“not“critical“or˜which“do“feŔwŽĄ‘SÄzwrite‘€operations.ŽŠŻ+‘AIThere–Ŕ!are“also“hó7ybrids“aĚĐvšŔailable“based“on“RAID‘Ŕ0“or“1“and“one“other“le˜v•Ů el.‘ŮűMan“y‘Ŕ!otherŽĄ‘AIcombinations›v$are–v#possible.‘üThese“are˜more“compleŮ x˜than“the˜abo•Ů v“e‘v#mentioned˜RAIDŽĄ‘AIleŔvŮ els.ŽŸ ו‘AIRAID‘Ša0/1–Škcombines“striping›Šlwith“duplication“which˜giŔvšŮ es“v˜ery“high‘Šltransfers“combinedŽĄ‘AIwith–"~fćgast›"seeks“as“well˜as“redundancŮ y‘˙Y .‘úmThe˜disadvŔantage“is˜high“disk“consumption˜as“wellŽĄ‘AIas–€the“abo•Ů v“e–€mentioned“compleŮ xity‘˙Y .ŽŸ ז‘AIRAID‘ü1/5–ü'combines“the“speed“and“redundancŮ y“bene ts“of“RAID5“with“the“fćgast“seek“ofŽĄ‘AIRAID1.‘ęĹRedundanc•Ů y‘is›impro“v“ed˜compared˜to˜RAID‘ç0/1˜bĚĐut‘disk˜consumption˜is˜stillŽĄ‘AIsubstantial.‘YřImplementing–•vsuch›•ua“system˜wćgould“in™ŸvĚĐolvŮ e˜typically“more˜than“6˜driŔvŮ es,ŽĄ‘AIperhaps–€ešŔvŮ en“se˜vŮ eral“controllers“or“SCSI“channels.ŽŸŻ*‘+IĚCA‘˙s8CHEFSŽŽ‘_Lšimpro•Ů v“es–żthe“eciencŮ y›Ŕof“the“client{side“NFS‘vaccess“by“the“use˜of“a“cachingŽĄ‘AImechanism.[26Ž‘ ]ŽŚ‘+IĚA‘˙˙UTŃđOFSŽŽ‘WňšalloŔws–€an“operating“system“to“mount“remote“FS“ le“systems“automatically‘˙Y .[26Ž‘ ]ŽŚ‘+IĚJOURNĚĐALING–€FILE“SYSTEMŽŽ’¸‹ßškćgeeps–sła“journal“of“the“actiŔvity“on“your“hard“disk,‘°Ÿso“thatŽĄ‘AIif–—your›–computer“crashed˜for“some“reason,‘&üit˜will“not˜need“to“run˜the“ le˜system“checkŽĄ‘AIprocedure.‘\(This––0means‘–/a“fćgaster“start“up“of“a“crashed“system.‘\'Examples“of“journaling“ leŽĄ‘AIsystem–€are“ReiserFS,“XFS,“JFS“and“eŮ xt3.[28Ž‘ ]ŽŚ‘+IĚLOGICAL–€VŒĎOLUME“MANĚĐA‘˙s8GER“(L‘˙VM)ŽŽ’äoŤšproŮ vides–ćhan“abstraction“of“the“phó7ysical“disks“thatŽĄ‘AImakćges–<$the›<#handling“of˜larŃđger“ le˜systems“and˜disk“arrays˜easier“to˜administer‘˙s8.‘úIt˜does“thisŽĄ‘AIby–2(grouping›2)sets“of˜disks“(phó7ysical˜vĚĐolumes)“into˜a“pool˜(všĚĐolume“group).‘0The“v˜olumeŽĄ‘AIgroup–KScan“be“in“turn“be“carvŮ ed“up“into“virtual“partitions“(logical“všĚĐolumes)“that“beha˜vŮ eŽĄ‘AIjust–ÁŔlikšćge“the“ordinary‘Áżdisk“block“deŔvices,‘Ň0eŮ xcept“that“(unlik˜e“disk‘Áżpartitions)“theŮ y“can“beŽĄ‘AIdynamically– ĄgroŔwn,‘HĘshrunk“and› ˘mo•Ů v“ed– Ąabout˜without“rebooting˜the“system˜or“enteringŽĄ‘AIinto–[\maintenance/stand-alone“mode.‘ aA‘[S le“system“(or“a“swćgap“space,‘b°or“a“raŮ w“deŔvice)“sitsŽĄ‘AIon–Z:top“of‘Z;a“logical“vĚĐolume.‘ L‘ţ˙˙VM‘Z1utilities“usually“simplify“adding,‘aÉmošŮ ving“and“remo˜vingŽĄ‘AIhard–­pdriŔvšŮ es,‘¸Ěby‘­oabstracting“a˜wćgay“the“ le“system“mount‘­opoints“(/,–¸Ě/usr™Ÿ,“/opt,‘¸Ëetc)–­pfrom“theŽĄ‘AIhard–€drišŔvŮ e“de˜vices“(/de˜v/hda1,“/de˜v/sdb2,“etc.).‘˜[29Ž‘ ]ŽŚ‘+IĚA›˙s8CCESS–€CONTRł7OL“LIST“(A˜CL)ŽŽ’Âź†š{–MEach›M le“and“directory˜has“an“access˜list,‘€VspecifyingŽĄ‘AIwhich–€users“and“the“type“of“access“thešŮ y“haĚĐv˜e“to“it.[3Ž‘]ŽŸŻ*‘+IĚHIERARCHICAL–€STŃđORA›˙s8GE“MANĚĐA˜GEMENT“(HSM)ŽŽ’ůĂšsystems›g:transparently‘g9mo•Ů v“e˜ lesŽĄ‘AIbetween–Ż"disk“and“secondary“storage›Ż#(such“as“tape),‘şęthus˜proŮ viding“a“larŃđge“"virtual"“diskŽĄ‘AIfćgarm.‘˜[3Ž‘]ŽŸ S2‘+IÍ2.5.5Ž‘OINETWáIORKŽŸ—“‘+IĚIP‘€V4ŽŽ‘Hɑš{–ákInternet“Protocol›álvŮ ersion“4“is“the˜protocol“used“on“the˜Internet“today‘˙Y .‘=ÚW‘˙37orks“on“theŽĄ‘AInetwćgork–€layer“on“the“OSIŸü^˙Ń12ŽŽ› šmodel“[4Ž‘]“and“is“described“in“RFCŸü^˙Ń13ŽŽ˜š791.ŽŚ‘+IĚIP‘€V6ŽŽ‘Hɑš{–×ËA‘׾neŔw›×ĚvŮ ersion“of˜IP‘×´(see˜preŔvious“section),‘ížsupport˜for“a˜nearĚĐ-in nite“number˜of“IPŽĄ‘AIaddresses,‘a–řćnumber“so“larŃđge‘řçthat“it“approaches“the“number“of“molecules“on“the“planet,ŽĄ‘AIsolvŮ es–‹œa›‹›vŔariety“of˜problems“(specially“with˜security)“with˜the“IP‘‹™v4˜and“is˜more“ eŮ xibleŽĄ‘AIand–€ecient“as“well.›˜IP“v6“is“described“in“RFC“1550.˜[4Ž‘]Ž‘GŸ¤é‰ffŠÔ÷Ÿ ƒč‘ćhŸý-:Ó12ŽŽŽ‘fhŇA‘̞netwë†ork–ĚŤarchitecture›ĚŞbased“on“a˜proposal“deĚÍváMeloped“by“the˜International“Standard“OrŰ&gőĆanization“(ISO).˜Its“full“name˜is“ISO‘̞OSIޤ €(Open–Systems“Interconnection)“Reference“ModelŽŸ Ă鍍‘ćhŸý-:Ó13ŽŽŽ‘fhŇT‘˙pŚechnical–4áreports“called›4âRequest“FáMor“Comments“abbreĚÍviated“as˜RFC‘4Óare“stored˜on-line“and“can“be“fetched˜by“anáMyone“interestedŽĄin–them“at“he“folloĚÍwing“url“ó)ťló phvr7tÔhttp://dir™™.y× ahooŽ.com/Computerszŕ‰fffhŽŽ–áHandzŕ‰fffhŽŽ“Inter33net/Standards/RFCs/Ň.ŽŽŸ’á\Qš10ŽŽŽŽŽŽŽŒ‹ ¤ ɍ ýCŸüfd‘GšLinux–€V‘ţă×ersus“AIX,“HP-UX,“TŚgru64“UNIX,“SolarisŽŽŽ’t˘mby–€C‘Žžó3Žesar“da“SilvŔaŽŽŽŽ‘GŸ‰ff¨–ŽŽŽŽ Ÿ ý„‘+IĚVIR™ŸTU‘˙fgAL–€IP“ADDRESSESŽŽ’§ŸšalloŔws–ČşhaĚĐving“a›Čťbackup“netwćgork“card“in“case“of˜the“one“in“useޤ ‘AIfćgails›Što–ŠŽfunction.‘9@Then“the˜backup“car˜will“be˜assigned˜the“IP‘ŠIaddress˜of“the˜originalŽĄ‘AInetwćgork–€card,“and“the“user“will“not“notice“anšŮ ything,“e˜xcept“for“a“delay“in“response.ŽŠ‘+IĚSIMPLE–€NETWćgORK“MANĚĐA‘˙s8GEMENT“PRł7O™ŸTŃđOCOL“(SNMP)ŽŽ’;É š{–`MA‘_Ňprotocol“that“is“de-ŽĄ‘AIscribed›ůin–ůRFC‘řň1448“and˜is“a˜standard“in˜the“UNIX–řňen™Ÿvironment.SNMP“is‘ůnot˜actuallyŽĄ‘AIa–Gprotocol:‘"%it'‘˙s8s“a›Fclient“servŮ er“application˜that“runs“on˜the“UDP‘%(User˜Datagram“Proto-ŽĄ‘AIcol)–ĺservice“of“the“TCP/IP‘žprotocol“suite.‘ŢHIt“wćgas“deŔvŮ eloped“to“be“an“ecient“means“ofŽĄ‘AIsending–anetwćgork›`management“information˜o•Ů v“er–aUDP‘ţă×,˜using“Ports˜161(SNMP)‘8and“162ŽĄ‘AI(SNMPTRAP).[3Ž‘]ŽŚ‘+IĚDECNETŽŽ‘Yźššwćgas–ľ•designed›ľ”by“Digital“as˜a“wćgay“to˜interconnect“their“range˜of“products.‘şVTheŽĄ‘AIspeci cations–´pfor›´oDECnet“Phase“IV‘´ are˜freely“aĚĐvŔailable.‘śçAs“with“TCP/IP‘´ there˜are“aŽĄ‘AInumber–V˜of“higherĚĐ-leŔvšŮ el“protocols“layered“on“top‘V—the“basic“DECnet“protocol“to“pro˜videŽĄ‘AIservices–€to“applications.[5Ž‘]ŽŚ‘+IĚA‘˙ ĎTT‘˙ A‘˙s8CHED–€RESOURCE“COMPUTER“NETWćgORK“(ARCNET)ŽŽ’HXzšis–17a“netwćgork‘16type“cre-ŽĄ‘AIated–mbefore“by“Datapoint“in“the“end“of“70'‘˙s8s“which“wšćgorks“in“a“w˜ay“similar“to“popularŽĄ‘AIEthernet–ĐÍnetwćgorks“bĚĐut›ĐĚwhich“is“also“di erent“in“some˜vŮ ery“important“wćgays.‘ ţFirst“of“all,ŽĄ‘AIyou–˙2can“get›˙1ARCnet“cards“in“at“least˜twćgo“speeds:‘ü2.5“Mbps“(sloŔwer˜than“Ethernet)“andŽĄ‘AI100–Mbps›(fćgaster“than˜normal“Ethernet).‘ŰŰIn“fćgact,‘;œthere“are˜others“as˜well,‘;›bĚĐut˜these“areŽĄ‘AIless–BÉcommon.‘0The“di erent›BČhardwćgare“types˜are“not˜compatible,‘Oso“you˜cannot“wire˜a“100ŽĄ‘AIMbps–€card“to“a“2.5“Mbps“card.[5Ž‘]ŽŚ‘+IĚASYNCHRł7ONOUS–€TRANSFER“MODE“(A‘˙ ĎTM)ŽŽ’ţN[šis–őa‘ődedicated-connection“switching“tech-ŽĄ‘AInology–X7that›X8orŃđgó7anizes“digital“data˜into“53-byte“cell“units˜and“transmits“them˜o•Ů v“er‘X7aŽĄ‘AIphó7ysical–Ë(medium›Ë)using“digital“signal˜technology–˙Y .‘űIndiŔvidually“,‘Ýňa–Ë(cell“is˜processed“asyn-ŽĄ‘AIchronously–J;relatiŔvŮ e›J:to“other˜related“cells“and˜is“queued“before˜being“multiple•Ů x“ed˜o“v“er‘J;theŽĄ‘AItransmission‘€path.[4Ž‘]ŽŸ €‘AIBecause–Ť†A‘ţă×TM‘Ťzis“designed›Ť…to“be˜easily“implemented“by˜hardwćgare“(rather˜than“softwćgare),ŽĄ‘AIfćgaster–‚3processing“and›‚4switch“speeds“are“possible.‘ 2The“prespeci ed“bit˜rates“are“eitherŽĄ‘AI155.520–îĐMbps›îĎor“622.080˜Mbps.‘fSpeeds“on˜A‘ţă×TM‘îłnetwćgorks“can˜reach“10˜Gbps.‘fAlongŽĄ‘AIwith–Ô2Synchronous“Optical“Netwćgork“(SONET)›Ôand“seŔvŮ eral“other“technologies,‘é>A‘ţă×TM˜is“aŽĄ‘AIkćgeŮ y–€component“of“broadband“ISDN“(BISDN).[4Ž‘]ŽŚ‘+IĚFIBER–€DISTRIBćgUTED“DŚgA‘˙ ĎT›˙ A“INTERF˜A‘˙s8CE“(FDDI)ŽŽ’Žšis–ňÂa›ňÁstandard“for“data˜transmission“onŽĄ‘AI ber–(optic›)lines“in˜a“local˜area“netwćgork˜(LAN)‘that“can˜eŮ xtend“in˜range“up˜to“200˜km“(124ŽĄ‘AImiles).› ;The–QęFDDI‘QŢprotocol“is“based“on‘Qéthe“tokćgen“ring“protocol.˜In“addition‘Qéto“being“larŃđgeŽĄ‘AIgeographically‘˙Y ,–€an“FDDI“local“area“netwćgork“can“support“thousands“of“users.‘˜[4Ž‘]ŽŠ €‘AIAn–}ňFDDI“netwšćgork“contains“tw˜o“tok˜en“rings,‘~\one“for“possible“backup“in‘}ócase“the“primaryŽĄ‘AIring–­fćgails.‘˘FThe“primary›­ring“o ers˜up“to˜100“Mbps˜capacity‘˙Y .‘˘GIf˜the“secondary˜ring“is˜notŽĄ‘AIneeded–Tfor›Sbackup,‘G(it“can“also˜carry“data,‘G(eŮ xtending“capacity˜to“200“Mbps.‘÷’The“singleŽĄ‘AIring–€can“ešŮ xtend“the“maximum“distance;“a“dual“ring“can“e˜xtend“100“km“(62“miles).‘˜[4Ž‘]ŽŚ‘AIFDDI‘ç“is›çŻa–çŽproduct“of“American“National“Standards“Committee˜X3-T9“and“conforms“toŽĄ‘AIthe–'ČOpen“Systems›'ÇInterconnection“(OSI‘')‘'œmodel“of“functional˜layering.‘đIt˜can“be“usedŽĄ‘AIto–§…interconnect›§„LANs“using˜other“protocols.‘&FDDI-II‘§zis“a˜vŮ ersion“of˜FDDI‘§{that˜adds“theŽĄ‘AIcapability–Z…to›Z†add“circuit-switched˜service“to˜the“netwćgork˜so“that˜vĚĐoice“signals˜can“also˜beŽĄ‘AIhandled.[4Ž‘]ŽŸ‘+IĚETHERNETŽŽ‘gŁšis–S“the“most›S”widely-installed“local“area“netwćgork˜(LAN)‘Sˆtechnology‘˙Y .‘ ÉSpeci ed“inŽĄ‘AIa›f_standard,–kIEEE‘fX802.3,“Ethernet˜wćgas–f^originally˜deŔvŮ eloped˜by˜Xerox“and˜then˜deŔvŮ elopedŽĄ‘AIfurther›Íby–ÍXerox,‘ RDEC,“and˜Intel.‘ĆAn“Ethernet˜LAN‘Ěštypically“uses˜coaxial“cable˜orŽĄ‘AIspecial– 2grades“of“twisted“pair“wires.‘z.The“most“commonly“installed“Ethernet“systems“areŽĄ‘AIcalled–đ10BŚgASE-T‘ďřand“proŮ vide“transmission“speeds“up‘đto“10“Mbps.‘é˘DeŔvices“are“connectedŽĄ‘AIto–6the›6€cable“and“compete˜for“access˜using“a“Carrier˜Sense“Multiple“Access˜with“CollisionŽĄ‘AIDetection–€(CSMA/CD)“protocol.‘˜[4Ž‘]ŽŚ‘AIFšŮ ast–ôąEthernet“or‘ô°100BŚgASE-T‘ôŽpro˜vides“transmission›ô°speeds“up“to“100˜meŮ gó7abits“per“secondŽĄ‘AIand–dis›etypically“used˜for“LAN‘Kbackbone˜systems,‘1supporting“wćgorkstations˜with“10BŚgASE-ŽŽŸ’á\Q11ŽŽŽŽŽŽŽŒ‹ %C ɍ ýCŸüfd‘GšLinux–€V‘ţă×ersus“AIX,“HP-UX,“TŚgru64“UNIX,“SolarisŽŽŽ’t˘mby–€C‘Žžó3Žesar“da“SilvŔaŽŽŽŽ‘GŸ‰ff¨–ŽŽŽŽ Ÿ ý„‘AIT‘„ƒcards.‘'éGigó7abit–„ĆEthernet“prošŮ vides‘„Ĺan“eŔv˜en“higher“leŔv˜el“of“backbone‘„Ĺsupport“at“1000ޤ ‘AImeŮ gšó7abits–€per“second“(1“gig˜abit“or“1“billion“bits“per“second).‘˜[4Ž‘]ŽŠ‘+IĚTŃđOKEN‘€RINGŽŽ‘pîšnetwćgork–ciis›cja“local“area˜netwćgork“(LAN)‘cbin˜which“all“computers˜are“connectedŽĄ‘AIin–Ăa“ring›Âor“star“topology“and˜a“binary“digit“-˜or“tokćgen-passing“scheme“is˜used“in“orderŽĄ‘AIto–fžpreŔvŮ ent“the›fżcollision“of“data“between“twćgo˜computers“that“wćgant“to“send˜messages“at“theŽĄ‘AIsame–kXtime.‘ŰĄThe“tokćgen“ring“protocol›kYis“the“second“most“widely-used˜protocol“on“localŽĄ‘AIarea–ń˜netwćgorks“after›ń™Ethernet“.‘n`The˜IBM‘ń{T‘˙37okćgen“Ring“protocol“led“to˜a“standard“vŮ ersion,ŽĄ‘AIspeci ed–Ćas›ĆIEEE‘Ć 802.5.‘ëęBoth“protocols˜are“used“and˜are“vŮ ery“similar‘˙s8.‘ëęThe˜IEEE‘Ć 802.5ŽĄ‘AItokćgen–é­ring“technology“prošŮ vides“for“data“transfer‘éŽrates“of“either“4“or“16“me˜gó7abits“perŽĄ‘AIsecond.ŽŚ‘+IĚBONDING/TRł7UNKINGŽŽ’™S“š{–VîThis“is“called“Etherchannel“by“Cisco,›_%Sun“TŚgrunking“by“Sun,˜PortŽĄ‘AITŚgrunking–[áby“D-Link,‘’Řand“Bonding“in“Linux.‘­;If“you‘[ŕhaĚĐvŮ e“twćgo“Ethernet“connections“toŽĄ‘AIsome–€Qother“computer™Ÿ,‘Ŕdyou“can“makšćge“them‘€PbehaĚĐvŮ e“lik˜e“one“to“double“the‘€Pspeed“of“theŽĄ‘AIconnection.[19Ž‘ ]ŽŚ‘+IĚTRAFFIC‘€CONTRł7OLŽŽ’‘DNšprošŮ vides–!Cadministrators“more“control“o˜v˜er“who“uses“their“bandwidth.ŽĄ‘AIConsider–`°a›`ąService“ProŮ vider™Ÿ,‘fówho˜wishes“to“control˜which“visitors“to˜a“web“site˜are“moreŽĄ‘AIimportant–ëęthan“others“(free“všŮ ersus“paying“customers)‘ëéand“should“get“a“relatiŔv˜ely“fćgaster“andŽĄ‘AIbetter–˜#service.‘bBefore“trac“control,‘ž,this“wćgould“haĚĐvšŮ e‘˜"needed“v˜ery“e˜xpensiŔv˜e“equipment.ŽĄ‘AIF•Ů or›5Ăe“xample,–Dœdepending˜on˜the˜set-up,“it˜could˜be˜at˜the˜IP–ţă×,˜TCP“,˜and˜UDP‘5°etc˜i.e.‘ŮcontrolŽĄ‘AIcould–Ç!be›Ç proŮ vided“either“by˜application“(FTP‘Çgets˜less“bandwidth“than˜HTTP)‘Çor˜per“IPŽĄ‘AIaddress–€or“ranges“or“a“mixture“of“all“these“parameters.[6Ž‘]ŽŚ‘+IĚINTERNET–€PRł7O™ŸTŃđOCOL“SECURITYŽŽ’ŐPôš(IPsec)–Zis›Ya“deŔvŮ eloping“standard˜for“security˜at“theŽĄ‘AInetw•ćgork›peor‘pdpack“et˜processing˜layer‘pdof˜netw“ork–pdcommunication.A‘pabig˜advŔantage“of˜IPsecŽĄ‘AIis–/“that“security›/’arrangements“can“be“handled“without“requiring˜changes“to“indiŔvidual“userŽĄ‘AIcomputers.[26Ž‘ ]ŽŚ‘+IĚSIMUL‘˙T›˙ ANEOUS–€IPV4/IPV6“ST˜A‘˙s8CKS“ON“THE“SAME“NETWćgORKŽŽ’Ze0š{–dŸAlloŔws‘džthe“us-ŽĄ‘AIage–Hof“IPv4“and“IPv6“on“the“same“netwćgork,‘zalloŔwing“both“protocols“to“be“used“by“theŽĄ‘AIservŮ er–€at“the“same“time.[26Ž‘ ]ŽŚ‘+IĚIPV6–€GA‘˙ ĎTEW‘ţĚĐA‘ţ˙˙Y“F‘˙ A‘˙s8CILITIESŽŽ’ľAŽšalloŔws–K[the›K\routing“of“packćgets˜from“IPv4“netwćgorks˜to“IPv6ŽĄ‘AInetwćgorks,–€and“vice-vŮ ersa.[3Ž‘]ŽŚ‘+IĚRSVPŽŽ‘J-išW™Ÿith–pÓRSVP‘ţă×,“people“who›pÔwćgant“to“receiŔvŮ e“a“particular“Internet˜\program"“(think“of“aŽĄ‘AIteleŔvision–Iprogram›Jbroadcast“o•Ů v“er–Ithe“Internet)˜can“reservŮ e“bandwidth“through˜the“InterĚĐ-ŽĄ‘AInet–\Šin›\‰advŔance“of˜the“program˜and“be˜able“to˜receiŔvŮ e“it“at˜a“higher˜data“rate˜and“in˜a“moreŽĄ‘AIdependable–€data“ oŔw“than“usual.[3Ž‘]ŽŚ‘+IĚINTEGRA‘˙ ĎTED‘€SER‘˙s8VICESŽŽ’ŚNwš(INTSER‘˙37V)‘KŽde nes–LhoŔw“applications“services‘Ldescribe“theirŽĄ‘AIbandwidth–9and“latencŮ y“requirements,‘~GhošŔw“this“information“can‘:be“made“aĚĐv˜ailable“toŽĄ‘AIrouters–RO(typically›RPvia“RSVP),“and˜hoŔw“the“appropriate“quality˜of“service“can˜be“testedŽĄ‘AIand–ż’všŔalidated.‘ŘLUnlikćge“Di Serv‘ż‘(see“belo˜w),‘ĎuIntServ“routers›ż‘must“classify˜packćgets“basedŽĄ‘AIon–€sešŔvŮ eral“IP“packćget“header“ elds“and“maintain“state“information“for“each“ o˜w‘˙Y .[26Ž‘ ]ŽŚ‘+IĚDIFFERENTIA‘˙ ĎTED‘€SER‘˙s8VICESŽŽ’ź†Ŕš(DIFFSER‘˙37V–Ĺĺor›ĹřDS)“is˜a–Ĺ÷protocol˜for“specifying˜and“con-ŽĄ‘AItrolling–:Šnetwćgork›:‰trac“by˜class“so˜that“certain˜types“of˜trac“get˜precedence“-˜for“eŮ x-ŽĄ‘AIample,‘űúvĚĐoice–Żűtrac,‘űůwhich›Żürequires“a“relatiŔvŮ ely“uninterrupted˜ oŔw“of“data,‘űúmight“getŽĄ‘AIprecedence›€o•Ů v“er˜other˜kinds˜of˜trac.[26Ž‘ ]ŽŚ‘+IĚIP–€MUL‘˙TIPLEXING“/“\ćgALIASING"ŽŽ’Î9ÜšalloŔws–bľa›bśsingle“system˜to“be˜seen“as˜multiple“nu-ŽĄ‘AImeric–ŁďIP‘٤addresses,‘ěëeŔvŮ en“on“the›Łđsame“netw•ćgork-interf“ace.‘…fNot–Łďto“be“confused˜with“IPŽĄ‘AIMulticasting.[26Ž‘ ]ŽŚ‘+IĚIP–€MUL‘˙TICAST“SER‘˙s8VERŽŽ’˘ˇxšalloŔws–nksimultaneous“transmition›nlof“IP‘nfpackćgets˜to“multiple“hosts,ŽĄ‘AIwhich–€enables“\subscription"messaging“for“audio,“video,“softwćgare,“or“data“streams.[3Ž‘]ŽŚ‘+IĚTCP–€SELECTIVE“A‘˙s8CKNO‘˙˙WLEDGEMENTŽŽ’ń|eš(SA™ŸCK)–ňŹalloŔws›ňÉTCP“to˜reco•Ů v“er‘ňĘfrom˜multi-ŽĄ‘AIple–”{losses›”zwithin“transmission“windoŔws,‘ٙproŮ viding˜superior“performance“in˜lossy“net-ŽĄ‘AIwšćgorks,–€and“trac“crossing“multiple“netw˜orks.[26Ž‘ ]ŽŽŸ’á\Q12ŽŽŽŽŽŽŽŒ‹ :˝ ɍ ýCŸüfd‘GšLinux–€V‘ţă×ersus“AIX,“HP-UX,“TŚgru64“UNIX,“SolarisŽŽŽ’t˘mby–€C‘Žžó3Žesar“da“SilvŔaŽŽŽŽ‘GŸ‰ff¨–ŽŽŽŽ Ÿ ý„‘+IĚA‘˙ ĎTM–€IP“SWITCHINGŽŽ’‘tćšProšŮ vide–€the“ability“to“run“IP“protocol“o˜v˜er“the“A‘ţă×TM“protocol.[3Ž‘]ޤ‘+IĚMUL‘˙TILINK‘€PPPŽŽ‘mGšalloŔws–Ÿŕtwćgo›ŸáPPP‘Ÿ–(Point-to-Point“protocol)“to˜be“used“as˜one,‘çŘto“deliŔvŮ erŽŠ ‘AIdouble‘€throughput.[26Ž‘ ]ŽĄ‘+IĚTCP–€LARGE“WINDO‘˙˙WSŽŽ’ŸËöš(RFC‘hě1323)–hňallošŔws“the‘hńusage“of“windo˜ws“that‘hńeŮ xceed“the“normalŽŚ‘AI64–ŔKB‘ż´limit“to“impro•Ů v“e›Ŕperformance‘Ŕo“v“er˜high-bandwidth˜netwćgorks˜such˜as˜A‘ţă×TM‘ż´orŽŚ‘AIhigh-delay–€netwćgorks“such“as“satellite“links.[3Ž‘]ŽĄ‘+IĚTCP/IP–€GRA‘˙ ĎTUITŃđOUS“ARPŽŽ’Źš(RFC‘IŃ2002)›JFNoti es–JGthe“members“of“the˜netwćgork“that“theŽŚ‘AIservŮ er–€associated“with“an“IP“address“has“changed.[26Ž‘ ]ŽĄ‘+IĚP‘˙BA‘˙ ĎTH–€MTU“DISCO‘˙˙VERŚgYŽŽ’Ą˘űš(RFC‘ZŽ1191)–[){“Router›[(doesn'Ńđt“break“up“packćgets˜that“are“too-ŽŚ‘AIlarŃđge.[26Ž‘ ]ŽĄ‘+IĚP‘˙BA‘˙ ĎTH–€MTU“DISCO›˙˙VERŚgY“O˜VER“UDPŽŽ’ד‰šalloŔws–ćhuse“of“PšŮ ath“MTU‘ćADisco˜v˜ery“(see“abo˜v˜e)“o˜v˜erŽŚ‘AIUniŔvšŮ ersal–ćhData“P˜ackćget“(UDP)‘ćAconnections,‘ rather“than“the“typical“Internet“Protocol“(IP).[26Ž‘ ]ŽĄ‘+IĚOPEN–€SHOR™ŸTEST“P‘˙BA‘˙ ĎTH“FIRSTŽŽ’Ŕerš(OSPF–° {›°WRFC“1533)˜replaces˜the‘°XRouting˜InformationŽŚ‘AIProtocol–€with“a“better“and“fćgaster“routing.‘˜[3Ž‘]ŽĄ‘+IĚIP–€MUL‘˙TIP‘˙BA‘˙ ĎTH“Rł7OUTINGŽŽ’Š›BšalloŔws–Tapplications›T€to“specify“multiple“paths˜to“a“destinationŽŚ‘AIon–€an“IP“netwćgork.[26Ž‘ ]ŽŸ%żü‘+IÉ2.6Ž‘KwŽDELIMINśJA‘ţĄĎTION–™™OF“THE“PR‘oOBLEM“AREAŽŸY˜‘+IšThis–€study“will“compare“the“latest“Linux“kćgernel“to“the“folloŔwing“operating“systems:ŽŠ‘7H¸ŽŽŽ‘AIšAIX–€5L“vŮ ersion“5.1Ÿü^˙Ń14ŽŽŽĄ‘7H¸ŽŽŽ‘AIšTŚgrue64–€UNIX“5.1Ÿü^˙Ń15ŽŽŽĄ‘7H¸ŽŽŽ‘AIšSolaris‘€8Ÿü^˙Ń16ŽŽŽĄ‘7H¸ŽŽŽ‘AIšHP-UX‘€11iŸü^˙Ń17ŽŽŽŚ‘+IšThe–Aîlatest›Aírelease“of“each˜operating“system˜will“be“used˜in“the“comparation.‘_`Some“featuresޤ ‘+Ithat–Ż×are“not‘ŻÖstated“anšŮ ywhere“that“the˜y›ŻÖbelong“to“the“kćgernel˜are“included,‘ťĚsince“other“operatingŽĄ‘+Isystems–o¨haĚĐvŮ e›oŠimplemented“that˜function“in“the˜kćgernel,‘Ť’or“that“function˜is“an˜essential“operĚĐ-ŽĄ‘+Iating–˙!system“function›˙ according“to“an“operating˜system“reference“book,‘élikćge˜for“eŮ xample“theŽĄ‘+Ireference–M}book›M~[3Ž‘]“in˜the“bibliographó7y‘˙Y .‘ÂThe˜main“functions˜function“handled˜by“the˜kćgernel“are:ŽŚ‘7H¸ŽŽŽ‘AIšdeŔviceޤ‘7H¸ŽŽŽ‘AIšmemoryŽĄ‘7H¸ŽŽŽ‘AIš lesystemŽŚ‘+IThere–„âare“more›„ákćgernel“options“in“the˜Linux“kćgernel“then“those“mentioned˜in“this“thesis,‘†bĚĐut“dueޤ ‘+Ito–T÷the“lack“of›Tömissing“information“if“those“functions“are“aĚĐvŔailable“or˜not“on“the“other“operatingŽĄ‘+Isystems–€and“if“thešŮ y“are“implemented“in“the“kćgernel,“the˜y“are“not“mentioned“in“this“thesis.ŽŠ‘+IThis–Cis“also›Dtrue“for“some“functions“that˜the“other“operating“systems“ha•ĚĐvŮ e,‘”b“ut˜that–Ccouldn'Ńđt“beŽĄ‘+Icon rmed–€if“thešŮ y“e˜xisted“in“the“Linux“kćgernel.ŽŚ‘+IThis–€wšćgould“lead“to“a“incorrect“and“unf˜air“analys“of“the“functions“in“the“k˜ernels.Ž‘GŸ)։ffŠÔ÷Ÿ ƒč‘ćhŸý-:Ó14ŽŽŽ‘fhŇAIX–is“copë†yrighted“by“IBM.ޤ Ă鍍‘ćhŸý-:Ó15ŽŽŽ‘fhŇT¸Sru64–UNIX“is“copë†yrighted“by“Compaq.ŽĄ‘ćhŸý-:Ó16ŽŽŽ‘fhŇSolaris–is“copë†yrighted“by“Sun“Microsystems.ŽĄ‘ćhŸý-:Ó17ŽŽŽ‘fhŇHP-UX–is“copë†yrighted“by“HeĚÍwlett“PáMackard.ŽŽŸ’á\Qš13ŽŽŽŽŽŽŽŒ‹O ɍ ýC Ÿ ýŇŹK‘+IĐChapter‘/\3ŽŸ5ŹJ‘+IËMETHODŽŸ=ŹK‘+IÉ3.1Ž‘KwŽCHOICE–™™OF“METHODŽŠ㍑+IšThe–‘information“wšćgas“empirical“accumulate“and“k˜ernel“speci c“functions“where“sorted“out“fromޤ ‘+Ithe–€&rest›€%of“other˜functions.‘ The“kćgernel“features˜where“eŮ xplained,‘€/with“the˜help“of˜a“descriptiŔvŮ eŽĄ‘+Imethod–€and“then“compared“to“the“Linux“kćgernel“using“a“comparatiŔvŮ e“method.ŽŸ% đ‘+IÉ3.2Ž‘KwŽDESCRIPTION–™™OF“METHODŽŚ‘+IšThis–ˇstudy“compares‘¸ ŔvŮ e“leading“UNIX›Toperating“systems“-“IBM˜AIX‘S5L˜v5.1,‘cdHeŔwlett-ŽĄ‘+IPŮ ackard–”HP-UX‘‘11i,›“ySun“Solaris‘•8,˜Compaq“TŚgru64–•UNIX‘5.1,˜and“Linux–”2.4.5“based‘•on“theirŽĄ‘+Ifunctional–€capabilities“implemented“in“the“kćgernel“as“of“May“27,“2001.ŽŸŹK‘+IThe–čžinformation›čŸfor“this“thesis˜wćgas“gó7athered“from˜vŔarious“sources.‘SsThe“main˜sources“areŽĄ‘+Ibooks,–Âńarticles,‘Âđtechnical›ľspeci cations,“press˜releases,“and˜technical˜representatiŔvŮ es‘ľŽfrom˜theŽĄ‘+Icorresponding–áEcompanšŮ y“(in‘áFthe“Linux“case“those“representatiŔv˜es“are‘áFaĚĐvŔailable“only“through“aŽĄ‘+Imailing–€list“called“\Linux“kćgernel“deŔvŮ elopment“list").ŽŸŹJ‘+IA‘Ó]comparatiŔvŮ e–Óľmethod“compares“twćgo›Ó´or“more“things“to“each“other˜and“draŮ ws“conclusionsŽĄ‘+Ibased–›on“the“result“of››the“comparison.‘jŞThe“folloŔwing“steps“where“takćgen˜in“the“creation“of“thisŽĄ‘+Ithesis:ŽŸŕ‘4‘I1.ŽŽŽ‘AISearch–4ţfor“technical›4ýpapers“on“the“Internet“at˜vŔarious“supplier'‘˙s8s“homepage,‘Cţand“by“askingŽĄ‘AItechnical‘€personal.ޤX•‘4‘I2.ŽŽŽ‘AISort–€out“features“that“are“not“in“the“kćgernel.ŽŠX–‘4‘I3.ŽŽŽ‘AIMakćge–€a“short“description“of“each“feature“(See“section“2.5).ŽĄ‘4‘I4.ŽŽŽ‘AICreate–€tables“with“all“kćgernel“features“and“operating“systems“(see“section“5.1).ŽĄ‘4‘I5.ŽŽŽ‘AICreate–€a“summary“of“features“that“Linux“is“lacking“by“looking“at“the“tables.ŽŚ‘4‘I6.ŽŽŽ‘AIWrite–€doŔwn“the“result“(see“section“5.2).ŽŸߍ‘+IT‘˙37o–8darriŔvŮ e“at›8ca“complete“pro le“of˜an“operating-system“product,‘Fśusers“should˜consider“a“numberޤ ‘+Iof–€fćgactors“in“addition“to“those“addressed“by“this“thesis.‘˜TheŮ y“might“be:ŽŸX–‘+IĚA•Ŕpplication‘€portf“olioŽŽ’‰KäšAn–2ƒoperating›2„system“is“only˜useful“as˜the“amount“of˜applications“aĚĐvŔail-ŽĄ‘AIable–Cœfor“it.‘dlThe“suitability“of“an‘C›application“portfolio“for“a“giŔvŮ en“user“depends“on“thatŽĄ‘AIuser'‘˙s8s–€speci c“requirements.ŽŸX•‘+IĚQualityŽŽ‘PLšAs–é—the›é˜operating“system“is˜a“technical˜product,‘üit˜may“be˜shipped“with“a˜number“ofŽĄ‘AIdefects,–€which“are“independent“of“its“relatiŔvŮ e“technical“richness.ŽŽŸ’á\Q14ŽŽŒ‹^4 ɍ ýCŸüfd‘GšLinux–€V‘ţă×ersus“AIX,“HP-UX,“TŚgru64“UNIX,“SolarisŽŽŽ’t˘mby–€C‘Žžó3Žesar“da“SilvŔaŽŽŽŽ‘GŸ‰ff¨–ŽŽŽŽ Ÿ ý„‘+IĚV‘ţ˙˙endor‘€supportŽŽ‘s xšAs–ť;a“high-end‘ť:system“has“manŮ y“options/functions,‘Ę operating“systems“intro-ޤ ‘AIduce–´ąa›´°high“bĚĐurden“on“request˜for“support.‘ˇŞThe“ability˜of“vŮ endors“to“meet˜those“supportŽĄ‘AIrequirements–€may“vŔary‘˙Y .ŽŠ‘+IĚV‘ţ˙˙endor‘€experienceŽŽ‘SŸšV‘ţă×endors–gBo ering“multiple“operating“systems“may“haĚĐvšŮ e“di erent“leŔv˜els“ofŽĄ‘AIešŮ xperience–ź˝within“their“respectiŔv˜e“product–źžlines,‘ ëdepending“on–ź˝when“the˜y“entered“theŽĄ‘AImarkćget–€and“with“what“leŔvŮ el“of“commitment.ŽŚ‘+IĚSkills‘€aŔvćgailabilityŽŽ‘y[8šThis–Pfćgactors“applies“both“to“the‘Pskills“aĚĐvŔailable“within“a“user'‘˙s8s“orŃđgó7anizationŽĄ‘AIand–€in“the“markćget“as“a“whole.ŽŚ‘+IĚHardŮ warŃđe/system‘€capabilitiesŽŽ’ŽłšSince–žźan›ž˝operating“system˜will“only“perform˜as“well˜as“itsŽĄ‘AIunderlying–{šhardwšćgare,‘|•users“must‘{şremain“aŮ w˜are‘{şof“f˜actors›{şsuch“as˜processor“performanceŽĄ‘AIand–€the“SMP“ranges“aĚĐvŔailable“on“host“platforms.ŽŚ‘+IĚCostŽŽ‘CášThis–ĐĂfšćgactor“depends“not“only“on“operating-system“softw˜are“prices“and“associated“clientŽĄ‘AIlicense–HŃfees,‘SŰbĚĐut“also“on“anŮ y“necessary›HŇadd-on“packages,‘SÚthe˜price“and“price/performanceŽĄ‘AIof–ŠŚunderlying›Чhardwćgare,‘ÍOand“a˜wide“vŔariety“of˜hard-to-measure“"soft“costs"˜related“toŽĄ‘AIongoing–€management“and“training.ŽŽŸ’á\Q15ŽŽŽŽŽŽŽŒ‹i- ɍ ýC Ÿ ýӍ‘+IĐChapter‘/\4ŽŸ6‘+IËREALIZA‘ý˘ňTIONŽŸ8‘+IšMost–švof›šwthe“wćgork“has“been˜done“by“reading“vŔarious˜di erent“documentation,‘Ąasking“technicalޤ ‘+Isupport,‘Sand–őŤidentifying›őŞif“the˜mentioned“functions˜were“implemented˜in“the˜kćgernel.‘z˜TheŽĄ‘+Ifunctions–€wćgas“then“inserted“into“a“table“to“ nally“get“to“a“result.ŽŸ%żü‘+IÉ4.1Ž‘KwŽIMPLEMENT‘ţ´CA‘ţĄĎTIONŽŸY˜‘+IšThe–j7implementation“of›j6the“missing“functions“are˜beŮ yond“the“scope“of“this˜thesis.‘UTheŮ y“are“leftŽĄ‘+Ito–€the“deŔvŮ elopers“of“the“Linux“kćgernel.ŽŽŸ’á\Q16ŽŽŒ‹o´ ɍ ýC Ÿ ýӍ‘+IĐChapter‘/\5ŽŸ6‘+IËRESUL‘ýśTŽŸ>‘+IÉ5.1Ž‘KwŽT‘ţ´CABLESŽŸY˜‘+IšCells‘€withŽŸ‘+IĚemptyŽŽ‘Jş1š=–ŘčThe›Řéauthor“could˜not“vŮ erify˜if“the˜operating“system˜supports“that˜function.‘$QTheޤ ‘AIfeature–î˙will›îţbe“considered“as˜missing“due“to˜the“fćgact˜that“looking“for˜information“aboutŽĄ‘AIsomething–€that“does“not“eŮ xist“is“almost“impossible“to“ nd.ŽŠ‘+I¸ŽŽ‘5Jš=–â#Operating›â"system“does˜support“that˜function.‘@See˜reference“inside˜the“brackćgets˜for“moreŽĄ‘AIinformation.ŽŚ‘+IĚ-ŽŽ‘3eÁš=–ÉôOperating›Éősystem“does˜not“support“the˜function“or˜it“is“o er˜as“an“eŮ xternal˜program.‘÷uSeeŽĄ‘AIreference–€inside“the“brackćgets“for“more“informationŽŸ Ÿü‘+IÍ5.1.1Ž‘OIT‘ţëABLE–WITH“KERNEL“SPECIFIC“FUNCTIONSŽ ‡x͍‘+IŸ„ćg‰ffÎA^¤fdĚ͟™œ„ ffŸüfd‘ĚÍĚFŔeaturŃđeŽŽ‘L¤„ ffŽ‘S ĺLinuxŽŽ’™â—Ÿ™œ„ ffŽ’ ĘSolarisŽŽ’ćí|Ÿ™œ„ ffŽ’í ŻAIXŽŽ’3řaŸ™œ„ ffŽ’:+”T‘˙Bru64‘€UNIXŽŽ’FŸ™œ„ ffŽ’‡6yHP-UXŽŽ’Î+Ÿ™œ„ ffŽŽŸ‰ffÎA^ĄĚ͟c™œ„lffŸœfd‘ĚÍšSupportedŽŸ ‘ĚÍArchitecturesŽŽ‘L¤„lffŽ‘S ĺi386,‘šWalpha,ޤ ‘S ĺcris,‘€Îsparc,ŽĄ‘S ĺsparc64,‘)śm68k,ŽĄ‘S ĺppc,–ÔŰarm,“sh4,ŽĄ‘S ĺs390,‘ł÷mips,ŽĄ‘S ĺHP‘âparisc,ŽĄ‘S ĺia64,‘RŚDECŽĄ‘S ĺV‘ţŚgAX‘{and‘{_AMDŽĄ‘S ĺx86{64[67Ž‘ ]ŽŽ’™â—Ÿc™œ„lffŽ’ Ęsparc–܋and“i386ŽŸ ’ Ę[18Ž‘ ]ŽŽ’ćí|Ÿc™œ„lffŽ’í Żppc–mzand“ia64“[7Ž‘]ŽŽ’3řaŸc™œ„lffŽ’:+”alpha‘€[24Ž‘ ]ŽŽ’FŸc™œ„lffŽ’‡6yparisc‘Ŕhand‘Ŕgia64ŽŸ ’‡6y[12Ž‘ ]ŽŽ’Î+Ÿc™œ„lffŽŽŸd‰ffÎA^ĄĚ͟3™œ„<ffŸĚfd‘ĚÍMaximumޤ ‘ĚÍphó7ysical‘RÁMem-ŽĄ‘ĚÍory‘ř¸tested‘řˇandŽĄ‘ĚÍsupported‘ŇŻinŽĄ‘ĚÍĚGigabytesŽŽ‘L¤„<ffŽ‘S ĺš64[71Ž‘ ]ŽŽ’™â—Ÿ3™œ„<ffŽ’ Ę128‘€[26Ž‘ ]ŽŽ’ćí|Ÿ3™œ„<ffŽ’í Ż96‘€[74Ž‘ ]ŽŽ’3řaŸ3™œ„<ffŽ’:+”256‘€[26Ž‘ ]ŽŽ’FŸ3™œ„<ffŽ’‡6y256‘€[26Ž‘ ]ŽŽ’Î+Ÿ3™œ„<ffŽŽŠ4‰ffÎA^ĄĚ͟3™œ„<ffŸĚfd‘ĚÍMaximumޤ ‘ĚÍsupported‘ )śandŽĄ‘ĚÍtested–ęŹsize“ofŽĄ‘ĚÍ le‘Z system‘ZinŽĄ‘ĚÍĚT‘˙erabytesŽŽ‘L¤„<ffŽ‘S ĺš4[34Ž‘ ]ŽŽ’™â—Ÿ3™œ„<ffŽ’ Ę1‘€[26Ž‘ ]ŽŽ’ćí|Ÿ3™œ„<ffŽ’í Ż1[7Ž‘]ŽŽ’3řaŸ3™œ„<ffŽ’:+”16‘€[24Ž‘ ]ŽŽ’FŸ3™œ„<ffŽ’‡6y2‘€[26Ž‘ ]ŽŽ’Î+Ÿ3™œ„<ffŽŽŚ‰ffÎA^ŽŽŽŽŸ’á\Q17ŽŽŒ‹rC ɍ ýCŸüfd‘GšLinux–€V‘ţă×ersus“AIX,“HP-UX,“TŚgru64“UNIX,“SolarisŽŽŽ’t˘mby–€C‘Žžó3Žesar“da“SilvŔaŽŽŽŽ‘GŸ‰ff¨–ŽŽŽŽ Ÿ ţ!Lʍ‘+I ˙Yœ‰ffÎA^¤fdĚ͟™œ„ ffŸüfd‘ĚÍĚFŔeaturŃđeŽŽ‘L¤„ ffŽ‘S ĺLinuxŽŽ’™â—Ÿ™œ„ ffŽ’ ĘSolarisŽŽ’ćí|Ÿ™œ„ ffŽ’í ŻAIXŽŽ’3řaŸ™œ„ ffŽ’:+”T‘˙Bru64‘€UNIXŽŽ’FŸ™œ„ ffŽ’‡6yHP-UXŽŽ’Î+Ÿ™œ„ ffŽŽŠ‰ffÎA^ĄĚ͟™œ„ ffŸüfd‘ĚÍšSMP‘€¸fš2.5.2¸gŽŽ‘L¤„ ffŽ‘S ĺš64‘€[33Ž‘ ]ŽŽ’™â—Ÿ™œ„ ffŽ’ Ę128‘€[18Ž‘ ]ŽŽ’ćí|Ÿ™œ„ ffŽ’í Ż24‘€[74Ž‘ ]ŽŽ’3řaŸ™œ„ ffŽ’:+”32‘€[25Ž‘ ]ŽŽ’FŸ™œ„ ffŽ’‡6y64‘€[14Ž‘ ]ŽŽ’Î+Ÿ™œ„ ffŽŽŚ‰ffÎA^ĄĚ͟™œ„ ffŸüfd‘ĚÍNUMA‘€¸fš2.5.2¸gŽŽ‘L¤„ ffŽ‘S ĺš[60Ž‘ ]ŽŽ’™â—Ÿ™œ„ ffŽ’ ʸš[21Ž‘ ]ŽŽ’ćí|Ÿ™œ„ ffŽ’í ݏš[72Ž‘ ]ŽŽ’3řaŸ™œ„ ffŽ’:+”¸š[38Ž‘ ]ŽŽ’FŸ™œ„ ffŽ’‡6y¸š[17Ž‘ ]ŽŽ’Î+Ÿ™œ„ ffŽŽŚ‰ffÎA^ĄĚ͟™œ„$ffŸäfd‘ĚÍCryptographicޤ ‘ĚÍhardwćgare‘ šsup-ŽĄ‘ĚÍportŽŽ‘L¤„$ffŽ‘S 帚[61Ž‘ ]ŽŽ’™â—Ÿ™œ„$ffŽ’ ʸš[26Ž‘ ]ŽŽ’ćí|Ÿ™œ„$ffŽ’í ݏš[26Ž‘ ]ŽŽ’3řaŸ™œ„$ffŽ’:+”¸š[26Ž‘ ]ŽŽ’FŸ™œ„$ffŽ’‡6y¸š[26Ž‘ ]ŽŽ’Î+Ÿ™œ„$ffŽŽŸ‰ffÎA^ĄĚ͟™œ„ffŸđfd‘ĚÍKŔernel‘ 4threadsŽŸ ‘Ě͸fš2.5.1¸gŽŽ‘L¤„ffŽ‘S ĺš[67Ž‘ ]ŽŽ’™â—Ÿ™œ„ffŽ’ ʸš[26Ž‘ ]ŽŽ’ćí|Ÿ™œ„ffŽ’í ݏš[26Ž‘ ]ŽŽ’3řaŸ™œ„ffŽ’:+”¸š[24Ž‘ ]ŽŽ’FŸ™œ„ffŽ’‡6y{‘€[26Ž‘ ]ŽŽ’Î+Ÿ™œ„ffŽŽŠ‰ffÎA^ĄĚ͟™œ„ffŸđfd‘ĚÍHot{swćgapŽŸ ‘Ě͸fš2.5.1¸gŽŽ‘L¤„ffŽ‘S ĺš[31Ž‘ ]ŽŽ’™â—Ÿ™œ„ffŽ’ ʸš[26Ž‘ ]ŽŽ’ćí|Ÿ™œ„ffŽ’í ݏš[26Ž‘ ]ŽŽ’3řaŸ™œ„ffŽ’:+”¸š[26Ž‘ ]ŽŽ’FŸ™œ„ffŽ’‡6y¸š[12Ž‘ ]ŽŽ’Î+Ÿ™œ„ffŽŽŚ‰ffÎA^ĄĚ͟™œ„ffŸđfd‘ĚÍSysV‘ĐIPCŽŸ ‘Ě͸fš2.5.1¸gŽŽ‘L¤„ffŽ‘S ĺš[56Ž‘ ]ŽŽ’™â—Ÿ™œ„ffŽ’ ʸš[26Ž‘ ]ŽŽ’ćí|Ÿ™œ„ffŽ’í ݏš[26Ž‘ ]ŽŽ’3řaŸ™œ„ffŽ’:+”¸š[24Ž‘ ]ŽŽ’FŸ™œ„ffŽ’‡6y¸š[26Ž‘ ]ŽŽ’Î+Ÿ™œ„ffŽŽŚ‰ffÎA^ĄĚ͟™œ„$ffŸäfd‘ĚÍDynamicޤ ‘ĚÍProcessor‘ š%Re-ŽĄ‘ĚÍsilience‘€¸fš2.5.1¸gŽŽ‘L¤„$ffŽ‘S ĺš{A.1ŽŽ’™â—Ÿ™œ„$ffŽ’ ʸš[26Ž‘ ]ŽŽ’ćí|Ÿ™œ„$ffŽ’í ݏš[26Ž‘ ]ŽŽ’3řaŸ™œ„$ffŽ’:+”¸š[26Ž‘ ]ŽŽ’FŸ™œ„$ffŽ’‡6y¸š[26Ž‘ ]ŽŽ’Î+Ÿ™œ„$ffŽŽŠ‰ffÎA^ĄĚ͟™œ„$ffŸäfd‘ĚÍDynamic‘ńxMem-ޤ ‘ĚÍory‘ ¨ResilienceŽĄ‘Ě͸fš2.5.1¸gŽŽ‘L¤„$ffŽ‘S ĺš{[36Ž‘ ]ŽŽ’™â—Ÿ™œ„$ffŽ’ ʸš[26Ž‘ ]ŽŽ’ćí|Ÿ™œ„$ffŽ’í ݏš[26Ž‘ ]ŽŽ’3řaŸ™œ„$ffŽ’:+”¸š[26Ž‘ ]ŽŽ’FŸ™œ„$ffŽ’‡6y¸š[26Ž‘ ]ŽŽ’Î+Ÿ™œ„$ffŽŽŚ‰ffÎA^ĄĚ͟™œ„ffŸđfd‘ĚÍDynamic‘ ĎPŮ ageŽŸ ‘ĚÍSizing‘€¸fš2.5.1¸gŽŽ‘L¤„ffŽ‘S ĺš{A.1ŽŽ’™â—Ÿ™œ„ffŽ’ Ę{‘€[26Ž‘ ]ŽŽ’ćí|Ÿ™œ„ffŽ’í Ż{‘€[26Ž‘ ]ŽŽ’3řaŸ™œ„ffŽ’:+”¸š[26Ž‘ ]ŽŽ’FŸ™œ„ffŽ’‡6y¸š[26Ž‘ ]ŽŽ’Î+Ÿ™œ„ffŽŽŠ‰ffÎA^ĄĚ͟™œ„ffŸđfd‘ĚÍLiŔvŮ e‘ ŽÎUpgradeŽŸ ‘Ě͸fš2.5.1¸gŽŽ‘L¤„ffŽ‘S ĺš{A.1ŽŽ’™â—Ÿ™œ„ffŽ’ ʸš[26Ž‘ ]ŽŽ’ćí|Ÿ™œ„ffŽ’í ݏš[26Ž‘ ]ŽŽ’3řaŸ™œ„ffŽ’FŸ™œ„ffŽ’‡6y¸š[11Ž‘ ]ŽŽ’Î+Ÿ™œ„ffŽŽŚ‰ffÎA^ĄĚ͟™œ„ffŸđfd‘ĚÍAlternatiŔvŮ e‘’I/OŽŸ ‘ĚÍPŮ athing‘€¸fš2.5.1¸gŽŽ‘L¤„ffŽ’™â—Ÿ™œ„ffŽ’ Ęš[26Ž‘ ]ŽŽ’ćí|Ÿ™œ„ffŽ’í Ż{‘€[26Ž‘ ]ŽŽ’3řaŸ™œ„ffŽ’:+”¸š[26Ž‘ ]ŽŽ’FŸ™œ„ffŽ’‡6y¸š[26Ž‘ ]ŽŽ’Î+Ÿ™œ„ffŽŽŚ‰ffÎA^ĄĚ͟™œ„$ffŸäfd‘ĚÍBSD‘ Processޤ ‘ĚÍAccountingŽĄ‘ĚÍ2.5.1ŽŽ‘L¤„$ffŽ‘S 帚[58Ž‘ ]ŽŽ’™â—Ÿ™œ„$ffŽ’ ʸš[26Ž‘ ]ŽŽ’ćí|Ÿ™œ„$ffŽ’í ݏš[26Ž‘ ]ŽŽ’3řaŸ™œ„$ffŽ’:+”¸š[26Ž‘ ]ŽŽ’FŸ™œ„$ffŽ’‡6y¸š[26Ž‘ ]ŽŽ’Î+Ÿ™œ„$ffŽŽŸ‰ffÎA^ŽŽŽ ž1^‘+IÍ5.1.2Ž‘OIT‘ţëABLE–WITH“FILE“SYSTEM“SPECIFIC“FUNCTIONSŽ ‚Ť˙‘+IŸ‰ł5‰ffÎA^¤fdĚ͟™œ„ ffŸüfd‘ĚÍĚFŔeaturŃđeŽŽ‘L¤„ ffŽ‘S ĺLinuxŽŽ’™â—Ÿ™œ„ ffŽ’ ĘSolarisŽŽ’ćí|Ÿ™œ„ ffŽ’í ŻAIXŽŽ’3řaŸ™œ„ ffŽ’:+”T‘˙Bru64‘€UNIXŽŽ’FŸ™œ„ ffŽ’‡6yHP-UXŽŽ’Î+Ÿ™œ„ ffŽŽŠ‰ffÎA^ĄĚ͟'™œ„0ffŸŘfd‘ĚÍšMaximumޤ ‘ĚÍtested‘Đand‘Ďsup-ŽĄ‘ĚÍported–”č le“sizeŽĄ‘ĚÍin‘€ĚT‘˙erabytesŽŽ‘L¤„0ffŽ‘S ĺš2–€GB“[34Ž‘ ]ŽŽ’™â—Ÿ'™œ„0ffŽ’ Ę1‘€[26Ž‘ ]ŽŽ’ćí|Ÿ'™œ„0ffŽ’í Ż64‘€[26Ž‘ ]ŽŽ’3řaŸ'™œ„0ffŽ’:+”10‘€[25Ž‘ ]ŽŽ’FŸ'™œ„0ffŽ’‡6y2‘€[26Ž‘ ]ŽŽ’Î+Ÿ'™œ„0ffŽŽŸ(‰ffÎA^ĄĚ͟™œ„ ffŸüfd‘ĚÍA™ŸCL‘€¸fš2.5.4¸gŽŽ‘L¤„ ffŽ‘S ĺš{[34Ž‘ ]ŽŽ’™â—Ÿ™œ„ ffŽ’ ʸš[20Ž‘ ]ŽŽ’ćí|Ÿ™œ„ ffŽ’í ݏš[76Ž‘ ]ŽŽ’3řaŸ™œ„ ffŽ’:+”¸š[24Ž‘ ]ŽŽ’FŸ™œ„ ffŽ’‡6y¸š[44Ž‘ ]ŽŽ’Î+Ÿ™œ„ ffŽŽŚ‰ffÎA^ĄĚ͟™œ„ffŸđfd‘ĚÍRAID‘ šK¸fš2.5.4¸gŽŸ ‘ĚÍšsupportŽŽ‘L¤„ffŽ‘S 帚[31Ž‘ ]ŽŽ’™â—Ÿ™œ„ffŽ’ćí|Ÿ™œ„ffŽ’í ݏš[7Ž‘]ŽŽ’3řaŸ™œ„ffŽ’:+”¸š[24Ž‘ ]ŽŽ’FŸ™œ„ffŽ’‡6y¸š[12Ž‘ ]ŽŽ’Î+Ÿ™œ„ffŽŽŠ‰ffÎA^ĄĚ͟™œ„ffŸđfd‘ĚÍJournaling‘CiFileŽŸ ‘ĚÍSystem‘€¸fš2.5.4¸gŽŽ‘L¤„ffŽ‘S ĺš[58Ž‘ ]ŽŽ’™â—Ÿ™œ„ffŽ’ ʸš[26Ž‘ ]ŽŽ’ćí|Ÿ™œ„ffŽ’í ݏš[7Ž‘]ŽŽ’3řaŸ™œ„ffŽ’:+”¸š[24Ž‘ ]ŽŽ’FŸ™œ„ffŽ’‡6y¸š[77Ž‘ ]ŽŽ’Î+Ÿ™œ„ffŽŽŚ‰ffÎA^ĄĚ͟™œ„$ffŸäfd‘ĚÍLogical‘sůV‘ţľÇol-ޤ ‘ĚÍume‘ HvManagerŽĄ‘Ě͸fš2.5.4¸gŽŽ‘L¤„$ffŽ‘S ĺš[62Ž‘ ]ŽŽ’™â—Ÿ™œ„$ffŽ’ ʸš[26Ž‘ ]ŽŽ’ćí|Ÿ™œ„$ffŽ’í ݏš[7Ž‘]ŽŽ’3řaŸ™œ„$ffŽ’:+”¸š[24Ž‘ ]ŽŽ’FŸ™œ„$ffŽ’‡6y¸š[52Ž‘ ]ŽŽ’Î+Ÿ™œ„$ffŽŽŸ‰ffÎA^ĄĚ͟™œ„ ffŸüfd‘ĚÍHSM‘€¸fš2.5.4¸gŽŽ‘L¤„ ffŽ‘S ĺš{‘€A.1ŽŽ’™â—Ÿ™œ„ ffŽ’ćí|Ÿ™œ„ ffŽ’í Ż{‘€[7Ž‘]ŽŽ’3řaŸ™œ„ ffŽ’FŸ™œ„ ffŽ’‡6y¸š[15Ž‘ ]ŽŽ’Î+Ÿ™œ„ ffŽŽŸ‰ffÎA^ĄĚ͟™œ„ffŸđfd‘ĚÍMemory‘ FileŽŸ ‘ĚÍSystem‘€¸fš2.5.4¸gŽŽ‘L¤„ffŽ‘S ĺš[59Ž‘ ]ŽŽ’™â—Ÿ™œ„ffŽ’ ʸš[26Ž‘ ]ŽŽ’ćí|Ÿ™œ„ffŽ’í ݏš[26Ž‘ ]ŽŽ’3řaŸ™œ„ffŽ’:+”¸š[39Ž‘ ]ŽŽ’FŸ™œ„ffŽ’‡6y¸š[26Ž‘ ]ŽŽ’Î+Ÿ™œ„ffŽŽŚ‰ffÎA^ĄĚ͟™œ„ffŸđfd‘ĚÍCacheFSŽŸ ‘Ě͸fš2.5.4¸gŽŽ‘L¤„ffŽ‘S ĺš{‘€[37Ž‘ ]ŽŽ’™â—Ÿ™œ„ffŽ’ ʸš[26Ž‘ ]ŽŽ’ćí|Ÿ™œ„ffŽ’í ݏš[26Ž‘ ]ŽŽ’3řaŸ™œ„ffŽ’:+”{‘€[26Ž‘ ]ŽŽ’FŸ™œ„ffŽ’‡6y¸š[26Ž‘ ]ŽŽ’Î+Ÿ™œ„ffŽŽŚ‰ffÎA^ĄĚ͟™œ„ ffŸüfd‘ĚÍAutoFS‘€¸fš2.5.4¸gŽŽ‘L¤„ ffŽ‘S ĺš[58Ž‘ ]ŽŽ’™â—Ÿ™œ„ ffŽ’ ʸš[26Ž‘ ]ŽŽ’ćí|Ÿ™œ„ ffŽ’í ݏš[26Ž‘ ]ŽŽ’3řaŸ™œ„ ffŽ’:+”¸š[26Ž‘ ]ŽŽ’FŸ™œ„ ffŽ’‡6y¸š[26Ž‘ ]ŽŽ’Î+Ÿ™œ„ ffŽŽŸ‰ffÎA^ŽŽŽŽŸ’á\Q18ŽŽŽŽŽŽŽŒ‹{â ɍ ýCŸüfd‘GšLinux–€V‘ţă×ersus“AIX,“HP-UX,“TŚgru64“UNIX,“SolarisŽŽŽ’t˘mby–€C‘Žžó3Žesar“da“SilvŔaŽŽŽŽ‘GŸ‰ff¨–ŽŽŽŽ Ÿ ý×™‘+IŸŁL͉ffÎA^¤fdĚ͟™œ„ ffŸüfd‘ĚÍĚFŔeaturŃđeŽŽ‘L¤„ ffŽ‘S ĺLinuxŽŽ’™â—Ÿ™œ„ ffŽ’ ĘSolarisŽŽ’ćí|Ÿ™œ„ ffŽ’í ŻAIXŽŽ’3řaŸ™œ„ ffŽ’:+”T‘˙Bru64‘€UNIXŽŽ’FŸ™œ„ ffŽ’‡6yHP-UXŽŽ’Î+Ÿ™œ„ ffŽŽŸ‰ffÎA^ĄĚÍ Ÿ™œ„¨ff ˙`fd‘ĚÍšSupported‘ '/ leŽŸ ‘ĚÍsystemsŽŽ‘L¤„¨ffŽ‘S ĺISO9660,ޤ ‘S ĺRockridge,ŽĄ‘S ĺExt2,‘˘VF–˙BA‘ţă×T“,ŽĄ‘S ĺF‘˙BA‘ţă×TCVF‘˙37,ŽĄ‘S ĺUFS,‘ÝFFS,ŽĄ‘S ĺHPFS,‘ ąeNTFS,ŽĄ‘S ĺAFFS,ADFS,ŽĄ‘S ĺBFS,ŽĄ‘S ĺCRAMFS,ŽĄ‘S ĺPR™ŸOC,ŽĄ‘S ĺR™ŸOMFS,ŽĄ‘S ĺSYSV‘ţ˙˙{FS,ŽĄ‘S ĺUDF‘˙37,‘;žUMDOSŽĄ‘S ĺ[67Ž‘ ]ŽŽ’™â— Ÿ™œ„¨ffŽ’ ĘDFS‘+Ź[26Ž‘ ]‘,UDF‘˙37,ŽŸ ’ ĘUFS‘€[22Ž‘ ]ŽŽ’ćí| Ÿ™œ„¨ffŽ’í ŻDFS‘€[26Ž‘ ]ŽŽ’3řa Ÿ™œ„¨ffŽ’:+”CFS‘Ĺ[26Ž‘ ],ޤ ’:+”XCDR,ŽĄ’:+”D™ŸVDFS,[24Ž‘ ],ŽĄ’:+”FFM‘ ן,‘ ŮĆDFS,ŽĄ’:+”EFS,‘éľFDFS,ŽĄ’:+”PR™ŸOCFS,ŽĄ’:+”SYSV‘ţľÇ,‘nÎUFS,ŽĄ’:+”MFS,‘lEISO9660ŽĄ’:+”[39Ž‘ ]ŽŽ’F Ÿ™œ„¨ffŽ’‡6yUFS‘uć[12Ž‘ ]‘vgCIFSޤ ’‡6y[10Ž‘ ],‘ßuCDFSŽĄ’‡6y[48Ž‘ ],‘ŠőHFSŽĄ’‡6y[50Ž‘ ],‘nÍLOFSŽĄ’‡6y[51Ž‘ ],‘áýDOSŽĄ’‡6y[54Ž‘ ],‘EŐISO9660,ŽĄ’‡6yRockridge,ŽĄ’‡6yHigh‘ŠżSierra,ŽĄ’‡6y[55Ž– ]‘[_CDFS‘[&[53Ž“]ŽĄŽ’Î+ Ÿ™œ„¨ffŽŽ  ‰ffÎA^ŽŽŽŽŸ’á\Q19ŽŽŽŽŽŽŽŒ‹˜ ɍ ýCŸüfd‘GšLinux–€V‘ţă×ersus“AIX,“HP-UX,“TŚgru64“UNIX,“SolarisŽŽŽ’t˘mby–€C‘Žžó3Žesar“da“SilvŔaŽŽŽŽ‘GŸ‰ff¨–ŽŽŽŽ Ÿ ý„‘+IÍ5.1.3Ž‘OIT‘ţëABLE–WITH“NETWáIORK“SPECIFIC“FUNCTIONSŽ đß0‘+I ˙€‰ffÎA^¤fdĚ͟™œ„ ffŸüfd‘ĚÍĚFŔeaturŃđeŽŽ‘L¤„ ffŽ‘S ĺLinuxŽŽ’™â—Ÿ™œ„ ffŽ’ ĘSolarisŽŽ’ćí|Ÿ™œ„ ffŽ’í ŻAIXŽŽ’3řaŸ™œ„ ffŽ’:+”T‘˙Bru64‘€UNIXŽŽ’FŸ™œ„ ffŽ’‡6yHP-UXŽŽ’Î+Ÿ™œ„ ffŽŽŸ‰ffÎA^ĄĚ͟™œ„$ffŸäfd‘ĚÍšSupport‘ś~forޤ ‘ĚÍIP‘<v4–=:and“v6ŽĄ‘ĚÍ2.5.5¸gŽŽ‘L¤„$ffŽ‘S ĺš[35Ž‘ ]ŽŽ’™â—Ÿ™œ„$ffŽ’ ʸš[18Ž‘ ]ŽŽ’ćí|Ÿ™œ„$ffŽ’í ݏš[74Ž‘ ]ŽŽ’3řaŸ™œ„$ffŽ’:+”¸š[41Ž‘ ]ŽŽ’FŸ™œ„$ffŽ’‡6y¸š[16Ž‘ ]ŽŽ’Î+Ÿ™œ„$ffŽŽŸ‰ffÎA^ĄĚ͟™œ„ffŸđfd‘ĚÍTŚgrac‘߈ControlŽŸ ‘Ě͸fš2.5.5¸gŽŽ‘L¤„ffŽ‘S ĺš[35Ž‘ ]ŽŽ’™â—Ÿ™œ„ffŽ’ ʸš[26Ž‘ ]ŽŽ’ćí|Ÿ™œ„ffŽ’í ݏš[74Ž‘ ]ŽŽ’3řaŸ™œ„ffŽ’:+”¸š[26Ž‘ ]ŽŽ’FŸ™œ„ffŽ’‡6y¸š[10Ž‘ ]ŽŽ’Î+Ÿ™œ„ffŽŽŠ‰ffÎA^ĄĚ͟™œ„ffŸđfd‘ĚÍBondingŽŸ ‘Ě͸fš2.5.5¸gŽŽ‘L¤„ffŽ‘S ĺš[6Ž‘]ŽŽ’™â—Ÿ™œ„ffŽ’ ʸš[26Ž‘ ]ŽŽ’ćí|Ÿ™œ„ffŽ’í ݏš[26Ž‘ ]ŽŽ’3řaŸ™œ„ffŽ’:+”¸š[26Ž‘ ]ŽŽ’FŸ™œ„ffŽ’‡6y¸š[26Ž‘ ]ŽŽ’Î+Ÿ™œ„ffŽŽŚ‰ffÎA^ĄĚ͟™œ„ ffŸüfd‘ĚÍNFS‘€v2Ž‘'#͸fš2.5.3¸gŽŽ‘L¤„ ffŽ‘S ĺš[35Ž‘ ]ŽŽ’™â—Ÿ™œ„ ffŽ’ ʸš[18Ž‘ ]ŽŽ’ćí|Ÿ™œ„ ffŽ’í ݏš[74Ž‘ ]ŽŽ’3řaŸ™œ„ ffŽ’:+”¸š[39Ž‘ ]ŽŽ’FŸ™œ„ ffŽ’‡6y¸š[49Ž‘ ]ŽŽ’Î+Ÿ™œ„ ffŽŽŠ‰ffÎA^ĄĚ͟™œ„ ffŸüfd‘ĚÍNFS‘€v3Ž‘'#͸fš2.5.3¸gŽŽ‘L¤„ ffŽ‘S ĺš[35Ž‘ ]ŽŽ’™â—Ÿ™œ„ ffŽ’ ʸš[39Ž‘ ]ŽŽ’ćí|Ÿ™œ„ ffŽ’í ݏš[74Ž‘ ]ŽŽ’3řaŸ™œ„ ffŽ’:+”¸š[39Ž‘ ]ŽŽ’FŸ™œ„ ffŽ’‡6y¸š[49Ž‘ ]ŽŽ’Î+Ÿ™œ„ ffŽŽŚ‰ffÎA^ĄĚ͟™œ„ ffŸüfd‘ĚÍSNMP‘€¸fš2.5.5¸gŽŽ‘L¤„ ffŽ‘S 厎’™â—Ÿ™œ„ ffŽ’ Ęš[18Ž‘ ]ŽŽ’ćí|Ÿ™œ„ ffŽ’í ݏš[74Ž‘ ]ŽŽ’3řaŸ™œ„ ffŽ’FŸ™œ„ ffŽ’‡6y¸š[45Ž‘ ]ŽŽ’Î+Ÿ™œ„ ffŽŽŚ‰ffÎA^ĄĚ͟™œ„ ffŸüfd‘ĚÍSMB‘€¸fš2.5.3¸gŽŽ‘L¤„ ffŽ‘S ĺš[35Ž‘ ]ŽŽ’™â—Ÿ™œ„ ffŽ’ ʸš[26Ž‘ ]ŽŽ’ćí|Ÿ™œ„ ffŽ’í ݏš[26Ž‘ ]ŽŽ’3řaŸ™œ„ ffŽ’:+”¸š[26Ž‘ ]ŽŽ’FŸ™œ„ ffŽ’‡6y¸š[26Ž‘ ]ŽŽ’Î+Ÿ™œ„ ffŽŽŚ‰ffÎA^ĄĚ͟™œ„ffŸđfd‘ĚÍAppleT‘˙37alkŽŸ ‘Ě͸fš2.5.3¸gŽŽ‘L¤„ffŽ‘S ĺš[35Ž‘ ]ŽŽ’™â—Ÿ™œ„ffŽ’ Ę{‘€[18Ž‘ ]ŽŽ’ćí|Ÿ™œ„ffŽ’í Ż{‘€[74Ž‘ ]ŽŽ’3řaŸ™œ„ffŽ’FŸ™œ„ffŽ’‡6y{‘€[80Ž‘ ]ŽŽ’Î+Ÿ™œ„ffŽŽŠ‰ffÎA^ĄĚ͟™œ„ffŸđfd‘ĚÍNetW‘˙37areŽŸ ‘Ě͸fš2.5.3¸gŽŽ‘L¤„ffŽ‘S ĺš[35Ž‘ ]ŽŽ’™â—Ÿ™œ„ffŽ’ ʸš[26Ž‘ ]ŽŽ’ćí|Ÿ™œ„ffŽ’í Ż{‘€[74Ž‘ ]ŽŽ’3řaŸ™œ„ffŽ’:+”¸š[26Ž‘ ]ŽŽ’FŸ™œ„ffŽ’‡6y{‘€[81Ž‘ ]ŽŽ’Î+Ÿ™œ„ffŽŽŚ‰ffÎA^ĄĚ͟™œ„ ffŸüfd‘ĚÍDECnet‘€¸fš2.5.5¸gŽŽ‘L¤„ ffŽ‘S ĺš[35Ž‘ ]ŽŽ’™â—Ÿ™œ„ ffŽ’ Ę{‘€[18Ž‘ ]ŽŽ’ćí|Ÿ™œ„ ffŽ’í Ż{‘€[74Ž‘ ]ŽŽ’3řaŸ™œ„ ffŽ’:+”¸š[42Ž‘ ]ŽŽ’FŸ™œ„ ffŽ’‡6y¸š[46Ž‘ ]ŽŽ’Î+Ÿ™œ„ ffŽŽŠ‰ffÎA^ĄĚ͟™œ„ ffŸüfd‘ĚÍARCnet‘CL¸fš2.5.5¸gŽŽ‘L¤„ ffŽ‘S ĺš[35Ž‘ ]ŽŽ’™â—Ÿ™œ„ ffŽ’ćí|Ÿ™œ„ ffŽ’í Ż{‘€[74Ž‘ ]ŽŽ’3řaŸ™œ„ ffŽ’FŸ™œ„ ffŽ’‡6y¸š[47Ž‘ ]ŽŽ’Î+Ÿ™œ„ ffŽŽŚ‰ffÎA^ĄĚ͟™œ„ ffŸüfd‘ĚÍA‘ţă×TM‘€¸fš2.5.5¸gŽŽ‘L¤„ ffŽ‘S ĺš[35Ž‘ ]ŽŽ’™â—Ÿ™œ„ ffŽ’ ʸš[26Ž‘ ]ŽŽ’ćí|Ÿ™œ„ ffŽ’í ݏš[74Ž‘ ]ŽŽ’3řaŸ™œ„ ffŽ’:+”¸š[26Ž‘ ]ŽŽ’FŸ™œ„ ffŽ’‡6y¸š[13Ž‘ ]ŽŽ’Î+Ÿ™œ„ ffŽŽŚ‰ffÎA^ĄĚ͟™œ„ ffŸüfd‘ĚÍFDDI‘€¸fš2.5.5¸gŽŽ‘L¤„ ffŽ‘S ĺš[35Ž‘ ]ŽŽ’™â—Ÿ™œ„ ffŽ’ćí|Ÿ™œ„ ffŽ’í ݏš[74Ž‘ ]ŽŽ’3řaŸ™œ„ ffŽ’FŸ™œ„ ffŽ’‡6y¸š[13Ž‘ ]ŽŽ’Î+Ÿ™œ„ ffŽŽŚ‰ffÎA^ĄĚ͟™œ„ffŸđfd‘ĚÍEthernetŽŸ ‘Ě͸fš2.5.5¸gŽŽ‘L¤„ffŽ‘S ĺš[35Ž‘ ]ŽŽ’™â—Ÿ™œ„ffŽ’ ʸš[26Ž‘ ]ŽŽ’ćí|Ÿ™œ„ffŽ’í ݏš[74Ž‘ ]ŽŽ’3řaŸ™œ„ffŽ’:+”¸š[26Ž‘ ]ŽŽ’FŸ™œ„ffŽ’‡6y¸š[13Ž‘ ]ŽŽ’Î+Ÿ™œ„ffŽŽŠ‰ffÎA^ĄĚ͟™œ„ffŸđfd‘ĚÍT‘˙37okćgen‘ńXRingŽŸ ‘Ě͸fš2.5.5¸gŽŽ‘L¤„ffŽ‘S ĺš[35Ž‘ ]ŽŽ’™â—Ÿ™œ„ffŽ’ ʸš[22Ž‘ ]ŽŽ’ćí|Ÿ™œ„ffŽ’í ݏš[74Ž‘ ]ŽŽ’3řaŸ™œ„ffŽ’:+”¸š[43Ž‘ ]ŽŽ’FŸ™œ„ffŽ’‡6y¸š[13Ž‘ ]ŽŽ’Î+Ÿ™œ„ffŽŽŚ‰ffÎA^ĄĚ͟™œ„ ffŸüfd‘ĚÍIPSEc‘€¸fš2.5.5¸gŽŽ‘L¤„ ffŽ‘S ĺš{‘€[79Ž‘ ]ŽŽ’™â—Ÿ™œ„ ffŽ’ ʸš[26Ž‘ ]ŽŽ’ćí|Ÿ™œ„ ffŽ’í ݏš[26Ž‘ ]ŽŽ’3řaŸ™œ„ ffŽ’:+”¸š[26Ž‘ ]ŽŽ’FŸ™œ„ ffŽ’‡6y¸š[26Ž‘ ]ŽŽ’Î+Ÿ™œ„ ffŽŽŠ‰ffÎA^ĄĚ͟3™œ„<ffŸĚfd‘ĚÍSimultaneousޤ ‘ĚÍIPv4/IPv6ŽĄ‘ĚÍstacks‘ 1 on‘ 1 theŽĄ‘ĚÍsame‘ ҸnetwćgorkŽĄ‘Ě͸fš2.5.5¸gŽŽ‘L¤„<ffŽ‘S ĺš[35Ž‘ ]ŽŽ’™â—Ÿ3™œ„<ffŽ’ ʸš[26Ž‘ ]ŽŽ’ćí|Ÿ3™œ„<ffŽ’í ݏš[26Ž‘ ]ŽŽ’3řaŸ3™œ„<ffŽ’:+”¸š[26Ž‘ ]ŽŽ’FŸ3™œ„<ffŽ’‡6y¸š[26Ž‘ ]ŽŽ’Î+Ÿ3™œ„<ffŽŽŸ4‰ffÎA^ĄĚ͟™œ„$ffŸäfd‘ĚÍIPv6‘ńfGate-ޤ ‘ĚÍw•ćgay‘$źf“acilitiesŽĄ‘Ě͸fš2.5.5¸gŽŽ‘L¤„$ffŽ‘S ĺš[35Ž‘ ]ŽŽ’™â—Ÿ™œ„$ffŽ’ ʸš[26Ž‘ ]ŽŽ’ćí|Ÿ™œ„$ffŽ’í ݏš[26Ž‘ ]ŽŽ’3řaŸ™œ„$ffŽ’:+”¸š[26Ž‘ ]ŽŽ’FŸ™œ„$ffŽ’‡6y¸š[26Ž‘ ]ŽŽ’Î+Ÿ™œ„$ffŽŽŸ‰ffÎA^ĄĚ͟™œ„ ffŸüfd‘ĚÍRSVP‘€¸fš2.5.5¸gŽŽ‘L¤„ ffŽ‘S ĺš[58Ž‘ ]ŽŽ’™â—Ÿ™œ„ ffŽ’ ʸš[26Ž‘ ]ŽŽ’ćí|Ÿ™œ„ ffŽ’í ݏš[26Ž‘ ]ŽŽ’3řaŸ™œ„ ffŽ’:+”¸š[26Ž‘ ]ŽŽ’FŸ™œ„ ffŽ’‡6y¸š[26Ž‘ ]ŽŽ’Î+Ÿ™œ„ ffŽŽŚ‰ffÎA^ĄĚ͟™œ„$ffŸäfd‘ĚÍInteŮ grated‘1oSerĚĐ-ޤ ‘ĚÍvices(IntServ)ŽĄ‘Ě͸fš2.5.5¸gŽŽ‘L¤„$ffŽ‘S ĺš[6Ž‘]ŽŽ’™â—Ÿ™œ„$ffŽ’ Ę{‘€[26Ž‘ ]ŽŽ’ćí|Ÿ™œ„$ffŽ’í ݏš[26Ž‘ ]ŽŽ’3řaŸ™œ„$ffŽ’:+”{‘€[26Ž‘ ]ŽŽ’FŸ™œ„$ffŽ’‡6y{‘€[26Ž‘ ]ŽŽ’Î+Ÿ™œ„$ffŽŽŸ‰ffÎA^ŽŽŽŽŸ’á\Q20ŽŽŽŽŽŽŽŒ‹ž ɍ ýCŸüfd‘GšLinux–€V‘ţă×ersus“AIX,“HP-UX,“TŚgru64“UNIX,“SolarisŽŽŽ’t˘mby–€C‘Žžó3Žesar“da“SilvŔaŽŽŽŽ‘GŸ‰ff¨–ŽŽŽŽ Ÿ ţQLʍ‘+I ˙)œ‰ffÎA^¤fdĚ͟™œ„ ffŸüfd‘ĚÍĚFŔeaturŃđeŽŽ‘L¤„ ffŽ‘S ĺLinuxŽŽ’™â—Ÿ™œ„ ffŽ’ ĘSolarisŽŽ’ćí|Ÿ™œ„ ffŽ’í ŻAIXŽŽ’3řaŸ™œ„ ffŽ’:+”T‘˙Bru64‘€UNIXŽŽ’FŸ™œ„ ffŽ’‡6yHP-UXŽŽ’Î+Ÿ™œ„ ffŽŽŸ‰ffÎA^ĄĚ͟™œ„$ffŸäfd‘ĚÍšDi erentiatedޤ ‘ĚÍServicesŽĄ‘Ě͸fš2.5.5¸gŽŽ‘L¤„$ffŽ‘S ĺš[6Ž‘]ŽŽ’™â—Ÿ™œ„$ffŽ’ Ę{‘€[26Ž‘ ]ŽŽ’ćí|Ÿ™œ„$ffŽ’í ݏš[26Ž‘ ]ŽŽ’3řaŸ™œ„$ffŽ’:+”{‘€[26Ž‘ ]ŽŽ’FŸ™œ„$ffŽ’‡6y¸š[26Ž‘ ]ŽŽ’Î+Ÿ™œ„$ffŽŽŠ‰ffÎA^ĄĚ͟™œ„$ffŸäfd‘ĚÍIP‘ÂMultipleŮ xingޤ ‘ĚÍ/‘Eů\aliasing"ŽĄ‘Ě͸fš2.5.5¸gŽŽ‘L¤„$ffŽ‘S ĺš[35Ž‘ ]ŽŽ’™â—Ÿ™œ„$ffŽ’ ʸš[26Ž‘ ]ŽŽ’ćí|Ÿ™œ„$ffŽ’í ݏš[26Ž‘ ]ŽŽ’3řaŸ™œ„$ffŽ’:+”¸š[26Ž‘ ]ŽŽ’FŸ™œ„$ffŽ’‡6y¸š[26Ž‘ ]ŽŽ’Î+Ÿ™œ„$ffŽŽŚ‰ffÎA^ĄĚ͟™œ„ffŸđfd‘ĚÍIP‘€MulticastŽŽŸ ‘ĚÍServŮ er‘€¸fš2.5.5¸gŽŽ‘L¤„ffŽ‘S ĺš[35Ž‘ ]ŽŽ’™â—Ÿ™œ„ffŽ’ ʸš[26Ž‘ ]ŽŽ’ćí|Ÿ™œ„ffŽ’í ݏš[26Ž‘ ]ŽŽ’3řaŸ™œ„ffŽ’:+”¸š[26Ž‘ ]ŽŽ’FŸ™œ„ffŽ’‡6y¸š[26Ž‘ ]ŽŽ’Î+Ÿ™œ„ffŽŽŠ‰ffÎA^ĄĚ͟'™œ„0ffŸŘfd‘ĚÍTCP‘ selectiŔvŮ eޤ ‘ĚÍacknoŔwledge-ŽĄ‘ĚÍment‘ đ(SA™ŸCK)ŽĄ‘Ě͸fš2.5.5¸gŽŽ‘L¤„0ffŽ‘S ĺšA.1ŽŽ’™â—Ÿ'™œ„0ffŽ’ ʸš[26Ž‘ ]ŽŽ’ćí|Ÿ'™œ„0ffŽ’í ݏš[26Ž‘ ]ŽŽ’3řaŸ'™œ„0ffŽ’:+”¸š[26Ž‘ ]ŽŽ’FŸ'™œ„0ffŽ’‡6y¸š[26Ž‘ ]ŽŽ’Î+Ÿ'™œ„0ffŽŽŸ(‰ffÎA^ĄĚ͟™œ„ffŸđfd‘ĚÍA‘ţă×TM–Í8IP“switch-ŽŸ ‘ĚÍing‘€¸fš2.5.5¸gŽŽ‘L¤„ffŽ’™â—Ÿ™œ„ffŽ’ Ęš[26Ž‘ ]ŽŽ’ćí|Ÿ™œ„ffŽ’í ݏš[26Ž‘ ]ŽŽ’3řaŸ™œ„ffŽ’:+”¸š[26Ž‘ ]ŽŽ’FŸ™œ„ffŽ’‡6y¸š[26Ž‘ ]ŽŽ’Î+Ÿ™œ„ffŽŽŚ‰ffÎA^ĄĚ͟™œ„ffŸđfd‘ĚÍMultilink‘ ’ĘPPPŽŸ ‘Ě͸fš2.5.5¸gŽŽ‘L¤„ffŽ‘S ĺšA.1ŽŽ’™â—Ÿ™œ„ffŽ’ ʸš[26Ž‘ ]ŽŽ’ćí|Ÿ™œ„ffŽ’í ݏš[26Ž‘ ]ŽŽ’3řaŸ™œ„ffŽ’:+”{‘€[26Ž‘ ]ŽŽ’FŸ™œ„ffŽ’‡6y{‘€[26Ž‘ ]ŽŽ’Î+Ÿ™œ„ffŽŽŚ‰ffÎA^ĄĚ͟™œ„$ffŸäfd‘ĚÍTCP‘LarŃđgeޤ ‘ĚÍW™ŸindoŔws‘"(RFCŽĄ‘ĚÍ1323)‘€¸fš2.5.5¸gŽŽ‘L¤„$ffŽ‘S ĺš[57Ž‘ ]ŽŽ’™â—Ÿ™œ„$ffŽ’ ʸš[26Ž‘ ]ŽŽ’ćí|Ÿ™œ„$ffŽ’í ݏš[26Ž‘ ]ŽŽ’3řaŸ™œ„$ffŽ’:+”¸š[26Ž‘ ]ŽŽ’FŸ™œ„$ffŽ’‡6y¸š[26Ž‘ ]ŽŽ’Î+Ÿ™œ„$ffŽŽŠ‰ffÎA^ĄĚ͟™œ„$ffŸäfd‘ĚÍTCP/IP‘îçGratu-ޤ ‘ĚÍitous‘ôůARP‘ôÖ(RFCŽĄ‘ĚÍ2002)‘€¸fš2.5.5¸gŽŽ‘L¤„$ffŽ’™â—Ÿ™œ„$ffŽ’ Ęš[26Ž‘ ]ŽŽ’ćí|Ÿ™œ„$ffŽ’í ݏš[26Ž‘ ]ŽŽ’3řaŸ™œ„$ffŽ’:+”¸š[26Ž‘ ]ŽŽ’FŸ™œ„$ffŽ’‡6y¸š[26Ž‘ ]ŽŽ’Î+Ÿ™œ„$ffŽŽŚ‰ffÎA^ĄĚ͟™œ„$ffŸäfd‘ĚÍPŮ ath‘€MTUŽ‘5ŸsDis-ޤ ‘ĚÍco•Ů v“ery‘ç(RFCŽĄ‘ĚÍ1191)‘€¸fš2.5.5¸gŽŽ‘L¤„$ffŽ‘S ĺšA.1ŽŽ’™â—Ÿ™œ„$ffŽ’ ʸš[26Ž‘ ]ŽŽ’ćí|Ÿ™œ„$ffŽ’í ݏš[26Ž‘ ]ŽŽ’3řaŸ™œ„$ffŽ’:+”¸š[26Ž‘ ]ŽŽ’FŸ™œ„$ffŽ’‡6y¸š[26Ž‘ ]ŽŽ’Î+Ÿ™œ„$ffŽŽŚ‰ffÎA^ĄĚ͟™œ„$ffŸäfd‘ĚÍPŮ ath‘€MTUŽŽ¤ ‘ĚÍDisco•Ů v“ery‘ĹÎo“v“erŽĄ‘ĚÍUDP‘€¸fš2.5.5¸gŽŽ‘L¤„$ffŽ’™â—Ÿ™œ„$ffŽ’ Ęš[26Ž‘ ]ŽŽ’ćí|Ÿ™œ„$ffŽ’í ݏš[26Ž‘ ]ŽŽ’3řaŸ™œ„$ffŽ’:+”¸š[26Ž‘ ]ŽŽ’FŸ™œ„$ffŽ’‡6y¸š[26Ž‘ ]ŽŽ’Î+Ÿ™œ„$ffŽŽŚ‰ffÎA^ĄĚ͟'™œ„0ffŸŘfd‘ĚÍOpen‘€ShortestŽŽ¤ ‘ĚÍPŮ ath‘€FirstŽŽĄ‘ĚÍ(OSPF{RFCŽŽĄ‘ĚÍ1533)‘€¸fš2.5.5¸gŽŽ‘L¤„0ffŽ‘S ĺš[6Ž‘]ŽŽ’™â—Ÿ'™œ„0ffŽ’ ʸš[26Ž‘ ]ŽŽ’ćí|Ÿ'™œ„0ffŽ’í ݏš[26Ž‘ ]ŽŽ’3řaŸ'™œ„0ffŽ’:+”¸š[26Ž‘ ]ŽŽ’FŸ'™œ„0ffŽ’‡6y¸š[26Ž‘ ]ŽŽ’Î+Ÿ'™œ„0ffŽŽŸ(‰ffÎA^ĄĚ͟™œ„ffŸđfd‘ĚÍIP‘€MultipathŽŽŸ ‘ĚÍRouting‘€¸fš2.5.5¸gŽŽ‘L¤„ffŽ‘S ĺšA.1ŽŽ’™â—Ÿ™œ„ffŽ’ ʸš[26Ž‘ ]ŽŽ’ćí|Ÿ™œ„ffŽ’í ݏš[26Ž‘ ]ŽŽ’3řaŸ™œ„ffŽ’:+”¸š[26Ž‘ ]ŽŽ’FŸ™œ„ffŽ’‡6y¸š[26Ž‘ ]ŽŽ’Î+Ÿ™œ„ffŽŽŸ‰ffÎA^ŽŽŽŽŸ’á\Q21ŽŽŽŽŽŽŽŒ‹ˇJ ɍ ýCŸüfd‘GšLinux–€V‘ţă×ersus“AIX,“HP-UX,“TŚgru64“UNIX,“SolarisŽŽŽ’t˘mby–€C‘Žžó3Žesar“da“SilvŔaŽŽŽŽ‘GŸ‰ff¨–ŽŽŽŽ Ÿ ý„‘+IÉ5.2Ž‘KwŽRESUL–ţŹáT‘™™ANśJAL“YSISŽŸY˜‘+IšLinux–ş1has›ş2support“for˜a“more˜kinds“of˜ le“systems˜and“architectures˜than“anŮ y˜other“operatingޤ ‘+Isystem–Aäin›Aĺthis“thesis.‘_EBut“it˜lacks“high-aĚĐvŔailability“and˜security“features“(likćge˜LiŔvŮ e“upgrade,ŽĄ‘+Idynamic–€memory/processor“resilience,“HSM,“A™ŸCL,“IPSec...).ŽŽŸ’á\Q22ŽŽŽŽŽŽŽŒ‹Čh ɍ ýC Ÿ ýŇp‘+IĐChapter‘/\6ŽŸ5p‘+IËDISCUSSIONŽŸ7p‘+IšThe–˙ˇreader“maybe›˙¸is“asking“whó7y“this“thesis“just˜looks“at“the“features“of“the˜kćgernel?‘˜˝Theޤ ‘+IeŮ xplanation–Ŕ¤is“that“one“can“tell“much“about“an‘ŔŁoperating“system“by“just“looking“at“the“kćgernel,ŽĄ‘+Ifor–€eŮ xample“hošŔw“well“de˜vŮ eloped“it“is.ŽŠp‘+IThere–g°wćgas“some›gŻdiculties“in“ nding“information“from“the˜suppliers“documentation“that“con-ŽĄ‘+I rmed– which› functions“where˜implemented“in˜the“kćgernel.‘ůĆT‘˙37o“o•Ů v“ercome˜this‘ diculty‘˙Y ,‘HsomeŽĄ‘+Itechnicians–œäfrom“the“vŔarious“companies“were“askšćged.‘pEAnother“dicult“task“w˜as“ nding“in-ŽĄ‘+Iformation–/about“features“that“wćgas“not“implemented‘/in“the“operating“system.‘&›PŮ artial“becauseŽĄ‘+IvŮ endors–Sdon'Ńđt“announce“the“features“their“operating“system“is“missing“in“comparation“to“other‘˙s8.ŽŚ‘+IMost–&of›%the“missing“features˜in“Linux˜do“already“eŮ xist˜for“Linux“as˜patches,‘+QbĚĐut“theŮ y“are˜not“yetŽĄ‘+Iimplemented–`Ein‘`Dthe“ocial“kćgernel.‘FšŮ or“e˜xample›`DIPSec“(see˜reference“[79Ž‘ ]),‘fDynamic“MemoryŽĄ‘+IResilience–€(see“appendix“A.8),“liŔvŮ e“update“(see“appendix“A.2)...ŽŚ‘+INoŔw–/óthat›/ôLinux“is˜getting“a“greater˜deal“of˜press,‘[ďas˜is“the˜interest“for“it˜to“in˜the“enterpriseŽĄ‘+Imarkćget.›cHere–™are“some“quotes“from“di erent‘˜magó7azines.˜The“September“1998“Softwćgare“Mag-ŽĄ‘+Iazine›ŕ}co•Ů v“er˜story[70Ž‘ ]˜reŔv“eals˜just˜hoŔw˜fćgar‘ŕ|Linux˜has˜managed˜to˜in ltrate˜corporate˜AmericaŽĄ‘+Iand–€hoŔw“it“is“not“about“to“go“aŮ wćgay:ŽŠŕ‘AI\TŚgim–}ŽPŮ ayne,‘~ director“of›}database“markćgeting“at˜Oracle,‘~ says˜manŮ y“of˜his“companŮ y'‘˙s8sŽĄ‘AIcorporate–Tâcustomers›TăhaĚĐvŮ e“made˜larŃđge“in™ŸvŮ estments˜in“Linux.‘˜?When˜Oracle“an-ŽĄ‘AInounced–JBin“July“that“it“wćgould“be“o ering“24x7“support“for“Oracle8“on“Linux,‘|ŇheŽĄ‘AIsays–ČÂ300“customers“called“the“neŮ xt“day“asking“about“aĚĐvŔailability‘˙Y .‘óŢ'It'›˙s8s“reliable,‘Úňit'˜sŽĄ‘AIpro•Ů v“en,›@8it–Çruns“on“commodity‘ĆIntel“boxŮ es,˜and“it'‘˙s8s“a“really‘ĆlošŔw-cost“alternati˜vŮ e“toŽĄ‘AINT‘˙B,‘˙LĐ'›$Gsays–$HPŮ ayne.‘n'The“fćgact˜that“you˜are“going˜to“be˜able“to˜get“enterprise˜qualityŽĄ‘AIsupport–Ÿüfrom“Oracle›Ÿýto“deploćgy“on“the“Linux“platform˜will“help“customers“adoptŽĄ‘AILinux.‘˙LĐ"ŽŚ‘+INicholas–\´PetreleŮ y‘˙Y ,‘“ŕeditorĚĐ-in-chief“of“NC‘\{W›˙37orld“and“columnist“for“InfoW˜orld“and“NT‘\{W˜orldŽĄ‘+IJapan–€prošŮ vides“an“e˜xplanation“for“the“rise“of“Linux“and“FreeBSD“in“IT“departments“[69Ž‘ ]:ŽŠP‘AI\Y‘ţ˙˙esterday'‘˙s8s–+collešŮ ge“students“learned‘+their“UNIX‘*ęe˜xpertise‘+on“Linux“and“FreeBSD.ŽĄ‘AIT‘˙37oday–âčthešŮ y'‘˙˙re“wćgorking“in“IT‘âĎdepartments,‘ű˘and“man˜y“of“them“are“openly“hostile“toŽĄ‘AIboth–6ąMicrosoft›6˛and“W™ŸindoŔws“NT‘˙B.˜As“a“result,‘E[Linux,–EZBSD,˜Solaris,“and˜other‘6ąformsŽĄ‘AIof–€UNIX“are“ nding“their“wćgay“into“IT“departments,“both“o•Ů v“ertly–€and“on“the“sly‘˙Y .‘˙LĐ"ŽŚ‘AI\F•Ů or›Fe“xample,‘?—are˜you˜sure˜that'‘˙s8s˜an˜NT‘serv“er˜you'‘˙˙re˜connecting˜to˜at˜wćgork?‘ĺjISŽĄ‘AIemploćgyees–ů^in‘ů]manšŮ y“corporations“haĚĐv˜e›ů]secretly“installed˜UNIX‘řýservŮ ers˜that“pro-ŽĄ‘AIvide–3natiŔvŮ e“NT‘3`services.›4DWhó7y“takćge“such“a“risk?˜Linux“and“FreeBSD‘3`are“free,‘`rasŽĄ‘AIis–{ŁSAMBŚgA,›{¤the“softwćgare“that˜proŮ vides“NT›{cservices.‘ ‚So“the“IS˜department“saĚĐvŮ esŽĄ‘AImoneŮ y‘˙Y .‘ťÚAnd–śmanagers“are“unlikćgely“to‘ś nd“out“UNIX‘śis“behind“the“scenes“becauseŽĄ‘AIfešŔwer–€people“will“complain“about“servŮ er“do˜wntime.‘˙LĐ"ŽŽŸ’á\Q23ŽŽŒ‹ʲ ɍ ýCŸüfd‘GšLinux–€V‘ţă×ersus“AIX,“HP-UX,“TŚgru64“UNIX,“SolarisŽŽŽ’t˘mby–€C‘Žžó3Žesar“da“SilvŔaŽŽŽŽ‘GŸ‰ff¨–ŽŽŽŽ Ÿ ý„‘AI\FeŔwer–Š;people›Š:will“complain“because“the˜servŮ ers“are“more“stable˜than“W™ŸindoŔwsޤ ‘AINT‘˙B.–m‡Linux,‘q9FreeBSD,“and“BSDI›mƒUNIX‘m‚outperform“W™ŸindoŔws“NT˜by“a“wide“marŃđginŽĄ‘AIon›ç;limited–ç:hardwćgare,‘ and“under˜some˜circumstances“can˜perform˜as˜well“or˜betterŽĄ‘AIthan–ČŻNT‘ȝon›Ȱthe“best˜hardwćgare.‘óŚOnce“behind˜in“scalability˜features,‘ÚŰUNIX‘ȝon“IntelŽĄ‘AIis–=ăcatching›=âup“and˜may“soon˜surpass“NT‘=Ňin˜the“number˜of“processors˜it“can˜use,‘KandŽĄ‘AIhoŔw–€it“uses“them.‘˙LĐ"ŽŸ‘+INoŔw–™that›˜Linux“has“in ltrated“the˜enterprise“markćget,‘#?and“the˜demand“for“the“usage˜of“LinuxŽĄ‘+Ion–.Üenterprise“markćget“is“increasing,‘Z“the“deŔvŮ elopment“of“features‘.Ýto“Linux“that“the“enterprisesŽĄ‘+Iare–Pćlooking“for“on“more“e•Ů xpensišŔv“e‘Pćalternati˜v“es–Pćwill‘Pçincrease.‘ŒJSpecially“with“the“increase“ofŽĄ‘+Isupport–zLinux›yis“getting“from˜the“main˜players“on“the˜enterprise“markšćget“lik˜e‘yCompaq,‘C˜IBM,ŽĄ‘+IHeŔwlett{PŮ ackard...ޤ%żü‘+IÉ6.1Ž‘KwŽMETHOD‘™™EV‘ţWALU‘˙"ŇA‘ţĄĎTIONŽŠY˜‘+IšThe–€chosen“methods“where“the“most“appropriate“for“each“task“of“the“report.ŽĄ‘+IÉ6.2Ž‘KwŽRECEIVED–ź4RESUL›ţŹáTS“VERSUS“EXPECTED“RESUL˜TŽŚ‘+IšThe–zGreceišŔvŮ ed‘zFresult“sho˜ws“that“on›zFcontrary“to“the˜eŮ xpected“result“that˜Linux“is“not“yet˜ready“toޤ ‘+Itakćge›yŻo•Ů v“er˜the˜enterprise–y°markćget,‘zňdue˜to“the˜lack˜of˜features˜that˜the“enterprise˜markćget˜eŮ xpect˜toŽĄ‘+Isee–€on“a“high{end“system.ŽŽŸ’á\Q24ŽŽŽŽŽŽŽŒ‹Ůu ɍ ýC Ÿ ýӍ‘+IĐChapter‘/\7ŽŸ6‘+IËCONCLUSIONSŽŸ8‘+IšFŮ or–ÄĚLinux“to›ÄËget“into“the“enterprise˜servŮ er“markćget“it“has˜to“include“support“for˜more“memory‘˙Y ,ޤ ‘+Ihigh-aĚĐvŔailability–Kťand›Kşsecurity“features,‘V/to˜makćge“it“more˜competitiŔvŮ e“agó7ainst“the˜other“operatingŽĄ‘+Isystems.‘˜Linux–€lacks“the“folloŔwing“features:ŽŠ‘7H¸ŽŽŽ‘AIšDynamic–€processor/memory“resilience.ޤ‘7H¸ŽŽŽ‘AIšDynamic–€page“sizing.ŽĄ‘7H¸ŽŽŽ‘AIšLiŔvŮ e‘€upgrade.ŽĄ‘7H¸ŽŽŽ‘AIšA™ŸCLŽĄ‘7H¸ŽŽŽ‘AIšHierarchical–€storage“management.ŽĄ‘7H¸ŽŽŽ‘AIšCacheFSŽĄ‘7H¸ŽŽŽ‘AIšIPSecŽŚ‘+IIt–Göcould›G÷not“be“vŮ eri ed“in˜this“thesis“if“Linux˜has“more“features˜than“anŮ y“other“of˜the“comparedŽŠ ‘+Ioperating–€systems“due“to“the“lack“of“information.ŽŸ%żü‘+IÉ7.1Ž‘KwŽPR‘oOPOSAL–™™FOR“FUR‘˙l”THER“RESEARCHŽŸY˜‘7H¸ŽŽŽ‘AIšA‘˙BvŔailable‘€programs..ŽĄ‘7H¸ŽŽŽ‘AIšMakćge›Ţła‘Ţ´surv•Ů e“y˜on–Ţ´companies˜asking“them˜what“hardwćgare˜support“or˜features“theŮ y˜wćgantŽŚ‘AIto–€see“implemented“in“Linux.ŽĄ‘7H¸ŽŽŽ‘AIšA‘˙BvŔailable‘€support.ŽĄ‘7H¸ŽŽŽ‘AIšCost–€vŮ ersus“performance.ŽŽŸ’á\Q25ŽŽŒ‹ŕd ɍ ýC Ÿ ýӍ‘+IĐChapter‘/\8ŽŸ6‘+IËBibliograph †yŽŽŸ’á\Qš26ŽŽŒ‹ĺ_ ɍ ýCŸüfd‘GšLinux–€V‘ţă×ersus“AIX,“HP-UX,“TŚgru64“UNIX,“SolarisŽŽŽ’t˘mby–€C‘Žžó3Žesar“da“SilvŔaŽŽŽŽ‘GŸ‰ff¨–ŽŽŽŽ Ÿ ý؍‘+IËBibliograph †yŽŸ6‘@ş9ĚBooksŽŸżţ‘0Iš[1]ŽŽ‘@ş9Matt–ľŔW‘˙37elsh›ľÁand“Phil˜Hughes“and˜DaĚĐvid“Bandel˜and“Boris˜BeletskŮ y“and˜Sean“Dreilingerޤ ‘@ş9and–Î%Robert›Î&Kiesling“and“EvŔan˜LieboŮ vitch“and“Henry˜Pierce,‘áŽó*Kjŕ ptmri7tŐLinux“installation˜and“gćget-ŽĄ‘@ş9ting–Pstartedš,›?ŁSpecialized“Systems“Consultants“Inc,˜Seattle,‘?¤Îhttp://www‘˙fg.ibibĚĐlio™Ÿ.org/pub/ŽĄ‘@ş9Linćgux/docs/LDP/install-‘€guide/!INDEX.html–€š(aĚĐvŔailable“2001{05{19),“1998.ŽŠ‘0I[2]ŽŽ‘@ş9VI‘APeter–A7H.›A6Salus,‘q…ŐA‘AQuarter“Century“of“UNIXš,˜Addison-W‘˙37eslešŮ y“Publishing“Compan˜yŽĄ‘@ş9Inc,–€ISBN:“0-201-54777-5,“1994.ŽŚ‘0I[3]ŽŽ‘@ş9Peter–BGalvin“and“A‘˙Bvi“Silberschatz,›hŐOperŮ ating“system“concepts,˜5th“editionš,˜ISBN“0-471-ŽĄ‘@ş936414-2,–€John“W™ŸilešŮ y“and“Sons“Inc.,“605“Third“A‘˙Bv˜enue,“NeŔw“Y‘ţćgork,“1999.ŽŚ‘0I[4]ŽŽ‘@ş9AndreŔw–šÜS.“T‘˙37anebaum,›Ą“ŐComputer“Networks,‘Ą”3rĄGd“editionš,˜ISBN‘šŐ0-13-394248-1,˜Prentice-ŽĄ‘@ş9Hall–€International,“Inc.,“Upper“Saddle“RišŔvŮ er™Ÿ,“Ne˜w“JerseŮ y“07458,“1996.ŽŚ‘0I[5]ŽŽ‘@ş9V‘ţă×alentino–]ÖBerti,‘dŹŐDatakćgommunikationš,›dŤLiber“AB,‘]×113“98“Stockholm,˜ISBN‘]Î91-47-03564-ŽĄ‘@ş91,‘€1999.ŽŸŸü‘@ş9ĚWhite‘€PćgapersŽŸżţ‘0Iš[6]ŽŽ‘@ş9Bert–AHubert“and›@GreŮ gory“Maxwell“and“Remco˜vŔan“Mook“and“Martijn˜vŔan“Oosterhout“andŽĄ‘@ş9PŮ aul–IńB‘IăSchroeder“and“Jasper“Spaans,‘TŔŐLinux“2.4“Advanced“Routing“HO‘˙˙WTŃđOš,“Îhttp://www‘˙fg.ŽĄ‘@ş9ds9a.nl/2.4Netwćgor&_king/HOł7WT™ŸO//cvs/2.4routing/output/2.4routing.html‘@Kš(aĚĐvŔailableŽĄ‘@ş92001{05{23),‘€2001.ŽŚ‘0I[7]ŽŽ‘@ş9ŐAIX›ö+5L‘ö*T‘˙ec•Ů hnical‘öNPrĄGe“vie“w‘˙B,‘×AIX˜PrŒĎoduct‘öMMarkćgetingš,–ŘIBM‘ö*corporation,“Îhttp://www-‘€1.ibm.ŽĄ‘@ş9com/serLČv•Ŕers/aix/pdf/AIX50dr3msŮ .pdf›€š(aĚĐv“ailable˜on˜17:th˜of˜May˜2001),˜2000.ŽŚ‘0I[8]ŽŽ‘@ş9ŐAIX{–€Announcement“Supplemental“Informationš,“IBM,“2001{04{17.ŽŚ‘0I[9]ŽŽ‘@ş9ŐHP‘_}RenešŮ ws–_…F‘ţó7ocus“on“UNIX‘_|for“W‘˙eb“Application“Infr˜astructurĄGesš,‘fD.H.“BroŔwn“AssociatesŽĄ‘@ş9Inc.‘€2000.ŽŚ‘+I[10]ŽŽ‘@ş9ŐHP‘üä9000–ý{“A-Class“Serverćgs:‘ŘA500/A400‘ýSystem“Ar•ĄGcŮ hitectur“e–ýand“Design“Guideš,‘7HeŔwlett-ŽĄ‘@ş9PŮ ackard,‘€2000.ŽŚ‘+I[11]ŽŽ‘@ş9ŐUpdating‘–mto‘–lHP-UX‘•ă11iš,–HeŔwlett{PšŮ ackard,“Îhttp://docs˜.hpŚg.com/cgi-‘€bin/onlinedocs˜.ŽĄ‘@ş9pł7y?mpn=B2355-–€90703&serLČvice=hpux&path=../B2355-“90703/00/00/19&title=ŽĄ‘@ş9HP-‘€UX%2011i%20Installation%20and%20Update%20GuideŽŚ‘+Iš[12]ŽŽ‘@ş9ŐHP{UX‘§.r•ĄGefer“ence‘§{documentsš,‘ńXHeŔwlett{P•Ů ackard,Îhttp://deł7vresource“.hpŚg.com/STK/toc‘™˜‰ffŽŽŽĄ‘@ş9ref‘™˜‰ffŽŽ‘™šdetailsŮ .html–€š(aĚĐvŔailable“2001-05-24),“2001.ŽŚ‘+I[13]ŽŽ‘@ş9ŐHP-UX‘%Ř11i–&ÉOperšŮ ating“En™ŸvirŒĎonmentsš,–yHeŔwlett{P˜ackard,“Îhttp://docs˜.hpŚg.com/hpux/ŽĄ‘@ş9onlinedocs/os/11i/oe‘™˜‰ffŽŽ–™špresentation‘™˜‰ffŽŽ“Dec1‘™˜‰ffŽŽ“eł7xter?˙nal.pdf‘ Ëxš(aĚĐvŔailable‘ Ëw2001{05{25),ŽĄ‘@ş92000.ŽŚ‘+I[14]ŽŽ‘@ş9Őhp–˙ˆ9000“superĄGdome“speci cationsš,‘_jHeŔwlett{PŮ ackard,‘_iÎhttp://www‘˙fg.hpŚg.com/products1/ŽĄ‘@ş9unixserLČv•Ŕers/highend/superdome/speci cationsŮ .html›€š(aĚĐv“ailable˜2001{05{27).ŽŽŸ’ä˛IŽŽŽŽŽŽŽŒ‹ĺŕ ɍ ýCŸüfd‘GšLinux–€V‘ţă×ersus“AIX,“HP-UX,“TŚgru64“UNIX,“SolarisŽŽŽ’t˘mby–€C‘Žžó3Žesar“da“SilvŔaŽŽŽŽ‘GŸ‰ff¨–ŽŽŽŽ Ÿ ý„‘+I[15]ŽŽ‘@ş9ŐOnlinejsf–=łprŒĎoduct‘=˛details“and“speci cationsš,‘íHeŔwlett{P•Ů ackard,Îhttp://www‘˙fg.softw“are“.ޤ ‘@ş9hpŚg.com/cgi-‘€bin/s•ł7wdepot‘™˜‰ffŽŽ‘™šparser‘˙˙.cgi/cgi/displa“yProductInf“o™Ÿ.pl?productNumber=ŽĄ‘@ş9B3929CA–€š(aĚĐvŔailable“2001{05{27).ŽŠ‘+I[16]ŽŽ‘@ş9ŐIPv6–…searly‘…rrĄGelease“oćgvervie•Ů wš,‘ÎHeŔwlett{P“ackard,Îhttp://www‘˙fg.softw“are“.hpŚg.com/cgi-‘€bin/ŽĄ‘@ş9s•ł7wdepot‘™˜‰ffŽŽ‘™šparser‘˙˙.cgi/cgi/displa“yProductInf“o™Ÿ.pl?productNumber=T1305AA‘ .š(aĚĐvŔail-ŽĄ‘@ş9able‘€2001{05{27).ŽŚ‘+I[17]ŽŽ‘@ş9ŐHP‘•MPI‘–User'™Ÿs–guide‘{“Messa•ćgg“e–latency“and“bandwidthš,‘ uCHeŔwlett{PŮ ackard,ŽĄ‘@ş9Îhttp://docsŮ .hpŚg.com/cgi-‘€bin/fsearch/frćgamedisplał7y?top=/hpux/onlinedocs/ŽĄ‘@ş9B6060-–€96002/B6060-“96002‘™˜‰ffŽŽ‘™štopŚg.html&con=/hpux/onlinedocs/B6060-“96002/ŽĄ‘@ş900/00/25-–€con.html&toc=/hpux/onlinedocs/B6060-“96002/00/00/25-“toc.html&ŽĄ‘@ş9searchter?˙ms=nćguma&querLČyid=20010528-‘€032930–€šaĚĐvŔailable“2001{05{28.ŽŚ‘+I[18]ŽŽ‘@ş9ŐSolaris–#Ü8‘#ŰpršĄGess“r˜eleaseš,‘ ĐSun“Microsystems‘#ŰInc,‘ ŃÎhttp://www‘˙fg.sun.com/smi/Press/ŽĄ‘@ş9sun ash/2000-‘€01/sun ash.20000126.2.html–€š(aĚĐvŔaible“2001-05-19),“2001.ŽŚ‘+I[19]ŽŽ‘@ş9ŐSun–áCtrunking“oćgvervieŮ wš,‘š‹Sun“Micro{systems,‘šŒÎhttp://www‘˙fg.sun.com/ŽĄ‘@ş9products-–€n-“solutions/hw/netwćgor•&_king/connectivity/suntr“unking/tr“unking.htmlš.ŽŚ‘+I[20]ŽŽ‘@ş9ŐT‘˙s8rusted–Ä˝Solaris“8“OperšŮ ating“En™ŸvirŒĎonment“{“A‘ĂĺT‘˙ec˜hnical“Overvie˜wš,‘•ëWhite“P˜aper™Ÿ,ŽĄ‘@ş9Sun–4%Microsystems“Inc,‘Ą.Îhttp://www‘˙fg.sun.com/softwŮ are/white-–€papers/wp-“ts8/‘4%š(aĚĐvŔail-ŽĄ‘@ş9able‘€2001{05{25).ŽŚ‘+I[21]ŽŽ‘@ş9ŐSun–őEnterprise“10000›öKŚgeł7y“T‘˙ecŮ hnoloćggiesš,‘3ňSun“Microsystems˜Inc,‘3ňÎhttp://www‘˙fg.sun.com/ŽĄ‘@ş9serLČv•Ŕers/highend/10000/tech.html›€š(aĚĐv“ailable˜(2001{05{25).ŽŚ‘+I[22]ŽŽ‘@ş9ŐWhat'™Ÿs–€nešŮ w“in“the“Solaris“8“Oper˜ating“En™ŸvirŒĎonmentš,“Sun“Microsystems,“January“2000.ŽŚ‘+I[23]ŽŽ‘@ş9ŐT‘˙s8ru64–JßUNIX‘JŃOperŮ ating›JŢSystem“V‘ţă×erćgsion“5.1˜PrŒĎoduct“Descriptionš,‘UInternal“reference:‘˙SPDŽĄ‘@ş970.70.03,–€Compaq“Computer“Corporation,“2000.ŽŚ‘+I[24]ŽŽ‘@ş9ŐT‘˙s8ru64‘ËůUNIX‘ËbPrŒĎoduct‘ËúoćgvervieŮ wš,‘^öCompaq,‘^÷Îhttp://www‘˙fg.tr&_u64unix.compaq.com/unix/ŽĄ‘@ş9indeł7x.html–€š(aĚĐvŔailable“online“on“2001-05-18),“2001.ŽŚ‘+I[25]ŽŽ‘C0ßŐT‘˙s8rue64–v§UNIX‘v¤on“AlphaServer›vŚPrŒĎoduct“OvervieŮ wš,‘x…Compaq˜Computer“Corporation,‘x…Îhttp:ŽĄ‘@ş9//www‘˙fg.tr&_u64unix.compaq.com/unix/v5.htm–€š(aĚĐvŔailable“2001-05-19),“2001.ŽŚ‘+I[26]ŽŽ‘@ş9Ő2001–€UNIX“function“rĄGe•Ů vie“wš,–€D.H“BroŔwn“Associates,“Inc,“2001.ŽŚ‘+I[27]ŽŽ‘@ş9R.–%-P‘ţă×.›%,LaRoŔwe“Jr‘˙s8.“and˜J.“T‘˙B.“W™Ÿilkćges˜and“C.“S.˜Ellis,‘NxŐExploiting“operŮ ating˜system“supportŽĄ‘@ş9for›YËdynamic‘YĘpa•ćgg“e˜placement–YĘon˜a˜NUMA‘Y’sharĄGed˜memory“multiprŒĎocessorš,‘=ProceedingsŽĄ‘@ş9of–Xýthe“3rd›XţA™ŸCM–XĹSIGPLAN“Symposium˜on–XýPrinciples“&“Practice˜of“PŮ arallel“Program-ŽĄ‘@ş9ming,‘.,SIGPLAN‘×ËNotices–Ř$vĚĐolume›Ř#26“number“7˜page“122-132,‘.,Îhttp://citeseer‘˙˙.nj.nec.ŽĄ‘@ş9com/laroŮ wćge91eł7xploiting.htmlš,–€April“1991ŽŚ‘+I[28]ŽŽ‘@ş9Adam–ÄSweeneŮ y“and“Doug“Doucette“and“W‘˙37ei‘ĂHu“and“Curtis“Anderson“and“Mikćge“Nishi-ŽĄ‘@ş9moto–ć?and›ć>Geo “Peck,‘ÍŐScalability˜in“the“XFS‘ĺ FŒĎile˜Systemš,›ÍSilicon“Graphics,˜Îhttp:ŽĄ‘@ş9//linćgux-‘€xfsŮ .sgi.com/projects/xfs/papers/xfs‘™˜‰ffŽŽ‘™šusenix/indeł7x.htmlš,‘€1996ŽŚ‘+I[29]ŽŽ‘@ş9Heinz›ČęMauelshagen,‘[$ŐMauelsha•ćgg“en'™Ÿs‘ČëL‘˙s8VM‘ČS(Lo“gical˜V‘ţă×olume‘ČëMana“g“er)˜howtoš,‘[$LinuxŽĄ‘@ş9source–€documentation,“1999ŽŚ‘+I[30]ŽŽ‘@ş9Johannes–öłErdfelt,›”_ŐHot-Swap‘ö˛white“paperš,˜Îhttp://johannesšŮ .erdf•ł7elt.com/hots“w˜apŚg.txtš,ŽĄ‘@ş92000.ŽŚ‘+I[31]ŽŽ‘@ş9Jakćgob–aYsteršŃđgó7aard,‘ŮŽŐThe“SoftwarĄGe{RAID‘`ÝHO‘˙˙WT˜Oš,“Îhttp://www‘˙fg.linćguxdoc.org/HOł7WT™ŸO/ŽĄ‘@ş9SoftwŮ are-–€RAID-“HOł7WT•™ŸO“.html–€š(aĚĐvŔailable“2001-05-22),“2000.ŽŚ‘+I[32]ŽŽ‘@ş9Scott–“Norton›”and“Mark˜DiPŮ asquale,‘‚xŐThrĄGead“T‘˙s8ime˜-“The˜MultithrĄGeaded“PrŒĎoćggrŮ ammingŽĄ‘@ş9Guideš,–€Prentice“Hall,“ISBN“0-13-190067-6,“1996.ŽŚ‘+I[33]ŽŽ‘@ş9DaĚĐvid–ŚdMentr‘Žžó3Že,ŐLinux›ŚcSMP‘ŚZHO‘˙˙WTŃđOš,“Linux˜documentation“project,Îhttp://www‘˙fg.linćguxdoc.ŽĄ‘@ş9org/HO•ł7WTš™ŸO/SMP-‘€HO“WT˜O˜.htmlš,–€October“2000.ŽŽŸ’ăŮIIŽŽŽŽŽŽŽŒ‹óĽ ɍ ýCŸüfd‘GšLinux–€V‘ţă×ersus“AIX,“HP-UX,“TŚgru64“UNIX,“SolarisŽŽŽ’t˘mby–€C‘Žžó3Žesar“da“SilvŔaŽŽŽŽ‘GŸ‰ff¨–ŽŽŽŽ Ÿ ý„‘+I[34]ŽŽ‘@ş9R‘Žžó3Žemy–IüCard“and“Theodore“Ts'o“and‘IűStephen“T‘˙37weedie,ŐDesign“and“implementation“of“Sec-ޤ ‘@ş9ond–íŢExtended“FŒĎilesystemš,› Proceedings“of“the‘íßFirts“Dutch“International“Symposium,˜ISBNŽĄ‘@ş990-367-0385-9,‘ýÎhttp://e2fsprogs•Ů .sourcefšł7orge“.net/e˜xt2intro™Ÿ.html–äš(aĚĐvŔailable“2001{05{ŽĄ‘@ş924).ŽŠ‘+I[35]ŽŽ‘@ş9Joshua–ůäDrakšćge,‘ ˜ZŐLinux“Networking“HO‘˙˙WTŃđOš,“Îhttp://www‘˙fg.lin˜uxporf`ts•Ů .com/ho“wto/ŽĄ‘@ş9netwćgor&_king/–€š(aĚĐvŔailable“2001-05-24),“2000.ŽŚ‘+I[36]ŽŽ‘@ş9Harald–5ßMilz,‘#UŐLinux“High‘5ŕA‘˙s8vailability“HO‘˙˙WTŃđOš,“Îhttp://www‘˙fg.ibibĚĐlio™Ÿ.org/pub/Linćgux/ŽĄ‘@ş9ALPHA/linćgux-–€ha/High-“Aš™ŸvŔailability-“HOł7WT˜O˜.html‘xÔš(aĚĐvŔailable‘xÓ2001{05{25),‘ˇ1998{12{ŽĄ‘@ş922.ŽŚ‘+I[37]ŽŽ‘@ş9Stein–\ĹGjoen,‘ÓöŐMulti›\ĆDisk“System˜T‘˙s8uning“HO‘˙˙WTŃđOš,Îhttp://www‘˙fg.linćguxdoc.org/HOł7WT™ŸO/ŽĄ‘@ş9Multi-–€Disk-“HOł7WT•™ŸO“.html–€š(aĚĐvŔailable“2001-05{26),“2000-07{24.ŽŚ‘+I[38]ŽŽ‘@ş9ŐV‘˙Bisual–ÚThrĄGeads“Documentationš,‘Compaq“Inc,‘Îhttp://www‘˙fg.compaq.com/products/ŽĄ‘@ş9softwŮ are/visualthreads/documentation.html–€š(aĚĐvŔailable“2001{05{25).ŽŸŸü‘@ş9ĚSourŃđce–€documentation“and“man“pagesŽŸżţ‘+Iš[39]ŽŽ‘@ş9See–€Solaris“8“man“page“for“ó+0ˆŰ pcrr7tÖmount_nfs“š(1M).ŽŚ‘+I[40]ŽŽ‘@ş9See–€TŚgru64“UNIX“man“page“for“Ömount“š(8).ŽŚ‘+I[41]ŽŽ‘@ş9See–€TŚgru64“UNIX“man“page“for“Öinet“š(7).ŽŚ‘+I[42]ŽŽ‘@ş9See–€TŚgru64“UNIX“man“pages“for“ÖX“š(7).ŽŚ‘+I[43]ŽŽ‘@ş9See–€TŚgru64“UNIX“man“pages“for“Önetwork_manual_setup“š(7).ŽŚ‘+I[44]ŽŽ‘@ş9See–€HP-UX“11i“man“pages“for“Öacl“š(2).ŽŚ‘+I[45]ŽŽ‘@ş9See–€HP-UX“11i“man“pages“for“Ösnmpd“š(1M).ŽŚ‘+I[46]ŽŽ‘@ş9See–€HP-UX“11i“man“pages“for“ÖX“š(7).ŽŚ‘+I[47]ŽŽ‘@ş9See–€HP-UX“11i“man“pages“for“Öbootpdš.ŽŚ‘+I[48]ŽŽ‘@ş9See–€HP-UX“11i“man“pages“for“Ömount_cdfs“š(1M).ŽŚ‘+I[49]ŽŽ‘@ş9See–€HP-UX“11i“man“pages“for“Ömount_nfs“š(1M).ŽŚ‘+I[50]ŽŽ‘@ş9See–€HP-UX“11i“man“pages“for“Ömount_hfs“š(1M).ŽŚ‘+I[51]ŽŽ‘@ş9See–€HP-UX“11i“man“pages“for“Ömount_lofs“š(1M).ŽŚ‘+I[52]ŽŽ‘@ş9See–€HP-UX“11i“man“pages“for“Ömount_lvm“š(1M).ŽŚ‘+I[53]ŽŽ‘@ş9See–€HP-UX“11i“man“pages“for“Ömount_cdfs“š(1M).ŽŚ‘+I[54]ŽŽ‘@ş9See–€HP-UX“11i“man“pages“for“Ödosif“š(4).ŽŚ‘+I[55]ŽŽ‘@ş9See–€HP-UX“11i“man“pages“for“Öpfs“š(4).ŽŚ‘+I[56]ŽŽ‘@ş9See–€Linux“man“pages“for“Öipc“š(5).ŽŚ‘+I[57]ŽŽ‘@ş9See–ćhkćgernel“source“document“Ölinux/Documentation/network/ip-sysctl.txtš.ŽŚ‘+I[58]ŽŽ‘@ş9See–€kćgernel“source“document“Ölinux/Documentation/Configure.helpš.ŽŚ‘+I[59]ŽŽ‘@ş9See–€kćgernel“source“document“Ölinux/Documentation/ramdisk.txtš.ŽŚ‘+I[60]ŽŽ‘@ş9See–€kćgernel“source“document“Ölinux/Documentation/vm/numa.htmlš.ŽŚ‘+I[61]ŽŽ‘@ş9See–€kćgernel“source“document“Ölinux/Documentation/devices.txtš.ŽŚ‘+I[62]ŽŽ‘@ş9See–€kćgernel“source“document“Ölinux/Documentation/LVM-HOWTO.htmš.ŽŽŸ’á]IIIŽŽŽŽŽŽŽŒ‹P ɍ ýCŸüfd‘GšLinux–€V‘ţă×ersus“AIX,“HP-UX,“TŚgru64“UNIX,“SolarisŽŽŽ’t˘mby–€C‘Žžó3Žesar“da“SilvŔaŽŽŽŽ‘GŸ‰ff¨–ŽŽŽŽ Ÿ ý„‘@ş9ĚArticles–€fršŃđom“the“pr˜ess“(bold“urls“noćgw!)ŽŸżţ‘+Iš[63]ŽŽ‘@ş9Richard–XŽShim,‘`‹ŐLinux“makšćges“a“mo˜ve“into‘XŻhandheldsš,–`‹C{Net,“Ěhttp://news.cnet.com/news/ޤ ‘@ş90-–€1006-“200-“5827919.html–€š(aĚĐvŔailable“2001{05{19),“2001.ŽŠ‘+I[64]ŽŽ‘@ş9Mats–šL‘ŐĞó3Žovgren,›QŐLinux“sparkar“ut“NT‘¸žocŮ h“UNIX‘¸˝fr‘˙mPžĽŽan“bankš,˜Computer“Sweden,˜Ěhttp://ŽĄ‘@ş9nyheter‘ţ˙˙.idgŮ .se/display‘˙LĐ.asp?ID=010504-‘€CS31š,‘€2001.ŽŚ‘+I[65]ŽŽ‘@ş9Jon–ą)TŚgillman,›ýsŐThe“NeŮ w“Linux“Myth“Dispellerš,˜Ěhttp://www‘˙LĐ.eruditum.orćgg/linux/myths/ŽĄ‘@ş9myth-‘€dispeller‘ţ˙˙.htmlš,‘€2000.ŽŚ‘+I[66]ŽŽ‘@ş9Mary›cąJo‘c°F•Ů ole“y‘˙Y ,‘iZŐAt˜long–c°last˜Linux“2.4˜has“arrivedš,–iZZDNet˜neŔws,“Ěhttp://www‘˙LĐ.zdnet.com/ŽĄ‘@ş9zdnn/stories/news/0,–€4586,“2671106,“00.html–€š(aĚĐvŔailable“2001-05-19),“January“5“2001.ŽŚ‘+I[67]ŽŽ‘@ş9Robert–ĽcKiesling,›ŽźŐLinux‘ĽdF‘ţŮ A™ŸQ,“ReŮ vision“1.4š,˜Ěhttp://www‘˙LĐ.linuxdoc.orćgg/F–˙ AšŒĎQ/Linux-‘€F“A˜Q/ŽĄ‘@ş9index.html–€š(aĚĐvŔailable“2001{05{21),“2001.ŽŚ‘+I[68]ŽŽ‘@ş9Mary›BŠJo‘B‹F•Ů ole“y‘˙Y ,‘s,ŐLinus:‘ž­P‘˙37artying˜harĄGd‘B‹oćgver˜Linux˜2.4š,–s-ZDNet˜neŔws,“Ěhttp://www‘˙LĐ.zdnet.ŽĄ‘@ş9com/zdnn/stories/news/0,–€4586,“2671714,“00.html–Şš(aĚĐvŔailable“2001-05-19),‘çJanuary“5ŽĄ‘@ş92001.ŽŚ‘+I[69]ŽŽ‘@ş9Nicholas–e­PetrelešŮ y‘˙Y ,ŐThe“ne˜w–eŹUNIX‘e§alteršćgs“NT'™Ÿs–e­orbit:‘ nThe“r•ĄGe-emer“g˜ence–e­of“UNIX‘eŚthrĄGeatensŽĄ‘@ş9to–€modify“the“futuršĄGe“dir˜ection“of“NTš,“NC“W‘˙37orld,“April“1998.ŽŚ‘+I[70]ŽŽ‘@ş9Ann–€Harrison,ŐIn“LINUX“W‘˙e.–˙.“.“š,–€Softwćgare“Magó7azine,“Co•Ů v“er–€Story‘˙Y ,“September“1998.ŽŚ‘+I[71]ŽŽ‘@ş9Henry–TâBaltazar‘˙s8.“ŐOperŮ ating“System“-“Linux“2.4“KŚgernelš,‘]ZDNet“UK,“Ěhttp://www‘˙LĐ.zdnet.co.ŽĄ‘@ş9uk/rŃđeŮ views/rstories/0,–€3040,“e7108096,“00.htmlš,–€27“January“2001.ŽŚ‘+I[72]ŽŽ‘@ş9Jaikumar–bĆV‘˙fgijayan,‘›vŐHigh-end“Systems“V‘ţă×endorćgs›bĹo er“performance˜prŒĎoćggrŮ amsš,‘›wComputerĚĐ-ŽĄ‘@ş9W‘˙37orld,‘€1999{22{11.ŽŚ‘+I[73]ŽŽ‘@ş9Press–xšrelease,‘6ĺŐV‘ţă×eritas‘x¸deliveršćgs“hsm“ver˜sion›x¸3.1“to˜bring“imprŒĎoćgved˜data“availabil-ŽĄ‘@ş9ity–:&to‘:'enterprise“applicationsš,‘čŻĚhttp://www‘˙LĐ.vćgeritas.com/us/aboutus/pr•Ńđessr“oom/1998/ŽĄ‘@ş998-–€08-“18-“0.html–€š(aĚĐvŔailable“2001{05-21),“1998.ŽŸŸü‘@ş9Ě8.0.0.1Ž‘f:9T‘˙echnical‘€persons/r•Ńđesour“cesŽŸżţ‘+Iš[74]ŽŽ‘@ş9Jan–€Strage,“IT“Architect,“IBM“Sweden.ŽŚ‘+I[75]ŽŽ‘@ş9ŐLinux– {kšćgernel‘ zdeŮ velopment“listš,‘"ČĚhttp://vger‘ţ˙˙.k˜erŮ nel.or˜g‘ zšor“Ěhttp://www‘˙LĐ.tux.or˜g/lkml/#s3-‘€4ŽĄ‘@ş9š(aĚĐvŔailable‘€2001{05{27).ŽŸŸü‘@ş9Ě8.0.0.2Ž‘f:9W‘˙Y ebsitesŽŸżţ‘+Iš[76]ŽŽ‘@ş9Heimo–Â.Haub,‘ŇşŐAspects“of“Access›Â/Mana•ćgg“ement–Â.in“HeterŒĎo•ćgg“eneous–Â.DistribĚĐuted˜Object“Sys-ŽĄ‘@ş9temsš,Graz–ějUniŔvŮ ersity‘ěiof“T–˙LĐechnology‘˙Y ,‘GƒĚhttp://www“.dinopolis.orćgg/documentation/misc/ŽĄ‘@ş9theses/hhaub/node60.htmlŽŚ‘+Iš[77]ŽŽ‘@ş9Harald–ŞaAlvŮ estrand,›4řŐThe“Linux“Counter‘Ş`PrŒĎojectš,˜The“Linux“Counter“Project,˜Ěhttp://ŽĄ‘@ş9counter‘ţ˙˙.li.orćgg/–€š(aĚĐvŔailable“2001{05{21),“2001.ŽŚ‘+I[78]ŽŽ‘@ş9TŚgransaction–‹ÝProcessing“Performance“Council,‘ÎÔĚhttp://www‘˙LĐ.tpc.orćgg“š(aĚĐvŔailable“2001-05-ŽĄ‘@ş921).ŽŚ‘+I[79]ŽŽ‘@ş9FreeSw•ćgan›€homepage,Ěhttp://www‘˙LĐ.frŃđeeswan.or“g/˜š(aĚĐvŔailable˜2001{05{25).ŽŚ‘+I[80]ŽŽ‘@ş9Columbia–gťAppletalk,‘l–Ěhttp://www‘˙LĐ.cs.mu.oz.au/appletalk/cap.html‘gźš(aĚĐvŔailable“2001{05{ŽĄ‘@ş927).ŽŚ‘+I[81]ŽŽ‘@ş9No•Ů v“ell,›€Ěhttp://www‘˙LĐ.no•ćgv“ell.com/˜š(aĚĐvŔailable˜2001{05{27).ŽŽŸ’áíIVŽŽŽŽŽŽŽŒ‹ä ɍ ýC Ÿ ýӍ‘+IĐA‘˙{Dppendix‘/\AŽŸ6‘+IËMESSA‘ţĄźGE–8RREPLIES“FR‘˙@÷OM“THEŽŸ‘+IKERNEL–8RDEVELOPMEN“LISTŽŸ8‘+IšHere–Œvare“the“letter‘ŒuI'‘˙˙všŮ e“got“from“the“deŔv˜elopers“of“the›Œukćgernel,‘”that“where˜posted“on“the“\Linuxޤ ‘+Ikćgernel–€deŔvŮ elopment“list".‘˜Please“see“reference“[75Ž‘ ]“for“more“information.ŽŸ%żü‘+IÉA.1Ž‘NŞ JČ˝e –™™Garzik“26“May“2001“22:27:09ŽŸY˜‘+IÖDate:–Sat,“26“May“2001“22:27:09“-0400ŽĄ‘[IFrom:–Jeff“Garzik“ŽĄ‘+IOrganization:MandrakeSoftŽĄ‘gITo:‘cesar.da.silva@cyberdude.comŽĄ‘gICc:linux-kernel@vger.kernel.orgŽĄ‘7ISubject:Re:–Please“help“me“fill“in“the“blankŽĄĄ‘+ICesar–Da“Silva“wrote:ŽĄ‘+I>–The“features“that“I'm“wondering“about“are:ŽĄ‘+I>–*“Dynamic“Processor“ResilienceŽĄĄ‘+Iis–this“fault“tolerance?‘ I“think“if“a“CPU“croaks,“you“are“dead.ŽĄĄ‘+IThere–are“patches“for“hot“swap“cpu“support,“but“I“haven't“seen“any“CPUŽĄ‘+Ifault–tolerance“patches“that“can“handle“a“dead“processorŽĄĄ‘+I>–*“Dynamic“Memory“ResilienceŽĄĄ‘+IRAM–fault“tolerance?‘ There“was“a“patch“a“long“time“ago“which“detectedŽĄ‘+Ibad–ram,“and“would“mark“those“memory“clusters“as“unuseable“at“boot.ŽĄ‘+IHowever–that“is“clearly“not“dynamic.ŽĄĄ‘+IIf–your“memory“croaks,“your“kernel“will“experience“random“corruptionsŽĄĄ‘+I>–*“Dynamic“Page“SizingŽĄĄ‘+InoŽĄĄ‘+I>–*“Live“UpgradeŽŽŸ’âŔ)šVŽŽŒ‹" ɍ ýCŸüfd‘GšLinux–€V‘ţă×ersus“AIX,“HP-UX,“TŚgru64“UNIX,“SolarisŽŽŽ’t˘mby–€C‘Žžó3Žesar“da“SilvŔaŽŽŽŽ‘GŸ‰ff¨–ŽŽŽŽ Ÿ ý„¤ ‘+IÖLOBOS–will“let“one“Linux“kernel“boot“another,but“that“requires“a“bootŽĄ‘+Istep,–so“it“is“not“a“live“upgrade.‘ so,“no,“afaikŽĄĄ‘+I>–*“Alternative“I/O“PathingŽĄĄ‘+Ibe–less“vagueŽĄĄ‘+I>–*“HSMŽĄĄ‘+Ipatches–exist,“I“believeŽĄĄ‘+I>–*“TCP“selective“acknowledgement“(SACK)ŽĄĄ‘+IyesŽĄĄ‘+I>–*“Service“Location“Protocol“(SLP)ŽĄĄ‘+Idon't‘knowŽĄĄ‘+I>–*“ATM“IP“switchingŽĄĄ‘+Iyes,–I“believeŽĄĄ‘+I>–*“SOCKS“5“supportŽĄĄ‘+Iyes,–via“userspace“apps/libsŽĄĄ‘+I>–*“Multilink“PPPŽĄĄ‘+IyesŽĄĄ‘+I>–*“TCP/IP“Gratuitous“ARP“(RFC“2002)ŽĄĄ‘+Inot‘sureŽĄĄ‘+I>–*“Path“MTU“Discovery“(RFC“1191)ŽĄĄ‘+IyesŽĄĄ‘+I>–*“Path“MTU“Discovery“over“UDPŽĄĄ‘+Inot–sure,“but“I“think“soŽĄĄ‘+I>–*“IP“Multipath“RoutingŽĄĄ‘+IyesŽĄĄ‘+I>–The“questions“I“have“about“the“features“above“are:ŽĄ‘+I>–*“Are“any“of“the“above“features“implemented“in“theŽĄ‘+I>–kernel?“If“yes,“where“can“I“read“(url-link‘ to“theŽĄ‘+I>–article,“paper...“please)“about“it?ŽŽŸ’áíšVIŽŽŽŽŽŽŽŒ‹'ô ɍ ýCŸüfd‘GšLinux–€V‘ţă×ersus“AIX,“HP-UX,“TŚgru64“UNIX,“SolarisŽŽŽ’t˘mby–€C‘Žžó3Žesar“da“SilvŔaŽŽŽŽ‘GŸ‰ff¨–ŽŽŽŽ Ÿ ý„‘+IÉA.2Ž‘NŞ JČ˝onathan–™™Morton“27“May“2001ŽŠY˜‘7IÖDatum:Sun,–27“May“2001“03:50:28“+0100ޤ ‘IITo:jgarzik@mandrakesoft.com,‘cesar.da.silva@cyberdude.comŽĄ‘=IFrom:Jonathan–Morton“ŽĄ‘+ISubject:Re:–Please“help“me“fill“in“the“blanks.ŽĄ‘IICc:linux-kernel@vger.kernel.orgŽĄĄ‘+I>>–*“Live“UpgradeŽĄ‘+I>ŽĄ‘+I>LOBOS–will“let“one“Linux“kernel“boot“another,“but“that“requires“a“bootŽĄ‘+I>step,–so“it“is“not“a“live“upgrade.‘ so,“no,“afaikŽĄĄ‘+IIf–you“build“nearly“everything“(except,“obviously“what“you“need“to“boot)“asŽĄ‘+Imodules,–you“can“unload“modules,“build“new“versions,“and“reload“them.‘ So,ŽĄ‘+Iyou–could“say“that“partial“support“for“"live“upgrades"“is“included.ŽĄĄ‘+IIt–works,“too“-“I“unloaded“my“OV511“driver“a“few“weeks“ago,“copied“theŽĄ‘+Isource–for“the“new“one“in,“built“it,“and“re-inserted“it.‘ Same“goes“for“theŽĄ‘+IDRM–module“a“couple“of“weeks“before“that.‘ Now,“the“machine“in“questionŽĄ‘+Igets–rebooted“fairly“often“in“any“case,“but“those“were“things“I“*didn't*ŽĄ‘+Ihave–to“reboot“for.ŽĄĄ‘+I--------------------------------------------------------------ŽĄ‘+Ifrom:‘Jonathan–"Chromatix"“MortonŽĄ‘+Imail:‘chromi@cyberspace.org‘ (not–for“attachments)ŽĄ‘+Ibig-mail:‘chromatix@penguinpowered.comŽĄ‘+Iuni-mail:‘j.d.morton@lancaster.ac.ukŽĄĄ‘+IThe–key“to“knowledge“is“not“to“rely“on“people“to“teach“you“it.ŽĄĄ‘+IGet–VNC“Server“for“Macintosh“from“http://www.chromatix.uklinux.net/vnc/ŽĄĄ‘+I-----BEGIN–GEEK“CODE“BLOCK-----ŽĄ‘+IVersion‘3.12ŽĄ‘+IGCS$/E/S–dpu(!)“s:-“a20“C+++“UL++“P“L+++“E“W+“N-“o?“K?“w---“O--“M++$“V?“PSŽĄ‘+IPE-–Y+“PGP++“t-“5-“X-“R“!tv“b++“DI+++“D“G“e+“h+“r++“y+(*)ŽĄ‘+I-----END–GEEK“CODE“BLOCK-----ŽŸ%żü‘+IÉA.3Ž‘NŞ JČ˝e –™™Garzik“26“May“2001“22:55:04ŽŚ‘[IÖDate:–Sat,“26“May“2001“22:55:04“-0400ŽĄ‘[IFrom:–Jeff“Garzik“ŽĄ‘+IOrganization:‘MandrakeSoftŽĄ‘gITo:‘chromi@cyberspace.orgŽĄ‘gICc:–cesar.da.silva@cyberdude.com,“linux-kernel@vger.kernel.orgŽĄ‘[IŸţ˜LŽ‘[IAmne:–Re:“Please“help“me“fill“in“the“blanks.ŽĄĄ‘+IJonathan–Morton“wrote:ŽĄ‘+I>ŽĄ‘+I>–>>“*“Live“UpgradeŽĄ‘+I>‘>ŽŽŸ’ßkąšVIIŽŽŽŽŽŽŽŒ‹,ć ɍ ýCŸüfd‘GšLinux–€V‘ţă×ersus“AIX,“HP-UX,“TŚgru64“UNIX,“SolarisŽŽŽ’t˘mby–€C‘Žžó3Žesar“da“SilvŔaŽŽŽŽ‘GŸ‰ff¨–ŽŽŽŽ Ÿ ý„‘+IÖ>–>LOBOS“will“let“one“Linux“kernel“boot“another,“but“that“requires“aޤ ‘+IbootŽĄ‘+I>–>step,“so“it“is“not“a“live“upgrade.‘ so,“no,“afaikŽĄ‘+I>ŽĄ‘+I>–If“you“build“nearly“everything“(except,“obviously“what“you“need“toŽĄ‘+Iboot)‘asŽĄ‘+I>–modules,“you“can“unload“modules,“build“new“versions,“and“reload“them.ŽĄ‘+ISo,ŽĄ‘+I>–you“could“say“that“partial“support“for“"live“upgrades"“is“included.ŽĄĄ‘+II–stand“corrected,“though“I“clearly“know“better:ŽĄ‘+IModules–are“unloaded/reloaded“all“the“time“during“my“driver“developmentŽĄ‘+I:)ŽĄĄ‘+I--ŽĄ‘+IJeff–Garzik‘$|“Disbelief,“that's“why“you“fail.ŽĄ‘+IBuilding‘1024‘|ŽĄ‘+IMandrakeSoft‘|ŽŸ%żü‘+IÉA.4Ž‘NŞ Dan–™™Hollis“26“May“2001ŽŸY˜‘+IÖDate:–Sat,“26“May“2001“21:25:28“-0700“(PDT)ŽĄ‘=IFrom:–Dan“Hollis“ŽĄ‘CITo:‘thunderlight1@yahoo.comŽĄ‘7ISubject:–Re:“Please“help“me“fill“in“the“blanks.ŽĄĄ‘+IOn–Sun,“27“May“2001,“Cesar“Da“Silva“wrote:ŽĄ‘+I>–*“Live“UpgradeŽĄĄ‘+IimplementedŽĄĄ‘+I>–*“TCP“selective“acknowledgement“(SACK)ŽĄĄ‘+IimplementedŽĄĄ‘+I>–*“SOCKS“5“supportŽĄĄ‘+IimplementedŽĄĄ‘+I>–*“Multilink“PPPŽĄĄ‘+IimplementedŽĄĄ‘+I>–*“Path“MTU“Discovery“(RFC“1191)ŽĄĄ‘+IimplementedŽĄĄ‘+I>–*“IP“Multipath“RoutingŽĄĄ‘+IimplementedŽŽŸ’ÝÁušVIIIŽŽŽŽŽŽŽŒ‹ 6“ ɍ ýCŸüfd‘GšLinux–€V‘ţă×ersus“AIX,“HP-UX,“TŚgru64“UNIX,“SolarisŽŽŽ’t˘mby–€C‘Žžó3Žesar“da“SilvŔaŽŽŽŽ‘GŸ‰ff¨–ŽŽŽŽ Ÿ ý„‘+IÉA.5Ž‘NŞ JČ˝ames–™™Sutherland“27“May“2001ŽŸY˜‘=IÖDate:–Sun,“27“May“2001“09:17:15“+0100“(BST)ޤ ‘=IFrom:–James“Sutherland“ŽĄ‘IITo:‘jgarzik@mandrakesoft.comŽĄ‘IICc:–cesar.da.silva@cyberdude.com,“linux-kernel@vger.kernel.orgŽĄ‘+ISubject:–Re:“Please“help“me“fill“in“the“blanks.ŽĄĄ‘+IOn–Sat,“26“May“2001,“Jeff“Garzik“wrote:ŽĄĄ‘+I>–Cesar“Da“Silva“wrote:ŽĄ‘+I>–>“The“features“that“I'm“wondering“about“are:ŽĄ‘+I>–>“*“Dynamic“Processor“ResilienceŽĄ‘+I>ŽĄ‘+I>–is“this“fault“tolerance?‘ I“think“if“a“CPU“croaks,“you“are“dead.ŽĄ‘+I>ŽĄ‘+I>–There“are“patches“for“hot“swap“cpu“support,“but“I“haven't“seen“anyŽĄ‘+ICPUŽĄ‘+I>–fault“tolerance“patches“that“can“handle“a“dead“processorŽĄĄ‘+IThe–S/390“has“this;“presumably“it“applies“to“Linux“as“well“as“the“otherŽĄ‘+Isupported‘OSs?ŽĄĄ‘+I>–>“*“Dynamic“Memory“ResilienceŽĄ‘+I>ŽĄ‘+I>–RAM“fault“tolerance?‘ There“was“a“patch“a“long“time“ago“whichŽĄ‘+IdetectedŽĄ‘+I>–bad“ram,“and“would“mark“those“memory“clusters“as“unuseable“at“boot.ŽĄ‘+I>–However“that“is“clearly“not“dynamic.ŽĄ‘+I>ŽĄ‘+I>–If“your“memory“croaks,“your“kernel“will“experience“random“corruptionsŽĄĄ‘+IECC–can“be“supported“by“the“hardware;“no“support“for“mapping“out“duffŽĄ‘+Ibanks–on“x86,“but“again“S/390“may“differ?ŽĄĄ‘+I>–>“*“Live“UpgradeŽĄ‘+I>ŽĄ‘+I>–LOBOS“will“let“one“Linux“kernel“boot“another,“but“that“requires“aŽĄ‘+IbootŽĄ‘+I>–step,“so“it“is“not“a“live“upgrade.‘ so,“no,“afaikŽĄĄ‘+ILive–SOFTWARE“upgrade,“or“live“HARDWARE“upgrade?“If“the“latter,“thingsŽĄ‘+Ilike–hotswap“PCI,“USB...“and“again“the“S/390?ŽĄĄ‘+I>–>“*“Service“Location“Protocol“(SLP)ŽĄ‘+I>ŽĄ‘+I>–don't“knowŽĄĄ‘+IYes,–I“think“so“-“mars_nwe“surely“needs“this?ŽĄĄ‘+I>–>“*“TCP/IP“Gratuitous“ARP“(RFC“2002)ŽĄ‘+I>ŽĄ‘+I>–not“sureŽŽŸ’áíšIXŽŽŽŽŽŽŽŒ‹ <¨ ɍ ýCŸüfd‘GšLinux–€V‘ţă×ersus“AIX,“HP-UX,“TŚgru64“UNIX,“SolarisŽŽŽ’t˘mby–€C‘Žžó3Žesar“da“SilvŔaŽŽŽŽ‘GŸ‰ff¨–ŽŽŽŽ Ÿ ý„¤ ‘+IÖIsn't–that“how“LVS“clusters“handle“IP“takeovers?ŽĄĄ‘+I>–>“*“Path“MTU“Discovery“(RFC“1191)ŽĄ‘+I>ŽĄ‘+I>‘yesŽĄĄ‘+IWith–one“or“two“RFC“violations,“yes.ŽĄĄ‘+IBasically,–most“of“those“features“relating“to“hardware“resilienceŽĄ‘+IshouldŽĄ‘+Ibe–usable“with“Linux“on“an“S/390“-“they“are“hardware“features,“though,ŽĄ‘+IAFAICS?ŽĄĄĄ‘+IJames.ŽŠ%żü‘+IÉA.6Ž‘NŞ Ingo–™™Oeser“27“May“2001ŽŸY˜‘=IÖDate:–Sun,“27“May“2001“10:27:07“+0200ŽĄ‘=IFrom:–Ingo“Oeser“ŽĄ‘IITo:‘jgarzik@mandrakesoft.comŽĄ‘IICc:–cesar.da.silva@cyberdude.com,“linux-kernel@vger.kernel.orgŽĄ‘+ISubject:–Re:“Please“help“me“fill“in“the“blanks.ŽĄĄ‘+IOn–Sat,“May“26,“2001“at“10:27:09PM“-0400,“Jeff“Garzik“wrote:ŽĄ‘+I>–>“*“Service“Location“Protocol“(SLP)ŽĄĄ‘+Iwww.openslp.orgŽĄĄ‘+IRegardsŽĄĄ‘+IIngo‘OeserŽĄ‘+I--ŽĄ‘+ITo–the“systems“programmer,ŽĄ‘+Iusers–and“applications“serve“only“to“provide“a“test“load.ŽŚ‘+IÉA.7Ž‘NŞ Dominik–™™KČ˝ubla“27“May“2001ŽŸY˜‘=IÖDate:–Sun,“27“May“2001“10:57:10“+0200ŽĄ‘=IFrom:–Dominik“Kubla“ŽĄ‘IITo:‘jgarzik@mandrakesoft.comŽĄ‘IICc:–cesar.da.silva@cyberdude.com,“linux-kernel@vger.kernel.orgŽĄ‘+ISubject:–Re:“Please“help“me“fill“in“the“blanks.ŽĄĄ‘+IOn–Sat,“May“26,“2001“at“10:27:09PM“-0400,“Jeff“Garzik“wrote:ŽĄ‘+I>ŽĄ‘+I>–>“*“Service“Location“Protocol“(SLP)ŽĄ‘+I>ŽĄ‘+I>–don't“knowŽĄŽŸ’âŔ)šXŽŽŽŽŽŽŽŒ‹ Dó ɍ ýCŸüfd‘GšLinux–€V‘ţă×ersus“AIX,“HP-UX,“TŚgru64“UNIX,“SolarisŽŽŽ’t˘mby–€C‘Žžó3Žesar“da“SilvŔaŽŽŽŽ‘GŸ‰ff¨–ŽŽŽŽ Ÿ ý„‘+IÖUserspace:‘http://www.openslp.org/ޤ Ą‘+I>–>“*“TCP/IP“Gratuitous“ARP“(RFC“2002)ŽĄ‘+I>ŽĄ‘+I>–not“sureŽĄĄ‘+IUserspace.–Also“no“tool“comes“to“my“mind,“arping“should“be“easilyŽĄ‘+ImodifiedŽĄ‘+Ito–do“this.ŽĄĄ‘+IDominikŽĄ‘+I--ŽĄ‘gIA–lovely“thing“to“see:‘rKobayashi“IssaŽĄ‘IIthrough–the“paper“window's“holes‘Z(1763-1828)ŽĄ’‹Ithe–galaxy.‘Z[taken“from:“David“Brin“-“Sundiver]ŽŸ%żü‘+IÉA.8Ž‘NŞ V‘˙wšille›™™Her•Ű$v“a˜27˜May˜2001ŽŸY˜‘+IÖDate:–Sun,“27“May“2001“20:21:19“+0300ŽĄ‘=IFrom:–Ville“Herva“ŽĄ‘CITo:‘jgarzik@mandrakesoft.comŽĄ‘CICc:–cesar.da.silva@cyberdude.com,“linux-kernel@vger.kernel.orgŽĄ‘7ISubject:–Re:“Please“help“me“fill“in“the“blanks.ŽĄĄ‘+I>–>“*“Dynamic“Memory“ResilienceŽĄ‘+I>ŽĄ‘+I>–RAM“fault“tolerance?‘ There“was“a“patch“a“long“time“ago“whichŽĄ‘+IdetectedŽĄ‘+I>–bad“ram,“and“would“mark“those“memory“clusters“as“unuseable“at“boot.ŽĄ‘+I>–However“that“is“clearly“not“dynamic.ŽĄĄ‘+IIf–you“are“referring“to“Badram“patch“by“Rick“van“ReinŽĄ‘+I(http://rick.vanrein.org/linux/badram/),–it“doesn't“detect“the“bad“ram,ŽĄ‘+Imemtest86–does“that“part“(and“does“it“well)“--“you“enter“then“enter“theŽĄ‘+Ibadram–clusters“as“boot“param.“But“I“have“to“say“badram“patch“worksŽĄ‘+Imarvellously–(thanks,“Rick.)“Shame“it“didn't“find“its“way“to“standardŽĄ‘+Ikernel.ŽŽŸ’áíšXIŽŽŽŽŽŽŽŒřKžƒ’Ŕ;č̙œş§[ -ó+0ˆŰ pcrr7tó*Kjŕ ptmri7tó)ťló phvr7tó(3{Ů ptmr7tó'3{Ů ptmr7tó&3{Ů ptmr7tó%Óߌ˜˝q ptmb7tó#ťló phvr7tó"Óߌ˜ ptmb7tó!Óߌ˜ ptmb7tó Óߌ˜áH ptmb7tóÓߌ˜ff ptmb7tóÓߌ˜ ptmb7tó3{Ů ptmr7tóKjŕ ptmri7tó3{Ůff ptmr7tó3{Ů ptmr7tó3{ŮGŽ ptmr7tó3{Ů ptmr7tó !",š cmsy10ůRßßßßßlatex2rtf-2.3.18/test/frac.tex0000777000175000017500000000230713050672360016343 0ustar wilfriedwilfried\documentclass{article} \begin{document} This is an equation environment in which to test fractions. Not great translation but at least some. This uses \verb#\frac# $$ \frac{1}{2} = \frac{\alpha+\beta}{\gamma+\delta} $$ This is an equation environment in which to test fractions. Not great translation but at least some. This uses \verb#\over# $$ {1 \over 2} = {\alpha+\beta \over \gamma+\delta} $$ Now I will test the square root. First a simple square root $$ z = \sqrt{x+y} $$ now something a bit harder $$ z = \sqrt{x^2+y^2} $$ and what the heck, lets put a square root together with a fraction $$ z = \frac{1}{\sqrt{x+y}} $$ Fractions of the form \[ \frac{\mbox{\textit{numerator}}}{\mbox{\textit{denominator}}} \] are obtained in \LaTeX\ using the construction (This was once a bug.) Now for some integrals. How about a somewhat complicated one to start $$ \int_{0}^{\infty} \frac{a}{\sqrt{x^2+c}}\,dx $$ and $$ \int_0^\infty \frac{a}{\sqrt{x^2+c}}\,dx $$ and now using \verb#\limits# $$ \int \limits_0^\infty \frac{a}{\sqrt{x^2+c}}\,dx $$ A summation example $$ \sum_{n=0}^\infty \frac{a_n}{\sqrt{x_n^2+c_n}}\,dx $$ A product example $$ \sum_{n=0}^\infty \frac{a_n}{\sqrt{x_n^2+c_n}}\,dx $$ \end{document} latex2rtf-2.3.18/test/defs.rtf0000644000175000017500000001361013664476467016361 0ustar wilfriedwilfried{\rtf1\ansi\uc1\deff0\deflang1024 {\fonttbl{\f0\fnil\fcharset0 Times New Roman;} {\f1\fnil\fcharset0 Arial;} {\f2\fnil\fcharset0 Arial;} {\f3\fnil\fcharset0 Courier New;} {\f4\fnil\fcharset0 Zapf Chancery;} {\f5\fnil\fcharset0 STIXGeneral;} {\f6\fnil\fcharset0 MS Gothic;} } {\colortbl; \red0\green0\blue0; \red0\green0\blue255; \red0\green255\blue255; \red0\green255\blue0; \red255\green0\blue255; \red255\green0\blue0; \red255\green255\blue0; \red255\green255\blue255; } {\stylesheet {\s0\qj\widctlpar\f0\fs20 \snext0 Normal;} {\cs10 \additive\ssemihidden Default Paragraph Font;} {\s1\qc\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 Part;} {\s2\ql\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 heading 1;} {\s3\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 2;} {\s4\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 3;} {\s5\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 4;} {\s6\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 5;} {\s7\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 6;} {\s8\qr\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext8 rightpar;} {\s9\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext9 centerpar;} {\s10\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext10 leftpar;} {\s11\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equation;} {\s12\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationNum;} {\s13\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlign;} {\s14\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlignNum;} {\s15\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArray;} {\s16\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArrayNum;} {\s17\ql\sb120\sa120\keep\widctlpar\f0\fs20 \sbasedon0\snext0 theorem;} {\s18\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 bitmapCenter;} {\s20\qc\sb240\sa240\b\f0\fs36 \sbasedon0\snext21 Title;} {\s21\qc\sa120\f0\fs20 \sbasedon0\snext0 author;} {\s22\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext22 footer;} {\s23\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext23 header;} {\s30\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 caption;} {\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext0 Figure;} {\s32\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext32 Table;} {\s33\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext33 Tabular;} {\s34\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext34 Tabbing;} {\s35\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext35 Quote;} {\s38\ql\widctlpar\f3\fs20 \snext38 verbatim;} {\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext46 List;} {\s47\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext47 List 1;} {\s50\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 latex picture;} {\s51\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 subfigure;} {\s61\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext62 bibheading;} {\s62\ql\fi-567\li567\sb0\sa0\f0\fs20 \sbasedon0\snext62 bibitem;} {\s64\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext64 endnotes;} {\s65\ql\fi-113\li397\lin397\f0\fs20 \sbasedon0\snext65 footnote text;} {\s66\qj\fi-170\li454\lin454\f0\fs20 \sbasedon0\snext66 endnote text;} {\cs62\super \additive\sbasedon10 footnote reference;} {\cs63\super \additive\sbasedon10 endnote reference;} {\s67\ql\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext67 acronym;} {\s70\qc\sa120\b\f0\fs20 \sbasedon0\snext71 abstract title;} {\s71\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext0 abstract;} {\s80\ql\sb240\sa120\keepn\f0\b\fs20 \sbasedon0\snext0 contents_heading;} {\s81\ql\li425\tqr\tldot\tx8222\sb240\sa60\keepn\f0\fs20\b \sbasedon0\snext82 toc 1;} {\s82\ql\li512\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext83 toc 2;} {\s83\ql\li1024\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext84 toc 3;} {\s84\ql\li1536\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext85 toc 4;} {\s85\ql\li2048\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 5;} {\s86\ql\li2560\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 6;} } {\info {\title Original file was defs.tex} {\doccomm Created using latex2rtf 2.3.18 r1266 (released May 29, 2020) on Sat May 30 17:35:19 2020 } } {\footer\pard\plain\f0\fs20\qc\chpgn\par} \paperw12280\paperh15900\margl2680\margr2700\margt2540\margb1760\pgnstart0\widowctrl\qj\ftnbj\f0\aftnnar {\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi0 Here is the first macro:\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 A penalty has been added because your check to us was not honored by your bank.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Yet another macro \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ ({\i x}\\s\\do5({\fs16 1})\\,\u8230?\\,{\i x}\\s\\do5({\fs16 {\i n}}))}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 This should be blank between the parentheses ()\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 And yet another macro \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 {\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 {\fs16 Words within a sentence ended by spaces. One space between words is equivalent to any number. We are only interested in separating one word from the next, not in formatting the space between them. }}\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi300 text {\par {\pard\plain\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20\sl240\slmult1 \sb240 \fi0 some example \par }}\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb240 \fi300 Command with optional parameters\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Optional parameter 1 = p1 \endash parameter 2 = p2.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi0 Optional parameter 1 = default \endash parameter 2 = p2.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi0 \par }} }}}latex2rtf-2.3.18/test/enc_decmulti.tex0000777000175000017500000001110413050672360020056 0ustar wilfriedwilfried\documentclass[10pt]{article} \usepackage[T1]{fontenc} \usepackage[decmulti]{inputenc} \usepackage{times} \usepackage{textcomp} \begin{document} \begin{tabular}{ccrl} 80& &128&\\ 81& &129&\\ 82& &130&\\ 83& &131&\\ 84& &132&\\ 85& &133&\\ 86& &134&\\ 87& &135&\\ 88& &136&\\ 89& &137&\\ 8A& &138&\\ 8B& &139&\\ 8C& &140&\\ 8D& &141&\\ 8E& &142&\\ 8F& &143&\\ 90& &144&\\ 91& &145&\\ 92& &146&\\ 93& &147&\\ 94& &148&\\ 95& &149&\\ 96& &150&\\ 97& &151&\\ 98& &152&\\ 99& &153&\\ 9A& &154&\\ 9B& &155&\\ 9C& &156&\\ 9D& &157&\\ 9E& &158&\\ 9F& &159&\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} A0& &65535&unknown\\ A1&Ą&161&INVERTED EXCLAMATION MARK\\ A2&˘&162&CENT SIGN\\ A3&Ł&163&POUND SIGN\\ A4& &65535&unknown\\ A5&Ľ&165&YEN SIGN\\ A6& &65535&unknown\\ A7&§&167&SECTION SIGN\\ A8&¨&164&CURRENCY SIGN\\ A9&$Š$&169©RIGHT SIGN\\ AA&Ş&170&FEMININE ORDINAL INDICATOR\\ AB&Ť&171&LEFT-POINTING DOUBLE ANGLE QUOTATION MARK\\ AC& &65535&unknown\\ AD& &65535&unknown\\ AE& &65535&unknown\\ AF& &65535&unknown\\ B0&°&176&DEGREE SIGN\\ B1&$ą$&177&PLUS-MINUS SIGN\\ B2&$˛$&178&SUPERSCRIPT TWO\\ B3&$ł$&179&SUPERSCRIPT THREE\\ B4& &65535&unknown\\ B5&$ľ$&181&MICRO SIGN\\ B6&ś&182&PILCROW SIGN\\ B7&ˇ&183&MIDDLE DOT\\ B8& &65535&unknown\\ B9&$š$&185&SUPERSCRIPT ONE\\ BA&ş&186&MASCULINE ORDINAL INDICATOR\\ BB&ť&187&RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK\\ BC&ź&188&VULGAR FRACTION ONE QUARTER\\ BD&˝&189&VULGAR FRACTION ONE HALF\\ BE& &65535&unknown\\ BF&ż&191&INVERTED QUESTION MARK\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} C0&Ŕ&192&LATIN CAPITAL LETTER A WITH GRAVE\\ C1&Á&193&LATIN CAPITAL LETTER A WITH ACUTE\\ C2&Â&194&LATIN CAPITAL LETTER A WITH CIRCUMFLEX\\ C3&Ă&195&LATIN CAPITAL LETTER A WITH TILDE\\ C4&Ä&196&LATIN CAPITAL LETTER A WITH DIAERESIS\\ C5&Ĺ&197&LATIN CAPITAL LETTER A WITH RING ABOVE\\ C6&Ć&198&LATIN CAPITAL LETTER AE\\ C7&Ç&199&LATIN CAPITAL LETTER C WITH CEDILLA\\ C8&Č&200&LATIN CAPITAL LETTER E WITH GRAVE\\ C9&É&201&LATIN CAPITAL LETTER E WITH ACUTE\\ CA&Ę&202&LATIN CAPITAL LETTER E WITH CIRCUMFLEX\\ CB&Ë&203&LATIN CAPITAL LETTER E WITH DIAERESIS\\ CC&Ě&204&LATIN CAPITAL LETTER I WITH GRAVE\\ CD&Í&205&LATIN CAPITAL LETTER I WITH ACUTE\\ CE&Î&206&LATIN CAPITAL LETTER I WITH CIRCUMFLEX\\ CF&Ď&207&LATIN CAPITAL LETTER I WITH DIAERESIS\\ D0& &65535&unknown\\ D1&Ń&209&LATIN CAPITAL LETTER N WITH TILDE\\ D2&Ň&210&LATIN CAPITAL LETTER O WITH GRAVE\\ D3&Ó&211&LATIN CAPITAL LETTER O WITH ACUTE\\ D4&Ô&212&LATIN CAPITAL LETTER O WITH CIRCUMFLEX\\ D5&Ő&213&LATIN CAPITAL LETTER O WITH TILDE\\ D6&Ö&214&LATIN CAPITAL LETTER O WITH DIAERESIS\\ D7&×&338&LATIN CAPITAL LIGATURE OE\\ D8&Ř&216&LATIN CAPITAL LETTER O WITH STROKE\\ D9&Ů&217&LATIN CAPITAL LETTER U WITH GRAVE\\ DA&Ú&218&LATIN CAPITAL LETTER U WITH ACUTE\\ DB&Ű&219&LATIN CAPITAL LETTER U WITH CIRCUMFLEX\\ DC&Ü&220&LATIN CAPITAL LETTER U WITH DIAERESIS\\ DD&Ý&376&LATIN CAPITAL LETTER Y WITH DIAERESIS\\ DE& &65535&unknown\\ DF&ß&223&LATIN SMALL LETTER SHARP S\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} E0&ŕ&224&LATIN SMALL LETTER A WITH GRAVE\\ E1&á&225&LATIN SMALL LETTER A WITH ACUTE\\ E2&â&226&LATIN SMALL LETTER A WITH CIRCUMFLEX\\ E3&ă&227&LATIN SMALL LETTER A WITH TILDE\\ E4&ä&228&LATIN SMALL LETTER A WITH DIAERESIS\\ E5&ĺ&229&LATIN SMALL LETTER A WITH RING ABOVE\\ E6&ć&230&LATIN SMALL LETTER AE\\ E7&ç&231&LATIN SMALL LETTER C WITH CEDILLA\\ E8&č&232&LATIN SMALL LETTER E WITH GRAVE\\ E9&é&233&LATIN SMALL LETTER E WITH ACUTE\\ EA&ę&234&LATIN SMALL LETTER E WITH CIRCUMFLEX\\ EB&ë&235&LATIN SMALL LETTER E WITH DIAERESIS\\ EC&ě&236&LATIN SMALL LETTER I WITH GRAVE\\ ED&í&237&LATIN SMALL LETTER I WITH ACUTE\\ EE&î&238&LATIN SMALL LETTER I WITH CIRCUMFLEX\\ EF&ď&239&LATIN SMALL LETTER I WITH DIAERESIS\\ F0& &65535&unknown\\ F1&ń&241&LATIN SMALL LETTER N WITH TILDE\\ F2&ň&242&LATIN SMALL LETTER O WITH GRAVE\\ F3&ó&243&LATIN SMALL LETTER O WITH ACUTE\\ F4&ô&244&LATIN SMALL LETTER O WITH CIRCUMFLEX\\ F5&ő&245&LATIN SMALL LETTER O WITH TILDE\\ F6&ö&246&LATIN SMALL LETTER O WITH DIAERESIS\\ F7&÷&339&LATIN SMALL LIGATURE OE\\ F8&ř&248&LATIN SMALL LETTER O WITH STROKE\\ F9&ů&249&LATIN SMALL LETTER U WITH GRAVE\\ FA&ú&250&LATIN SMALL LETTER U WITH ACUTE\\ FB&ű&251&LATIN SMALL LETTER U WITH CIRCUMFLEX\\ FC&ü&252&LATIN SMALL LETTER U WITH DIAERESIS\\ FD&ý&255&LATIN SMALL LETTER Y WITH DIAERESIS\\ FE& &65535&unknown\\ FF& &65535&unknown\\ \end{tabular} \end{document} latex2rtf-2.3.18/test/bib_apa.tex0000777000175000017500000001107613050672360017010 0ustar wilfriedwilfried%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % Athanassios Protopapas, October 2005 % % Mini-example for using apa.cls % % % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \documentclass[man]{apa} \title{Example of an APA-style manuscript} \author{Athanassios Protopapas} \affiliation{Institute for Language \& Speech Processing\\ Athens, Greece} \abstract{This is an example of a minimal ``manuscript'' using the \LaTeX\ apa.cls document class to typeset manuscripts according to the Americal Psychological Association (APA) manual, fifth edition.} \acknowledgements{Written at the request of the Prac\TeX\ journal editors. Comments may be sent to the author at protopap@ilsp.gr.} \shorttitle{APA style manuscript} \rightheader{APA style manuscript} \leftheader{A.\ Protopapas} \begin{document} \maketitle Here goes the text of the article. Note that the content begins immediately after \texttt{maketitle} and there is no blank line between the title command and the article text. This first section of the article is typically the introduction and, according to APA style, should not bear a section heading.\footnote{That is, there is no ``Introduction'' section.} Subsequent sections, however, are titled according to the psychological conventions. \section{Experiment 1} Manuscripts in APA style often contain descriptions of experiments. The APA manual specifications for referring to experiments are to use a lowercase ``e'' when speaking generally, as in the previous phrase, but an uppercase ``E'' when mentioning a particular experiment (as in the following phrase), such as Experiment~1. \subsection{Method} The ``method'' is a subsection of the experimental presentation in which all the details of setting up and conducting the experiment are described. There a number of more or less standard components to a method, shown below. \subsubsection{Participants} Psychological experiments are conducted with participants, usually humans. Note that these used to be called ``subjects'' but apparently APA now finds it inappropriate to refer to people with this term. Here we mention how many participants there were, their ages and other information about them. \subsubsection{Apparatus} Sometimes it is necessary to give the apparatus a special section. \subsubsection{Stimuli} What the subjects saw, heard, or felt. \subsubsection{Procedure} What happened to the poor subjects. \subsection{Results} In this subsection, one shows numbers and statistical analyses. Students are especially unlikely to read this section, but seasoned researchers often avoid it in the first reading, especially if the article is not of particular interest for their own research. \subsection{Discussion} If the results of the experiment mean anything, this is the place to talk about it. \section{Experiment 2} Usually one experiment is not enough to convince anyone; you need additional control experiments to make your point. \subsection{Method} The method can be the same as for the previous experiment, since here we are simply interested in showing the structure of the manuscript. \subsection{Results \& Discussion} This is a good point to show an example of a table following APA conventions. Note that we don't use any vertical separators and that columns can be grouped with partial horizontal lines. Also keep in mind that the caption must precede the table. The label is entirely optional, but useful for referring to the table in the text, for example this one would be Table~\ref{tab:tab1}. \begin{table}[tbp] \caption{Some numbers that could be experimental data.} \label{tab:tab1} \begin{tabular}{lcc}\hline & \multicolumn{2}{c}{Factor 2} \\ \cline{2-3} Factor 1 & Condition A & Condition B \\ \hline First & 586 (231) & 649 (255) \\ & 2.2 & 7.5 \\ Second & 590 (195) & 623 (231) \\ & 2.8 & 2.5 \\ \hline \end{tabular} \end{table} \section{General Discussion} In psychological articles there is usually some point to the whole experimental exercise, and in the end we get to discuss how important it all is. Although literature is supposed to have been covered in the introduction, for this example we can illustrate the use of bibliographic citations in this final section \cite{art1}. The accompanying package ``apacite'' by Erik Meijer provides everything an APA-style writer needs for citations, such as in-text citations in which one can claim that \citeA{boo1} mentioned or failed to mention something. \bibliography{bib_apa} \end{document} latex2rtf-2.3.18/test/fig_10x15.png0000777000175000017500000006547013050672357017037 0ustar wilfriedwilfried‰PNG  IHDRÜčKlŤ˛iTXtXML:com.adobe.xmphF~ pHYs''”iQ!tEXtSoftwareGraphicConverter (Intel)w‡új›IDATxœěŘ1€0°Š¨…bô5˙L7PPn ‘‘1ŕ/ćœç­ľŢ”ŠŞ€óş[Ę|MĘH€) e¤ @€”2R ŕI™ ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěÝĄš˛@ĆqŻhďÁ+đ̛­V›ŃF3™L$Ň’ĹBĄ,„)Ęçî>Ď÷ Ëʏâpœó˙… ä sćUPŔB€1Őľ5ĆTUuţkŹľu=öOeŕ9š0ĹÉ\íd‘&űý>žp~áŁjFyπťŮ˛s †V†JΔy˛‹ﳡI‡Íńzz‚g˘úľĂš1y|}>_ȃ?r5ÔÖ6ĐF(o쌳ń×ŰĆôÚÉéÁŽôś÷q´5k<]¨šęň°œÝ˜eĆ&ŞĐ;œíqÓ}ŕ‡Ŕ\ ˝ľ ´ĘŔť˝ŐƒŽ`Ů^;9;Ęŕ58kŚx浔PĆ+B™Đé­m PŢźĆӗ$5aPÇšŕ›2¸• Nşšş'Ł÷(ţȊSyv*x샞y-%”ńŠP&tzkh#”7M‘&űřO’dˇžťZŮůz—$Űn§ůeß+Ş ƒ:ƒ,$"ÇşޕĄ¤1Ž32™,r"˜A…ʨ΄2ĄÓ[Ű@Ą ^C“;Ÿ!eőp˙GTu†XH4‡íją\Ž.-Ť´d٧ • óáů.{ßB\(Łw8ʄNomm„2x Îkŕ‰YTu†XHÉĘDL0C .”Ń‹P€˙C™˙˙읭śŤ:…Ďń</€Fcą8$‡BĄ˘PƒÁ 0DčIťťŰÂ&! iičúĆ5wŒ} ?3‹•™4šüŚ đą€)|`ĘŔq!š2a ă[2`Ę0eřŔ”ÔLŕSŽ éűbÂ÷E:`Ę0eřŔ”ÔLŕSŽ |_Ţ˜2‡Lž0e5SřŔ”€ăߗ÷ŚĚaS€oL@ Ŕ”žĘDŇOPœ÷~_Ćqč ĂwÝc"#–B>đ¨mĘ|÷0€0e5řPSfěë"‹Ď6 ]{F7LÓqý8ɛî éŰĐÖeŠ"ßsmË2ŚiٸaœU׍š Œ}Wć)ndÇ~TíR;Ëv˝ Nóú•-ÜwMžĆžçŕwëO}üďß­›q)‚(ÎĘú$#ŮČ ‰żŤĚQ¤>öMU (ŔŐ¸kÚŰXZXYŽw u§ÂÄcTTÂH:SŚ”TŇžŤ3ápeĚ5uS֕ëGYă•œ7˛2ty‚ f›÷~˛ě m^řB ąTŃ|€ uBŸ)3te–ŕ|Áœk78^€Ň˘}ąú?w~ęČî€)¨Á§™2cWŞ˝ř˝]řëV˜'ů„ą­˛Ŕľ‹Ą›N”–{ĎS䚺nLŃ ýIN†*‹SgŤ› ź“—ßŕzy&cË>ľpœ–ě=ÔČĐ&mAŠ­f°4ÚĽěEěťŢ×őón^˛ WqŢ×G뺛Ș/ő…ý§łŻ/Đě¨âyŠR_ŚoŠŔąř„Ľnˆjn}s(áÁP9úbŸI…[J)Ł„ąźIóűžK¸|Ił]ϟw“—ľĚ=>v9 ,ś`yÇtüŹę„ëW#W›+˙ż[ĎZ{ěß^îż~űŒ×ÄҏĘ„†óo Ar`4eNM8&k…đÇ:Ť$×çMð ţćPČŞšč î2ëň`󂅱1ĆĹ8~R >viÚ>+(o¸Ś  ŸdƜŸ3âßĐĂŹ•UĐśˆyżý÷b¸aʞíËŚ[xşĽźÉ#ÖÜj‚ć!ą™Ţœ^‡ŽĐ˟Šá¨aXí ˘Ş™XއßaxůüĎŤˆŹd#Üž¤Ű&éńnĘ:”•úú:tłr6,ń;%<ýŁbS™1ř'äŠ)Ą/ ű‹ÇôiĂóÓ=ž ™^.Ô4ĺr(7ň§ŔŃWˆ"' xQ,ý¤|@h8ϟńć$‡uSfhB[h´i*Ĺ}É'Ţ: ëxŮĺüĹr›Hjż–ŻŰä%CŰgUĺ wŔ”ÔŕSL™žrˇ%ÚvźŐ58­`ţ1A{ĺşB ?_<ĹÎŚÚ~.Z6áôz'*čŤ<U3ą|b%1ľZ)§ŒÜÖzśu` dkÍŞXŔԖú„Žˆś×äZ›9ŕń(áÎPl´$ᛐŤ¨„Í-šţië+O’…ćD9ď’t,ÖďaXԉGŠLSć­ąt—|@h8?ąG’ݔékšńǂd› ۆaO_śŇœ”ˇ ˘=fPr7 [ľ}VYŢpL@ ö7e†Ëbœ”)ť—‰ŻĚŒm&Ń6Đ]ôö¸SM™ĄŢ˜ăţ`ÇSŻÖ“óIŸ {)%ÇÚߔĄů&˙l´íLdÇGwłŐ­žÔT1qǐFÖ˛¤î1eTU‹M™ĄI$ďi˛&YýB2e~vĘT}1˙ú§ęš2;ä›&Ž;… 9:7¨†ĄŠ¤ÔGł"ąĹĄ?Őe˛\d„,ßT‚)Ł-ßźXNOřüŻ?ýŢXJŽŇëňą‰ëž!H¤ôX1‚8/ŤćÚŚ.˛$p™ŽÇbő >d%Ý]×Չf­Mťe™6eŽ o¸s7eţ˙˙읭žę<Ćš˘ŢWĐ@Wcą8dŽ …Z…ÂTa055 ŔTTě {vť…í3™LÓ6͛˙ď˜#ś´é$<™ç?/ĘxŹĹBQ&ˆVé nűď—,&ŰśK~%śkŹŘ'…IJEŞŢŻůfĽp!Ö–Öš—ćn:ŔfŤ4GŠ˝ĺ%Ű)ü …źA62Ö{NyšÇÍěÉňÄ3f(l™'Íśo¤íßčG'ň &<Ştý`—LýčobşH şĘkNw°$}F™§{ϏmÉň\Ő>mŚęuę”%üP€äMţě.Érœ53>^TUŢŞN1œ­iƒ(ółŒ#í)Œž˝ż“$YŻăĹ|n°aĂSvš–6<[çţ€d:˝™A#R&ˆśœş\ޏ;Őş2‰2ľ}X4 oŠTÁ%y‰‚hŔČ÷[Z#eÜ0o§Â‹2žq`™(nœľşř vę fTč‰üló ł$™˘I*ŠÄ\7wĹę“r&sĘ99ŐÄýL›OŞ!ˇż¨˜çÝ@;oîŘŞ÷DxŚ\–Đ7|ipËćÖÜ-w˘ˆwËÔ?1ş‹;Ű˙AąÇ˝=Čp0--d”ŞR ›\aUŽYBu;Íó‚=ťéÝé,N5Ěęv$÷•ę­)ˆ”i œÇiv.ú-ŮéZúö|˝ř’é<ôdŚ(Ĺ{ćW–Ž^7K-ąŹš†ŸdŹë„L¤ˇW‡ŢVGá§Ę óöx*ź(ă‰2łXgŤNôôĽF^ KUŽ˜ˇÇSáEĎ8°E”™Žtw¨EsC"FçfÂń•ŐD ‚]äű`UĽ›4;˜îœ$?ň ůŽű 9P7˜%-‡e>/PFŃŞ}ř†9PÎŽkŚ^ „Üš—‹Ą\ Ę0e­ĺĂX-Џf ż´e¨4Ă@űĂô}Cřóô˜ů9šaˆ2‘@Ů6E˘LŻţ€ţt~ 2ƒJ” 4Nq~(ĎT4ĄŐÚ6 Wh ¤;NjEš´GX“Ţ óöx*ź(ă–ˆ2úüxˆĄŢ¨—9ünJUƒO*ؕźÓ ĹK"fńšşr„Q3EqˇŞí˘ ő^t3˜ŕůU×Ó9S/‘ÎĽQҢU*é˝QFŃ dmYţŽYB6˘L‰Ç6P‡bRŹ˘ŃË J” ‡ üďA”é×ОÎ,Af EEĺxLNäĎĐQ„uÓ°âsyžč5â†n§˝É{îR(Ş—äŠy{<^”ńŒ+Dý/ŕW\™ŇBdüꆓźpKagFđN;Č–•-PUQĺƒœäé^ź ‘ő˘ elË˝†[R^ŕ $a´î™:îŃË)uÔŔĄš(dBËč[”9Ňťô€uúęž%Ôh!ĘŕűťV7E$‹‘ 2-Ęh-]Đš(Óˇ? =-X‚Ě@Š2’°ˆoýw6WłoÖ8ăÚpĎü¨4#2aŠ™jmɧĘóöx*ź(ă6ˆ2ki%zäźN—)ůwTľÔvgťř´‡×ą¨Œ0J ŠďŹyˆY͔§măŘ/Ę<|řftě –§™Ćřç4ubɒCŢňĂnˇcˇ'şő*Ę  ł˜qZB š(C4‰ĹkźÂ0˘Qg”e¨ÉŢ]‹2˝űú˘ĚđKˆiЍâJąÍ­Ů,œ†uűńÍ÷Ź,¨ÖQÓxˆř6‘(ăŠy{<^”ńŒ Dů üÓžëu/ˆ8`rC;¨Îc5‰Ś{7’…ţˇjoPÜÎçóĽÎó˙ň“‘ŃŚ/=(qq~kĚ+jňIyĎ.š:Uz`őŇj´?QFŮn)a6ŸvŃjˆE hd…Ďœ' ŽÖAˆ26´,éX”éÝПÎ,AfŔ9ŕ/DO如t6NĂ7ˆšý“ŻŰd í>s9ëH>UΘˇÇSáEĎ8^”iqš kű‘%Ž(é×ČŢoëĺ(0UpDyQÓőzŤ ˇâD™‡SÝľ%o—UžŃI]H”ütÓÔaÂDéšóú˜=‰2÷Œ*ůX;٧ŮnZB턢 Îł`5gQ‚S'ćđÝaQFihnE™ŢýŁ…~ż_S÷KŕŤfŐ§ 퇬œ†ŸŐtSÂ_¨McśĐď?FcŢO…e<ă`pQ&\Ë?ş2ď–m3Ó.Vcíś].aˇăĎE řß8í`ńźQˆ2DJć&䈒O"ęĎ5uľsÎׇSw÷Џ(ŁxĚéJŁľŞŁ–P!eˆN1mj‹Ö€­X‚|}P”1°U6@§ki˙ţ€h:ž™˜˛ť"‡8Gůű:윆 ˝ „ýŒ űT9bŢO…e<ă`pQŚÍ݈œ°;ÚŢśqkŔ ŠÔć€#Üćw‡eŠâ~˝œóě¸˙Hć!ĺD”!rě9iíTh0ŚZăşjęDkđWŚłU˛=d§[a6Ŕ QŚÜ-H˙?Lt~ÉYKřA(ĘÜ`›ąÎľ‚RPH”aŽu]3řZjúĆ$73ôd4bą‰\ ë˝^ŹÓ°˘ö `ÖW´`#‰ć†y{<^”ńŒƒ˙(Sd038Ú^Ž××:(şœ/× ÚŸˆL2Ž0ľoW]´cQćW|Ů}$ëxš˜ĎŠÖaÔXDœ¤ŽQœ6ŕOÉnΚú3Ü]×5ÂhšŢ¤ÇüzolŮš(Łň‰çzőś„o„˘ ¨Gn*€č ŒqĂ95H”avđíšÁ×RÓ7&ş™— 3€kŃ$ą.MňžŐhç4(şšż1t(éDsÂź=ž /ĘxĆÁŕ˘LßqŠtŮéřœđ´M…9Ó˘Ly=gťÍz9ÂŠžřŇrT-ŘHŔÉ|Gż!”{2ÉjAΚú×ĂĺH¨b„óeü‘fםljt+ʐ#'’í´%|!eŔůšÁŰ>€Näřސ(#nKd–N×Ň!â:…ÓyĐ%Č `Ä@×j]`%—÷ëŰ9 !¸{÷űK^(žěÝ#˙T9`ŢOE%Ęü˙˙읭şŞ@†÷q\7`&SŠ6ŁÍv’Éd"YH ĹB°X ŔŮꖭ[žf03Ź÷9ńl†5ߏŸŰ?em[”QZţ‰=ezf$QfđŽĽČە0Šß^Ő@”)×ţĺ #˜Î`;Ůoo­Š˙pi¨Ý wlöqÖmëŘŁ(S\BńŽ_ĆńÍvKeräŕC’Săç7PöŮî˘ĚP zčs.eľ’ÎăMA4č!Ęh: \B´&ż"ôcĽĽĘtóf˜ e3˜š(Ł$˙Ť1UQڈCéŞd˝Şƒ(#¸a[â“6tw×â_ľ×ÔÉâ-•ˆżÜœŇ–~×˝‰2yƒÓ¸\4Đ,AN”ŠvSáHĚ<,Ę Ű0Ľá<ŇD _ŠH ­­(Łé0…¤'ÎŚ[ˆiO¨.UF›7ĂT°(ØÁÔDÁűöÍE™,^ô8a’(#Ş˘ż‰–őJŽż;Kžr˙ ›‘ôzܑŠ~37o{e2t8y í ?K e×>ejŸĄÓjĽ>œ‡Ÿ‚h@=’$BQeƆBŠ] ţŕÎ6ŃA€ YŞL5o†Š`Q†1ƒŠ‰2ůi۟׆˜Š‰2éńE¸’ë-ÖQ’]ĂˆQ˘Œ  …wŞ=p¨–öß\‰ŸŘkęľ\ăýF\¨Ť=ŤHœQľQŚŘ/„Ÿkś’>(MŔd×ŔÉ* q¸3ą(Sg/fŠ2Ďßn ˘ôŘ|čđ%-‡Ą€K¸hń ƒ†k“! \ŞĚ3o†Š`Q†1ƒŠ‰2WX|ąwœĽ0-Ť*şôđƒ<Ĺ†Ä¸îĚóŤő&ŒŽçô7ľÄ,QŚ,N(ŻLmŽŘl×č4aŻŠ ß:MöŰľ?WuĐڜvA/Ę4UZgj`–@žD—R÷˛tł(S‡Ń˘ĚóqCLA4Œ•SćĐÎSfÜaɢ–ŸÖ]FT헅~Š2ČźŚ‚EĆ Ś&ĘÄogŠRmX1iÖŤÓŚ.=|ç˛huĄâxÁrł Ç89_˛k.,eĘ2N°˙üĎČ{˘Í/Úkęí(ň[ŠŻí:đ䶏NÓH}Š;˘Úąœ8Łs°}אÂ"Č Ĺ˘Ě° ë-ETS ýŠ2)ĘĄ6>|IbŽ TT=ë‘ÇlŸ…ľ7o†Š`Q†1ƒŠ‰2‚B$k•ËčńŃŚ‡›ŻýżfţjŸ;uˇ5˘ LÜűĺ˙`‚n5íü˘­5őîů%éź}œ˙‹ÁăHwşé^[´Œ”<Řo Ä՗ŁŽP=űoóbO™ĎގJ”y…x ˘‰2$aC­?‡ŚĂ°–Ć˝Íި ąíRSóf˜ e3˜œ(s=˘ECޞ‰6hÓĂ%JƒrÇńŁ‹Ě&ĹQFŕF´z˙Tˆ:iťUľÖÔŐ(ňsý[6ϸłďt;Ý"×VĽŮśÚo r˘Lƒ[owQăś&×0ä Ĺ,Ę Ű°ĄŽS ¨ÇH^üŒęF{Ű?;=‡a —P"ĽŠt‚v ˇíR#óf˜ e3˜œ(“Ç(ŠÇŮI ŃĽ‡ą'Č7žtcň؆DżĐÔyۃaPťŤiĚb­ŠQÜ2z˘#ęj˛Ě Ą'źăďh.YíˇbQćË]Ń,~×’Ă–čŢ̰ ăŕú@~ ˘^uŹ ´ŕ¨ř9çč9 ?HĽKx;J2žm—ă›7ĂT°(ØÁäDźJ}^ŕ….=|Â!×*yűÎťúk7E|áć˙FYكôŒ Á†›:-Š GŔŞŢbi,zÔ?p—tˇˆÖ[‚¤(s=˘ĺŻšşY2XmMtaQf؆zp˝!1Ń{lžQž C觢ç0üTŽîýuLa=˘‚VÝśË͛a*X”aĚ`z˘ ÎĂ˙z$–§8Ea űž“7hŇĂřň_íÖ+ţÇFŠ2řQëř§9ŮĄ~éď:ÔŮ´ĎԋôT÷“QŞň:ERď“ه,úö?™vłjŸ%ź#)Ęú,ö—Ű{Pëˇ&Ô ,Ę Ű°nĂY)ˆźýóöنâźOvĂϞŇrž˝Ž°šdp_”ŻŔ™÷ŮŁŁČߝ—*›Ě›a*X”aĚ`‚˘ ž6Ąđ2Í"°úx=§š×¤‡‰‚ˇ˙’)>V3QŚź€3šťxŃ,@îĂnguűL=âÂ*VŇ0:J~Ş–Ÿ6čťÜqś ńŢ>KxGV”)ĎPS?D8ť–°¤=‹2Ă6ŹŰpÖc ˘A´ý;(ô+q–uӍŽĂđa5ÉŮoŞŕDl=Â*Dt^Şl2o†Š`Q†1ƒ Š2ßG¸r*{í½HŰĺ_Mznüm"݌â ďŠ epîU˙ÖMůąÖŒżcĘ@ëL9ş+^¨f‡úœĘn˘L<߼‡ě‡ÖYÂ;Ң ĘÜtűă˝ÚˆŒęŤIcQf؆uÎzLA4śŻZCw Š<#t†Â8S÷íł  ű<ˇLçĽĘ&óf˜ŠJ”ů˙˙읫–Ł@†óDźOŔ  Łcą8$‡BĄP( ƒÁ`11D "‚ ™ ›™IU_IčNgݞI SŐ×eţgDĂfůDQfáţšVvŘG€3Œ_pH˛‘ƒ—żw ”6rť=EE™k ÜTÜ]Î@í{SÝLú-ą9ĐÇĹb"–pD[율šÝ,á'ܢ 8ăl'zŠ ÷ń!ՆQćľĆ(ĘlÂÉezŔő…|¤•ŽfƒáýďѢ¤żÓëđ%“ş8`e42oƒaÁˆ25řHQ;<9݅7ŘĺęáôFV,_˛CÎÝ&Ôâ÷~{˘˘ }§É=óÎ@ęFyúüŘĐăˆ_t3upކ+Ňż: •ÝčwLŃYŤöĐÍ~Ŕ/Ę`Ľ;;çMZBVŰžPYQFܗ* ĘlĂɁ  X\‹áYo;‘$6÷Îŕ™/öÓRŹŠôą"Śż:Κ°żŞ42oƒaÁˆ25řLQfšNź9ňšxOŘľáş×Z?#+ŒČó´*4jevęŹ\éƒ 0ôٝrŚifę`w!ţ`Œźm e›Ój`ł}ÇňW>4ÔĚeŚ6w‘œ3°ŕě!šź$UE žTQf.HQf~˝˛ĽŒ)lúxšĐÖĂ+*Ż€żEL`şĐ pźŞô1oƒaÁˆ25řTQ溝€2lg"Ć{?ćđćäEďŕ­Ź0ZŮAÉô휪ߡ‰–/˝+Sf² ţÂoEš™:^ÇŤJó6Œ(cPƒeŚŠG;ĺ˛1íP„Č˟V5f++|é°É2‡„*Ýc8Öáýyžą<ŞRçž*/ŁüĄĺ‹2HăßŐ˘ëeęHĎڝWLaŢšŔŔ>–…ŮĆ.E˖v‡Ź†ţ$‰3˜gŽ—%üGL”AzáFGĘÔýË)†`ÍçóG˛VľqQfM_ކ(ł$Qf^żCÔ$ťO úʌ骝ĄÇplĐK!—ăY6ď Qg˘‹y F”1¨Á‹2ÄÁ´;Ëőóş×÷ĺ|Ş2(ÓsůˆľKśłÂ=R%1ăŐńši]ĆĄ)SĎĹ˙ţ^K¨Ą1–sł˘jÚśmšş*ŤöiŘ!_”š†?!•ô´ó¸Ťęočeꄢ}×OťždôăPçř!ŐvŒ–@Čf—OgÝhf ߈Š2Óԑj í )ŽčkŽ+S$¸äEŰWkă˘ĚšžTQćý.H”˘ĚýŚź¨jO<Ăe86iˆI ˇ?Śńś‘ÇpDf \‰hćCcĹS3 Tý$ΠEó6Œ(cPƒOeŚůdo~aš{/Œ“,ϲ,Ďł4 ý˝Cł™śRړq6´Â}I.;˛ŽÁ{œeU•%˒>żG? ßŰ;NľĆ |ýş¸§+×eŚ.ĽŮ°ťľ°idęřQŢ÷ŮŽ%EUwÇSß3}ěÚ2OƒŮĐšÔŹAĄńçk¤V–pG\”!ËU÷ŰsöA”äEYߨĘ"ĂƒKą2NDyÄŹ´(óg˝˜|Š2˘Ěť]žŹ˜u#MÂvÜÍ˝ëНŸ¨Nnlá1ÄË<)“s't¤Ôˆ×źA‹ćm0,QĆ .Ę\Šđî›/}ëlj…‘9”|Xi×ă§7÷ë‚űţâéÄ?pžŢÝ*˘ UôCâčbę3ŇORÂ$FKŔ{%ŹŃ u˛„D™iV“ńM” űŇ­‹2+úŇm˝­đŤ ’°bŽçI|Ű9EÉŢ#o~ hüĐ{Ś!DĹóAŠwXťěąĂ´h`ŢÂe j`D™+u"żź (^œÂżąJyaÝÚ˝rň´"dÓŘĆÔ_řBQWńU˛4Z˜ú終FË#ĽU+/ĘLZYÂ$K”™ćCň56„{Ś.ÎŰeVóĽ*‰2ouArVĚmĆ3^żCOÂőňzßcx†ÇGÎřq~0Š˜$žÜŸ!´(oŢÂe j`D™/Ž2ƒ'ăéQ/ČćVxě2îz¤‡/ňţ›áš"~ :!›:缢Ě4ŕŐ^ÄĄŒ¨oę }ź—łsx¸Ą€˘Ň_QfŇʤ‰2Ó\tČ´*ËcÝvm_”Y͗Ş%ĘLďsAr€2eŞy˝Ş2G ;đ oy *UsĺwŕSœćä Á Emó6Œ(cPƒ—‰2@ËŻŻ×żě‹g˜ÍůŸK_yÂ*‚íĹoč¨0łĹž.ŠČy›ŸTżÖ˛Ăc&‚(3ßUzrľ­}RЎ€nL5݊í Ő6őGĆ2’vœç†9ÝłÂh ăśzĘ<˘‹%ż—(3ÓמŒßĚ 2× ‚(ł’/}ËŰJĐążĹÉeć˙ϑ×8Žßˆ[ëkĂË)G}ĄĂ”ďöřÁ9ZÄdyůj˛ŒxТ°y F”1¨ÁšóĽćUBIĄŽČɘDí&źŸzi‹˜mřĎ7–ăĎ'MꆕVčşÇ°ÂC˛JŘARöŔ6ŻFĎff4Xaě˘)ĐNwĄÄćX8G c_ťXËŚÔ5őß mA7?fž#úˆ›ŃĆfÍęü'DlĎź–p~>KWh<˙˛\qauäüňpq+W:°#ߗž%ŕŘ_î‚ä0>˙~´M雜íÖě}RJLţxÝcˆ÷ń2ÚLÂ+€bD7'r‚EÍŰ`X0˘ŒÁ .—SSF>ŐkČvöAœ5ŔŒgĂ—á˜'ĄkŁą•eü¨¨É‡îçS“„žëŘÖ7śăě˝ ÉŠŇr~]ĎšoŞ"‰ŁŔ÷=˙F„QœfEÝh °†čcę}W§Q@°ąßçúQZw[ގ>– •ËŠ­âŔŁ3+Ë=řiQ÷ä@Œ/ýĆ.čԖ‘‡–˛ŘŽ&ŤÝˆy ߏĆćmОE”ů˙˙ěÝ!oƒ@€áß?Y‡CBĄPƒÁT`0'03šŐ7YöuôyÂŕrpÜKű!ĘŔ˙´=pÎÓĐ7uR*)UuÓöĂ8/ý§ÝÖQŢ!OŔ DŁąX\$‡BĄP( ƒÁ`5čm×˝˝+m!a‘a8“ţŸkL§É>݁„RđO“§q'_ź?uă‹ÚŚžĐô{,f5Q[ŞÄŘ×É÷żčăÚŹk ‹§ąÎź*ż˙œ7ź(ÂQĘžüĂ˔c1ČYĚËšěőŻf-Q[ŞĆPúÓÇĽ0č¸ŔjŇâif=Ÿe@8J`C“DQ|%Š’FËż^—ţľĚ’Đ?ťŽmŸNö'Çőü Lóňľ3ö_@č3„Öäœi•{”23‹yń*e$mŠC˜\žĹ~ĄübŇâif=VŔ‹ Ľ  ^—š?3qăw‡*‹kć-›oާs˜6ýeËőŔh˘iSď:˘śT J9ś>rOW=żJ'ËNň&’O3ë9RĘŇQĘʍŠ;QŽl–Đc3SÁ–V-Ł0~Ő H›z׾ĽjPʈą}č\Ęu)łç Ě$-ž(eSQĘŞľ­+ĄÇŽôž”í §˜ÁW˘iSď:˘śT J)4„N›¤Éjœ30“´x˘”LE)(ÖÓ~Š<Ą‡:^vˇŇvÄDŒ+˘iSď:˘śT J!4„ÎÜąV…sf’O”2€Š(eľ4%ôĽQ×ČüeGd6>‰j¤M˝ëˆÚR5(edĐńibçn†<‚sf’O”2€Š(e•şüŹcčě‹-nďˇüBŮ a6Q ÂĚÜ8aÔW/‹ÚR5(e$Đ:Upş“áœ™¤ĹĽ `*J@Ąź1ˇŞ:;ÉÍýË=Qœ¤išÄ‘ď9Ç—ÖřE§h‘0š¨a,BĎq]ď+×ńňvÔżšľDmŠ”2űÓ:C¸m'Ă9CI‹'JŔT”2€"C=őőę‡Î:šüHÇŤđuüâuňwmy§Ű݌]ńŠżxĆaoO¸Ľ”2;Ó:ooýÜ媕ąO@JŔT”2ŔĂ.myw/CQ3÷ůÍŮ؊Ťű—ş´Excľ7S°N˜í „˝=á–RĘěFgčźÍ}ś•sœY(eSQĘë\úöľĚ’łłôŞn%óq~žŃÉÓŗËUxcŠQĂŐ2żÜ6{{Â-Ľ”ŃkŸĐůĐeSÁĂe•€4”2€Šţ—2˙˙읡’Ź:†÷‰xž€@ŁąX‡CĄPQ( ƒÁ` ‰@Ü 3ť{wvŇ!„açöW§ęTm“ !Iw~:Ýëe€ö][WEF’0đŰÚQůH<ńňű’é`ŞnĚ%(W˘7T^Í)Š2:š†ŃšÁ~ŃxĚCË˘ ‚üUP”AŚňř…úăţ1'›ŒáeŇ2ĘÜŔ5N1.ýÎ*Żć ‡E\ĂčÜéˆ÷ܸéăEWš(Ę Č_E€ň*\œĺ÷p k_íĹ6e—tÇzŤJ§˙ tĆx]źĄ‚đjŢpHQ”ŃČ%ŒÎ'ĚzŘVT)iüâ ŃAţ(Ę Č_Eŕţ1' ŒîuŽi >—^#]íš2‰(zß0-Çőă4ŻťAżˇ<mE’Čw—îÜ1MÓ˛mד˘n%œžy}Žľ)ĎľżÚZ°Ç"’—ÝđZJRA˜§ś*–×äږiüdĎÓěĺOÄfŚc[WŮň&˘p%XŁ8ɊŞÔ* o8¤r˘ ę"‹o} ‡5ź>’ˇNűŞŻąë\ /Ś„Ő•÷•ŢĐč —€NC[—YšÄŃjš>íSĽË^Ůt{ňiehßÖůíBĽë|OČe6:îb“â´¨šč‚ › (ƒ \Ŕ?.(Œ!žß÷‰9sĄđűľIçą%!żŢë3Vä˝Dˇ)ńíĹÁ}důßüjdË4Hę`řqÎ÷ӗ“i€ƒţЖĺ&ů…¨‚0M*ö8ë™NœUŁüEť* ýŕ7ž–űĎDS§ž˝uAİ‚8{v~űşČňG˛ŹęřN牢T ‚˘Ěؕ‘'şƒś—˘ÓžśÄ2~/ŕŰ"6ě°8ţ€sÇn9ű¤=Ţ> /FfţąôíňÁŁŃ9Ůč ed2חa‘NŽ´I˜M­Cëe˛O4÷šýܚiÚ~öüo՛§Š/Häź{Ű óŚ˙őŸ5ˆ2sß‘ď. Óö’źFqAdAQAx˝<=4ĂCíć>Ôá¨~Őwł1 át7ŰAZ‰ůěŘ*{ěżťtgČ ľÇŠęC-ďbî‹}§Ň§Ţűőöxož“§ PÚŔ‰Ţ íň#GŹřě›[#35ţą4¤nÚîŒüššš˝ďsÁú:¨°űłľ/5¤jŕ‹2SKn›NTlšô4…÷ iź<í9ˇ^ntžaZ3ŤöwaĐč09ĂčĚ-'­ŒB™7ěžI䢺f…°žT)3Ocą>ixýŮ!ĘĚýNIý#Ě4"Čť€˘ ‚1ÓmćůŸĄ ÓtÄ?žŞPGł7:0\ێOţČ1VɎ˛Ż0Vą?Ě÷Çř˜ŤîçŸÁ ´%‡ŸËĚ÷_RŰ<2tŽJÎ0A!xŹSăőŇ.SpĘ]űL‹2/R5@˘LÔPÚ$*čĂpţ;á-×đ•šŰjů¨.؁—oŘoيß#PĚ F‡sÚ“oádÇťáHĹ݀R‘ĂşÓ­Ć5ťÇă˙ĹKpčŔwě wĘŽéÄů/ŒUŇő†ŘńM+fx⁧đ›4‚•×x˝S“Ş:zĹU˜{E™— Š íÎ 5sţŽófţÜŔ+őĐVťîGÚ](_‚&ŁóM—1ęaŸ#KéÎú|Ú ÂŤŒ6ŕ5¨O‰Âs ĘNĘęóÔĂşŞ,^ZÄĚ0Q†śDĺ~gK^GEQ‰˙ÖM 1ä:QĆj˩ڋésň}Bî”aoŚ€ð[ÝwXšĎ}‡MĹ؉€Ż|ÔëĽÝńĆŰěeT#4¤jŕlwŠážŠrřŢW¸?ń |wéX/ĺče˜Â#Úďo鍎ڍ|5ŰžcM˛ŠfIčł-К—1űsŘ<) *|ŕy‹2s§A‘šwĘ%˜aA8 (ƒ *Ńă÷P–_ĂˏąKđnÔIš~E>ëv˜duۏÓ´?MÓĐwUABŠđgmŚ;e<üőˆéxQBňb!'Iä9GÎنăq’’,#iú"ˇˇĽîE^A0í Jó˛jڅŚ^ŢMŠÔˆˇçŘ1Żw,EŰl?Œ’4Mâ$IbߓNn¨^”Ń8¤j€ś;°‹†ľ0Žu@CáL‡ EýCމHĂá­âyŞśKb1:Üél>Ůy¤„㥳ŮËĐ,Ę0Ť}ޒ[Śbˆç5\?.á‰}"htžy˝ŃŠÁ=Z,6ďăÁ ůŇӀńqGĚ/Oůˍ %łL‰RMB˘Ě°ľ [qÁŰP§ĄIśşôş˛žruP”A•čđ§ nsOIŕ'ŕÚŤN˘˝ž 'KĺÇęŋŢCn|.ż[Š“ ˇčřnÄĚš@ń ;̡\’1…CÎJĺ ¨ XI)R‰™3>›ž÷~Ż—“vÁtăVŔ?ěËDäí*eÎR5Š2Îöœ˙lL:~ÎÁíˆSťz× N<óv˜ zEŚu0źzŘĄ |ąVđ}ĺ 04:OźŇčP(‡Ë‡‘ d˝ţ#–V ťłŔýć‰ăÚÝ0Ój[ÁœÚL¨Ć–€(ÝŰşłŹ ÁźĎu÷T\şGˇä[”ů˙˙읭žę0Ĺy˘žCŸ€@Wcą¸J…BĄPłƒŔÔ V`÷²pw!g&“´pç˙[ÍśiÚLNfÎ\ţT”Q”@˘ˆ2‘-Q&žp€›ŸÎećt{› Nzc{o‹ř¸Ű"{Ü=÷ă•Í~›<úKäga12˝‘K›Ń [ż˛‘ˇwÔKÍŽźt)ý;ŹŘŔW@”I7¤2؈2c+éĆéśČ˝Ó^ˆj#ŇŕĂů× —ŰIBÜÂŽúσ^9oH˜ŃEÇD“‹lŒmóşYĘ\ą˛•A)rcšŃďĺésLŠjĹÚ^ş8ni9ű+Ęŕ8đr5ăľőŐ\¨Ťqs‰ť*ĘŤ ˘Œ˘H’X”™šěáđ?Ř (1ś(ó‰[}ŸcZwN¤š¸rńqwl˙Ěv3r;éhš‡g°iܗš‘ÉK×˝)aüÁ%–{F˝Ôěry˛ß–Ěd e’Š œ(“ÍŕNR“ŽĚ8š'ď+˜pí’ÇG):QE™¸^ÎYÍ4–Gx'Í-:K *Xtľˇ2”šba+ƒžń ń\žˆŻ÷WcuîJ¨wŒBlj2řŁçiC˜‚WCQţwT”QIҖ/ő62™ô°Ŕ>˛(C…S~Ý=p^zą5Œgs—tƒzO×/¸6V bu“l ™ƒľiâOŕq¨ˇœAžSÄěr{˛w¨(3X”I;¤2Đ;vďâÇí}÷` ‘{ďXÁ„3)lG“U”Š`Çb)rĺ.]t0Í-:p ł!#U| 8ÁKŐ耊zńý–§zŽëĹ<]Wŕăű‚eˆ<ŠŽC/íp…]˘\NEy-T”QIbÄÇDËjĄP Fy閳ęŃ˙Âżę5˛5d|ܟťE '˜ptfčzň…ěŰ ĘŘç?ĂP\ŽĎ\ őN–°Łqéّ‡ś eRŠ ¤(ŕkC9wâůż'NOœ¨]’ńđ’&Ş(óÁ9âŠ0MŚËč˘CýZs‹ě6Ŕřjýh˛˘,VčÜgö˛¨†KBňZžpwç9đƒu‰§)ĘT čŽ”Ž›T¤ÉĺT”×BEE‘äÍD™óBoBœl“1ŠKLăOĹÇî§U’Dw’ćäČřN;4“9ן¨ĎŽ|0§‰Ú‡Q&ůĘ@|îcîÍČø÷ˆ“ "ü˝M֐ލ˜˘ĚiĆwž’őúĂńtś\­Ö›ÍľkŻ]Çĺ+‰ęÂtŃĄhrсĂB?ă=|vćśFŒ­ řěĐK†Ďň´ŸĂş3Ż”Éœ,C‰2¸Y1 űćᄠíIQŢeE’we2W9ˆ4r˘÷-ĎçڜöĚD|ěqÎ-óˆ?p|,ăîĚ ;2ß@&ÍŢ#ęĹł+4„Ý—D™ôC*ţ܅šPÔű9,˘Sľ€ľ6اóXť`—˜˘Œąö/˛ŢpąŮŕKuÚoć›lĎd1'tŃ!itŃA~˝Ľ/›[JOwľĆřk¤äńiV¸—ĺ g\†ƒaašepVi¸k!l€ČŚ)Ę˙‡Š2Š"‰Š2ś EŘśů¸ŒFăߌFŁĹ‡ĂĄećc­;6śá i­( j@kCfššG˝xv…œ‡_YƒŚGţ˘LC*üÜ l°Ą8’ ą÷'~k,+1‰ÚĽ‰É ¤ De`=˕îlcű6í–dŤ™/ĘŘŐaşčĐ4şčŔW(+3?Đâ’ž5•Ájm@­;îË~­úÁE=° ‹2ä%˘›ŔB­4- ĺ•PQFQ$y7Q&Úy;Ńc%<.ąF4˘Ľ‚3÷çÔVQĆkdn?ŠŢŚ1„{Ô -ópAd÷ë-Ę41¤2 ˙N$łŘý¨[ŤĐ>Ó* áaˇř\7˘(C8_äCg‘ę¸%,/ ˛.: /:( ÚĘ en^ŕć$B/FfĂ\=‘óňtÚ˘žKŮ"źU4Ş`ŸÍ5Ş•é‘ňM*Ey%T”QIŢL”‰çLő:5ՎWá×Ě2ĹŻľU” ůďÉDTM c źBăôbh§(ăł!|7ľĄ"aúc‘ęÓsB„łŘÄeŕW:/÷žďŃ'a•Ý‘Hd#ĐE‡ĄáE6ë)cąŃ8ćŢô ”vČVfeţëüpëńsô;( ްDQčŁme’¸ă)Ę+Ą˘Œ˘Hňf˘LźĆş„›&mĹ'ŠĆLjV)ÎłAaڈoH>WQćţżé†)–ŕód2fmÂóSÁ„l˛šŻ‘€x˘Ěiżôűý˘čőşÝ<ϲëćŞbżr~}pk­N§7§Žč˘ĂĐ´(­yĚvNČPć{Ąz( Ŕ™[he\,ůó#@°B5§@dA+Q˘XĚŞĂa_…°Żeîň™˘(WT”QIT”ąŢT/ŒđĆ'>g8ďĂ{ 9ÝJ&Ę Ů%tôgžoQډ!•üwĄď|˜ß‡{žSk—’¸&{ľ%öęE…<,.Dlä‹CӢ̟#č𝏠2o˝5ÉŻ?őľ1#Ľ˜šJՀŮ-JŇůyюgŚČ„[ľ9áŠ2TWő¨Ä /ĺEQQFQ$‰#Ę@ޗeęĹlœ’l&o ÷ŰźS|Œî%hĘ5/ĘČĚgYQŚ‘!•Ą˘ĚiknźrfJU0˜ŘŢ;6iEĚY ‘ŻYŽĆEؖ¨űܔşŢ™a~ĺB‡)Sž$hÜfcFë,ĘġĚ˟GŚLdT”Q”T”QIbÄÇť)ĘÇÚüŕž\ßop§Ő¤‡Ň˛űäwŠ[Ľ ¨(ƒ´˘LţźƒňÁW”!öüÄ3ÂľKů˛Ęƍep+÷ˆ[5]t8šeÎю9yîĚeœBú)hEô\­V/ŚO†•Ó­˜(cj îƒ“(CHŘąQQFQ¸‹2˙˙읭’â@…y˘źO°/€FĹâăp(* …Aa0 "ƒˆŔ "Xţf’{:éîŰlgö|ľU[ľU:ż}űô˝ç^˙P”!ēń1ězŤŃJćö05˜Œ“C[P÷a0>DĽ Ř^Ř쾢^Š25żŽĐCäě#ʸ4QÚ˘˙ŇĺD…6Š2Xű˘ 'ˆ2čÁ¨BɆ2ł’_ hĂWą•‘?53=Qe´\Ž­DĂ×#4e)AQ†MBÄÇĆcjŹź@7Ÿ1×qJA&ů{ťœ0>FDĽ X‹2łť.śçAQĆřëJś ˘Ěy››ĎęŰ:˜GŰ űAE“ó¨ĆŮN:uD ĘŔ4ˇR6“üüTű˛ÉG+ŮĘ%(™5˛÷śžžńm5Č ËL™ ˙BCQ†eŃ$H|ŒÜď. †TĄ…âqĆܤ Úń7ao¨ˆÜjŒŁRl/,ČEWۊ¤(cţőŕž2 žKš•›fEœ€žłZ´R”Á/őĺŃ 3hN:uD!Ę ÖÔ/o˝ÜYé#­Š(ňŃ^me˛TRxpVÝ+jFż˙¤|ÉĐ'>4É[ß;BZEB4 c'6•Yü°”űP^"ŻÖ§& ĺý"ryŒQ)jž2:Qo!7ő (ŁrF?–` ˇ‘P"/´:ňZ Ö.IËźŘřu˘L ‡N:uÄ!Ęä+Y&xC&Ę|H{T źyś•)Ňž Év‡bî*ŃýŽ>Ľ@™2˘_ňţt“źb›9䑆ňn(ʢI˜řG“ŒčjXĂ=ĺpë:š <đVa|ŒˆJAˆĚčx0Q”ů>#Ł_ßSˑŚS1žŔľKŸJAůe˘LwÔp1l ':âeĐ0ž>°…TލŔwৌTŇ5~÷őŒ~u2G@¸hß}ilSŽ"BQ†MÂÄǰC*˘ś2Ú$ŽXëi‚–ÍŒP”ŠŒ}ڌĆzľŤ (S{_ŹČäÎ)rG[ ¸/yˆŕÚ%˙Żë;h§(cW_Ś'"eÎ§ŠŹĘ|Ý&YF€Zî\”\żmeN;ń{Ţ[7U$loA>FjąĘGťČähWÇ7ó9&„¨AQ†MĹÇ0ż“¤ž ˜N°ś’+Ş Ź°†§}–e݉˛—Re#˘RěE(4*D˝[Đۉ˘ĚĎ)i8§ŽFŔ–ľń˘f&ŁçOşĄďľq§•˘Lŕš\N:u'‰(ƒ:Ś?ę›ĘÜY‹ĺ<_ÚŽüú[ô\łžŔ4§ŁŁWňppŚ L Ł/! !šŠ Ds/Ż_´í™ĂUjřBůöů>näŠôDˆ0#˘RŹ/,~şú[ßŐ×QŢĹĽ(óŒBiЄĺÚŁ¤ąXŒWţO•ňFzöiŠŽ“NžM‡ƒá¨Ěp8^¨\<ďtJŤpŇŠ!Q%Ż7×k$îQ‰†2w€—íÝVFÎĘů˜íĐŃŞ‡ˇ˝Y r…ĘJk#ž°ťSӜDBˆeŃ$ŘŚe§qżőĚčî~̓9›<÷gäm19ń‡ń1"*ÁţÂâ§k˛ń+Đ>$E™ú[ż-_,Cwç‹C/@ágď;—Ő.˝fÓÄLˆI¤*¨]”¤űi€“Ž™hD¤ÉŢSđDCÓc*tŚťâ\ˆşmb#ŇY߃"ٛřć.PžĐÓŤTżYl—sk)CQ†MÂe’Ăšö@8őJ.AjčÔ}¸~‰ű=śJ#°Ć’Â,ĆLj¨ű [@łqO ꘤(ózkü,rašĽ(GřutC{“Öř)„˜t I%”pŢ ěăĂIÇHD˘Ěy5’NěĎ´8ďĽo;2”š#_Ľţ,+DCťŒý-Ŕ|ž˘gŤŃ 3BűojÔ°çKđÎő[áŘEČ;Ą(Cˆ&áD˜•ęá} G$7|  G]÷_w-2Á{PbŹĎř•‚ŕpaĹöw<*˜ Á4E™ňiů4†ƒ‹gűd$Ď%鵂 Ő.umɓ 3éű9ô–Çu"Mź†Nsσ›á¤c<“ˆDđ|Źśiő•­}lD‘7ĚV’&kŮâŔá'ăÎĎá…Ăbk˜p™!*”׹!˙-eŃ$ ç˘iAřÇi[ˇ­ŮwŇĄŘIv} {î4aăX§/FŒQ).vz÷\7H›űź°ÄűűŠ2ĆŽ'†—VePr~o˛;ç YzđR”ŢMIô žÝĎ &Ü}Ćă™i'ăŠD$ʀ€'é÷…Ôe Ÿś鴒Žôţív¤œŚ'ƒz"?6M8 {Ź+ŚÁ ů•âĚO3DB~%eŃ$h# \ÁÔI† ŰŁA׀÷Ľî›˘óŠý~Q.űů]ťťŒQ)NV[Ä-[_Ŕ÷Eož\Č1\ŰŢŕţâV ‚bÇB5•W ŸJ}]}†=|u Š2}"YÉpßSNpŔČ`˛Éy  2:C fšXďϕĘÄ0RœžuyŽF~[‰2ŰU–6Y ËҎ*ŠC k#dĂÇŮ3k…c: /ҊŻ41ť^@œc—ä_P”A*ʰC‘—]]F…6ĘSť•ým.ə.á̋oëŸh—Íΰœ;ÜCÜJAPíŘNůřŃ@đ\9śkÚ}u Š2[x‰řz2ŹiŹäw󀑞yăwNk˘ŁŒ#‚iEÔÜ|Áś;çÄĚ>@Łp3QćO&6zîj!7a†kđOä˝ŔT‡€‘Éĺm5Oâ×s—sď ¸Q%yçˇ@3–¤ťł=‚üVP”A,ĘŹŠ2Ř۔ eעë”a,ü“#}{8ó˙Šśź­ęrffš9;q q+A˝c 8âďýu’’ő˝O}ű"‚ĚăY(ʘnÔ ź]řÔ—5Xťę€°ĺšg$3J\ĎqF‡wŽ5ÂL°ôůܰi+~~^ȝmî&ʀe­žürf §8ő!`:ËŹjSŐó§W_ĄĹo8…A&˜‹mČCÖä°˘]ĺçäƒ˘ ‚čäpQFäÖ×tÓ˛Ÿ­ů<öU;<ë-{˘śűϊ&uˇqŞť†đÎĚĚî!nĽ ěčX¸ż1ěduCűa§q†Ž6EJ<[.čE6ś•M7ý=çÖIÖĘúüŸw?ĄP÷ÇšŠ#Ž@ä×2}’źíˇ?ˇq E9܇(e ڝ-n'Ęđd‹q…íůőţ°P!ۘúĚ ˇIN@*şýœV‘'şŽ‰Xn ”aűYŐţł†žÍؕiÄiqöľ‚ź(Ę ˆNNeÖT…b†Ř´wÁqŹÍćR:[°Š=ŸÚˇźçA†ż™^Šň€űcˆ[)ť:–› W(ĘŹPúĚMłl÷c[b,îŽ*ą0ŞqýĎdKn_ĎĄFgŚŠ¨“Ѳ>ťŢşąëiLy—Ň‚m^f~“öI]Ă1ł‰Ÿ‘<Ślś`˝ Ńy↢Ě2m™ŞŒ/•†“’Ď•Ť˝ő†!Ч{ÚŐb š­AĆ"TDŹî• AŽqKÂEŃÉi˘Ě~1 qœR ŸÜ Ě})Q%…)”!÷Ç0ˇRtuě˜G{ž/+}Ď˙ řŠĄ(óőFĺúۃ#< Sŕˆ+łĆóŠÜď6œct†&ăŚ$“Ăpď`wĐč|sGQ†íŢ"›——UxËpĄ‚Ylô AWHäç°‹‡—Öö‚ ihŽŃÇJľŽäň[AQAtrŚ(ł2Tţ>lŰOîUpî’}ą^\Ű˙ČÎó~Ş”zšŇЏÔ çˆ2Z{ć󡰂Ŕ|%;uUŔĎ;ú7śOžoô§ZM”šS—ę)ĘŹ˙=c fcůľö˜ćńŰŹ$t7N4:cAô\éŰAvľkćĐč|<ěZŁŔ(f˛2*ŁŸjý/mC0Ń\]÷4żLH”‘š/÷ť—š^ŒidDeD'S Śm#GÝĚm‘Č3ßL'(éMŻ/†ś]Ů]˛á†IË­źűÄÔŕPK< =M)RŽËŸQ˛WoĎ|05@Î]›°=etv상VqŔ°1,'J ú\É šănÂŽzŤ.ŐĂ´DŮŠěÂű:c–şţÓ!ĹQňăHfĺ1ży8gąË"Oőđh¸Šť;žŇĐč\mt ú˜ľ sv—ł EÝIŻyŠX6TĐ ÓęçŒÚÎmŻhć&mĽŮnX^Ţź¤ď!‚\Š2ň;˜ťŚˆ|‹ĂôÖbŸ7•c~˛VẌﲜŚĺř!)ężÎ"ÂÜwmUäi’B’Çż—?Y^Ô €O rLˆŽ<ˇÜuuň˜Ť“iy!ŠÚc7ń°~a¤WĽ›}Qćą)Ҁš8?­Ň)ë¸2Gك\ĎԗiäđjÓŮn•í)sjîęe{)¤Ž/ł#ˆÓ(㍠eä—1ő´-‹,!q†Qüţgů›äËŚ¸Ńmä<C×QÚ> ”vݰš_óe—Ś/śďZŻô𦡣uU 僪nÚnO:­ƒőŃ­5UćĄ_Ć´Ěłľ@nš˝—ÉÍň˘XƖvĂôŞŤ4äbŚąoëefĽ„řIŇź(Ú_4­ćą§MU.“üťIK›˛|YÉiwUŤ䗀˘ ‚ ‚ˆR)P”š=`ŚMń‹ ‚ ČďŕK”ů˙˙ěÝ!’â@€áœˆ;p.°Ĺ␸8Ô( ƒÂÄČAÄ`1łKíÔVm L€Ą7ű}HAEĺŻî÷D¸Ź Lč<’€ďRmÇďť­Âx Q€jÎťďűťÝŸŸ…9\h2‘+–œ–^^›đ\˘ }\Kt_= ěú‡w÷ü75-şşź–(@ߣL2ÚuŸéZ/;sç;e˘ϜLÖŽ.Ż%ĘĐ;Mč'ÉxľďöČĂfxäÜňž¨ŐéĚÉŇ"sŕŐDú縌uíŘPŽYđyN[Ä­)Ňó/Î$ ˘ =ôěz2Z”_é(íq7>+Y훧ý îVĺĄwg6Q€>:fƒpII’ńڏţMŢVĺ&^xĘ`š}Ă_᪜̌“ů:ËËCŐ´§äÖÔÇ" M:5™ĂŤ3Ŕ‡(@_mgÁ+GŸIe4Iß6ů{YŐuŰţ><Ó6żžćËývó6‡żč?™&‹:_\{Y™fš Q€žjC‹#ÍÍ$‰EsÖ`îć Q€ŢjöŤ‹—˜ş›­;nqâžeRK—€hˆ2ôYUź=źË,ś.żÄĺö(3˜DD” çÚŞXŒŻĚ—šŐpş=XˇŁĚ`˛rHˆĘŸ(ó˙˙ěÝ/rÂ@Ŕáq‡œ ˇ@ÇĆĆEâꢢP & ƒÁĆTDŹAԔ?3Ut:Ă đ}f°î7űö‰2ź˛ůĐ×˙I3ŮşéF=f™îůčˇlöلđ˘ o$M‡ÝG•ß?Ń´ĘËM;ý ťh_SWäŮ/ˇşĘÖE˝í†O9 X$Q€w”ćiÜwŰśŠŤŞ,ÎĘłŰQ՛ŚÝőĂ8͆]žËeŁyJóU:źŒ–N” Ęeˆ2D€˘ @Q €(@” Ęř‰2ß˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1 Ă ˙Ž÷UÂň€ ¤ Ŕ)2)2)2)2)2)2ĽĚ˙˙ěŘ1Ŕ0 1>ăťň'Ó!S´żH0$eţ#eR eR eR eR eR pĽĚĚ<|owOČź˙˙A°8@óšbIENDŽB`‚latex2rtf-2.3.18/test/babel_russian.tex0000777000175000017500000000544713050672360020251 0ustar wilfriedwilfried\documentclass{article} \usepackage[T2A]{fontenc} \usepackage[koi8-r]{inputenc} \usepackage[russian]{babel} \begin{document} \title{ëÉÎ-äÚÁ-äÚÁ} \author{íÉČÁÉĚ âÁĘËĎ×} \date{2002-05-02} \maketitle \tableofcontents \pagebreak \section{óÁĘÔ, ĐĎÓ×ŃÝĹÎÎŮĘ ×ĹĚÉËĎÍŐ ĆÉĚŘÍŐ...} \subsection{ţôď üôď ôáëďĺ?} ëŐ! üÔĎÔ ÓÁĘÔ ĐĎÓ×ŃÝŁÎ ĆÉĚŘÍŐ ``\textbf{ëÉÎ-äÚÁ-äÚÁ!}'', ×ŮŰĹÄŰĹÍŐ × Ó×ĹÔ × 1986 ÇĎÄŐ Îa ËÉÎocÔyÄÉÉ íĎÓĆÉĚŘÍ. á×ÔĎŇŮ ÓĂĹÎÁŇÉŃ - ňĹ×ÁÚ çÁÂŇÉÁÄÚĹ É çĹĎŇÇÉĘ äÁÎĹĚÉŃ. ňĹÖÉÓÓŁŇ-ĐĎÓÔÁÎĎ×ÝÉË - çĹĎŇÇÉĘ äÁÎĹĚÉŃ. ÷ ÇĚÁ×ÎŮČ ŇĎĚŃČ - óÔÁÎÉÓĚÁ× ěŔÂŰÉÎ, ĺ×ÇĹÎÉĘ ěĹĎÎĎ×, ŕŇÉĘ ńËĎ×ĚĹ×, ěĹ×ÁÎ çÁÂŇÉÁÄÚĹ. \textit{Art Pack} - ÜÔĎ ×ÓŃŢĹÓËĎÇĎ ŇĎÄÁ ÁŇČÉ×Ů, ĐĎÓ×ŃÝŁÎÎŮĹ ĆÉĚŘÍŐ. đĎËĚĎÎÎÉËÁÍ É ĆÁÎÁÔÁÍ ĐĎÓ×ŃÝÁĹÔÓŃ. ;-) \subsection{ţď úäĺóř ĺóôř?} ôĹÍŮ ÄĚŃ Windows95/98/NT É OS/2 Warp/Merlin - ÚÁÓÔÁ×ËÉ, Ú×ŐËĎ×ŮĹ ÓČĹÍŮ, ÁÎÉÍÁĂÉĎÎÎŮĹ ËŐŇÓĎŇŮ, ÉËĎÎËÉ; ÓËpÉÎŰĎÔŮ É ×ÉÄĹĎĆŇÁÇÍĹÎÔŮ; ÍŐÚŮËÁ É ĆŇÁÚŮ ÉÚ ĆÉĚŘÍÁ; ĎĆĎŇÍĚĹÎÉŃ É ĐŇÉĚĎÖĹÎÉŃ Ë ÓĎĆÔŐ É ÉÇŇÁÍ ÎÁ ÔĹÍŐ ĆÉĚŘÍÁ; ÔĹËÓÔŮ ÄÉÁĚĎÇĎ×, ŢÁÔĚÁÎĎ-ĐÁĂÁËÓËÉĘ ÓĚĎ×ÁpŘ, ÉÎÔĹŇ×ŘŔ Ó ÁËÔŁŇÁÍÉ, ĐŐÂĚÉËÁĂÉÉ × ĐŇĹÓÓĹ; ÁŇČÉ×Ů ËĎÎĆĹŇĹÎĂÉÉ RU.KIN-DZA-DZA É on-line ÄĎÓÔŐĐ Ë ÎĹĘ; ÓÓŮĚËÉ ÎÁ ÄŇŐÇÉĹ ÓÔŇÁÎÉĂŮ, ĐĎÓ×ŃÝŁÎÎŮĹ ĆÉĚŘÍŐ. ÷ ÜÔĎĘ ÓÔÁÔŘĹ ÎÁČĎÄŃÔÓŃ ÎĹÓËĎĚŘËĎ ĆŇÁÇÍĹÎÔĎ× Ó ÓÁĘÔÁ. \section{óĎÂÓÔ×ĹÎÎĎ ĆŇÁÇÍĹÎÔŮ} \subsection{ëňáôëéę ţáôěáîď-đáăáëóëéę óěď÷áňř} äĚŃ ÔĎÇĎ, ŢÔĎÂŮ ĐĎÎÉÍÁÔŘ, Ď ŢĹÍ ÇĎ×ĎŇŃÔ × ĆÉĚŘÍĹ ÓĎ×ĹŇŰĹÎÎĎ ÎĹĎÂČĎÄÉÍĎ ÚÎÁÔŘ ÎĹËĎÔĎŇŮĹ ÓĚĎ×Á ÖÉÔĹĚĹĘ ĐĚÁÎĹÔŮ đĚŔË. ďÎÉ ĐŇÉ×ĎÄŃÔÓŃ × ËŇÁÔËĎÍ ÓĚĎ×ÁŇĹ (ÔÁÂ. \ref{slovar}). \begin{table}[ht] \begin{center} \begin{tabular}{|c|l|} \hline ëă & ÓĐÉŢËÁ\\ ăáë & ËĎĚĎËĎĚŘŢÉË ÄĚŃ ÎĎÓÁ\\ üăéč & ŃÝÉË ÄĚŃ ŐÚÎÉËĎ×\\ üăéěďđđ & ĐŇĹÄÓÔÁ×ÉÔĹĚŘ ×ĚÁÓÔÉ\\ đĺđĺěáă & ÍĹÖÚףÚÄÎŮĘ ËĎŇÁÂĚŘ\\ çňá÷éăáđđá & ÄĹÔÁĚŘ ĎÔ ÍĎÔĎŇÁ ĐĹĐĹĚÁĂÁ\\ ëŕ & ÄĎĐŐÓÔÉÍĎĹ × ĎÂÝĹÓÔ×Ĺ ŇŐÇÁÔĹĚŘÓÔ×Ď\\ ëő & ×ÓĹ ĎÓÔÁĚŘÎŮĹ ÓĚĎ×Á\\ \hline \end{tabular} \end{center} \caption{ëŇÁÔËÉĘ ŢÁÔĚÁÎĎ-ĐÁĂÁËÓËÉĘ ÓĚĎ×ÁŇŘ} \label{slovar} \end{table} \subsection{äĹĚÁĘ ëŐ!} ő ÔĹČ, ËÔĎ ÎĹ ÓÍĎÔŇĹĚ ×ĹĚÉËĎÇĎ ĆÉĚŘÍÁ, ÓŇÁÚŐ ×ĎÚÎÉËÁĹÔ ×ĎĐŇĎÓ, ``ţÔĎ ÔÁËĎĹ ÜÔĎ ëŐ É ËÁË ĹÇĎ ÄĹĚÁÔŘ'', Á Ő ĐĎÚÎÁËĎÍÉ×ŰÉČÓŃ Ó ÔÁÂĚÉŢËĎĘ \ref{slovar}, ``ëÁË ÍĎÖÎĎ ÄĹĚÁÔŘ ÷óĺ ďóôáěřîůĺ óěď÷á''? ďÔ×ĹŢÁŔ: ÷ĎÔ ÔÁË ÎÁÄĎ (ŇÉÓ \ref{ku})! ÷ ÄÁÎÎĎÍ ÓĚŐŢÁĹ, ``ëŐ'' ÜÔĎ ŇÉÔŐÁĚŘÎĎĹ ĐŇÉ×ĹÔÓÔ×ÉĹ, ËĎÔĎŇĎĹ ×ÓĹ ĐÁĂÁËÁ ĎÂŃÚÁÎŮ ×ŮĐĎĚÎŃÔŘ ĐĹŇĹÄ ŢÁÔĚÁÎÁÍÉ. \section{ňÉÓŐÎËÉ} \begin{figure}[htb] \Huge \begin{center} o\\ $/|\backslash$\\ < >\\ \end{center} \caption{ëŐ!} \label{ku} \end{figure} \section{÷Ů×ĎÄŮ} ĺÓĚÉ ×ÁÓ ÚÁÉÎÔĹŇĹÓĎ×ÁĚÉ ĐŇĹÄĚĎÖĹÎÎŮĹ ×ÁŰĹÍŐ ×ÎÉÍÁÎÉŔ ÍÁÔĹŇÉÁĚŮ, ÄĎÂŇĎ ĐĎÖÁĚĎ×ÁÔŘ ÎÁ ÜÔĎÔ ÓÁĘÔ. \subsection{PS} ń Ë ÜÔĎÍŐ ÓÁĘÔŐ ĎÔÎĎŰĹÎÉĹ ×ĎĎÂÝĹ ÎÉËÁËĎÇĎ ÎĹ ÉÍĹŔ, ×ÓŃ ŇĹËĚÁÍÁ -- ÔĎĚŘËĎ ÉÚ ÓĎĎÂŇÁÖĹÎÉĘ ÉÓËŐÓÓÔ×Á! \subsubsection{PPS} îÁ ÓÁĘÔĹ ÔŇĹÂĎ×ÁÎÉĹ -- ŐËÁÚŮ×ÁÔŘ ÉÓÔĎŢÎÉË. őËÁÚŮ×ÁŔ --- ÷ÓĹ ×ÚŃĚ ÔÁÍ! \begin{thebibliography}{9} \bibitem{kzz} \texttt{http://kin-dza-dza.etel.ru} \textit{óÁĘÔ, ĐĎÓ×ŃÝĹÎÎŮĘ \textbf{×ĹĚÉËĎÍŐ} ĆÉĚŘÍŐ} \end{thebibliography} \end{document} latex2rtf-2.3.18/test/style.tex0000777000175000017500000000144413050672355016575 0ustar wilfriedwilfried\documentclass[11pt]{article} \begin{document} \section{Example for paragraphs} Some roman text {\tt should be typewriter font should be typewriter font } \section{Example for itemize} Another example \begin{itemize} \item one roman {\tt \item two typewriter \item three typewriter } \begin{itemize} \item subitem roman \item subitem roman \end{itemize} \end{itemize} Now a numbered list \begin{enumerate} \item one roman {\tt \item two typewriter \item three typewriter } \begin{enumerate} \item subitem roman \item subitem roman \end{enumerate} \end{enumerate} \section{Example for sections} But sections are impervious! \subsection{Title is roman} Text is in roman. {\tt \subsection{Two in roman} Text is in typewriter. \subsection{Three in roman} Text is in typewriter. } \end{document} latex2rtf-2.3.18/test/enc_latin1.tex0000777000175000017500000001124613050672360017447 0ustar wilfriedwilfried\documentclass[10pt]{article} \usepackage[T1]{fontenc} \usepackage[latin1]{inputenc} \usepackage{times} \usepackage{textcomp} \begin{document} \begin{tabular}{ccrl} 80& &128&\\ 81& &129&\\ 82& &130&\\ 83& &131&\\ 84& &132&\\ 85& &133&\\ 86& &134&\\ 87& &135&\\ 88& &136&\\ 89& &137&\\ 8A& &138&\\ 8B& &139&\\ 8C& &140&\\ 8D& &141&\\ 8E& &142&\\ 8F& &143&\\ 90& &144&\\ 91& &145&\\ 92& &146&\\ 93& &147&\\ 94& &148&\\ 95& &149&\\ 96& &150&\\ 97& &151&\\ 98& &152&\\ 99& &153&\\ 9A& &154&\\ 9B& &155&\\ 9C& &156&\\ 9D& &157&\\ 9E& &158&\\ 9F& &159&\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} A0& &160&NO-BREAK SPACE\\ A1&Ą&161&INVERTED EXCLAMATION MARK\\ A2&˘&162&CENT SIGN\\ A3&Ł&163&POUND SIGN\\ A4&¤&164&CURRENCY SIGN\\ A5&Ľ&165&YEN SIGN\\ A6&Ś&166&BROKEN BAR\\ A7&§&167&SECTION SIGN\\ A8&¨&168&DIAERESIS\\ A9&$Š$&169©RIGHT SIGN\\ AA&Ş&170&FEMININE ORDINAL INDICATOR\\ AB&Ť&171&LEFT-POINTING DOUBLE ANGLE QUOTATION MARK\\ AC&$Ź$&172&NOT SIGN\\ AD&­&173&SOFT HYPHEN\\ AE&Ž&174®ISTERED SIGN\\ AF&Ż&175&MACRON\\ B0&°&176&DEGREE SIGN\\ B1&$ą$&177&PLUS-MINUS SIGN\\ B2&$˛$&178&SUPERSCRIPT TWO\\ B3&$ł$&179&SUPERSCRIPT THREE\\ B4&´&180&ACUTE ACCENT\\ B5&$ľ$&181&MICRO SIGN\\ B6&ś&182&PILCROW SIGN\\ B7&ˇ&183&MIDDLE DOT\\ B8&¸&184&CEDILLA\\ B9&$š$&185&SUPERSCRIPT ONE\\ BA&ş&186&MASCULINE ORDINAL INDICATOR\\ BB&ť&187&RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK\\ BC&ź&188&VULGAR FRACTION ONE QUARTER\\ BD&˝&189&VULGAR FRACTION ONE HALF\\ BE&ž&190&VULGAR FRACTION THREE QUARTERS\\ BF&ż&191&INVERTED QUESTION MARK\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} C0&Ŕ&192&LATIN CAPITAL LETTER A WITH GRAVE\\ C1&Á&193&LATIN CAPITAL LETTER A WITH ACUTE\\ C2&Â&194&LATIN CAPITAL LETTER A WITH CIRCUMFLEX\\ C3&Ă&195&LATIN CAPITAL LETTER A WITH TILDE\\ C4&Ä&196&LATIN CAPITAL LETTER A WITH DIAERESIS\\ C5&Ĺ&197&LATIN CAPITAL LETTER A WITH RING ABOVE\\ C6&Ć&198&LATIN CAPITAL LETTER AE\\ C7&Ç&199&LATIN CAPITAL LETTER C WITH CEDILLA\\ C8&Č&200&LATIN CAPITAL LETTER E WITH GRAVE\\ C9&É&201&LATIN CAPITAL LETTER E WITH ACUTE\\ CA&Ę&202&LATIN CAPITAL LETTER E WITH CIRCUMFLEX\\ CB&Ë&203&LATIN CAPITAL LETTER E WITH DIAERESIS\\ CC&Ě&204&LATIN CAPITAL LETTER I WITH GRAVE\\ CD&Í&205&LATIN CAPITAL LETTER I WITH ACUTE\\ CE&Î&206&LATIN CAPITAL LETTER I WITH CIRCUMFLEX\\ CF&Ď&207&LATIN CAPITAL LETTER I WITH DIAERESIS\\ D0&Đ&208&LATIN CAPITAL LETTER ETH\\ D1&Ń&209&LATIN CAPITAL LETTER N WITH TILDE\\ D2&Ň&210&LATIN CAPITAL LETTER O WITH GRAVE\\ D3&Ó&211&LATIN CAPITAL LETTER O WITH ACUTE\\ D4&Ô&212&LATIN CAPITAL LETTER O WITH CIRCUMFLEX\\ D5&Ő&213&LATIN CAPITAL LETTER O WITH TILDE\\ D6&Ö&214&LATIN CAPITAL LETTER O WITH DIAERESIS\\ D7&$×$&215&MULTIPLICATION SIGN\\ D8&Ř&216&LATIN CAPITAL LETTER O WITH STROKE\\ D9&Ů&217&LATIN CAPITAL LETTER U WITH GRAVE\\ DA&Ú&218&LATIN CAPITAL LETTER U WITH ACUTE\\ DB&Ű&219&LATIN CAPITAL LETTER U WITH CIRCUMFLEX\\ DC&Ü&220&LATIN CAPITAL LETTER U WITH DIAERESIS\\ DD&Ý&221&LATIN CAPITAL LETTER Y WITH ACUTE\\ DE&Ţ&222&LATIN CAPITAL LETTER THORN\\ DF&ß&223&LATIN SMALL LETTER SHARP S\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} E0&ŕ&224&LATIN SMALL LETTER A WITH GRAVE\\ E1&á&225&LATIN SMALL LETTER A WITH ACUTE\\ E2&â&226&LATIN SMALL LETTER A WITH CIRCUMFLEX\\ E3&ă&227&LATIN SMALL LETTER A WITH TILDE\\ E4&ä&228&LATIN SMALL LETTER A WITH DIAERESIS\\ E5&ĺ&229&LATIN SMALL LETTER A WITH RING ABOVE\\ E6&ć&230&LATIN SMALL LETTER AE\\ E7&ç&231&LATIN SMALL LETTER C WITH CEDILLA\\ E8&č&232&LATIN SMALL LETTER E WITH GRAVE\\ E9&é&233&LATIN SMALL LETTER E WITH ACUTE\\ EA&ę&234&LATIN SMALL LETTER E WITH CIRCUMFLEX\\ EB&ë&235&LATIN SMALL LETTER E WITH DIAERESIS\\ EC&ě&236&LATIN SMALL LETTER I WITH GRAVE\\ ED&í&237&LATIN SMALL LETTER I WITH ACUTE\\ EE&î&238&LATIN SMALL LETTER I WITH CIRCUMFLEX\\ EF&ď&239&LATIN SMALL LETTER I WITH DIAERESIS\\ F0&đ&240&LATIN SMALL LETTER ETH\\ F1&ń&241&LATIN SMALL LETTER N WITH TILDE\\ F2&ň&242&LATIN SMALL LETTER O WITH GRAVE\\ F3&ó&243&LATIN SMALL LETTER O WITH ACUTE\\ F4&ô&244&LATIN SMALL LETTER O WITH CIRCUMFLEX\\ F5&ő&245&LATIN SMALL LETTER O WITH TILDE\\ F6&ö&246&LATIN SMALL LETTER O WITH DIAERESIS\\ F7&$÷$&247&DIVISION SIGN\\ F8&ř&248&LATIN SMALL LETTER O WITH STROKE\\ F9&ů&249&LATIN SMALL LETTER U WITH GRAVE\\ FA&ú&250&LATIN SMALL LETTER U WITH ACUTE\\ FB&ű&251&LATIN SMALL LETTER U WITH CIRCUMFLEX\\ FC&ü&252&LATIN SMALL LETTER U WITH DIAERESIS\\ FD&ý&253&LATIN SMALL LETTER Y WITH ACUTE\\ FE&ţ&254&LATIN SMALL LETTER THORN\\ FF&˙&255&LATIN SMALL LETTER Y WITH DIAERESIS\\ \end{tabular} \end{document} latex2rtf-2.3.18/test/ifclause.tex0000777000175000017500000000501013050672360017215 0ustar wilfriedwilfried\documentclass[11pt]{report} \newif\iflatextortf %all \newif constructs ignored; defaults to False % manually set flag -- not required \latextortffalse %ignored by latex2rtf %\latextortftrue %also ignored by latex2rtf \usepackage[pdftex]{graphicx} \iflatextortf \else \usepackage{dcolumn} \newcolumntype{d}[1]{D{.}{.}{#1}} \usepackage{sidecap} \fi \begin{document} \section{If-else} \iflatextortf This is the true clause! There should be no false clause. \else This is the false clause! Something is wrong if this appears in the RTF translation. This should appear in the \LaTeX{} version. \fi \section{If only} \iflatextortf This is the true clause, with no else clause. It should not appear in the \LaTeX{} version. \fi \section{Blank if, non-blank else} \iflatextortf %blank \else This is the false clause! This should appear in the \LaTeX{} version. \fi % % The remainder of these tests do not work with latex2trf r614 % %\section{Nesting in the table environment} %Table~\ref{tab:one} should have aligned numbers in \LaTeX{} and normal columns in RTF (not possible in RTF). %\begin{table}[h] %\begin{center} %\caption{Random population densities of some countries} %\iflatextortf % \begin{tabular}{lccc} % standard column definitions %\else % \begin{tabular}{ld{2}d{2}d{2}} % dcolumn column definitions %\fi %\hline %Name & \multicolumn{1}{c}{Population} & \multicolumn{1}{c}{Area} & \multicolumn{1}{c}{Density} \\ %\hline %Canada & 32,268,240 & 9,970,610 & 3.2 \\ %Denmark & 5,430,590 & 43,094 & 126 \\ %Germany & 82,689,210 & 357,022 & 232 \\ %Greenland & 56,916 & 2,175,600 & 0.026 \\ %Pitcairn Islands & 67 & 5 & 13.4 \\ %Monaco & 35,253 & 1.49 & 23,660 \\ %United States & 298,212,900 & 9,629,091 & 31 \\ %Vatican City & 821 & 0.44 & 1,866 \\ %\hline %\multicolumn{4}{r}{\footnotesize{Source: \textit{Wikipedia: List of countries by population density}}} %\end{tabular} %\label{tab:one} %\end{center} %\end{table} %\section{Using the SCfigure environment} %Figure~\ref{fig:one} should have a caption on the right in \LaTeX{} normal caption in RTF. %\iflatextortf % \begin{figure} %\else % \begin{SCfigure} %\fi %\includegraphics[height=18cm,width=5cm]{fig_tex} %\caption{A stretched figure which goes from the bottom of the page, to top.} %\label{fig:one} %\iflatextortf % \end{figure} %\else % \end{SCfigure} %\fi \end{document} latex2rtf-2.3.18/test/fig_pstricks.tex0000777000175000017500000000115113050672360020113 0ustar wilfriedwilfried\documentclass{article} \usepackage{pstricks-add} \begin{document} \psset{xunit=0.5cm,yunit=0.5cm,linecolor=red} \newpsstyle{graphstyle}{linecolor=green} \newpsstyle{plotstyle}{linewidth=3pt} \begin{pspicture}(-10,-5)(10,5) \psplot{-10}{10}{x 180 mul 3.1416 div sin} \psaxes(0,0)(-10,-5)(10,5) \end{pspicture} \vspace{1cm} \begin{pspicture}(-10,-5)(10,5) \psplot[algebraic]{-10}{10}{sin(x)} \psaxes(0,0)(-10,-5)(10,5) \end{pspicture} \psset{algebraic} \begin{psgraph}[ticksize=0,labels=none](0,0)(-10,-5)(10,5){.5\textwidth}{!} \psplot[linecolor=blue]{-10}{10}{cos(x)} \end{psgraph} \end{document} latex2rtf-2.3.18/test/ucsymbols.tex0000777000175000017500000011431113050672357017455 0ustar wilfriedwilfried\documentclass{article} \usepackage[T1]{fontenc} \usepackage[english]{babel} \usepackage{amsmath} \usepackage{amssymb} %\usepackage{ucs} %\usepackage{unicode} %\usepackage{textcomp} %\usepackage{tipa} %\pagestyle{empty} \begin{document} \begin{table} \begin{center} \begin{tabular}{lccc} LaTeX Command & Decimal & Hex & actual symbol\\ \verb#$\doteq$# & 8784 & 0x2250 & $\doteq$\\ \verb#$\gtrdot$# & 8919 & 0x22D7 & $\gtrdot$\\ \verb#$\imath$# & 305 & 0x131 & $\imath$\\ \verb#\OE# & 338 & 0x152 & \OE\\ \verb#\oe# & 339 & 0x153 & \oe\\ \verb#\textemdash# & 8212 & 8212 & \textemdash\\ \verb#\textquoteleft# & 8216 & 8216 & \textquoteleft\\ \verb#\textquoteright# & 8217 & 8217 & \textquoteright\\ \verb#\textquotedblleft# & 8220 & 8220 & \textquotedblleft\\ \verb#\textquotedblright# & 8221 & 8221 & \textquotedblright\\ \end{tabular} \end{center} \caption{Testing Symbols} \end{table} \clearpage \begin{table} \begin{center} \begin{tabular}{llll} command &unicode & symbol & field symbol\\ \verb#$\aleph$# & 8501 & $\aleph$ & $A_2\quad \aleph$\\ \verb#$\amalg$# & 8720 & $\amalg$ & $A_2\quad \amalg$\\ \verb#$\angle$# & 8736 & $\angle$ & $A_2\quad \angle$\\ \verb#$\approx$# & 8776 & $\approx$ & $A_2\quad \approx$\\ \verb#$\approxeq$# & 8778 & $\approxeq$ & $A_2\quad \approxeq$\\ \verb#$\ast$# & 8727 & $\ast$ & $A_2\quad \ast$\\ \verb#$\asymp$# & 8781 & $\asymp$ & $A_2\quad \asymp$\\ \verb#$\backepsilon$# & 8717 & $\backepsilon$ & $A_2\quad \backepsilon$\\ \verb#$\backprime$# & 8245 & $\backprime$ & $A_2\quad \backprime$\\ \verb#$\backsim$# & 8765 & $\backsim$ & $A_2\quad \backsim$\\ \verb#$\backsimeq$# & 8909 & $\backsimeq$ & $A_2\quad \backsimeq$\\ \verb#$\barwedge$# & 8892 & $\barwedge$ & $A_2\quad \barwedge$\\ \verb#$\because$# & 8757 & $\because$ & $A_2\quad \because$\\ \verb#$\beth$# & 1489 & $\beth$ & $A_2\quad \beth$\\ \verb#$\between$# & 8812 & $\between$ & $A_2\quad \between$\\ \verb#$\bigcap$# & 8899 & $\bigcap$ & $A_2\quad \bigcap$\\ \verb#$\bigcirc$# & 9675 & $\bigcirc$ & $A_2\quad \bigcirc$\\ \verb#$\bigcup$# & 8898 & $\bigcup$ & $A_2\quad \bigcup$\\ \verb#$\bigodot$# & 10752 & $\bigodot$ & $A_2\quad \bigodot$\\ \verb#$\bigoplus$# & 10753 & $\bigoplus$ & $A_2\quad \bigoplus$\\ \verb#$\bigotimes$# & 10754 & $\bigotimes$ & $A_2\quad \bigotimes$\\ \verb#$\bigsqcup$# & 10758 & $\bigsqcup$ & $A_2\quad \bigsqcup$\\ \verb#$\bigstar$# & 8727 & $\bigstar$ & $A_2\quad \bigstar$\\ \verb#$\bigtriangledown$# & 9661 & $\bigtriangledown$ & $A_2\quad \bigtriangledown$\\ \verb#$\bigtriangleup$# & 9651 & $\bigtriangleup$ & $A_2\quad \bigtriangleup$\\ \verb#$\biguplus$# & 10756 & $\biguplus$ & $A_2\quad \biguplus$\\ \verb#$\bigvee$# & 8897 & $\bigvee$ & $A_2\quad \bigvee$\\ \verb#$\bigwedge$# & 8896 & $\bigwedge$ & $A_2\quad \bigwedge$\\ \verb#$\blackcircle$# & 8226 & $\blackcircle$ & $A_2\quad \blackcircle$\\ \verb#$\blacksquare$# & 9642 & $\blacksquare$ & $A_2\quad \blacksquare$\\ \verb#$\blacktriangle$# & 9652 & $\blacktriangle$ & $A_2\quad \blacktriangle$\\ \verb#$\blacktriangledown$# & 9662 & $\blacktriangledown$ & $A_2\quad \blacktriangledown$\\ \verb#$\blacktriangleleft$# & 9666 & $\blacktriangleleft$ & $A_2\quad \blacktriangleleft$\\ \verb#$\blacktriangleright$# & 9656 & $\blacktriangleright$ & $A_2\quad \blacktriangleright$\\ \verb#$\bot$# & 8869 & $\bot$ & $A_2\quad \bot$\\ \verb#$\bowtie$# & 8904 & $\bowtie$ & $A_2\quad \bowtie$\\ \verb#$\Box$# & 9633 & $\Box$ & $A_2\quad \Box$\\ \verb#$\boxdot$# & 8865 & $\boxdot$ & $A_2\quad \boxdot$\\ \verb#$\boxminus$# & 8863 & $\boxminus$ & $A_2\quad \boxminus$\\ \verb#$\boxplus$# & 8862 & $\boxplus$ & $A_2\quad \boxplus$\\ \verb#$\boxtimes$# & 8864 & $\boxtimes$ & $A_2\quad \boxtimes$\\ \verb#$\bumpeq$# & 8783 & $\bumpeq$ & $A_2\quad \bumpeq$\\ \verb#$\Bumpeq$# & 8782 & $\Bumpeq$ & $A_2\quad \Bumpeq$\\ \end{tabular} \end{center} \caption{Testing Unicode, the $A_2$ is only present to force fields to get used} \end{table} \begin{table} \begin{center} \begin{tabular}{llll} command &unicode & symbol & field symbol\\ \verb#$\cap$# & 8745 & $\cap$ & $A_2\quad \cap$\\ \verb#$\Cap$# & 8915 & $\Cap$ & $A_2\quad \Cap$\\ \verb#$\cdot$# & 8901 & $\cdot$ & $A_2\quad \cdot$\\ \verb#$\cdots$# & 8943 & $\cdots$ & $A_2\quad \cdots$\\ \verb#$\centerdot$# & 8729 & $\centerdot$ & $A_2\quad \centerdot$\\ \verb#$\circ$# & 8728 & $\circ$ & $A_2\quad \circ$\\ \verb#$\circeq$# & 8791 & $\circeq$ & $A_2\quad \circeq$\\ \verb#$\circlearrowleft$# & 8634 & $\circlearrowleft$ & $A_2\quad \circlearrowleft$\\ \verb#$\circlearrowright$# & 8635 & $\circlearrowright$ & $A_2\quad \circlearrowright$\\ \verb#$\circledS$# & 9416 & $\circledS$ & $A_2\quad \circledS$\\ \verb#$\circledast$# & 8859 & $\circledast$ & $A_2\quad \circledast$\\ \verb#$\circledcirc$# & 8858 & $\circledcirc$ & $A_2\quad \circledcirc$\\ \verb#$\circleddash$# & 8861 & $\circleddash$ & $A_2\quad \circleddash$\\ \verb#$\clubsuit$# & 9827 & $\clubsuit$ & $A_2\quad \clubsuit$\\ \verb#$\Colon$# & 8759 & $\Colon$ & $A_2\quad \Colon$\\ \verb#$\coloneq$# & 8788 & $\coloneq$ & $A_2\quad \coloneq$\\ \verb#$\complement$# & 8705 & $\complement$ & $A_2\quad \complement$\\ \verb#$\cong$# & 8773 & $\cong$ & $A_2\quad \cong$\\ \verb#$\coprod$# & 8720 & $\coprod$ & $A_2\quad \coprod$\\ \verb#$\Cup$# & 8914 & $\Cup$ & $A_2\quad \Cup$\\ \verb#$\cup$# & 8746 & $\cup$ & $A_2\quad \cup$\\ \verb#$\curlyeqprec$# & 8926 & $\curlyeqprec$ & $A_2\quad \curlyeqprec$\\ \verb#$\curlyeqsucc$# & 8927 & $\curlyeqsucc$ & $A_2\quad \curlyeqsucc$\\ \verb#$\curlyvee$# & 8910 & $\curlyvee$ & $A_2\quad \curlyvee$\\ \verb#$\curlywedge$# & 8911 & $\curlywedge$ & $A_2\quad \curlywedge$\\ \verb#$\curvearrowleft$# & 8630 & $\curvearrowleft$ & $A_2\quad \curvearrowleft$\\ \verb#$\curvearrowright$# & 8631 & $\curvearrowright$ & $A_2\quad \curvearrowright$\\ \end{tabular} \end{center} \caption{Testing Unicode, the $A_2$ is only present to force fields to get used} \end{table} \begin{table} \begin{center} \begin{tabular}{llll} command &unicode & symbol & field symbol\\ \verb#$\dag$# & 86 & $\dag$ & $A_2\quad \dag$\\ \verb#$\daleth$# & 1491 & $\daleth$ & $A_2\quad \daleth$\\ \verb#$\dashleftarrow$# & 8672 & $\dashleftarrow$ & $A_2\quad \dashleftarrow$\\ \verb#$\dashrightarrow$# & 8674 & $\dashrightarrow$ & $A_2\quad \dashrightarrow$\\ \verb#$\dashv$# & 8867 & $\dashv$ & $A_2\quad \dashv$\\ \verb#$\ddag$# & 87 & $\ddag$ & $A_2\quad \ddag$\\ \verb#$\ddddot{}$# & 8412 & $\ddddot{}$ & $A_2\quad \ddddot{}$\\ \verb#$\ddots$# & 8945 & $\ddots$ & $A_2\quad \ddots$\\ \verb#$\degree$# & b0 & $\degree$ & $A_2\quad \degree$\\ \verb#$\diagdown$# & 92 & $\diagdown$ & $A_2\quad \diagdown$\\ \verb#$\diagup$# & 47 & $\diagup$ & $A_2\quad \diagup$\\ \verb#$\Diamond$# & 9671 & $\Diamond$ & $A_2\quad \Diamond$\\ \verb#$\diamond$# & 8900 & $\diamond$ & $A_2\quad \diamond$\\ \verb#$\diamondsuit$# & 9830 & $\diamondsuit$ & $A_2\quad \diamondsuit$\\ \verb#$\digamma$# & 989 & $\digamma$ & $A_2\quad \digamma$\\ \verb#$\div$# & 247 & $\div$ & $A_2\quad \div$\\ \verb#$\divideontimes$# & 8903 & $\divideontimes$ & $A_2\quad \divideontimes$\\ \verb#$\dlcorner$# & 8990 & $\dlcorner$ & $A_2\quad \dlcorner$\\ \verb#$\Doteq$# & 8785 & $\Doteq$ & $A_2\quad \Doteq$\\ \verb#$\doteq$# & 8784 & $\doteq$ & $A_2\quad \doteq$\\ \verb#$\doteqdot$# & 8785 & $\doteqdot$ & $A_2\quad \doteqdot$\\ \verb#$\dotminus$# & 8760 & $\dotminus$ & $A_2\quad \dotminus$\\ \verb#$\dotplus$# & 8724 & $\dotplus$ & $A_2\quad \dotplus$\\ \verb#$\dots$# & 8230 & $\dots$ & $A_2\quad \dots$\\ \verb#$\doublecap$# & 8915 & $\doublecap$ & $A_2\quad \doublecap$\\ \verb#$\doublecup$# & 8914 & $\doublecup$ & $A_2\quad \doublecup$\\ \verb#$\downarrow$# & 8595 & $\downarrow$ & $A_2\quad \downarrow$\\ \verb#$\Downarrow$# & 8659 & $\Downarrow$ & $A_2\quad \Downarrow$\\ \verb#$\downdownarrows$# & 8650 & $\downdownarrows$ & $A_2\quad \downdownarrows$\\ \verb#$\downharpoonleft$# & 8643 & $\downharpoonleft$ & $A_2\quad \downharpoonleft$\\ \verb#$\downharpoonright$# & 8642 & $\downharpoonright$ & $A_2\quad \downharpoonright$\\ \verb#$\drcorner$# & 8991 & $\drcorner$ & $A_2\quad \drcorner$\\ \end{tabular} \end{center} \caption{Testing Unicode, the $A_2$ is only present to force fields to get used} \end{table} \begin{table} \begin{center} \begin{tabular}{llll} command &unicode & symbol & field symbol\\ \verb#$\ell$# & 8467 & $\ell$ & $A_2\quad \ell$\\ \verb#$\emptyset$# & 8709 & $\emptyset$ & $A_2\quad \emptyset$\\ \verb#$\eqcirc$# & 8790 & $\eqcirc$ & $A_2\quad \eqcirc$\\ \verb#$\eqcolon$# & 8789 & $\eqcolon$ & $A_2\quad \eqcolon$\\ \verb#$\eqsim$# & 8770 & $\eqsim$ & $A_2\quad \eqsim$\\ \verb#$\eqslantless$# & 8924 & $\eqslantless$ & $A_2\quad \eqslantless$\\ \verb#$\equiv$# & 8801 & $\equiv$ & $A_2\quad \equiv$\\ \verb#$\exists$# & 8707 & $\exists$ & $A_2\quad \exists$\\ \verb#$\fallingdotseq$# & 8786 & $\fallingdotseq$ & $A_2\quad \fallingdotseq$\\ \verb#$\Finv$# & 8498 & $\Finv$ & $A_2\quad \Finv$\\ \verb#$\flat$# & 9837 & $\flat$ & $A_2\quad \flat$\\ \verb#$\forall$# & 8704 & $\forall$ & $A_2\quad \forall$\\ \verb#$\frown$# & 8994 & $\frown$ & $A_2\quad \frown$\\ \verb#$\ge$# & 8805 & $\ge$ & $A_2\quad \ge$\\ \verb#$\geq$# & 8805 & $\geq$ & $A_2\quad \geq$\\ \verb#$\geqq$# & 8807 & $\geqq$ & $A_2\quad \geqq$\\ \verb#$\geqslant$# & 8805 & $\geqslant$ & $A_2\quad \geqslant$\\ \verb#$\gets$# & 8592 & $\gets$ & $A_2\quad \gets$\\ \verb#$\gg$# & 8811 & $\gg$ & $A_2\quad \gg$\\ \verb#$\Gg$# & 8921 & $\Gg$ & $A_2\quad \Gg$\\ \verb#$\ggg$# & 8921 & $\ggg$ & $A_2\quad \ggg$\\ \verb#$\gggtr$# & 8921 & $\gggtr$ & $A_2\quad \gggtr$\\ \verb#$\gimel$# & 1490 & $\gimel$ & $A_2\quad \gimel$\\ \verb#$\gneqq$# & 8809 & $\gneqq$ & $A_2\quad \gneqq$\\ \verb#$\gnsim$# & 8935 & $\gnsim$ & $A_2\quad \gnsim$\\ \verb#$\gtrdot$# & 8919 & $\gtrdot$ & $A_2\quad \gtrdot$\\ \verb#$\gtreqless$# & 8923 & $\gtreqless$ & $A_2\quad \gtreqless$\\ \verb#$\gtrless$# & 8823 & $\gtrless$ & $A_2\quad \gtrless$\\ \verb#$\gtrsim$# & 8819 & $\gtrsim$ & $A_2\quad \gtrsim$\\ \verb#$\hbar$# & 295 & $\hbar$ & $A_2\quad \hbar$\\ \verb#$\heartsuit$# & 9825 & $\heartsuit$ & $A_2\quad \heartsuit$\\ \verb#$\hookleftarrow$# & 8617 & $\hookleftarrow$ & $A_2\quad \hookleftarrow$\\ \verb#$\hookrightarrow$# & 8618 & $\hookrightarrow$ & $A_2\quad \hookrightarrow$\\ \verb#$\hslash$# & 8463 & $\hslash$ & $A_2\quad \hslash$\\ \verb#$\iff$# & 10234 & $\iff$ & $A_2\quad \iff$\\ \verb#$\iint$# & 8748 & $\iint$ & $A_2\quad \iint$\\ \verb#$\Im$# & 8465 & $\Im$ & $A_2\quad \Im$\\ \verb#$\imath$# & 305 & $\imath$ & $A_2\quad \imath$\\ \verb#$\in$# & 8712 & $\in$ & $A_2\quad \in$\\ \verb#$\infty$# & 8734 & $\infty$ & $A_2\quad \infty$\\ \verb#$\int$# & 8747 & $\int$ & $A_2\quad \int$\\ \verb#$\intercal$# & 8890 & $\intercal$ & $A_2\quad \intercal$\\ \verb#$\jmath$# & 567 & $\jmath$ & $A_2\quad \jmath$\\ \verb#$\Join$# & 8904 & $\Join$ & $A_2\quad \Join$\\ \end{tabular} \end{center} \caption{Testing Unicode, the $A_2$ is only present to force fields to get used} \end{table} \begin{table} \begin{center} \begin{tabular}{llll} command &unicode & symbol & field symbol\\ \verb#\L# & 321 & \L & n/a\\ \verb#\l# & 322 & \l & n/a\\ \verb#$\land$# & 8743 & $\land$ & $A_2\quad \land$\\ \verb#$\langle$# & 9001 & $\langle$ & $A_2\quad \langle$\\ \verb#$\lceil$# & 8968 & $\lceil$ & $A_2\quad \lceil$\\ \verb#$\ldots$# & 8230 & $\ldots$ & $A_2\quad \ldots$\\ \verb#$\le$# & 8804 & $\le$ & $A_2\quad \le$\\ \verb#$\leadsto$# & 8669 & $\leadsto$ & $A_2\quad \leadsto$\\ \verb#$\leftarrow$# & 8592 & $\leftarrow$ & $A_2\quad \leftarrow$\\ \verb#$\Leftarrow$# & 8656 & $\Leftarrow$ & $A_2\quad \Leftarrow$\\ \verb#$\leftarrowtail$# & 8610 & $\leftarrowtail$ & $A_2\quad \leftarrowtail$\\ \verb#$\leftharpoondown$# & 8637 & $\leftharpoondown$ & $A_2\quad \leftharpoondown$\\ \verb#$\leftharpoonup$# & 8636 & $\leftharpoonup$ & $A_2\quad \leftharpoonup$\\ \verb#$\leftleftarrows$# & 8647 & $\leftleftarrows$ & $A_2\quad \leftleftarrows$\\ \verb#$\leftrightarrows$# & 8646 & $\leftrightarrows$ & $A_2\quad \leftrightarrows$\\ \verb#$\leftrightarrow$# & 8596 & $\leftrightarrow$ & $A_2\quad \leftrightarrow$\\ \verb#$\Leftrightarrow$# & 8660 & $\Leftrightarrow$ & $A_2\quad \Leftrightarrow$\\ \verb#$\leftrightharpoons$# & 8651 & $\leftrightharpoons$ & $A_2\quad \leftrightharpoons$\\ \verb#$\leftrightsquigarrow$#& 8621 & $\leftrightsquigarrow$& $A_2\quad \leftrightsquigarrow$\\ \verb#$\leftthreetimes$# & 8907 & $\leftthreetimes$ & $A_2\quad \leftthreetimes$\\ \verb#$\leq$# & 8804 & $\leq$ & $A_2\quad \leq$\\ \verb#$\leqq$# & 8806 & $\leqq$ & $A_2\quad \leqq$\\ \verb#$\leqslant$# & 10877 & $\leqslant$ & $A_2\quad \leqslant$\\ \verb#$\lessdot$# & 8918 & $\lessdot$ & $A_2\quad \lessdot$\\ \verb#$\lesseqgtr$# & 8922 & $\lesseqgtr$ & $A_2\quad \lesseqgtr$\\ \verb#$\lessgtr$# & 8822 & $\lessgtr$ & $A_2\quad \lessgtr$\\ \verb#$\lesssim$# & 8818 & $\lesssim$ & $A_2\quad \lesssim$\\ \verb#$\lfloor$# & 8970 & $\lfloor$ & $A_2\quad \lfloor$\\ \verb#$\lhd$# & 9665 & $\lhd$ & $A_2\quad \lhd$\\ \verb#$\ll$# & 8810 & $\ll$ & $A_2\quad \ll$\\ \verb#$\Ll$# & 8920 & $\Ll$ & $A_2\quad \Ll$\\ \verb#$\llcorner$# & 8990 & $\llcorner$ & $A_2\quad \llcorner$\\ \verb#$\Lleftarrow$# & 8666 & $\Lleftarrow$ & $A_2\quad \Lleftarrow$\\ \verb#$\lll$# & 8920 & $\lll$ & $A_2\quad \lll$\\ \verb#$\llless$# & 8920 & $\llless$ & $A_2\quad \llless$\\ \verb#$\lneqq$# & 8808 & $\lneqq$ & $A_2\quad \lneqq$\\ \verb#$\lnot$# & 172 & $\lnot$ & $A_2\quad \lnot$\\ \verb#$\lnsim$# & 8934 & $\lnsim$ & $A_2\quad \lnsim$\\ \end{tabular} \end{center} \caption{Testing Unicode, the $A_2$ is only present to force fields to get used} \end{table} \begin{table} \begin{center} \begin{tabular}{llll} command &unicode & symbol & field symbol\\ \verb#$\Longleftarrow$# & 10232 & $\Longleftarrow$ & $A_2\quad \Longleftarrow$\\ \verb#$\longleftarrow$# & 10229 & $\longleftarrow$ & $A_2\quad \longleftarrow$\\ \verb#$\Longleftrightarrow$#& 10234 & $\Longleftrightarrow$ & $A_2\quad \Longleftrightarrow$\\ \verb#$\longleftrightarrow$#& 10231 & $\longleftrightarrow$ & $A_2\quad \longleftrightarrow$\\ \verb#$\longmapsto$# & 10236 & $\longmapsto$ & $A_2\quad \longmapsto$\\ \verb#$\Longrightarrow$# & 10233 & $\Longrightarrow$ & $A_2\quad \Longrightarrow$\\ \verb#$\longrightarrow$# & 10230 & $\longrightarrow$ & $A_2\quad \longrightarrow$\\ \verb#$\looparrowleft$# & 8619 & $\looparrowleft$ & $A_2\quad \looparrowleft$\\ \verb#$\looparrowright$# & 8620 & $\looparrowright$ & $A_2\quad \looparrowright$\\ \verb#$\lor$# & 8744 & $\lor$ & $A_2\quad \lor$\\ \verb#$\lozenge$# & 9674 & $\lozenge$ & $A_2\quad \lozenge$\\ \verb#$\lrcorner$# & 8991 & $\lrcorner$ & $A_2\quad \lrcorner$\\ \verb#$\Lsh$# & 8624 & $\Lsh$ & $A_2\quad \Lsh$\\ \verb#$\ltimes$# & 8905 & $\ltimes$ & $A_2\quad \ltimes$\\ \verb#$\maltese$# & 10016 & $\maltese$ & $A_2\quad \maltese$\\ \verb#$\mapsto$# & 8614 & $\mapsto$ & $A_2\quad \mapsto$\\ \verb#$\measuredangle$# & 8737 & $\measuredangle$ & $A_2\quad \measuredangle$\\ \verb#$\mho$# & 8487 & $\mho$ & $A_2\quad \mho$\\ \verb#$\minus$# & 8722 & $\minus$ & $A_2\quad \minus$\\ \verb#$\models$# & 8871 & $\models$ & $A_2\quad \models$\\ \verb#$\mp$# & 8723 & $\mp$ & $A_2\quad \mp$\\ \verb#$\multimap$# & 8888 & $\multimap$ & $A_2\quad \multimap$\\ \end{tabular} \end{center} \caption{Testing Unicode, the $A_2$ is only present to force fields to get used} \end{table} \begin{table} \begin{center} \begin{tabular}{llll} command &unicode & symbol & field symbol\\ \verb#$\nabla$# & 8711 & $\nabla$ & $A_2\quad \nabla$\\ \verb#$\napprox$# & 8777 & $\napprox$ & $A_2\quad \napprox$\\ \verb#$\natural$# & 9838 & $\natural$ & $A_2\quad \natural$\\ \verb#$\ncong$# & 8775 & $\ncong$ & $A_2\quad \ncong$\\ \verb#$\ne$# & 8800 & $\ne$ & $A_2\quad \ne$\\ \verb#$\nearrow$# & 8599 & $\nearrow$ & $A_2\quad \nearrow$\\ \verb#$\neg$# & 8800 & $\neg$ & $A_2\quad \neg$\\ \verb#$\neq$# & 8800 & $\neq$ & $A_2\quad \neq$\\ \verb#$\nequiv$# & 8802 & $\nequiv$ & $A_2\quad \nequiv$\\ \verb#$\nexists$# & 8708 & $\nexists$ & $A_2\quad \nexists$\\ \verb#$\ngeq$# & 8817 & $\ngeq$ & $A_2\quad \ngeq$\\ \verb#$\ngeqslant$# & 8817 & $\ngeqslant$ & $A_2\quad \ngeqslant$\\ \verb#$\ngtr$# & 8815 & $\ngtr$ & $A_2\quad \ngtr$\\ \verb#$\ni$# & 8715 & $\ni$ & $A_2\quad \ni$\\ \verb#$\nLeftarrow$# & 8653 & $\nLeftarrow$ & $A_2\quad \nLeftarrow$\\ \verb#$\nleftarrow$# & 8602 & $\nleftarrow$ & $A_2\quad \nleftarrow$\\ \verb#$\nLeftrightarrow$# & 8654 & $\nLeftrightarrow$ & $A_2\quad \nLeftrightarrow$\\ \verb#$\nleftrightarrow$# & 8622 & $\nleftrightarrow$ & $A_2\quad \nleftrightarrow$\\ \verb#$\nleq$# & 8816 & $\nleq$ & $A_2\quad \nleq$\\ \verb#$\nleqslant$# & 8816 & $\nleqslant$ & $A_2\quad \nleqslant$\\ \verb#$\nless$# & 8814 & $\nless$ & $A_2\quad \nless$\\ \verb#$\nmid$# & 8740 & $\nmid$ & $A_2\quad \nmid$\\ \verb#$\notin$# & 8713 & $\notin$ & $A_2\quad \notin$\\ \verb#$\nparallel$# & 8742 & $\nparallel$ & $A_2\quad \nparallel$\\ \verb#$\nprec$# & 8832 & $\nprec$ & $A_2\quad \nprec$\\ \verb#$\npreceq$# & 8928 & $\npreceq$ & $A_2\quad \npreceq$\\ \verb#$\nRightarrow$# & 8655 & $\nRightarrow$ & $A_2\quad \nRightarrow$\\ \verb#$\nrightarrow$# & 8603 & $\nrightarrow$ & $A_2\quad \nrightarrow$\\ \verb#$\nsim$# & 8769 & $\nsim$ & $A_2\quad \nsim$\\ \verb#$\nsimeq$# & 8772 & $\nsimeq$ & $A_2\quad \nsimeq$\\ \verb#$\nsubset$# & 8836 & $\nsubset$ & $A_2\quad \nsubset$\\ \verb#$\nsubseteq$# & 8840 & $\nsubseteq$ & $A_2\quad \nsubseteq$\\ \verb#$\nsucc$# & 8833 & $\nsucc$ & $A_2\quad \nsucc$\\ \verb#$\nsucceq$# & 8929 & $\nsucceq$ & $A_2\quad \nsucceq$\\ \verb#$\nsupset$# & 8837 & $\nsupset$ & $A_2\quad \nsupset$\\ \verb#$\ntriangleleft$# & 8938 & $\ntriangleleft$ & $A_2\quad \ntriangleleft$\\ \verb#$\ntrianglelefteq$# & 8940 & $\ntrianglelefteq$ & $A_2\quad \ntrianglelefteq$\\ \verb#$\ntriangleright$# & 8939 & $\ntriangleright$ & $A_2\quad \ntriangleright$\\ \verb#$\ntrianglerighteq$# & 8941 & $\ntrianglerighteq$ & $A_2\quad \ntrianglerighteq$\\ \verb#$\nVDash$# & 8879 & $\nVDash$ & $A_2\quad \nVDash$\\ \verb#$\nVdash$# & 8878 & $\nVdash$ & $A_2\quad \nVdash$\\ \verb#$\nvDash$# & 8877 & $\nvDash$ & $A_2\quad \nvDash$\\ \verb#$\nvdash$# & 8876 & $\nvdash$ & $A_2\quad \nvdash$\\ \verb#$\nwarrow$# & 8598 & $\nwarrow$ & $A_2\quad \nwarrow$\\ \end{tabular} \end{center} \caption{Testing Unicode, the $A_2$ is only present to force fields to get used} \end{table} \begin{table} \begin{center} \begin{tabular}{llll} command &unicode & symbol & field symbol\\ \verb#$\odot$# & 8857 & $\odot$ & $A_2\quad \odot$\\ \verb#$\oint$# & 8750 & $\oint$ & $A_2\quad \oint$\\ \verb#$\ominus$# & 8854 & $\ominus$ & $A_2\quad \ominus$\\ \verb#$\oplus$# & 8853 & $\oplus$ & $A_2\quad \oplus$\\ \verb#$\oslash$# & 8856 & $\oslash$ & $A_2\quad \oslash$\\ \verb#$\otimes$# & 8855 & $\otimes$ & $A_2\quad \otimes$\\ \verb#$\owns$# & 8715 & $\owns$ & $A_2\quad \owns$\\ \verb#$\parallel$# & 8741 & $\parallel$ & $A_2\quad \parallel$\\ \verb#$\partial$# & 8706 & $\partial$ & $A_2\quad \partial$\\ \verb#$\perp$# & 8869 & $\perp$ & $A_2\quad \perp$\\ \verb#$\pitchfork$# & 8916 & $\pitchfork$ & $A_2\quad \pitchfork$\\ \verb#$\pm$# & 177 & $\pm$ & $A_2\quad \pm$\\ \verb#$\prec$# & 8826 & $\prec$ & $A_2\quad \prec$\\ \verb#$\preccurlyeq$# & 8828 & $\preccurlyeq$ & $A_2\quad \preccurlyeq$\\ \verb#$\preceq$# & 10927 & $\preceq$ & $A_2\quad \preceq$\\ \verb#$\precnsim$# & 8936 & $\precnsim$ & $A_2\quad \precnsim$\\ \verb#$\precsim$# & 8830 & $\precsim$ & $A_2\quad \precsim$\\ \verb#$\prod$# & 8719 & $\prod$ & $A_2\quad \prod$\\ \verb#$\propto$# & 8733 & $\propto$ & $A_2\quad \propto$\\ \verb#$\questeq$# & 8799 & $\questeq$ & $A_2\quad \questeq$\\ \verb#$\rangle$# & 9002 & $\rangle$ & $A_2\quad \rangle$\\ \verb#$\rceil$# & 8969 & $\rceil$ & $A_2\quad \rceil$\\ \verb#$\Re$# & 8476 & $\Re$ & $A_2\quad \Re$\\ \verb#$\rfloor$# & 8971 & $\rfloor$ & $A_2\quad \rfloor$\\ \verb#$\rhd$# & 9655 & $\rhd$ & $A_2\quad \rhd$\\ \verb#$\Rightarrow$# & 8658 & $\Rightarrow$ & $A_2\quad \Rightarrow$\\ \verb#$\rightarrow$# & 8594 & $\rightarrow$ & $A_2\quad \rightarrow$\\ \verb#$\rightarrowtail$# & 8611 & $\rightarrowtail$ & $A_2\quad \rightarrowtail$\\ \verb#$\rightharpoondown$# & 8641 & $\rightharpoondown$ & $A_2\quad \rightharpoondown$\\ \verb#$\rightharpoonup$# & 8640 & $\rightharpoonup$ & $A_2\quad \rightharpoonup$\\ \verb#$\rightleftarrows$# & 8644 & $\rightleftarrows$ & $A_2\quad \rightleftarrows$\\ \verb#$\rightleftharpoons$# & 8652 & $\rightleftharpoons$ & $A_2\quad \rightleftharpoons$\\ \verb#$\rightrightarrows$# & 8649 & $\rightrightarrows$ & $A_2\quad \rightrightarrows$\\ \verb#$\rightthreetimes$# & 8908 & $\rightthreetimes$ & $A_2\quad \rightthreetimes$\\ \verb#$\risingdotseq$# & 8787 & $\risingdotseq$ & $A_2\quad \risingdotseq$\\ \verb#$\Rrightarrow$# & 8667 & $\Rrightarrow$ & $A_2\quad \Rrightarrow$\\ \verb#$\Rsh$# & 8625 & $\Rsh$ & $A_2\quad \Rsh$\\ \verb#$\rtimes$# & 8906 & $\rtimes$ & $A_2\quad \rtimes$\\ \end{tabular} \end{center} \caption{Testing Unicode, the $A_2$ is only present to force fields to get used} \end{table} \begin{table} \begin{center} \begin{tabular}{llll} command &unicode & symbol & field symbol\\ \verb#$\searrow$# & 8600 & $\searrow$ & $A_2\quad \searrow$\\ \verb#$\setminus$# & 8726 & $\setminus$ & $A_2\quad \setminus$\\ \verb#$\sharp$# & 9839 & $\sharp$ & $A_2\quad \sharp$\\ \verb#$\shortmid$# & 124 & $\shortmid$ & $A_2\quad \shortmid$\\ \verb#$\shortparallel$# & 8741 & $\shortparallel$ & $A_2\quad \shortparallel$\\ \verb#$\sim$# & 8764 & $\sim$ & $A_2\quad \sim$\\ \verb#$\simeq$# & 8771 & $\simeq$ & $A_2\quad \simeq$\\ \verb#$\smallfrown$# & 8994 & $\smallfrown$ & $A_2\quad \smallfrown$\\ \verb#$\smallsetminus$# & 8726 & $\smallsetminus$ & $A_2\quad \smallsetminus$\\ \verb#$\smallsmile$# & 8995 & $\smallsmile$ & $A_2\quad \smallsmile$\\ \verb#$\smile$# & 8995 & $\smile$ & $A_2\quad \smile$\\ \verb#$\spadesuit$# & 9824 & $\spadesuit$ & $A_2\quad \spadesuit$\\ \verb#$\sphericalangle$# & 8738 & $\sphericalangle$ & $A_2\quad \sphericalangle$\\ \verb#$\sqcap$# & 8851 & $\sqcap$ & $A_2\quad \sqcap$\\ \verb#$\sqcup$# & 8852 & $\sqcup$ & $A_2\quad \sqcup$\\ \verb#$\sqsubset$# & 8847 & $\sqsubset$ & $A_2\quad \sqsubset$\\ \verb#$\sqsubseteq$# & 8849 & $\sqsubseteq$ & $A_2\quad \sqsubseteq$\\ \verb#$\sqsupset$# & 8848 & $\sqsupset$ & $A_2\quad \sqsupset$\\ \verb#$\sqsupseteq$# & 8850 & $\sqsupseteq$ & $A_2\quad \sqsupseteq$\\ \verb#$\square$# & 9633 & $\square$ & $A_2\quad \square$\\ \verb#$\star$# & 8902 & $\star$ & $A_2\quad \star$\\ \verb#$\subset$# & 8834 & $\subset$ & $A_2\quad \subset$\\ \verb#$\Subset$# & 8912 & $\Subset$ & $A_2\quad \Subset$\\ \verb#$\subseteq$# & 8838 & $\subseteq$ & $A_2\quad \subseteq$\\ \verb#$\subsetneq$# & 8842 & $\subsetneq$ & $A_2\quad \subsetneq$\\ \verb#$\succ$# & 8827 & $\succ$ & $A_2\quad \succ$\\ \verb#$\succcurlyeq$# & 8829 & $\succcurlyeq$ & $A_2\quad \succcurlyeq$\\ \verb#$\succeq$# & 10928 & $\succeq$ & $A_2\quad \succeq$\\ \verb#$\succnsim$# & 8937 & $\succnsim$ & $A_2\quad \succnsim$\\ \verb#$\succsim$# & 8831 & $\succsim$ & $A_2\quad \succsim$\\ \verb#$\sum$# & 8721 & $\sum$ & $A_2\quad \sum$\\ \verb#$\Supset$# & 8913 & $\Supset$ & $A_2\quad \Supset$\\ \verb#$\supset$# & 8835 & $\supset$ & $A_2\quad \supset$\\ \verb#$\supseteq$# & 8839 & $\supseteq$ & $A_2\quad \supseteq$\\ \verb#$\supsetneq$# & 8843 & $\supsetneq$ & $A_2\quad \supsetneq$\\ \verb#$\surd$# & 8730 & $\surd$ & $A_2\quad \surd$\\ \verb#$\swarrow$# & 8601 & $\swarrow$ & $A_2\quad \swarrow$\\ \end{tabular} \end{center} \caption{Testing Unicode, the $A_2$ is only present to force fields to get used} \end{table} \begin{table} \begin{center} \begin{tabular}{llll} command &unicode & symbol & field symbol\\ \verb#\textbullet# & 95 & \textbullet & n/a\\ \verb#\textellipsis# & 85 & \textellipsis & n/a\\ \verb#\textperthousand# & 89 & \textperthousand & n/a\\ \verb#$\therefore$# & 8756 & $\therefore$ & $A_2\quad \therefore$\\ \verb#$\to$# & 8594 & $\to$ & $A_2\quad \to$\\ \verb#$\top$# & 8890 & $\top$ & $A_2\quad \top$\\ \verb#$\triangle$# & 9653 & $\triangle$ & $A_2\quad \triangle$\\ \verb#$\triangledown$# & 9663 & $\triangledown$ & $A_2\quad \triangledown$\\ \verb#$\triangleleft$# & 9667 & $\triangleleft$ & $A_2\quad \triangleleft$\\ \verb#$\trianglelefteq$# & 8884 & $\trianglelefteq$ & $A_2\quad \trianglelefteq$\\ \verb#$\triangleq$# & 8796 & $\triangleq$ & $A_2\quad \triangleq$\\ \verb#$\triangleright$# & 9657 & $\triangleright$ & $A_2\quad \triangleright$\\ \verb#$\trianglerighteq$# & 8885 & $\trianglerighteq$ & $A_2\quad \trianglerighteq$\\ \verb#$\twoheadleftarrow$# & 8606 & $\twoheadleftarrow$ & $A_2\quad \twoheadleftarrow$\\ \verb#$\twoheadrightarrow$# & 8608 & $\twoheadrightarrow$ & $A_2\quad \twoheadrightarrow$\\ \verb#$\ulcorner$# & 8988 & $\ulcorner$ & $A_2\quad \ulcorner$\\ \verb#$\unlhd$# & 8884 & $\unlhd$ & $A_2\quad \unlhd$\\ \verb#$\unrhd$# & 8885 & $\unrhd$ & $A_2\quad \unrhd$\\ \verb#$\Uparrow$# & 8657 & $\Uparrow$ & $A_2\quad \Uparrow$\\ \verb#$\uparrow$# & 8593 & $\uparrow$ & $A_2\quad \uparrow$\\ \verb#$\Updownarrow$# & 8661 & $\Updownarrow$ & $A_2\quad \Updownarrow$\\ \verb#$\updownarrow$# & 8597 & $\updownarrow$ & $A_2\quad \updownarrow$\\ \verb#$\upharpoonleft$# & 8639 & $\upharpoonleft$ & $A_2\quad \upharpoonleft$\\ \verb#$\upharpoonright$# & 8638 & $\upharpoonright$ & $A_2\quad \upharpoonright$\\ \verb#$\uplus$# & 8846 & $\uplus$ & $A_2\quad \uplus$\\ \verb#$\upuparrows$# & 8648 & $\upuparrows$ & $A_2\quad \upuparrows$\\ \verb#$\urcorner$# & 8989 & $\urcorner$ & $A_2\quad \urcorner$\\ \end{tabular} \end{center} \caption{Testing Unicode, the $A_2$ is only present to force fields to get used} \end{table} \begin{table} \begin{center} \begin{tabular}{llll} command &unicode & symbol & field symbol\\ \verb#$\varnothing$# & 8709 & $\varnothing$ & $A_2\quad \varnothing$\\ \verb#$\varpropto$# & 8733 & $\varpropto$ & $A_2\quad \varpropto$\\ \verb#$\vartriangle$# & 9651 & $\vartriangle$ & $A_2\quad \vartriangle$\\ \verb#$\vartriangleleft$# & 8882 & $\vartriangleleft$ & $A_2\quad \vartriangleleft$\\ \verb#$\vartriangleright$# & 8883 & $\vartriangleright$ & $A_2\quad \vartriangleright$\\ \verb#$\Vdash$# & 8873 & $\Vdash$ & $A_2\quad \Vdash$\\ \verb#$\vDash$# & 8872 & $\vDash$ & $A_2\quad \vDash$\\ \verb#$\vdash$# & 8866 & $\vdash$ & $A_2\quad \vdash$\\ \verb#$\vdots$# & 8942 & $\vdots$ & $A_2\quad \vdots$\\ \verb#$\vee$# & 8744 & $\vee$ & $A_2\quad \vee$\\ \verb#$\veebar$# & 8891 & $\veebar$ & $A_2\quad \veebar$\\ \verb#$\Vert$# & 8741 & $\Vert$ & $A_2\quad \Vert$\\ \verb#$\vert$# & 124 & $\vert$ & $A_2\quad \vert$\\ \verb#$\Vvdash$# & 8874 & $\Vvdash$ & $A_2\quad \Vvdash$\\ \verb#$\wedge$# & 8743 & $\wedge$ & $A_2\quad \wedge$\\ \verb#$\wedgeq$# & 8793 & $\wedgeq$ & $A_2\quad \wedgeq$\\ \verb#$\wp$# & 8472 & $\wp$ & $A_2\quad \wp$\\ \verb#$\wr$# & 8768 & $\wr$ & $A_2\quad \wr$\\ \end{tabular} \end{center} \caption{Testing Unicode, the $A_2$ is only present to force fields to get used} \end{table} \begin{table} \begin{center} \begin{tabular}{llll} command & unicode & symbol & in a field\\ \verb#$\maltese$# & 10016 & $\maltese$ & $A_2\quad \maltese$\\ \verb#$\digamma$# & 989 & $\digamma$ & $A_2\quad \digamma$\\ \verb#$\varepsilon$# & 949 & $\varepsilon$ & $A_2\quad \varepsilon$\\ \verb#$\varkappa$# & 1008 & $\varkappa$ & $A_2\quad \varkappa$\\ \verb#$\varsigma$# & 962 & $\varsigma$ & $A_2\quad \varsigma$\\ \verb#$\vartheta$# & 977 & $\vartheta$ & $A_2\quad \vartheta$\\ \verb#$\varrho$# & 1009 & $\varrho$ & $A_2\quad \varrho$\\ \verb#$\varphi$# & 981 & $\varphi$ & $A_2\quad \varphi$\\ \verb#$\varpi$# & 982 & $\varpi$ & $A_2\quad \varpi$\\ \end{tabular} \end{center} \caption{Unicode characters not found by Snow Leopard. These require that the STIXGeneral font be installed to show up correctly.} \end{table} \begin{table} \begin{center} \begin{tabular}{llll} command & unicode & symbol & in a field\\ \verb#$\bigodot$# & 10752 & $\bigodot$ & $A_2 \quad \bigodot$\\ \verb#$\bigoplus$# & 10753 & $\bigoplus$ & $A_2 \quad \bigoplus$\\ \verb#$\bigotimes$# & 10754 & $\bigotimes$ & $A_2 \quad \bigotimes$\\ \verb#$\bigsqcup$# & 10758 & $\bigsqcup$ & $A_2 \quad \bigsqcup$\\ \verb#$\biguplus$# & 10756 & $\biguplus$ & $A_2 \quad \biguplus$\\ \verb#$\circledS$# & 9416 & $\circledS$ & $A_2 \quad \circledS$\\ \verb#$\ddddot{}$# & 8412 & $\ddddot{}$ & $A_2 \quad \ddddot{}$\\ \verb#$\iff$# & 10234 & $\iff$ & $A_2 \quad \iff$\\ \verb#$\langle$# & 9001 & $\langle$ & $A_2 \quad \langle$\\ \verb#$\leqslant$# & 10877 & $\leqslant$ & $A_2 \quad \leqslant$\\ \verb#$\Longleftarrow$# & 10232 & $\Longleftarrow$ & $A_2 \quad \Longleftarrow$\\ \verb#$\longleftarrow$# & 10229 & $\longleftarrow$ & $A_2 \quad \longleftarrow $\\ \verb#$\Longleftrightarrow$# & 10234 & $\Longleftrightarrow$ & $A_2 \quad \Longleftrightarrow$\\ \verb#$\longleftrightarrow$# & 10231 & $\longleftrightarrow$ & $A_2 \quad \longleftrightarrow$\\ \verb#$\longmapsto$# & 10236 & $\longmapsto$ & $A_2 \quad \longmapsto$\\ \verb#$\Longrightarrow$# & 10233 & $\Longrightarrow$ & $A_2 \quad \Longrightarrow$\\ \verb#$\longrightarrow$# & 10230 & $\longrightarrow$ & $A_2 \quad \longrightarrow$\\ \verb#$\preceq$# & 10927 & $\preceq$ & $A_2 \quad \preceq$\\ \verb#$\rangle$# & 9002 & $\rangle$ & $A_2 \quad \rangle$\\ \verb#$\succeq$# & 10928 & $\succeq$ & $A_2 \quad \succeq$\\ \end{tabular} \end{center} \caption{Unicode characters not found by XP in Lucida Sans Unicode. These require that the STIXGeneral font be installed to show up correctly.} \end{table} \end{document} latex2rtf-2.3.18/test/rule.tex0000777000175000017500000000016613050672357016406 0ustar wilfriedwilfried\documentclass{article} \begin{document} Here is a 3 centimeter rule: \noindent \rule{3cm}{0.02cm}. \end{document}latex2rtf-2.3.18/test/latex.log0000644000175000017500000000405613664476470016541 0ustar wilfriedwilfriedThis is pdfTeX, Version 3.14159265-2.6-1.40.18 (TeX Live 2017/Debian) (preloaded format=latex) restricted \write18 enabled. entering extended mode (./hyperref.tex LaTeX2e <2017-04-15> Babel <3.18> and hyphenation patterns for 8 language(s) loaded. (/usr/share/texlive/texmf-dist/tex/latex/base/article.cls Document Class: article 2014/09/29 v1.4h Standard LaTeX document class (/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo)) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/hobsub-generic.sty)) (/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty) (/usr/share/texlive/texmf-dist/tex/generic/ifxetex/ifxetex.sty) (/usr/share/texlive/texmf-dist/tex/latex/oberdiek/auxhook.sty) (/usr/share/texlive/texmf-dist/tex/latex/oberdiek/kvoptions.sty) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def) (/usr/share/texlive/texmf-dist/tex/latex/latexconfig/hyperref.cfg) (/usr/share/texlive/texmf-dist/tex/latex/url/url.sty)) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/hdvips.def (/usr/share/texlive/texmf-dist/tex/latex/hyperref/pdfmark.def (/usr/share/texlive/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty))) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/gettitlestring.sty)) No file hyperref.aux. (./hyperref.out) (./hyperref.out) Package hyperref Warning: Rerun to get /PageLabels entry. LaTeX Warning: Reference `randomlabel' on page 1 undefined on input line 32. LaTeX Warning: Reference `randomlabel' on page 1 undefined on input line 32. Overfull \hbox (7.359pt too wide) in paragraph at lines 41--44 []\OT1/cmr/m/n/10 Now this link [][][][] does [1] (./hyperref.aux) LaTeX Warning: There were undefined references. LaTeX Warning: Label(s) may have changed. Rerun to get cross-references right. ) (see the transcript file for additional information) Output written on hyperref.dvi (1 page, 5580 bytes). Transcript written on hyperref.log. latex2rtf-2.3.18/test/linux.rtf0000644000175000017500000062164413664476467016613 0ustar wilfriedwilfried{\rtf1\ansi\uc1\deff0\deflang1024 {\fonttbl{\f0\fnil\fcharset0 Times New Roman;} {\f1\fnil\fcharset0 Arial;} {\f2\fnil\fcharset0 Arial;} {\f3\fnil\fcharset0 Courier New;} {\f4\fnil\fcharset0 Zapf Chancery;} {\f5\fnil\fcharset0 STIXGeneral;} {\f6\fnil\fcharset0 MS Gothic;} } {\colortbl; \red0\green0\blue0; \red0\green0\blue255; \red0\green255\blue255; \red0\green255\blue0; \red255\green0\blue255; \red255\green0\blue0; \red255\green255\blue0; \red255\green255\blue255; } {\stylesheet {\s0\qj\widctlpar\f0\fs20 \snext0 Normal;} {\cs10 \additive\ssemihidden Default Paragraph Font;} {\s1\qc\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 Part;} {\s2\ql\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 heading 1;} {\s3\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 2;} {\s4\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 3;} {\s5\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 4;} {\s6\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 5;} {\s7\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 6;} {\s8\qr\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext8 rightpar;} {\s9\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext9 centerpar;} {\s10\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext10 leftpar;} {\s11\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equation;} {\s12\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationNum;} {\s13\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlign;} {\s14\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlignNum;} {\s15\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArray;} {\s16\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArrayNum;} {\s17\ql\sb120\sa120\keep\widctlpar\f0\fs20 \sbasedon0\snext0 theorem;} {\s18\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 bitmapCenter;} {\s20\qc\sb240\sa240\b\f0\fs36 \sbasedon0\snext21 Title;} {\s21\qc\sa120\f0\fs20 \sbasedon0\snext0 author;} {\s22\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext22 footer;} {\s23\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext23 header;} {\s30\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 caption;} {\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext0 Figure;} {\s32\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext32 Table;} {\s33\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext33 Tabular;} {\s34\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext34 Tabbing;} {\s35\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext35 Quote;} {\s38\ql\widctlpar\f3\fs20 \snext38 verbatim;} {\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext46 List;} {\s47\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext47 List 1;} {\s50\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 latex picture;} {\s51\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 subfigure;} {\s61\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext62 bibheading;} {\s62\ql\fi-567\li567\sb0\sa0\f0\fs20 \sbasedon0\snext62 bibitem;} {\s64\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext64 endnotes;} {\s65\ql\fi-113\li397\lin397\f0\fs20 \sbasedon0\snext65 footnote text;} {\s66\qj\fi-170\li454\lin454\f0\fs20 \sbasedon0\snext66 endnote text;} {\cs62\super \additive\sbasedon10 footnote reference;} {\cs63\super \additive\sbasedon10 endnote reference;} {\s67\ql\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext67 acronym;} {\s70\qc\sa120\b\f0\fs20 \sbasedon0\snext71 abstract title;} {\s71\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext0 abstract;} {\s80\ql\sb240\sa120\keepn\f0\b\fs20 \sbasedon0\snext0 contents_heading;} {\s81\ql\li425\tqr\tldot\tx8222\sb240\sa60\keepn\f0\fs20\b \sbasedon0\snext82 toc 1;} {\s82\ql\li512\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext83 toc 2;} {\s83\ql\li1024\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext84 toc 3;} {\s84\ql\li1536\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext85 toc 4;} {\s85\ql\li2048\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 5;} {\s86\ql\li2560\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 6;} } {\info {\title Original file was linux.tex} {\doccomm Created using latex2rtf 2.3.18 r1266 (released May 29, 2020) on Sat May 30 17:35:19 2020 } } {\footer\pard\plain\f0\fs20\qc\chpgn\par} {\header\pard\plain\tqc\tx4250\tqr\tx8500 \tab by C\u233?sar da Silva\par} \paperw11960\paperh16900\margl1800\margr1660\margt2180\margb1700\pgnstart0\widowctrl\qj\ftnbj\f0\aftnnar {\pard\plain\s20\qc\sb240\sa240\b\f0\fs36\sl240\slmult1 \fi0 Linux \par \pard\plain\s20\qc\sb240\sa240\b\f0\fs36\sl240\slmult1 \fi0 VS.\par \pard\plain\s20\qc\sb240\sa240\b\f0\fs36\sl240\slmult1 \fi0 AIX, HP\endash UX, Tru64 UNIX, Solaris\par \pard\plain\s21\qc\sa120\f0\fs20\sl240\slmult1 \fi300 By \par \pard\plain\s21\qc\sa120\f0\fs20\sl240\slmult1 \fi0 \par \pard\plain\s21\qc\sa120\f0\fs20\sl240\slmult1 \fi0 {\fs28 C\u233?sar da silva} \par \pard\plain\s21\qc\sa120\f0\fs20\sl240\slmult1 \fi0 ({\i na98csa@student.hig.se}) \par \pard\plain\s21\qc\sa120\f0\fs20\sl240\slmult1 \fi0 \par \pard\plain\s21\qc\sa120\f0\fs20\sl240\slmult1 \fi0 Instructor: Andreas Larsson \par \pard\plain\s21\qc\sa120\f0\fs20\sl240\slmult1 \fi0 \par \pard\plain\s21\qc\sa120\f0\fs20\sl240\slmult1 \fi0 UNIVERSITY OF G\u196?VLE\par \pard\plain\s21\qc\sa120\f0\fs20\sl240\slmult1 \fi300 \chdate \par {\page \pard\plain\s70\qc\sa120\b\f0\fs20\sl240\slmult1 \fi300 Abstract\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \li1024\ri1024\fi300 There has been a lot of talk in the press that Linux is not ready for the enterprise server market where the demand for high availability, performance and security are the main issues. This report will look at what the latest Linux kernel doesn\rquote t have in comparison to the main Unix actors within the enterprise server market and finally conclude if Linux is ready for the enterprise server market or what features Linux have to implement to compete with the other Unix clones to get into the enterprise server market. This is a comparative report who got its information mainly from the original UNIX supplier\rquote s homepage, books, articles and from people doing technical support. The information is put together, sorted out, and compared to see which features Linux is lacking in comparison to other Unix\rquote s and and if it has more functions then the other operating systems, and finally got to the conclusion that Linux is not yet ready for the enterprise market. To penetrate the enterprise server market it has to implement support for more amount of memory, more high\endash availability functions and more security functions. It could not be verified if Linux has more features than any of the compared operating systems due to the lack of information. \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \li1024\ri1024\fi0 \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \li1024\ri1024\fi0 This is a second paragraph just to see how the indentation for the abstract environment works. It is not at all clear what the indentation should be.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \li1024\ri1024\fi300 Keywords: {\i0\scaps0\b Linux, operating system, AIX, HP-UX, True64 UNIX, Solaris, enterprise} \par }{\par \pard \page \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb600 \fi0 Thanks\par \pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \sb60 \fi0 Thanks to my wife for her patience, the Linux kernel developers (especially those mentioned in the appendix), Jan Strage, Ian P. Springer, and Joel Eriksson for their help. \par }\par \pard \page \pard\plain\s80\ql\sb240\sa120\keepn\f0\b\fs20\sl240\slmult1 \fi0 Contents\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi0 \par {\field{\*\fldinst TOC \\o "1-3" }{\fldrslt }} \page \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb300 \fi0 0.1 OPEN PUBLICATION LICENSE\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb190 \fi0 0.1.1 REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \fi0 The Open Publication works may be reproduced and distributed in whole or in part, in any medium physical or electronic, provided that the terms of this license are adhered to, and that this license or an incorporation of it by reference (with any options elected by the author(s) and/or publisher) is displayed in the reproduction.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \fi0 Proper form for an incorporation by reference is as follows:\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \fi0 {Copyright \'a9 2001 by C\u233?sar da Silva. This material may be distributed only subject to the terms and conditions set forth in the Open Publication License, v1.0 or later (the latest version is presently available at {\f2 http://www.opencontent.org/openpub/}).}\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \fi0 The reference must be immediately followed with any options elected by the author(s) and/or publisher of the document (see section VI).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \fi0 Commercial redistribution of Open Publication-licensed material is permitted.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \fi0 Any publication in standard (paper) book form shall require the citation of the original publisher and author. The publisher and author\rquote s names shall appear on all outer surfaces of the book. On all outer surfaces of the book the original publishers name shall be as large as the title of the work and cited as possessive with respect to the title.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb130 \fi0 0.1.2 COPYRIGHT\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \fi0 The copyright to each Open Publication is owned by its author(s) or designee.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb130 \fi0 0.1.3 SCOPE OF LICENSE\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \fi0 The following license terms apply to all Open Publication works, unless otherwise explicitly stated in the document.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \fi0 Mere aggregation of Open Publication works or a portion of an Open Publication work with other works or programs on the same media shall not cause this license to apply to those other works. The aggregate work shall contain a notice specifying the inclusion of the Open Publication material and appropriate copyright notice. {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {SEVERABILITY.} If any part of this license is found to be unenforceable in any jurisdiction, the remaining portions of the license remain in force.\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {NO WARRANTY.} Open Publication works are licensed and provided "as is" without warranty of any kind, express or implied, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose or a warranty of non-infringement. \par }\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb190 \fi0 0.1.4 REQUIREMENTS ON MODIFIED WORKS\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \fi0 All modified versions of documents covered by this license, including translations, anthologies, compilations and partial documents, must meet the following requirements: {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 1.\tab The modified version must be labeled as such. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 2.\tab The person making the modifications must be identified and the modifications dated. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 3.\tab Acknowledgement of the original author and publisher if applicable must be retained according to normal academic citation practices. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 4.\tab The location of the original unmodified document must be identified. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 5.\tab The original author\rquote s (or authors\rquote ) name(s) may not be used to assert or imply endorsement of the resulting document without the original author\rquote s (or authors\rquote ) permission. \par }\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb190 \fi0 0.1.5 GOOD-PRACTICE RECOMMENDATIONS \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \fi0 In addition to the requirements of this license, it is requested from and strongly recommended of redistributors that: {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 1.\tab If you are distributing Open Publication works on hardcopy or CD-ROM, you provide email notification to the authors of your intent to redistribute at least thirty days before your manuscript or media freeze, to give the authors time to provide updated documents. This notification should describe modifications, if any, made to the document.\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 2.\tab All substantive modifications (including deletions) be either clearly marked up in the document or else described in an attachment to the document. \par }\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \fi0 Finally, while it is not mandatory under this license, it is considered good form to offer a free copy of any hardcopy and CD-ROM expression of an Open Publication-licensed work to its author(s).\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb130 \fi0 0.1.6 LICENSE OPTIONS\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \fi0 The author(s) and/or publisher of an Open Publication-licensed document may elect certain options by appending language to the reference to or copy of the license. These options are considered part of the license instance and must be included with the license (or its incorporation by reference) in derived works.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \fi0 A. To prohibit distribution of substantively modified versions without the explicit permission of the author(s). "Substantive modification" is defined as a change to the semantic content of the document, and excludes mere changes in format or typographical corrections.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \fi0 To accomplish this, add the phrase \lquote Distribution of substantively modified versions of this document is prohibited without the explicit permission of the copyright holder.\rquote to the license reference or copy.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \fi0 B. To prohibit any publication of this work or derivative works in whole or in part in standard (paper) book form for commercial purposes is prohibited unless prior permission is obtained from the copyright holder.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \fi0 To accomplish this, add the phrase \rquote Distribution of the work or derivative of the work in any standard (paper) book form is prohibited unless prior permission is obtained from the copyright holder.\rquote to the license reference or copy. \par \column \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb250 \fi0 0.2 CHANGES\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \fi0 Here are the changes made to the documentation after the thesis had been handed in. {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Corrected the reference point of ACL on HP-UX from 30 to 44 (see page {\field{\*\fldinst{\lang1024 PAGEREF BMchange1 \\* MERGEFORMAT }}{\fldrslt{change1}}}).\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Added the following supported file systems to HP-UX: CDFS, HFS, LOFS, ISO9660, Rockridge, and High Sierra (see page {\field{\*\fldinst{\lang1024 PAGEREF BMchange2 \\* MERGEFORMAT }}{\fldrslt{change2}}}).\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Added reference and marks in table for HP-UX NFS v2 & v3 support (see page {\field{\*\fldinst{\lang1024 PAGEREF BMchange3 \\* MERGEFORMAT }}{\fldrslt{change3}}}).\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Added support for LVM for HP-UX (see page {\field{\*\fldinst{\lang1024 PAGEREF BMchange4 \\* MERGEFORMAT }}{\fldrslt{change4}}}).\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Splitted up Bibliography in sections (see the bibliography on page {\field{\*\fldinst{\lang1024 PAGEREF BMbiblio \\* MERGEFORMAT }}{\fldrslt{biblio}}}.\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Added BSD Process Accounting to kernel specific features table and a explanation (see page {\field{\*\fldinst{\lang1024 PAGEREF BMprocacc \\* MERGEFORMAT }}{\fldrslt{procacc}}} and {\field{\*\fldinst{\lang1024 PAGEREF BMchange5 \\* MERGEFORMAT }}{\fldrslt{change5}}}).\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Changed \ldblquote Result analys\rdblquote to: {\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \li1112\ri512\fi0 \ldblquote Linux has support for a more kinds of file systems and architectures than any other operating system in this thesis. But it lacks high-availability and security features\u160?(like Live upgrade, dynamic memory/processor resilience, HSM, ACL, IPSec...).\rdblquote \par }\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \li600\fi0 See page {\field{\*\fldinst{\lang1024 PAGEREF BMresultanalys \\* MERGEFORMAT }}{\fldrslt{resultanalys}}}.\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Added text to \ldblquote Conclusions\rdblquote :{\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \li1112\ri512\fi0 \ldblquote For Linux to get into the enterprise server market it has to include support for more memory, high-availability and security features, to make it more competitive against the other operating systems. The features Linux lacks of right now are:{\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1712\ri512\fi-300 \bullet\tab Dynamic processor/memory resilience. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1712\ri512\fi-300 \bullet\tab Dynamic page sizing. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1712\ri512\fi-300 \bullet\tab Live upgrade. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1712\ri512\fi-300 \bullet\tab ACL \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1712\ri512\fi-300 \bullet\tab Hierarchical storage management. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1712\ri512\fi-300 \bullet\tab CacheFS \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1712\ri512\fi-300 \bullet\tab IPSec\rdblquote \par }}\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb130 \li600\fi0 See page {\field{\*\fldinst{\lang1024 PAGEREF BMconclusions \\* MERGEFORMAT }}{\fldrslt{conclusions}}}.\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Removed item \ldblquote Compare the different operating systems network features.\rdblquote from the section Conclusions (see page {\field{\*\fldinst{\lang1024 PAGEREF BMconclusions \\* MERGEFORMAT }}{\fldrslt{conclusions}}}).\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Added REALIZATION chapter with the following text:{\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \li1112\ri512\fi0 \ldblquote Most of the work has been done by reading various different documentation,asking technical support, and identifying if the mentioned functions were implemented in the kernel. The functions was then inserted into a table to finally get to a result.\rdblquote \par }\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \li600\fi0 See page {\field{\*\fldinst{\lang1024 PAGEREF BMrealization \\* MERGEFORMAT }}{\fldrslt{realization}}}.\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Added section IMPLEMENTATION to the REALIZATION chapter with the following text:{\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \li1112\ri512\fi0 \ldblquote The implementation of the missing functions are beyond the scope of this thesis. They are left to the developers of the Linux kernel.\rdblquote \par }\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \li600\fi0 . See page {\field{\*\fldinst{\lang1024 PAGEREF BMimplementation \\* MERGEFORMAT }}{\fldrslt{implementation}}}\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Changed the text {\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \li1112\ri512\fi0 \ldblquote Many combinations are possible but I have only seen a few referred to.\rdblquote \par }\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \li600\fi0 on page {\field{\*\fldinst{\lang1024 PAGEREF BMchange10 \\* MERGEFORMAT }}{\fldrslt{change10}}} to {\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \li1112\ri512\fi0 \ldblquote Many other combinations are possible.\rdblquote \par }\pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Added {\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \li1112\ri512\fi0 \ldblquote There are more kernel options in the Linux kernel then those mentioned in this thesis, but due to the lack of missing information if those functions are available or not on the other operating systems and if they are implemented in the kernel, they are not mentioned in this thesis. \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \li1112\ri512\fi0 This is also true for some functions that the other operating systems have, but that couldn\rquote t be confirmed if they existed in the Linux kernel.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \li1112\ri512\fi0 This would lead to a incorrect and unfair analys of the functions in the kernels.\rdblquote \par }\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \li600\fi0 to section \ldblquote DELIMINATION OF THE PROBLEM AREA\rdblquote . See page {\field{\*\fldinst{\lang1024 PAGEREF BMdelimination \\* MERGEFORMAT }}{\fldrslt{delimination}}}.\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Added a picture to the NUMA section to show what SMP and NUMA is. \par }\column \pard\plain\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \sb70 \fi0 Chapter 1\par \pard\plain\s2\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \sb250 \fi0 INTRODUCTION\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb250 \fi0 Linux is a free clone of the operating system Unix, created by Linus Torvald, originally developed as a hobby project. It was first developed for 32-bit x86-based PCs{\cs62\super\chftn} {\*\footnote\pard \s65\ql\fi-113\li397\lin397\f0\fs20{\cs62\super\chftn} 386 or higher.} . These days it also runs on various other computer architectures. Here is a list of the supported architectures that Linux runs on [{\field{\*\fldinst{\lang1024 REF BIB_24 \\* MERGEFORMAT }}{\fldrslt{67}}} ]: {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Compaq Alpha AXP \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Sun \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab SPARC \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab UltraSPARC \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Motorola 68000 \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab PowerPC \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab ARM \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Hitachi SuperH \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab IBM S/390 \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab MIPS \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab HP PA-RISC \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Intel IA-64 \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab DEC VAX \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab AMD x86-64{\cs62\super\chftn} {\*\footnote\pard \s65\ql\fi-113\li397\lin397\f0\fs20{\cs62\super\chftn} Port is currently in progress.} \par }\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \fi0 The popularity of Linux among home users is increasing rapidly, and contributed to a wider acceptance of UNIX among home users [{\field{\*\fldinst{\lang1024 REF BIB_3 \\* MERGEFORMAT }}{\fldrslt{77}}} ]. Linux is also beginning to get into the embedded/PDA market [{\field{\*\fldinst{\lang1024 REF BIB_2 \\* MERGEFORMAT }}{\fldrslt{63}}} ]. Linux is having more difficulty in being established on the enterprise server market, where it is mostly used for Internet related tasks [{\field{\*\fldinst{\lang1024 REF BIB_3 \\* MERGEFORMAT }}{\fldrslt{77}}} ]. This document is going to encounter what features the Linux kernel is lacking in comparation to other Unix kernel.\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb250 \fi0 1.1 PROBLEM DEFINITION\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \fi0 The major obstacle Linux is having is in getting into the enterprise server market. Whenever Linux gets into a corporation it\rquote s only used for Internet related assignments, and not in the "heart" of the corporation. [{\field{\*\fldinst{\lang1024 REF BIB_4 \\* MERGEFORMAT }}{\fldrslt{64}}} ] Historically, large corporations have steered clear of free software due to the unfounded assumption that anything free can\rquote t be worthwhile and also because Linux has a reputation of being unstable, lack of performance, support, and to not provide for the high degree of security that the enterprises requires about redundancy and high availability in comparison to other UNIX operating systems and Microsoft Windows NT/200 operating systems. This myth are somewhat dispelled in reference. [{\field{\*\fldinst{\lang1024 REF BIB_5 \\* MERGEFORMAT }}{\fldrslt{65}}} ]\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb250 \fi0 1.2 AIM\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \fi0 This report will look at what the other Unix systems used on the enterprise server market, have support for in the kernel that Linux doesn\rquote t have. The UNIX operating systems that are going to be measure up against Linux latest kernel are:\par {{\pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab AIX{\cs62\super\chftn} {\*\footnote\pard \s65\ql\fi-113\li397\lin397\f0\fs20{\cs62\super\chftn} AIX is copyrighted by IBM.} \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab True64 UNIX{\cs62\super\chftn} {\*\footnote\pard \s65\ql\fi-113\li397\lin397\f0\fs20{\cs62\super\chftn} Tru64 UNIX is copyrighted by Compaq.} \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Solaris{\cs62\super\chftn} {\*\footnote\pard \s65\ql\fi-113\li397\lin397\f0\fs20{\cs62\super\chftn} Solaris is copyrighted by Sun Microsystems.} \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab HP-UX{\cs62\super\chftn} {\*\footnote\pard \s65\ql\fi-113\li397\lin397\f0\fs20{\cs62\super\chftn} HP-UX is copyrighted by Hewlett Packard.} \par }}\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \fi0 The latest official, not modified version of every operating system is utilized. Ultimately resolve what features Linux needs to implement in the kernel, in comparison to the Unix operating system referred to above, so that it can be established and used in the enterprise market or in the government agencies.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \fi0 The report might be used as a guide to the enterprises or governments that are planning on adapting Linux or to give a indication to the Linux kernel developers on what features Linux would have to implement in the kernel in comparison to the above mentioned operating system to get an better acceptance and be more widely used in the enterprise/government market. \par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb250 \fi0 1.3 QUESTIONS AT ISSUE\par {\pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab What features doesn\rquote t Linux have in the kernel that other Unix kernels have? \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Does any of the other Unix operating system have more features than Linux? \par }\pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb310 \fi0 1.4 EXPECTED RESULT\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \fi0 The expected result is that Linux is ready for the enterprise market, because it probably has all the features that all the other UNIX system already have. \par \page \pard\plain\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \sb10 \fi0 Chapter 2\par \pard\plain\s2\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \sb250 \fi0 THEORETICAL BACKGROUND\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb490 \fi0 2.1 KERNEL/OPERATING SYSTEM\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \fi0 A kernel is merely a computer program that acts as a mediator through which the user interacts with the computer and its components and peripheral devices (processor, processes, files, disks, terminals, printers, plotters, etc.). A UNIX operating system consists of a kernel and some system programs. There are also some application programs for doing work. The kernel is the heart of the operating system{\cs62\super\chftn} {\*\footnote\pard \s65\ql\fi-113\li397\lin397\f0\fs20{\cs62\super\chftn} In fact, it is often mistakenly considered to be the operating system itself, but it is not. An operating system provides many more services than a plain kernel.} . It keeps track of files on the disk, starts programs and runs them concurrently, assigns memory and other resources to various processes, receives packets from and sends packets to the network, and so on. The kernel does very little by itself, but it provides tools with which all services can be built. It also prevents anyone from accessing the hardware directly, forcing everyone to use the tools it provides. This way the kernel provides some protection for users from each other. The tools provided by the kernel are used via system calls. When loaded, the module code resides in the kernel\rquote s address space and executes entirely within the context of the kernel. [{\field{\*\fldinst{\lang1024 REF BIB_15 \\* MERGEFORMAT }}{\fldrslt{3}}} ]\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \fi0 Everything that the kernel support does not have to be in memory all the time. Now days most of the kernels are modular. It means that some system functions are loaded into memory when needed.A kernel module is simply an object file containing routines and/or data to load into a running kernel. [{\field{\*\fldinst{\lang1024 REF BIB_15 \\* MERGEFORMAT }}{\fldrslt{3}}} ]\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \fi0 The system programs use the tools provided by the kernel to implement the various services required from an operating system. System programs, and all other programs, run \lquote on top of the kernel\rquote , in what is called the user mode. The difference between system and application programs is one of intent: applications are intended for getting useful things done (or for playing, if it happens to be a game), whereas system programs are needed to get the system working. A word processor is an application; telnet is a system program. The difference is often somewhat blurry. [{\field{\*\fldinst{\lang1024 REF BIB_15 \\* MERGEFORMAT }}{\fldrslt{3}}} ]\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \fi0 An operating system can also contain compilers and their corresponding libraries (GCC and the C library in particular under Linux), although not all programming languages need be part of the operating system. Documentation, and sometimes even games, can also be part of it. Traditionally, the operating system has been defined by the contents of the installation disks; with Linux it is not as clear since it is spread all over the FTP sites of the world or bundled with different distributions. [{\field{\*\fldinst{\lang1024 REF BIB_15 \\* MERGEFORMAT }}{\fldrslt{3}}} ]\par {\pard\plain\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20\sl240\slmult1 \sb250 \fi0 {\par \pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \sb10 \fi0 **Missing** \par }\pard\plain\s30\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 {Figure {\*\bkmkstart BMfig_OperatingSystem}2.1{\*\bkmkend BMfig_OperatingSystem}: Block diagram of an operating system.}{\field{\*\fldinst TC "2.1 Block diagram of an operating system." \\f f}{\fldrslt }}\par }\pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb480 \fi0 2.2 HISTORY OF UNIX\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \fi0 Dennis Ritchie and Ken Thompson at Bell Laboratories developed UNIX on a PDP-7 in the late 1960s; it was first called UNIX in 1970. After 1975, UNIX developed along two separate branches leading to Berkeley (BSD) UNIX and System V UNIX. Nowadays, System V UNIX is available on most computers but different to popular belief, there is no such thing as a "standard" UNIX version. Although the basic commands are available in most UNIX implementations, hardware vendors like to add non-standard options and an identical item commands to tailor their UNIX to their machines. Standardization is, however, being undertaken by the Open Software Foundation (OSF) and, separately, by Unix International; the first precede, OSF/1, is running on the new DEC an Alpha computer. [{\field{\*\fldinst{\lang1024 REF BIB_6 \\* MERGEFORMAT }}{\fldrslt{2}}} ]\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \fi0 Since the mid-1980s approximately, UNIX has evolved into the operating system of choice for most machines (probably because it is cheap for a hardware vendor to adopt it), which means that users in a multi-vendor computer environment no longer have to learn a new operating system whenever they get a new computer (now they only have to familiarize themselves with the system-specific extensions). [{\field{\*\fldinst{\lang1024 REF BIB_6 \\* MERGEFORMAT }}{\fldrslt{2}}} ]\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \fi0 UNIX does have some strong points: it is fairly portable, flexible (i.e., easy to change, adapt and extend) and contains several powerful utilities. Also, it supports multiple users and multi-tasking. Nevertheless, UNIX is still very much an operating system for computer programmers; in skilled hands, it is very powerful, but to the novice end-user it is sometimes a nightmare (system-specific extensions, inconsistent syntax). Fortunately, on the modern graphics workstations more and more tools become available which make life easier. [{\field{\*\fldinst{\lang1024 REF BIB_6 \\* MERGEFORMAT }}{\fldrslt{2}}} ]\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb250 \fi0 2.3 UNIX PRODUCT OVERVIEW\par {\pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b AIX} {\cs62\super\chftn} {\*\footnote\pard \s65\ql\fi-113\li397\lin397\f0\fs20{\cs62\super\chftn} AIX is copyrighted by IBM.} was the first major second-generation UNIX product to ship after Sun and HP established its UNIX beachheads in the 1980s. [{\field{\*\fldinst{\lang1024 REF BIB_6 \\* MERGEFORMAT }}{\fldrslt{2}}} ] AIX 5L is the first version of AIX to support platforms other than IBM\rquote s Power-based hardware. This version runs also on systems based on Intel\rquote s upcoming 64-bit Itanium (IA-64) processor, putting IBM in a strong position to take an early lead on IA-64 with a production-grade UNIX system available on the day of shipment. It now also has the capability to run Linux programs, which are compiled with their "AIX Toolbox for Linux" package. [{\field{\*\fldinst{\lang1024 REF BIB_7 \\* MERGEFORMAT }}{\fldrslt{7}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b HP-UX} {\cs62\super\chftn} {\*\footnote\pard \s65\ql\fi-113\li397\lin397\f0\fs20{\cs62\super\chftn} HP-UX is copyrighted by Hewlett Packard.} \endash HP has long been a leading supplier of commercial UNIX solutions, succeeding in part by emphasizing business-oriented factors such as quality, investment protection, consulting abilities, and support. In the 80s, HP was one of the first major vendors to predict the market potential of an improve and robust UNIX operating system. HP seeks to position HP-UX as the preferred enterprise UNIX for next-generation commodity servers based on IA-64. Due in part to its focus on the needs of business users, HP has a history of introducing advanced UNIX functions conservatively in HP-UX, optimizing instead for criteria such as stability and investment protection. But with HP-UX 11i announced in July 2000, HP clearly showed its intensions about pushing HP-UX technically, including a burst of competitive tactical features in the newest release. [{\field{\*\fldinst{\lang1024 REF BIB_8 \\* MERGEFORMAT }}{\fldrslt{9}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b SOLARIS 8} {\cs62\super\chftn} {\*\footnote\pard \s65\ql\fi-113\li397\lin397\f0\fs20{\cs62\super\chftn} Solaris is copyrighted by Sun Microsystems.} \endash Sun originally made UNIX fashionable. After establishing itself as a leading supplier of high-performance workstations during the 1980s and early 1990s, Sun shifted its strategic goal to becoming a first-tier vendor of enterprise servers. [{\field{\*\fldinst{\lang1024 REF BIB_6 \\* MERGEFORMAT }}{\fldrslt{2}}} ] Sun announced the Solaris 8 release on January 26, 2000. Sun also announced the free access to the Solaris source and end-user binary. The Solaris 8 Operating Environment is available for both the SPARC(tm) and Intel platforms. [{\field{\*\fldinst{\lang1024 REF BIB_9 \\* MERGEFORMAT }}{\fldrslt{18}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b TRU64 UNIX} {\cs62\super\chftn} {\*\footnote\pard \s65\ql\fi-113\li397\lin397\f0\fs20{\cs62\super\chftn} Tru64 UNIX is copyrighted by Compaq.} derives from a long and sometimes contentious relationship between UNIX culture and Digital Equipment Corporation, which Compaq purchased in early 1998. Unix was born and bred on Digital hardware in the 1970s. AT&T and universities mostly drove UNIX development, but Digital always maintained a UNIX group to develop and support drivers as well as to test new designs on UNIX. Digital eventually released ULTRIX, which was UNIX improved by clearer documentation, enhancements specific to Digital hardware, and support services. As the industry began to use UNIX more, Digital along with other vendors, funded efforts such as the X Window System, the Open Software Foundation (OSF) initiative. Tru64 UNIX became the first in the industry to move to 64 bits, and also played an early role in the creation of Linux by donating resources and equipment so that Linux had a native Alpha port by 1994. [{\field{\*\fldinst{\lang1024 REF BIB_6 \\* MERGEFORMAT }}{\fldrslt{2}}} ] The latest Tru64 UNIX v5.1 was released in the fall of 2000. Today, Compaq\rquote s Alpha UNIX business is focused on five strategic markets: Business Intelligence, High Performance Technical Computing, Telco and Internet Applications, and Enterprise Applications. [{\field{\*\fldinst{\lang1024 REF BIB_10 \\* MERGEFORMAT }}{\fldrslt{24}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b LINUX} \endash Linus Torvalds, a Finnish student, first developed Linux{\cs62\super\chftn} {\*\footnote\pard \s65\ql\fi-113\li397\lin397\f0\fs20{\cs62\super\chftn} Linux is a trademark by Linus Torvalds.} in 1991. He developed a minimal Unix kernel and posted a message to an Internet newsgroup, asking if anyone would be interested in helping him to develop it. First tens, then hundreds of individuals began dedicating their free time to developing Linux. Now the number of volunteers has grown into the thousands. Individuals volunteer their time to perform such tasks as kernel debugging, quality control, and writing documentation.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \li600\fi0 A Linux distribution includes the kernel and user utilities from the GNU system, developed by the Free Software Foundation since 1982, which makes it a complete operating system. This tools have been in development for about a decade before the Linux development started. The utilities/tools allows Linux distributions to have a complete set of tools that can be expected of an UNIX operating system. \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \li600\fi0 There are various distributions that are free to download from the Internet or that you can buy for a small amount of money. The result is a commercial operating system that rivals, or even exceeds, commercial releases of Unix available today. Its stability and breadth of features has captured the attention of network administrators who have deployed Linux for file, print and Web servers. Linux is one of the most popular UNIX clones among home users, which has contributed to a wider acceptance and knowledge of UNIX among end users, where it\rquote s usage is increasing rapidly. Linux is also starting to get its foot into the embedded and corporation market. [{\field{\*\fldinst{\lang1024 REF BIB_24 \\* MERGEFORMAT }}{\fldrslt{67}}} ]\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \li600\fi0 The latest stable release branch is version 2.4, which was released on the 4:th of January 2001, which includes many improved enhancements related to the previous versions, the most notable improvement is support for the multitude of printers, digital cameras, scanners, keyboards, mice, network cards, modems, Zip drives and other devices that plug into the universal serial bus (USB) port, SMP, and 3-D accelerated cards. The new kernel is already included in various Linux distributions (SuSe, Linux Mandrake, Red Hat\u8230?. [{\field{\*\fldinst{\lang1024 REF BIB_12 \\* MERGEFORMAT }}{\fldrslt{66}}} ] \par }\pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb310 \fi0 2.4 PREVIOUS RESEARCH\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \fi0 There is no known research of this kind about Linux. The latest kernel version 2.4.x branch, was released on the 4:th of January 2001 [{\field{\*\fldinst{\lang1024 REF BIB_12 \\* MERGEFORMAT }}{\fldrslt{66}}} ]. If any similar research before has been done, it would be with an older branch of the kernel, which means that the research is not up to date and hence not the same as this report. There is a research by D.H. Brown Associates, Inc that compares AIX 4.3.3, HP-UX 11i, Solaris 8, Tru64 UNIX 5.1 and UNIXWARE 7.1.1 to each other, Linux is never compared in this studies. [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb250 \fi0 {\*\bkmkstart BMimportanttheories}2.5{\*\bkmkend BMimportanttheories} IMPORTANT THEORIES\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb190 \fi0 2.5.1 KERNEL SPECIFIC FEATURES\par {\pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b KERNEL THREADS} {\*\bkmkstart BMkernel_threads}{\*\bkmkend BMkernel_threads}\endash A thread (as defined by Maurice Bach\rquote s \ldblquote The Design of the UNIX Operating System\rdblquote ) is an independent flow of control within a process, composed of a context (including register set and a program counter) and a sequence of instructions to execute. The traditional flow of control within a program has been a process with a single context of registers, following a single path through the code. This is referred to as the \ldblquote process-base\rdblquote or \ldblquote single-threaded model\rdblquote . For an application in a single-threaded model to handle multiple tasks, it would have to break those tasks up into multiple processes, coordinate with signal handlers to provide some concurrency, or simply deal with those tasks serially (one after the other). [{\field{\*\fldinst{\lang1024 REF BIB_32 \\* MERGEFORMAT }}{\fldrslt{32}}} ] In this case it is the kernel itself and not a user-space process that is threaded. This allows for independent tasks in the kernel to be run synchronously instead of being forced to use asynchronous multiplexing between activities. [{\field{\*\fldinst{\lang1024 REF BIB_15 \\* MERGEFORMAT }}{\fldrslt{3}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b HOT SWAP} {\*\bkmkstart BMhotswap}{\*\bkmkend BMhotswap}\endash Allows changing peripheral while the computer is running. This means that there is no need to stop the system while hardware maintenance is done (i.e. changing a faulty hard disk). [{\field{\*\fldinst{\lang1024 REF BIB_22 \\* MERGEFORMAT }}{\fldrslt{30}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b SYSV INTERPROCESS COMMUNICATION (IPC)} {\*\bkmkstart BMipc}{\*\bkmkend BMipc} is a set of programming interface that allow a programmer to create and manage individual program process that can run concurrently in an operating system. This allows a program to handle many user requests at the same time. Since a single user request may result in multiple processes running in the operating system on the user\rquote s behalf, the processes need to communicate with other. The IPC interfaces make this possible. Each IPC method has its own advantages and limitations so it is not unusual for a single program to use all of the IPC methods. IPC methods include: [{\field{\*\fldinst{\lang1024 REF BIB_15 \\* MERGEFORMAT }}{\fldrslt{3}}} ]\par {\pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1200\fi-300 \bullet\tab pipe and named pipe \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1200\fi-300 \bullet\tab message queueing \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1200\fi-300 \bullet\tab semaphore \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1200\fi-300 \bullet\tab shared memory \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1200\fi-300 \bullet\tab sockets \par }\pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b DYNAMIC PROCESSOR RESILIENCE} {\*\bkmkstart BMdynprocres}{\*\bkmkend BMdynprocres} \endash The operating system isolates faulty CPUs. In the event of a non-fatal error that allows the system to continue processing, the system discontinues the usage of the failed CPU. If the system crashes because of the faulty CPU, the system will restart and isolate the faulty CPU.\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b DYNAMIC MEMORY RESILIENCE} {\*\bkmkstart BMdynmemres}{\*\bkmkend BMdynmemres} allow the operating system to isolate faulty memory areas that suffer from single-bit errors, so that the software wont use any of unreliable memory are. [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b DYNAMIC PAGE SIZING} {\*\bkmkstart BMdynpagesize}{\*\bkmkend BMdynpagesize} \endash UNIX operating systems normally uses fixed\endash size pages to perform I/O operations. But some application may benefit from variable page sizes. For example, programs that uses many small files (such as e-mail servers) may operate more efficiently with small pages, while I/O\endash intensive programs using large blocks transfers may run better with larger page sizes. [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b ALTERNATE I/O PATHING} {\*\bkmkstart BMaltiopath}{\*\bkmkend BMaltiopath} allows the operating system to re-route the I/O of devices, such as disk or network adapters, to a backup device, in case of failure. [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b LIVE UPGRADE} {\*\bkmkstart BMliveupg}{\*\bkmkend BMliveupg} allows installation of operating system image to occur simultaneously while the system is being use.\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b BSD Process Accounting} {\*\bkmkstart BMprocacc}{\*\bkmkend BMprocacc}allow for a user-space program to record detailed information about any particular process, how much memory and CPU cycles it utilized, the owner, when it began and ended, etc. \par }\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb190 \fi0 2.5.2 DISTRIBUTED SYSTEMS\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \fi0 The normal usage of distributed systems is to archive high-performance systems, load-balancing{\cs62\super\chftn} {\*\footnote\pard \s65\ql\fi-113\li397\lin397\f0\fs20{\cs62\super\chftn} The main system distributes the system load between the different CPUs belonging to the system.} and high-availability{\cs62\super\chftn} {\*\footnote\pard \s65\ql\fi-113\li397\lin397\f0\fs20{\cs62\super\chftn} Systems that no matter what, have to run 24 hour a day and 7 days a week.} systems or any combination of them. [{\field{\*\fldinst{\lang1024 REF BIB_15 \\* MERGEFORMAT }}{\fldrslt{3}}} ]\par {\pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b SYMMETRIC MULTI-PROCESSING MODEL (SMP)} {\*\bkmkstart BMsmp}{\*\bkmkend BMsmp} \endash In a symmetric multiprocessing model (often abbreviated as SMP) all the processors share identical copy of the same operating system, memory, I/O resources, and the copies of the operating system communicate with one another as needed. Since all processors in an SMP server must be able to access all system resources simultaneously, operating systems are deeply involved in the quality of an SMP implementation. Indeed, enabling a kernel to effectively manage large numbers of processors has traditionally presented an extraordinary and tedious challenge for operating-system developers. [{\field{\*\fldinst{\lang1024 REF BIB_15 \\* MERGEFORMAT }}{\fldrslt{3}}} ]\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \li600\fi0 There is no generally appropriate way to anticipate how well an application will scale on an SMP system under real\endash world conditions, but the TCP-C (Transaction Processing Performance Council) benchmark is the most widely accepted method to measure SMP systems. TCP-C are vendor-neutral and subjected to rigorous auditing procedures. The test stresses a number of system components that are frequently exercised in commercial-server applications. [{\field{\*\fldinst{\lang1024 REF BIB_28 \\* MERGEFORMAT }}{\fldrslt{78}}} ]\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \li600\fi0 But as you can read from the TCP-C testes, biggest is not always best, because they don\rquote t scale well. And all vendors seldom sell machines with their maximum amount of possible processors (look at the vendors offerings). [{\field{\*\fldinst{\lang1024 REF BIB_28 \\* MERGEFORMAT }}{\fldrslt{78}}} ] \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b NON-UNIFORM MEMORY ACCESS (NUMA)} {\*\bkmkstart BMnuma}{\*\bkmkend BMnuma} \endash On a multi processor system the processors normally share the same bus to the memory and I/O devices. This means that all CPUs in the system are subjected to the same latency and bandwidth restrictions with respect to accessing the system\rquote s memory and I/O channels. Uniform Memory Access (UMA) is a term sometimes used to describe this system architecture. One way to address this bottleneck is to design a system built from SMP blocks (each with a limited number of CPUs, memory arrays and I/O ports) and add a second-level bus or switch to connect the blocks. Non-Uniform Memory Access (NUMA) is the term used to describe this type of system architecture because it results in a bandwidth and latency difference, depending on whether a particular CPU accesses memory and I/O resources locally (in the same building block where the CPU resides) or remotely (in another building block). [{\field{\*\fldinst{\lang1024 REF BIB_14 \\* MERGEFORMAT }}{\fldrslt{27}}} ] \par }\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb190 \fi0 2.5.3 DISTRIBUTED FILE SYSTEMS\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \fi0 Distributed file system stores files on one or more computers called servers, and makes them accessible to other computers called clients, where they appear as normal files. There are several advantages to using file servers: the files are more widely available since many computers can access the servers, and sharing the files from a single location is easier than distributing copies of files to individual clients. Backups and safety of the information are easier to arrange since only the servers need to be backed up. The servers can provide large storage space, which might be costly or impractical to supply to every client. The usefulness of a distributed file system becomes clear when considering a group of employees sharing documents. However, more is possible. For example, sharing application software, and printers are an equally good candidate. In both cases system administration becomes easier [{\field{\*\fldinst{\lang1024 REF BIB_15 \\* MERGEFORMAT }}{\fldrslt{3}}} ].\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \fi0 The protocols that we are going to get in touch with and that makes use of the functionality of an distributed filesystem are: \par {\pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b NETWORK FILE SYSTEM} {\*\bkmkstart BMnfs}{\*\bkmkend BMnfs} was developed by Sun Microsystems and introduced to the market 1984. The most common used version of NFS are version 2 and 3. [{\field{\*\fldinst{\lang1024 REF BIB_15 \\* MERGEFORMAT }}{\fldrslt{3}}} ]\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \li600\fi0 NFS version 3 contains several features to improve performance, reduce server load, and reduce network traffic. Since NFS version 3 is faster for I/O writes, and uses fewer operations over the network, it will use the network more efficient. Higher throughput may make the network busier. NFS version 3 maintains the stateless server design and simple crash recovery of version 2 along with its approach to build a distributed file service from cooperating protocols. [{\field{\*\fldinst{\lang1024 REF BIB_19 \\* MERGEFORMAT }}{\fldrslt{23}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b CODA FILE SYSTEM} {\*\bkmkstart BMcoda}{\*\bkmkend BMcoda} is an experimental file system, with its origin in AFS2{\cs62\super\chftn} {\*\footnote\pard \s65\ql\fi-113\li397\lin397\f0\fs20{\cs62\super\chftn} AFS is marketed, maintained, and extended by Transarc Corporation. AFS is based on a distributed file system originally developed at the Information Technology Center at Carnegie-Mellon University that was called the Andrew File System.} , developed in the group of M. Satyanarayanan at Carnegie Mellon University since 1987. [{\field{\*\fldinst{\lang1024 REF BIB_15 \\* MERGEFORMAT }}{\fldrslt{3}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b SERVER MESSAGE BLOCK} {\*\bkmkstart BMsmb}{\*\bkmkend BMsmb} (commonly abbreviated as SMB) protocol. This protocol is sometimes also referred to as the Common Internet File System (CIFS), LanManager or NetBIOS protocol. IBM and Microsoft developed it. [{\field{\*\fldinst{\lang1024 REF BIB_15 \\* MERGEFORMAT }}{\fldrslt{3}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b APPLETALK} {\*\bkmkstart BMappletalk}{\*\bkmkend BMappletalk} is local area network communication protocol originally created for Apple computers. It allows Macintosh computers to communicate, share resources through the network. [{\field{\*\fldinst{\lang1024 REF BIB_30 \\* MERGEFORMAT }}{\fldrslt{5}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b NETWARE} {\*\bkmkstart BMnetware}{\*\bkmkend BMnetware} made by Novell. Initially very successful in installing its products in large and small office local area networks (LANs), Novell has redesigned (or at least re-featured) NetWare to work successfully as part of larger and heterogeneous networks, including the Internet. [{\field{\*\fldinst{\lang1024 REF BIB_18 \\* MERGEFORMAT }}{\fldrslt{4}}} ] \par }\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb190 \fi0 2.5.4 FILE SYSTEMS\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \fi0 Almost every operating system has its own filesystem (the mechanism for storage and access to the data and programs on the storage). [{\field{\*\fldinst{\lang1024 REF BIB_15 \\* MERGEFORMAT }}{\fldrslt{3}}} ]\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \fi0 The support of various file systems allows the system to be used for reading/writing to media in an environment with different other operating systems, without the usage of distributed filesystem method. \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \fi0 Here is a short presentation of some{\cs62\super\chftn} {\*\footnote\pard \s65\ql\fi-113\li397\lin397\f0\fs20{\cs62\super\chftn} There are to many to mention them all in this thesis.} of the file systems [{\field{\*\fldinst{\lang1024 REF BIB_24 \\* MERGEFORMAT }}{\fldrslt{67}}} ]:\par {\pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b VFAT} \endash Windows. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b EXT} \endash Used by older Linux. There is a newer improved version called EXT2. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b ISO 9660} \endash A filesystem standard for CD\rquote s. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b NTFS} \endash NT. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b HPFS} \endash OS/2. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b UFS} \endash used by System V; Coherent; Xenix; BSD; and derivatives like SunOS, FreeBSD, NetBSD, and NeXTStep. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b HFS} \endash The older Macintosh Hierarchical File System. The newer filesystem is called HFS+. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b AFFS} \endash Amiga Fast File System. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b Memory File System} {\*\bkmkstart BMmfs}{\*\bkmkend BMmfs} \endash The file\endash system resides completely in virtual memory. \par }\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \fi0 The techniques described below can be stacked in a number of ways to maximize performance and reliability, though at the cost of added complexity. \par {\pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b REDUNDANT ARRAY OF INDEPENDENT DISKS (RAID)} {\*\bkmkstart BMraid}{\*\bkmkend BMraid} is a way of storing the same data in different places (thus, redundantly) on multiple hard disk . By placing data on multiple disks, I/O operations can overlap in a balanced way, improving performance. Since multiple disks increases the mean time between failure (MTBF), storing data redundantly also increases fault-tolerance. [{\field{\*\fldinst{\lang1024 REF BIB_15 \\* MERGEFORMAT }}{\fldrslt{3}}} ]\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \li600\fi0 A RAID appears to the operating system to be a single logical hard disk. RAID employs the technique of striping , which involves partitioning each driver\rquote s storage space into units ranging from a sector (512 bytes) up to several megabytes. The stripes of all the disks are interleaved and addressed in order. [{\field{\*\fldinst{\lang1024 REF BIB_15 \\* MERGEFORMAT }}{\fldrslt{3}}} ]\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \li600\fi0 In a single-user system where large records, such as medical or other scientific images, are stored, the stripes are typically set up to be small (perhaps 512 bytes) so that a single record spans all disks and can be accessed quickly by reading all disks at the same time. [{\field{\*\fldinst{\lang1024 REF BIB_15 \\* MERGEFORMAT }}{\fldrslt{3}}} ]\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \li600\fi0 In a multi-user system, better performance requires establishing a stripe wide enough to hold the typical or maximum size record. This allows overlapped disk I/O across drives. There exists two methods on implementing RAID: [{\field{\*\fldinst{\lang1024 REF BIB_15 \\* MERGEFORMAT }}{\fldrslt{3}}} ]\par {\pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1200\fi-300 {\b Software RAID} \endash Implemented on the kernel. Slow but cheap. This is the one used in this thesis for comparation. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1200\fi-300 {\b Hardware RAID} \endash Implemented in the hardware and use on SAN\rquote s and almost every SCSI controller has support for it. In comparation to software RAID, hardware RAID is more expensive but also much faster, efficient and has more functions: remote copy, flashcopy\u8230? \par }\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \li600\fi-300 There are at least nine types of RAID plus a non-redundant array (RAID-0): [{\field{\*\fldinst{\lang1024 REF BIB_31 \\* MERGEFORMAT }}{\fldrslt{31}}} ] {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1200\fi-300 {\b RAID-0} \endash This technique has striping but no redundancy of data. It offers the best performance but no fault-tolerance. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1200\fi-300 {\b RAID-1} \endash This type is also known as disk mirroring and consists of at least two drives that duplicate the storage of data. There is no striping. Read performance is improved since either disk can be read at the same time. Write performance is the same as for single disk storage. RAID-1 provides the best performance and the best fault-tolerance in a multi-user system. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1200\fi-300 {\b RAID-2} \endash This type uses striping across disks with some disks storing error checking and correcting (ECC) information. It has no advantage over RAID-3.{\cs62\super\chftn} {\*\footnote\pard \s65\ql\fi-113\li397\lin397\f0\fs20{\cs62\super\chftn} RAID-2 and -3 requires spindle synchronization in order to achieve good performance. Very few commodity drives support that today,therefore these RAID levels are almost never used.} \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1200\fi-300 {\b RAID-3} \endash This type uses striping and dedicates one drive to storing parity information. The embedded error checking (ECC) information is used to detect errors. Data recovery is accomplished by calculating the exclusive OR (XOR) of the information recorded on the other drives. Since an I/O operation addresses all drives at the same time, RAID-3 cannot overlap I/O. For this reason, RAID-3 is best for single-user systems with long record applications. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1200\fi-300 {\b RAID-4} \endash This type uses large stripes, which means you can read records from any single drive. This allows you to take advantage of overlapped I/O for read operations. Since all write operations have to update the parity drive, no I/O overlapping is possible. RAID-4 offers no advantage over RAID-5. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1200\fi-300 {\b RAID-5} \endash This type includes a rotating parity array, thus addressing the write limitation in RAID-4. Thus, all read and write operations can be overlapped. RAID-5 stores parity information but not redundant data (but parity information can be used to reconstruct data). RAID-5 requires at least three and usually five disks for the array. It\rquote s best for multi-user systems in which performance is not critical or which do few write operations. \par }\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \li600\fi0 There are also hybrids available based on RAID 0 or 1 and one other level. Many other combinations are possible{\*\bkmkstart BMchange10}{\*\bkmkend BMchange10}. These are more complex than the above mentioned RAID levels. \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \li600\fi-300 RAID 0/1 combines striping with duplication which gives very high transfers combined with fast seeks as well as redundancy. The disadvantage is high disk consumption as well as the above mentioned complexity. \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \li600\fi-300 RAID 1/5 combines the speed and redundancy benefits of RAID5 with the fast seek of RAID1. Redundancy is improved compared to RAID 0/1 but disk consumption is still substantial. Implementing such a system would involve typically more than 6 drives, perhaps even several controllers or SCSI channels.\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b CACHEFS} {\*\bkmkstart BMcachefs}{\*\bkmkend BMcachefs} improves the efficiency of the client\endash side NFS access by the use of a caching mechanism. [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b AUTOFS} {\*\bkmkstart BMautofs}{\*\bkmkend BMautofs} allows an operating system to mount remote FS file systems automatically. [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b JOURNALING FILE SYSTEM} {\*\bkmkstart BMjfs}{\*\bkmkend BMjfs} keeps a journal of the activity on your hard disk, so that if your computer crashed for some reason, it will not need to run the file system check procedure. This means a faster start up of a crashed system. Examples of journaling file system are ReiserFS, XFS, JFS and ext3. [{\field{\*\fldinst{\lang1024 REF BIB_16 \\* MERGEFORMAT }}{\fldrslt{28}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b LOGICAL VOLUME MANAGER (LVM)} {\*\bkmkstart BMlvm}{\*\bkmkend BMlvm} provides an abstraction of the physical disks that makes the handling of larger file systems and disk arrays easier to administer. It does this by grouping sets of disks (physical volumes) into a pool (volume group). The volume group can be in turn be carved up into virtual partitions (logical volumes) that behave just like the ordinary disk block devices, except that (unlike disk partitions) they can be dynamically grown, shrunk and moved about without rebooting the system or entering into maintenance/stand-alone mode. A file system (or a swap space, or a raw device) sits on top of a logical volume. LVM utilities usually simplify adding, moving and removing hard drives, by abstracting away the file system mount points (/, /usr, /opt, etc) from the hard drive devices (/dev/hda1, /dev/sdb2, etc.). [{\field{\*\fldinst{\lang1024 REF BIB_17 \\* MERGEFORMAT }}{\fldrslt{29}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b ACCESS CONTROL LIST (ACL)} {\*\bkmkstart BMacl}{\*\bkmkend BMacl} \endash Each file and directory has an access list, specifying which users and the type of access they have to it. [{\field{\*\fldinst{\lang1024 REF BIB_15 \\* MERGEFORMAT }}{\fldrslt{3}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b HIERARCHICAL STORAGE MANAGEMENT (HSM)} {\*\bkmkstart BMhsm}{\*\bkmkend BMhsm} systems transparently move files between disk and secondary storage (such as tape), thus providing a large "virtual" disk farm. [{\field{\*\fldinst{\lang1024 REF BIB_15 \\* MERGEFORMAT }}{\fldrslt{3}}} ] \par }\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb190 \fi0 2.5.5 NETWORK\par {\pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b IP V4} {\*\bkmkstart BMipv4}{\*\bkmkend BMipv4}\endash Internet Protocol version 4 is the protocol used on the Internet today. Works on the network layer on the OSI{\cs62\super\chftn} {\*\footnote\pard \s65\ql\fi-113\li397\lin397\f0\fs20{\cs62\super\chftn} A network architecture based on a proposal developed by the International Standard Organization (ISO). Its full name is ISO OSI (Open Systems Interconnection) Reference Model } model [{\field{\*\fldinst{\lang1024 REF BIB_18 \\* MERGEFORMAT }}{\fldrslt{4}}} ] and is described in RFC{\cs62\super\chftn} {\*\footnote\pard \s65\ql\fi-113\li397\lin397\f0\fs20{\cs62\super\chftn} Technical reports called Request For Comments abbreviated as RFC are stored on-line and can be fetched by anyone interested in them at he following url {\f2 http://dir.yahoo.com/Computers_and_Internet/Standards/RFCs/}. } 791.\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b IP V6} {\*\bkmkstart BMipv6}{\*\bkmkend BMipv6}\endash A new version of IP (see previous section), support for a near-infinite number of IP addresses, a number so large that it approaches the number of molecules on the planet, solves a variety of problems (specially with security) with the IP v4 and is more flexible and efficient as well. IP v6 is described in RFC 1550. [{\field{\*\fldinst{\lang1024 REF BIB_18 \\* MERGEFORMAT }}{\fldrslt{4}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b VIRTUAL IP ADDRESSES} allows having a backup network card in case of the one in use fails to function. Then the backup car will be assigned the IP address of the original network card, and the user will not notice anything, except for a delay in response. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b SIMPLE NETWORK MANAGEMENT PROTOCOL (SNMP)} {\*\bkmkstart BMsnmp}{\*\bkmkend BMsnmp} \endash A protocol that is described in RFC 1448 and is a standard in the UNIX environment.SNMP is not actually a protocol: it\rquote s a client server application that runs on the UDP (User Datagram Protocol) service of the TCP/IP protocol suite. It was developed to be an efficient means of sending network management information over UDP, using Ports 161(SNMP) and 162 (SNMPTRAP). [{\field{\*\fldinst{\lang1024 REF BIB_15 \\* MERGEFORMAT }}{\fldrslt{3}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b DECNET} {\*\bkmkstart BMdecnet}{\*\bkmkend BMdecnet} was designed by Digital as a way to interconnect their range of products. The specifications for DECnet Phase IV are freely available. As with TCP/IP there are a number of higher-level protocols layered on top the basic DECnet protocol to provide services to applications. [{\field{\*\fldinst{\lang1024 REF BIB_30 \\* MERGEFORMAT }}{\fldrslt{5}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b ATTACHED RESOURCE COMPUTER NETWORK (ARCNET)} {\*\bkmkstart BMarcnet}{\*\bkmkend BMarcnet} is a network type created before by Datapoint in the end of 70\rquote s which works in a way similar to popular Ethernet networks but which is also different in some very important ways. First of all, you can get ARCnet cards in at least two speeds: 2.5 Mbps (slower than Ethernet) and 100 Mbps (faster than normal Ethernet). In fact, there are others as well, but these are less common. The different hardware types are not compatible, so you cannot wire a 100 Mbps card to a 2.5 Mbps card. [{\field{\*\fldinst{\lang1024 REF BIB_30 \\* MERGEFORMAT }}{\fldrslt{5}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b ASYNCHRONOUS TRANSFER MODE (ATM)} {\*\bkmkstart BMatm}{\*\bkmkend BMatm} is a dedicated-connection switching technology that organizes digital data into 53-byte cell units and transmits them over a physical medium using digital signal technology. Individually, a cell is processed asynchronously relative to other related cells and is queued before being multiplexed over the transmission path. [{\field{\*\fldinst{\lang1024 REF BIB_18 \\* MERGEFORMAT }}{\fldrslt{4}}} ]\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \li600\fi0 Because ATM is designed to be easily implemented by hardware (rather than software), faster processing and switch speeds are possible. The prespecified bit rates are either 155.520 Mbps or 622.080 Mbps. Speeds on ATM networks can reach 10 Gbps. Along with Synchronous Optical Network (SONET) and several other technologies, ATM is a key component of broadband ISDN (BISDN). [{\field{\*\fldinst{\lang1024 REF BIB_18 \\* MERGEFORMAT }}{\fldrslt{4}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b FIBER DISTRIBUTED DATA INTERFACE (FDDI)} {\*\bkmkstart BMfddi}{\*\bkmkend BMfddi} is a standard for data transmission on fiber optic lines in a local area network (LAN) that can extend in range up to 200 km (124 miles). The FDDI protocol is based on the token ring protocol. In addition to being large geographically, an FDDI local area network can support thousands of users. [{\field{\*\fldinst{\lang1024 REF BIB_18 \\* MERGEFORMAT }}{\fldrslt{4}}} ]\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \li600\fi0 An FDDI network contains two token rings, one for possible backup in case the primary ring fails. The primary ring offers up to 100 Mbps capacity. If the secondary ring is not needed for backup, it can also carry data, extending capacity to 200 Mbps. The single ring can extend the maximum distance; a dual ring can extend 100 km (62 miles). [{\field{\*\fldinst{\lang1024 REF BIB_18 \\* MERGEFORMAT }}{\fldrslt{4}}} ]\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \li600\fi0 FDDI is a product of American National Standards Committee X3-T9 and conforms to the Open Systems Interconnection (OSI ) model of functional layering. It can be used to interconnect LANs using other protocols. FDDI-II is a version of FDDI that adds the capability to add circuit-switched service to the network so that voice signals can also be handled. [{\field{\*\fldinst{\lang1024 REF BIB_18 \\* MERGEFORMAT }}{\fldrslt{4}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b ETHERNET} {\*\bkmkstart BMethernet}{\*\bkmkend BMethernet} is the most widely-installed local area network (LAN) technology. Specified in a standard, IEEE 802.3, Ethernet was originally developed by Xerox and then developed further by Xerox, DEC, and Intel. An Ethernet LAN typically uses coaxial cable or special grades of twisted pair wires. The most commonly installed Ethernet systems are called 10BASE-T and provide transmission speeds up to 10 Mbps. Devices are connected to the cable and compete for access using a Carrier Sense Multiple Access with Collision Detection (CSMA/CD) protocol. [{\field{\*\fldinst{\lang1024 REF BIB_18 \\* MERGEFORMAT }}{\fldrslt{4}}} ]\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \li600\fi0 Fast Ethernet or 100BASE-T provides transmission speeds up to 100 megabits per second and is typically used for LAN backbone systems, supporting workstations with 10BASE-T cards. Gigabit Ethernet provides an even higher level of backbone support at 1000 megabits per second (1 gigabit or 1 billion bits per second). [{\field{\*\fldinst{\lang1024 REF BIB_18 \\* MERGEFORMAT }}{\fldrslt{4}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b TOKEN RING} {\*\bkmkstart BMtokenring}{\*\bkmkend BMtokenring} network is a local area network (LAN) in which all computers are connected in a ring or star topology and a binary digit - or token-passing scheme is used in order to prevent the collision of data between two computers that want to send messages at the same time. The token ring protocol is the second most widely-used protocol on local area networks after Ethernet . The IBM Token Ring protocol led to a standard version, specified as IEEE 802.5. Both protocols are used and are very similar. The IEEE 802.5 token ring technology provides for data transfer rates of either 4 or 16 megabits per second.\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b BONDING/TRUNKING} {\*\bkmkstart BMbonding}{\*\bkmkend BMbonding}\endash This is called Etherchannel by Cisco, Sun Trunking by Sun, Port Trunking by D-Link, and Bonding in Linux. If you have two Ethernet connections to some other computer, you can make them behave like one to double the speed of the connection. [{\field{\*\fldinst{\lang1024 REF BIB_20 \\* MERGEFORMAT }}{\fldrslt{19}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b TRAFFIC CONTROL} {\*\bkmkstart BMtfc}{\*\bkmkend BMtfc} provides administrators more control over who uses their bandwidth. Consider a Service Provider, who wishes to control which visitors to a web site are more important than others (free versus paying customers) and should get a relatively faster and better service. Before traffic control, this would have needed very expensive equipment. For example, depending on the set-up, it could be at the IP, TCP, and UDP etc i.e. control could be provided either by application (FTP gets less bandwidth than HTTP) or per IP address or ranges or a mixture of all these parameters. [{\field{\*\fldinst{\lang1024 REF BIB_21 \\* MERGEFORMAT }}{\fldrslt{6}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b INTERNET PROTOCOL SECURITY} {\*\bkmkstart BMipsec}{\*\bkmkend BMipsec} (IPsec) is a developing standard for security at the network or packet processing layer of network communication.A big advantage of IPsec is that security arrangements can be handled without requiring changes to individual user computers. [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b SIMULTANEOUS IPV4/IPV6 STACKS ON THE SAME NETWORK} {\*\bkmkstart BMipv4ipv6stack}{\*\bkmkend BMipv4ipv6stack} \endash Allows the usage of IPv4 and IPv6 on the same network, allowing both protocols to be used by the server at the same time. [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b IPV6 GATEWAY FACILITIES} {\*\bkmkstart BMipv6gateway}{\*\bkmkend BMipv6gateway} allows the routing of packets from IPv4 networks to IPv6 networks, and vice-versa. [{\field{\*\fldinst{\lang1024 REF BIB_15 \\* MERGEFORMAT }}{\fldrslt{3}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b RSVP} {\*\bkmkstart BMrsvp}{\*\bkmkend BMrsvp} With RSVP, people who want to receive a particular Internet \ldblquote program\rdblquote (think of a television program broadcast over the Internet) can reserve bandwidth through the Internet in advance of the program and be able to receive it at a higher data rate and in a more dependable data flow than usual. [{\field{\*\fldinst{\lang1024 REF BIB_15 \\* MERGEFORMAT }}{\fldrslt{3}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b INTEGRATED SERVICES} {\*\bkmkstart BMintserv}{\*\bkmkend BMintserv} (INTSERV) defines how applications services describe their bandwidth and latency requirements, how this information can be made available to routers (typically via RSVP), and how the appropriate quality of service can be tested and validated. Unlike DiffServ (see below), IntServ routers must classify packets based on several IP packet header fields and maintain state information for each flow. [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b DIFFERENTIATED SERVICES} {\*\bkmkstart BMdiffserv}{\*\bkmkend BMdiffserv}(DIFFSERV or DS) is a protocol for specifying and controlling network traffic by class so that certain types of traffic get precedence - for example, voice traffic, which requires a relatively uninterrupted flow of data, might get precedence over other kinds of traffic. [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b IP MULTIPLEXING / \ldblquote ALIASING\rdblquote } {\*\bkmkstart BMaliasing}{\*\bkmkend BMaliasing} allows a single system to be seen as multiple numeric IP addresses, even on the same network-interface. Not to be confused with IP Multicasting. [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b IP MULTICAST SERVER} {\*\bkmkstart BMipmulticast}{\*\bkmkend BMipmulticast} allows simultaneous transmition of IP packets to multiple hosts, which enables \ldblquote subscription\rdblquote messaging for audio, video, software, or data streams. [{\field{\*\fldinst{\lang1024 REF BIB_15 \\* MERGEFORMAT }}{\fldrslt{3}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b TCP SELECTIVE ACKNOWLEDGEMENT} {\*\bkmkstart BMsack}{\*\bkmkend BMsack} (SACK) allows TCP to recover from multiple losses within transmission windows, providing superior performance in lossy networks, and traffic crossing multiple networks. [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b ATM IP SWITCHING} {\*\bkmkstart BMatmipswitching}{\*\bkmkend BMatmipswitching} Provide the ability to run IP protocol over the ATM protocol. [{\field{\*\fldinst{\lang1024 REF BIB_15 \\* MERGEFORMAT }}{\fldrslt{3}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b MULTILINK PPP} {\*\bkmkstart BMmultilinkppp}{\*\bkmkend BMmultilinkppp} allows two PPP (Point-to-Point protocol) to be used as one, to deliver double throughput. [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b TCP LARGE WINDOWS} {\*\bkmkstart BMrfc1323}{\*\bkmkend BMrfc1323} (RFC 1323) allows the usage of windows that exceed the normal 64 KB limit to improve performance over high-bandwidth networks such as ATM or high-delay networks such as satellite links. [{\field{\*\fldinst{\lang1024 REF BIB_15 \\* MERGEFORMAT }}{\fldrslt{3}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b TCP/IP GRATUITOUS ARP} {\*\bkmkstart BMrfc2002}{\*\bkmkend BMrfc2002} (RFC 2002) Notifies the members of the network that the server associated with an IP address has changed. [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b PATH MTU DISCOVERY} {\*\bkmkstart BMrfc1191}{\*\bkmkend BMrfc1191} (RFC 1191) \endash Router doesn\rquote t break up packets that are too-large. [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b PATH MTU DISCOVERY OVER UDP} {\*\bkmkstart BMpathmtudiscoverudp}{\*\bkmkend BMpathmtudiscoverudp} allows use of Path MTU Discovery (see above) over Universal Data Packet (UDP) connections, rather than the typical Internet Protocol (IP). [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b OPEN SHORTEST PATH FIRST} {\*\bkmkstart BMrfc1533}{\*\bkmkend BMrfc1533} (OSPF \endash RFC 1533) replaces the Routing Information Protocol with a better and faster routing. [{\field{\*\fldinst{\lang1024 REF BIB_15 \\* MERGEFORMAT }}{\fldrslt{3}}} ]\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b IP MULTIPATH ROUTING} {\*\bkmkstart BMipmultipathrouting}{\*\bkmkend BMipmultipathrouting} allows applications to specify multiple paths to a destination on an IP network. [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ] \par }\pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb310 \fi0 {\*\bkmkstart BMdelimination}2.6{\*\bkmkend BMdelimination} DELIMINATION OF THE PROBLEM AREA\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \fi0 This study will compare the latest Linux kernel to the following operating systems:\par {\pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab AIX 5L version 5.1{\cs62\super\chftn} {\*\footnote\pard \s65\ql\fi-113\li397\lin397\f0\fs20{\cs62\super\chftn} AIX is copyrighted by IBM.} \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab True64 UNIX 5.1{\cs62\super\chftn} {\*\footnote\pard \s65\ql\fi-113\li397\lin397\f0\fs20{\cs62\super\chftn} Tru64 UNIX is copyrighted by Compaq.} \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Solaris 8{\cs62\super\chftn} {\*\footnote\pard \s65\ql\fi-113\li397\lin397\f0\fs20{\cs62\super\chftn} Solaris is copyrighted by Sun Microsystems.} \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab HP-UX 11i{\cs62\super\chftn} {\*\footnote\pard \s65\ql\fi-113\li397\lin397\f0\fs20{\cs62\super\chftn} HP-UX is copyrighted by Hewlett Packard.} \par }\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \fi0 The latest release of each operating system will be used in the comparation. Some features that are not stated anywhere that they belong to the kernel are included, since other operating systems have implemented that function in the kernel, or that function is an essential operating system function according to an operating system reference book, like for example the reference book [{\field{\*\fldinst{\lang1024 REF BIB_15 \\* MERGEFORMAT }}{\fldrslt{3}}} ] in the bibliography. The main functions function handled by the kernel are:\par {\pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab device \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab memory \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab filesystem \par }\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \fi0 There are more kernel options in the Linux kernel then those mentioned in this thesis, but due to the lack of missing information if those functions are available or not on the other operating systems and if they are implemented in the kernel, they are not mentioned in this thesis. \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \fi0 This is also true for some functions that the other operating systems have, but that couldn\rquote t be confirmed if they existed in the Linux kernel.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \fi0 This would lead to a incorrect and unfair analys of the functions in the kernels. \par \page \pard\plain\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \sb10 \fi0 Chapter 3\par \pard\plain\s2\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \sb250 \fi0 METHOD\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb490 \fi0 3.1 CHOICE OF METHOD\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \fi0 The information was empirical accumulate and kernel specific functions where sorted out from the rest of other functions. The kernel features where explained, with the help of a descriptive method and then compared to the Linux kernel using a comparative method.\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb250 \fi0 3.2 DESCRIPTION OF METHOD\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \fi0 This study compares five leading UNIX operating systems - IBM AIX 5L v5.1, Hewlett-Packard HP-UX 11i, Sun Solaris 8, Compaq Tru64 UNIX 5.1, and Linux 2.4.5 based on their functional capabilities implemented in the kernel as of May 27, 2001.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \fi0 The information for this thesis was gathered from various sources. The main sources are books, articles, technical specifications, press releases, and technical representatives from the corresponding company (in the Linux case those representatives are available only through a mailing list called \ldblquote Linux kernel development list\rdblquote ).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \fi0 A comparative method compares two or more things to each other and draws conclusions based on the result of the comparison. The following steps where taken in the creation of this thesis:\par {\pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 1.\tab Search for technical papers on the Internet at various supplier\rquote s homepage, and by asking technical personal. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 2.\tab Sort out features that are not in the kernel. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 3.\tab Make a short description of each feature (See section {\field{\*\fldinst{\lang1024 REF BMimportanttheories \\* MERGEFORMAT }}{\fldrslt{2.5}}}). \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 4.\tab Create tables with all kernel features and operating systems (see section {\field{\*\fldinst{\lang1024 REF BMresulttable \\* MERGEFORMAT }}{\fldrslt{5.1}}}). \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 5.\tab Create a summary of features that Linux is lacking by looking at the tables. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 6.\tab Write down the result (see section {\field{\*\fldinst{\lang1024 REF BMresultanalys \\* MERGEFORMAT }}{\fldrslt{5.2}}}). \par }\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \fi0 To arrive at a complete profile of an operating-system product, users should consider a number of factors in addition to those addressed by this thesis. They might be: {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b Application portfolio} An operating system is only useful as the amount of applications available for it. The suitability of an application portfolio for a given user depends on that user\rquote s specific requirements. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b Quality} As the operating system is a technical product, it may be shipped with a number of defects, which are independent of its relative technical richness. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b Vendor support} As a high-end system has many options/functions, operating systems introduce a high burden on request for support. The ability of vendors to meet those support requirements may vary. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b Vendor experience} Vendors offering multiple operating systems may have different levels of experience within their respective product lines, depending on when they entered the market and with what level of commitment. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b Skills availability} This factors applies both to the skills available within a user\rquote s organization and in the market as a whole. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b Hardware/system capabilities} Since an operating system will only perform as well as its underlying hardware, users must remain aware of factors such as processor performance and the SMP ranges available on host platforms. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b Cost} This factor depends not only on operating-system software prices and associated client license fees, but also on any necessary add-on packages, the price and price/performance of underlying hardware, and a wide variety of hard-to-measure "soft costs" related to ongoing management and training. \par }\page \pard\plain\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \sb70 \fi0 Chapter {\*\bkmkstart BMrealization}4{\*\bkmkend BMrealization}\par \pard\plain\s2\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \sb250 \fi0 REALIZATION\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb250 \fi0 Most of the work has been done by reading various different documentation, asking technical support, and identifying if the mentioned functions were implemented in the kernel. The functions was then inserted into a table to finally get to a result. \par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb250 \fi0 {\*\bkmkstart BMimplementation}4.1{\*\bkmkend BMimplementation} IMPLEMENTATION\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \fi0 The implementation of the missing functions are beyond the scope of this thesis. They are left to the developers of the Linux kernel.\par \page \pard\plain\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \sb10 \fi0 Chapter 5\par \pard\plain\s2\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \sb250 \fi0 RESULT\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb490 \fi0 {\*\bkmkstart BMresulttable}5.1{\*\bkmkend BMresulttable} TABLES\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \fi0 Cells with {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b empty} = The author could not verify if the operating system supports that function. The feature will be considered as missing due to the fact that looking for information about something that does not exist is almost impossible to find. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b \'95} = Operating system does support that function. See reference inside the brackets for more information. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b -} = Operating system does not support the function or it is offer as an external program. See reference inside the brackets for more information \par }\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb190 \fi0 {\*\bkmkstart BMchange5}5.1.1{\*\bkmkend BMchange5} TABLE WITH KERNEL SPECIFIC FUNCTIONS\par {\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb70 \fi0 \par {\trowd\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { {\b Feature}}\cell} {\pard\intbl\ql {{\b Linux}}\cell} {\pard\intbl\ql {{\b Solaris}}\cell} {\pard\intbl\ql {{\b AIX}}\cell} {\pard\intbl\ql {{\b Tru64 UNIX }}\cell} {\pard\intbl\ql {{\b HP-UX}}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { Supported Architectures}\cell} {\pard\intbl\ql {i386, alpha, cris, sparc, sparc64, m68k, ppc, arm, sh4, s390, mips, HP parisc, ia64, DEC VAX and AMD x86\endash 64 [{\field{\*\fldinst{\lang1024 REF BIB_24 \\* MERGEFORMAT }}{\fldrslt{67}}} ]}\cell} {\pard\intbl\ql {sparc and i386 [{\field{\*\fldinst{\lang1024 REF BIB_9 \\* MERGEFORMAT }}{\fldrslt{18}}} ]}\cell} {\pard\intbl\ql {ppc and ia64 [{\field{\*\fldinst{\lang1024 REF BIB_7 \\* MERGEFORMAT }}{\fldrslt{7}}} ]}\cell} {\pard\intbl\ql {alpha [{\field{\*\fldinst{\lang1024 REF BIB_10 \\* MERGEFORMAT }}{\fldrslt{24}}} ]}\cell} {\pard\intbl\ql {parisc and ia64 [{\field{\*\fldinst{\lang1024 REF BIB_33 \\* MERGEFORMAT }}{\fldrslt{12}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { Maximum physical Memory tested and supported in {\b Gigabytes}}\cell} {\pard\intbl\ql {64 [{\field{\*\fldinst{\lang1024 REF BIB_41 \\* MERGEFORMAT }}{\fldrslt{71}}} ]}\cell} {\pard\intbl\ql {128 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {96 [{\field{\*\fldinst{\lang1024 REF BIB_40 \\* MERGEFORMAT }}{\fldrslt{74}}} ]}\cell} {\pard\intbl\ql {256 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {256 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { Maximum supported and tested size of file system in {\b Terabytes}}\cell} {\pard\intbl\ql {4 [{\field{\*\fldinst{\lang1024 REF BIB_38 \\* MERGEFORMAT }}{\fldrslt{34}}} ]}\cell} {\pard\intbl\ql {1 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {1 [{\field{\*\fldinst{\lang1024 REF BIB_7 \\* MERGEFORMAT }}{\fldrslt{7}}} ]}\cell} {\pard\intbl\ql {16 [{\field{\*\fldinst{\lang1024 REF BIB_10 \\* MERGEFORMAT }}{\fldrslt{24}}} ]}\cell} {\pard\intbl\ql {2 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} \row} }\par {\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb10 \fi0 \par {\trowd\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { {\b Feature}}\cell} {\pard\intbl\ql {{\b Linux}}\cell} {\pard\intbl\ql {{\b Solaris}}\cell} {\pard\intbl\ql {{\b AIX}}\cell} {\pard\intbl\ql {{\b Tru64 UNIX}}\cell} {\pard\intbl\ql {{\b HP-UX}}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { SMP \{{\field{\*\fldinst{\lang1024 REF BMsmp \\* MERGEFORMAT }}{\fldrslt{2.5.2}}}\}}\cell} {\pard\intbl\ql {64 [{\field{\*\fldinst{\lang1024 REF BIB_37 \\* MERGEFORMAT }}{\fldrslt{33}}} ]}\cell} {\pard\intbl\ql {128 [{\field{\*\fldinst{\lang1024 REF BIB_9 \\* MERGEFORMAT }}{\fldrslt{18}}} ]}\cell} {\pard\intbl\ql {24 [{\field{\*\fldinst{\lang1024 REF BIB_40 \\* MERGEFORMAT }}{\fldrslt{74}}} ]}\cell} {\pard\intbl\ql {32 [{\field{\*\fldinst{\lang1024 REF BIB_26 \\* MERGEFORMAT }}{\fldrslt{25}}} ]}\cell} {\pard\intbl\ql {64 [{\field{\*\fldinst{\lang1024 REF BIB_50 \\* MERGEFORMAT }}{\fldrslt{14}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { NUMA \{{\field{\*\fldinst{\lang1024 REF BMnuma \\* MERGEFORMAT }}{\fldrslt{2.5.2}}}\}}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_56 \\* MERGEFORMAT }}{\fldrslt{60}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_43 \\* MERGEFORMAT }}{\fldrslt{21}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_45 \\* MERGEFORMAT }}{\fldrslt{72}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_44 \\* MERGEFORMAT }}{\fldrslt{38}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_100 \\* MERGEFORMAT }}{\fldrslt{17}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { Cryptographic hardware support}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_57 \\* MERGEFORMAT }}{\fldrslt{61}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { Kernel threads \{{\field{\*\fldinst{\lang1024 REF BMkernel_threads \\* MERGEFORMAT }}{\fldrslt{2.5.1}}}\}}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_24 \\* MERGEFORMAT }}{\fldrslt{67}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_10 \\* MERGEFORMAT }}{\fldrslt{24}}} ]}\cell} {\pard\intbl\ql {\endash [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { Hot\endash swap \{{\field{\*\fldinst{\lang1024 REF BMhotswap \\* MERGEFORMAT }}{\fldrslt{2.5.1}}}\}}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_31 \\* MERGEFORMAT }}{\fldrslt{31}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_33 \\* MERGEFORMAT }}{\fldrslt{12}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { SysV IPC \{{\field{\*\fldinst{\lang1024 REF BMipc \\* MERGEFORMAT }}{\fldrslt{2.5.1}}}\}}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_52 \\* MERGEFORMAT }}{\fldrslt{56}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_10 \\* MERGEFORMAT }}{\fldrslt{24}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { Dynamic Processor Resilience \{{\field{\*\fldinst{\lang1024 REF BMdynprocres \\* MERGEFORMAT }}{\fldrslt{2.5.1}}}\}}\cell} {\pard\intbl\ql {\endash {\field{\*\fldinst{\lang1024 REF BMa1 \\* MERGEFORMAT }}{\fldrslt{A.1}}}}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { Dynamic Memory Resilience \{{\field{\*\fldinst{\lang1024 REF BMdynmemres \\* MERGEFORMAT }}{\fldrslt{2.5.1}}}\}}\cell} {\pard\intbl\ql {\endash [{\field{\*\fldinst{\lang1024 REF BIB_11 \\* MERGEFORMAT }}{\fldrslt{36}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { Dynamic Page Sizing \{{\field{\*\fldinst{\lang1024 REF BMdynpagesize \\* MERGEFORMAT }}{\fldrslt{2.5.1}}}\}}\cell} {\pard\intbl\ql {\endash {\field{\*\fldinst{\lang1024 REF BMa1 \\* MERGEFORMAT }}{\fldrslt{A.1}}}}\cell} {\pard\intbl\ql {\endash [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\endash [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { Live Upgrade \{{\field{\*\fldinst{\lang1024 REF BMliveupg \\* MERGEFORMAT }}{\fldrslt{2.5.1}}}\}}\cell} {\pard\intbl\ql {\endash {\field{\*\fldinst{\lang1024 REF BMa1 \\* MERGEFORMAT }}{\fldrslt{A.1}}}}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_60 \\* MERGEFORMAT }}{\fldrslt{11}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { Alternative I/O Pathing \{{\field{\*\fldinst{\lang1024 REF BMaltiopath \\* MERGEFORMAT }}{\fldrslt{2.5.1}}}\}}\cell} {\pard\intbl\ql {}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\endash [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { BSD Process Accounting {\field{\*\fldinst{\lang1024 REF BMprocacc \\* MERGEFORMAT }}{\fldrslt{2.5.1}}}}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_54 \\* MERGEFORMAT }}{\fldrslt{58}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} \row} }\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb130 \fi0 {\*\bkmkstart BMchange1}5.1.2{\*\bkmkend BMchange1} TABLE WITH FILE SYSTEM SPECIFIC FUNCTIONS\par {\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb70 \fi0 \par {\trowd\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { {\b Feature}}\cell} {\pard\intbl\ql {{\b Linux}}\cell} {\pard\intbl\ql {{\b Solaris}}\cell} {\pard\intbl\ql {{\b AIX}}\cell} {\pard\intbl\ql {{\b Tru64 UNIX}}\cell} {\pard\intbl\ql {{\b HP-UX}}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { Maximum tested and supported file size in {\b Terabytes}}\cell} {\pard\intbl\ql {2 GB [{\field{\*\fldinst{\lang1024 REF BIB_38 \\* MERGEFORMAT }}{\fldrslt{34}}} ]}\cell} {\pard\intbl\ql {1 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {64 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {10 [{\field{\*\fldinst{\lang1024 REF BIB_26 \\* MERGEFORMAT }}{\fldrslt{25}}} ]}\cell} {\pard\intbl\ql {2 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { ACL \{{\field{\*\fldinst{\lang1024 REF BMacl \\* MERGEFORMAT }}{\fldrslt{2.5.4}}}\}}\cell} {\pard\intbl\ql {\endash [{\field{\*\fldinst{\lang1024 REF BIB_38 \\* MERGEFORMAT }}{\fldrslt{34}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_42 \\* MERGEFORMAT }}{\fldrslt{20}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_68 \\* MERGEFORMAT }}{\fldrslt{76}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_10 \\* MERGEFORMAT }}{\fldrslt{24}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_51 \\* MERGEFORMAT }}{\fldrslt{44}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { RAID \{{\field{\*\fldinst{\lang1024 REF BMraid \\* MERGEFORMAT }}{\fldrslt{2.5.4}}}\} support}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_31 \\* MERGEFORMAT }}{\fldrslt{31}}} ]}\cell} {\pard\intbl\ql {}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_7 \\* MERGEFORMAT }}{\fldrslt{7}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_10 \\* MERGEFORMAT }}{\fldrslt{24}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_33 \\* MERGEFORMAT }}{\fldrslt{12}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { Journaling File System \{{\field{\*\fldinst{\lang1024 REF BMjfs \\* MERGEFORMAT }}{\fldrslt{2.5.4}}}\}}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_54 \\* MERGEFORMAT }}{\fldrslt{58}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_7 \\* MERGEFORMAT }}{\fldrslt{7}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_10 \\* MERGEFORMAT }}{\fldrslt{24}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_3 \\* MERGEFORMAT }}{\fldrslt{77}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { Logical Volume Manager \{{\field{\*\fldinst{\lang1024 REF BMlvm \\* MERGEFORMAT }}{\fldrslt{2.5.4}}}\}}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_59 \\* MERGEFORMAT }}{\fldrslt{62}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_7 \\* MERGEFORMAT }}{\fldrslt{7}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_10 \\* MERGEFORMAT }}{\fldrslt{24}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_113 \\* MERGEFORMAT }}{\fldrslt{52}}} ] {\*\bkmkstart BMchange4}{\*\bkmkend BMchange4}}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { HSM \{{\field{\*\fldinst{\lang1024 REF BMhsm \\* MERGEFORMAT }}{\fldrslt{2.5.4}}}\}}\cell} {\pard\intbl\ql {\endash {\field{\*\fldinst{\lang1024 REF BMa1 \\* MERGEFORMAT }}{\fldrslt{A.1}}}}\cell} {\pard\intbl\ql {}\cell} {\pard\intbl\ql {\endash [{\field{\*\fldinst{\lang1024 REF BIB_7 \\* MERGEFORMAT }}{\fldrslt{7}}} ]}\cell} {\pard\intbl\ql {}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_61 \\* MERGEFORMAT }}{\fldrslt{15}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { Memory File System \{{\field{\*\fldinst{\lang1024 REF BMmfs \\* MERGEFORMAT }}{\fldrslt{2.5.4}}}\}}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_55 \\* MERGEFORMAT }}{\fldrslt{59}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_101 \\* MERGEFORMAT }}{\fldrslt{39}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { CacheFS \{{\field{\*\fldinst{\lang1024 REF BMcachefs \\* MERGEFORMAT }}{\fldrslt{2.5.4}}}\}}\cell} {\pard\intbl\ql {\endash [{\field{\*\fldinst{\lang1024 REF BIB_23 \\* MERGEFORMAT }}{\fldrslt{37}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\endash [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { AutoFS \{{\field{\*\fldinst{\lang1024 REF BMautofs \\* MERGEFORMAT }}{\fldrslt{2.5.4}}}\}}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_54 \\* MERGEFORMAT }}{\fldrslt{58}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} \row} }\par {\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb10 \fi0 \par {\trowd\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { {\b Feature}}\cell} {\pard\intbl\ql {{\b Linux}}\cell} {\pard\intbl\ql {{\b Solaris}}\cell} {\pard\intbl\ql {{\b AIX}}\cell} {\pard\intbl\ql {{\b Tru64 UNIX}}\cell} {\pard\intbl\ql {{\b HP-UX}}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { Supported file systems}\cell} {\pard\intbl\ql {ISO9660, Rockridge, Ext2, VFAT, FATCVF, UFS, FFS, HPFS, NTFS, AFFS,ADFS, BFS, CRAMFS, PROC, ROMFS, SYSV\endash FS, UDF, UMDOS [{\field{\*\fldinst{\lang1024 REF BIB_24 \\* MERGEFORMAT }}{\fldrslt{67}}} ]}\cell} {\pard\intbl\ql {DFS [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ] UDF, UFS [{\field{\*\fldinst{\lang1024 REF BIB_25 \\* MERGEFORMAT }}{\fldrslt{22}}} ]}\cell} {\pard\intbl\ql {DFS [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {CFS [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ], XCDR, DVDFS, [{\field{\*\fldinst{\lang1024 REF BIB_10 \\* MERGEFORMAT }}{\fldrslt{24}}} ], FFM , DFS, EFS, FDFS, PROCFS, SYSV, UFS, MFS, ISO9660 [{\field{\*\fldinst{\lang1024 REF BIB_101 \\* MERGEFORMAT }}{\fldrslt{39}}} ]}\cell} {\pard\intbl\ql {UFS [{\field{\*\fldinst{\lang1024 REF BIB_33 \\* MERGEFORMAT }}{\fldrslt{12}}} ] CIFS [{\field{\*\fldinst{\lang1024 REF BIB_29 \\* MERGEFORMAT }}{\fldrslt{10}}} ], CDFS [{\field{\*\fldinst{\lang1024 REF BIB_106 \\* MERGEFORMAT }}{\fldrslt{48}}} ], HFS [{\field{\*\fldinst{\lang1024 REF BIB_107 \\* MERGEFORMAT }}{\fldrslt{50}}} ], LOFS [{\field{\*\fldinst{\lang1024 REF BIB_108 \\* MERGEFORMAT }}{\fldrslt{51}}} ], DOS [{\field{\*\fldinst{\lang1024 REF BIB_109 \\* MERGEFORMAT }}{\fldrslt{54}}} ], ISO9660, Rockridge, High Sierra, [{\field{\*\fldinst{\lang1024 REF BIB_110 \\* MERGEFORMAT }}{\fldrslt{55}}} ] CDFS [{\field{\*\fldinst{\lang1024 REF BIB_112 \\* MERGEFORMAT }}{\fldrslt{53}}} ] {\*\bkmkstart BMchange2}{\*\bkmkend BMchange2}}\cell} \row} }\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb130 \fi0 {\*\bkmkstart BMchange3}5.1.3{\*\bkmkend BMchange3} TABLE WITH NETWORK SPECIFIC FUNCTIONS\par {\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb70 \fi0 \par {\trowd\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { {\b Feature}}\cell} {\pard\intbl\ql {{\b Linux}}\cell} {\pard\intbl\ql {{\b Solaris}}\cell} {\pard\intbl\ql {{\b AIX}}\cell} {\pard\intbl\ql {{\b Tru64 UNIX}}\cell} {\pard\intbl\ql {{\b HP-UX}}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { Support for IP v4 and v6 {\field{\*\fldinst{\lang1024 REF BMipv6 \\* MERGEFORMAT }}{\fldrslt{2.5.5}}}\}}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_39 \\* MERGEFORMAT }}{\fldrslt{35}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_9 \\* MERGEFORMAT }}{\fldrslt{18}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_40 \\* MERGEFORMAT }}{\fldrslt{74}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_103 \\* MERGEFORMAT }}{\fldrslt{41}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_62 \\* MERGEFORMAT }}{\fldrslt{16}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { Traffic Control \{{\field{\*\fldinst{\lang1024 REF BMtfc \\* MERGEFORMAT }}{\fldrslt{2.5.5}}}\}}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_39 \\* MERGEFORMAT }}{\fldrslt{35}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_40 \\* MERGEFORMAT }}{\fldrslt{74}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_29 \\* MERGEFORMAT }}{\fldrslt{10}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { Bonding \{{\field{\*\fldinst{\lang1024 REF BMbonding \\* MERGEFORMAT }}{\fldrslt{2.5.5}}}\}}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_21 \\* MERGEFORMAT }}{\fldrslt{6}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { {NFS\~v2}\~\{{\field{\*\fldinst{\lang1024 REF BMnfs \\* MERGEFORMAT }}{\fldrslt{2.5.3}}}\}}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_39 \\* MERGEFORMAT }}{\fldrslt{35}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_9 \\* MERGEFORMAT }}{\fldrslt{18}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_40 \\* MERGEFORMAT }}{\fldrslt{74}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_101 \\* MERGEFORMAT }}{\fldrslt{39}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_111 \\* MERGEFORMAT }}{\fldrslt{49}}} ] }\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { {NFS\~v3}\~\{{\field{\*\fldinst{\lang1024 REF BMnfs \\* MERGEFORMAT }}{\fldrslt{2.5.3}}}\}}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_39 \\* MERGEFORMAT }}{\fldrslt{35}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_101 \\* MERGEFORMAT }}{\fldrslt{39}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_40 \\* MERGEFORMAT }}{\fldrslt{74}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_101 \\* MERGEFORMAT }}{\fldrslt{39}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_111 \\* MERGEFORMAT }}{\fldrslt{49}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { SNMP \{{\field{\*\fldinst{\lang1024 REF BMsnmp \\* MERGEFORMAT }}{\fldrslt{2.5.5}}}\}}\cell} {\pard\intbl\ql {\'95}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_9 \\* MERGEFORMAT }}{\fldrslt{18}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_40 \\* MERGEFORMAT }}{\fldrslt{74}}} ]}\cell} {\pard\intbl\ql {}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_64 \\* MERGEFORMAT }}{\fldrslt{45}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { SMB \{{\field{\*\fldinst{\lang1024 REF BMsmb \\* MERGEFORMAT }}{\fldrslt{2.5.3}}}\}}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_39 \\* MERGEFORMAT }}{\fldrslt{35}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { AppleTalk \{{\field{\*\fldinst{\lang1024 REF BMappletalk \\* MERGEFORMAT }}{\fldrslt{2.5.3}}}\}}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_39 \\* MERGEFORMAT }}{\fldrslt{35}}} ]}\cell} {\pard\intbl\ql {\endash [{\field{\*\fldinst{\lang1024 REF BIB_9 \\* MERGEFORMAT }}{\fldrslt{18}}} ]}\cell} {\pard\intbl\ql {\endash [{\field{\*\fldinst{\lang1024 REF BIB_40 \\* MERGEFORMAT }}{\fldrslt{74}}} ]}\cell} {\pard\intbl\ql {}\cell} {\pard\intbl\ql {\endash [{\field{\*\fldinst{\lang1024 REF BIB_63 \\* MERGEFORMAT }}{\fldrslt{80}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { NetWare \{{\field{\*\fldinst{\lang1024 REF BMnetware \\* MERGEFORMAT }}{\fldrslt{2.5.3}}}\}}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_39 \\* MERGEFORMAT }}{\fldrslt{35}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\endash [{\field{\*\fldinst{\lang1024 REF BIB_40 \\* MERGEFORMAT }}{\fldrslt{74}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\endash [{\field{\*\fldinst{\lang1024 REF BIB_67 \\* MERGEFORMAT }}{\fldrslt{81}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { DECnet \{{\field{\*\fldinst{\lang1024 REF BMdecnet \\* MERGEFORMAT }}{\fldrslt{2.5.5}}}\}}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_39 \\* MERGEFORMAT }}{\fldrslt{35}}} ]}\cell} {\pard\intbl\ql {\endash [{\field{\*\fldinst{\lang1024 REF BIB_9 \\* MERGEFORMAT }}{\fldrslt{18}}} ]}\cell} {\pard\intbl\ql {\endash [{\field{\*\fldinst{\lang1024 REF BIB_40 \\* MERGEFORMAT }}{\fldrslt{74}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_104 \\* MERGEFORMAT }}{\fldrslt{42}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_65 \\* MERGEFORMAT }}{\fldrslt{46}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { ARCnet \{{\field{\*\fldinst{\lang1024 REF BMarcnet \\* MERGEFORMAT }}{\fldrslt{2.5.5}}}\}}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_39 \\* MERGEFORMAT }}{\fldrslt{35}}} ]}\cell} {\pard\intbl\ql {}\cell} {\pard\intbl\ql {\endash [{\field{\*\fldinst{\lang1024 REF BIB_40 \\* MERGEFORMAT }}{\fldrslt{74}}} ]}\cell} {\pard\intbl\ql {}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_66 \\* MERGEFORMAT }}{\fldrslt{47}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { ATM \{{\field{\*\fldinst{\lang1024 REF BMatm \\* MERGEFORMAT }}{\fldrslt{2.5.5}}}\}}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_39 \\* MERGEFORMAT }}{\fldrslt{35}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_40 \\* MERGEFORMAT }}{\fldrslt{74}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_46 \\* MERGEFORMAT }}{\fldrslt{13}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { FDDI \{{\field{\*\fldinst{\lang1024 REF BMfddi \\* MERGEFORMAT }}{\fldrslt{2.5.5}}}\}}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_39 \\* MERGEFORMAT }}{\fldrslt{35}}} ]}\cell} {\pard\intbl\ql {}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_40 \\* MERGEFORMAT }}{\fldrslt{74}}} ]}\cell} {\pard\intbl\ql {}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_46 \\* MERGEFORMAT }}{\fldrslt{13}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { Ethernet \{{\field{\*\fldinst{\lang1024 REF BMethernet \\* MERGEFORMAT }}{\fldrslt{2.5.5}}}\}}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_39 \\* MERGEFORMAT }}{\fldrslt{35}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_40 \\* MERGEFORMAT }}{\fldrslt{74}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_46 \\* MERGEFORMAT }}{\fldrslt{13}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { Token Ring \{{\field{\*\fldinst{\lang1024 REF BMtokenring \\* MERGEFORMAT }}{\fldrslt{2.5.5}}}\}}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_39 \\* MERGEFORMAT }}{\fldrslt{35}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_25 \\* MERGEFORMAT }}{\fldrslt{22}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_40 \\* MERGEFORMAT }}{\fldrslt{74}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_105 \\* MERGEFORMAT }}{\fldrslt{43}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_46 \\* MERGEFORMAT }}{\fldrslt{13}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { IPSEc \{{\field{\*\fldinst{\lang1024 REF BMipsec \\* MERGEFORMAT }}{\fldrslt{2.5.5}}}\}}\cell} {\pard\intbl\ql {\endash [{\field{\*\fldinst{\lang1024 REF BIB_48 \\* MERGEFORMAT }}{\fldrslt{79}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { Simultaneous IPv4/IPv6 stacks on the same network \{{\field{\*\fldinst{\lang1024 REF BMipv4ipv6stack \\* MERGEFORMAT }}{\fldrslt{2.5.5}}}\}}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_39 \\* MERGEFORMAT }}{\fldrslt{35}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { IPv6 Gateway facilities \{{\field{\*\fldinst{\lang1024 REF BMipv6gateway \\* MERGEFORMAT }}{\fldrslt{2.5.5}}}\}}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_39 \\* MERGEFORMAT }}{\fldrslt{35}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { RSVP \{{\field{\*\fldinst{\lang1024 REF BMrsvp \\* MERGEFORMAT }}{\fldrslt{2.5.5}}}\}}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_54 \\* MERGEFORMAT }}{\fldrslt{58}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { Integrated Services(IntServ) \{{\field{\*\fldinst{\lang1024 REF BMintserv \\* MERGEFORMAT }}{\fldrslt{2.5.5}}}\}}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_21 \\* MERGEFORMAT }}{\fldrslt{6}}} ]}\cell} {\pard\intbl\ql {\endash [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\endash [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\endash [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} \row} }\par {\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb10 \fi0 \par {\trowd\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { {\b Feature}}\cell} {\pard\intbl\ql {{\b Linux}}\cell} {\pard\intbl\ql {{\b Solaris}}\cell} {\pard\intbl\ql {{\b AIX}}\cell} {\pard\intbl\ql {{\b Tru64 UNIX}}\cell} {\pard\intbl\ql {{\b HP-UX}}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { Differentiated Services \{{\field{\*\fldinst{\lang1024 REF BMdiffserv \\* MERGEFORMAT }}{\fldrslt{2.5.5}}}\}}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_21 \\* MERGEFORMAT }}{\fldrslt{6}}} ]}\cell} {\pard\intbl\ql {\endash [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\endash [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { IP Multiplexing / \ldblquote aliasing\rdblquote \{{\field{\*\fldinst{\lang1024 REF BMaliasing \\* MERGEFORMAT }}{\fldrslt{2.5.5}}}\}}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_39 \\* MERGEFORMAT }}{\fldrslt{35}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { {IP\~Multicast}\~Server\~\{{\field{\*\fldinst{\lang1024 REF BMipmulticast \\* MERGEFORMAT }}{\fldrslt{2.5.5}}}\}}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_39 \\* MERGEFORMAT }}{\fldrslt{35}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { TCP selective acknowledgement (SACK) \{{\field{\*\fldinst{\lang1024 REF BMsack \\* MERGEFORMAT }}{\fldrslt{2.5.5}}}\}}\cell} {\pard\intbl\ql {\'95{\field{\*\fldinst{\lang1024 REF BMa1 \\* MERGEFORMAT }}{\fldrslt{A.1}}}}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { ATM IP switching \{{\field{\*\fldinst{\lang1024 REF BMatmipswitching \\* MERGEFORMAT }}{\fldrslt{2.5.5}}}\}}\cell} {\pard\intbl\ql {}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { Multilink PPP \{{\field{\*\fldinst{\lang1024 REF BMmultilinkppp \\* MERGEFORMAT }}{\fldrslt{2.5.5}}}\}}\cell} {\pard\intbl\ql {\'95{\field{\*\fldinst{\lang1024 REF BMa1 \\* MERGEFORMAT }}{\fldrslt{A.1}}}}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\endash [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\endash [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { TCP Large Windows (RFC 1323) \{{\field{\*\fldinst{\lang1024 REF BMrfc1323 \\* MERGEFORMAT }}{\fldrslt{2.5.5}}}\}}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_53 \\* MERGEFORMAT }}{\fldrslt{57}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { TCP/IP Gratuitous ARP (RFC 2002) \{{\field{\*\fldinst{\lang1024 REF BMrfc2002 \\* MERGEFORMAT }}{\fldrslt{2.5.5}}}\}}\cell} {\pard\intbl\ql {}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { {Path\~MTU}\~Discovery\~(RFC\~1191)\~\{{\field{\*\fldinst{\lang1024 REF BMrfc1191 \\* MERGEFORMAT }}{\fldrslt{2.5.5}}}\}}\cell} {\pard\intbl\ql {\'95{\field{\*\fldinst{\lang1024 REF BMa1 \\* MERGEFORMAT }}{\fldrslt{A.1}}}}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { {Path\~MTU}\~Discovery\~over\~UDP\~\{{\field{\*\fldinst{\lang1024 REF BMpathmtudiscoverudp \\* MERGEFORMAT }}{\fldrslt{2.5.5}}}\}}\cell} {\pard\intbl\ql {}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { {Open\~Shortest}\~{Path\~First}\~({OSPF\endash RFC}\~1533)\~\{{\field{\*\fldinst{\lang1024 REF BMrfc1533 \\* MERGEFORMAT }}{\fldrslt{2.5.5}}}\}}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_21 \\* MERGEFORMAT }}{\fldrslt{6}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx1300\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx2600\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx3900\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx5200\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6500\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx7800 {\pard\intbl\ql { {IP\~Multipath}\~Routing\~\{{\field{\*\fldinst{\lang1024 REF BMipmultipathrouting \\* MERGEFORMAT }}{\fldrslt{2.5.5}}}\}}\cell} {\pard\intbl\ql {\'95{\field{\*\fldinst{\lang1024 REF BMa1 \\* MERGEFORMAT }}{\fldrslt{A.1}}}}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} {\pard\intbl\ql {\'95 [{\field{\*\fldinst{\lang1024 REF BIB_13 \\* MERGEFORMAT }}{\fldrslt{26}}} ]}\cell} \row} }\par \column \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb250 \fi0 {\*\bkmkstart BMresultanalys}5.2{\*\bkmkend BMresultanalys} RESULT ANALYSIS\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \fi0 Linux has support for a more kinds of file systems and architectures than any other operating system in this thesis. But it lacks high-availability and security features\u160?(like Live upgrade, dynamic memory/processor resilience, HSM, ACL, IPSec...).\par \page \pard\plain\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \sb10 \fi0 Chapter 6\par \pard\plain\s2\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \sb250 \fi0 DISCUSSION\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb250 \fi0 The reader maybe is asking why this thesis just looks at the features of the kernel? The explanation is that one can tell much about an operating system by just looking at the kernel, for example how well developed it is.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \fi0 There was some difficulties in finding information from the suppliers documentation that confirmed which functions where implemented in the kernel. To overcome this difficulty, some technicians from the various companies were asked. Another difficult task was finding information about features that was not implemented in the operating system. Partial because vendors don\rquote t announce the features their operating system is missing in comparation to other.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \fi0 Most of the missing features in Linux do already exist for Linux as patches, but they are not yet implemented in the official kernel. For example IPSec (see reference [{\field{\*\fldinst{\lang1024 REF BIB_48 \\* MERGEFORMAT }}{\fldrslt{79}}} ]), Dynamic Memory Resilience (see appendix {\field{\*\fldinst{\lang1024 REF BMa8 \\* MERGEFORMAT }}{\fldrslt{A.8}}}), live update (see appendix {\field{\*\fldinst{\lang1024 REF BMa2 \\* MERGEFORMAT }}{\fldrslt{A.2}}})...\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb10 \fi0 Now that Linux is getting a greater deal of press, as is the interest for it to in the enterprise market. Here are some quotes from different magazines. The September 1998 Software Magazine cover story [{\field{\*\fldinst{\lang1024 REF BIB_36 \\* MERGEFORMAT }}{\fldrslt{70}}} ] reveals just how far Linux has managed to infiltrate corporate America and how it is not about to go away: {\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \li512\ri512\fi300 \ldblquote Tim Payne, director of database marketing at Oracle, says many of his company\rquote s corporate customers have made large investments in Linux. When Oracle announced in July that it would be offering 24x7 support for Oracle8 on Linux, he says 300 customers called the next day asking about availability. \rquote It\rquote s reliable, it\rquote s proven, it runs on commodity Intel boxes, and it\rquote s a really low-cost alternative to NT,\rquote says Payne. \rquote The fact that you are going to be able to get enterprise quality support from Oracle to deploy on the Linux platform will help customers adopt Linux.\rdblquote \par }\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \fi0 Nicholas Petreley, editor-in-chief of NC World and columnist for InfoWorld and NT World Japan provides an explanation for the rise of Linux and FreeBSD in IT departments [{\field{\*\fldinst{\lang1024 REF BIB_35 \\* MERGEFORMAT }}{\fldrslt{69}}} ]: \par {\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \li512\ri512\fi300 \ldblquote Yesterday\rquote s college students learned their UNIX expertise on Linux and FreeBSD. Today they\rquote re working in IT departments, and many of them are openly hostile to both Microsoft and Windows NT. As a result, Linux, BSD, Solaris, and other forms of UNIX are finding their way into IT departments, both overtly and on the sly.\rdblquote \par }{\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb130 \li512\ri512\fi300 \ldblquote For example, are you sure that\rquote s an NT server you\rquote re connecting to at work? IS employees in many corporations have secretly installed UNIX servers that provide native NT services. Why take such a risk? Linux and FreeBSD are free, as is SAMBA, the software that provides NT services. So the IS department saves money. And managers are unlikely to find out UNIX is behind the scenes because fewer people will complain about server downtime.\rdblquote \par }{\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb130 \li512\ri512\fi300 \ldblquote Fewer people will complain because the servers are more stable than Windows NT. Linux, FreeBSD, and BSDI UNIX outperform Windows NT by a wide margin on limited hardware, and under some circumstances can perform as well or better than NT on the best hardware. Once behind in scalability features, UNIX on Intel is catching up and may soon surpass NT in the number of processors it can use, and how it uses them.\rdblquote \par }\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \fi0 Now that Linux has infiltrated the enterprise market, and the demand for the usage of Linux on enterprise market is increasing, the development of features to Linux that the enterprises are looking for on more expensive alternatives will increase. Specially with the increase of support Linux is getting from the main players on the enterprise market like Compaq, IBM, Hewlett\endash Packard...\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb250 \fi0 6.1 METHOD EVALUATION\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \fi0 The chosen methods where the most appropriate for each task of the report.\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb250 \fi0 6.2 RECEIVED RESULTS VERSUS EXPECTED RESULT\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \fi0 The received result shows that on contrary to the expected result that Linux is not yet ready to take over the enterprise market, due to the lack of features that the enterprise market expect to see on a high\endash end system.\par \page \pard\plain\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \sb10 \fi0 Chapter {\*\bkmkstart BMconclusions}7{\*\bkmkend BMconclusions}\par \pard\plain\s2\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \sb250 \fi0 CONCLUSIONS\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb250 \fi0 For Linux to get into the enterprise server market it has to include support for more memory, high-availability and security features, to make it more competitive against the other operating systems. Linux lacks the following features: {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Dynamic processor/memory resilience. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Dynamic page sizing. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Live upgrade. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab ACL \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Hierarchical storage management. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab CacheFS \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab IPSec \par }\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb70 \fi0 It could not be verified in this thesis if Linux has more features than any other of the compared operating systems due to the lack of information. \par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb250 \fi0 7.1 PROPOSAL FOR FURTHER RESEARCH\par {\pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Available programs.. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Make a survey on companies asking them what hardware support or features they want to see implemented in Linux. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Available support. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Cost versus performance. \par }\page \pard\plain\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \sb70 \fi0 Chapter {\*\bkmkstart BMbiblio}8{\*\bkmkend BMbiblio}\par \pard\plain\s2\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \sb250 \fi0 Bibliography\par {\page \pard\plain\s61\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb370 \fi0 {\plain\b\fs32 Bibliography}\par \pard\plain\s5\ql\sb240\sa120\keepn\f0\b\fs24\sl240\slmult1 \sb190 \li450\fi0 Books\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb70 \li450\fi0 [{\v\*\bkmkstart BIB_1}1{\*\bkmkend BIB_1}]\tab Matt Welsh and Phil Hughes and David Bandel and Boris Beletsky and Sean Dreilinger and Robert Kiesling and Evan Liebovitch and Henry Pierce, {\i Linux installation and getting started}, Specialized Systems Consultants Inc, Seattle, {\f2 http://www.ibiblio.org/pub/Linux/docs/LDP/install-guide/!INDEX.html} (available 2001\endash 05\endash 19), 1998.\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_6}2{\*\bkmkend BIB_6}]\tab VI Peter H. Salus, {\i A Quarter Century of UNIX}, Addison-Wesley Publishing Company Inc, ISBN: 0-201-54777-5, 1994.\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_15}3{\*\bkmkend BIB_15}]\tab Peter Galvin and Avi Silberschatz, {\i Operating system concepts, 5th edition}, ISBN 0-471-36414-2, John Wiley and Sons Inc., 605 Third Avenue, New York, 1999.\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_18}4{\*\bkmkend BIB_18}]\tab Andrew S. Tanebaum, {\i Computer Networks, 3rd edition}, ISBN 0-13-394248-1, Prentice-Hall International, Inc., Upper Saddle River, New Jersey 07458, 1996.\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_30}5{\*\bkmkend BIB_30}]\tab Valentino Berti, {\i Datakommunikation}, Liber AB, 113 98 Stockholm, ISBN 91-47-03564-1, 1999.\par \pard\plain\s5\ql\sb240\sa120\keepn\f0\b\fs24\sl240\slmult1 \sb130 \li450\fi0 White Papers\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb70 \li450\fi0 [{\v\*\bkmkstart BIB_21}6{\*\bkmkend BIB_21}]\tab Bert Hubert and Gregory Maxwell and Remco van Mook and Martijn van Oosterhout and Paul B Schroeder and Jasper Spaans, {\i Linux 2.4 Advanced Routing HOWTO}, {\f2 http://www.ds9a.nl/2.4Networking/HOWTO//cvs/2.4routing/output/2.4routing.html} (available 2001\endash 05\endash 23), 2001.\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_7}7{\*\bkmkend BIB_7}]\tab {\i AIX 5L Technical Preview, AIX Product Marketing}, IBM corporation, {\f2 http://www-1.ibm.com/servers/aix/pdf/AIX50dr3ms.pdf} (available on 17:th of May 2001), 2000.\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_34}8{\*\bkmkend BIB_34}]\tab {\i AIX\endash Announcement Supplemental Information}, IBM, 2001\endash 04\endash 17.\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_8}9{\*\bkmkend BIB_8}]\tab {\i HP Renews Focus on UNIX for Web Application Infrastructures}, D.H. Brown Associates Inc. 2000.\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_29}10{\*\bkmkend BIB_29}]\tab {\i HP 9000 \endash A-Class Servers: A500/A400 System Architecture and Design Guide}, Hewlett-Packard, 2000.\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_60}11{\*\bkmkend BIB_60}]\tab {\i Updating to HP-UX 11i}, Hewlett\endash Packard, {\f2 http://docs.hp.com/cgi-bin/onlinedocs.py?mpn=B2355-90703&service=hpux&path=../B2355-90703/00/00/19&title=HP-UX%2011i%20Installation%20and%20Update%20Guide}\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_33}12{\*\bkmkend BIB_33}]\tab {\i HP\endash UX reference documents}, Hewlett\endash Packard,{\f2 http://devresource.hp.com/STK/toc_ref_details.html} (available 2001-05-24), 2001.\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_46}13{\*\bkmkend BIB_46}]\tab {\i HP-UX 11i Operating Environments}, Hewlett\endash Packard, {\f2 http://docs.hp.com/hpux/onlinedocs/os/11i/oe_presentation_Dec1_external.pdf} (available 2001\endash 05\endash 25), 2000.\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_50}14{\*\bkmkend BIB_50}]\tab {\i hp 9000 superdome specifications}, Hewlett\endash Packard, {\f2 http://www.hp.com/products1/unixservers/highend/superdome/specifications.html} (available 2001\endash 05\endash 27).\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_61}15{\*\bkmkend BIB_61}]\tab {\i Onlinejsf product details and specifications}, Hewlett\endash Packard,{\f2 http://www.software.hp.com/cgi-bin/swdepot_parser.cgi/cgi/displayProductInfo.pl?productNumber=B3929CA} (available 2001\endash 05\endash 27).\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_62}16{\*\bkmkend BIB_62}]\tab {\i IPv6 early release overview}, Hewlett\endash Packard,{\f2 http://www.software.hp.com/cgi-bin/swdepot_parser.cgi/cgi/displayProductInfo.pl?productNumber=T1305AA} (available 2001\endash 05\endash 27).\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_100}17{\*\bkmkend BIB_100}]\tab {\i HP MPI User\rquote s guide \endash Message latency and bandwidth}, Hewlett\endash Packard, {\f2 http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B6060-96002/B6060-96002_top.html&con=/hpux/onlinedocs/B6060-96002/00/00/25-con.html&toc=/hpux/onlinedocs/B6060-96002/00/00/25-toc.html&searchterms=numa&queryid=20010528-032930} {available 2001\endash 05\endash 28}.\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_9}18{\*\bkmkend BIB_9}]\tab {\i Solaris 8 press release}, Sun Microsystems Inc, {\f2 http://www.sun.com/smi/Press/sunflash/2000-01/sunflash.20000126.2.html} (avaible 2001-05-19), 2001.\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_20}19{\*\bkmkend BIB_20}]\tab {\i Sun trunking overview}, Sun Micro\endash systems, {\f2 http://www.sun.com/products-n-solutions/hw/networking/connectivity/suntrunking/trunking.html}.\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_42}20{\*\bkmkend BIB_42}]\tab {\i Trusted Solaris 8 Operating Environment \endash A Technical Overview}, White Paper, Sun Microsystems Inc, {\f2 http://www.sun.com/software/white-papers/wp-ts8/} (available 2001\endash 05\endash 25).\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_43}21{\*\bkmkend BIB_43}]\tab {\i Sun Enterprise 10000 Key Technologies}, Sun Microsystems Inc, {\f2 http://www.sun.com/servers/highend/10000/tech.html} (available (2001\endash 05\endash 25).\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_25}22{\*\bkmkend BIB_25}]\tab {\i What\rquote s new in the Solaris 8 Operating Environment}, Sun Microsystems, January 2000.\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_19}23{\*\bkmkend BIB_19}]\tab {\i Tru64 UNIX Operating System Version 5.1 Product Description}, Internal reference: SPD 70.70.03, Compaq Computer Corporation, 2000.\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_10}24{\*\bkmkend BIB_10}]\tab {\i Tru64 UNIX Product overview}, Compaq, {\f2 http://www.tru64unix.compaq.com/unix/index.html} (available online on 2001-05-18), 2001.\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_26}25{\*\bkmkend BIB_26}]\tab {\i True64 UNIX on AlphaServer Product Overview}, Compaq Computer Corporation, {\f2 http://www.tru64unix.compaq.com/unix/v5.htm} (available 2001-05-19), 2001.\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_13}26{\*\bkmkend BIB_13}]\tab {\i 2001 UNIX function review}, D.H Brown Associates, Inc, 2001.\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_14}27{\*\bkmkend BIB_14}]\tab R. P. LaRowe Jr. and J. T. Wilkes and C. S. Ellis, {\i Exploiting operating system support for dynamic page placement on a NUMA shared memory multiprocessor}, Proceedings of the 3rd ACM SIGPLAN Symposium on Principles & Practice of Parallel Programming, SIGPLAN Notices volume 26 number 7 page 122-132, {\f2 http://citeseer.nj.nec.com/larowe91exploiting.html}, April 1991\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_16}28{\*\bkmkend BIB_16}]\tab Adam Sweeney and Doug Doucette and Wei Hu and Curtis Anderson and Mike Nishimoto and Geoff Peck, {\i Scalability in the XFS File System}, Silicon Graphics, {\f2 http://linux-xfs.sgi.com/projects/xfs/papers/xfs_usenix/index.html}, 1996\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_17}29{\*\bkmkend BIB_17}]\tab Heinz Mauelshagen, {\i Mauelshagen\rquote s LVM (Logical Volume Manager) howto}, Linux source documentation, 1999\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_22}30{\*\bkmkend BIB_22}]\tab Johannes Erdfelt, {\i Hot-Swap white paper}, {\f2 http://johannes.erdfelt.com/hotswap.txt}, 2000.\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_31}31{\*\bkmkend BIB_31}]\tab Jakob \u216?stergaard, {\i The Software\endash RAID HOWTO}, {\f2 http://www.linuxdoc.org/HOWTO/Software-RAID-HOWTO.html} (available 2001-05-22), 2000.\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_32}32{\*\bkmkend BIB_32}]\tab Scott Norton and Mark DiPasquale, {\i Thread Time - The Multithreaded Programming Guide}, Prentice Hall, ISBN 0-13-190067-6, 1996.\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_37}33{\*\bkmkend BIB_37}]\tab David Mentr\u233?,{\i Linux SMP HOWTO}, Linux documentation project,{\f2 http://www.linuxdoc.org/HOWTO/SMP-HOWTO.html}, October 2000.\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_38}34{\*\bkmkend BIB_38}]\tab R\u233?my Card and Theodore Ts\rquote o and Stephen Tweedie,{\i Design and implementation of Second Extended Filesystem}, Proceedings of the Firts Dutch International Symposium, ISBN 90-367-0385-9, {\f2 http://e2fsprogs.sourceforge.net/ext2intro.html} (available 2001\endash 05\endash 24).\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_39}35{\*\bkmkend BIB_39}]\tab Joshua Drake, {\i Linux Networking HOWTO}, {\f2 http://www.linuxports.com/howto/networking/} (available 2001-05-24), 2000. \par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_11}36{\*\bkmkend BIB_11}]\tab Harald Milz, {\i Linux High Availability HOWTO}, {\f2 http://www.ibiblio.org/pub/Linux/ALPHA/linux-ha/High-Availability-HOWTO.html} (available 2001\endash 05\endash 25), 1998\endash 12\endash 22.\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_23}37{\*\bkmkend BIB_23}]\tab Stein Gjoen, {\i Multi Disk System Tuning HOWTO},{\f2 http://www.linuxdoc.org/HOWTO/Multi-Disk-HOWTO.html} (available 2001-05\endash 26), 2000-07\endash 24.\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_44}38{\*\bkmkend BIB_44}]\tab {\i Visual Threads Documentation}, Compaq Inc, {\f2 http://www.compaq.com/products/software/visualthreads/documentation.html} (available 2001\endash 05\endash 25).\par \pard\plain\s5\ql\sb240\sa120\keepn\f0\b\fs24\sl240\slmult1 \sb130 \li450\fi0 Source documentation and man pages\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb70 \li450\fi0 [{\v\*\bkmkstart BIB_101}39{\*\bkmkend BIB_101}]\tab See Solaris 8 man page for {\b0\i0\scaps0\f3 mount_nfs} (1M). \par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_102}40{\*\bkmkend BIB_102}]\tab See Tru64 UNIX man page for {\b0\i0\scaps0\f3 mount} (8). \par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_103}41{\*\bkmkend BIB_103}]\tab See Tru64 UNIX man page for {\b0\i0\scaps0\f3 inet} (7). \par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_104}42{\*\bkmkend BIB_104}]\tab See Tru64 UNIX man pages for {\b0\i0\scaps0\f3 X} (7). \par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_105}43{\*\bkmkend BIB_105}]\tab See Tru64 UNIX man pages for {\b0\i0\scaps0\f3 network_manual_setup} (7). \par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_51}44{\*\bkmkend BIB_51}]\tab See HP-UX 11i man pages for {\b0\i0\scaps0\f3 acl} (2). \par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_64}45{\*\bkmkend BIB_64}]\tab See HP-UX 11i man pages for {\b0\i0\scaps0\f3 snmpd} (1M). \par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_65}46{\*\bkmkend BIB_65}]\tab See HP-UX 11i man pages for {\b0\i0\scaps0\f3 X} (7). \par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_66}47{\*\bkmkend BIB_66}]\tab See HP-UX 11i man pages for {\b0\i0\scaps0\f3 bootpd}. \par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_106}48{\*\bkmkend BIB_106}]\tab See HP-UX 11i man pages for {\b0\i0\scaps0\f3 mount_cdfs} (1M). \par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_111}49{\*\bkmkend BIB_111}]\tab See HP-UX 11i man pages for {\b0\i0\scaps0\f3 mount_nfs} (1M). \par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_107}50{\*\bkmkend BIB_107}]\tab See HP-UX 11i man pages for {\b0\i0\scaps0\f3 mount_hfs} (1M). \par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_108}51{\*\bkmkend BIB_108}]\tab See HP-UX 11i man pages for {\b0\i0\scaps0\f3 mount_lofs} (1M). \par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_113}52{\*\bkmkend BIB_113}]\tab See HP-UX 11i man pages for {\b0\i0\scaps0\f3 mount_lvm} (1M). \par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_112}53{\*\bkmkend BIB_112}]\tab See HP-UX 11i man pages for {\b0\i0\scaps0\f3 mount_cdfs} (1M). \par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_109}54{\*\bkmkend BIB_109}]\tab See HP-UX 11i man pages for {\b0\i0\scaps0\f3 dosif} (4). \par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_110}55{\*\bkmkend BIB_110}]\tab See HP-UX 11i man pages for {\b0\i0\scaps0\f3 pfs} (4). \par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_52}56{\*\bkmkend BIB_52}]\tab See Linux man pages for {\b0\i0\scaps0\f3 ipc} (5). \par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_53}57{\*\bkmkend BIB_53}]\tab See kernel source document {\b0\i0\scaps0\f3 linux/Documentation/network/ip-sysctl.txt}. \par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_54}58{\*\bkmkend BIB_54}]\tab See kernel source document {\b0\i0\scaps0\f3 linux/Documentation/Configure.help}. \par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_55}59{\*\bkmkend BIB_55}]\tab See kernel source document {\b0\i0\scaps0\f3 linux/Documentation/ramdisk.txt}. \par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_56}60{\*\bkmkend BIB_56}]\tab See kernel source document {\b0\i0\scaps0\f3 linux/Documentation/vm/numa.html}. \par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_57}61{\*\bkmkend BIB_57}]\tab See kernel source document {\b0\i0\scaps0\f3 linux/Documentation/devices.txt}. \par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_59}62{\*\bkmkend BIB_59}]\tab See kernel source document {\b0\i0\scaps0\f3 linux/Documentation/LVM-HOWTO.htm}.\par \pard\plain\s5\ql\sb240\sa120\keepn\f0\b\fs24\sl240\slmult1 \sb130 \li450\fi0 Articles from the press (bold urls now!)\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb70 \li450\fi0 [{\v\*\bkmkstart BIB_2}63{\*\bkmkend BIB_2}]\tab Richard Shim, {\i Linux makes a move into handhelds}, C\endash Net, {\f0 \b http://news.cnet.com/news/0-1006-200-5827919.html} (available 2001\endash 05\endash 19), 2001.\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_4}64{\*\bkmkend BIB_4}]\tab Mats L\u246?vgren, {\i Linux sparkar ut NT och UNIX fr\u229?n bank}, Computer Sweden, {\f0 \b http://nyheter.idg.se/display.asp?ID=010504-CS31}, 2001.\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_5}65{\*\bkmkend BIB_5}]\tab Jon Tillman, {\i The New Linux Myth Dispeller}, {\f0 \b http://www.eruditum.org/linux/myths/myth-dispeller.html}, 2000.\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_12}66{\*\bkmkend BIB_12}]\tab Mary Jo Foley, {\i At long last Linux 2.4 has arrived}, ZDNet news, {\f0 \b http://www.zdnet.com/zdnn/stories/news/0,4586,2671106,00.html} (available 2001-05-19), January 5 2001.\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_24}67{\*\bkmkend BIB_24}]\tab Robert Kiesling, {\i Linux FAQ, Revision 1.4}, {\f0 \b http://www.linuxdoc.org/FAQ/Linux-FAQ/index.html} (available 2001\endash 05\endash 21), 2001.\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_27}68{\*\bkmkend BIB_27}]\tab Mary Jo Foley, {\i Linus: Partying hard over Linux 2.4}, ZDNet news, {\f0 \b http://www.zdnet.com/zdnn/stories/news/0,4586,2671714,00.html} (available 2001-05-19), January 5 2001.\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_35}69{\*\bkmkend BIB_35}]\tab Nicholas Petreley,{\i The new UNIX alters NT\rquote s orbit: The re-emergence of UNIX threatens to modify the future direction of NT}, NC World, April 1998. \par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_36}70{\*\bkmkend BIB_36}]\tab Ann Harrison,{\i In LINUX We\u8230?}, Software Magazine, Cover Story, September 1998. \par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_41}71{\*\bkmkend BIB_41}]\tab Henry Baltazar. {\i Operating System - Linux 2.4 Kernel}, ZDNet UK, {\f0 \b http://www.zdnet.co.uk/reviews/rstories/0,3040,e7108096,00.html}, 27 January 2001.\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_45}72{\*\bkmkend BIB_45}]\tab Jaikumar Vijayan, {\i High-end Systems Vendors offer performance programs}, ComputerWorld, 1999\endash 22\endash 11.\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_58}73{\*\bkmkend BIB_58}]\tab Press release, {\i Veritas delivers hsm version 3.1 to bring improved data availability to enterprise applications}, {\f0 \b http://www.veritas.com/us/aboutus/pressroom/1998/98-08-18-0.html} (available 2001\endash 05-21), 1998.\par \pard\plain\s5\ql\sb240\sa120\keepn\f0\b\fs24\sl240\slmult1 \sb130 \li450\fi0 8.0.0.1 Technical persons/resources\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb70 \li450\fi0 [{\v\*\bkmkstart BIB_40}74{\*\bkmkend BIB_40}]\tab Jan Strage, IT Architect, IBM Sweden. \par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_49}75{\*\bkmkend BIB_49}]\tab {\i Linux kernel development list}, {\f0 \b http://vger.kernel.org} or {\f0 \b http://www.tux.org/lkml/#s3-4} (available 2001\endash 05\endash 27).\par \pard\plain\s5\ql\sb240\sa120\keepn\f0\b\fs24\sl240\slmult1 \sb130 \li450\fi0 8.0.0.2 Websites\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb70 \li450\fi0 [{\v\*\bkmkstart BIB_68}76{\*\bkmkend BIB_68}]\tab Heimo Haub, {\i Aspects of Access Management in Heterogeneous Distributed Object Systems},Graz University of Technology, {\f0 \b http://www.dinopolis.org/documentation/misc/theses/hhaub/node60.html}\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_3}77{\*\bkmkend BIB_3}]\tab Harald Alvestrand, {\i The Linux Counter Project}, The Linux Counter Project, {\f0 \b http://counter.li.org/} (available 2001\endash 05\endash 21), 2001.\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_28}78{\*\bkmkend BIB_28}]\tab Transaction Processing Performance Council, {\f0 \b http://www.tpc.org} (available 2001-05-21).\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_48}79{\*\bkmkend BIB_48}]\tab FreeSwan homepage,{\f0 \b http://www.freeswan.org/} (available 2001\endash 05\endash 25). \par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_63}80{\*\bkmkend BIB_63}]\tab Columbia Appletalk, {\f0 \b http://www.cs.mu.oz.au/appletalk/cap.html} (available 2001\endash 05\endash 27).\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb10 \li450\fi0 [{\v\*\bkmkstart BIB_67}81{\*\bkmkend BIB_67}]\tab Novell, {\f0 \b http://www.novell.com/} (available 2001\endash 05\endash 27). \par }\pard\plain\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \sb70 \fi0 Appendix {\*\bkmkstart BMkernlist}A{\*\bkmkend BMkernlist}\par \pard\plain\s2\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \sb250 \fi0 MESSAGE REPLIES FROM THE KERNEL DEVELOPMEN LIST\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb250 \fi0 Here are the letter I\rquote ve got from the developers of the kernel, that where posted on the \ldblquote Linux kernel development list\rdblquote . Please see reference [{\field{\*\fldinst{\lang1024 REF BIB_49 \\* MERGEFORMAT }}{\fldrslt{75}}} ] for more information.\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb250 \fi0 {\*\bkmkstart BMa1}A.1{\*\bkmkend BMa1} Jeff Garzik 26 May 2001 22:27:09\par {\pard\plain\s38\ql\widctlpar\f3\fs20\sl240\slmult1 \sb70 \fi0 Date: Sat, 26 May 2001 22:27:09 -0400 \par From: Jeff Garzik \par Organization:MandrakeSoft \par To: cesar.da.silva@cyberdude.com \par Cc:linux-kernel@vger.kernel.org \par Subject:Re: Please help me fill in the blank \par \par Cesar Da Silva wrote: \par > The features that I'm wondering about are: \par > * Dynamic Processor Resilience \par \par is this fault tolerance? I think if a CPU croaks, you are dead. \par \par There are patches for hot swap cpu support, but I haven't seen any CPU \par fault tolerance patches that can handle a dead processor \par \par > * Dynamic Memory Resilience \par \par RAM fault tolerance? There was a patch a long time ago which detected \par bad ram, and would mark those memory clusters as unuseable at boot. \par However that is clearly not dynamic. \par \par If your memory croaks, your kernel will experience random corruptions \par \par > * Dynamic Page Sizing \par \par no \par \par > * Live Upgrade \par \par LOBOS will let one Linux kernel boot another,but that requires a boot \par step, so it is not a live upgrade. so, no, afaik \par \par > * Alternative I/O Pathing \par \par be less vague \par \par > * HSM \par \par patches exist, I believe \par \par > * TCP selective acknowledgement (SACK) \par \par yes \par \par > * Service Location Protocol (SLP) \par \par don't know \par \par > * ATM IP switching \par \par yes, I believe \par \par > * SOCKS 5 support \par \par yes, via userspace apps/libs \par \par > * Multilink PPP \par \par yes \par \par > * TCP/IP Gratuitous ARP (RFC 2002) \par \par not sure \par \par > * Path MTU Discovery (RFC 1191) \par \par yes \par \par > * Path MTU Discovery over UDP \par \par not sure, but I think so \par \par > * IP Multipath Routing \par \par yes \par \par > The questions I have about the features above are: \par > * Are any of the above features implemented in the \par > kernel? If yes, where can I read (url-link to the \par > article, paper... please) about it? \par \par }\pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb310 \fi0 {\*\bkmkstart BMa2}A.2{\*\bkmkend BMa2} Jonathan Morton 27 May 2001\par {\pard\plain\s38\ql\widctlpar\f3\fs20\sl240\slmult1 \sb70 \fi0 \par Datum:Sun, 27 May 2001 03:50:28 +0100 \par To:jgarzik@mandrakesoft.com, cesar.da.silva@cyberdude.com \par From:Jonathan Morton \par Subject:Re: Please help me fill in the blanks. \par Cc:linux-kernel@vger.kernel.org \par \par >> * Live Upgrade \par > \par >LOBOS will let one Linux kernel boot another, but that requires a boot \par >step, so it is not a live upgrade. so, no, afaik \par \par If you build nearly everything (except, obviously what you need to boot) as \par modules, you can unload modules, build new versions, and reload them. So, \par you could say that partial support for "live upgrades" is included. \par \par It works, too - I unloaded my OV511 driver a few weeks ago, copied the \par source for the new one in, built it, and re-inserted it. Same goes for the \par DRM module a couple of weeks before that. Now, the machine in question \par gets rebooted fairly often in any case, but those were things I *didn't* \par have to reboot for. \par \par -------------------------------------------------------------- \par from: Jonathan "Chromatix" Morton \par mail: chromi@cyberspace.org (not for attachments) \par big-mail: chromatix@penguinpowered.com \par uni-mail: j.d.morton@lancaster.ac.uk \par \par The key to knowledge is not to rely on people to teach you it. \par \par Get VNC Server for Macintosh from http://www.chromatix.uklinux.net/vnc/ \par \par -----BEGIN GEEK CODE BLOCK----- \par Version 3.12 \par GCS$/E/S dpu(!) s:- a20 C+++ UL++ P L+++ E W+ N- o? K? w--- O-- M++$ V? PS \par PE- Y+ PGP++ t- 5- X- R !tv b++ DI+++ D G e+ h+ r++ y+(*) \par -----END GEEK CODE BLOCK----- \par \par }\pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb310 \fi0 {\*\bkmkstart BMa3}A.3{\*\bkmkend BMa3} Jeff Garzik 26 May 2001 22:55:04\par {\pard\plain\s38\ql\widctlpar\f3\fs20\sl240\slmult1 \sb70 \fi0 \par Date: Sat, 26 May 2001 22:55:04 -0400 \par From: Jeff Garzik \par Organization: MandrakeSoft \par To: chromi@cyberspace.org \par Cc: cesar.da.silva@cyberdude.com, linux-kernel@vger.kernel.org \par \u196?mne: Re: Please help me fill in the blanks. \par \par Jonathan Morton wrote: \par > \par > >> * Live Upgrade \par > > \par > >LOBOS will let one Linux kernel boot another, but that requires a \par boot \par > >step, so it is not a live upgrade. so, no, afaik \par > \par > If you build nearly everything (except, obviously what you need to \par boot) as \par > modules, you can unload modules, build new versions, and reload them. \par So, \par > you could say that partial support for "live upgrades" is included. \par \par I stand corrected, though I clearly know better: \par Modules are unloaded/reloaded all the time during my driver development \par :) \par \par -- \par Jeff Garzik | Disbelief, that's why you fail. \par Building 1024 | \par MandrakeSoft | \par \par }\pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb310 \fi0 {\*\bkmkstart BMa4}A.4{\*\bkmkend BMa4} Dan Hollis 26 May 2001\par {\pard\plain\s38\ql\widctlpar\f3\fs20\sl240\slmult1 \sb70 \fi0 \par Date: Sat, 26 May 2001 21:25:28 -0700 (PDT) \par From: Dan Hollis \par To: thunderlight1@yahoo.com \par Subject: Re: Please help me fill in the blanks. \par \par On Sun, 27 May 2001, Cesar Da Silva wrote: \par > * Live Upgrade \par \par implemented \par \par > * TCP selective acknowledgement (SACK) \par \par implemented \par \par > * SOCKS 5 support \par \par implemented \par \par > * Multilink PPP \par \par implemented \par \par > * Path MTU Discovery (RFC 1191) \par \par implemented \par \par > * IP Multipath Routing \par \par implemented \par \par }\pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb310 \fi0 {\*\bkmkstart BMa5}A.5{\*\bkmkend BMa5} James Sutherland 27 May 2001\par {\pard\plain\s38\ql\widctlpar\f3\fs20\sl240\slmult1 \sb70 \fi0 \par Date: Sun, 27 May 2001 09:17:15 +0100 (BST) \par From: James Sutherland \par To: jgarzik@mandrakesoft.com \par Cc: cesar.da.silva@cyberdude.com, linux-kernel@vger.kernel.org \par Subject: Re: Please help me fill in the blanks. \par \par On Sat, 26 May 2001, Jeff Garzik wrote: \par \par > Cesar Da Silva wrote: \par > > The features that I'm wondering about are: \par > > * Dynamic Processor Resilience \par > \par > is this fault tolerance? I think if a CPU croaks, you are dead. \par > \par > There are patches for hot swap cpu support, but I haven't seen any \par CPU \par > fault tolerance patches that can handle a dead processor \par \par The S/390 has this; presumably it applies to Linux as well as the other \par supported OSs? \par \par > > * Dynamic Memory Resilience \par > \par > RAM fault tolerance? There was a patch a long time ago which \par detected \par > bad ram, and would mark those memory clusters as unuseable at boot. \par > However that is clearly not dynamic. \par > \par > If your memory croaks, your kernel will experience random corruptions \par \par ECC can be supported by the hardware; no support for mapping out duff \par banks on x86, but again S/390 may differ? \par \par > > * Live Upgrade \par > \par > LOBOS will let one Linux kernel boot another, but that requires a \par boot \par > step, so it is not a live upgrade. so, no, afaik \par \par Live SOFTWARE upgrade, or live HARDWARE upgrade? If the latter, things \par like hotswap PCI, USB... and again the S/390? \par \par > > * Service Location Protocol (SLP) \par > \par > don't know \par \par Yes, I think so - mars_nwe surely needs this? \par \par > > * TCP/IP Gratuitous ARP (RFC 2002) \par > \par > not sure \par \par Isn't that how LVS clusters handle IP takeovers? \par \par > > * Path MTU Discovery (RFC 1191) \par > \par > yes \par \par With one or two RFC violations, yes. \par \par Basically, most of those features relating to hardware resilience \par should \par be usable with Linux on an S/390 - they are hardware features, though, \par AFAICS? \par \par \par James. \par \par }\pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb310 \fi0 {\*\bkmkstart BMa6}A.6{\*\bkmkend BMa6} Ingo Oeser 27 May 2001\par {\pard\plain\s38\ql\widctlpar\f3\fs20\sl240\slmult1 \sb70 \fi0 \par Date: Sun, 27 May 2001 10:27:07 +0200 \par From: Ingo Oeser \par To: jgarzik@mandrakesoft.com \par Cc: cesar.da.silva@cyberdude.com, linux-kernel@vger.kernel.org \par Subject: Re: Please help me fill in the blanks. \par \par On Sat, May 26, 2001 at 10:27:09PM -0400, Jeff Garzik wrote: \par > > * Service Location Protocol (SLP) \par \par www.openslp.org \par \par Regards \par \par Ingo Oeser \par -- \par To the systems programmer, \par users and applications serve only to provide a test load. \par \par }\pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb310 \fi0 {\*\bkmkstart BMa7}A.7{\*\bkmkend BMa7} Dominik Kubla 27 May 2001\par {\pard\plain\s38\ql\widctlpar\f3\fs20\sl240\slmult1 \sb70 \fi0 \par Date: Sun, 27 May 2001 10:57:10 +0200 \par From: Dominik Kubla \par To: jgarzik@mandrakesoft.com \par Cc: cesar.da.silva@cyberdude.com, linux-kernel@vger.kernel.org \par Subject: Re: Please help me fill in the blanks. \par \par On Sat, May 26, 2001 at 10:27:09PM -0400, Jeff Garzik wrote: \par > \par > > * Service Location Protocol (SLP) \par > \par > don't know \par \par Userspace: http://www.openslp.org/ \par \par > > * TCP/IP Gratuitous ARP (RFC 2002) \par > \par > not sure \par \par Userspace. Also no tool comes to my mind, arping should be easily \par modified \par to do this. \par \par Dominik \par -- \par A lovely thing to see: Kobayashi Issa \par through the paper window's holes (1763-1828) \par the galaxy. [taken from: David Brin - Sundiver] \par \par }\pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb310 \fi0 {\*\bkmkstart BMa8}A.8{\*\bkmkend BMa8} Ville Herva 27 May 2001\par {\pard\plain\s38\ql\widctlpar\f3\fs20\sl240\slmult1 \sb70 \fi0 \par Date: Sun, 27 May 2001 20:21:19 +0300 \par From: Ville Herva \par To: jgarzik@mandrakesoft.com \par Cc: cesar.da.silva@cyberdude.com, linux-kernel@vger.kernel.org \par Subject: Re: Please help me fill in the blanks. \par \par > > * Dynamic Memory Resilience \par > \par > RAM fault tolerance? There was a patch a long time ago which \par detected \par > bad ram, and would mark those memory clusters as unuseable at boot. \par > However that is clearly not dynamic. \par \par If you are referring to Badram patch by Rick van Rein \par (http://rick.vanrein.org/linux/badram/), it doesn't detect the bad ram, \par memtest86 does that part (and does it well) -- you enter then enter the \par badram clusters as boot param. But I have to say badram patch works \par marvellously (thanks, Rick.) Shame it didn't find its way to standard \par kernel. \par \par }}} }}}latex2rtf-2.3.18/test/enc_maccyr.tex0000777000175000017500000001162313050672360017534 0ustar wilfriedwilfried\documentclass[10pt]{article} \usepackage[russian]{babel} \usepackage{times} \usepackage{textcomp} \usepackage[maccyr]{inputenc} \begin{document} \begin{center} \begin{tabular}{ccrl} 80&€&410&CYRILLIC CAPITAL LETTER A\\ 81&&411&CYRILLIC CAPITAL LETTER BE\\ 82&‚&412&CYRILLIC CAPITAL LETTER VE\\ 83&ƒ&413&CYRILLIC CAPITAL LETTER GHE\\ 84&„&414&CYRILLIC CAPITAL LETTER DE\\ 85&…&415&CYRILLIC CAPITAL LETTER IE\\ 86&†&416&CYRILLIC CAPITAL LETTER ZHE\\ 87&‡&417&CYRILLIC CAPITAL LETTER ZE\\ 88&ˆ&418&CYRILLIC CAPITAL LETTER I\\ 89&‰&419&CYRILLIC CAPITAL LETTER SHORT I\\ 8A&Š&41A&CYRILLIC CAPITAL LETTER KA\\ 8B&‹&41B&CYRILLIC CAPITAL LETTER EL\\ 8C&Œ&41C&CYRILLIC CAPITAL LETTER EM\\ 8D&&41D&CYRILLIC CAPITAL LETTER EN\\ 8E&Ž&41E&CYRILLIC CAPITAL LETTER O\\ 8F&&41F&CYRILLIC CAPITAL LETTER PE\\ 90&&420&CYRILLIC CAPITAL LETTER ER\\ 91&‘&421&CYRILLIC CAPITAL LETTER ES\\ 92&’&422&CYRILLIC CAPITAL LETTER TE\\ 93&“&423&CYRILLIC CAPITAL LETTER U\\ 94&”&424&CYRILLIC CAPITAL LETTER EF\\ 95&•&425&CYRILLIC CAPITAL LETTER HA\\ 96&–&426&CYRILLIC CAPITAL LETTER TSE\\ 97&—&427&CYRILLIC CAPITAL LETTER CHE\\ 98&˜&428&CYRILLIC CAPITAL LETTER SHA\\ 99&™&429&CYRILLIC CAPITAL LETTER SHCHA\\ 9A&š&42A&CYRILLIC CAPITAL LETTER HARD SIGN\\ 9B&›&42B&CYRILLIC CAPITAL LETTER YERU\\ 9C&œ&42C&CYRILLIC CAPITAL LETTER SOFT SIGN\\ 9D&&42D&CYRILLIC CAPITAL LETTER E\\ 9E&ž&42E&CYRILLIC CAPITAL LETTER YU\\ 9F&Ÿ&42F&CYRILLIC CAPITAL LETTER YA\\ \end{tabular} \pagebreak \begin{tabular}{cccl} A0& &2020&DAGGER\\ A1&Ą&B0&DEGREE SIGN\\ A2&˘&490&CYRILLIC CAPITAL LETTER GHE WITH UPTURN\\ A3&Ł&A3&POUND SIGN\\ A4&¤&A7&SECTION SIGN\\ A5&Ľ&2022&BULLET\\ A6&Ś&B6&PILCROW SIGN\\ A7&§&406&CYRILLIC CAPITAL LETTER BYELORUSSIAN-UKRAINIAN I\\ A8&¨&AE®ISTERED SIGN\\ A9&Š&A9©RIGHT SIGN\\ AA&Ş&2122&TRADE MARK SIGN\\ AB&Ť&402&CYRILLIC CAPITAL LETTER DJE\\ AC&Ź&452&CYRILLIC SMALL LETTER DJE\\ AD&$­$&2260&NOT EQUAL TO\\ AE&Ž&403&CYRILLIC CAPITAL LETTER GJE\\ AF&Ż&453&CYRILLIC SMALL LETTER GJE\\ B0&$°$&221E&INFINITY\\ B1&$ą$&B1&PLUS-MINUS SIGN\\ B2&$˛$&2264&LESS-THAN OR EQUAL TO\\ B3&$ł$&2265&GREATER-THAN OR EQUAL TO\\ B4&´&456&CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I\\ B5&$ľ$&B5&MICRO SIGN\\ B6&$ś$&491&CYRILLIC SMALL LETTER GHE WITH UPTURN\\ B7&ˇ&408&CYRILLIC CAPITAL LETTER JE\\ B8&¸&404&CYRILLIC CAPITAL LETTER UKRAINIAN IE\\ B9&š&454&CYRILLIC SMALL LETTER UKRAINIAN IE\\ BA&ş&407&CYRILLIC CAPITAL LETTER YI\\ BB&ť&457&CYRILLIC SMALL LETTER YI\\ BC&ź&409&CYRILLIC CAPITAL LETTER LJE\\ BD&˝&459&CYRILLIC SMALL LETTER LJE\\ BE&ž&40A&CYRILLIC CAPITAL LETTER NJE\\ BF&ż&45A&CYRILLIC SMALL LETTER NJE\\ \end{tabular} \pagebreak \begin{tabular}{cccl} C0&Ŕ&458&CYRILLIC SMALL LETTER JE\\ C1&Á&405&CYRILLIC CAPITAL LETTER DZE\\ C2&$Â$&AC&NOT SIGN\\ C3&$Ă$&221A&SQUARE ROOT\\ C4&Ä&192&LATIN SMALL LETTER F WITH HOOK\\ C5&$Ĺ$&2248&ALMOST EQUAL TO\\ C6&$Ć$&2206&INCREMENT\\ C7&Ç&AB&LEFT-POINTING DOUBLE ANGLE QUOTATION MARK\\ C8&Č&BB&RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK\\ C9&É&2026&HORIZONTAL ELLIPSIS\\ CA&Ę&A0&NO-BREAK SPACE\\ CB&Ë&40B&CYRILLIC CAPITAL LETTER TSHE\\ CC&Ě&45B&CYRILLIC SMALL LETTER TSHE\\ CD&Í&40C&CYRILLIC CAPITAL LETTER KJE\\ CE&Î&45C&CYRILLIC SMALL LETTER KJE\\ CF&Ď&455&CYRILLIC SMALL LETTER DZE\\ D0&Đ&2013&EN DASH\\ D1&Ń&2014&EM DASH\\ D2&Ň&201C&LEFT DOUBLE QUOTATION MARK\\ D3&Ó&201D&RIGHT DOUBLE QUOTATION MARK\\ D4&Ô&2018&LEFT SINGLE QUOTATION MARK\\ D5&Ő&2019&RIGHT SINGLE QUOTATION MARK\\ D6&$Ö$&F7&DIVISION SIGN\\ D7&×&201E&DOUBLE LOW-9 QUOTATION MARK\\ D8&Ř&40E&CYRILLIC CAPITAL LETTER SHORT U\\ D9&Ů&45E&CYRILLIC SMALL LETTER SHORT U\\ DA&Ú&40F&CYRILLIC CAPITAL LETTER DZHE\\ DB&Ű&45F&CYRILLIC SMALL LETTER DZHE\\ DC&Ü&2116&NUMERO SIGN\\ DD&Ý&401&CYRILLIC CAPITAL LETTER IO\\ DE&Ţ&451&CYRILLIC SMALL LETTER IO\\ DF&ß&44F&CYRILLIC SMALL LETTER YA\\ \end{tabular} \pagebreak \begin{tabular}{cccl} E0&ŕ&430&CYRILLIC SMALL LETTER A\\ E1&á&431&CYRILLIC SMALL LETTER BE\\ E2&â&432&CYRILLIC SMALL LETTER VE\\ E3&ă&433&CYRILLIC SMALL LETTER GHE\\ E4&ä&434&CYRILLIC SMALL LETTER DE\\ E5&ĺ&435&CYRILLIC SMALL LETTER IE\\ E6&ć&436&CYRILLIC SMALL LETTER ZHE\\ E7&ç&437&CYRILLIC SMALL LETTER ZE\\ E8&č&438&CYRILLIC SMALL LETTER I\\ E9&é&439&CYRILLIC SMALL LETTER SHORT I\\ EA&ę&43A&CYRILLIC SMALL LETTER KA\\ EB&ë&43B&CYRILLIC SMALL LETTER EL\\ EC&ě&43C&CYRILLIC SMALL LETTER EM\\ ED&í&43D&CYRILLIC SMALL LETTER EN\\ EE&î&43E&CYRILLIC SMALL LETTER O\\ EF&ď&43F&CYRILLIC SMALL LETTER PE\\ F0&đ&440&CYRILLIC SMALL LETTER ER\\ F1&ń&441&CYRILLIC SMALL LETTER ES\\ F2&ň&442&CYRILLIC SMALL LETTER TE\\ F3&ó&443&CYRILLIC SMALL LETTER U\\ F4&ô&444&CYRILLIC SMALL LETTER EF\\ F5&ő&445&CYRILLIC SMALL LETTER HA\\ F6&ö&446&CYRILLIC SMALL LETTER TSE\\ F7&÷&447&CYRILLIC SMALL LETTER CHE\\ F8&ř&448&CYRILLIC SMALL LETTER SHA\\ F9&ů&449&CYRILLIC SMALL LETTER SHCHA\\ FA&ú&44A&CYRILLIC SMALL LETTER HARD SIGN\\ FB&ű&44B&CYRILLIC SMALL LETTER YERU\\ FC&ü&44C&CYRILLIC SMALL LETTER SOFT SIGN\\ FD&ý&44D&CYRILLIC SMALL LETTER E\\ FE&ţ&44E&CYRILLIC SMALL LETTER YU\\ FF&˙&20AC&EURO SIGN\\ \end{tabular} \end{center} \end{document} latex2rtf-2.3.18/test/table_array1.tex0000777000175000017500000000336213050672360020000 0ustar wilfriedwilfried%% LyX 1.6.3 created this file. For more info, see http://www.lyx.org/. %% Do not edit unless you really know what you are doing. \documentclass[british]{article} \usepackage[T1]{fontenc} \usepackage[latin9]{inputenc} \usepackage{array} \usepackage{booktabs} \makeatletter %%%%%%%%%%%%%%%%%%%%%%%%%%%%%% LyX specific LaTeX commands. %% Because html converters don't know tabularnewline \providecommand{\tabularnewline}{\\} \makeatother \usepackage{babel} \begin{document} % \begin{table}[btp] \caption{Endowment Against Final Allocation for Pooled Data} \label{PooledResults} \begin{tabular}{>{\raggedright}p{0.05\columnwidth}>{\raggedright}p{0.2\columnwidth}>{\raggedright}p{0.2\textwidth}>{\raggedright}p{0.2\textwidth}>{\raggedright}p{0.2\columnwidth}} \toprule & & \multicolumn{2}{l}{Final Allocation } & \tabularnewline \cmidrule{3-4} & & Lemonade Rich & Crisps Rich & Total \tabularnewline \midrule \multicolumn{2}{l}{Endowment} & & & \tabularnewline & Lemonade Rich & \multicolumn{1}{r}{73} & \multicolumn{1}{r}{37} & \multicolumn{1}{r}{110}\tabularnewline & Crisps Rich & \multicolumn{1}{r}{40} & \multicolumn{1}{r}{60} & \multicolumn{1}{r}{100}\tabularnewline \multicolumn{2}{l}{Total} & \multicolumn{1}{r}{113} & \multicolumn{1}{r}{97} & \multicolumn{1}{r}{210}\tabularnewline \bottomrule \end{tabular} \emph{\small Lemonade Rich}{\small{} means two bottles of lemonade and one packet of crisps.}\emph{\small{} Crisps Rich }{\small means two packets of crisps and one bottle of lemonade. }\emph{\small Endowment}{\small{} is what the subject held before deciding whether or not to trade. }\emph{\small Final Allocation }{\small is what they held after the decision.} \end{table} \end{document} latex2rtf-2.3.18/test/bib_apacite_dblsp.tex0000777000175000017500000000554313050672355021047 0ustar wilfriedwilfried\documentclass[11pt]{article} \usepackage{setspace} \doublespacing %old versions on or before 2003/03/27 %\usepackage{apacite} %new versions of apacite should use this variant \usepackage[BCAY]{apacite} \begin{document} this topic, including the authors of the second article. The other one, written by W. Vialle et al. \cite{vialle2001} Kulik and Kulik performed a meta-analysis about the effects of acceleration of gifted children \cite{kulik1984}. The authors state that many older studies \cite{hooper1986,ortony1988,russell1979} \cite[chap.~3]{allen1995a,allen1995b} \citeA{allen1995a} \citeyear{allen1995b} \citeauthor{allen1995b} \citeyearNP{allen1995a} \begin{thebibliography}{} \bibitem[\protect\BCAY{Kulik \BBA{} Kulik}{Kulik \BBA{} Kulik}{1984}]{kulik1984} Kulik, J.~A.\BCBT{} \BBA{} Kulik, C.-L.~C. \newblock{}\BBOP{}1984\BBCP{}. \newblock{}\BBOQ{}{Effects of Accelerated Instruction on Students}.\BBCQ{} \newblock{}\Bem{Review of Educational Research}, \Bem{54}(3). \bibitem[\protect\BCAY{Vialle, Ashton, Carlon\BCBL{} \BBA{} Rankin}{Vialle \BOthers{}}{2001}]{vialle2001} Vialle, W., Ashton, T., Carlon, G.\BCBL{} \BBA{} Rankin, F. \newblock{}\BBOP{}2001\BBCP{}. \newblock{}\BBOQ{}{Acceleration: A Coat of Many Colours}.\BBCQ{} \newblock{}\Bem{Roeper Review}, \Bem{24}(1). \bibitem[\protect\BCAY{Allen \BBA{} Carifio}{Allen \BBA{} Carifio}{1995\protect\BCnt{1}}]{allen1995b} Allen, B.~D.\BCBT{} \BBA{} Carifio, J. \newblock{}\BBOP{}1995\protect\BCnt{1}, May\BBCP{}. \newblock{}\Bem{The relationship between emotional states and solving complex mathematical problems.} \newblock{}Paper presented at the meeting of Eastern Educational Research Association, Hilton Head, SC. \bibitem[\protect\BCAY{Allen \BBA{} Carifio}{Allen \BBA{} Carifio}{1995\protect\BCnt{2}}]{allen1995a} Allen, B.~D.\BCBT{} \BBA{} Carifio, J. \newblock{}\BBOP{}1995\protect\BCnt{2}, March\BBCP{}. \newblock{}\Bem{A {M}ethodology for the {A}nalysis of {E}motion {E}xperiences during {M}athematical {P}roblem {S}olving.} \newblock{}Paper presented at the Annual Conference of the New England Educational Research Organization, Portsmouth, NH. \bibitem[\protect\BCAY{Hooper}{Hooper}{1986}]{hooper1986} Hooper, J. \newblock{}\BBOP{}1986\BBCP{}. \newblock{}\Bem{The 3-{P}ound {U}niverse.} \newblock{}Los Angeles: Teacher, Inc. \bibitem[\protect\BCAY{Ortony, Clore\BCBL{} \BBA{} Collins}{Ortony \BOthers{}}{1988}]{ortony1988} Ortony, A., Clore, G.\BCBL{} \BBA{} Collins, A. \newblock{}\BBOP{}1988\BBCP{}. \newblock{}\Bem{The {C}ognitive {S}tructure of {E}motions.} \newblock{}New York: Cambridge University Press. \bibitem[\protect\BCAY{Russell}{Russell}{1979}]{russell1979} Russell, J.~A. \newblock{}\BBOP{}1979\BBCP{}. \newblock{}\BBOQ{}Affect {S}pace is {B}ipolar.\BBCQ{} \newblock{}\Bem{Journal of Personality and Social Psychology}, \Bem{37}(3), 345--356. \end{thebibliography} \end{document} latex2rtf-2.3.18/test/misc1.rtf0000644000175000017500000003151213664476467016455 0ustar wilfriedwilfried{\rtf1\ansi\uc1\deff0\deflang1024 {\fonttbl{\f0\fnil\fcharset0 Times New Roman;} {\f1\fnil\fcharset0 Arial;} {\f2\fnil\fcharset0 Arial;} {\f3\fnil\fcharset0 Courier New;} {\f4\fnil\fcharset0 Zapf Chancery;} {\f5\fnil\fcharset0 STIXGeneral;} {\f6\fnil\fcharset0 MS Gothic;} } {\colortbl; \red0\green0\blue0; \red0\green0\blue255; \red0\green255\blue255; \red0\green255\blue0; \red255\green0\blue255; \red255\green0\blue0; \red255\green255\blue0; \red255\green255\blue255; \red0\green0\blue128; \red0\green128\blue128; \red0\green128\blue0; \red128\green0\blue128; \red128\green0\blue0; \red128\green128\blue0; \red128\green128\blue128; \red192\green192\blue192; \red239\green219\blue197; \red205\green149\blue117; \red253\green217\blue181; \red120\green219\blue226; \red135\green169\blue107; \red255\green164\blue116; \red250\green231\blue181; \red159\green129\blue112; \red253\green124\blue110; \red35\green35\blue35; \red31\green117\blue254; \red173\green173\blue214; \red25\green158\blue189; \red115\green102\blue189; \red222\green93\blue131; \red203\green65\blue84; \red180\green103\blue77; \red255\green127\blue73; \red234\green126\blue93; \red176\green183\blue198; \red255\green255\blue153; \red28\green211\blue162; \red255\green170\blue204; \red221\green68\blue146; \red29\green172\blue214; \red188\green93\blue88; \red221\green148\blue117; \red154\green206\blue235; \red255\green188\blue217; \red253\green219\blue109; \red43\green108\blue196; \red239\green205\blue184; \red110\green81\blue96; \red29\green249\blue20; \red113\green188\blue120; \red109\green174\blue129; \red195\green100\blue197; \red204\green102\blue102; \red231\green198\blue151; \red252\green217\blue117; \red168\green228\blue160; \red149\green145\blue140; \red28\green172\blue120; \red240\green232\blue145; \red255\green29\blue206; \red178\green236\blue93; \red93\green118\blue203; \red202\green55\blue103; \red59\green176\blue143; \red253\green252\blue116; \red252\green180\blue213; \red255\green189\blue136; \red246\green100\blue175; \red205\green74\blue74; \red151\green154\blue170; \red255\green130\blue67; \red200\green56\blue90; \red239\green152\blue170; \red253\green188\blue180; \red26\green72\blue118; \red48\green186\blue143; \red25\green116\blue210; \red255\green163\blue67; \red186\green184\blue108; \red255\green117\blue56; \red230\green168\blue215; \red65\green74\blue76; \red255\green110\blue74; \red28\green169\blue201; \red255\green207\blue171; \red197\green208\blue230; \red253\green215\blue228; \red21\green128\blue120; \red252\green116\blue253; \red247\green128\blue161; \red142\green69\blue133; \red116\green66\blue200; \red157\green129\blue186; \red255\green29\blue206; \red255\green73\blue108; \red214\green138\blue89; \red255\green72\blue208; \red227\green37\blue107; \red238\green32\blue77; \red255\green83\blue73; \red192\green68\blue143; \red31\green206\blue203; \red120\green81\blue169; \red255\green155\blue170; \red252\green40\blue71; \red118\green255\blue122; \red159\green226\blue191; \red165\green105\blue79; \red138\green121\blue93; \red69\green206\blue162; \red251\green126\blue253; \red205\green197\blue194; \red128\green218\blue235; \red236\green234\blue190; \red255\green207\blue72; \red253\green94\blue83; \red250\green167\blue108; \red252\green137\blue172; \red219\green215\blue210; \red23\green128\blue109; \red222\green170\blue136; \red119\green221\blue231; \red253\green252\blue116; \red146\green110\blue174; \red247\green83\blue148; \red255\green160\blue137; \red143\green80\blue157; \red237\green237\blue237; \red162\green173\blue208; \red255\green67\blue164; \red252\green108\blue133; \red205\green164\blue222; \red252\green232\blue131; \red197\green227\blue132; \red255\green182\blue83; } {\stylesheet {\s0\qj\widctlpar\f0\fs24 \snext0 Normal;} {\cs10 \additive\ssemihidden Default Paragraph Font;} {\s1\qc\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 Part;} {\s2\ql\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 heading 1;} {\s3\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 2;} {\s4\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 3;} {\s5\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 4;} {\s6\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 5;} {\s7\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 6;} {\s8\qr\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext8 rightpar;} {\s9\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext9 centerpar;} {\s10\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext10 leftpar;} {\s11\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equation;} {\s12\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationNum;} {\s13\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlign;} {\s14\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlignNum;} {\s15\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArray;} {\s16\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArrayNum;} {\s17\ql\sb120\sa120\keep\widctlpar\f0\fs20 \sbasedon0\snext0 theorem;} {\s18\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 bitmapCenter;} {\s20\qc\sb240\sa240\b\f0\fs36 \sbasedon0\snext21 Title;} {\s21\qc\sa120\f0\fs24 \sbasedon0\snext0 author;} {\s22\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext22 footer;} {\s23\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext23 header;} {\s30\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 caption;} {\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext0 Figure;} {\s32\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext32 Table;} {\s33\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext33 Tabular;} {\s34\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext34 Tabbing;} {\s35\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext35 Quote;} {\s38\ql\widctlpar\f3\fs24 \snext38 verbatim;} {\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext46 List;} {\s47\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext47 List 1;} {\s50\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 latex picture;} {\s51\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 subfigure;} {\s61\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext62 bibheading;} {\s62\ql\fi-567\li567\sb0\sa0\f0\fs20 \sbasedon0\snext62 bibitem;} {\s64\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext64 endnotes;} {\s65\ql\fi-113\li397\lin397\f0\fs24 \sbasedon0\snext65 footnote text;} {\s66\qj\fi-170\li454\lin454\f0\fs24 \sbasedon0\snext66 endnote text;} {\cs62\super \additive\sbasedon10 footnote reference;} {\cs63\super \additive\sbasedon10 endnote reference;} {\s67\ql\sb60\sa60\keepn\f0\fs24 \sbasedon0\snext67 acronym;} {\s70\qc\sa120\b\f0\fs24 \sbasedon0\snext71 abstract title;} {\s71\qj\li1024\ri1024\fi340\widctlpar\f0\fs24 \sbasedon0\snext0 abstract;} {\s80\ql\sb240\sa120\keepn\f0\b\fs20 \sbasedon0\snext0 contents_heading;} {\s81\ql\li425\tqr\tldot\tx8222\sb240\sa60\keepn\f0\fs24\b \sbasedon0\snext82 toc 1;} {\s82\ql\li512\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs24 \sbasedon0\snext83 toc 2;} {\s83\ql\li1024\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs24 \sbasedon0\snext84 toc 3;} {\s84\ql\li1536\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs24 \sbasedon0\snext85 toc 4;} {\s85\ql\li2048\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs24 \sbasedon0\snext86 toc 5;} {\s86\ql\li2560\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs24 \sbasedon0\snext86 toc 6;} } {\info {\title Original file was misc1.tex} {\doccomm Created using latex2rtf 2.3.18 r1266 (released May 29, 2020) on Sat May 30 17:35:19 2020 } } {\footer\pard\plain\f0\fs24\qc\chpgn\par} \paperw11960\paperh16900\facingp\margl1724\margr1996\margt2249\margb963\pgnstart0\widowctrl\qj\ftnbj\f0\aftnnar {\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 \fs20 h-Design\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb210 \fi0 \fs20 Two-Stage-Design \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx4120\sl240\slmult1 \sb210 \fi0 \fs20 \tab {\i A}{\u8801*}{\i B}\par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx4120\sl240\slmult1 \sb210 \fi0 \fs20 \tab {\field{\*\fldinst{ EQ {\i A}\\s\\do5({\fs16 2}){\u8801*}{\i B}}}{\fldrslt }} \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx4120\sl240\slmult1 \sb210 \fi0 \fs20 \tab {\field{\*\fldinst{ EQ {\i A}{\u8592*}{\i B}}}{\fldrslt }} \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx4120\sl240\slmult1 \sb210 \fi0 \fs20 \tab {\field{\*\fldinst{ EQ {\i A}\\s\\do5({\fs16 2}){\u8592*}{\i B}}}{\fldrslt }} \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx4120\sl240\slmult1 \sb210 \fi0 \fs20 \tab {\field{\*\fldinst{ EQ {\i A}{\u8594*}{\i B}}}{\fldrslt }} \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx4120\sl240\slmult1 \sb210 \fi0 \fs20 \tab {\field{\*\fldinst{ EQ {\i A}\\s\\do5({\fs16 2}){\u8594*}{\i B}}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb210 \fi0 \fs20 R=({{\field{\*\fldinst{ EQ {\i R}\\s\\do5({\fs16 1})\\,..\\,{\i R}\\s\\do5({\fs16 {\i r}}))}}{\fldrslt }} }\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb210 \fi0 \fs20 \'d6se\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb210 \fi0 \fs20 l\'e4\'df{}t \'c4nderung \'dcbung\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb210 \fi0 \fs20 Nach Little & Rubin (1987) kann die Response-Wahrscheinlichkeit abh\'e4ngen\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb210 \fi0 \fs20 {\par {\trowd\cellx604\cellx5493\cellx8239 {\pard\intbl\ql {\~\~\~\~}\cell} {\pard\intbl\ql {(1) von D und m\'f6glicherweise auch R,}\cell} {\pard\intbl\ql {(weder MAR noch OAR)}\cell} \row} {\trowd\cellx604\cellx5493\cellx8239 {\pard\intbl\ql {}\cell} {\pard\intbl\ql {(2) von R, aber nicht von D,}\cell} {\pard\intbl\ql {(MAR, aber nicht OAR)}\cell} \row} {\trowd\cellx604\cellx5493\cellx8239 {\pard\intbl\ql {}\cell} {\pard\intbl\ql {(3) weder von R noch von D}\cell} {\pard\intbl\ql {(MAR und OAR)}\cell} \row} }\par {\pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 \fs20 {\b {\b Definition 4.1:}} {}\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb210 \li600\fi0 \fs20 Sei D eine bin\'e4re Responsevariable und seien {{\field{\*\fldinst{ EQ {\i R}\\s\\do5({\fs16 1})}}{\fldrslt }} } und {{\field{\*\fldinst{ EQ {\i R}\\s\\do5({\fs16 2})}}{\fldrslt }} } zwei beliebige (d.h. kategorielle oder stetige) unabh\'e4ngige Variablen oder auch Variablen-Vektoren. O.B.d.A. sei die Kovariable {{\field{\*\fldinst{ EQ {\i R}\\s\\do5({\fs16 1})}}{\fldrslt }} } f\'fcr alle Beobachtungen vollst\'e4ndig, die Kovariable {{\field{\*\fldinst{ EQ {\i R}\\s\\do5({\fs16 2})}}{\fldrslt }} } nicht vollst\'e4ndig vorhanden.\par {\pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li1200\fi-300 \fs20 1.\tab Just an item \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li1200\fi-300 \fs20 2.\tab Just another item \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li1200\fi-300 \fs20 3.\tab Die Beobachtbarkeit {{\field{\*\fldinst{ EQ {\i O}\\s\\do5({\fs16 2})}}{\fldrslt }} } von {{\field{\*\fldinst{ EQ {\i R}\\s\\do5({\fs16 2})}}{\fldrslt }} } ist definiert als Zufallsvariable {\par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx4120\sl240\slmult1 \sb210 \li1200\fi0 \fs20 \tab {\field{\*\fldinst{ EQ {\i O}\\s\\do5({\fs16 2}):= \\b \\lc\\\{ ({ \\a \\al \\co2 (1,\~\~\~{\~wenn\~{{\i R}\\s\\do5({\fs16 2})} beobachtbar ist;} ,0,\~\~\~{\~wenn\~{{\i R}\\s\\do5({\fs16 2})} nicht beobachtbar ist.} )})}}{\fldrslt }} \par }\pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li1200\fi-300 \fs20 4.\tab Fehlende Daten sind genau dann {\scaps0\b0\i missing at random}, wenn f\'fcr i = 0,1 gilt:\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb210 \li1200\fi0 \fs20 {{\field{\*\fldinst{ EQ {\i P}({\i O}\\s\\do5({\fs16 2})=1|{\i D}={\i i}\\,{\i R}\\s\\do5({\fs16 1})={\i r}\\s\\do5({\fs16 1})\\,{\i R}\\s\\do5({\fs16 2})={\i r}\\s\\do5({\fs16 2})){\u8801*}{\i P}({\i O}\\s\\do5({\fs16 2})=1|{\i D}={\i i}\\,{\i R}\\s\\do5({\fs16 1})={\i r}\\s\\do5({\fs16 1}))}}{\fldrslt }} }\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb210 \li1200\fi0 \fs20 \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li1200\fi-300 \fs20 5.\tab Fehlende Daten sind genau dann {\scaps0\b0\i missing completely at random}, wenn f\'fcr i = 0,1 gilt:\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb210 \li1200\fi0 \fs20 {{\field{\*\fldinst{ EQ {\i P}({\i O}\\s\\do5({\fs16 2})=1|{\i D}={\i i}\\,{\i R}\\s\\do5({\fs16 1})={\i r}\\s\\do5({\fs16 1})\\,{\i R}\\s\\do5({\fs16 2})={\i r}\\s\\do5({\fs16 2})){\u8801*}{\i P}({\i O}\\s\\do5({\fs16 2})=1)}}{\fldrslt }} } \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb310 \fi0 \fs20 \par }} }}}latex2rtf-2.3.18/test/misc1.tex0000777000175000017500000000625213050672357016455 0ustar wilfriedwilfried%-------------------------------------------------------------------- % Basisfile um alle Kapitel auf einmal laufen zu lassen %-------------------------------------------------------------------- \documentclass[12pt , twoside , german ,a4paper]{report} \usepackage{verbatim} \usepackage{a4} \usepackage{babel} \usepackage{colortbl,array,tabularx,graphics,color} %f\"ur besondere Tabellengestaltung \usepackage{fancyhdr} %fŸr Seitenkopf und -fu§ \usepackage{latexsym} %fŸr Symbole (z.B. Box bei Beweisende) \usepackage{epic,eepic,ecltree,epsfig} \setlength{\parindent}{0pt} %kein Einruecken am Absatzanfang \setlength{\parskip}{0.75\baselineskip} \setlength{\baselineskip}{4.2ex} \setlength{\textheight}{23cm} \setlength{\evensidemargin}{0.5cm} \setlength{\oddsidemargin}{0.5cm} \setlength{\headsep}{1cm} \renewcommand{\textfraction}{0.1} \renewcommand{\topfraction}{0.9} \renewcommand{\bottomfraction}{0.9} %----------------- Definitionen + Abkuerzungen ------------------ \def\N{I\!\!N} \def\R{I\!\!R} \newcommand{\fks}{Fall-Kontroll-Studie} \newcommand{\fksn}{Fall-Kontroll-Studien} \newcommand{\rnl}{Rhein-Neckar-Larynx Studie} \newcommand{\tsd}{Two-Stage-Design} \newcommand{\tsds}{Two-Stage-Designs} \newcommand{\hd}{h-Design} %----------------- Kopfzeile -------------------------------------- \newcommand{\kzl}{~} %--K\"urzel f\"ur Kopfzeile -- \newcommand{\kzr}{~} \renewcommand{\headrulewidth}{0.4pt} %----------------- Textanfang -------------------------------------- \begin{document} \hd \tsd $$ A\equiv B $$ $$ A_2 \equiv B $$ $$ A\leftarrow B $$ $$ A_2 \leftarrow B $$ $$ A\rightarrow B $$ $$ A_2 \rightarrow B $$ R=(\(R_{1},..,R_{r}) \) \"Ose l\"a\ss{}t \"Anderung \"Ubung Nach Little \& Rubin (1987) kann die Response-Wahrscheinlichkeit abh\"angen\\ \begin{tabular}{lll} ~~~~& (1) von D und m\"oglicherweise auch R, & (weder MAR noch OAR)\\ & (2) von R, aber nicht von D, & (MAR, aber nicht OAR)\\ & (3) weder von R noch von D & (MAR und OAR)\\ \end{tabular} \begin{description} \item[\textbf{Definition 4.1:}] \mbox{}\\ Sei D eine bin\"are Responsevariable und seien $R_{1}$ und $R_{2}$ zwei beliebige (d.h. kategorielle oder stetige) unabh\"angige Variablen oder auch Variablen-Vektoren. O.B.d.A. sei die Kovariable $R_{1}$ f\"ur alle Beobachtungen vollst\"andig, die Kovariable $R_{2}$ nicht vollst\"andig vorhanden. \renewcommand{\theenumi}{(\roman{enumi})} \renewcommand{\labelenumi}{\theenumi.} \begin{enumerate} \item Just an item \item Just another item \item Die Beobachtbarkeit $O_{2}$ von $R_{2}$ ist definiert als Zufallsvariable \begin{displaymath} O_{2}:= \left\{ \begin{array}{ll} 1&~~~\mbox{ wenn $R_{2}$ beobachtbar ist,} \\ 0&~~~\mbox{ wenn $R_{2}$ nicht beobachtbar ist.} \end{array} \right. \end{displaymath} \item Fehlende Daten sind genau dann {\it missing at random}, wenn f\"ur i = 0,1 gilt:\\ \(P(O_{2}=1 \mid D=i, R_{1}=r_{1}, R_{2}=r_{2}) \equiv P ( O_{2}=1 \mid D=i, R_{1}=r_{1})\)\\ \item Fehlende Daten sind genau dann {\it missing completely at random}, wenn f\"ur i = 0,1 gilt:\\ \(P(O_{2}=1 \mid D=i, R_{1}=r_{1}, R_{2}=r_{2}) \equiv P ( O_{2}=1 ) \) \end{enumerate} \end{description} \end{document} latex2rtf-2.3.18/test/fig_oval.png0000777000175000017500000000223713050672360017204 0ustar wilfriedwilfried‰PNG  IHDRÍSaçĹmPLTE˙˙˙ĽŮŸÝ pHYs.#.#xĽ?v?IDATxÚíÜ=’¤ `,73ŹŻą™WŮcl&Ss1ć&€‚Uąť•ż÷Pkşvću8í'ŻU݆ąęóÍ~í\ĺG%J”(Q˘D‰%J”(Q˘D‰%JC-ëQłĎâUĐgŽpʤj“=źUQľË<Ô>zşôťŠ âyür–Mçîöťó XúlgůpĆZ$U,řŠŻÍÂt>:ZU›™ź­o¤<ń…XţQó ]XŽ0ëp†]éAjSÎЀTe:ç3”'ő§,SűˆőÄeŞÂ›Ęfř†2››B8?}‘ÚäĚŹńŮŠŽbpJTfűťDT‰ňśpŤ+R›_߼U…ţÎbČSŃ $) ,¤b@Ńšs!ĺ#Šę.Ś %i#juMD výÁ#Ş{$cHŐ IĺR9 éÔF@ň¤Ó•”cWgÓx”aŠmŠžÖůȀśXęBjđ+RPtDĚsКʀ*.[ʜX"ńăôÄrPŕ:á"´b鍃ĽoĹO'\pWŹŐĺpYrĄ"ţE˜H9ž 9‘ƒqřĚO{aŞęD‚ěDZŸ Œ):ĺ5:ńe/ vbŮáL­můaÜě$ňøżgp4Ţ_šźGÎΜmżpŁÂ˘rľÉíĚÖŐşrp+(šŸ#1Cźœ?ŢťBm{ )Šb›Ţlłˆ(ÖM’žŮXđ8‰Ěv&bœr›¨Œ§us7Śöř†1>Ť˘î)[WIí&Ňhp™őžIGŐčD‰%J”(Q˘DżĽ˙|†Ą˙îđř'*˝rIENDŽB`‚latex2rtf-2.3.18/test/geotest.tex0000777000175000017500000001355713050672360017113 0ustar wilfriedwilfried\documentclass{article} \usepackage[marginratio ={1:4,4:1}]{geometry} \geometry{hcentering} \begin{document} When I drew nigh the nameless city I knew it was accursed. I was traveling in a parched and terrible valley under the moon, and afar I saw it protruding uncannily above the sands as parts of a corpse may protrude from an ill-made grave. Fear spoke from the age-worn stones of this hoary survivor of the deluge, this great-grandfather of the eldest pyramid; and a viewless aura repelled me and bade me retreat from antique and sinister secrets that no man should see, and no man else had dared to see.. Remote in the desert of Araby lies the nameless city, crumbling and inarticulate, its low walls nearly hidden by the sands of uncounted ages. It must have been thus before the first stones of Memphis were laid, and while the bricks of Babylon were yet unbaked. There is no legend so old as to give it a name, or to recall that it was ever alive; but it is told of in whispers around campfires and muttered about by grandams in the tents of sheiks so that all the tribes shun it without wholly knowing why. It was of this place that Abdul Alhazred the mad poet dreamed of the night before he sang his unexplained couplet: That is not dead which can eternal lie, And with strange aeons death may die. I should have known that the Arabs had good reason for shunning the nameless city, the city told of in strange tales but seen by no living man, yet I defied them and went into the untrodden waste with my camel. I alone have seen it, and that is why no other face bears such hideous lines of fear as mine; why no other man shivers so horribly when the night wind rattles the windows. When I came upon it in the ghastly stillness of unending sleep it looked at me, chilly from the rays of a cold moon amidst the desert's heat. And as I returned its look I forgot my triumph at finding it, and stopped still with my camel to wait for the dawn. For hours I waited, till the east grew grey and the stars faded, and the grey turned to roseate light edged with gold. I heard a moaning and saw a storm of sand stirring among the antique stones though the sky was clear and the vast reaches of desert still. Then suddenly above the desert's far rim came the blazing edge of the sun, seen through the tiny sandstorm which was passing away, and in my fevered state I fancied that form some remote depth there came a crash of musical metal to hail the fiery disc as Memnon hails it from the banks of the Nile. My ears rang and my imagination seethed as I led my camel slowly across the sand to that unvocal place; that place which I alone of living men had seen. In and out amongst the shapeless foundations of houses and places I wandered, finding never a carving or inscription to tell of these men, if men they were, who built this city and dwelt therein so long ago. The antiquity of the spot was unwholesome, and I longed to encounter some sign or device to prove that the city was indeed fashioned by mankind. There were certain proportions and dimensions in the ruins which I did not like. I had with me many tools, and dug much within the walls of the obliterated edifices; but progress was slow, and nothing significant was revealed. When night and the moon returned I felt a chill wind which brought new fear, so that I did not dare to remain in the city. And as I went outside the antique walls to sleep, a small sighing sandstorm gathered behind me, blowing over the grey stones though the moon was bright and most of the desert still. I awakened just at dawn from a pageant of horrible dreams, my ears ringing as from some metallic peal. I saw the sun peering redly through the last gusts of a little sandstorm that hovered over the nameless city, and marked the quietness of the rest of the landscape. Once more I ventured within those brooding ruins that swelled beneath the sand like an ogre under a coverlet, and again dug vainly for relics of the forgotten race. At noon I rested, and in the afternoon I spent much time tracing the walls and bygone streets, and the outlines of the nearly vanished buildings. I saw that the city had been mighty indeed, and wondered at the sources of its greatness. To myself I pictured all the spendours of an age so distant that Chaldaea could not recall it, and thought of Sarnath the Doomed, that stood in the land of Mnar when mankind was young, and of Ib, that was carven of grey stone before mankind existed. All at once I came upon a place where the bed rock rose stark through the sand and formed a low cliff; and here I saw with joy what seemed to promise further traces of the antediluvian people. Hewn rudely on the face of the cliff were the unmistakable facades of several small, squat rock houses or temples; whose interiors might preserve many secrets of ages too remote for calculation, though sandstorms had long effaced any carvings which may have been outside. Very low and sand-choked were all the dark apertures near me, but I cleared on with my spade and crawled through it, carrying a torch to reveal whatever mysteries it might hold. When I was inside I saw that the cavern was indeed a temple, and beheld plain signs of the race that had lived and worshipped before the desert was a desert. Primitive altars, pillars, and niches, all curiously low, were not absent; and though I saw no sculptures or frescoes, there were many singular stones clearly shaped into symbols by artificial means. The lowness of the chiselled chamber was very strange, for I could hardly kneel upright; but the area was so great that my torch showed only part of it at a time. I shuddered oddly in some of the far corners; for certain altars and stones suggested forgotten rites of terrible, revolting and inexplicable nature and made me wonder what manner of men could have made and frequented such a temple. When I had seen all that the place contained, I crawled out again, avid to find what the temples might yield. \end{document} latex2rtf-2.3.18/test/head_report.tex0000777000175000017500000000063713050672360017730 0ustar wilfriedwilfried\documentclass{report} \begin{document} \part{First Part} \chapter{First Chapter} \section{First Section} \subsection{First Subsection} \subsubsection{First Subsubsection} \paragraph{First Paragraph} \subparagraph{First SubParagraph} \chapter{Second Chapter} \section{First Section} \section{Second Section} \subsection{First Subsection} \subsection{Second Subsection} \subsection{Third Subsection} \end{document} latex2rtf-2.3.18/test/color.tex0000777000175000017500000000105313050672360016543 0ustar wilfriedwilfried\documentclass{article} \usepackage{color} \begin{document} The color package makes a default color package available. The colors available with this are: red, green, and blue (for screen display) and cyan, magenta, and yellow (to go with black for the CMYK color model for printing). To make a single word or phrase in color, use the command: \begin{center} \verb#\textcolor{color}{words to be in color}# \end{center} For example, \textcolor{red}{text in red} and \textcolor{blue}{text in blue} and \textcolor{green}{text in green} \end{document}latex2rtf-2.3.18/test/array.tex0000777000175000017500000000131313050672360016542 0ustar wilfriedwilfried\documentclass{article} \usepackage{amsmath} \begin{document} This is an equation environment in which there is an array environment. The equation below is just a simple matrix equation without delimeters. The three types of alignment are tested. \begin{equation*} w = \begin{array}{lcr} x+y & y+2c & z * x^2 \\ x & y & z \\ x & y & z \\ x & y & z \end{array} \end{equation*} This is an equation environment in which there is an array environment. The equation below is just a simple matrix equation. The three types of alignment are tested. \begin{equation} w = \left( \begin{array}{lcr} x+y & y+2c & z * x^2 \\ x & y & z \\ x & y & z \\ x & y & z \end{array} \right) \end{equation} \end{document} latex2rtf-2.3.18/test/endnote.rtf0000644000175000017500000002120413664476467017072 0ustar wilfriedwilfried{\rtf1\ansi\uc1\deff0\deflang1024 {\fonttbl{\f0\fnil\fcharset0 Times New Roman;} {\f1\fnil\fcharset0 Arial;} {\f2\fnil\fcharset0 Arial;} {\f3\fnil\fcharset0 Courier New;} {\f4\fnil\fcharset0 Zapf Chancery;} {\f5\fnil\fcharset0 STIXGeneral;} {\f6\fnil\fcharset0 MS Gothic;} } {\colortbl; \red0\green0\blue0; \red0\green0\blue255; \red0\green255\blue255; \red0\green255\blue0; \red255\green0\blue255; \red255\green0\blue0; \red255\green255\blue0; \red255\green255\blue255; } {\stylesheet {\s0\qj\widctlpar\f0\fs20 \snext0 Normal;} {\cs10 \additive\ssemihidden Default Paragraph Font;} {\s1\qc\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 Part;} {\s2\ql\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 heading 1;} {\s3\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 2;} {\s4\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 3;} {\s5\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 4;} {\s6\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 5;} {\s7\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 6;} {\s8\qr\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext8 rightpar;} {\s9\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext9 centerpar;} {\s10\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext10 leftpar;} {\s11\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equation;} {\s12\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationNum;} {\s13\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlign;} {\s14\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlignNum;} {\s15\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArray;} {\s16\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArrayNum;} {\s17\ql\sb120\sa120\keep\widctlpar\f0\fs20 \sbasedon0\snext0 theorem;} {\s18\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 bitmapCenter;} {\s20\qc\sb240\sa240\b\f0\fs36 \sbasedon0\snext21 Title;} {\s21\qc\sa120\f0\fs20 \sbasedon0\snext0 author;} {\s22\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext22 footer;} {\s23\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext23 header;} {\s30\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 caption;} {\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext0 Figure;} {\s32\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext32 Table;} {\s33\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext33 Tabular;} {\s34\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext34 Tabbing;} {\s35\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext35 Quote;} {\s38\ql\widctlpar\f3\fs20 \snext38 verbatim;} {\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext46 List;} {\s47\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext47 List 1;} {\s50\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 latex picture;} {\s51\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 subfigure;} {\s61\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext62 bibheading;} {\s62\ql\fi-567\li567\sb0\sa0\f0\fs20 \sbasedon0\snext62 bibitem;} {\s64\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext64 endnotes;} {\s65\ql\fi-113\li397\lin397\f0\fs20 \sbasedon0\snext65 footnote text;} {\s66\qj\fi-170\li454\lin454\f0\fs20 \sbasedon0\snext66 endnote text;} {\cs62\super \additive\sbasedon10 footnote reference;} {\cs63\super \additive\sbasedon10 endnote reference;} {\s67\ql\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext67 acronym;} {\s70\qc\sa120\b\f0\fs20 \sbasedon0\snext71 abstract title;} {\s71\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext0 abstract;} {\s80\ql\sb240\sa120\keepn\f0\b\fs20 \sbasedon0\snext0 contents_heading;} {\s81\ql\li425\tqr\tldot\tx8222\sb240\sa60\keepn\f0\fs20\b \sbasedon0\snext82 toc 1;} {\s82\ql\li512\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext83 toc 2;} {\s83\ql\li1024\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext84 toc 3;} {\s84\ql\li1536\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext85 toc 4;} {\s85\ql\li2048\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 5;} {\s86\ql\li2560\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 6;} } {\info {\title Original file was endnote.tex} {\doccomm Created using latex2rtf 2.3.18 r1266 (released May 29, 2020) on Sat May 30 17:35:19 2020 } } {\footer\pard\plain\f0\fs20\qc\chpgn\par} \paperw12280\paperh15900\margl2680\margr2700\margt2540\margb1760\pgnstart0\widowctrl\qj\ftnbj\f0\aftnnar {\pard\plain\s20\qc\sb240\sa240\b\f0\fs36\sl240\slmult1 \fi0 Endnotes test\par \pard\plain\s21\qc\sa120\f0\fs20\sl240\slmult1 \fi300 Reuben Thomas\par \pard\plain\s21\qc\sa120\f0\fs20\sl240\slmult1 \fi300 \chdate \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Here is some text.{\cs63\super\chftn} {\*\footnote\ftnalt\pard \s66\qj\fi-170\li454\lin454\f0\fs20{\cs63\super\chftn} First endnote.} All endnotes should be at the end.{\cs62\super\chftn} {\*\footnote\pard \s65\ql\fi-113\li397\lin397\f0\fs20{\cs62\super\chftn} The endnotes should be at the end of the document.} \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Mauris imperdiet mi. Duis sollicitudin felis congue felis. Nullam non odio. Curabitur ipsum. In varius massa id lacus.{\cs63\super\chftn} {\*\footnote\ftnalt\pard \s66\qj\fi-170\li454\lin454\f0\fs20{\cs63\super\chftn} Second endnote} Sed nonummy fringilla eros. Etiam ligula wisi, pulvinar ac, mollis ut, porttitor non, nibh. Vivamus mauris eros, varius vitae, blandit non, ullamcorper at, nunc. Aenean et orci id metus bibendum pulvinar. Pellentesque ac sem. Vivamus volutpat, mi quis consectetuer dapibus, erat turpis semper diam, a aliquet ante neque elementum libero.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Curabitur est odio, consectetuer nec, porttitor vitae, pretium sed, libero. Sed eget risus nec erat ornare semper. Sed odio. Nullam nibh dolor, consequat sit amet, vestibulum non, tincidunt eget, wisi. Aliquam erat volutpat. Vestibulum commodo. Duis lectus. Phasellus eget libero ac orci lacinia sagittis. Vivamus vitae eros. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos hymenaeos. Suspendisse sed metus. Morbi ut erat. Maecenas wisi ante, scelerisque et, aliquet ut, interdum et, purus. Sed cursus quam vitae arcu. Maecenas pulvinar dolor eu dolor. Suspendisse vel urna. Cras commodo iaculis quam.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Vestibulum tempus rhoncus arcu. Nullam sed sapien vitae nibh tincidunt rhoncus. Phasellus nec velit nec urna hendrerit dictum. Suspendisse potenti. Etiam massa. Nullam tempus rutrum purus. Proin semper fringilla orci. Donec vel mi eget libero commodo vulputate. Sed enim nunc, cursus sit amet, vestibulum id, molestie rutrum, orci. Vestibulum purus. Sed vitae pede in dui tempor ornare.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Fusce urna lacus, sodales ut, malesuada at, tincidunt malesuada, magna. Morbi nisl lorem, sagittis at, pharetra vitae, dignissim nec, quam. Proin sed enim. Praesent porta ipsum in pede. Aliquam id wisi id tortor volutpat hendrerit. Etiam eget odio vitae massa sollicitudin semper. Aliquam et mi. Nam ullamcorper lacinia velit. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut nec lorem pellentesque est lacinia egestas. Quisque ante ante, pharetra at, lacinia rhoncus, aliquam et, ante.{\cs63\super\chftn} {\*\footnote\ftnalt\pard \s66\qj\fi-170\li454\lin454\f0\fs20{\cs63\super\chftn} Third endnote} \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Nunc augue. Suspendisse potenti. Suspendisse posuere, elit ut malesuada porta, eros mi ornare erat, tempor interdum lacus eros a orci. Nullam urna arcu, facilisis eget, blandit eu, commodo nec, ipsum. Donec imperdiet orci sed nibh. Nunc egestas. Sed nibh purus, tincidunt consequat, placerat et, gravida at, metus. Pellentesque nisl. Nulla vitae tortor eu tortor elementum pulvinar. Morbi erat est, aliquam ut, interdum malesuada, rutrum vel, quam. Suspendisse potenti. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec mattis, felis sed gravida iaculis, turpis ante varius orci, sed congue ante nibh id lacus. Cras nec mi at justo scelerisque molestie. Integer eros lorem, sodales et, condimentum eu, ultrices nec, diam. Etiam nonummy, sem ac ultricies bibendum, purus arcu pulvinar neque, a imperdiet ante magna at est. Maecenas lacinia sollicitudin turpis. Phasellus ultrices lacus et erat. Donec ut odio in sem commodo semper\par \pard\plain\s61\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 {\sect \s3\ql\sb240\sa120\keepn\f0\b\fs32 Notes\par \endnhere}}} }}}latex2rtf-2.3.18/test/fig_testc.png0000777000175000017500000035621313050672360017373 0ustar wilfriedwilfried‰PNG  IHDRdęälĺ pHYs  ¨˙f%€IDATxÚěÝuœ\ŐŮđßsîŸYw‹ť# $!Hq/mŃĽ‚ľPJ‘B[ŹP܃G!JÜÝ6˛’u™™ż÷<ďwv2Ů–ömKĺ|á“Ďf3;sçÎěýÍąç3CQEQ”/'žéPEQ”w*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽ*,EQĽú7}Šň߆™˙Š÷ODßôST”˙9ôĎţĹV”˙b_ńëóψ´ńĂ)Š’˘ÂRQžŽŁţ˛™RĚL”üÍâNRJë‹ÔýyoÖ]Ľţ$"!u˛žiÝůßw`Š˘üÝTX*ĘW9j¤ĽâĐúÓĘB)ĽišÖ]r1=˙céy–z ô”=ę=!„šŚY_XßěrHGó7}"ĺ?› KEéŞË/…•4ŠĐ˛B1ĹJ5ë6˘“ŚiéMĂôűů;#˝ašĘc)%:[ąD¤ĽB¤GěQŸŽ˘(–Š’”ţťjŸY_˜Śi†aV:™OéÍ;ëÎŹť9ę}_léÚŁ&ˇŚişŽëşn[úséöÎE9’ Kĺݑi5NVΊŸTÓ-=ďü$@Ś}ĄuçQľöë;ę1¤žV´B蝬F§JMEů[аTţGĽŢůéC}Śi&‰D"!ĽvšŤŽŃ 0H ˛[/@˘ƒ^CÖd° üósčˎ0˝Ńi}0MÓú(`ˇŰÚÜTŠŠ(]¨˘Ę˙„#'š0s"‘ˆÇă†a‘Žënˇ[×ő.Ó\qxž~Ů˝'ł {ďFó:H údMţŠnŘŹ.‡—:ţÔS°:N'3[Ÿ"‘3ëşnˇŰm6[úŠ—nž˛˘üQ-KĺżÜ‘C’éiłŮěvťŚié7H˙ńŻ•VX˛ ČV a"řFŁüřĆ$[–˙8G€ţ¤˜&fŚiĆăńD"qÔÔüťQQţ˨°Tţ;™y†aÄbąD"‘ž‘˙ĎU‰‡~–fř%—ÝF;ŽĺOĂQF,™Ä˙?gžlőäßpĚÖĎAšLDikZŹŃÍTjÚl6‡ĂĄëşZv˘(Ő Ťüˇ9˛)Çcą˜”R×uÇŁëú‘7ţš1pôZ9€ĆţĽźëAęŘĘÎ ŔŇúŻłX5I5u'ÖŇÉôCB¤Ž$5í65ůöˆŐ)]KvHЧ“lő2`@hÔтˆů˝S?“ę¤uš\.—ËúTŃŃŃ!„p8vť˝ËٍČTţŠ–ĽňߣKö˜ŚF­Ś¤uŃO­ÖOżŮßtˇŠŸJŤ˜–2Íśáj™Çş ÍŢÔ{i=Č 0´Ô٤ÜA˛ĎĄ6óaľ{ŇˤîÁš—kłŮt]ˇţě2Čz”(I3™—BĂŚOńüľđ×ăşpÜU&HŕhĎRJëC†ŐĐt:šŚŠžYĺ– KĺżA—‹x"‘ˆFنaXWůżŁ;ńŤŇZa‹Ĺâńx"MŔëôżW|ˆ !´ƒQ÷ń氏u›[Ŕš-Őd<ź˛kzá‚ĂŠ¤Ç^Ş^ő †aXÓY­šťŹŕ´Űí‡ă°5!Á4HÓůŔ:ŇČŻŔ÷ú˘ľ `ÂtÜ7;–_öÄ­îkë3‡ŽëN§ÓfłŠČTţаTţłuY ÇŁŃ(3Űív§ÓŮĽ)ůˇfdz@Z÷Făń¸ľ S×ČfÓv›Ý•coy‘r§Ă–O›Îŕćy$€üS1ä}‡5ńçˆ_4›6ěşú˙2ŇşŹČ<ęwY bľ˙Źe)…v‡Ăét:NťŽ‘Śsănşk$Ś~{ŒÄʡpěŘđđ] 999rů%’~RJëš‘ÓéLď›ý:'VQţÓŠ°TţSu‰ÉX,F­W‡Ăń7ÍçĂá°ŐŽ`5­œN§ÝnőǰC˝ą&‘Ć2J›ĎćŚ9 †}r¤•ňád˛aĂîďŁé=Č?ý‡L€ôd—éא|R‡ÂÓ4$Çăńh¨#†ÁN_VĺgYšž;‚(.§~Çń%QNłLĽňßzfbą˜Ő7ët:ťœg™Ę1–Ęž#[“‘H„ˆ\.W—eGF†‰DBĄP,`ľP].Wç'ŹŢMf†)ü_@ÖddL °Iŕ6Ÿd^Nǰ÷A°"@RIyę_Ćřm°r0Š.GżÇËËÎ,<4y5ůŔ]ŸGr<ҊlNŽSJĄĹś,´-ú“jǖšC|řɑÎńȈîp111ţćĎŠĺ7ÖMę̈ČTţ늰TţäסşFü­ƒGÖńI$Á`0†aÍ uťÝéšÉ;g Ą!z[ÎFÓ‘Î oúţžĄ`Ў’— fD÷ÂQ áÄîďŁţ5Œ[GÄj°jŠ.뚗Ŕa Í#C”,YhŘžsEÝv83Đs4Nů>•A¸^$b¸wŘď3¸áĆŮŚiZ|>Ÿ5ůwŸˇ/;˙*/•˙>Úý÷ß˙Mƒ˘|-éWęx< …‰„•jéŤARÓMżâRˇL$@ ĽĽĹď÷3ł×ëÍÍÍÍÎÎN5RťÜ â´z,i>ęyi DŤ ŰĐşDÁšŔ&Ȇ‚ ĐąáJ„+á_ĎPÔ=‹đ6dOĹî[Q˙Ćm€Ł lzŠ.ĹΛ?ˆźÓÁĆaňˆPľž<ŤxBzˆ2„F/|‡fŢOy=Hš´y í^‡/žGĎá(DŒnD;°é3-Ԕ9ćπ1Â4"Ńh{{{GG‡ľ˘&U–!ýäyťœ[]×­žŘH$Ç­Ší_}ŠňJľ,•˙é1išf(2MÓĺr}1łŁn˛ašfGGG0´fĚz˝^kýĺQW_¤† Ұĺbč |l‚44˝ƒ  p†Î„pX >śŞöp ›ĎBó\ ńz߀ţÄŽ[“mJgy˛‰ÎŽŮhu˛}Ů˙ń´ů>ýęDžňT6Fš-ŐŚ„ĐđňÍhڇ[ß‡Śƒď?€wî‡F°yńŔr”aÍűéŢc¸š SΧ[Ţfi’Đ Ă…BÖLWŸĎçőz\rř ŢŁż(ÖXf$Ń4Íăń¤ß‰ŠLĺżĂ?˛ —˘ü3¤÷‚†BĄ@  ëzVV–ÓéŔl&D‡Ŕy–X,ÖĐĐP]]ź^oYYYiiiFFFjyIňáŹVÔa×ziˆěCěúýĚŕn›Ďy“yčű,, &âöEˆ7€ˆČa3‘9ŠĚ şý˙ˆ=ˇRë›4a9ˉ% [˛Ö€°Kr–Ó„MÔú*o‡°˜˜‰@ţ:ŢžVżÇ C­œˆ1˜…Ć{–cí,ÜřtĚXâěŸá˜ÓŃÎđąüdÄ(Ż'FA6ÍćúÝKS×őŒŒŒŇŇҲ˛2Ż×ŞŤŤŹÁÚ#O]ŠVŚu§Ó™••Ľëz …B_Q€^QţŠ >ĘżŁ#[xŃh4‰X×wŤáҢ:ƒ)šÖŃ× Z+`0č7MĂíöYőďR›&Uč•$€­ý):ÖA÷˛ć&cáÄÖKކŃ+Iؙe2XýK9ź“JžĂ2fjnMóD ŽJ”ýܡëÖčţçý—ËV/Œ*ɚ”f*Q„ЙгDɼ̝’ƒĺi‰v͗Ľď\˘…ÁŤŢŚá§`ÁQš?˜ź^xÉKČĘe§҄nÇŽĽ˜˙ŞŰŽÓž“oBŻq‡žĹńWcéËäďŔŻŕźŇËÄ뺞™™™••F@}ÝAM×}žĚŒ Ÿ5dűÍÄÔń[ˇqťÝ‡#űý~ŤéĂ?ŚňJ…Ľňď(}ވŐ[h (ZRR˙$šŁ ÷kČËŔť•š]bŇ0 kpN׾ĚĚ,Ż7Łóú´úmФ„DgLZeÇ 0ăčŘD2Ɓ—‘ą—ÇŽ!čŇ4˘ńD<^gČmÍÚ<ÝL„3âŸ{ă˝j˛Ÿ,úâB/ć7ö^çjąƒ =UßÎbe4)7Ö{aůÁéőuŮłÓßsŢ YvPÝśčĂg4˜nťô‡žcŸ¨ÝÄFŇŔâçiŃłöcôy|áCČëÎe-:˜1řDô=›W`ůk8ý‡äôBJ¸s (3;ö‚ü|YPĐüţöö6Ż×kľť-w—Ú§Eáóů‰„5Ł8Őż­’RůŚÂRů7’ŢÔłž‡ĂąXĚZݘöO`˜€î§_ľâŮř.Ř´ĘËY?‹ĹÚÚÚ"‘ˆÓé,,,tš\Ě&îa=H‚ şĐǰď~Žř1Ůr@´ądK{R¤‘ë_ĄđĆPýĘŔŔĺ‘ýuŃpťa0M°p鉨×Ü_XçÔcíl¸ż›łóVM[Čc6U$ŤŤ—RjÁeÚłˇŽ‰Ř`*EůĆâŐ# }2;ÎÖvĆ^7u„ÍÇÄŻ})ÜT¨Š6MCÚ˝}#qďÁ-‰Ÿ ‰jnÇéw؏˝ˆu;˜‰­Âł‚ĽśZä”i8îJl[Ú=X˙&\– ͏…”,@LD-|Ţ܌ňňH$ŇŢŢ^]]írš˛łłǗEfŞ€:[™6›-333ƒA‡Ăáršşź˛*8•˙,jĚRů7’~=M$~ż?‘Hddd¸\.şF''ƒˆa .ôvb’C ˘h4Z[[{đŕA!DiiiqqąÓi#„OŞĐłžNŽĐ' &č1 †L–Ŕ& ÖӌӘ%™Al9‰üłD"áŚPADďI;Ž Ő-9Püy ĐnŁxAAIŸ>}† ú „Ə=E,Ů âGG3j6Ă*P éÄL?Ą‡NĆM=ąţœv[qqqiiŠâŕÁƒľľľVŮëĹú˛ÁČôĄJ—Ë•‘‘‘z)Ó7ŁţŚßkŠňˇQKG”éí•p8‰D\.—×ëM]X;g”X•ĺ%D(ĺőJ&ąXŹąąŃď÷{<žÂÂBŸĎ×ŮŐIjŚďzč;†śáÇřłDЎ€5Ti”loEwđţ7(ž…ëžmMôŻu˙ô`őž––ŚˆáózěŽŔ|aů=&䗏ĎČĚň¸Ý6ťM˜ttlÁöď ď4äҰ÷ŹŸgbČ%ČĚă°ÚrDɒD֜"lű ŸÁţ5Č­@F䞋ŕŁČ$*˝†žxŠ;L¸Ü~ ¤D6MčmľźvŽÇ.8ő;ٙ>‡Íž0Ľßďoljjj¨˜şmë\GÓnŒ9‡1¸3Pˇ ;6 ĄŽ–żČƒT<y=hŔœGńÜUXő&&\JCiÍLœp­uŒšŚy˝ŢŒŒ Ă0ZZZ"‘ˆľçeړčÚRL_ab•Çł^S)ezՙʾtDů†uéz5 ĂÚĘëőŚ8t{k`1FÂŔž?•‡gA‰XĚlmm‹FŁ>Ÿ/;;ű°%$ Z +ëqF6k(’ˆ„ńv€ŸHĐ.OËŔ˜ˆdăÔ4I7ö>äŘ÷c˘(Ü_şÔăÍČôęn5iVbătjœĎvJż‹˛;áę‘ÜůŮżŰ.Gp?ó>ňΞ;°úQĚąĄ6ŸżqçĂ4 YkERuyŒiâŠó1ë N…9řÁGč3á}X} z~oíÂʙ\V_­‡''yWˇÓ˝Çp ŠsnŁËei‚F<ŽĆZĽ=çĄă;zOi>éŽlÝĚőÚݏÎťé”[yňőČ끪 řŕ´uő§iˇbě°ťŕŻÇ‡á‡ŁĎřäţ—ÖY$2Mł­­- :ÎœœœTÇ,žźsőĐł”Ö˛NŻ×›U]˛Ę –Ę7/u݌D"VƒŇĺr}Ů L†$“[b¸ g˜Tĺ5~nž ď÷ú9ŮšşnO‹I+–$Ao•ŒD^cDbŠa}żŃ§v.÷ҍ>ŻľÁÖŇɍţąźýçŹŰÁqäO§Ą2ى% AńzŢp2ü[!››|ÇŔ^‚x ü덢x:FĚĆÎ[Đ>šĎăŃk0.~ š~h_I˘dÚľVŁzFœŽ—oǜ?ŕŹ;lĆҗŠŁŹ?~šŽl„÷aŰ4Třč â ÜôŚ\ Ó„†ÇĎăeďAÎ˙)ÎyÉĽ/Ě$0űazýŢřƒ[ÎB˙Á™óęđ•ĘSž_TXŕ^óĎzˆšđˆ30ýôEÖI3b°9ńÔĽĐlřŢ_a,Ű"Űú@cEŚŰíÎËËKßÔĺ¨á—ţŻGžÄ*)•˙*,•oŇßÚě`f m5ÔŰŕv„L˙mř×8lůl•ƒ4bb’ÂDs-đťN:žŮˆa4ŤË0Ź­j˙žőŚfFš'g=žWű:!Ɖý8řČ;Ă>€p$[Ÿ$oÂöKŃ4ß dt&rFaôJTţu/bÜ8ʑŞZnýŽ ‘ŹźCFüf*ˇź‚?]…ĎBv)|ü ^ű ŕÚÇ0ýű@ěśLÁ°5 ÷-=T” v+î#Œcřdžzr{ ĺ–ź€ůsqĺtÉĂ,M"2Iř÷m‹žywîŽ9qgfű¨K˛ÎşÓWPĘÖńH¤YUŠxçzě<<´ ž<ëř9mD‘ŮÜ܇ł˛˛˛˛˛şÔěňŞýMŠňoH…Ľň črő´j×ŮívˇŰýeZi?ÂDÂäĆjô3 "b‹\¸Č‡ëě4”­$€V91ÁĎżë ×JyCŚć%‰ć–Ć–ć&Ó´ezËsóöŒ%üD„–jQg†ýnœE›/ĺŚ× `:†žOäH›:+Ńđ2jŸBx'8[ň/DßG°çNŽ{ă6ÂQ3Ғ­=ĄĽ6x†Đ°m˝ŒÚš(×o_ň09ąl2b¸wöî¤AŁůçŤÁ&„ŽHvœLKvc đËĹp<¤ fh:VžŽÇ.MśYЁ°@HňЧÓ-ďąnG } űfĂXŠ>ÇŃôŰ=Žk F:Ş5™ČËĎĎÍ/8´Q%3„ {ŽáI—ŇiwÂ4 4¤ÍÍIĚh4ÚÔÔdšfnnŽĎçű:MĚÔ<çx<îńxěvťę’UţýаTţŐş$Ľľ–×ëMżh~Ů BŸ¤ÉšŽĎŸĆěÇéĄmÖ>ŇID’‰şDf0liiŃu˝  ŕkżŽÇ;::œN§ŰíVyŠü›SaŠüŤĽ_ƒÁ ”ŇçóĽćătš\šň˛ľ­ĹߖpgďĚĚépńL’9Ą‚x:ŠĽ& ŘŃǎá1^UŒ T6ăâ2ÚĂŇÓŇÚÔPß`FvvvAAËĺb:››0[Ah^b0aźŔSqŢälôgÔkŽ“sOÁ¨ 9Áq‚ÎŐżă’H÷›LöÜBÍoóčő°›’4if<sxěľ[żœ|jýeĎČöMęθ+;űÍď/ynjźöí@IZźChšîňÚŰkr~7EkĘÉČ[ŢҼɐ†çĎGîťÔšĹ'ݤŠţ̒?ü%t3ź9”ˆňőhDńāőxď>lů #Ś`)ăíšđÁ‡ř֙ˆÇŘfO˝"ÖPbccc[[›ŽëE……9ůů"âôÇőĎcřА&‘HÎHBgOrÚŤ#˝ľľŐď÷ggggggŮŞĘ./¨išÁ`ĐŞc fÉ*˙ÎTX*˙R]Žt]÷x<_Łë5Ůă×ŘĐâ‚Â<§ĂĂ,bX߁çBxŰŕ&n˛‘ó ńvFFn|˘Ži“&셅…yyyŠŃ2kä"ű¸ňvj_ÍËůgĄÇOaËK‚ˆc[€^ ˗E¸ŢWŸqŠč÷.;ź0ĂŘz. zś| ˆ˝wD÷>ÓÚwIĹáhťŒĹDă8n÷en}ȜŸŰ…wzˇ]ń6甓`Ř]ގƒ˝Ÿ;ţŽĆa§VŸ˙=â7AF<łyÍš+oÓ§ŚÇ˝ţ‚żFł{şÉ´çenžW6ózşěœJ}ŸÁ˛?"PÇßyĚ8 ˆˆbŮŤ˜ý0ľ×aě…8ĺ6” A[~ĺĺ¸á{ÖŘj—1Ht^sssCCƒLÄóű /xűV˝­†đ‘ŐKĚ,í݋ŇR8GމU˘ĄĄ™ ­‚‚ř]˛ĄPČ0Œ.ĂŐßô[UQŁÂRůWč{ąX, YF~ö‡”˛ĽĽ% fggeeeƒ“HGrv €ˆÉ¤–żéÇC”â ’ýŞŃ7°ă/:ڍ8#++çđ`"Ł k& u'ldÝ!e äsŕŹÇ1™đ‡Z.čpÎ3ěpĹgč?sěű4Ţ´ŞŚÇœ`”ĘƒwšŰßŰä{×töqi!G Ąčí›|ő•ąé7ˆcžĺXđ¤0źy.ŀkÁô;’Ö ?\€Eď 0żŘ€œr–’Ź"éŰ>§ßœD1„ĎţIđ[DŤÂ‘XLˆ~o}ßłs_¤QĽ^騿óSďČŠ:œ5yŢcX÷eńԛ1ńr¸|Ö< ŹÝĄŁlŠyä6#ím­u->°nŕ›×ă×kE~/kî.8€ëŽĂűďĂăIo\:ĽD`noookkóů|šššG™řÓšƒvꁭOBápŘăń¤–ٍ.Yĺߊ KĺŸîČAĘX,–*ôŠî’2Ö××ëş^XX`łŮ%wń§0} šMPŽ §fánŤ` ‚ĽO›ä¨ÚŘáźŃ›ť;;˛Ř›a2*Y•|PŽC8Pő0vüýî…wj˙„–Ď€§œĎÎ âC#ëϐôšżBD2áęÁú ÍńgËZUęü<:~˝ˆhöÚ <ř<4ƒ͆œ]Dż\Ŕý`ÄéžŃ\šý‡ăkŹz­Ě’46ÍĆC38|űW8ën hÉiş¸oo[žýčŮî"Ť(]¨…žžžŰ6ьÖ9uŻí~Űęg{ďĺhŢ[—7ĚvÖÝ9ÎvÚm֞bb¤„a3;Џ˛Î5¤ A›&hb`ÍőŤÉ-ŮýŁ—FSÂu8á:čv˜&¤M'—N>@K+ň‹š÷8–q:l.špŚŢF‘áîƒ?-Š~Łhg‹ó”Ť;ž÷rˤď5…¨Şf]{[$e§Űhš"hu–Ý9´C§ ‚@JčzňŸˆ ĽCš;Ă1‘ç$-ăţŸŮ_z =zŕ† ëVÂ%ĂLJXӈČŃ6[fF›fcSšœÎdawMƒÖŘ'YŠÜůŇkšfˇŰ#‘ˆaÖv%PyŠüŰP-KĺŸ(•”Šé<Ěl• ;ę V—ŐxőőőŚi9f“ 5Đüއ&3ŘŔ^ľ%źŇAă$Çěz@r$Ńř‹ęÚ-žĚöŠŇ p|ԂŸ•b[çúČdűÖ_Œvěý ÷ü9mż’ű= ÷@˜1:HĂžŰyßc˜ŽŢÄ!Y”íŁźü˘ěě,›Ă-u0ÂäîĂ;nó;AÓăřÄąWfźŢćŞôPŮžčG2Ň´†ú’ąÔR{GĄŠǟ‹ďż i‚„5÷łĂ ˇCîxcÎIÖ+h÷ăš?ášť0™Đá@S/nbřr1z,sďx‘V}ΓĎĘĺČ=…ŇëŻóşŐôťßÇvěÜv›Řś­áœsŻşĘ—•UâóUUŃ3Ďđé§Ó™g˛a@AííŸ~ř fćO>ĺ§łĎË÷sóé^ą'­zč$ŕ›NŕŔ>f–ď˙QÎ˖€yÜqrçN.,”2'§}Á‚˝×\ӒŸ/uöG‰Xç śVŢpƒĚÉa@z˝ź{7_~9;\TĚĆggË͛˜YÎź_^QĘOüYŽÇ@<;{ߡżÝ~ăüä“Ň4ĽiJfŢ˝[ĆçŸĎ/źŔ/ž(O>™™™)çĚafSĘŚ×^ œqI@źÜš“ ŹƒäŒ ŽŻˇŢ%ЎG hkk3MłËIQž)j×ĺŸ%Ő 0MÓď÷ŰívŸĎ×埬żňámʖ––†††‚‚‚‚‚tVíÁ§:Dž“Q0:čU_€ˆăńÄŽ]ŰöWć)ů˝^ÎÎą żHŹömۄ÷drj ҙcźçŕ_ ˙ klnlXżzٲűěĎÉв'ź˛›Á°%ö‹M§pxHpx#Ďź ?‚OFіß#çY8‹Ů!ôĎäf˝Yöň9Yo!|L¸Ć5şĆĹj"HŔdŕÉWĂ řĂXú€dqÓ@v FŸl›‡ýkP\ˆ3ŚÂá€6bSđŕđ“á¸ÄŽÓGĂć€÷Ťr ‚ątóǐ €ÚÚń“ń‹/â//0€ž}3KJz^sMö%—Ŕ0467/]łfĂşu-ń8~ű[şřb`ˇóEqI Z[šŽŸ~ ŻmmôűG  —Ăç‘cčeeögžŠźçž]]ÇI45aÂ:é$źý6žým\y%͝‹ăŽƒßOW_ÍuuD”םˇű˘‹d4JÚÚđ“Ÿđ_˙J/źŔB Ode‘5ĺ§ó-áóůěvťßď7MSľ,• ßtZ+˙ľŹŚ@"‘hmm ‡ĂœÖpěŇJH}ß4͚ššýű÷ÇăńĂogćfžĂϏądfŽÉU˛ŸÉí,šśśf͚5•{w™qňł{%˛Ž%7ńőŐŕO k•Ě,R,M)’YVýžw^.w\ ?/@dAůŠĹ3ˇîŘ ´ŚZ2óŽĺ|ČůŕŅźűt~ŘÁ§‚żžAç+źôÉ,QÉ,ˇ.”gƒĎBôƒsů†ý†§F ČgLŮÁ&KŤ=úŔyřŽŢ2ě7™MĂ0q“ŮÜ:ßźć9WeńK×J˙^yĘŠ H§&oę)ďí%ŸšœŹafžőVŤP˙đ‡ĚĚą3óÔŠ 0-af)™MM’Ůd–kÖXűYóóĎ˜ˇmÚ´hÁ‚Eťv|řádyŔ§Ÿ–Ě2‘†ÁĚňěłŕáĂ9cf~č ~ă|ó ČÁƒ9‘ˆGŁ{wíZłbEm8,żóétJż?Ů:L$˜™Ÿy&yĎ?,™e4*™ĺÔŠÖÄeăłĎ’'ůŔnjâäwí`‡Ă­­­ÖśŘŞeŠ|łTËRů§`fkÜ1Y5;}ËCN[OrŕŔMÓ***Ň'ĘÉm­|ŞŹűâenŢşĄĽĽuŔ€˝{ő: Ž—‰&F<„3|żÄ˜Y(š  „Užĺžč/~z]äW5|&łzœăǃzk^_6ł‘\Ý`ĆyŔS”I@´ŕ­OP7çcZ?쟄zÇŽŚő@wŔ40x 3‘u8nϏ>QŚŐxqyŞCo?Ýjʝ`Ę ĐÁő{ąţCX!qpłpCœy5~6Ÿ/’¨Š’ꕇónĹ+řú—déH đwrf&ž3çĐ"Ť¨P? ÷ldĆP^Nššd ‡ĂšÝÀ4hĐq'ö.*JÖ7C#G&Ďś”  gOÜ҂pŚÝ„qóÎזu‡ŁWßžýGŒŹ[gźđőčeËđŢ{üţűôÁ|GçžšŤ~Ź˝asQqvIIyç:{ÓLbätĐ+g¸2îaŤ^*K&ŕ:˛ĺął˘ŠĄn_ľ|QXXœ=éCT߂ýO"¸ kNäQóáě!`0 hvÚľ o,Ç„í>8ÎĆ÷<ÔcŔ|YŇŕƒßC˝ř}ôŸ w8ál[ĆuŰąţM1á˛LyťŰź­=öńÁÄo4÷ł´hČš™Y9öęVóƒGve0C~@§Ć=ÚćŐĆM+%}Kj–z޸3˛wšÖLv@Śo'Ó3 ÓDy9O˜€ŮłQU%ëꨤ'—3Pő Đ˙ ˜qk;OŤ'łłŹ-3“e>÷ěɀśŻY“p:űäçćRęL,–Ü{ÄŠ˜SDë?)‰ˆ6 ŸÓ9 ­‰XKKđţűł}>ÍfcĂ]çóϧH}ú@J˛ŮRŻĽĂĺĘpťkëę }>[S{’/s’őę3łÓé$˘@ ŕóůŹPŞ?VůF¨°Tţa8mâ˘Uöók&ekkk[[[qqq—vÉ˝:’? <сŃu˜ěĽS;Z{PŕÄĄC]§ĆĚ`&ŇÚń@ëěTŽ!/ŔOúčz0€ŘnÝíş…Íŕzíš@‡QQšS>bŠÍfc–č÷bpՓďĄ Ó0r>œDŔĎá÷7bp€íe¸6Ćms1d ť*`ĆéâGČßȋ^áşXňW:őśx<čy‚/3ßŃŢšő§fݘżŃ”š@ŽO83öĘ~ł]Eż ?Éüž9 <Ç6ĽuÜšm}cwĄý㇠w}čÎÎjěwęśón˛î×ůŐkZZZW̟ç‘ěôz=ĎĺĘěŰ7ł}ölDŁ"Lž"ëڊxÜ",BDč÷8d|h7J ľ?q牵ţuÄȑU……ۡmŰ%DďqăŠqčĚÚE|üôřâ·ÁĄĆěž=čřă_zŠśŠŠo!˜› ŔZ[býK™íó9„¨ŤŻO$999éŇwśžo-# ƒŠÂjSů×SaŠüc¤_ÂŹŐĺ_V˝KR666†BĄňňňĂwŸ :/ôĐŹďäĘgŞÍăŰl/Ů=˝r>Jڔç`PU˙ŚOxpY[ Tyq€ˆMŇ"ľł˝e$Ńßö]Çřů6g.łL6^Ůäţ UO"´ëOÂŘE9ŃŔ-ObÖyA€NÜÎađbňôKN@ěœ_ˆuŸÚ­ _úÂ6"l“Ţź1}N*]˙†}ď}ĚFç„ÝB:œvÝf#Œ'q)âmáYcýăküg˛ŻŐžSpK~•‡?ţ5m{ËúŃŻ`ÄŮšB?^ńđS˛˛łÇ;!TWŠDBĄPK}}{]ݐćć€!ÄޚšĚÜÜÜź<aŇ yĚ:šz1Đ˙q2b -=Uş¤ő…nłő),앓sđŕÁ;wš55ĺ3 +V4ć.ťŸęjöRŔÁ śşşÁ^o][ŰöŐŤKJJJĘĘXJ–2šXGӐöpLĀŰă)/+Ť=xĐ0Œ‚‚‚nóŇZ¤›ŢžTyŠü+аTţŇ/^†aX˝Ż_”ÖŠşƒšŚYQQaROV‰ƒ ‚ŮߎßgŃOâq}ĎnMsžšŮçG!űÚfüL0 ˛!‘Ŕ6eó}MtgjœĂ0@z]c۞={űwüÔk“î57đśłxŘ'°e&  ł$6Ń˙Pő$Â{°ćDňŽuSöŽú! ďCîÇÉŰ; 7ľ´Ő74´77úáŮgzďuŻŰ[v)ĘČ?Îăőˆ~źí˝ĂčYťSÎNVś@Äőřčaˇď‡žÂďĆĺr˙ókĚQZžĚ\ďßŃzœŔ,F”„›‰Řt˝ČëEďŢ‚2MC×ĺěŮP\Ü,ÄîĺË §óř––\ ‘0Ľw¸*0a3­9†wƒű=níˇyÔTIďüd€„(+++ěŃĂČË`šfKSS^v6 śç ďŹ~›IvWźcWW——gdgWVVúƒÁ>}űÚív6ÍT tÉi)íGEEEmmmmmmqqqjőíQóŇnˇ{<ž`0˜ŞhĄňRůWR|”˙Ż.IR˝Ż”ś Ë-­‰ŻDT^^žJJffHĹąŢD ÁFÄiśż7oŢärË~˝N,Ē<üŢ‰Ţ ˜œ0)a]ö<  %Baž[@đw˜;Ö~Pľí“ ďŽÂ>Çň„ƒČ;…M ő Ú|: ?H#6AÖTý˙Ŕ7‚Á‘}üĹ´n`}ŽkA?ŕ]gżűůĘľłgÍ޸qc"ďŮŤ÷IÇOŹ8˙ŘaKt”eč^0 ôIƒŚ‚ ˝ČűÖ˛™ŕë8aî<\ü;wżó]Ű÷ĎˡwyÝ˃^î¸tHmo7Ë+rAƒpX ^ë¤1 ­V0łľ[Ľ­Ž€>iҤO<ý”SŚL™âqťt„BłçĚ[đŮÜűĚöžKĐô**og€:ŰĐGΐĄô/˜Ů4uŔérBěÜľkĺÚľÁ`8}|D­%ęՋjoÇ̙ xŽĄĂ†9]ŽÍ›6ľ54ŚÉ—^â>€ŚĽ?tŞťŚiĺĺĺDTSS“žJ$}.uîćp8<Oú|5ëGů—Q-Kĺ˙ĽKţƒAˇŰ§ü˛[†QSSăvťčłŞ˘CÂ_ĎS=¸8w„éeÍUĄú–ž˝KrsJ˜%؞Iˇűđ˝žˆŃr‰fŔćŔą.œ"8Ł ?óĐ=~ĚĆ]ťőď§ťí6ƒs~ÁĽ ömš 3Ńöm:Ă?ž 6™4b0›Ü˙)„+Ń4G ťß,ý™Vy[ăîżňâ…ĄÚĆw‹'\W|ňôL‹RÍ ňĄ(čÚŇ4 HVä™x)ÖĚ-ül2ĆMÇŘ Ńs41Ź{óǁőJ˝lÁ0|‚Wľâą ˝Ŕ ó¸ţƒźOŽ5ĺ$™%‘Ó…“8‰˜˜ŹÌĐëęëśěZ›‘ŤËüČŢnpT˘L@Ć@6 } Hć%6ÎĂ?!=Ґ“H#oEˆ/ŤŒŢS¸ô˘œčÇ5%óËŚîÂŤWšCÁá-ä›ÄŚ‘ěYd†Í o.ěU"ť4ś/! 8éœr;zA°oý_ź͆ăŻÁÍďRV13“d†„łp`rM1Qğ[ńŁÜ[Ä;Ŕţ6Źi0M°„ÍNŒíŰqţůtĘ),%RĽühZŚ×›9hŕ ÁƒâąpM}ǁƒŸ¸ö\žŘ÷šGş‚BĚ,­ÄŇő䋤kH€Ú;íĄTQz@m@Ÿ>yů›ęërőőhiá’„B´?÷ëG眃—_Śş:>í4zî9?žĽĚÎÉ:žźč˘şÇĎÍÍľÇălˇ§™& a}ć`悂‚ŚŚ&+/:*™>?–™@ffćQ{nĺŸâ_ťŹSůo“ZEŢÖÖÖŃŃÁi+ʏź 3ÇbąĘĘĘŚŚ&>Z)%ł”Ň”’MŮPÍĹ{{%`ÔČŢ­ň޸ŹLţ ›’ă’ŁĚáíň–Ě&͙[ŮK—.nnj`NČ}ĺ֋ůŕs2Ö`=K3YînÓ9<räÚIœh—Ě,˜ÉuÖŽűđ˛ˇ?Z˝éÝŠź´ :`2s,Ä?ě/σyßX™ĆšĆÂwôä{Ç03›3óÜÇř­sŘĎĚźg9˙n_çä_Ďkg˛‘H†™`Ó°VâłdÉR˛!9!­ż‰ όXh­ë—WƒaëdÉĹ ¤]—#FrK 3łi23GŁrČd~žŹ­5™Ľi=MÓ49Áľü‹ Ťś\՗ď‰FŚÉ‰„d6ď˝7YŹ`ţYć“~ËďćIqŃ@ °Ó!wďś^6É{úéäń\y/X Ď8Sžů&3ËŞ*îÝۚ^+u‡ ““'ËÂB䯽ťŠiÝęŐÁD‚c19dˆ8?_ÖÖZ߼ ASSSeee,ă/Šr—şeGGG[[›Ş„§ü˨°Tţ~Š+—ßďÜ]RFŁŃĘĘĘć–&fӐqCĆ îü3őżŒ2ΜhlŒnŞ˝b/cŸ,Ř%ąKbcŻtÖń9<Çä3K6Mć„lŞĺIqٸc{ăĆŚá5ą;âá8o™l×ŰŻ4âMł!i5d1cÓć<óaŽ›î¨Ţş}ˆ97|úÉkkwśů×]Á+ňŒč“ŮH f㽟¸ĆÖyłaF 3f0Սóa,{Ů`6Œ˜!ĽÁlÄĂĆÜGŒ;JźĆ_Ż3ęś̆”†LFؐąÔ78Çă2ç¸őELĆĂ2ĺÎz7ńÉEĄ+ňLŸ.'Oćq'Jg_};ˇŘ49ĺD‚˙ô'ž0ÎČ`›Ççűď—[śH)Mfšl)˙đ.Ůo˜Ô‰íˆć”îž6ý‹‡Ú˛tŠy睲ŹLff˛ÓÉýúóŁóŚJöĂ(`—“N䰑üČeŁß (yÜq`!Â@âwżcf33ďÝËgœÁB0ŔDŕ>}ä‡Jf–fmUŐţťî2Əgˇ[ffĘ΃ä-[˜YĆb֐ń8›fKSSeeeÔ:_™—@Ŕď÷ő]§(˙pjx\ů;qÚŽ[ŚifddXß˙˛Ţ×x<^SS““““•••úŮĂçbvî jŤ 5֙%ýV‰Źw<üg3Cô—–›hcH óáΗXŘFÓޚmʎňąWçi¨j&o¸œ˛Ŕ; ƒŸ…= `X€\kO„ÍßĺƒĎÁ9 .q ű—Ÿ˝÷Pý8f œŮ`iuG˘ŠwƒşFL: ?|v h âÁSP>ˇ=i"ĄaĎ,~ë?D^/œrŽ=NŤÍE°Ö˙§uv.Ľčzf!%kM›FóçóI'óç™5ŸF7>Κ§sn†ëq—$@ B$ M'ť=YÍÇ0‰Ŕíśz;9G<O&ŕÇćáKeh śTŐśn-ěßżßŔŮ^/Ĺ⏳XUĎDhpogĄ-„}š­™rzňCâÚq``í zôĚÍW<Ö:ţŹĄn{ŽÝnőčƒ´kL}űrNNúŢÎáćć]ű÷çőěYš—†A‘ťÝ¤iÉwIÚ;Ş˝˝˝ľľľŹŹěËVUŚŽZ@@Ó4Ż×ËGôü+Ę?– Kĺo–~ý ‡Ăńx<##ăČ]ˇřđqĘęęęĚŹŒÜœźýźp;fvfFçŹĎÎÍłldÇBu uyš…^â°QÁ)Š`n ›;ëů 6ô7¨2nśĹšĎĘˏÇh™—îäúç(z4ß Í‚të2Ë`Ůt&&{ŤżÖŃň˛ÍĄSĚв١!˛PÖźAe瓫¸dí˘Ě ;–žŽŽ:(ꃒˆw`ó2Ö˜v'“´űsąy–€˜pʍ8lژb ŤÎšuGlŻ’‰˜fZäé÷ž&)(’Ón:GívźńŞŞPQKŻd‡›\†iÎÉ8i”'ÜL9Œ˜&H#&Ö xÖNÎ6tFœ…—B۸ö=îuů†S¤ŞĽ-P}ŕ€M×+**|9šœéĄškxáV@ $›Ś‡×ŽmuXź 0Ąi¸v|Nvůh֓Ü{lľĚN„Úzô鍝\‹Á4áńĂÁ%…˜@N;/مczP^VGckksSaqąĂífÀŚQ"Á†qhÇ4ëĺ9í4:őÔÖććö@ źźüËVUrÚHšÝnˇĘY¨ÁKĺŸG…ĽňˇIż$Ĺbąp8|Ôy‰|řÜ×ęęjŸĎ—›—MŹÍÂÝk陑8/†Ľ’RŚŹoŹ÷zź99Ç%$‘ĆœĐ|Äv1ÇŁX i€ˆÁn>ÖEŰř%/]NmËŘ՟4šŢ‡Ś#n ÷8¸‡˛lch:é6ŇÚkjjÜnGEĹ`›–mď đ; /jŸ€=ň/7QžŞqŇŽcĂ;0 Dż),m,˛D`ľž|ŽNŔŔ~ńŠÉQ8:Œp Š>ĐXFIÓu›ÍnˇŰív]×5MłéI6ˆD–oÜOVy6:ýD„ Ó4,‰D(ܰÁí÷=ž={Pi0ľtƒ6ň8đĆJÔˇŔţÖąät° Xň&œGžĚÖşƒmMÍ%Ĺ%.ŸĎÚT$šˆŚ!nŕýň3ŕÓ& ?‡€@[[¨ŁŁ ¨HK­ýčœ" ŻŸ~ʧ†§Ÿ&Ólnk ƒĺĺĺGΏĺĂç`Ôl•—Ę?‰š ŤümŇ#0 ů|>+)­Ď]DÄ`đaűsYs_óňňLNhЈÂĂpÖxZ ÖR•íHҁÍzäĺĽŸŠ¨ľHĎŹoxą5úfqEÂAƒÜx<Ę3Cź<—^d^ 1ˆt/wcďo ź!Œü)ť‹ 2ŃA[7VjőǗUô++ˇëモ<]‡]?E} F/J H­x°žŇoěÂöućÂoţĚť×bî#´sG4çԃÎŹ ň/gG,â`;œŢŒŒŒĚĚ,OfFFŚ×ë°ŰA,ˆ  †˘wÄÎŽq=˙* šĆDŚ5ÇIÓěÓŚaţ|}üxç̙ššĆPhGG žˆ°Ů\žŒËrˡgäěĽ]>¸éű6ŒŚÎVpňĹęňÚą ćŰi÷qœ[Κ÷1› a39Kżůw(a&îšÉyáX6LŠ 2%t#ŻÓӟBdŃOÂĂJiw›_đbü9޸Q[W˙E[˰ý ].ɜšˇJBŕŠ—đň§|×ɧjäJč5WF#ቓĆzÜn(Œ1}ë2vyá¨ç"s"ąÉ2ν~-„Žż xMbůq!zl괋ó˛tf’ ‚ö Îďƒ]ˇ˘á-ŒŰGŘٓ˝Ż,!B‡ĐA$ö­â5ﳄfÄ[´â™9ý&ĺfĺd8ÜŢÔÉąŽ×’%Đ9e‰ÖÖÖżwžNĔŹ6 k‡ĘÜě݋>ÂâĹđňĺüŕƒ8ůd”–˘¨Čîrĺ¸\9=űö%B4nŹ?ö`ͅľkvô~”Uţh~éĎógůřŽeč&@€ ¤ƒ ¸{`â&Ź…Ý:÷}Œ6ď¸mUՅË7ýhú Ń#캍ĽLöâ?Ɂb[˛Ű0dȞ={ślß>dČÝ•´Z™B$ťŹ’ëĚŹŤŤ+--Ŕ‡ŻźL˝-].—UÚhŚňRů‡SaŠ|-ŠŤ5ŠGJéóů̐‚´5xú#|ŻŁŽÄg.Ɛ‚DccŁišĺĺĺi}Ş|řÜWDńx|Űśm™™™˝zőb6 Z‚v4ó­’â4fÓ HĎîŕŮęçĺ+wlâԆ=Ž‘dŒnÖÖ\ěšĂ'­j;Ąú*ž”ű> [śZłîmÚž}€ţŽ×ÖvœďrM`ôƒŒ˙bΚá¤]ˇ á Œ[GłA¤3ł “@‚!¤ŻńÜ'‚ś59;wäé>Éś5œ1˘U di’ĐŹÉĺHí—rřΝ_zVřNň,-X€Ş*Ü}74L“Z[ůĂqć™(*b)!DjžŠÓá)Żp—÷(÷ žŐÜňێŸíwţٞ}\św@ÝęćK >C23Cd弣 ăÖcŐ(’ž ż,"đ•Ç›#œÓN^U]˝nÝş=ťv;ář̍5 ÓM˝ó“şx;Á`dRĎăuťëvő‡śĎŚ/ů}tqŸ,—'yŚDňź¤j ôíŰwßž}[ślŸ/躞ZsňM˙Ţ(˙=T!uĺkIA†B!ÇÓ9Š'Ů1›~ ơčŃLŽÉ`0ŘÖÖVZZ’v3ID-Ř Qň›ŚinÝş5-)“×H“j¨ČáßŰh€“OĘß{Pe¤î'áö: Ň#íôĘA>ąFôh_äiĐ}su}˘sŔ.ž¸ƒžƒł ´9°ô¤ƒ5űO:yú¨a=¸×ŻĐű. x vÜGš§SŃUŘu+׿fľ)%ÇL"bŇĄ›0ޕŻ~'8Šń“U{Â×˝lźŞđŠßTôqÜc4ĺôć°fŽxń;"˘˘ţÖBĂ@R`†i"‘8ěĂHîݑÖŮkB$ťy“5FLťKôę_řŰŢö*očżąŤŽnšyö˝ĆKË`˜Đ5 qŘË1n)ŢŽB{ÁC×LáÎ'"Ľ ą#FMŠ…¸ăŠńÉ~×ӁP†ŽCö*é¤×oŚ?ŢÉ7ŸÔËôŽűófç˜Pqťřöł‚%ƒ SZ=ÔÔůŚęŐŤWffćÖ­[MĂHoP˘łrljOiii[[[0<˛„zúÍ<O(’Ö8¨šęŻü㨰Tş‘ę`ĐŃŃa­‚H~lçd7ăI¸ż˜ Ü\B$ill(*.˛ŰÖ&”`0I[đ^Œ:4ś$śoßîńxRIID`AG/;Ar̚ڹsGkíÖ J°ąóź8Oƒ@ ľžúyO ô,ËŕoC€ľ *šÖ˝ĄÇł‰lÚvĘŔ•ššš, Čőţ5rŚÁL`ôű\|ďş Żń¸ †ŁŒ9!`×Xk¤ş‡éîąfÉăĆϸ×}p×wě÷}î{šK×aÉă\ň‡›č´+é7+pĎ8é&d82)ťT‘Gę–ŔĄÂo̒HjëúĄ˙5 BőQœDD¤3[Ÿb §K/đœÖËś°äÍßh‹˜źg–|Ÿî~—ęüŹ kĄžüů$Ŕ4’…!ĄkźŤŢńÜ2Ŕˆž:rnFű–›Ŕó ÷ĎÇoĆ;¨ Ś"ËĹWN¤Ť×‘`Dš'—K€¤dé‚A”Ú˝ÄĘKÇł}Ç™š›öźRAhˇŰ‹‹‹ŁŃh—źěr3ťÝŢŃŃqäťWQţ?TX*_%}¨2‰H)SBŹý™%Ě,ôźŽ—l¤żK[:rsň=nO˛ß•‚€ŢÁ •řÔÎn†ÉĚv4Ůlśž}űv^ďŹf…a˘Í  ‚N¤mÜ¸ąžĄjÂq˛˛2ě|B˝S†­îh_[fřÔH‘—!=|>3Ů"ĄŔçKśŹ5äź3HŐâx# Hg'ł•‡˝ˆźł°ë&Ůđ†1n-9Ę4)lŤhńľtć¤XĎšţîŠ=´XŻü˙îĎë0MMƒ! vĂ_OżÚŠë_DŻqɉ˛çŞK.ŚdGJîó!`5˙ÇC‰ÂG+ęväë•ząˆЙ™5†ţĚzЂćŠlJ2$ ÉŚěۡŻÍfŰŃŇÂiűˆŮžtťÝ999őőőІăQ'ű¸Ýn)e$I •—Ę˙ŸłTžJúŞĘh4ęóůş\¤$Lmż KM$žÇ ECœöÎ@íl&hM´3ÎabĄ ­žŽ ¤ľ $ItÄ0'Ś\§6sĚu›b ˙¤I“tÝÎ,“!ô°=kW;—Gőƒk›G…=¸Up4ŽŠŠ]ž|yŠ˛1crG'ÂżÚ>ăÂKˆˆŰ ä]iěúžhxWŒŰLŽ’€l}_źö˙a_űžÉÁS_u}>>ó8i“ÎäK›¸çsú`Ş~ŽÉڰ>YôĹŮ?҈I@ÓŃŮŠCAuŘLk›ĎH$b†5č‹ĹŒH$™9 şZ„vlÚŕ „t—Óáp8Ť‚Ëĺ˛6:îňZ5)Ÿ#łdŇ4ůé tÁ$¸Ż8!qՉţĽ›óď¤2ǤD‚A\^@Ë~DßÍýďŚÇŽE_­ŤÁĎŢ ę˜v"^žŽs=نkĆôӃ—ü1?ٲčň đ¸óhŢS<ňtLĐ­Ů‡ŰŒóƎ>uĺ˘ĹkÖŻS1‹wňůOÝ†/Ö>@%YLl g˛) °Íﯭ­-ËȰ–ětžĂ˜ˆŹ~[fÎÎΎFŁé“cӟ{ęY+/m6›ZyŠüٍ°TžTzWGG‡Óé<Ę^ƒĚ aÔ\<á†&É<ŕŘ$S‚4#›2ŔˆÄ#^ݎGnĂLÝ?’w2Éŕ7ÁhŚł;Z§ą>mü¨ót]0KL67ŞŚŽćŹ*Ý´7ĹźČ1/€† ÖíÚU9a„ňňr–qÖł¨×źîBîXO…—°Lpö‰&Ůľ]ˇh shlĺvGÝK¸ć#ůŽY‹sW>›ńqßÂ~lçäN"0ÝZöéĆy‘O•çBšşĘŚI$˜´ä)JŰăÚz.áp¸˝˝˝ĽĽĽšššľľŐŠI)ĽŽëDd­ˇŮlv!ŒDźŻa@Ęćć涆ć¸4‰„aŚi2łaB+2srrňňňrssł˛˛\.Wú˘Ăôŕ<ŹĚ @Öz•'găźńđú8a‚ CäM˙dXÝŢýí÷žŮóő퀃\ŒŞůџéáKpĎŽŸNţFŒ(ĂŁWáěc˜@qƒíşŁ1ŕXThľƒ3Ácž~ ?p5îႾ”0  üu dˆt_>IŽ8qőŞUŤšöŽš}şxf!GŰč„1ˆřÝ,ÚŰÄĺ9tÎhXŒ„Ů'77âőѨH˝ýL&]ŔíüđQTTTUUŐÜÜlU-8je]םNgúĘK¨ĘąĘ˙ KĺčŇDŽÂá°uŐî:‘A$ŔŒsË螘 –Ň8t–(O5+™Ą‘­ ű;p°ţ`SŹ+ŹČ†„dŠQgeH0$˜ă:œBDŁźß–÷lIţkmüş‡ŻsŃ4b‰ŮĂfƒ>|ŽŘţł–˛ĺśěŐ÷~žťĽĹ?ăÔS|YRJ"Î=ÜŽ×™` rę;~mú돹?{ÍyáúČÜü˝Żi˙Ée=Ž-ě_Ŕ6–l2C@č¤K6A¸JÜ|–9္˝‡$ŃŐB“Ě`śzJ‘ß﯎ŽŢťwo}}}<×4Íétfffćĺĺ 0Ŕ*ďp8ŹžÖä L$ŘfŁ™$Úő‹ŚžL†Ái3]Ľ”ąXĚ*)ŢŇŇŇŇҲ˙ţh4jšŚÝn/**ęÝťwyyyfffęŹNÚC˝ŽĚĐ*Ťąjš‚Ö(š$`3Ě˝{ʲŔZĂíŘ#ý=FÜâ>v<ßňůĘMTҌ’'™™0™@,ˆ~s×$Ř2o˙Öúچś'Ÿ:ÝÖçž˙4]ú0Ű4j ŕÝŐóɃ蘞lJĄkăǍ_YšuĎgöFNlŻĄ[^aMІýt`ߛEž–ŻŸbyyׯ—Ńh™ÝÎ č w ӅQ=XĘԆŰĹĹĹ555N§Ó*ĄŢĽR:W^&‰p8ěńxpřÇEů;¨°TŽ.˝şU*=őýĂo&ÓËȍĺš`.“0 ‚@Š%•LLL’âĎ%Śl>×/ĎDř°őtHśPź;‹nń÷nÚ÷`VŮ\áÚ‘Ą(Í젙vâĹŐ\ŞŰűF|7Ą7řF}%y;#hř´ŸV?ú¤Ďœî,) :1ƒ%knÓQ"lE r¨˝ëEíĄš“ ŒÄŸz,éqëßŸÖ{ąM6‰AÖj@„ ŮW5DŽzŮ|ę^ýI )89Žhéč討ŽŢˇoßÁƒ­‹riiéäɓ‹ŠŠź^ŻŐ ďrĆR A)egÝX3}H2ÄĄ¨Ó4ÍívťÝ’ôî܎ŽŽúúúýű÷Ż\šňóĎ?ˇnĐŤWŻňňňÔćÉŰKf~z.Fô¤A˝aJkŠ+QU ťě\×NĎ/ Ozîě÷ŢýŹç§ťÇŢvĐ!ϕc_ĺŸЉ÷°)IŘßLëöĂe§Çç4îSęť`Ňin۲E‹>žłŕÄqWd}xŸűs8]x{%ę]5™ŃYQ×Fj|ţ&Ľž=đę<¸„˜Yşăuzô]žó%:aú!‘ČĘËÝ :¤=?n矾Ço|Aë~ Ť•œ6‹§   ąąŃáp¤*­§ż?S+/­2ë]nŁ(–ĘQ¤wŔ†B!—Ë•*ÎŮĺ6jlňr^”çë†DB#ťěŹ'Hc–LŇÚóZ'÷í׻ՓŐĆű´Tq<ŤŤ#8výş&)ŻîŮ祖čé}`ŔĽm1Üéç_:ľS⼾Мs|ŃŢîU˝Š]Űňiö\ĚCf ÍÉl˜`Mz,&sf,ÄşgĚ;ˇ,iťě’Ł3žČîS0pä™Ă=™nÉ‚D—Î:ƒ%„¸ŠnţŠüţÍmş‡!‰D4ÝącÇć͛[[[Ýnwqqń„ ***|>_—">‡E×áWęÔ:JŽé‚Dg)Ÿ´ÓŰelR×őĚĚĚĚĚĚQ0ŹŞŞÚˇoßŇĽKĂápNNΰaĂčt:™ş@<‚7—ă÷W$§$ƒ ™4zlŹçśvpÖč1ýű][¸xÂúWvíŘŕ´hOű@ސ~t>Ś÷ä ŞmÇsQYňĐŕ"vۅa?ĺ„-[śÎÝŃ:#ńmxŸ˝] ˜čW3!€5A’Y#}ńn}m @Í3úf)ľ'L–LÁWL¤ÇçR k+ŃŻˆ%ťYﳎ5ú—OńŮ~ÔíÂMĄ, 6:+0ł×ë ‡Ă eeeř’ÁKMÓ\.W(RąĘ˙Ÿ Kĺ(RWkJaňâ›Ö›Ţ÷ŐÚÚ1ƒcs/˛FČ4rl5.źß+§‰žDі=kĆ~/Óç`ˆfˇń$>Ցi%33:zŻYłÎ‘ńă%‚'äÓDuxĽ/ÄxťAA?ż• lÔł—6î?ŮÝďqDÎă†/¨qřcŘűB8›´Öýöľâę7rî W]döű‘š´ĺóH09u¤ľ^ŚTiÍ1Áá3*‰ XcĆ íü_ăΏĚ×Ď×íޡ{ËĆ­UUUgȐ!gœqFVVVúű[‹ř˝‚ĎM_P˜ţWŸĎ7xđŕÁƒhooßž}űęŐŤ.\XQQ1bČОúÓ[ËČnăsŽ•   fßÇöÁš}xq)=ˇm“7œ˜áË8sü ű {,޸jË19SzîŸî“çÎBÉ4ş~ß2n9k÷Ó/?äe{hŢVž6DšćĐĄCœ9Ĺ{ÖMľüEiNĐVďe]:n; “4ÁĚđ ‹”‘_sBĎý›Ö:$ †Ë8A@א&8Îzs#˝˛ŠĄAăš A]Î3ççç§W*č2xiýét:cąX$qťÝPIŠü?¨IŐĘQ¤fŔƒAŸĎwÔ)…Öw˘ŃhmmmiY‰Óá ňÁMôęN|PŒŃ3đ¸dCžIžşJüžGíƒ"—•öÍ%Ś÷1ąËO&ä`Š“&X€$A۰~S(Ňzěřă4Mgf3H#s×:¤úúú7îŢąK/đ^ü›UŽ3Ć:~}0L)­*a)“ýäDh đs‹ho˙ô,ŽČ #‘X˝rĹĆ}&LĚŃvťü¸€f]@[6ó#éžł1Ź ~~f!MĘÇöaĂşîoÜç|tœáXcŽżŚ>…ÉG„ęŒş—[ščźÉć;ˇŽX˛ÔëóŽ>‚á{/ŕéOȓľ÷c@)ßt3…ƒüÂ_Qx35śK—ƒĆőĂŐÇŃšcŘç$N‡'_ŠX,VSSSZZj}ž;ę[ôŤßÊň5Š–Ľr˜ô q(r8G^bŇŰO Y9™N‡Ť’çžC—śsK”ŕDžUŹL˛9\\F …ŻfMs•†Ëř.šDXž…+Ç`‚fpS;]hžŽ;~ě)šfİ6đ‚d6Aš›O×Ń#@7l\™ň\6˛üŹ,[˙„ =C ˙\ßta8řáűŢĽ1í™'ŃšŻÓ;Ăö=ÍUŤć´ţ¸ŞŁőŒoW\Tf­V<2)S_K)Ń*őuőK?_ŚGsk.ؗs˛ă˛^ˇJ]6őëԀýÇ:ęcĽа°pú´SNš>˝úĂyÎłßČlľ˝őÖÔăŽ+.)I-ĐL6ż$Käűčî3š5D6 €d)tmÂńÇ÷îÓëÓ9+js~<íüťlˇ6ĘęGĹĂ/ó„ŸSy.î9“îů–Ձ]çÖedg á,ZYÇpŃéÇrŸB6M‚MIBĂëËŃŇBpđ•ÇiŔřqăžXžlÇž=3Šů˝ŐpÂ@ (…5~ívŕíMh<xŞ|˘–›QöĐlŽl¤ŸŸËŚ$"H™,ô#ŕp8rrrR…qDgŹŽë‡ĂęŒĹ—ôŠ+JˇTX*‡IEH4ľŚ~Y,€ŚŚ&MšŮy~>đ&.mă;év:kV%<ôŚÖz[ő€K†źý .ČĂ tśäˆ—.ňâEÉČJ‹t`1çΊČ-ŕB_ă áÖz†D:łÉ ]ˆíë&´6lvÚv;~‚Nb­RŻţËЌO dBťŹÖź°ztćŕż ę§í;~3óŕŻóKű\yڝÓ“8ź“ÓšMššźS]]˝xńâúúúCŢ9ţž=öĺ‹z}8CťŔ”†ÝŞđuš)GśýUJ‚€ ˆĂ*¤_ŻľšöÖ!13Rłë=?ٍéǜőă[W~2˙ľ×_/**šŰíq¸"~ówăÝeŤĎ´1ËÔŠ8ňŚŻ^H}'}!ćĄ[ Á|4€„ŕΛáđáÔ§Żć<ęčfrdĎŽËÖV~9˝q[ě§Î˜qü SVŹXńöŰoçććüń˝{÷phČVhÔš`Ô:l!„”Ňfw>ăřő›J>\-N[öĂÜ1ŮëwâÓů§ŇçŰńťY÷FTĐ=gň}gážłpăyřĆKëvôĎ~Ţt&“ O7đćýA—Ob]#ĂdA.ŸgtŸAâí7ƒöäÓF’i°Ś“׉—#œžhœ;'ŁW,˛oŰĎČët-ۍY›ŕPŽgâQ=Ŕ(ČĎŻŠŠńů|Ögť#gĆ‘Űí…Bvť]t~"Q‘ŠüMTX*‡¤ĎëImݐ~ƒô™&MMMŮŮYNť Œ=4{$O˝’>°ßŤÂRëf•••999999`äӀíź8L-v¸ĂÜ 3iímąÍťő×ׇë"˜Ľ…&!šĆ|;zyq…‡Ż˛QO35ŰŢągŻ8uÔﮛů[/Ócoňo%‰sůŠ'čľb.g%mŠ–šˆÖÄ䐧_Z^V"Ý+%LNęÜü¤KżŤ˘ĄĄaÖŹYmmmŁGžđ ­+/KÉÄľÓ dáŰć ×Ůî2!5héç$= Ľ”•Í+´F[[[Ăá°ŐĉFىpŘďó ÝťW‹6m\ą<3śš\N§ÓétÚívŤ´›ĂáHemęLÓ<˛fÍĄIJ //¤˘:q4$K°Űí>餓&Nœ¸zőę>ř ;;{Ì………ŠĽ™Ö’J ˜Î&&F ďWXxýŇĹ6|§€HöxX°ÁSŃIƒQ݊§ćăęçIřáE|âHî÷vŮOţüβĚ“ʇH’řՇpv]t,,‰˜Y kU-ínc°źôXá´q$F.m8- g]qšĹ…ŽŽ=Uű‡Řó袧xÝ~şy–`ÉN>ć=úÖh~î{ž/;3ŤŠŠŠźźGëhľV›X3}RË.żéß6ĺ?Œ KĺÔ„ˆŁ.ŹLŸpŘŇŇ ;;‡YDœCcé;@rUĽŐƒZ[[kFž=Ě0#h5mŘ'زv•˘x<ąi}maŻâ\úą‹ŻÍŔŘÄs!źe )†ý1~ úpV°yhnî[}ËŢ^&?~œ7lĄĘţ<ä^z|:ÎąÁÎ`¤!ôLÍ7"Q;×洗{śrűU2ď/Ô6‚+šßŸR›] ł @Ç,X°aÆѣG_vŮeÖ˛<Ťá%„f°!4ýۉë_ć§Ż3ďŇ4ikŽ H"  MMM ---~żß*˙młŮ„6›Ínˇ;5-QX8Đ0`š -Í1ӈÇă‰DBJ™H$ŹÉœ™™™ššš………ůůů………ОąéÁy¨oŮÚAúů¸ţ$XJĄkÖA:Îɓ'O˜0aѢE/žřâȑ#O<ńDťÝnEfz“+=ƒĽ”%…ž“Ďź~ăŠ|Úpn>‘ěń0⠍ʲńŰ ńós1s-‹Í5p:0lwŸGž7ů‚uĎ˝sĚŇ6^˝ŚŠăQžƒ=aęëfĂ$€ŸýˆžŒĂźĂŘtč˘sˍĚ(=ýŠ`JĺýúřlU⼇l6 ~‰Eœ0éĆŠtÍd>ĺ>œŢĘ ďÉÎÍ †:Z[Zróň’‹Ź˛PDŠmLÜnw 8ę0ź˘tK…Ľ’”j…ĂaťÝ~äÂĘÔ4‹ůýţ’’֏,ôęě1i¤¨Ť;8hĐ"IŹWъŢb'Ua5ůPÚśí+˝˝~_Úkoa06ŒČœYřyořńLÝŐřÍHћó‘÷!_^OŤgС~ÉżëGý †A†`ŇŔ,œ´˙ž ôyż/ţ >CăQW΅§bČťDÉĹşôťnŰśmΜ9999×]w]nnnZL&‡5çë×ţř㧞zjúôéƒN?!ŠŽcëHŹ.YCŽ?áě>Ăú“ň™šçĂÄ3“)aÓpá8\4Žvśŕž?ó´_8†Ž?ůĘŃs&—Ĺo<áŘśËůţ™źž†ěÂłŮ6úe4×á“M śwŹVśiĹęąăĆŕpĚzcŕÚ)ɚşŚE>÷ĚbŽ9Š˜™tXӆĐäąXź„Ÿœ‹Q“WŰŃꑦS¤˝u­řŹe—vť=[U^*–Ę!DÇMÓôů|ÖwşĚ•°455edd$_Ŕ@§íÁźcp­U‘ÇdcOĺŢâ’ŻÇ Fj?âďěyÜߤ$ °s{MĚůpyŻ÷ę$Ѝ8ƒžÇ`@š0ÁY>ş!ƒo4庅Ćeo:v,c*FßËhÚqźŤ~AÔĎD‚™4Ňt֘ 6Ú÷ĂÖÍO.č=č8$&Qě$j݄Ňsiț€–L‚:'Ž !ZZZ>ýôÓćććiÓŚ :´KLâPŸ$ >-˙ăŒäăǙ§ËäfS@UUŐŚM›öíŰ×ŢŢîp8JKK'NœŘ§OŸœœœŁ.MÁĄ›™am'”HŰiÄáp 2$Պmmm­ŹŹÜ˝{÷'Ÿ|‹Ĺ˛˛˛zőę5|řđňňr!R2kŔSłń­c• Ä&ŇűS‘™““sĺ•WnٲeΜ9k׎=í´ÓrssS3ÓGISN!Á#OÜë\Şmš’Ăŕ^ƒŹéŔ”c@?1ƒ˛垗9^Y7cwőÎÁžęß]Qţá÷ĺž&Ú°“/ěKç,ŔŰۑť‘†WLŮgĐŇŞ…;÷îĐg ˛Ő § ;´˝ĺ“s°r}źĎ€PeMvŮí8s$ßr2—vž/ôÉFţŃNŻ;{őŽŔ†:ç˜AĐ›’<Ř:Křj€Űĺj÷űăńř‘C ŠňŐTX*@ZF"—Ëőóz‚Á a999ÉďłÂ|w ?ó Ý|:žÔĄˇˇ}śüŇo×oÇť ř—Ôhƒ1ĂoœĂ6áÖ'jj÷ő?Ž1 ¸¨—“&‚a’$h‚mDăđ<úđEz~3B“qâ虁ĺ<ÜAĂĂ%z˛“„öţŔżíŠčđ˝{ކe[9űŁ Cßľę[+ŰSq¸bŊ… Ž1⢋.˛ş"љ%Gś9WŃÍĘŠuroąÖťĽľyÝÚő6lˆD"=zô3fLŸ>}ňóóÓ­îMąź$ůQjŒPtNđIEş"˘ÜÜܜœœqăĆYcƕ••ťvízńĹ].×ȑ#G:&'/WV×óâí˜w/]'ĽĎßaćĄC‡öďß˙łĎ>{öŮgO8á„c=6ŐŤ|d—,Cƒ4zœXç\áß2)“%÷~ŚÉBŽ†A%Łšç`łďůŠždÇĐ'ĆN~\ď#~qŸ6‰NŢ -_ Ł–§ŠRžĐOŁ˝l熬 ˇ×0.ŸMCÂ$›†hĎ-ŕ¸üř=ˇ-Ú[ţé^>őę_ėO¤˝M'ˇ„Č0Yײzâţ÷yă3d×9Éľ  ’Iɞs!\.W$ąšřŞqŠ|}*,•$Ť•™‡ő.ÍJë˘ŮŇҒ““sh× 0C hÓŰćIŤń|ĘCžöEž+#¨kÂ?ľk ¸˝NĂ#‰P´c˖-ÇL°;‡†9TB+%4IŚ1ŐĐţżň“ӛĄ`č˜=f÷YŮËą#‚ĹđDV w$“RÎťo U>oŒYSR4”eš“‚kYłÓ9VRZE‚$ł"‹Íœ9łžžţŠ+Ž())ůŠ•—Hk\J’Cô C0ěњF~4c[óćŇ²N8aذaŠ VҤŸŇôţĚ#}uŸ.G‚´-3‰¨   ??„ ŃhtóćÍkÖŹůbŃ⟥}Ď]ÔT2Ź—5’ĺŻŕów¤Žë3fĚ1bÄ[o˝ľ˙ţsÎ9ÇápŮ%›ž—%=Gˇ8×tlďM<ŕq2%[ÍWkwęoä×ďŚiwńqqüŔŘÎÓˇÝó|ďo˙!3ęŕha8ç]DÇDiÎBŽŮOóÖÉłŽőx}ƒ‡ Žţě9 _ÎR–5 MŘ+Łp[ŻŚě§.ö>xż´”›‡† H…^čâNJ‰Îř-G%.>Íüَ¨Şăzń}gÁăłĂáˆFŁąXĚáp¨ĆĽňőŠÍŸ•CĄh-D;rÔ*őEkkŤŚi‡5z $›9Üď6Ú6Š/kHTúíMŤě37óŠj'†öq¸ô:^œ…^`Ř`Ż­Š+(Č),N8ů;6Ml`€–đÜËé”iđŞˇ6ˇh(Kd#€=¨˙SöTRZ QSSóÇ?ţQqă7ZIi54ӟi*Rá§ -Í}ﳏ÷+>rź•×;ăÎŰ~tĂ 7Œ3Ê Ň˛Ű¤üúŽzŸŠu8c̚ᆞç}sňœo­ú ,üîźO#ĄĐ4ë–_VoČň”R–””ÜxăBˆ?ţń555é-ěôJDé,Ü˘Ą˝.Ňú’üěQ–‚X23H€ńç“`Ź~ŽĆ2”űž>\t"DzhaźE‘ˇŮÂôó ó…[ĆVÖPěÉ-O8€8úrO/ě”ĆĘ˝Œ8Ů]œďuCyłöoچ 'n:‰×?Ŕk~‰óNĹÔa°śńôe•.Ô´đcsiË~,X…_Ąűg`•5p:Ńh‡OWV”ŻŚZ–J’uůH•MI]+‰„ßď/..śžŘrxŇ$›näMޤ"pw`[3ďŽÁocW&ő(DŽLŽ`’&Çu8Łf$;'ŻwYÉTäáĚL>Ř@}€–WđŤ 5Á—ü‚žęď÷ŮÂ…óóűć›2áĽÓ Z3.÷ŕ‚a€5“Lő{Í?<’÷緎}äďŔ8Çlä°Bly`Élž•ĚB|ńĹ‹-š6mÚŘąc­¤9˛ßőȕ—~ż˙óĎ?_ťnmiIůOţĺśÜ/pŞ?Kd2! }ý˙G.é,D`fgeNgSvţП}gÎüżYôŰcFž:ujffć‘ówpDŻŹŽë^xáŞUŤ^zéĽ)SŚLš4ŠËŚ5CŠˆ:ÇžüćěOĹŰĺvŠß C˛FdĐl˜x1ć˙ ă/$‡Ű}.o˘íFOšq,ńń ŸÓ{ąÍN9}¨š_ZCK3ŁcP >3¨˛‰íçc hmŸ0šƒÖ0łľCZYyY[аśś¤´”MI#*ř훬E˘pŘ(ĺז(QœŸn›<ýŒ˙í܌\oęőľ ĆZ żŮ_:ĺ?ˆ Ë˙uŠ n4uš\Ö7zÝoiiqťÝ]júXx$›‚D$Ů_ˇs@żá>xű"ľą$ˆfÚYφŇEĄěőďíŐ§‚¤ÍÁ éŮwŮžsŠ oŔoÎĺ9€ć-™eËu6TJS ŇâŘÇć<ü˜ 2mŹßJ˝›řě íéKżƒ‘wvf†ľÎ‚Éj6 !âńŘťďžŰÔÔtÍ5×}ŠwBˆÖÖÖyóćmŢźšG×_w}yrÁbFě‚?'=Ĺq i1}ĹKÝm—Ż“ßIUđa62%҆6ÚŰEzp’Đ$ űPœ?şwß7öî şjîÜš?üđ°aĂŚM›–““shUeZľŢ+;nܸŠŠŠ7ß|óŔçwžŐnN~Ź*?dHśŰđFĽ~uŔxü„ă\qÁOôŁ„dM€ŠßĹüç¨n;g ˘Ó×Éem[ÓČđîŸ4Lęߏs)ß}ŢZ‰?NJ5Ř^ˆ'ĎÂOÇâ7bÓërń2:ýa -ä‹ĆÓ aÓA‰(ö6ň°2őěŮs׎]9ššN§“c4‚&`Jč>^ýáżý$crŻ˘¸‰L^ż Ëöŕęăaj8ÎH$b-cU#—ĘץÝ˙ýßô1(ß0k´Ň4MÇÓĽ›.őWkM}QQ‘fmPÜš]Ľ„! -ÁŻiłŘ;Ŕćáâ˘b“ Éd2$ƒ¸9˙3ş; ëąfhkîŸoôčŃ;věX˛dÉŕÁƒNg2/A†Á° zk?.ނ×i×öŽ–ża‹ŁUđŒ2˜a’7ű–`×6úůp,ŹMĎł6năöÍQ¨¸¤˜u!F÷ä˧ĐëľÔaéBzső Čž&oűÓŠo;]œ4˜‰ČĆŰ+â°A—ËŚt¸œŃP¸­Ľ%7?Ął@<ˆpűŤŘWCĺĹś'ŻjinvšÝ6›ŽÂLŒďMş5 š×`b[”ćĹxą“Ś4ăšüĆĆ} 2llť“ţřTűëŤĎÉęĺř1h(÷ź?NËKaMçinn~ţůç töŮg§BŕđŮ.é_!śmŰöôÓOwtt\uŐU“'ONmŞ,HH’Y”żĘüź’wžŹm’8T"iłX­GąÂĎJŚ@ PSSSUUe-ÇÜľ}űšÚZű‡v´ÖĎíѧvÇÎęÚچ††ćććP(d- Lýxę!҃óЀ˘d÷ż ÝxŚ0“ef­ä9räŔ—,YňŮgŸĺçç[5TťĚÜ鲪R1lذśśśYłfőďßßăńH)… f+)/ÚDoÇE˝5Şŕˇ<ńë7ťÚm<#‡’uAZ1Žđc{§é@á8~,Ž*Ŕ˝łhÖťî5c'„Kyž,0Łg>ZO­´ł‘A˜:˜˜˝ŮŮŐń€šëÁ9Ǩˆ°z/î{œŔ5SľóÇ‘h(öů| S’ dł8­vD4UKĺkRݰ âń8Ľ&ÁڤšD‘H$‹YY¤ ý *aęě CřŰŰó‹r6ÝäqçTOhŕů?Á;8ĺĚĄ?Ȃ˙V\}+î6ąMĂńŒIŮtˇ“?ęŔӆX–ŕX~ŮÖ_]ÍżtĐđ(Ż,ĽuxI ÇÉÓ 2lŇţCń§Ç[^^{vXIƒM'ě ç‹ďHœż#qž˜ă„CŘŞŤŤ_}őŐI“&üń_Ń L5śÚÚÚŢy睜qĆŠučL>k ގŢn^}ŸŮćÖłÖ"ÉC7ł%‰TVVVUUŐ××755xŠ>pŤ|č‰č:‚x5ţň˝TÁë`Ź›•––Ţ~űí+VŹxíľ×zôčqţůçgggőŞJ)劧žęńxž}öŮoűŰĺĺĺ2f ‡†ˇöă˘Mxs8.ěI ÉNÁ†ĚV|pésÂŚ\&~¤'ľĹqG‚'aœ\Čď#ICfdfŒ?~ĺŠy™9î POMA€1Ś7§›NăŰZč‰9c7˝ßVhšż˝\;}${ěôę͘ö4¤^ŇřÂqś˘Ě~KˇjŸl•'ŕÔal˜Đ5úë˜!Řź¸ňxŮššŐľ5ÖR(l-ŮDZ"ZÓbăńř‘ď|E9’š öż+uŮőűý‡ăČ R78xđ ÍfËĎĎď§”áGőL\ل­^.ňSľL K+ga0ł„$‚¤łh#ÚÉźuA´•Oâ‹|ŇNžĹݘd蝣‹`Ś/V?“×kž/IDÖ ĄK62čÂźY‹‘ž,ƒ~($~$ţüťŚ–žšÔgŒÁ†‰‰‘€iƒţޜu>~üŚůë íglÝľíýˇgΘ1ă˜cŽą ÜtéoÄᛍ,\¸pöěŮ#FŒ8돳ÜnwúĘKë–VÁ ‘‰)‰×Óíßśß—q›°Ął7{˙ţýۡoßącGssłÝnˇxdffŞľÖšŸe˘˝Zé˝T"2 Ăď÷766ÖŐŐŐŐŐ555566Ćăńźźź4¨gĎžŠ•2aÝ†g>ÁcŸŇś? Fr|1ý9ZĎ%đÁ7n<őÔSO8á„ô.Y^yÜĘKMÓÖ­[7kÖŹ Î>ż˙ć{ľKśpgRBO•E‚É.*oĎ8qgţ#xkłH#˜„/Ćbb&Lz˛W|ĺ˛ţXđ”'bÔ*ފ€ĹÇŕř Ţ čâ+řžřKäśŒç–řňsůň ôýSŘiŁ_|€–rc=Á`ňĐäa{Żî>B‘+“Đŕ§Q÷˘Ž3ĆăÓ˛)IMMM‰D˘¤¤¤ËŕBę9ZkHŹ PPąĘWR-Ë˙Qés\Ó×VyŤYYXXxčűD ™ÉĺçŃ+ďó51Ç‘Đe#ژá ř ě62˛€Q$ĘŁpüLü”ŢŠq TĹ >}4.і­Zö8vÔ[-ôfÇi&~ǃŤÜt•ř‘řÓÍ/~ÖôȤÁc 6­¤Ä˙ą÷ßáQ”m8|^÷Ěślz#-tŞ€…Ž‚¨4i*Š" Řĺą<öŢQQQ)"XčˆJŠĄ—$„ôžlvwfîëűc’eI‚ďóű}ßń˝ďĄ9ÉÁ‘ě=ť3sĎě}ÎŐÎ `" +ôQbŘrݘd}%˙Bžm•÷ÖѡulÓžAڤZ•8EQŞŤŤżţúëÜÜÜ|°YłfWŤź$ƒ ÖUĄŽă)‹ů“Iň‹bŐuířąăۡożpႢ(qqqf°0..ŽŽj űÁěËX_Á€˘(mŰś5ßnĆĽK—N:uâĉݻw†Ń´iÓ~ýúuhß^ľXŸlć{ŽW `Ô¨ö UtiˇŰǏíľ×.^źřôéÓwÝu—Ăá¨3?ž_ĚŘí5×\ă´8Víúiň–˘Ä'ލe”ąÍ¸–)kz•XˇŃüúśi+´Đѧ,ŞMÂFƒÁgOQZW\‡ZÁ`‚ĆÝŽëąíˇmĹ7oż(“¸_(éuÜ΁// Żayďîƒw´Jܕ“ôÓ)~k=ÝÚĎ݊WFS^U"*1!!ĽĽÎĽG´ď`*ŻŘÇ9ů Ś\ozĂ„‡‡_źxąĆ¸lHkÂ4.5M3Հąř 4Z–˙Př¸°˘˘BQ”€€€ŤĽödggŰlśČČČËL6iĚDâ×[lď´Uz&óu6˛dňůŸhĂA¸‚8ž/úuĄ€pÍS[ÜąÉČNÖńv^G`áPŘ+á€ŕŔę˕÷ěÜrý ×FDK6Š.ü\Œ'p2ŸÇ¤ÄĘ%O‰yoĺ/^}îůŰ{ߢ“ĄŕňúnÚ|DđJÝ*,\řěűóŸŕiM&{¤×J–™Ň´œŇÓÓżřâ‹äää‰'Z­ÖúĚꛐ~•†*Ôrä BŰš?öüáŘut‡*ÔŽ]ťöęŐ+11Ńg;ú§ç4PsŠë°XhöÞâ Ö%kęhĂÂ/üé+ŻäZĽűĚĚĚ˝{÷:tˆuŁCŸ^8$ţ‘Ő|ô „…H]ŠňÇožľ×ë]ştiZZÚ˝÷ŢŰźyóżxž`Ż6ĽpÁĚ8ZýNŤÄÇúJ!l‚™ ".đŇwBąŽŃ'°­ 8Ɂ =éáÍ|0Šśw…d&ŔD¨”ňÎTńK!AáNNüօÂ,đj°Z0a:–bźBß%˝pŚ_ˇŢÖÔl~kÖ¤Śxl(&ôf›R’çÝqą24>†\Di—Đ"‡˙ƒ@›O¸°°ĐăńÄÇÇ_íövš\ŚžcŁqوżF#YţCá[v+**BBBęT ú'Áćääř>o$&&ĂŤy˛Wžj=76 mß˙=ťkŁ;§ŽŔ¨`„€p:5Ă]ííÜłľdH|žŠî÷€‚ŤÍfY "2tVŞ6\„źÄÖ*Zmŕb Oż@ąÍĺO‰ƒoÍ[¸cĆý'K'ŁţĘnš‰ÇNŸŘ˝úwş7xz“–z˙=Ö2\ƒnÂćÎř ˇäć͛7mÚ4räČž}űÖ O6Xyi2ŠýčćÔ'BÇ{Ľűží/tżš[ť6íL#~šţĽ \ƒZ7Ź?YÖ߲Ž|ďcÍó=}üäúC;űżů‡°[óMÔĄ'Tá¨]łcǎ5kÖ 2dĐ AţngŸ—t†E߼)Ď̏ř\ůőŽŢĂŰtH1§şćݒď=E^ć4*°dv¨´ĺRô=äâŮď<} ˝Ee¤_Šř™ó8SA â6Ü|­5ŃÉ^ +č_exí† ->ÂęXęrŕčŐnéÜş(sáŤôŃVTVĘĄqY€IDATň¸čڋƷuU•ügeÂOg”ó™Œ*q~| †äÚYóÁ"66ÖW@\?˙šŹŹ,((¨ąI#ţdůO„oŐ¨ŞŞbf_śg}˛ĚÍÍBDGG×Ü'T㊔l0 ’ZœQ\č.>‘˛ó=~˘ŢtÝýxüZô †D%e%ű˙Üw]ďëÁç—R—-ȑhrňP ¸LÑjŢ-Њ ÚÇŇf…cAБĄpR ˝îä-ĎŃ˝”ňÚÚqSoš’~šňϏ)Í/^ź¸dɒ[ďŮ!Ľý í—qâ™Uxc”V×~ő$^Ż÷‹/žČĎϟ:uj\\\ƒeá!„Žë;wî\ˇá›ĐbL伞s×G#ŐDɒĺAţřďȲţ…ƒO žˆ„y…˘ŰłŸżáŰŹˇ6ôć›űôéŁŞŞż˘ĐŐ¸_Q”K—.}ţůçŃŃŃ÷Ţ{ŻŠ‘{™/u†EđŠ wÔXÖAš3ůÔą“ŤüaҤIIIIW\ˇÄđ#ؚ/aƒ˘3—„ýöő†‘OĹ?ۙcfŇs˝Ů1ŒœUČ5¸˛  G›něy2śi\§6$@˙:KŻ•CyF9ů ÎRúŁŇ-ŽŽ*k1ŤG˜Âf[7…đĆ^žó=Pˆ.Iôď[_á iv´”_^‹˝çiÉ4 lo˛¨Mä–RĆÄÄ\í&ŻŹŹ$˘úuSh„?KGţĄ09Ă ç(ľy%ć8ł¸¸8::ÚW[ÉÄ b )Yƅ׵gފ{jŸ˛kŚ˝IŸNÂĚ4H” ĽÔ#ǚDĹĆĹĹAⰘţ!ŕŔ˝đą×9i˜^zŰÁíII )°œq#C§ă4‰ÁĄL ~x6ŠKľźż4˘ýŕř6IÁ”………‹/2dH玝=ŇŰYiۑ›öŻ'!Ĺܲ˛˛ňƒ>p8?üpHHČ_0ĽĎޒRnÝşuá…#†˜0eÂ5ń˝p/Š’˝•骨)źiŔăÚ ¤„˘Đú Fu™rǝfĚňŻßč˙áBč’!ßűs ă<1°ď Îőë×oܸ‘ˆš7oţ×U•ćم„„ôéÓçĐĄCŰśmëŇĽËeÉ"°"ƒĆĺĺÄ¸ćŇcDĹE;Î5kÖ¤¤¤Ô֓–L ar Žšq˛œ×u ma„‹íI'Ú͋T˛Ëyú×ôŕÓ„D+ ‰ŚYMń^ ˛×ŢŘśIĎçâŐ3d ž÷F፝ih(­Tׄ˙.˛şş"ŰĆÁ`誠Ň@Z 4EŒ  ż‡žśU?ŸëŐKL˝ă{ă‡ä°"1Ěć|Y,–âââŔŔ@ĽÖËí_ÉęŤ!1 uĐH–¸ Éň ŸAýhĽoƒââb" 5\™¤€D´ [Ÿ§‡^•OZě꿏ožČőĄţA˘‘Gƒ şB¸”—™“ŸÝŠs;z9rśŕéVä)F/ƒCŰb„„Wş}ÇďĄ-Ű4ŔŁ4썢ßlč`E{ɤ`Ă}üéFęóƆ!íě-ťÝĐÓ´ŢpeŢŚOyŕ‹/žčÝťwďŢ˝ ĂP…ŞĂč@mLžěŔÍ:R{-B-**zď˝÷ZľjuĎ=÷˜ĚQgőwWšy.'Ož|÷Ýw322Ì3yň䤤$†! ¨ŒĹüŃ˝âRTÔd°\ՏŠZ‹Đ,ç`ÐŞJëÖëŐĽ4jEńxx<ž€€C WRŠŚi‘‘‘`ˆătčU<933‘~{‡_—30Č‘F,ňpäsşţö•˘¨ ĽeTZŽŇj”VŠ˘ź%Tn°ć Ľ;R˛ŮŚC´ˇ{u÷Îťşté.%Ah‚‚BËą4œž|„żX.~úľŕŐó[ŇúÜŇ/24˘ŽÖwŔDôÝwß9ÎŰożÝŸ˙@¤€4¨M;=q˘ő?M.Ů}°ëş›Ż:xČ˙Xy)„زeËG}őř㏛M˜Íc0ýuV Č6ÎýĘżŒ÷˛ŮôňĘFZć.Ě_4M+((8wîÜŠS§Nžĺô:žX!„ŰíVUľNH˘đĄąÎňŸßjëńxTUő­›őQ^Qć…gÖ~†wÎáčö5očŠŢ H)ošŘĚ{ێwŠQ< MMžČÎΎˆŒ p8˜™˜.В|”Č­F*ńXRSSœśf͚ąŮű‰UT´ĺđG0^9ˆÁç~+J萐›řĄĘ;vΘ1u›3R=Ň;Ö:źŕRáƒxâ­žÔr€Gz­˘áz3ĎłŞŞjŢźy999łgĎnŰś­ŻňŇĆ ڈY͞éƹ梃&5…ßqjš–žž~ôčŃ´´´ÂÂÂĘĘJMÓěv{@@€Íf °XźŃŃšŚ‘ŽgffćUk^ÇăršÜnˇĹb ŒŒŒLNNîÔŠSóćÍÍZŔ‹ÓÂ˘âěHĂG÷ŔâňoÚORĘ   ‡zčäɓŸ~úéÁƒgΜét:˙˘ŞRzŒݔt4ăHbĆ'›Ş=ĚL~vźš—ŃŁGϟ?ǎf"ą bAÄLvÁ‚ ĽŒMŠëÖꡢócŢڊ̣ٙńve{¨˙aQ୘jtčů’@Ű…Žˆ`a ?Č#a<-&úŁLÜ|†ťĺâłÖčÄÄ$j”, bƒÂ2ĎdÄví,¸‰¸‰÷œ§w7ŕ†×Ń.ĂČnÁĄ!ĺ%ĽĄĄĄ ~)„ŚZŹé‰mL‹mD}4’ĺ?ć’×`Ç_ˆ@7ô Ŕ l\˜‚qÓiÖl B(ƒ  DaQĄEX#Â#Ě´É"œłă°˘KJ~NIŘš‹˝â:jz/aďŘUÁg h,~ŤvŻÎĚýŽ€aˆÉ°:wĺ˙$ˇí†qźCnuő]˝o„_Z 꼿nßžýž{îąX,uMĎÚ*›°ŚeŚWœóÎÔţŐjI’7iŹe¸FľýIjëI| ˘§OŸţđĂŰľk÷Ćo˜•—ţ4YkŽLdsľS{ýšĹúÇ/¨Ÿ˜žŮœœœ˝{÷;v,++KJ™Đ˘E‹ž={šÄ   šƒÔuśXčř ­4sîƒÓ}nX)eEEE~~~vvvvvö‰'6mÚ$„HHHčĐĄCŻ^˝bccŮ`ŒO6r—ŚJëf0$áJ'4 ŁmŰśoźńĆgŸ}öÔSO͞=ťM›6WđĽonu†M1–OžKçßlůŠçLJŇb““üóc}WAJiąXƎűŐW_%%%]NŽ%"°‡ôîÓcé÷Ç'´Ÿ:O~ŃYx]ř°%@to*  ŽuŰĆVýśvc˔k‚Ő/Ŕ śéŒ'΃%ŔŇcˆł-ÍÂuĚ‘}éRQaaTT4¤DŻdʘ‰Rýű{÷.2>lYRPT_ ŔžľŮlfr¸ď•F4důO„Śif–ŕŐ6(//w:œPĎM‡`P(‚ęG…* ĘĎË7Ľb% ރBĂۂ1$C2čtĆŃŚ-›’5!!˝(ď ‹‚ŽYGľ˜¤Úg蘨RłdXTOăůżŕÖ˘[€çȚ˝‘nč¨(—ťDÁĎBx<žďż˙ž˙ţąąąaz}6˙ÓţĂ j50Á›8Nů—"•šzž\O@Q”üqíÚľ“&MşéŚ›|=/ŻR°ČR ÄtÇăĎj>TüüĄ'śnۜ›“›˜˜Řž}űQŁF%''›şt—íÝZ˝YYۢK҄ŹQ?'˘ŕŕŕV­Z™z<ž´´´#GŽ8p`͚5ą117 ŘŁs‡ĐďŇüű$ŔR’PüŹŽĘŤŞŞ3gÎÜśmۛož9räČ[o˝ŐtęÖĚ3Ő*¤‹ Ǎo;´Ÿtu`ąXLg€Őjýßţ‚6â˙"Éňßó˛×ë5™˛ţ´™ÚS]]#!ÄdĚ|3fbŽ’ˆĘĘĘt]ŒŒD­ťŹîYÜTfăP…Dn^ŽĄËřř†! ŞDß KđŘéqoW…Ž‹…˜SŠW<ŇI8ńţjâ#莍űšÇGśnѢ…”f红qD´ző길¸^˝z™>Ň™˛˛˛ňĂ?ěÓ§Ď z¤wŹe¸"ŸŢşÝBŞšĽŽëďż˙~VVÖ /ꐘ˜čo~Á/Q~䪒 BěŃ6ĺŃŐŹ×j_ߞC{ÜŘďƈˆ˙-뤍Ôđ™ŻP $_y‚žBI›Í–’’’’’BDEEEŰű}őÖ yo/šĽÚ})ŮŢ`őŠ\™džhĆM7ÝÔ˛eË÷Ţ{ďÜšsłgĎ6k1…fŚ+Ő*¤‹ąÍLlĽ§ęĂ?|ňÉ'ëóĽyj˝zőĘČČX˝zőřń㯊úmÓ˘E‹ă™ůűŽľîwá>0…Rţ€8ƒy­ą¨#~*2˛c‡›Nž,ÍĎľXŘźą$0ö~Č€>!ŽuËSwĺ_ĘmSŃŢ`(ľÎX 222''§ŹŹ,$$„‰ŮfĄj ŸoÁü{@rHHHnnŽONĄÎWĂ||ôz˝&Y6zbQ >˙,ř—WÖŠ*ó-˛šŚEDD€A –”ň †!˘=ş0‰ŹŹŹ€€€đđpf&GŁCŽĺňŃŠÔôř˜Ä°ˆP0‘)J#˜î˘5ą<´rNŚĺľ*ÄV¨sžA^7Ž:čËéŘ´| EţY×Üô=ÓäpŘu¤TA6Šb׎]gϞđ_1řł mÄqń× v3ŽňŕŒ-¸Đź}›[ĂÂB Y]FŻҡ3s9.((Řž}ű¨QŁLљ:q&ľ,Z´(,,lüřńž,YŸŢúJź1OŻÔą KAIÁssŸ‹3gŽ˘(fäWśş4?Ů0 Š˘œ9sć_˙ú×ŤŻžÚźiň[ ßzťç§é|öýA’$őŮń˙ÝŪϝҐAÝBžËé>˙éOŢ|żYrłW_}ő_˙úי3gĚĂ6~@ć/žS›3gNllěÜçć–ä ›"żK3•jşnŠ>6—ăǏ [´h‘˙Źú>ÜÜĆjľŽ5jűöíőSĆĚm‚[ö~Қ€M 98Ř+ň0ű,ÝËׇ3Ŕ­›7°9 ĆŻeĘ0üŇ Ą*$’š'šňĘKÚčt°Ívcu\Ň_ŃŃŃ^Ż—Ěˡ` &ő˝fB‚‚‚Ě´ŘaŚkšö˙ó/]#ţh´,˙)đ/)SUŐL­Ä•ĎDäőzËĘĘ""".›k ćhů!^ëƒc(!7?W×t_Ű#SŠŕ'L[ĂS%é‡yůőóü¸ő‡”EâłôŮúě>?€…â+IŢ䳪VGZť8Çd¨hLw>Ž’UP~ăŇXĘ,F)¨((´<"î(„,Ǜ´sĐ †žŹÚşzőęf͚uëÖíjĄJEQ6nÜxöěŮŮłgű7OöՓtmÚ‰,/6- ŰářĽ…¨0UU]ŐŽ‚Ş˘¸ *ö`Ĺ%*†G—!€Őj-))aCa_>ŢDŸÝ‡ GmłrRĽŹŹ,  Aýó*†á [6—đĄŃ˛üÁ\ ĚŽÂľ/ÍřO­1PUUeąX.S)ȀŢń}Ń˙KĚPXTĺ÷Š   ßę&”pCŔv‚‡á<€РԒâňĚĚL§Ĺ Ŕ+ă˝ďpňžč„=X„vĚLŞ×%~Íă).ÚHwfmDÍ朚šZXX8`Ŕ\%KVQ”óçĎoÝşőŢ{ď5#s~›ŐԓxĽwŹeř¢Ç艹ŠÝí˜2ńŻÔü×wřG}é?›7ož6mZIIÉG}4iҤ€€Ă0j;B?ź7”9*Tó­ţ“ď+ž4—ăÔžŽ†a˜C5ú>\÷juŞ‚˘bŹ?‚™Ă`‚)Ă4iҤ>ú¨¤¤dÚ´i›7o6Ÿu|'îobÖX^câ”É÷şűšďÝ]˛0Vܙ,=Y„™CĺqTUuʔ)[ˇn=ţźi›úÇq}s5`Ŕ€ÂÂÂÔÔT›úGO%Ă$›’]MŘ˙-H´ŕPO,ËĂŹ3„ƒôTą­BąüXD‹s >áüK'„¨0 FR‹fŃOaU6 P÷H~š9X $ˆŠŠ**,€ů›Ńż=â ¨r0ďíŞŞ*ßEń}5Ě_ŹVŤŽëć9ţo_ń  >˙,\öÁš)‡„O¤­ŞŞĘçƒe°€8‹“U(Ÿ§&Ń͙] Ťů8AHƀpŽęLc”œć.­źyR˛ÁĆĺr9°ÂśB>}Œž9{ţŒ×^ăć˛Âö}ř-6ÂâDę0‚1Ş’_/˝8śiRË 1_çŇ@§RĄł l8Ô]÷€ZŁĚÍoeŤŠ˝„kÚƌd(D’ÍŰ1đÉKA? &B¨‚&6L>‰ Ă#čţXˇ€–Ÿ[q!7hS*/{Č<>˙Ż@```EEEXXꁙ}žŘú^ńGŁöŹ˘(VŤŐ´%‰Hŕ˛,ŞéƒŒŒŹYÍ ’ŕEüáD<đ#­ČËĎŹŽpFԑ“e+œĽtáz<ë>Ôźm؍-CŽ‹A×8ş&×Äâšî-ÄŔ2ýRÁ!kP‡b ĐŰâöŮôn-SFéěUańŇć‹%ď‡z—džsđ0ž §7T4őˇu6mÚ$Ľ2dˆďńß?ŹhnłhѢˆˆˆŰnťÍ\ýýˇńeÉş\Ž—_üOŤn)Ý<ŤĽ7rœxŚ#š×č­ărjŒi§ŚŚŚÎ™3§yóć/żürRR’/ré›a††w12…!!jTńŽ ^ş\ŽŹŹŹcǎHôhÆA‚LRňU‰$&&Ţ|óÍGŽůěłĎZˇnsYŐČ,PŹ­ĄńÇŒŻ“šŽ(-oĺŤúőëwE×?#›™›5k–žž~đŕÁîÝť×É]ňmsúôéüü|łčĽŽ7€JäŽH6~|- ĺZ4iM§0+&Ä`ÖdTan,*÷ĐÎlwäý—dKœ“Mĺt“)˘Ygńq}úżýöŰRJS‘ކ˝tž˘JäÎdxÎÝťž;wnÆ 7Üpƒ|ˇÍtčĐaăƍ†a$''_-ë5>>~ăƍÉÉÉÁÁÁ—Ez/߂ŇUzbHć^ôb2Ą*&Ä`ú)ň†#`ĽV–Ĺ_éśę¨¨čšţŁP‰fá/‚Zx‡íĂœ'‚ ']`m&˛ ŒmB€BÂ>ăkŰ#ĂŃ­ůÉ5˜PĹĺrI)}—uN€×ëľŮlţŻ4˘—C)řĂ´r4M+))‘Rl°ä |Ž)cşź›%l\ĚźXTZÄ,Ľ”,ŮĹU?󊛹ŤSâ ~ÖSéi]ôofÉ^é–,™Ůěă¨K™úó؉TfּאšÁ5?şÔ öJ—í|+'/˙O~ĺ›('_ŕfÖXg6X˛ÎgޝYyż13KÖäĹjŢĆĚRŚ83ů嗛6mbfĂ0|çeţbţ^XX8gΜsçÎ]móšß~űľ×^cf󣽏ąäUú:čWęëX˛ÇđšżüňË÷Ţ{ďŋ™ŮŒfůŚ˙Ž˝†—uţ—çî{ްÁG}ă7&Nœ8zôč™3g.\¸pűöíiiiŚLŒ”Rz˝’™gÍÖ&ßn^ósŞŞŞŇŇŇśoßžpá™3gŽ=zâĉoźńĆńŁŠł1â?rúŮđjţ{÷żĐfdš™/^źxď˝÷žüňË5QÎĚry:c-/O7ZJi’™_{íľˇß~ۜ7˙51çíÜšssćĚ),,Źłk˙m6mÚôĺ—_ú6¸bţ ™ó˙V}“ 3$3Kƒ5É̜^ÉmNKÜĆ/=ŕ]Y}tć/6Ř#Ľ.™™:ÍŘ,ąEśÜŗŒăçNڐ™Ľ[—Ěź8‡ą‰ŁśËBdćÇŞĂŚVć3łyﰔć!šSZZš™™ůłWRR˘iZ ݈8Éňó;ďršĘË˙ِK.ăânœhg,“Ÿ2s•V•‘žĄy5fž(ĎżĂ˙îËÍ"R8%Úr\ÎůKS˛Gßǡ›ě(Ů`fÉ5ˍ§ZŰąĺ@ešŤfw~‹Œš_:WňŢŠ[™‹0^ ĺ!™2Ÿk˜’%k,š„Ÿ9Uz×Í&…™ę?/ż´k×.Ó^÷gŽšíÝnY>4Ë=áVYw{üwáŰ¸ŹŹl׎]/˙ç?ˇÜqűż§NÓÂ&ďř“™ĽŽ˙‡ÄĚnˇű‰'žxň‰'ÝUŐĚl|—ĆX+—§3×0%ű=K=öŘcŤWŻţëŮ[˛dÉ… š!N5wťÝď˝÷ŢŮłg}Ű\ą4ÜĚĽO]Ă˟‘ĚŹk’™5ÉŹsËĐą<âNÉźqÉÚě?3jn°§›[¸Őn™QÍĚe%eŰśmsWťŮźŃblâä]˛Â+™ůö˛GźœVZČKŻ!uÉľWšćąĆëMOO÷z˝|•çžňňr—ËōdŮ?4şa˙ţ`?ĹWŤŐj†j$IZŁÍ6ŹňBëOCŹŽj­:5l˙ëüԋx|=mÉEÍ5“]TRTZň@ŕŹ÷ŻvD˜Ay!h) ŔLçč—T׏yęAÄ\ĘĄCš8œC‡rp(‡rřP., ăťôyz“ß¨śXđ5_KˇjĐ,P™¤ZŽqo ˙+Äх٠(L HbÔřú~ú駔””–-[úG"ŮĎ›ššş{÷îŠS§š?Ô U*ŠrňäÉŻżţúЧž ťœäWOŇŢHg™ŰŚ*ö‡Ç–ŞśWţóŠ™Oű=/(ŠRR\˛ŕÓOÖžˇŽ¤GVó'Žě;¸_bB˘YČanćƒé9%EĄ  w™ĺŽ;˜jwa~9͡Říö„„„ëű]?ěÎŃíV§gçˆţ•—.—ëłĎ>۸qcJť6Ż˝ńÖá–CßRž‚đ°HB(f…ę-ťÜЕň°o_RJ…2‡îĘáˇgźŢ§é—o8yňä!C†<đŔ‡Ă_ęÝż<ÔŹôÍůĎs<řUĺś_ő ź3Yz a˝˘—ˆÉŹIIIwŢyçźyó^ýőŔŔ@n(ëŐét:t͚5mŰś5e}ü'ŮÜžgϞ‡ĘČČhÖŹ™/‹aĆŻށăŒMsĺo?Yűß)Y2ŤŘJ5ş)krZ\ŹŢř0ľü 4hcCEKśuA‚:ł˘˘Ł.šňăŐ0˙"CPť`<Ű –ü[xđ÷ÎHÎ҂2l ţ(AŻ`źŮ~ ş‡Ăĺr (ۙ|_ç.jÄ?u–˙čşî[˛ÚňJ ŽŇţƒźgŤőˇ–“ŐŒ žB“Vă÷°wO F¨ ĹÔŇ' p ÷Ďށrä0ŤCşĘÉ! † ä„Ĺ Ő ‹ůŔރÔxéř“N˘Ůz˝'VQ­H ƒI€ń˝,3žTNšP­’"ˆ$ óeklǎ;v đTŔ/Ŕ† űôéĂ~‰<đ‹Ę˜7o^Űśm `Tpő$–*ëÜÓű§š¸tȑřŮÂŞ!$˜ÍzŸ™îKˆÝşuëřńăϞ=űŃG˝űö{‰íânQƸ˝úďRĄ˜•5—…xţűëE~ď Eš|ťÔÝ4Şwťřfoż÷î‡~xöěŮ;ďźsëÖ­>ážËÓâcAl!ń݅ßv<ř?•śŔSĺÖÚrÉÚ}ůřrŔ€mŰś7o^Šó7âűôé¸aÆ:—ŔgjtěŘqǎžÓa!A¤BVxŤ?çźۊ^î ˜~…Úłö0š;xŤ užÖOyÓ? Ćóm|ÝÖśĂ#Ą1ŔˆIˆyŚď§­œXבVx%žÜ÷FäėK­ĎeđË'ȐülSßU6wŕńxęÓ¤ EQˆH×ő˙íom#ţĄ‘,˙)ĐuÝ'áć˙şÁŢĹřć˛Œvhţ*˝ś…ż‡oz /:¨\JqĄ nǔ0ÄaĐ@<Ë €š×\)íGł‰qđA:ü =ˆCÓřŕƒtčYă쯎;.Pˇ 5a‡—¤ďś“€Bá^ƒ'É~ŻŇÁD^:“ˇžERˆ$ł"3++//ŻWŻ^hČ'&„(,,Üľk×w܁ZCĄ~­Čƍóňňxŕř•<Â/“Öü˙ĹšĎM”ůĂŢůÔűđ8ńĚ÷r˝…U FM†Ż_ĺeii飏>úţűďϚ5ëă?NNN6 Ă+˝BąR&/Ć|H ŔOôá˙)˜  ĐüÍ4ž›ôj†a´hŃâă?ž5kÖűďż˙裏–––*ŠbnkXĐŻ—ˆ2ţ˜ńi䐅S›as_˜[ç”Í]ůĘTxŕźźź7šęŘne 4ÂíIŘ~ ‚0Cď:˜ň°ç*SEQɲţh$Ëż9|KĄŽë>=X3€dvÎjCˇňž0rŢŔCˇăětĚi‚8/ź:t‘ƒŹg聇yâ˘ČˇË‚ŠŘ8Šî:°KŚéT”SŃ´ě–Œˆâ”H´Fűh´âvQÔŽ wxVůő7ľřˆž¸; sĄJősţ›ľ˙ŸŕtWoŕëÔű&,ĂMg¨ź+~¸ŤÖňI:€ÝżďhÓŽ]PP! SşŹÎ nٲĽuëÖM›6mP'Ö$śüqʔ)fŰËúŽ\óĎW^yEJţĎż_ŇaŒľ _EoŽĆÓßËő¨ ˙ĘËýű÷Oœ81<<|ĺʕ4YJ(B*“Äô3œzRß+ |…‚™Ž¤7¤ŕS'?Ó<8(ÄGÎŕd&=0ˆĄ*Jm#‘Ž\š2<<|âĉű÷ď7ýŽ5,¨3jŤDČŹŃůß˙y^2żňĘ+ţĘ>¨×¨rʔ)?ţřŁIŔ\O^@JŮ´iÓÖ­[oٲőżˆH2((¨]›öżďůĂźůŞWšrŽ­žÔY×Î"jšˆ?k|CĄ.îŠOčŠg †Y÷KÍěĆţ.ĄëźĘ#éź şŘ•™{żpďY 3Îâă @É6lî‚$;źnĄ1}řŢ ŹČ$ž0p‘†*yšt¤VĘGaľZ].WďËĺ’PUő‘eŁ'śh$Ë|K|ńt :ëͨŐ[ĽŸ†Ę"áa7VXU(bđ(^¸ŽbŕžŔ?úŮZžÂO¸3Ž`ď V €XÓľňŠŇŢᓂÓœƒ!ačĐ‹Ç裡‹?]vćŃX5(™‡ HBCÍvŹB”“śZO›!Ű@X FňfÜ~czrÔ4ěhIËć¸~ÍĐóoču­y2ş)kVť„ !JJJŽ;fŞßůNWz—,Y’’’ŇącGÓWéď¤ő™žK—.ÍČČ0‰DHŇH%†­ÂŁńô*šŢŐ˚I˝‹-zúé§gϞ=wî\ł;´Yyiöi1`Ä+­zR߯ä<0$Őp¤éš5ZEQTEQjËäU@QsČ´Őj¸“™$3€›p]4ƒ.AĀšGł|~îÜšłgĎ~úé§-ZdŇ{ ˛Ž­§äąÍH“RÔ<ddd,]ş´žáhΆa;vLIIY˛d r´š0`ŔącÇJJJ|zł5?:›3˝očá9W•űxqN3˝pš´őDüIKĚoűÍ&P3důj]–Š—łFç˘ŇP›9Oţâ,üüÍN+ř-şrvU0rŠďŇxěI,¸@P´ŚÖ#ď ­Š MÂŞŕh&Žda]–^ ŒĘŘ_çAˇƒ(ô‚Čźq|§`ˇŰÝn7üî%˜Y]WóÓ6âˆĆlŘż?ĚĺĎëő:Ž+ęŻA VHŃY‹ÎKˆw$[‚:MÇžŔű˝pƒÂ )8üBě]ޙ!Ą!ăĽ řsM?€Ýgůä ŒÉĘBm˝˝'ń‘‹ź§FYÉɀśŔň>\J›üţ@żŘáA#„rżč¨n‹;t ”/éüžŠ‹ó-ý„E%@‚™Ç4›öqäřÄu䇮ň˜ł<ÖćL¤` f$ÖŻ_oąXú÷ď_GÓľ6ÄącÇÖ­[÷裏֙7(ŠrřđáO?ýô•W^‰ˆˆ0_L:ŒÔŚ7ƒ§;ČŚE ~ń…Í"ČîÝťűG‚/ű~ÁBˆpúą|u"Ś:(ÄDÂÜŹ¤¤äÜšs{÷îÝłk׌cŠöŸ~.+ČţÚęĚtŸ LE]‘N( Č㪓Ô`›Š€ŚÖši%Űٖ—í Ňm]sĎš1ΙÔön´ F€ !Ę+*:4eĘßÇú›•& ,Y˛dĈf—Jż˘9!f'ЎŢzkęÔŠM›6˝źMm?ŻŃʰšŁ<ó˝!Ž=şólEú×_dnYÇŁ @@Hđő4"”Ăż7žşÇňdaqážÝűwďŢ}âĉĘĘJŤŐꎊěçŐTŠO;ŸYP\XZRVVćőzŰľkwíľ×^ŰŁgxt”ąôwDń kH˛ŠoG~ÇoÚŁf.ë×_=ëÁ‡f˝üŘűíf‹;Ëď:ŠąÍüŤD̸fÓŚM§NúÖ[o͟??$$¤~ÖŤaaaa#FŒX˛dÉkŻ˝VŁ{ei €~ů嗃 bɤ°,Ő*żĐ+ćIý’ ťÓ!W]ü˝zëý“Ś Ö ›ZG,™u8T‡:ĄŹtA°óAáł+É݅Ę׊ň[VÎG„‚˛Ëű„•Š[ˇY"ȓĆňǎ"ŃZTPTĹU´dĐ ‰ć:‚€ ’‹řůŽÄ`]Ödfמ¨)hgŠőÔůF˜gŞ(ŠŚiŃĚŽ˙(4Ţg\-`YgłjOľŞŞŞ°œćÔűp§„Ű,Á=ĐW€ŞŤÝB G€Ŕí˜ř6|Œ7śădbVcéݘYR\ŢŞgĆâ˝$yáľÂú0°„7œ¤ĺĺšš˘8m`áL4:ŔP`ف‚3ůŤDˆš>†dţÇŹ0ˆpęü™"Ý3>Š×Hˆ7¨űWtęcœř7ŢÎMá(nç†_ăc㒓“ui($bÔ¸ÍŕâŚM›„Æ ŤSČ~Z˛ožůf—.]†ęof1˜ARźŹąÜ˛ÜQŽF÷źq孋eđqjŽš_IR¨–{ă_U}œń\ĹŻţÖ$ŞIçΝg̘ќmŰččh‹Ĺš‹…ŠKő˛Źů/źM'‹ŞiZ~~ţɓ'÷ěŮóŐW_˝ůƛ˝ôyqEŠăÁĄ †nňš=ýŠËdÁ gĐKürÇ•Ďoˇ/ëcל˝Y3ŐŠ:thjję›ožůĘ+Żp=­Ws† ś}űöM›6™Jź5šŒ÷—bă!ZŕŒÜ‹ń1qŔ8†ŐT*°ú* ?ĆÉž%­‚â$̆ƒuףăGľnŮR(Â+8F÷S˜đ*€űZúńzŹ]b;ŐoĐ HIs_¨ĺÍ›7ßzë­¸z–ě† rrr~řa\™% ˜aaE‚O=šwÔO7ü:9•cِ$“Lɗ3â+fU+—˙˔]gĘ.VtĚůfţŇ+W<űěł ˆ‹‹3“Œ¤”f‚Žë†IąRZ,–¸¸¸<űěł+WŹ\°äŤ.…\q:cĘo‹—ŻZi ŚtňŠXŁĎD–$œËó'lüăm™OžGl!ó0}._Xôá‡ÎÉÉٰaĂ_d˝Ţz뭛7o6Ÿ Ěye†Yűܤ}%‹{ëš˝ ŁŃkE|š=č ‡ˇ^V„hŐşeęńŁ—ď:€~†`Œˆ6AîaĹeoĄrguBĹg.hů Ŕޅă>‡ą5óâô}ęMůk塟&Î3Ý[—Ź ‡Ę„……†ô;L›v­08k:˜LÉĚŞŞ*ŃöО ŽĆŇ<Ź*@†ŠŠvť˝şşşÎ×ÁsŞ˙ˇżťřż‚F˛ü›ĂżvžÁQ^Ż7Đîp™đ$ž˙ ë:p—Ľř@ye™Óé4MžK¸¨ ¤ăü8LÉGîşŇBŹÎ&ö6Sř÷ƒXTŽ}Oâ‹eŘ~_'QtľÇS]PIšçi 3eŮTń‹űÜTw2ű•Tú<¨.—+33łS§NT$C܀Ś?áÖ4šÔ:G_Ű×:ŹŐ'ů÷,QŚ€éÂ5¤đűďż[­ÖŢ˝{×)“@m–lEEŒ%KLџ:š?¨ !^|ţ…ÓĺiŤĆ}ó‰>{ =ő=űדƒý+/ˇmŰ6břˆEK>›uűSăÂGăm ÖýľßLĆRj™IEř2TkÔűtŁmRó  a“|tú’Ďż>bÄśmŰŽ¨Şd0ČW%"Vdˆ;ČOÂÇüđtŮŠ‚ç_|^PM˙ß÷Ej­VëÔŠS—,YbĘŮÔĎzećŢ˝{[­Öß˙€4$tĂŹ‘´˘G*ƒ&ˇ˙ĄO~›‹Í.Do°Ű8˜3ŠĐŠS§ĚĚL—ËUc˜  j9Şr„şĂĘ~”ůɝZCĽÎˆýąűÉvâŰƖeUyŞ<˘™]îč!~É O;[€ćĽ+[Y=ÎpaČuXŰ6ĺrڐ„%2¨çIt݉'Îă‹\Œ9ŽąÇŠP3)Ónˇ{˝^\%$iÎIcoËF˜h$Ëż?|ň. Žęş.YZ­6•(€^ŕß&ăţMřQÂĐŞugPM‹ďčKŹ@8G¨° ÂđůúŰńÁÉńčJďÁ‰A˜đ<Îg˙Ŕ¨OĐó+qÝŠë_2dú|Œ98J i€ÁXŒôŔěŞj<ŞŰ瘜>}ÚétĆĹĹŐ…P!Ě$ &°Şč‡ý­↝2ˇ-ŻJkˇ" EQظyÓĐĄC~öwŔšFâE‹ZślyÝu×Ց)đĎýůěłĎRSSÎűDÚyŒ¸y•xëĘz€kĘX‹ŠŠŚOŸţÜsĎÝwß}żüôËőˇ÷byx]ŐOšŢt•,B13Xk;v5t9Ě+%„P„€E‘YšÚO;•‡†ÜÖwŕOżütß}÷=÷ÜsÓ§O/**2 LÄţU"byg×Ü.•y ç§ŚŚ~öŮgŚ…]'ëŐtĆ^wÝu-[ś\´h‘oBüł^Y2€ĄC‡n޸ EQ l¸7Vç ¨ÎnŁšwʘO­—~<´uč/ˆUXŤqr’JŚŁ€™ăââœNçéÓ§k>\@ŕ](~YÉČîeCˆ$G7X;’Œč`żD`ĄĄĄťZPRÉvŢÖ3047 gŤv*‰\OčZ8‰öíiEŘŮ4Ih<čpđ3ŮölɟśŁÜ>źŽ#ö\§@§}Čp°ZŹŚeßŕWĂ ţßţ7â˙ÉňďsĄźZvŚi‚Š %څ €Ţkqc …~ď]j×6§ Ŕťxá7l@[tíBÝ܃ç˘SŤâ*Đ+“~ ×!8ŚáĎr¤îĽ?Îňţ ęÁ˘ĐÓ§°ďvŁČƒ- žÄé™ÎČČ(Ôiq\ťX;vŹ]ťvđ­ŕ5OE(…Ç łŽéŢ{’v‰1čöŚpŽĂŻ-y雼Çy`Óďv/őé×OŻm7ć+č3ÍĘ'NěÝťwÚ´iž=ÖaJUU÷ěŮóÝwß˝űlHM4PObnš}űöáÇŽ_ż~̘1`h†ŢIéŰRi˝ Ÿ‚ÍVŰ˙¨ŠsřbŤŇ:žşˇ341cĆŹ_ż>00přđáۡoWUŐ0 örý*ƒŔŔŔwß}÷ťďžŰłgšĽ?_úţŸ6mÚŢ˝{Oœ8qٸ4Ő˙LśÓŃŻO?ÝĄo=°.”žR™ÝÜS0ĆP›"?ˇ˘{kó‹Ż;ęĎ%íÚľ;věX͋ÖĄ6CŔr§3 b—Ĺ+ń˙'ƒĄ6…˘€=€ BXXX^^h’lůą=Č¨8#ŞbT2˛ńÄ`ƒ˝ !ĎËÓś|Ł™˝Ş˝…Žş€—ŕËśhjǘTŞE%Śiő/ĎißH–0ŃH–řNhČÝäńxTUUHăĚ<ŒC(łÂ ŕNÜő…g~0…ZŹę‹xä-źh…`ŕßxMaŐKŢîkâ=Íֆ}ݞÇî¤nçŠĂHč…ë[b@7Й6)îšěéӅv塉hŤCŒ X~%-ŤŕŇ-•QuÔgq"ި¨(..NIIŠŘćö‡Š‰ˆˆĐ¤a€Ú j!^Ĥ§¨ÓbœkŽo§DďMœpBDč$}zu&–,Y2lذŘŘXÓŹô߅z,..~饗}ôŃf͚™śŁĘІžƒ§WëŹlQUuŢźy=ôĐÜšsßzë­ŔŔ@èMÄQp7Í\)ż‚ĄŠTóŹđ?\0SľGU KţŔôÁ(D$„ao˝őÖÜšszčĄyó抪ĘVÁË3hÜQ^Ţ ľU"ŚÝŮŹYłG}ôĽ—^*..ށ3ËŘŘŘaƙ%•5ű7Ĺ|u€ˆI’Bˇ7š&…&ÉĘĹyZ$\˛E| śłĂP¤&#""bâc:4 P %%Ľ¸¸¸˘˘˘ć:Ý 8úsŇQ‘ń鎢Ü"ýOŔ6Ký.xTDTIa)a%OpůN[žľ§z(O<~š[ŘqsÁ‰?&UÔźńî“8VĹ*ćĽ\ü%şj]M:›¨Ń.?‹ř"R…R_ÇÇwż™Fů˙ž¤řżF˛üŰ¡lů“eýQł°Ď,Ľď‹C0l6&0ŒÄn{ůűqsGRŻ÷ř/`…m–őÐR[aő–ë}3†nÄŇ'ńĹ\ąLÇúqřőlž‹śLĐÖˇŮţĆŘęu“ąyÖO§ƒqčf@ĚřgşžÖSBcqĺ 듕ÉĚĚt8őËáÍߏ9Ň­[7 jÓtČśÝϝOˆIgľrłölˇŇÎré7⸂`JÎf‹’ŹŹŹ‘#G˘śÂÄß2ńŇK/őęŐkřđáWԓ †/Wňëcđôb˝ϟńÍwKÖŹY3|řpÓ§gN¸igÝŞŒ÷ÂłÁX@ÂĂ I†a˛ž‚é#Ŕ?ěEľNcű`Eř>V×őáÇŻYłćťo–=óîóbMßy”żëHc›ą&qe•ČđáĂ{őęőŇK/Őšô>g,€‘#GfeeĽŚŚ !¤vYĕ]^מŹvĺ­ţŐËpĺó3Ď9§Ű(ĐÂ: ˘Fp§[ˇnGŽiđ21sDD„ĂáČĚĚŹŮť`fŘűŔŃ!/łŇ‘-Ăłşv}8Ů˝Z!ČjVy€ČŘČJ{Yuś§p•žŹ;lĆúXžYçŠčD^ˇŢ]E¸éż—"|‘ƒ€ŕ™qâćHĹKe{Rp֍ ÇáPŕ÷RŘUŔ˘Z̰%Ž’ăă#ËFŸ8Éňď _ÂHƒŮ=&|­ˆ“|Ÿ7E‹k‘xőÍ}3,ioDĚűƒS#Č2ŠFn¡ḓÁ_óź‡1awĺľÉÇ`]‰íżaNBP­łą¨¨XޞŔPťŻŻ {GŒ•0œ°Ĺű‘3<Ë’Đäj–‘‘Ű0•х ŞŤŤ;věˆÚEY€Tş4Č-çćţ’†ńŁĐü>DKgá×4) ŕťU+úÝp}HHˆżéPGK6--íÉ'ŸÄY˛ĚDRźĐF+7ŻćwFVÍXšm˒u͛77­OęŐĄ[• [éÎ/ů#0 ą&*Š(ŠÉJ~ >fbŞaH0oĆ] {t~ôfZÍ›7_˛eEôęňęŰwËU×`\söJ˛™ďżŹ×'Ÿ|2--­žÖŤ Ă0BBBnčwĂĘďV ¤HýŒťčAWVœˇô#`”ˆş q÷e;LItfRAâ˛/ˇcǎŐŐŐ.\¨Ł˘çť|ąąą—ŻŽÎQĐO@\p|éđʊý0R @ţHh§A Ŕ ë™Ŕ¤ů]r:(Ë@ ŠzŸmCmźł/~؇SU‹ťemŽÄę.ü@ |~ <” @ľť+\ŘÓ'\üŕi|_€?Š ŞiƒÚ,VÍí˝ÚMX§:¨˙d4’ĺßA–溌ëşYmžfŔx~Ę?¤pG'ľŤl?Uý˝ł‰~Š5ÉhmŔ`đlš‰„Š1CŸOţîäÍŕhJ8şDç”#íbŮŃŕ°•Ź‚-EÂč†ű-°Ů`|‡ęä"ŃÁ‰Ť,/]şÔźyóĎ@jjjRR’Ăáđ5!!Ôp€UQu]ßsâPçÁ×;Ą>‡ŢçiŇbÜpĽůűxĺV‘u*őHŮŠ‹cďÍ×6áZU łëւ f̘ŕŸ%K ӕŤHBúż÷ßüÄăbSÜ>H°jÖ˝_ö"  LŚéGäŸiň¨Uľ*Š(**Úż˙şőë?üîťœ>}úĂďž]ˇnýţýűÍĚĹjá3ĆÁóüŔ@¸ś#ĄŚÍ”ĘŠâ7菞źkÁu;ç^üŒYsdԆ¨Í[@@ŔŒ3,XP]]í˜ŹmBÉĆăî8[vúŘńCŘH—Žu]ę¨kÇůÁúb‚1 ËÔÝÇt]WŹJ Óĺ6#‡#)))55WąŔš7o~éŇ%ßĹ5íр;HmN˘ƒc¨ƒˇ˘\ߪAłĽ.Ś Ť9rz Ť5ňz(Q+š+eŠŤ1ó#ŢY"0€Kȉ‹}٨ä*„‚,œíÁqş&­8‚Ü.7Řs Nš0ú0Ź*@čŔâМ̺$yůóś,˙ˇżÇřßGŁ(ÁßžÎŔ Žš>C_“KS]݀Ń=ťP/)ĺšsi‰-V;ƒMß,Lk‰ŹˇcôK‹+'ˇŕÇhüyœMDŘFźvŽ7–S–ˇLŚŔä˜Bôé‚)É4€k|‹(çÓÔëKVgP°ÓŢpŔ˛´´Ôĺr%&&˘•šÖRzzşéƒ­“!Ž=Ş’Ňą}Ę0´¸-ÓPô™‚ß*c‹ozާ łłÁRa"ŔRQ”… &$$ :Ôż˛ďóM‘‡>úhŎś­Řź^îŏ­âˇGń0 ş…öőôě•Ţć֎h༂×űގdÓâ‹é™AvťhÚ´cyšŞmżţşůbVEuľËĺjžŘtđÝcĆü”2°ˇnfx5Ra~ Y0Y[%Âăcĺ5ăoyněMˇ}¤FΚ5Ë<0˝Ӛ:tčĎ?˙üÉ'Ÿ<účŁRJĄ–€Á E0aސűÓgĄGt~ fMŃ_[ÔV*łf2BűŽí…*Ž=zÍ5×4hiľnÝúŔž 仔ć/‰‰‰żţúkiiihh(3›Ż*ńPŔ̎ {``PĹ-ůĘĎ*џ!đF”˝f—ž/ˇđ6š7Đy7+Ą`/#HМœ˛í,˙öŻÄńšĎVÉo Ž2 3Ŕhb†ĂáĐĽnh†bWxCgÜq ëł1,}BXŮQŽMľB­ĄÉzşw—ńF#YţÍá3ź|:6ĽM} )Ş" Ě_\î*—¨T€˜Š*‚@ +štţQ^¨ŁI2Ň`ŕ5|ý›4ő\:‹s" f†Ĺ‚rθŔvÓŇî¸ýV,˛"ŔŸčŘč]…+ľQ|.ŻĚĚ̀€S‰­Î1Qeeeiiirr˛ď•:ŰěÚľŤsçÎ5R¨Ba°&F3„@ýŸ)Ę˝ký{Yăť5Ĺ7÷:_‡x‚XciQ”‚‚‚-[śźóÎ;ţ;ŕY˛żýöŰ_|ńý÷ß;bďCW)<OŻ’%†iĐUVĚ-‰ČŞX3R/ćoŃ˙ą,}Cy˙† yup‹äd°XhöĂzYÖŸ~MgE¤?żnăĆM_};xű›áMŽżpžSÓfŒłĆ(ԙ.W‰t‘Ł“bĹß~=jÔ¨Ž;ŢxăţM­ýŻűC=ôřăOš4)**Jj’T…‰ Ďv˝ěMĂ˝íÚ\łŚ×’ŃKGFÄ5aÉl˜ OKMŘťsçÎťvíşćškę\sÉÉÉ[ˇn­ŹŹ4ťFűoĂĚ!!!™™™&Y‚jţ™ŇëDÔÄSÔ:ŰŢ\ÎqpN„‘OZ–´Yé˘'˙TŮńVý‡°Ö@ CA şĹămn˝>Ißlo˙§ˆ<Ďďľ@Ź1¤yă ťÍŔŁ{,°V´ÇTO%Ö˙­‘Ń}/ŇWGńBsô †˝ĆĎŕg6J4nŘż=ęçyúŁŽf,ŐjĹéвáőjĹbQTf( Âާ1éŒúGěHí„ciě/ř#é6 ˆƒ;aŘ Ć쌧' Ňć  )MšÍNüđ먰ŠÄ0h˛ÜuľKKK‹ÇUr222ŹVkLL ę1ĽÂăń\¸pÁ×üŇtŽŞ0¤ őĎŁ×ět˙ŠŽýo €z3֡DzOp¨Ő €Ż—,i•Ň&%%Ĺ×NŮ3K6??Μ9Ď?˙|rr˛Žëţő$fýĽÌ_–””<ńÄďĐ!żwű¤¤I+F>ôĐĚäÍMkUú)ř,„hŃ>>--íĘ7^öWGG4Š@š¤y˙$˜Á:”hŘşu@hË o™×ëö’JpďU ÇxńÝžâ’Áš} CŽ­t¸?K§Ůç¤bd$ŔŘ[Žm%Ź@aĄ°đş<`@g,k‹.Ś<˘E''g݆_žíĽ‘ĆäOÝďCs“Vř)řdž€čý$'ô~ĺů—7Ź[—““sýő×ďÝťWUUiź˘á*‘Űnť­oßžsç΅˙Ąš˛á ŕž‡îţýČćÂ?ň+î×3ă=eďpŕTJČ´F-w¨×XŘ}МͿ …._Ú Ô´iS!Dƒth^ˆřřřłgĎâ*aËf͚™ĺ’őű{ Ö<^=ŔíMžĂ ̊Lö:ƒ9Ě(˝T^ýrŽ•Ů}ÁŤvKÝć č*KYůÓ*[YЎˇÂňB‹ˇ$žĹ‰—ńŘ´†{÷bo ´{çe~2çěÇaF16ŠŃe>rr€˘ň<5Ô­¨ŠÁ:@mpŰ˝Řt+^ĂćV8fŤ8§ĂŔÔ\ńUQUU•ÇăńŽő–­[ˇžÚYŸ@ľ UěME~w gcŸY^UQ`@,B‡Ö72ş˙Äç§ 2ŻźĐfľŮ­vf&ÔŞó˜‹QiiŠ˘(AAAőŘěAXYYi,´JO:Őśm[\Ņťoßž„„„ččh)ĽBB%ᓜHÉżČă_95@$=m9”$żţvdSŠL€" )ßy睙3gš5'fĂçšz(éŁĹÍkĹ#řЧNżźń˟&OžŹi˜taD)I7ĐŔ/ĺ‡0e럝yˆó7`PGЉVtɀŚi“'OţbăŇs­ÇmGńCOŰ š„ĹĚFeł†Y2sćĚwŢyGRâq5.şKžteĆş]OYŞ‹&˝šŮćę`\q%…¤”ŃŃŃ űöíĂU\ŠmŰś=uęŽbśhѢ˛˛˛źźźa: RĽ´´őX‡™­vťĹn-Í+lŤ¸~ťĄç čT­¤ÜÁ¸ÔCWĆ[J­ iM‘ˇŸˇ†ćť!üENEýĄ:ŞŤ+-p¤'™ƒ§ĎcsgúŠ;ĆÇápyčňjËďUˆQŃ6€(ăśTŢT@ž>…$ÓëÉüY"|Ÿ‰;×T‘Ö&Äţ/~…ńdůˇ…Żâ­Á•ŤŚ P×}–ĽiŰIČt>ó˝ô,?Xj+Ú°Ľ˝Á¤LĆ-*úEĄďox§Ľ(öÚŹě°Ś"Ý×}ɟ˜ŸVUUXť3˜ľС şŢˆˆK%Á€¨äź@­}i˘¸¸Řáp˜YţÇlţ™ŸŸoľZ#""ęŸ”Š˝^XXŘŚMÔŁRǏoßž=üÖkTŽQr?|"ľěĎ Ÿ‡ßzăާŢې“‚7cí6¤Cę hĺw+ *ăǏ÷oře֓€ˆt@€ż(mó´,xłIćMĺ0•E÷ˆŮżńĆ"=K…ZWĘG2T…Řx3†ŔE*čŸŃúľÂÇç´üúKÚ,dMŠĚ•MľĆݐúÝĘĺP Ľ×˝š:o+ť•îކđDt†Ň|qܑŞăÇŸ¨™՜˘ËO*íۡ?~üxýťĹœÉ6mÚ^VEżVŤ5?? ŃĄŞŞ‡Ł¸¸¸ţ™B9‹.Ó Ą6Eů<„>ňĽČËU[Xj䁎÷p5Y‚ř“Ü„)9Ä~ü•mƒx8Ćp1J´ăHO,ÎáYgyxľÁÁne´şđQîE„Ěđ2nKĹĆeüŇŃŐ° Šą˘s Q䅧Śmč_ńĎA#Yţýqľ/šé\ňٝćÚ}ǞĄŢŔ {pĘŰLšśO:qkšěÄG‰ˆöŔ#!•jK¸=RÂXJƚȆ.ť°Ť€.¨rW8RÂP!ź(úĘt´ľAT{ÝA!Jpá46™›ů–ע˘˘\Ĺ땗—d&ôűżnnœžžnąX’’’ęŸ¸ŮË7++ŤsçÎţŁ5šą ×­ďÜť›#4 ŒEťÝ4z/FĆqŔ(liCß.ŔńytĘ4ş4ŒÚNÂţY˛ťwď~đ?/ňŮb<5Bč{ʎ@ŐŘ0;B÷PĆQŇ š ]jşż‚Ž3Ŕ_ţŠÄęŰ’!ˆ5†E(+2ämťńUÜ •Ó_zđšÝťw×ŃzR—Ś>rĎćżhňĽނ;t%Žb÷Ťąڝ Č`GhĎN=Öm\WsĹůr3dsB:w•ef~Őż‹’’’,KzzzýŤc)Őč¸^ s㐐˘˘"˙WüR]冝‚ŚŁb>D‚Ć %˜Ł†ü!ëâ[{œĺ—ó꣘9Č<.÷N°ž42ˆÁ¤1l|¨'­ĚĹcg č°łŐđčě1HÔؔ5L98 k:¨6•* iÚú$bx">o‡03€9˛&Éňď ó‰řjٰuF͊‘6踒ˇCŢ šr`Ů/äCxúSě˙ßďÂű‰ˆÖ ŮČYöôAŻőG›'1Ë ý4Ź„T'źŤiŢ*;C łBé|ˈŕ x-l ŽpżëT†+S‹ŠŠęŽ>Ż`~~ž9Ú Ýyá…čččż R)e‹-PĎî4šáčŃŁýoꏚţNlíĐäs ş€I‹NďTď]őF§Ż‡Ť‡‘cŠb A2Ř gM:őľ—^é: űpŁ˙Jő˙üXf &ぼĆ琰(6Ő_ÁÇjX~ů+OëOKI~U"ęňkŒ‘ąşô{éľ˙L:ŐÔ.RB‚uł{')x¸Ż[4äĄ^Îz§$ěq5!Ëš8ŔŇÉΆ€Q“zÚż˙ŁGÂď9 WşRĽ”A‡ŃŃŃ.\¸ÚüGDDř,Ëútá#K˙]›ż„„„•PƁˇC–½A3!1[(č}÷śW—T3@_mGRúś†ĆŮşÂb…ý~Ż+şÜĐ X^I‰6ϢžÚ{yxě,TŘ\"x›×°n‰‘ľL9$ k;ÂFĢÖ1Ţ-?uč!¨mbšěžŘF4ÖYţQ_UŐ&Ô)˛d0ƒĂ5HŮ6ŁgeűŹ;,g‡ą8 M$˜@;ąe‰řdK—Ÿ‹TÁ°Ŕ%¨q y_â'oČë]fEBŹ„´÷pSG˙H‹Î!]M)ŘŞŽ𜦝Cđoß!™‡Z^^núQQ/6 ¨¨¨~…Ľo-ËÍ͍ŽŽFC囎=š`łŮę4)47NOO÷x<Ś“VaΆ3Ř)mӕŽŮ˙^VÚ%˘jbĐľĆíEřĂÔa ZŮac°Ć†âĺ—_îŇĽË=÷ÜŁë:+aŤ$|ő—^҄1Öű⍍ĺ˛nýsÚţÁűö9dŮϟ}Ú÷š.×dššEN`0+’Ř*°"ƒüŤDHŢsĎ=›7o~ůĺ—ß{ď=ŠłbDĚŐzŐwzů{†ű„‘pgČúiŤND¤ž9ű]Ă0óŤD$Xhßž˝ÇăIOOoŢźyŇfł%$$=z´uëÖu܏ćFGGçććúϛ˙…ˆŠŠ2ëCę\8•Öő!88¸Ú˘ÂĂ ŕƒ˛×Ńä'8GÁŇl†`Í0Ź‹˙Ŕ#C `’Ě"ř! DE†05Ă#UŐLyĺ˘÷lzĆ˝ˇĎ"o'îđŞ_eˇŽCĺ0$ k:ÂFŞ_ƒt‰k[šŹˆĆԞF4’ĺßhŠÓçňŠVŕ*ŁJ%íq"bć%ĄI9ĘVăëôůauTFWęr?ŠŹ/1ç ܝ‰˙@Î&‘Ó<Ů5Âo¤€Ť™‹śýńŸ?¨PŮů$~PA¸bUŐ4Íĺr…‡‡×?`ó\ĘĘƚ4i‚z ŽůgAAA=ü_ńGZZšiV6HĽŒ‰‰ ­ĄRbfĄ(y…Ű÷íűôžmĐöUęđ)N=‹?ÇŢIÜbˇoŠD:z◟׭ůy-!„ŐԓHŒĆÓ+%FÓ0Š°Ě˛†]j6Ł|rÄÔöŽëZ÷(-5DŐÖ-[żřäƒ/Ňâƒ:ˇˆZH+Qm•mM’…„ţý쿇ß>âžďëĐŚƒ÷tuĺDzj Æ Š"jbI@ĎÓ˝ž|`qa^ad“H)%‘đM„”2444&&ćŕÁƒ&YÖ§Ă-ZÔ)ˆôŸĚŘŘŘýű÷_mţ›4ibśiđĆ wš\fś?ý˜‰Jv{ŠŐjĘÍÍDÎő0 p;ôt(a°Y­vx~Řk-wcüľHĚ` j ´'jŻí9ˇMšÚdOáĘ­śüřžń_íW4#k~XŕlˇăËR†‚ëÂđC SBŕšž•‹ĽA_ŰŐ4=ńB#Yţń×ň=žQ˙ $Á‚tç´č7~UŽěçEIhrťgc dH&Aˆ‘Îî%} ŸÓƒú*P+‘{ŻUAéĆý.ĐŠtoćľeíšG†ÁJîOŃš5äP¤¸9¤R+ŤË:[{CŐNńŻňʼЊŠ f ECËquuľŰížZv3———›ňë .充…={öôŇ6•Ů/L¸, žo÷ž¨¨Č6íŰę,c(ôyşö9ôřiďŕh^q+Úť~[;nĚííڤ膅˜YőՓHŒ1žřŃjüÉrűÔ =FľýŘžäυ­#{ĘŮłdI֖o–W=8ěÝŮöKß5kżhőç#ň;ęăŠËťÂĚ}U‰ “!6íڌ}ű†ŮZ;:dýč č­D|Ž8nUɢ2ƒun׌]TTäî}ťGŒÁĚD—KěÍséŘąăáÇGUŠÄÇÇ×o!âű366śźźÜ—RTg#""ÜnwuuľĂá¨K‡€)ßSQQŃŔĂł•ČRK–ÖŽ°vEŮ;ŇŞEV‹öţ/¸Łíě1 ( ˜:EÎmËÁ.ŚJ;‡˝MśžŹvąqhwĽă˜K†ś˛§#>/ŸÄŤÉpˆšŒâÚcťěˇŻçr@وO#Éňď˙Ѳ4ÍĘZůí7ŹĂőá [œGń—IÔä_źˇg#Ď ´AňŰxÇźĹOŇęž|{#í[a+Lś?ؚBl6vŢI,™„uî´W@||źË媯ŕsĽęşnÖxÔ'‰ĐĐPUU ľZ­‹Ĺĺr5xůLmEMÓźY…9ŐŚĚşçí€U߀q‰ hľ1Ó~m wˆ….={ŠđşÔEO‘ç3“ Q_7IBM–2ąÎą.)Á–őKŹűË <|ó[Ă*pž ů˛Ęɲ˙#Éň:ĺ&S>Œ–aÓŽŇůIîH :€ ”UŁ1ić˜ë‹G÷XU+:A‘­pKl?âëC´÷ŽŞ™;"7ëŠfc pzZ Ŕ¨ OZT FZwĹ˝đ#KŻ×ë/W[^Ż×l-ŮŕheeĽÍfŤ_ i"//Ďnˇ×ą‡Pťâ›I+őőfÍѢ˘˘ĘĘʔ”\IĽ ȔĐ[šyÝ }úAóĂ<îWÜ"ˆc]Gţî3>d(\™[2aƤw:ž¸Ďßęţ˝ÜxŤr7ƒ~ÄOA2Řʛë‹•Űv໖íŢżmć„ű ŞrMTĚŤĚNqç 4HAĚ65ö˜ ĐwŔVn†)M§ÔĚŹďŘRRRŞŞŞŠŠŠę̕OLÇwĘ –pŘíöŤU€¨ŞjłŮ*++5­4_;ĺúي˘48 @,jMëցŔ ¨XŔ(ű@P…ŒúýLĹí˝ŞV#çZÎ鋲ĹĐĘ@`[[ÄźňŐ'Œyš–v’ÉVR Ä&)ş“¨tw ž+Ŕě3xś)lž|W ą>¤˙3Éňś,ŻČě¨eĘGđáRl<ŒĹą^Џ-P\‡%Œ0:4˜Šä ¨P5h[ńóÜ|ŽĎg÷ˇXxÍĽëĘJĘÁ÷ü‰üÓ(Š6@M.ƒUU…b:~pĹz<Ÿ¨P}¸ÝnSEĄÁşӅ{ľŃ’’’€€Ô‹?™Ł—.]r: mVV–ĹbŠc•šMEQ 3Ó3†  @ ęŽřďps:&LFËWq¸ V žře‡17Œ›>ţfžaĽúÁh<ź…öΏ|ŽŔ^>ڈÇas ĆT—wçQÓÇÝ;˛íČÔϗ´ ŇWŔÉ">Óő˝ĂÚŰ.Ř`čख़酅…53žŁ"mąX˛łłźîN§Ól0Yż>@@@@IIÉŐfŇߕZÔbą˜Ł BUUÇÓŕí(Ő'ž( č~xBżČ˘%JÚď‘EJţsý FĄúO!ŠAˇ!f=â!ŕa(ąlTJónŽT| (•ĚąV鉥š˜}6ýr˝Ň_ێ–e#ĐH–Ŕ€?SÂW1sĂkÖJČë1h*n[€yٸč@›aԃ ‘;Ż EÇÉšë‹ŕś+ąü‚'íƋˇ|…`ĚçS7 6NŇÇŠŞŞâ*$îńx¤Cnˇťžևęęj›Íö˙n´°°088W!€ .„††Z­Ö‰öüůóvť˝Er IŹC†#đIôČ÷|PŐţˆ÷Ňž†ö“+Wŕřheč&|<œŠFd.ľďtüqQćĺ‘LŚhCgŒmęZZ•ÓŤň…˝—Ť”%] ţ—CDÚX'H6UΓ[$;3mľ>áŮlśĐĐPŸčyýc.,,źÚlŘlśż <›ÍV]]}ľQŤŐÚŕ{}TÚ0YdśV5V€u¨‰°÷GٛşÎâ-••ýPŞ2 [Â˙EńЈţö! óáĘ (€ X‚WœˇBpKÄ(8ÜËrńČYXŽŕËF4âŻŃH–güőă°ŻÖи’) @Č+âv °r*A[č'G‚÷ž8Ł?ÚÍĹłpVš!lŚnÄÎ㕯ԏĆ{￈3;ąwŠg ľęŻŞ €^óCZí˙Şu]X­žQÍ÷Ă ŔĽiŠÝ^T¸ź^ŐnGí+őG-4ć+>švÔÚਊ„PRyľ÷ć„„¨ŞęeÖ b pI ¸C•m§Ź˙Ý=°§ˆŽ=ář예{g˝¤ŹşůGŔœ(@a0˝^`ź_z$&+°¸hş×ы”>ŰîSMS!]^hąNR‡Žł×ŤŞjp@@ĄYň¨i—t5 @dhh‰ŠĐĐh€Őę5#‹ ŽZ,žŞ*Đu˙QhťŞzŐuvEŃ\Žúű5G­Bč&ŃÖŐ4,ľąęÚŘ+ĎŕŞő‚ö_°ĐĽ Ühé€&ߊ¸{j2Ř@mKrl—Ő_Ŕ˝$ŔşZ+ˆH ‰vꉥľ|Y+Óó×ůŽ–e#ła˙ć +˝sţđšaÍ8ĺRl8ŒŻĽAˇ@5dMúOm“Kź€Sq`:~ÓóŁóKĄ€“ĐÇŕޑh Ů ×9ošQË!t^i' –Á5ňŻĄŠ d6;HÓĹW^ĄëT0ůZ?Ô.‰˘´4BÓ¨5˘ŹWŒrIqxí¨đe ‹ŠÂ˝sżÂoż‚€^Pćőšűő5gMËË óxePxölœiavbß'ďŢőGbRLGüFĚ;˘Ç6œ{ƒĺ áús8P˘dN™>¸ Ž“ëë@K[mw†ÔĽ˘Ĺ'őŘšűXŸ7˛MŞÖ–Á˛”RDlěقBŹŞěó]3ł”<ĄaůşWŽBJް°BÝŔ űŇŠ|ŁááEfßUő5?Y /1o§:ŁĚ´ˆˆ2óĹ+GMCOˆ(7]ĺ ű’|ý°œA쪪>0Ă1E3¸nŰäLîPärŘż8‘Ô˝4$ë 0Ŕ:“ €ŕU"pi<C‰ËË>~!„4$h 6ę‰.űŔŔ­pGëĺ>ŻÍF4’ĺ?fٍxďGl?‰eQŐa¨PęoŚ@݆u˙ĆCĹ((@•˘Ůqnž@ÓŽĹMŚ,¸]B X¸Ůš°c÷áŃ×čŤ7Ѥb É<ô;kŐ.‚fą|­Ĺ)„8ߌŃ˘ĺF@Ł+GIXÓ;ęşą đŠ:ŁdŽuíŚuÔS/Őýd;p°Woýšn€§fńŤ•B8€}ýúi˝{î+ß+…vŕíw˝¨&sżr´o߲Žžjཊř톛J;w}¨$˛ÂĚíz ý^dˇ´چ^š|Ż)ËĹĽuq­K,}˜w(X'Č+át<}ęXHn.e —Ë/Ŕ b†Ăńȁ?CΞÁŮÓuF3ŽťűÍjľ =MTW×}ŻÝ>nçN‹ŐŠÇšoŸją`˙>áv×ýd›mČáĂUĹoŰČăŠ;jľŢpü¸ŞŞX÷KQĂbí}挢ŞHN^Ż˙(XRP°sËFŮw€Çf *aS\ęÝé—Gí ˝şÇt€T°€¨éžiťhźĺ(üF ĺAĚf(MŽŕ˨‘`ĂÉ^čú'4ĆüÖž#hÄŐĐH–řŸazP;Ą›—8˝%Eߐ3|dőÄë“űK–č¤ Şiă”-!߅c!îÄďŔ5ë0€Ó0ěyP^eVşůA…Zj׼”9pé0ę„ ľĚa†q ŐzoŐ7ĘX˝Ň0řŞuşb”‰­°V˛ŽăÜ]QşŔ`lUA¤ë"nźţëŤ9ę ş..Áă!54ęU, ŽÚaw‡*şjˆťš˝6.bƒŒĚÂ`-+[ϲąŔi‡üÎÉ^ׅNZ\ŠŞ¨pIns؃ŞDI¤zýH ˜­6k`ěŇŕ´Ż-`f›ÍPj¨Áé…uFÁląZíĽ†Şj Œ‚-ŤľXSU–é…^?JŤšFŞj-ň*Š!3Š4ŻőFŐB˘č†­PׯźF€Ş(J[aˆ˘şŁLgYZY/Cܜâ+ţ€d(Něp!Äl-o;ÍfŕŰ3 €T°Nîm¨XČśuÍe5šŐI\ ĎÜ\ĂҍhÄ˙÷h$Ë4€ůxÔŃăýݰţ›HBF ÉrlźŰ?KďßP2,OĎ ŮPHU 0¤ݤ ťjߍlű K’PžœŢ;•šçvČEr¨Űó•ÍŠ)~K™”R(ęîŁçĘ ‹†Ü9^˛îŻÓfHŠ(ęŻűO”ä獚ú@˝QCQ,?ďjđ7v|x–˘ëŞŸ+Ր’ĺ•{Śôďׯý}÷68úɳϾHLl˙ŕ´úŁBQž~íőŚqq)w߼†ęç,5GW~4/1ŚIŤ1ŁUĂPüFM՟żZ™<üĽÎ(ł"ÄÖUß7 oÚ˙&nht×ĆM‘ÁÁ ×ö†[rfŠ“°đži^Kľ-,!ŔЀݎš7z?„ëÉ"egú*HŔČGŐ2T~ĎQH D4Ȃ¨•°uë@ýz]aČň Ë>LŒ1ݰŒÚˆ˙Ž‡ż9|‘˜żÉhĐ?ŔÓ0Ź+îÉBÉ”ŠPüS„= ąŸ`YŠŞ­Žj¸R$ I*TšÄwĎ´œt2˛ř4ŹËńřEdďŔŻ&ÝÖ„Ë €t¤CÔü CJ €:Łf&‡„–(ֆF /Q- şň“!(á‘ĽŞ €Şż_52ŞÔb`4ôÉÖČ&Ľ[ű%@dËV9š …b€t:„äŕÚ~}.će.,{řˆ´Rť‡‡wV&¨T˝S$Ů5ŻĐSPvLxşčwS†Çó¸wľŔ™ĆěUĺ‡.¤_mOŠý}ĚĐ÷ė‰ˆ–⊜D V JČ>ŘýrD.ŐV‚(ş€ó+đĹ,9‹Š/nUŮ7áö/ńq_ô‡_ƌŹIá1Ÿűk“;v‹jÔŚá˙(‡Ĺ˘{ÜőGÍC °Zu÷ŐGmVoľ €Z3/ußkf‡Ö55ŢÂĂJ Xzo“ˆˆŞŠr]×-ŞĘĚĚ"‹"2=ŞíńQóűţćLqşô““-?î2nËöâ}Ćú÷躁Č)ŕ–nôÂý‡v×Hýë?ő69żÚ˝ŔhŮ>Mĺî;lHA Ň5˝ÜĺŠlŞĘţJ=B(,) Š@uFIŔĚţu\í˝Ő^ÍĐŔ(„ŕÖt3sJŁݰ85ű˝Âý+x ią;j>™|\fÎĽá5ŘŚÖžfŢ~ 6ó]íý­ÍáţÜů¨^<ŐŽË﹡BŔÝť•™š=ˆÁśÎ”ŮF&˘¨Ý9ł)CL7ŽŮ‰1xż4 ĽŚŠČŐ:Ůý7_ĽFüĐhY6¨ľ|9ƒťŕî\”Úa5 ýś!›n[  +tčżcă4Ü>_ōǐI@Œ*äĐ$ýŸ=„§wŕ×KČT úŠÚt]÷%@Čü1˙´ŮlŚšOĘÜÔnˇűëżÔu8ţ5|uGí5Y^^^żćŸM›6---5őƒęśhŃÂ]]}>- €!Y€TÁů^ĎŽWÇŹ¨˜u*˘}l`ďŸúsXŕädÇ7ż#gńĘĐlkh"őťF ;ŮcĽ×ĂkS0bˇ÷Ű|Ű]ݝţ5óÚgŰäđYŤ+›<î~i˝7Ż ŞB‚ؐŇŇÎWWW›ÝĘČ„§´´´YłfőGMďuyyydddÍTřšđxŰYIÎŒkqfӏ+žýdĺŸtףŢoŢŁ[;Z?üˆxˆ,B…Cf‰˛ˇĽrs´XÚŮ;ń VW~˛âÓĎěnąăy¤żŹ<;‚żŢĽ%Ü˝;Vc×`žü˝łâĆBk 0…#wcú÷ř–!U¨×Ľ” .?VŤŐ0ŒŤ-OچÎŐF=Žë Ž6iŇÄív—••ŐyýŻĺRÍшˆˆŔŔŔS§NÁŻ˙%ƒaH0ú–A[vüś$mňܸQ7[+gGÚgľ´ŇłôŰyÓŢ<0ńE,Ÿ8ézűň’˜G¤ĘJP‚†1ƒĘž•˘ƒVöĄ iűgl›ˇtAŒ3ذ!`ö śó/+[Ÿ€Áú oxSžÇ7‡߲}Ш‘0}łćAřŰŠS§œNgDDDšúk!\eeenˇŰÔöŤ?WşŽ{<žŔŔŔG™YJ٠ʒ9j†o”%úEgLCÓôšĄ@2–ěäénŔb¸óœ–^r =8ý H€ÝŤŤ63ŽDeŻŁr X„Ŕ°Ŕ~‘CŻ;…ńŃř őeŚlŒJ6âżF#YţńזĽ˘\Ná!Ŕ€Ńq^č3đŢ˜=Ĺ~ë- ĎfqJ jMx›A,ţ°ď(ł¸™:SË×ůÍ­8ůžę‚Ţ*”ăT˛Ű1äŹ pĸŁthëđƒ ˜Ę†aŕ*‚)f[૵€Đ4­žˇŻ{”ŽëĽĽĽ ކ‡‡ŤŞZÇ:4ÁĚŚ0Ź)ŚęO‡5G ´mŰvϞ=5›şd€"Ť…ÎTi?Əřąçësö¸îLV.ޞütŁŁ_¤C˛b0K€Ě˛ÝRó™óâT:żŔW äč;WJ/2dhź^ŻŚiŚo}˜A–ZX“,óOăüó)É+,ŹŔęý†˜Ř›a ŒFf3N‡pł)ŠüG2 qš+öžlëő1§aMKiĚŇíÝ ÖłŹ€ÚŸ6ţ‡ĆŇĐş`¸ ízăŃ0ÍľMέČm=î,ݍ@ćyœ€ű-°ęŹ7 ŚkœŰúŁ]/ëŔeź‰+™oš–!}‹+míőË7t3ě>đ†GcŢ ƒ¨ŇłŹ9ZT…RÝnw59uO(•™‹‹‹ëÔŠSs 4›ÍůůůáááŐ>5ܝ€€€ŹŹŹĆ×S•e9&&ćüůó=zô¸ĺtuéŇeɒ%˜d P$¸YݐĄÍNҏäę÷6ŻÓŻhy§cůďýHÓuMK ˜,Ýí~lšţӗR=učđGơ<)íňÜ?/%™eIyŹBůŃď‰/ü~îÇď6Žpe4t=|DSŰůŽŠ€*@Ä:„ék~˙žWĹĄČ#QS+ĚeM_Uîh$˝}úąÇťÝĽ?ţźĄŢü /Mů€€Ă‰Żć•Q~~žŮl6tt˝ái8Ę̡k8ęvť˝C¸Ć50űâ×py=`ś”‰ťlÁŠÁdzn{şčzüŮęҙd°”]Ú˘‡‹ďĂ™Ś°ďE‘[ę€5Ř÷ˆ°YÍűBě`Í ń#+őˆSœÔéD^?ň˙Źn€ä*KIŻŢξƲZcůO†§ˇłÇjzëF{ŞC(pżŽď€Đ÷ńEŚ){Qδ×#—ˇ”ăËIH~ Ďż‹ŻˆîśS“ßKjwDťeR$ČP9ÔuHcjăŠŞŚše%“qńL˝/ŕ|34ŕvťávK¸…Šu@@•”” @Ş-Ö>>>VŤľ°°Đ!zĂX÷łłł›5kvKŸ)<<ÜӈŁć ŘśmŰ]ťvÁk•gż€N]ş~:űÓKçĎ7iŢ<˝ÂńÍţîŠpéݐ–t57 Â%ßA÷ {`Ôčń͛61̌ŚÁ¤`én×cŻbÉliDWIˆ{’Ż¸w`n‰}×řńOG7Ź×řĚ+B _=âŐóWŻĎp,f⽔WęšbEWhËŰaô;ZWÚKEb˛$]:ᗵŤÖýşMš™/ÜĂ_îOüŕž`˘§zŇs˝Źő‚Ď_şPPßľS磯â濝={śOŸ>Ő&Đ3c™™™FíĎ-C¸ŮŮف†˜jMRXXhľZÎĎŐvn\V" ¸é.%¨ ł{ 4ŮžE)ŮR˛|éúV~2kĚ ăI?ę} —.QW &ËKĐ*ůłá>E>ӍúŘVđ’üǰLœć˘nÇô'"ň&ę6 ¨r47éN0ŁF&ۀç‹ó׾˛ľř7 ÖXţ“QÓł`H­„$KČuŚŔQ€Úń}˛'ÄÎ]ŞĎ4ËćOńyŒó UX+î*˝ˇƒăŽdŸ‹ єÁ:X­Äľ@(Ă,6áŠŰĺôłřÄĄţWřđ~<ÚÝáë1€Ëír”—ű„†Ö\ŽM&“ŻŻoQQ‘Q~â că   ÜÜÜ-ZÜŇFDDdgg{oď˝Mƒ Œ–ČŢď{Ę5ۡożrĺʒ’’ŕŕŕʝ3 €AŹëQáÝşľ˙ôĂ6góŸÎş›‡Ęś—MP|e…™ÜšŢ¤EËť‡ ůŕ˝wWŹX!„`!ß°”al/Ť[%ł˘k"Ś(#fţâňřŘEžŘS–ěţ}űő{őŐ;ăSŰódßM‹NnňaGko{)HH’ôîďš{HË&ÍtˇjmÉß<˘Í~P˙ń¨˜łMľŃ:˘ç‘€ÔöÝî ŠÔu]2„}ĽĘĘ,I’JJJrrrÚˇoď}œœl„pkN/€ěěl#{KSš››kt ˝Ľ7VTTäëëkDÚoܓ ܤ3 ‹3ă˜;Â/°~Gt=öGJV˘O‡Č.áBÓH’HUՒâ˙ˆ0˙$ŠyçDŇe(} ™€K ݢůÝ#>KÖŢDłD|ÝE=ޏ˘˘]4 >mňS =ĆMœ# ^ëYÖâŻQű¸ôOFĽSáŠbK ˛TľnЄfXĘĄ˜ž{€îűé›ýڗÝË[dŁ`6&LĆKůh0Ż0ř$Éb7•˙!~Œ6K1—@F2r>.<†DŮŹ°L.ť @’7cí zŻmÄjŔf4M3xŐŕéUXX]6Mp€IDATčýŽ÷ë°°°üüüjŸzÖ˛:uęäĺĺá6ć°uëÖ.—ë–ąőëסX,III„š`H EB™ŽĎšäXŢîÍďĐGľŮŽÜgIş×ç‰>>’˘ °"€7ß|óÔŠS‹/VŤč^–ҢjˆAňĘe*›ÜCď÷kÓşűä§ŚwęÔšYł&/>őZˇÖÝë<ŕk3ëK A†DP…ď¨,oŃgě+ňu“¤(ĘâŋO:őć›o EfÁĐtĹWą>ŮŐr~ŚĺЌrwEŸ…gßZćv~şK/ulfM7˘îIII‹Ľ~ýú¸U)ŹËĺĘČČhÝş5ncJóňňÇOXâöqięPL߆=˘Çz|hI0[Čl‘Íä $ú<7Ý+őđŘ ńœĐ´źaĐwú‡Ąe$LëąňłÎ/?;ě3|‘Me`ü„Ÿm(}–ŕ`5ű”––T§g= 3Léí 6›í/ĚĄŞŞiii¨a†u]7™Ląąą§OŸöţ”¨€ƒď>sě¨ĂV²´,ŐŢîwçľL;Żë٤ 5żTŸFÜ=äóů‹(ň ‰X#Ü-˲Śi]ťv˙Ĺ[÷NŢ8ţéçšÖą˝LŞFŠ!@öî™éüčă@ŠI2L-‘(˛"<Z:•í6„ŽŠDްŽŠđ]ÝUŸľač˛óßďÚľŤŚiFýĆɒ¤Č>÷îGîĹäžćëĘż<ŹíŽ÷\mßw,=*ąRâ¨8rćÄ݃ÁčVƒ>qúôéŘŘX“ÉT­ Ůř4--MUŐż0Ľ6›ívœĽĽĽcIdH ĄÉ„Ä€­źÔÇĎnŕ›{šƒM\Š*`wTřú[˜ë2uCř)GÂÖÁĎ3dŘ œŐ`%¤ť¨Ç‡ŠNö•Äě˘dą‹ ÁÚ!3ö-›Z#¸qcŕży–ľ¨EmÎň c%őN[Z` Cč5˜Năjů‘őşoÁKňĚ}8‰*Ki†‰@…(ـă÷ŚYňrk4|˝žÄdLm0ö/‰ŁHŤä÷NÎ߇|´”ç%"1”šüŹ{éxJ}_3łÄĚ:ăĄ#/Y˛rĺĘGyD×uĂbd(1@8bĆeH›;š‰2čV….e€ż˙š{¤čIżš51H` žuŕ;%ó8¤ˆIş€0Aڕxň×Đ峯…ť•–*m<ƒQŠ Ëňʕ+5#]˜d˘ÁMĹÝÍÔkĹâŤú +Ä+벝Gśň‹kŢŚ1Źé$ďڟ¤¤¤:Ôź—Œ qéŇĽđđp__ßŰU÷¸Ýngéý‘AĐt8#ĽňM ˘; T”Ű‚ăÚŃŢëŽó…'şől ž!p^^^îçç@ĎRY8Ëp6”ť3nť5Ě @;ă4=x´ôzBK"§€LfŇ{V¨§ĺčůVK/f˝ŇH{žTU5JŻoik~jńďD­gů‡ąŒÂĐý„w†c„´§č“×ř۞á/íˇœë¨§áSęĐA¸€´őR[(éŮMVbý˝ütźüž{œîiƒąy(őőľ;ĂÄΏč‡ĎńrWLp y>=ÄŠ!Ćü@ćC[čř2lÂÍ¡um…Ň—†ü‰uuĂ]n—łFű'ă×ŕŕ`]×m6[ÍÓaćŔŔ@˙k׎ĄF(ŐxÝ´iÓ .ŕ6iËN:eddäĺĺI’¤3kR }S–ŁďN×ňVÓˇ§kŸ´vç˘y“[ź÷ńe˖™L&€dEdćˆÝŕÉ TŠx‹ŤÁŮńěY`E'ÉdZślŮăGľýŞ'Vˇr=|Ôž"M4Á Č`>”––Λ7oęÔŠ’,éŕJś‰.,őƒ­s´ć}ćţäműš×—9Ü}ć8?ŻłE"4u!IR^^^FFF§Np›„ĺ… š6mŠ)IO×ßß?00đ–vĹfłéşŒŮt`"r:ÝŞÓT',ôäVÓ°ÖWÓSwč’ ,`´ĺ˛Űœ~>ˆ!u‚ľ1⁏HŔL\şSŢ\ú :)˝R'Ÿáćh žŒŘ“ˇä:ď.°/PŐދořnúížA•IľřףÖXţ3áůzK’TIŚ1¸>ęŹĆĚTü´”_OĽl;œ 1€zl`ĂR ’÷Dëˇ0ć × 1…}~Ŕ´SXŐÍśă÷.xz6&>FwˇÂ˜Bky€Óovź„GŽâT>Úkř]îB§o°hƒí؈Łő:4\ƒ ÂŔęˇ3‡~~~‹Ĺ#ŚĂ7“Ç$$$\ž|ůvgÝŹYłŹŹ,MÓjĆi…111Quęě١Ď8˜"qĄęţĎyG˝ľŽájő¤]˝œ÷îžŢĹ~Ő"™Ü3X’ WiŽęşŢż˙-Zź÷Ţ{Uăa{ąDhÉ'4˘+îţĆőkf͚5jÔ¨ää@Zú˝— şue]UCă˙˜!ąĐ„_w]NEß1ANIN5jÔŹYłÖlX;ţŢ1ňƒÁŇňś4úŹ}E>Şě%ƒiyď˝÷Z´hŃż˙ĘtŚ‘ř”$ffˇŞXä+ݧßçpěš"ŇëĚs×{ŐůÁVľĐÁŠlLńž={ëDՉ‰‰Šé8J’¤iZVVVłfÍp›Ŕ•+W 5Ú[*!äääX,o%„ĘÜŘĘĘT˜|m pJůπÖCńý@ş´`Č éşŚYK¢8ňéˇIŘu -FíV ^lj}*ŇoÝ~›;:‰~DäsB?ƒÔÎt5ä)“ë(ô"ŮӊşrŞŞztjž—7ľÖjţ›Qk,˙áđKÄÄ`€čÇMü¨ź 'ţÂ˙ą’Y0K•!9Ö!Đ|P JUhÍPo!ŚK¨sÇŚŕŤ9xaúö›tUÎlíîŕGÖ4ÔWđ8ęmŔŢ_pŕAŒ‹Ź[*ŰĘm23̆Н nŠŽÝ¸ŸË ‹ŮRVZŠŰx‡QQQŠŠŠ5OÇX­ ş¤tS3JO(!!AqýúuĎÎo¨Ó Đ˙ŽťŽ˙ůŔÇJÜîqÄŹq…§ľ¤ě‡,?tPzĹGśíÖî÷KČÄIŃM÷ ŕ˝÷ŢۡoßúőëEŃu]ÓŠKDŐ$MÓ:wîźgϞččč!wšńî딟d†'Ź'Dĺč„M% re× éľ™o20::zϞ=;wÖ4Mşš>&‰4Öu]Q”őë×ďۡĎ0á7†j0$ˆŒĆKć.čלcDďfň˘QćœOiÚ ^¸×]wšsřőhێďďÓ˙.ĺBU—Ă3×Ż_Bx‹ł{ßf233qŁ’ššj¤3oé•ÚĘJ` lg?Ü2 ő ~‹ŁŰŇźařş%~}Űßißś80#xĹÝř˘1ŽĚĹe†wďB<')ťä8:â¨ă—w@D$żqD P+4˙f–Čß@~Ć˝rÓŔŒ Ź6ÚJ7ë6Ôâ_‹Ú›ŕoM;Łmˆ ƒßćqв;ůNQŇ)\yďÚáR ŕkö!¤C'Ńí:Ł lŔě_ň‹OYx¨Ő…ěڀ]ő0ę}ƒŸŰâN]cÍjś™ƒRlW/ă\Ÿ,@ž\Ů8˧3ßyGĺ@Š ŻĐ30žYŸ Aƒ†9źe(5!!Áív×Ôq „°X,ńńń‡6>5ţ^,†Đvłvm„ľkůťŁÇáĐą­Ÿru¨ĺĹĆ>AŠŮč|9v̨+—.^źxą*%y†s9kÖŹwŢyçÚľkˇd‰(2 ;2{öěí;֝8™t>mĺ/͛űUJJr•ë&IŠB€dDS“S’żš÷Ő¸_F¤\Éđ;ýËöułgĎ Š\Е[óI’Ż]{çwf͚éq+=0Š.^źxńĘĺQcǐ4a śX_ęmšö˛m ěnŃc–łĹťö;Ű6m @’eƒmbĚť1 ‡ŽˇX,âfő%ăčvťoiJ×™™™F”["ݰ fż?euę Ŕä'˙wŁë—hÇ"ţc–éúMv)ŸŮŒ˛2€ľ>űô$őgf8폋CzĎ:泉Q‹„š 1t†隮ŤşŮd–@ŚJéŢ„Ą­čń,kâŻĹ}jńďAmĎ?5E| rşć~čĐOmż°hýŻ‘ž¤!Ţġ›ąĄ ëđžfĹbŕrş|ýüD# @JłQ@žsÄóŽ‚;Cžř_Mü°S`€€b‚Š %k°äç;H3'Űáp’°˛ÔœZ=éĂđ pűŽÇآŻFÁŤĐĆš1ꏏ¸]ťv•––Őđ÷÷žvíšAřŤYĹÓ­[ˇŸţyäȑ’,Ť‚‚LD¤_śiŸžW×d†”Ç š+ďÄŽąÝ"$fČĚ,ąI&]×#""úőë7wîÜšsçzęŠň0Ş^{÷î=~üřGG=śkŰŞľ§B{Y_ú‰<ư” ˆ+ˇB¸Ýz||Ë0ŸVcž(pďŔĺKś-^˛Ě×××Ď/Ç|QC茧g–¤ŠŽrťÝ^?Žţ˝ăÔ œP61,žuˇN UŐž‚Ťř$v´ÖGŸrQťŇa<îŃ1ăǏďÝťˇ§*ŞĹŔÜšsűőëĄëşdRX0„$˛ôj¨÷ž$ĺ9Œ™5d§;´ŐGľ7M 4‰¨ěwŞę˛" !NŸ>=bĈj7˜ç׎] ö÷÷że›ńŇŇRťÝ‡Ű˜ŇʊŇćW Ď;.öëčşd ˆu踃O-˘Ôýjy|Ř$[90‰Ńőuň-ä´äˇŮYˇâD)bĚłúÔcväJƒŕt8Ř_XýŹ€Qc –nj ÍĚ5=KÔĘ÷ÔâfÔË8Œ‚~osb(řĐĄł‰‡9ď tÊý8łű͈ߌíƒŕÚŸXeł¤Č‡Ă¨BĚE@ ?XÁ€„ŇÓĘËűÔűd,ĆĎFŻ2¸ƒáł§ÓÓW9[ö#öeJ¤ř/FáhŒ|‰îW°ŔŽş›î?ŮŢć´Xóî84¨‹¸Ę2űúúڧ§{ŒĽgüƓ~ýúő/_žÜ­[ˇjçëXąrĺŮsImZˇ’Áô™Úě$q(Ÿďă%=L yyó?ţĘ2ʇčBČDŠDFDĐXŸyć™G}t˖-ƒ ňT˝zŰK]×'Mš¤Ůłť?śčŠüú˛Oytƒ%ÂÄÄ7–Z2›Ľ —՝ŰĹÖCAÍ?9ěţ' “““ór rěWr“‚œş_ŸťîŠömY'źaÆaaaŰSjgÝt‘›Ę,ŞŽ !hŞŠlá’Úű>[řŮç‹{<ŇwҤIŢă„W1Y–ˇlْ‘‘ńÉ'Ÿˇ˜A EffĄ Y–‹­Ž/3§:ĽnŠäz÷ľŮ›Zç†Ň˃”{[J2QҙłBÓ=b5ď´Ë—/”︼çŢKOO÷őő˝!tó%sVŘËĘ+6=Œöĺ’Љ™XçúwĄA_ěŮyÄG„7iĐVö"I&֘Â(°ŸÓt÷‰‚äÜÍq1?Ăç@!0C""¸/š ĺÍ~×ĺZ$S x–Î`ÝhD Fǡ[KĎřke-P†ýÇĂXß˝9sžvˇK )&WŠŰ`ÎŞĺkđYSÔë‚gđľúŘĺŽ ă_¤ˆ‹ĄWŁ‚üĽ7łÇEŁű,)`g0‚Ö`ÉHş7“sL„(=衔‡7éGwáňŻ8ş)g‘|çfăË{0öZŘĺKćsĽ9eŇ8e+Ż  ŁĘYŠ[ˇnJJĘ-Ď@ŤV­ŇŇ҇ÇuŽTĆܚŽ(J×6-OíÝZźuơÖ5vŸŢ<I÷+‡űă–-ÚŐkňóšuĄš[ecŒéňőő}îšçžţúkťÝîą@•G ł NˇˇO¤Lh,f m• Č­J…Ő“ń"€—|‹6íĽćÉíÖ í‚Ž;|÷“#_lߥC“&‰O|áîťďîŘąŁĄ6 šużfěÓ^.oôy¤ŞVuĎ&]ňďu}ĐtɄŁÝgÔ}€¤W2'Á7b ˛,ŰíöŻżţúšçžóńńńÔvސ &€°îç5M‚ę´mŮ\ܝč{tş’ôZĈ1ßšb^qźńJô­§ˇěÚAQÝ­‚+‰ÇËáp¤ĽĽľjŐ ˇ1Ľ)))†~á-–9śbóš,kJIů€>Š ÍNÇżƒ$ƒu•4—U×kŘŃĂž~’.,p…?⊬{í‹ic2Qüƒ˜dŇ.#o(˛ZSŢTvŽ1™“ü…Ýg)ož’o”Â’ýˇc†ÓU[×S ÔË6<ÎĐí:^°š,ŞK…ąz°˝': Gďů4ľ9şŕšŤżfWĚĹJń$îđ-m|oőöXÂúڈőťáĽ]ŘůžˇxŮŽŸqjBBycĚ  Đ`6ÔT„u@§ąË2Ë4Błß°€„ÉĄ„„Cĺľfڒ™ăăă}||Ξ=‹ŞőW Š"­U7ľŽőÖékŽ‹wÚĘŮšżëěŰÄߪł¤3Œ|řĄ˝{v ďýž„bŕŔ 40ź1#XŔĂ1+Xň§ýїĹĘy~Ł:•ö<:%%ĹČSůHc{EAšSlřON$@’eŮŘšBč: y|Œ?4Ü2YV$ řy”˙L.GeżFăj !ŒüeJJĘč~—”ýVuŐFž._žłQKUŠn•U˛Ÿ|ňIƒ hěźZÔÚŕœě޻硑#Ŕ`›4đY8ʔóŠüîP^sŒă^žóŁ=ŐX¤Č•lÁžÉ?{öŹÁm˝e”5;;ŰHgŢĽ…ą/ŁcctˆF…€BgW“ć„l†lFšŤXňQĂB+Ő $‰2çťÂž=‚ĄuŠcÜßsXO˙ŕ8‘ˆ¨â'dśCůÖUömEbbĄh ÖÝGuql:´d< ’\.×_$,=Ʋ–dY‹Zců…gÁ2b†ˇűÔl6kŞ  Z˘ÚpŔő#f$"śKĐóf]Ů$ÍŁ_u zŽÇOڇwáłnćVÇŁ Â8÷Kš2’ޅŠnčN`"Ś}É?ֹĸƒœŮـ!FNnˆ 4ź˝*ăńüĺ&'’‹ŽŚâę§ôćě=†ýTIZˆ‹‹s8………5ÓoĆë6mÚň:bܤH°éꟍŽżŘžMI°*ňŹ€Ă—î|˛ĹO6"Ž`’HŃŞUŤŘŘŘ 6 JŇŹŚ čŒ3>źqăFc‰Č›%2î5iÉ,Œě&O~őĂ1ŁG:tăƍF@ϘpcÖׯbłî&0’$ɲ,ÉňM >˛,I˛$IA@€Ź(ýC‡gˇŠ˘lܸqčĐĄ#Ç<ňáäw•‡B°Źńć“ÜŔnܸńđáĂ3f̨vé=ŚŔ† bcc[ľj%„ “ ‰ ÉY“żÉüTW˙+ďœŐC˛˜žÝP^˙u÷W{Ô˛’łĐ€ăǏˇiÓ斗‰ˆ Ç_$,K.^or˘Ďőu(fdĂ7mů§aX3ëą$żŰő—GMŤâľaك´śż+ę‘#ŮÁulł‡<Œđ­őý•@¸!‡Âąš€]ň"Ő9Ěî÷˛Ô@§ý' ?žŽí•ţĽŞŞžfÔ5=Hco÷i-ţ]ŕZüsařC‡Ł´´ÔřŐxÇűSťÝžzýşńú1ž?ÁĚëNáfÁĎó-lcÔŔ-[Š19\ĚĚ: —Đ˜y‘8ń™Ż¸çŠHcćÎâApăa܇ťt•™;vŕŔf6Ü&'k̎űřĘ‚™K:é í ę4Ô}˘Xň˜Ěă™YcŐ3ÎĽK—îۡĎóçžaŻóňňŢxkFAA33ŤgJ(÷ýŃVwMůĚÓe6棝ˇźýę4]Ş`]㌍˙]ˆ“’’FŽ™••UóĚŹi3ó#—g]ôąť3ł*g´ădp2¸čmÁ̎2ç™k§Š–¸˛ş1ł.fćœ!œ3T0łPĹőë×ívť÷Ěxł´´ÔápTű´˙NÔz–˙|)7žM›!“ÉfUSŹĆŽ#ďq|Ŕ „ÖÜ0Éď|ޜ܇űď /˘, l&š …łq ”ë§?üÄ#Č?‰¸4Ę5CU\\Ě`! †°@ ŻáŇaš­ň(3/4§”V–;Pýmü[:Re( ff-[śôî¨Ĺş$CŐEDDD‹Řđ#ÇŽĎGűßímÓRËąŞ—|ýˌVţ~@‡žíPöí۫Ѝ¤Ś1†ăŐźyóΝ;/X°ŔłsŽr†¸ŞęľK—.#GŽœ2eJyš$٤ˆj,ł‰Œ-{ôčąqăĆňňňÁƒŻ^˝ Ĺ$9&Ž^ŃÇ<ÁýŻ”‰0$8đ v^ŇËC6IhőęՃ.//߸qc=*ĽgĚR5>‰0I2Éśňň)Sڌ9˛K—.Ő´d˝OvÁ‚;wnŢźů ŠňJI*ŇŢ}űLú€;şÁŸü޾ۜö‘´zŽčmg:Űž_Î:r<źEƒˆˆĄjĐoRš5vxţüů–-[â6 ˂‚ü¸ß.a\o€ é ¤Ş CónhÖáMJ:h-î &}¨]3×d9/×9Ř"ą};=ďrüłJ[ĺU| Žcě> ž}<*œ’C eÖKŘń'Č ˘ęyĐXcÁˇ ĂVĽ¨š–7R‹JüÝÖş˙a<ëş^\\\Íąđ~}ýúőňňrffÁš\üż}?=ˆ_‰÷ŰĆ؇}X˛Dc]Ą ]g]0;Ř9Pź ńxŕ“E3Ycfţ@ź̨Çř‘k"ƒ™Ëë6Ź-*.bfU¨‡x˙“Üɇ?3‰%AŒP6EčS<čœ8ÁĚ+ĂĎůfքjŒ­˘˘bΜ9™™™ĆYčB¨şĐ+úľL—6zS˛ômFÄ:×óGlÉĺNf]66S5™wěŘ1}útŽňjş§eeeŁFÚż?ßĘ÷BoΘ1ăŃQc™‹wŮŃŠÂđ)ÝŞlüÇߎÔΝ;8hŕ?÷Ž{ú1Çs1łPÝBUUc›Ę=ťłŘ}ú—˛R0ă´"•}FEвÖţŠ–Ţ3/¨iř;oż#ŞnĎ÷řÍnˇ{á…ŁG¨Ś€ę™ŽC‡šÝî^˝zd Š ‚!9ŤÔö;"y×űˆ­wąÜ;ĹŐď çśK:Č#9 ŕ̙3qqq†ö:Ş—kIvŔşpuHGCD@"ˇ ł••ío°X­"͉6Gńpý?‰ ۉ6OĐ˝(÷’SŤp×LQ(_Ľ! Ô3ÎţAţž„űĺލâw°š=8*œF’o_ k”DýÝßăZüý¨5–˙ ş3ŐŢô,[>>>†ą”Şř— ¨ó zBżśh”§išfˆąš Ĺk۰h5€Ă7›?‘eš¸¸@{4ęÍOţ‚ŤţŘß-zăŐýط掹cęő›ˆ'÷ŃŠ Öëáž#7ŃĽűńđłxygčć+śK’ ×çĆŐ٢Uë+WŽ ]˜*T]]pÔ˙Ĺy˙NaĹáťĺ#ý”'â¤ý;v€D•"ŽŒęŒţýű˙úëŻđ ŹáćŞ×AƒEGGńĹđŞz5fČŕH¨I„z}>ܲűž^‘?ŒíŠ –$ŞŹ÷1ęˆ=;ʚjůÁGôクI“ Đđ3cF?÷đĂ}đÁ;věČĘĘRUŐؐ= >˛$I’¤ŞjVV֎;>řŕƒ‡~čŮŃ’#N†5ü˛ç˘ސ =ŢE­FԚˆtIHúh˙…˝śÝó{Ü /CŠ•Š5ĘP•Ć_|=hĐ jU˛Ć,Żýő×ţýű{jÄ ÉŁşŘu`=ŮI>öŠ|ä-DˆűžrĹOwÎÚî.tHf“âę•+­[´ŹvY™ -\˛]I ٗŠçűWN8AwĂˆ–GCNfvúu‘´;‚Quđe"š@ö\äć`ýT›ŻŻŮ×äç÷4ŰćÂÔچ€–€T—ŚŞŞ€?L aé Űf}8\n§Ő§Ú×ÁűţŠeXÖƒZQ‚2ź ŠŚiƛ\#yiľZKJJ*šä   AňľúȐlöňŔ`ÜĂđĆVü4Ť‹¸ĺ|ˇ™üCó ňcęĆ\ÄőŁ8tYŽ+­čx¨;'…œ6‘-Đđ>ű"ĆNCBp@íˆî‰M~ś/z“gŔ̆Ťˆ€Ś‰ îĽľ§/oÔŽźâŞë+Mj*=ŃH 1)‚ @ˇž÷üńľk×4h „đˆ¸˘JxeŔ€ťvíÚźyóŕÁƒŤÉ xfŕ•W^™0aBu P%KĄ%ťěăŢT–-şśí䨹{ćó•áN[ľJ’,3´Ĺ řń ć ?ÉŽčČуüúëŻËËËÍfsPPPhp„%Âéwđ1ˇžúöWjŠ°¤ ´´Ôívűűű7oŢ|ܸq]:v ‹ Íĺ‚oDŕd6+Cö˜gxyŠĆ°m6ۋĎ>Đ1lä#ČŁÎŮ ů‰‚*X‘Œ,¤ˇLÁŠS§žţúkÜ\Ąę˝Íć͛… €ˇŠMŐ3‡¤Č׎]ËĘČýČ(Ö1X9^+zDű~?ĎÝá~k<˛ŰŐ{¤ŕŔ†M›€™t†TĽž`!A|ż; q,ş'ÂÍ0“!L Ź rU8˨˘ŠVitú"‘ÝB˛Pi­ŸĚ& ŕ ‚‚BřBÉ;pŸDđŤČyĺ+ŕ?‡„äcő1<đ€ń([É?Â܊„*4MłřXŞ}k ν͋ň.ge¤e¸Y Ś@ÜaáŽŕ—_§Œt]v~Α݇ŇôźDŃ|‡‰űpĂ8“ˆˇę’ÓlUÎB';UÁĚb‹GY0 §PYđRţŚCqœZĄ2WŚľĘşTQĄš¸ć¨ˇ" ? ÜYńGŽ]TÖĘ˛Ş ­*Ą¸víÚ pU1gÍjĚłgĎ>÷ÜsEEE\#mĆUŮť“'O><55•˝’—nUxj_ď˛3 ]çˇß~{čĐĄFŽKUŐj9-!„Ś f޲MmXǕ_ŹyĆe|ZXXxúôé 6üđÝâyK>zżŰą7;_žťř“ž[´aÆӧOz6şŹŮ ER¸(Ü,˜YhŢEł•9iŁ÷úőëC‡}űíˇYgÁl[–늏nÝűdSSS‡~ňäIžMŚ–™‹ŠŠž{îšłgĎň­Ş‘ł^°`ÁÚľkMŞf|ŹéěŘvŃ>ŕËbŒĎŽ›ęüţ ťÂ]yJšndž™šBuÇ=Çßě̚Cc›&ńÚQĚ,T—ÎĚWsR6/ý•#ö‹/UžĆÚ ĹˇÄű^ňBR‰=—5fůO‹œű™™s†ˆKĺsš=ĺJöĽŞłÂĹEŻąë 3 QČĹťě×óSt÷mżĹĹĹĆÄÖ&,kÁĚľĆňŽżţć{VĆĚĚL-1>ŇY0sž(iĚŁFźyő•<âˆÎmybŻ8ͅ,Ř͝įǜƝwč<‚ßşƒ­XŸ#žožŔ_úćőßuü 3ۄ“…>‰Ĺ(ffá‚۸´…;ü÷ŇuĚŹ ŐX˙ŻŘœ”Ž´EŹŠxń`áűóż-+.`檕VxjP˜š¨¨č7ŢHKKăŰ/ë_}ő՗_~ÉYí˛|ůň'žxÂétűš%KÄŘŰ… űôéłiÓ&ŽŞľšaބĐTfÝç~ţ7łPUöÔěx?ŻԑM“xŮXć*ęˆgƒŐ@Ş`ŠOˆäťY0łvÓfžŞ˘M›6őéÓgá…•“ŕŇjňIŒ-NçO<ą|ůrţ˚Ś/żüňŤŻžâŰ?‚¤ĽĽ˝ńĆޏ ŰD¨šĐtf.(+ůö˝/‹^XéŸZ0É>á'×ĺüĘ' ˇĆĚĽëşĂŸćRť`Ö\‹:Âi{uf>ńۑÚŔ/]әu—ŽkB×YWł(8Ď˙,9xb—Ű­˛ÎĚÂy’SBXMcfQ8U¤‚/ľ-ÍţĄTĎ`a<ŚélüÔ‚™łF¨Y+Š™OEľGŰ=_Öâ_‹ZcůÇeŒżtۖE6Œ™˝§ţBˆcĚwB´%ŚżÎÇ{óffv •™SENő!ˆ.&đ§,řďŤĂXÁ?ěĺŤ,řEţÂßŮ'EÍbfÚ ‚Gą`f•…*TüŠxfDEÖŮ%\żfŘťo-—–Ů:n*˙éz…Ss1óŞWlü}33k5Ü8cá^šrĺ˘E‹řV+{%™Ż¸x„ gΜ1śáÂxó˝÷ޛ:uŞB՘Y÷ś”nő†}bć#GŽ 4čÝwß5fľŞĚ•:kŠZ|¸űÄ)•™5]xC×uĂvş*łúűóú˘GufŐ폴ŽžS0Ć.4fć’ăœÄśkĚF)޸Qëp8Ţ}÷ÝAƒ9r„Ťž˜oÔÇöRg6ÜňŠS§ž÷Ţ{ˇœ+Ďäœ9sf„ ĹĹĹŐo ŻšZ´hŃʕ+ůVU]Әyóƍ+V­dfˇCľŻ<^qÇ*čéŠ;?qŹ?Ť95•ŮÖď}ńô÷‚Y¨šćĚüűóbÓě(›f0”;˙ŕéɂ™uQĺP ]cf=e/~ňZŇľc•ŁŇ3çâÂ×بƒ­¸ę<˙BfŢŁ"˙IVSŒ aábĂ7şČ¤§úąűň ;ę} ˇc'×â_‹Úôő?ž\Kľ´eľÍ|}}Ýnˇ¨jůëŃ e°ŹaXl)ÖYz÷˙@ďŽćägŔ % yýńâ59ŕç1fOq“ťď(8Ă&ĐgŸë/ .éÜQ~*•óYƒN¨lú @‹§ĎŠôéI™ Öńˆ=Ză@œšO92Řçá8_)şôčyńB’Íf“k”&îׯßĺ˗Ż_ż^SÎÍČŔßwß}‹-2Šk¸FŐŤńëoźA˝5ă]EĆ❎Ç^ĺ]ˇ”Ę|žQÂÓącÇ+V=ôĐCۡo—e™ˆ„Đ5Mźř[ѤÚľ‘„‰Í$Ee­”qľ ËZTCmĎżŠ˘8xUýxĂbąp:žžž€Qăèö!˜źŰMˆTŠ0‘#6!Űí$¸Nyýů…+HńĐô?ÍPXađ4ZEĹdMŻEĘa‹r_ž7÷Ő;Z?•Ĺßú ˛˘Šú. F juhϜ̰/şŤÄ[…™Œg}™Huřđá~ýúq%!DxxxˇnÝÖ­[7yňdoáşjZݧNúöŰo'Nœ(ź:cx*tŒ7gÎ|˙ă÷&›ńŰĎgî]ôaĹŘ^>Ţ˝DŒ-ęĐŕŕŕ9sćěŘąăË/ż\ż~ýäɓ6l(ËěŇŚ•ü֐łěą˙/`°R$‰' ŕ5á~O2›%€Ž^˝úů矧§§żôŇK}űö5>ƒžÂ†>leá3*˘\´ |śpýŸťrăŠçĚüČs˛Ţ“ÉĚBY–żýöۨ¨¨šZ˛ěĽ3°nÝşnÝş…‡‡{°<0ś?|řpTTTl\Źą낈,-˘xŃíó‡ĹĘŁ9/ýâŰĽYXťx‰`đJ˜…™LEŽ“Žŕ¨M卭 •G­lâĆ "]ƒĆŹ XKa„Chd:đśüŃ€u˘&Ą8Ł$00 °€klßÂţ+iel<Á˜bŘďAŮӐžÔuÝ#ƒW‹Z –:ňďŃćđvlK"˛X,vťýĆ;€hŠĚÖ7éő÷ÝĎż™>Ibe2ţxÍ̐ `ťSŽ Đ^ÂŘsĎČÉ €˜t3ĚĹĐĆŇ Đw0űŮú_}|yÜ[§;č‰kČ7łCÇş’€`W/źž•ŸŠo TLj•ˆŤ!‰n {÷îgϞľŰíž6#¨Z׌Ÿƒ *//ßżżÇřy›Lc›‰'^¸paǎF§IŻç†J›ęV…ŸŻ%ś×K~l;˛őĆq}U“dIˆÁžR[öbUöíŰwĺʕ‰‰‰“&Mš‹üfšÁ‘6sÎc(Č_ŕ{7XŻtüÜšsÉÉÉŐ­ŢÉËaÆEGGϞ=¨ŹéĐôĘŽ[†Búc˝}ÜŞđąš?š5+88x„ éééĆšFeńZ–e!ĐYÜĽť´čť™3g~d6›ć͛÷ÄO<˙üóß}÷ÝţýűSSSívť§ĚÇPđ‘ddُ‡ˆěv{jjęţýűżűîťçŸţ‰'ž˜7ožÉlš5óă~xŰŻ‡$-Đ!řF†˛FŽá)ڧ§O˜0!88xÖGłĚ>áÖýÇDyôÖa’ 1sĽŃěŮłëÖ­;lذšŠJë™œœ|îÜšáÇŁFÖ3{öě nÔ¨QŐ‚‡w#+D$Ř]šrÉ2ćŔčYŚ1âTú9\ľ7ąąĂ™Ńł0*8^¨`„ďR“3|8ĚŹXuoÜËĄ€˙Xˇ†F…E<Ö6ľ u“ň+ő†˝ĚŽHŠÉŞěŘôBčEĆ>*ţ˘Ée-ţ¨ Ăţ‹`Tlz7đŤ__ߊŠŠ   \%ĆÄ,1mđË ,“zš9aؓ[­Ľó—‘ @†  yÝĆŰRö˝ŠW‘fXĘŻđ’]‚¤0Ì‰Ę°QĽSŠĂŁ^ĂýV$ˇĂcgą8–"4ÖYČń~Ü7ÁúŮÉü^‰NU*n™:"8pŕ˛eËÚśmÁ5Ęb…aaaýű÷_ąbĹôéÓM&{eÚྲżôŇK3gΜ7oŢĉÝ*›M¨ŃKDBxă7VŽ\ůŇK/=űěłýű÷7ü'OŢ´jxĚ&“TTŚ˙ö‹>wąH͛7kŐŞš"==ýĉ'OžňČ#†™—Ě2ŤÂwT„­1úŒ­}GEŔ-Č,͛7Ż˘˘bć̙ŢsŽU˛+VŹčßżżţ­Ľ4śÉĎĎ?yňä˜1c<+I¤ëX2ď~nˆî9çćěŮ72&žu$fR.n{ŻÖ),MäL\ÍNjŘ5’ č,$Ż;6bËŞ((ČOLhfρoxA2 WĎR=˜hu ďăl^HQ[ G‚XQáŹđőó5"ŽŁĄ_BŔÓ05 Ő­řw_kń˙1üÝŽm-ţOŔ"łŮlFƒ‘[Fb].WJJĘMńIfQ”˝ƒ›šśšäjşÎ̂“EVC nő/LYNv%ŤYőCÁ] :<ĎsX°ĆšÎ‚ŤBcć+öŹ0{gđ7O fÁřópž;óX°KhĚb{6[ż.źxí:3{To<ƒń°ď/^̡ Ű|óÍ7ß˙=˙%•°˘˘bʔ)?,ZĆĚ?ě°ĄłÝť—Hľ`ć™3gyä‘O>ůÄĺrąWƒOźTU3óľzGsˇĄč iŐĹ Œƒ&''ďŮłgÝşu?.˙é‡U_ÍęuęínÉ?ʚťrůOëÖ­ŰłgOrrrľUa^…P™/6Ů_23‹*ĎyŁuš\Ÿ|ňÉ#˙ œäĹąˆĐ +$ˇřýřÜ4ÖŮ,Ý,‚jźvťÝ_ýő]wÝŐşuë[Ą‘ĂářđĂűőë׳gOo=Xx%IĘË/š˙ĹŰ%#żÚvçˇS+żËכ%b´óઐfYYŮÇœ™™ůÜsĎuęÔÉx˙ŠD$îl§?4š^šŞh{<ă› ZŽŽB6aó (,ÁčĽH†GÁ•ŤäÎoŞ Ň‰d Ű24< ™Á^ƒ4öäȑožů&&&ć•W^ źŠüUU˛ “Tž4'𩜽/äŽ ŘúÎło„F†‰[` ÜłgĎöíۧOŸîăăSs?uöL^^3kÂnĚ\ Jďŕ§ ş‚;ߗ6ŮQfFi†`uf.ĺwňsÍz ¸—g×TńŸUź‡?ĎsÂůît‘Ç:3Ť_^â°/SłSŻr•—SmüĚ|ć̙Ď>ű얕>žmŽ^˝úňË/çâí-y´âœn™çŽĎABĘä9ű™…ëć‚ďÂ:ĚźmŰśG}tć̙šššĚ;™˙Ü­6ˆtçh\éWŸŚišŚin‡vł‚ńść­ŕsó*…fěyœ*Šw fÖUÝăććććΜ9óŃGÝśm›÷˜kN‘Bwi‚yď´-ÉX‘ůőef֝UE=˘údڧ§żüňËWŻ^ĺ۸žĚět:?űě3o$CĚ('ƒăƒ9"„D0‰pˆ-ĖŐÂćb-ĂÉQ{´ç/k̚]0ëŰŚđ'Ý/•äĎ áiŻż ăŸ0~žń:řuˆW%ń2řěOĆ$ÜF^^ޙSg™9ď1‘ű°ŕţwFFĆ ‰>Ł8Mܸ+ •ťÚ–ľ¨‰ÚŸ˜Y’$EQÜnˇçă…ç ÚĎĎOUUUUŤ¤| @ʂ}'˛& €đ°°üü|Töób74oŇÂcźp<ˆÁłóžJNťFUäR)*†ĐËűů8H‡{ǸîńQMłyJ{4$žÂK ;ŒKŁ|@/88fŃá4čNH’q›âfé€V­Z…‡‡ďŘą5*}ŒsÔu˝aÆ}űöýá‡4Mó–ě!Uc‹‰ďŹxţłˆŻçůü¸hń łŠňpˇ”5 ëz˙ţý,X2iҤĺ˗ŰívY–Áˆ…ó¸ď`D…Iş˘ęBŢ >˛,˲,ÉňÍ >˛ń‰ˇ‚ĎÍ{ŹąO|ŁřŤĘź˛,Ëvť}ůňĺ“&M Y°`A˙ţý ćĽçÄŤ•á0łd–W,Zö“˙ßů]"'ä–-Ë!‹ĚŞnp4×4mѢE}űömذĄá§ňÍŽ§1W;věoŐŞ•§ŽJđóԏXDƒîfÍLt"‰ďyˆžlëâvGňîŞ#}•( Á2(ˇšę֍ Q5(€°Tţ# Ř řd!ad_úŐč`rc–ňóóĂĂĂL€c'´LRIÄ4öŞŞúůůUNŠń_ĺnˇ[Q”ZŇH-nżŰZ×â˙<@II‰÷;ž×ĆŻéééQPUčĚüŸě,~5zŒ¸\Ž'NTKŞ•łc-ďŽĂÇňEěÜîršŒleĽOɝŔwÜĂŻłP§2wIžÂE…Ć*„“™'ńœpqwŠžÇĚOć&Ÿ¸rňßޏÉ˲5kVzz:˙eší›ož™?>{é— ž‰%˛hg3çćMž2eŢźyěĹTšĽCćqă.^ź8}úôŃŁG/\ř}Eyqfލî>tDeÖTőÖŽa5Bę›'ńâQĚUBęqí*ĎKŐkĹĹů`áČ⒊˘ďţ0zôčéÓ§_źx‘kťW›7Ď<̛7oĘä)Eš…|{>‰qŚóçĎż]Ş’˝\ĎYłf!ďS/+Ż>ÁťÎ̗ŻéŃü|ßĆÜŠąč¨8 °g.7ˆâg‡é{śÍÍç}18iăSŹşő/špÚ.‘sŠÓsĆ‘qDdĺÔýÎőóŽŚ.?ţ-Ďo/ŠSؖs“×XQQqâÄ —Ëeđž2;‹âw˜™…ZšAqqąqĎÜ2gĎĚ%%%žˆĹßő=­Ĺ˙7!Ϝ9óďś×ľř?Ăłqš\Ćă3jč^>Íf3jbeH <…˝S¨e[„é&EЍ¨p8ÁÁÁž?1AnŽ„0<y>ţyŠM­ˆ /Aů=xe?Ä0 řď)Œm$]É̐“KL;¤{řôë4ć:ň&ŃgOрŚVżOSëehŮ0ÎâăË7§W=ň’$mßž˝}űö†8Q5 Săg›6mvîܙžžŢşukc?5X"V—ĘAž=zôŘźyó‘#Gşvíj¨ŮyÜʛ{UJĚ,„ďׯ_łfÍöěŢżţˇĹżü\ĎbŞűú Ál’¤yĘjCň H2ŽnF…m¨,ĹŹś•g'ž’$$ŠÓ*ÖĘGvŸuxşěPž›řÜȑ#"UO%g5‡€‘|Őuýă?.**šńöŒŔŕ@áŇ-íÔČ>Ł&˜ÚúCcH•qˆ•+WćääLœ8ŃłOďŸĆ6nˇ{éŇĽ]ťvmÚ´Š¸Ą#HDĐT´ě€°HФ¤xÍOw­ë˛d‡yŇHף ŽŽu^’]ĺâÜEúe9ďŢ@™%yeÇDÆá1ÝYŃÉÚ!ŃŢuP1T*ĽĘśćíDwŕâ\ZOmĆVŞŕÇËĚĚ4™LBg’Ůć!pRĽÔĺççZ­Öš…ˆ4MsťÝžžžŢ§Y‹Z¨5–˙:5!„‡IVm4™L%%%VŤU6™؀ëëéút7Uęę,Ë999•ćÖhp!ş y ŐM"ëZFp\řéĺý8âa° ď$[ˆ4łšőéӁqq>VK#ŽyKíä|“ĆŚ!÷ĚyÓˇ˙ɂKšĹÍ—ă6a/⇷”]˝zőRRR.]şÔ˛eKŽ!‰î‘őiŰśíŻżţZQQѤIˇĘfݒ%b6›{öěyěŘąuëÖľhŃ"88XTiîx€Ť´Ô ëѡoŸ„†M?y7.*a횤ďĘJľ¨¨H???O(ŐódZíBÜŇXŢř´ĘšAUăeă¸EE…Ű6oűfٗůEĽMué˝ ÝČ#ÂĂĂšŠîé}Mq+ćĺ{ď˝ňꍯZ,!„d’Ą S[o{Én!™ä7ž9sfňäÉ>>>âV:ąĆŻkÖŹńőő˝űîťE•NŹaŚ™ŮlA@Ńń“ŹYQ?ńůÇ–;Š_Çď—ÄçĆ“FyŠTęBF.öî öÍ 71ůtBx3šń" ź>~,tHqúäšń‰ţţ ÄÜAë' ź"[2ëdŇu=---&&ư…D07ĄŇOĄ4bsS“Óĺ´Ůl7îŰŐmN§ÓĐ}Źö|V‹Z ÖXţŤŕm].—Őj˝ĺ´ázş\Ž/ŕđýßu]¤KVŤľ  €ˆüýýŤv ‚ A~YĹ9Ãf5ŸÄ0° ďÉ Ź@ÚaňńTTt-??>.ŒK”:…Ţo‡ÖS0"…s_§ĎĆ ]E›• ăúvĆĎƍďÜšS’¤¸¸8ďmź%,KëÖ­ţůg†Ň8ąţâöqÓiÉGäé%†ą%uëÖÍĺr͟??00°Aƒ†‘Ťćbzg15e™Šłw›uÍć„@ß ˝űö­[ˇöřńăyyyŠ˘šL&ĂÎáćĘ^ĄłŹđ•M¨pPŰáBטŞ c3#yi\Ž+WŽěŘąăçŸ^˝zuiYéŕ~w÷ŸĐGů!8ś[„Ľ JâˇĚPz'ËňŽ]ťžüňËAƒ7U9lf†$Aťa/ |­˙üc׎=Nž<Ůxn¸eŞR’¤Ă‡Ÿ?~ěŘą†’jľ§ !X’¤äääł'ÎoŮ8äهDóěđŠÓüHbËQ'Ž §Ć &Šs.;łJ”˛3yÎ2lZ@n3ž{ B€de¤e”•Ůš7o&4&‚ÉŠ#_QYڌ‚$ĘĎĎw:őęŐcf0 Y!Ę`_˙1QaaĄÉd ¨i ×vťÝjľzűĐľ¨…ľ˘˙F˜L&ťÝŽŞęídJłss ăş\ţ§5EP ÜÁ03ŘčF•›“UůlčP“Ä$AĘAńÓm杕.ÍƒŃkޕ™˜X‚dđŇu q›śGˇn˛”f‡Űžâő@ŕPźđ>˜OS^„ôA˝ątö—’°;ĎŮW/Ál’ŮPpÝ˝ ÇŃbą >|ŊőęՋŽŽö^Ó˝íeXXŘSOOXˇr¨˛ý🊱˝| Kéé%âz˝ďžűš4iňĺ—_ž?ţЧž2›ÍFHśšľ6üDY’1÷3× áŃŤß~˛łł>|îÜš?˙üS۰aؘ˜˜˜˜ČČȀ€cW•áJ‚$WŇ!.++ËËËËĚĚĚĚĚLNNÎČȐ$)66śC‡&LˆŽŽf•ÉDÎáœý)űßK˛D 6ŚĽň‚TůÖĚ,˲ŰíţîťďΟ?˙Ę+Ż4iŇä|’Ş~^6˝Eŕăéç2Ň7›w<˙ÔsŢú5š7ŮŮŮ;wî5jTĽ“z+-Y—[?wf_nqWż<Ӄ_íýüzt˝ßĂ,Bu‘¤Śqt,™XÓä€.œűŔzňL1*(€€,CĎ*˝Ú¤uc’@ ’źŠł˜Ŕ€1ČËËŤU @Y J Ša˙Úu’âuG…#*: ˇQ"^+ÜS‹ŰĄÖXţë`,g&“ÉĺrKCľ0#3űřř(˛b+/Ťđ3ú}ĘIq´z0bŚ ED KĎĘ,,* ˝‘WŤRSÉAEň!(€>Č.r›Qľ iB ŔżCĂ6ë/l{§ÇşBΤ>č9—ցů ń’Őäú¸ÎźSöÉ-üÎ8|°w÷îĚL“ 1†°^˝z=zôXľjՄ jHöTÚK—*ԏŁFfź†wf\xüŽf.ˇ0›¨Ş—Hĺ–TŐŤ˛I“&üńźyó^}őŐ§Ÿ~şYłfF=ČMƒ’Œ —EŇ)éÓo$ !EGGß˙ýC‡5řďgΜšvíÚéÓ§ËËËUUľZ­žžž‹ĹbňľFşŐÓ÷9ՀŮótç+NŐáršěvťÓé4™Lţţţááá͛79rdýúő=g'„`RČJďŒň Đ dH.yg(Ȳ|á…ożý6::úă?öóóťĽđ:ąBěŇÇÖ9—žćűFňłŸˆkPO¸tÉRů¤‚‚>ŤV­ęŃŁÇM’ô7T":vŕ ű8N5ůŞd/^ţGâwa ŮäyäŔŢ˝'cbâ:t´†Ÿ×/R|ľżő śL1ړÁnw4*Ž6|–^Gň¸€°F@ ˘Â"áaáa†FűJ?ƒc3LÍ9ňg(uPf+—Ů ‰˘F €ńu ŞĽž×âÖ¨˝3ţu02MÓĘËËkzˆ¨¤¤ÄfłáM Âϐ´éqě7 ÍĆRc5ł°°¤0žE… b‚€€QÄ ˘-ĺ_И×'Şó§čU  …ë‘÷,$łĹ †˝ç@Űśm[ż~}ŤV­FeXzx1/˝OÖc˙6nܸ˙ţ‰ĎLˆMˆł-˕ƞĂňÖžŁ"źíĽąĺ–-[Ž\šňĚ3Ďb=ˇœCˇÝőăď?ˇ iŢö žÜ,°Á–& ÄŁéâYÚ}ž‚ĄkÄĐ˙}c˖-6lˆ­“Ľü4,KEâ DűÁäËŇuMŹ(ŠĄŇ#[ŮDu; űŤŃٜeɛÓënnâúEĄ xţăI3C€ˆěN{^^^\\œˇ–n.íqťÝľĽ=ľ¸-ţ˙HCŠĹ˙-0Va‡Ăa.krÎ<\ĆĚĚLăM•uCꄙ÷‰œźÍŹ.îâÚ°ŽŻ Á…\8I|6‡×r˛şĐsqfÁŇCkŹÜzăůü fvOeî&˛:đĐ;ƒť ż8-ůř%fv wĽŚŠšÎĚúŽëŒ/7ćÇţžd×oŰ5ŹóBąq°xEgÝ8 WQýĘĘĘfϞ˝{÷nŽRCőćSşŻ†jOAAÁŒ3VŽ\É˙cVĺůóç_}őŐ×^{íȑ#˘˛Ł™ÎŹ/úAmŰÄm¨ݎW)ź`¨ęT*ř8= >‚YóVđńńšĺNŤš^ą›ůB‘ű3ëşťrŘGŽyíľ×^}őŐóçĎó˙˜yšrĺĘ3f2łîÔ ýŘjüKC{v÷îÝłgĎ6ڽݚä*tfţm׌_ţÂM„Kˇ1łÎ,~_Í&ˆűşˆ´dÁĚÇO޲e vVfąóUńnknȟľeiÂQÂĺůężí˝~)Ď]ĆöBa/dg1k’Yw ű/œÖĹuÍGÍĚö?„đ(ň¨,ޤe333˝9 5ouĂ×çZze-nÚjŘ)6lذ{÷nŤŐ+ÉҋĎę÷=Č˝zɚ Y&ŕ<ށĘţ\,I˛”ź…*œÔö‰ yştUĂ­. ‘PY‘ŮYŒ˛}Fbœ?ţ™3gú÷ď˙ä“OFFFz2—đňPšóňťďžËÉəŸFĄ Ovs/Đéý¸8ýM¤x쥟Ÿ_˝zőÖ­[Q7:bń.ű¸×$Ľôf‰X,–N:11Ń3ěۅ^ K™••őĹ_řůůM˜0Á›OYOâjčgmpń܅ß~ß8jÔ¨jľÇ¸9U™Qšsä§=÷OŻk}ąá‹Ž† äŽÝ‘™FA!  {_:žçRqxżrrGƒ“|.œÁŮc´z5N˙Hĺ6”Gӌůěă'ŮĘ*’N_hݲŐj5FÄLŽ(œˆ˛×šŕ8"?¤ŇwŻř EXt¨Đ˜ˆźškQaaĄ˘(Ń<ŔápȲ\KŻŹĹÁßíÚÖâďG6ş¨¨¨Śl´'<ĺp8Ž]ťć^B!Ç{ůˆŻŔß6ÔVż”şŠ°Âćdç"qp’8ĹŤňšĎER‰0TÇřŇŠ‹§fćÓ"ĽĄą źa:Ă]ÂÍĚiޜ&…#Ŕí!Ú5Źĺ=NáfÁ*;_ł˙„ĺšWsů-ţ&,wHË´ŕ.Đ;´çˆwěň ŢžKşôÝź˙|ţKzó˘垮[쥗í-Œ>mÚ´˝{÷zżYs6¸**[y •ÜÖšýń6͏~żř“3§“ŒC{b­Ą‡îÁ˙PîÎ;„ë˝[ă|“Î$}şxö/OţÚęĚöŰXĺjC˝Ľ¨›çL÷îÝ;uęԚÂë7WšuÁ\ş$[Çţë_]üĎwŸ\:{Á3Ő5׏s9;Öť:xFęń Ü4D¸báŢźV0 Ł5VI‘x´_Y(Ôâ`ˆ`p(„|?ńĂŕž̂™Ď\:|9ĺ 3ë,´ář^tĺœ.}š\ě™Ă+ŸŽ¸š{Ň]áW^ۛŰuŠŞzíÚ5Oˆľćlčş^TTTłľ@-jQ ľ>˙RpŐC´Íf“eŮסşŞœç×ĚĚL‹ĹRŠC P9Ôśř5Ĺ 8h>őČ,ÉŤWČw5l#˜%‹ôqí3$]犡¨÷2ľlĺ8ž÷@|ë##fí༠YCńČ/`7,fHĹ\ŢϟĄ‹` ˝~’Ţń‡• Ţ “$šşď*J”ŁőʈăÓ¤4°šÚŻÁťĄ8F—â9*‚*KApŤl1IޏúúLëœYxixl%K¤&S˘ĘľJIIůá‡4h0jÔ(ƒUY­JÖ3!UE°BQ¤‚bônM3?O—h×ţýgEj׎]çΝăââ<•žŻŞuÚ ˛ [^@n[^YŕSíy˙­gHšŚĽ§§>|řäɓBăśwślŻ÷ó}ĄnÝsl ƒŽ IţŤńgívťWŹXqíÚľńăÇׯ_˙ś|fv É"§}y_<ëü(ąÉ+í„K'łL0ęL˝äÔu°B‡~ůłŃőS:ŕÓz/ŒbMŕë•Ôťżő ő˝šĆŠLĽe…îVKŹ]ěl—–“(VtrbÔ(<°œŐ2:ąŇ}pCndh8‹Š‘ąŠ™”á y+ IR9ç]<˘÷™ę2Ű×Ó›ůŚ"Š‚‚—ËsťŰŰnˇëş~KĽ‚ZÔÂľĆň_ öâ3TTTŐ,hDU*''§^˝z˛,k,HŤ)ĺaě‹/Ń}5×T-éěŮřř„ఐśçĂF–(řœGÉű8ý+§ľ§¨{ÓŹÝŇĺ;ŻQ6<ÁŃyąŽ`…1†Ţ[Îż€ü:%~t|lŻ>˝UE“Y&@›Hú17çůíáí†ĎÜiÝĄ°IÓJ×\˙dxƒNÉmenÉůŔoÖSWÊVwéő@ËMţ–Ăáp,]ş4''çąÇKHHđ&iÔ49şEÁ'ť×˙DűO(`IŐ´¤¤s{÷î˝~ýş,ËuëÖmŢźyÓŚMëÖ­{ËňKă§PĄXxó$Ę+ŚÇ– ÍM’Ô†sUqrVVÖŋϟ?Ÿ••Ľëz|||=ZśhŠ(ŠN|ľ5űäŘ×%ÖČŕxŮcšH’”ššşdɒ:uęŒ;ÖÇÇçżÎĎĽsÖÚ8ź¤㗝eKŞóI iĄHçwžŒč{=rZ{|RŻ8ďlŠŐ;ÉíćţŠižy™ďA!aꖭżGG5jÓś%łČËŚëÉdˇ!ž5ÎźËäŚűó×˝şM$j(8Č]ňŐ8#0VŔ$Q…ŕ61ô ¨Ë,*é ĆxuęÔš%˝Ň8ÁŇŇR???o–ÎßýŐŹĹ˙GQ+Jđ/…gő4ˆŘ†úÝ-7đńńąX,EEEFŤE¸čŃř0×C2)ęĆŻ)˝¸(Ź|ҙ\`9’Gُť“´/ř‚z)ď‡=ĄšžP†ž‚˛ŒNžb­uÜKg–c ŕ[‘›Bż<ÍG?Đ­s7Á‚$‰X€‘•^엿űJZĺöç‡Z˜ę?ôöŽ”ŕž ;šĄšXŠĆyüuyчăú4Jş0|ýşŐn×ŕöíŰWłúŁ,ËFqĐ3Ď<óçŸΟ?żM›6÷ßżŻŻŻ‡UÉ7Ȏ ČˆŸKĎźDšUÝd’Ű´iÓśm[—Ë•ššzá…ăǏoÝşŐl6GFFFDDDGGGGGGFFydá¸RÜ’„*•;šŚ•––ćĺĺegggggççççĺĺšÝîđđđŚM›4(!!Á“cÓU]6SđłRÉ珽NŠf2,öbސ$ÉnˇoذáôéӃ ęÝťˇÇVšne)Oœ8ąyó懆>ظE[TŽ<6É.ËŸ„‰ĂR’"%ďżŮďzÄËíԏë™Ŕ?/AÝzÔ˘-?=‚JŔW2腉üĺ{ÔĄGI—~u laŒ.2Qu " Ÿ5‘fâÂ}ۃž€5ˆsŁqЍ˜YĂ 0$€ˆQ’ŽK0ՉCÎIZ;ÖPPœ‘ú­ź¸EEE‹ĽŚĽôŔĺrľ–˛˙ľžĺżƲčršœN§Ńfä/œË˜¸Xłb:Ņ°Q%çD´žË]5 ô:\RqnˆÓ=0!‡+VQęId" Á`P+QIüާżVź77Äa—{>ĘMA™Śaî§X H řő§éž2ťmëď[:uęŻ ]–$—÷JĎnżXI#z Ÿ˝?AŔTúúËÂe]ßÝQˇĽĆşYŐŮť—ČŘ^—Ę“”žžžbŊ;ďźłGÁŞ4L…$IĹĹĹkÖŹš~ýú=÷ÜÓĽKoo •e5eÚźE{q<š,űKŢ΢ˇeu8ÉÉÉiii999ůůůeeeFŻD‹Ĺbü4+VŸHŐśh ÝíůĚ:WžâҜ.—KÓ4ă§Ůl Œˆˆ¨S§N˝ző6lč˝î{Ü_ĂňşĘčZ"˘~@č°H7éř'~čĐĄ7ĆÇÇ?řŕƒF-띐˝{÷îۡoôčŃqqqÂĽ“EśŻČÇč37ř—& š EĘ:–jéz&ěĽÖâ“R™Lčٌ^˜Î˝Ň öÜĄ3]<דĄ‚8ĚLwtăGŸAż{ÉâI† hڊľ/¨t'„ájüĆPóŻ |aŚĘ‡zŽĄ,Qą–ő˓î¸Č„ţŸ˛Đ šH’ĄXoÜ´F°ú/ÜJĽĽĽVŤŐx쨾”ľřkÔË5źƒQ†Yů*…X5f IĘĘĘ"“5™ŽS2YbHGDŘÄGŠčĽâzśkYu[7!“LŒ™8ů´V~÷ůB&˘œ‹ŠÇJ.~Őšë6ĘŠĎGŚŇŤ17~ŕ„ł´ř`óćÍ˝OśćTxfi˖-çΝ7n\xx¸‚H‚&`’n˛—NŹráŮlšă‰ŕç›óěúÂŲnĽĆň™\úň]nۙzdˇ‹ÖŻ,]0ۖz5śŔ%@dbŠĺ!ciĚ œ{‰gا„Ô˘üФŸoôÄ:Ÿ÷ąĐ*ŁÓUšęőâłg?l૾úJ˛Šú]ŸŸŻŞjÝşukzžgD‡ĂQ3Q‹ZÜľĆňßc™p:.—ËťźŢĐâ!&–ˆNgnVś5.˘“iS:÷Ľří$ŔUęž ˘ó—/šSbƒ†ë É÷óŽ_)ŕŐč÷ ×gBžî:w|ßőš†Ö‰yˆŻźB.![CJc8Ďń'&2éBȒtěÔńźë9}ďîżéő­ź,Ý/ľ:0ť¤ÂoCĄ bŇMPŚŇźů嫎‰ĽÍăýi˙Ző^"&ƒÍf[źxqDDÄđáĂM&Ó˙D¸GÓ´­[ˇîۡŻiÓŚýű÷7Ö\!X–)9Eôí(~ÝM­[(BpM&$ßJž§ć Ÿ-/ ˙6 >ˇŤŞvŁđy#RK$+”žÂĎ ç!<’˘ę2Ŕ˛L{˙ÜçrH]şÝÁ˝b@9uنGdšř}~öç–#kĺ&—ô}.Ś~W?H,™Č/DH2H‚$“­ź,3=3!61ž›×$*Uoô4ÍĎĎ7™L5•`=¸\.UUśŁ¨ÍVÖâ€Zcůo‡ˇÁđ”ůVđSœ›Š˘h ů‘˛ÇR8Íz˛\V4‡:[ Ŕ€RHŇY˜M&gggGDEJ b!Ž R;!jÇşHźŠVw!bdNFž WďFýVT÷7,ËŁvŕ,ćÓľ,8ëÁ:#î›=~AŚ;Ńy#fůÁ?ÂGlɐrÜ/‚IiĚ÷H]2RƒfŽ­÷éTë„{ĚN7YL†ňöM]şŒŸ­[ˇÖu}ýúőVŤŐ\őÎ2zVLÉôńńiٲe‡rss7nüýʕKÁ!žöň ĽiSŇt&şuŃlľކ[*řŕMÁ¸šc% H˛d ¤ňĎ)oHƚ5+w˙š§aنŁGîĐĄƒÇň´Őôü!nŽ:zôčÚľkťuë6dČI’ؐq`“$ĄŇdĘ.öéŕŸfU_<řTźôyc¨ …„ Iây‘ŚbÂ+Źë`ÁŠ"=w6Ǟ9 ?qE.zšŁÉr í?EĘăřĄ-{Ł8…Fżä:śź8$(şÍpͅ¨VäÁĽitu+Žlâkۑs ÎBĘ)K‰oä"K21ßT?ld‹‹‹‹ëÔŠsËVŘĆŻVŤŐÓČĺďţÖâ˙ÔVĂÖ˘VŤŐ¨ôąZ­FŻ­B¸ůĺ÷Ĺćö‘ŠTd“,EŁ6šHˇ@ţΜ¤Âˇ¸M„2sLݘü˘ÂôŒŒ„Ř8É`ź1‡“„;i"Š×iČe'ÉyK„"ŕGšÓ™ß.˘ƒwP…7ŸGfąŸĚaZ4Ë֗UL iäďšÉĎ5ăWŽĐ{Ř$13)Ĺg ÷ńÓú‡Ëľť;ٛÖ÷×tVäJq53&„¸óÎ;ăăăWŻ^’’2tčPłŮ|;á R뇙‡ ÖŻßŔC‡~˙łĹA&ßcĽ%]ƒŞ—jŠDüďôTŞĹxoXT•”ďó?^ÔůÂŰI‘ă#ƎçŕËUíJ<Ň}5JĂwtťÝëׯĎĚĚ;vlllŹgf„`I˘’ h:‡3k:‹tůš­ÓöЏ>şó™W|t%) ë*ý˛˙™‹Ü $Ŕ]÷IWóŻ^źrą‡­I?sů!öéFŃ?łľ?éŒÎ27˙•F=ÇŽkY—óň͍b"–ÍdËä?^Ľókápą RÁŹ`“ÔđŽÇĺţłŕĄWÚK[     ((čv†ĐH:7üßýŤĹ˙MţîÔâď‡Ç¸+ÇwĐËśƒ—Ęr|$ŒkRÎL ¤ žóźôH_k‡q8wĽP‘IÓax–Őb­†˙;aÂ!Ä×_••e˜Rˇ—éíŠéşđóóíßxQưűv•%2űóožůćŘąc.—KŞn%‰ő˙űşĺ>=uš\ǎűć›oćĚţ"˝äŠy„łoú˝÷÷îëç#ôJ3é= đ˛¸zLVVÖ×_-„˜0aB5KIDn?çë9°ŞA‘éܕÂvÓ¸ŢŚg^ńš$I‘Đ ßVýďĺᅦ 5ťěÚ8[Ť'ńÁԖcĎQÔ6ś 0d‚ŚŇńăźä["SvQq^˝zńn*š†…=éȏpšÁ °`nՅ: sE¸ŁšNŽ Ď›sŃ’äƌŚçA§ŹŹL×őĐĐPď Żg fŽ|"źšöťľřkÔz–ľ¨3[,ŁŇÇjľ2ؗ”Yč`řäÁš äďfý=>e‚ięjšěY˘ŕ÷7_FÉóŮ!ţ wGYęĽdînQr5á¨î@ř×mP€€‡Ź‰IgÎ7 näçߟĂb)<v“â"p˘ •nçGţ ˛˝ŐćXKő÷Đd"7î)E<ۈžš€G2ŒžÍ2 jřň%6™üďx\ßż ŤC‹hM‡,1Ő`U΢Ůl9räĄC‡–.]ÚŚM›ž}ű.ćí˘˛@$I|ü¤žtVűziř¸ç ŠNž<ţçŸnŢź9>>žqăĆ 6ŒˆˆđŽ_ő.ĎÁ˙ĚÝôś­Ţ¤ąóźźźäää˗/_ż~ÝÇǧmŰś#ZѕݎfŰ1ßŇ%Cß{ŸŢqWˇŰ˝cǎӧO÷îÝŰ`ËŽ&ŔžňĽÓîGš°ÓŤǓ˛î|Ćoâ#ţŸNd]ƒ$W=o1řţ<ňdŹŔĂťaťjéÖ¤üľ¤ÜÇ&_bfÖIčÍ|ń =9”ĎĽŻŸóЁ¤ÖÝ[–űű”•3€MS‘›‹˙Hîó&š ‡2˓×öřş%ń>üţ<ýô?{œ$Ů0„•'UTTV30îš nĽ‡ĽZ‹ZüQk,kx-%>>>f‹ŮhŠAAa:…űe†F8VrͤŘ …Ľ02ƒľđ5zŒGÉW|ášŘˍŠ)åÂ'ŃŘ Yca"I–á*Ф)‹ŠMŽ—vâřń>Ý{” Ҹ$ÇĂ]ˆËůČy…§n˘˛śÂç¸tĎîźóÓJ÷ nœŇÄ8¤qă3šœ)’Z‡˛Ę 2‘"CŐđéD–(¨Ë“úuťŁAM{ Ŕc…]ştILLÜ´iÓźyóú÷ď߲eKŽj›\sŠeAř‡oĐĽ'ĹÇIš*ÂÂBűőëׯ_żôôô3gÎ;vlűöí‹%&&&11ąaÆĄĄĄŐęhpłýŤz)UAę7,kÍxiaaarrň•+W233].Wpppýúőűôég\FĄ ßx˛ö˘ŇŻü†Ňű螸Ťą˙sçÎýńÇáááO=őTXX˜§k4Ŕ‚‰şŔˆˇńçN´îÄĽ$öMéóBČKc‚>™`x™ kL˛ 'Ď ă,ëCĽ]ńěUŹť‚KMńôGÜŠ= Ö5", cř@ B"Ż'4ˆ ’ë¨.aö•\6žş ٌŰJ1 PFzVšŞ„i ™‹U#éŘtšŔŹɕ*Š˘x ¸źsşž›ÜápP[×S‹˙ÔËZÜ3›Íf§Óé°W.(rŐjb…l%™™ 4 °Q^fVšŻĂßę3„c÷P˛ą‘‹ôfúšť|z"t˙n>Ů ĎŁ9¸˛żý6Ę<‰ YO„KŹ7l’XPV”|ęÜŇö%€ćËć_ih8îyKVŃö§đÄ@ÚтƒgĆľ_•ŮőÜćë$,÷O*2˝užîěîĺ‰É0tbI&MŁO&0(´ű}ǜó}îlŞ ™řŚÎŐR˜ĄĄĄcÌ9ţüÖ­[?~Ď=÷„……yl źŹš˘ °DlýóW ‘Ä@ĽVŻ^˝¸¸8Łf$55őʕ+ŘşuŤĹbń÷÷ ‹ŒŒŒŒŒ 1źTÚcn(řGÁǘp—ËU\\\XX˜—————WXXX^^îrš† ’ŕççW-ďH(řyÎEÎ"XCÁFř7ÎÚ0‡………7n,**8p Áźô~PH"؝ţ6oŮNJ8s#gҤ{Ž=üFŕ cB?™ŔŞF 1tb0H/WŘüÍ-EŘţ8ß1ŠÁţ-[:pű6ôđÓ¸w$‡‚B€™ď~ŸfK/¤ŒŸâŒ‹ic°Cd \"‡đ˝ó) †YŁ gEvVVťÎM+FUhÔIż Ó„Ęz.§ÓYVVcLŕ-ÝJťÝ.˲ѰúďţśŐâ˙2Ôň,kq\ĽÓmłŮ 4ƒF¸‘ü‘H*(,´WTÔŤWĎÎZol:ŠĚmtÔUY˜HşÄeÝé7UŐÖŚľëßZWĚ2IâĎľ8 îů"ľůœu•dĹĽn8{pt›k&÷CÜhÝĽąPHşŠŹFˆ|{×r`îBőşŸ¨–Üíî^żĺň}ťœţŢÜě7™[CźëĚş€EĆ+óĽŮ‹ň×˝}ečŕ6 ?ćęÎâ-C‘ťví:uęT‡zőęeԆx\RMcEĄš_ŠËżĂĄ32XbÜđT}Œ4źä‡P%ţÜę܌űßÁă?˘?ö“ŮĚîőĺçL? ˇ‹L2“L °ö_Pö9ť’hłţóĽ1eŒ|XN?˝yç9!ˆFB†<Œ‘O˘I+–eŹúž$kJëŽ)őăşK0Ë&ţ}"Üf}Ö ZâٓL21óšsgCCÂbăb–ŕ;žĄćĂ  ąOJŞ”¸KKKóóó3wčV$Z]×ËĘĘ&ŤŐjľZÍfłŻŻohh¨Ĺbńž4ŢŇxß[¨ˆ˜Á:OŔś#&“,Ač‚$’$Éáp=zôřńă!!!ăƍ‹ŠŠ2şVŐx˜Ŕ.•^É ę2 -ž’> IŠqT’ŽÂVA~Ě -śy(_ ]pÂk´¨ˆ—ýJĎÝăüjZęŰ3Ü÷<ŘŔ´TŹYLë–âb ŽćăËyX:Ý{ŁÇZž~:v&“Yw÷ 7…$@ű„VJ ¤Ś¤*Š\JĎňěJ6űŔ$QqQ1€ĐĐĐjXxŐřŘívłŮ\k)kń˙ľže-nŔŰĺ2ş1Ťj+‹ńŽĂáČÎΎ5™ÍÄ8I…^WLƒۍ#AĐ\îSçÎĆ$ԋ‹x‹żc‘dŠÂŕnˆžĎB'Ie˝6\¤ÂÄRëQqoPH°`! KłéěË8–ÖS˙ű9^ƒP ­9˝˙˜łÉE;$ľŰű€–7#ăœ9MEÝ9jľ¸‹ŁY$‹Š ¤9‹ >ytó}ý[6lҎPUé‘(ÝDøvíÚŢ˝{ Ű´iÓĽK?IŽ]ÚS#ĹĄ rd¨,D%˝ň–H^şwžwn™ý ď]yó=j“k `&‰|­)G˙DĄýAŽŠC‡>}:,,ŹG 4đ>ĺN˜ 1čň…“ˇŸűlóÝ&Ÿ°ô|Á.ŠGWlŰl”î‚o{źŸ{Y2Ł˙4âWóŽŰöžýşją$œě؈ŸžĺýťŠHeȗ´‡m;č:C'Ư̊_ {†/ç/[ł_ɤ˘Ň˘”k)-[ľ4›,$ńŠť)ś+BâČ\œ;ˆ{Ţâžď’ÓáÎĘΈŽŽ6žonyťşÝnŁťŽ÷=đwájńj=ËZ܀ˇËĺăăcˇŰM&źŒ(źq˙üźź˜ŘX˘‡ľE¨a„ˆI'&†j15ݟXp-­ČÇçgßë`D€A ”~Q‚ä‡ě1ÉIgďěŕó˙´w×qr•çŰŔŻűœŃu—¸+1ABp î. Š‚´´ÔůU †(´P hR @I‚ân›M˛nłŁç<÷űÇٝl6CŠ÷˝žşÝ잝93{Žyě~rDŐ󈎃č8);FűŤwkbN=uMŤóÝ!Ÿźóń¨!Ű>ş°:ň;ÇŹ@ë,YqšžY"áË­‘_q‡ßri8OËnxüxGŸßwëÖ˝÷;"'Ú{UĽB1–ŠŤŤWvđŕÁC† ŠŠŠyë­ˇî˝÷ŢQŁĆsě>ޓwÜIÁŠdŇĆŔkŮěz]îiŘeéBĎ÷ŚĆ¨ ¨Š1â<ˇ,Ůő˝ënKězĄďž3ŞP“Öh™Ÿ(íw‹uxë{/żˇlĺ˛ŞŞŞÓO?˝˙ţ=[ŔŸľňRŐX–ŐOôî+-núΟNźök…żüŠž8Ó*z3îÇźYv†,;âŞeăÝ׼vmŚbřěšĎő?oƞ€m‹1꺎ŕ˜ÓôŘÓeĹb}ęźôÖnS;¨¨ĚëOľǁ@9ň&˝˙$ůôŮDxŸőú ‡ĂŽŁś%Áýë%@ÚŃňRěu46Öçĺĺe“˛Wť÷I<FŁťNš"ú‚¸Î’v’mE"ŻůŘkŮCśĺ źźÜqݖ–[,Ćͨq Ž¨ŞZ"7뢽KŢüKUű ď­A`ŻĂňˇ{ŽĆX1嚌ú€Â~•đaĘɈČËşeą4r†ĹrU-ą,BXXn!7ý×]1ĺ`T-4MFĄđ7şo“œý:ń÷˛f°őôŮî[^Öř˝łŠîúëyëśăĽçŰR[—íwH2-šŔ#ĆU#V×Ö[Žyîšçž}ö9ńÎŚ›ńěës҇ťp퀕)ƒÝE`/҃՛ Ř" €mYvŻCzţěç<_Ů;ímś–ÓtÜŚÖ9é'n~ž%ŢxÎŮçž{îšŢĘě*šĎ_yY[[7çůÇÖl“pöU—ţrši!wüAO¨Ĺݕ8vœ?Ôv‘IĐGďÇŔŃ+ÇěQšäÝ=]ă=żâ8 H @]W\WG—ŢîÜôĐ{?řżŚƒD$Ú]EO劯ŕž{Í@Gˆo§›ĚŞţĺU%Ćíz+ฒŒŁeĽrćă((M-ŽqËËËł'¤çkÝ5}D$['–Ýiô%°Üí¤çbž@ ŕ5.{í`Üłq‰Dęëësssƒ Ľ°Ĺňş-QŮKĘJ4ôxÁö§ ś9bʑ˙ ö}Iާ‰ľ íßĹÇdÎÇČ31¨¨ź´­­mÆőűřžőń m(•źť°!BŢdZ[ŹuhżďgDGő żş˝O~yF ë}i|Hמ!ƒž­ăNţoČöŤÍ'Řg}cKÎ/M9őkĺ'Ż5u¤úöŻśí€(ęřž,\Ş­Ł¤(A‘Žy¨=k ääŒˇÇÜżŽhŹOMÜç/ó^˙°­˝%//ĎÍí3=Ďá9Őj`ŮXű2:˜xŠ7K_äG{ţĆ^ŤBE¤ŽŽnÁ; ćź4gKhCßĹŁ÷0áŔk&ćEó]QÚŤâvŠ ëfÜwź˙ђ7íÁS~öř´“7ĘëđÎUVKĄ†~)ć'x&ÍëPł o}Š“A^ŽŹ]ÝţŁkĺö]dF˙ř‡XţŞúʀÁ ăŞBl[-Kǝ˙ÖeĺѓÎzÂŮČɅ1bYřč=\z5†B CŘű"X*öčľů}ÝeˇTňLŐKŠ%[ŢENű_%ÇÝŁU%™H54ÖUWWgëőôZ¨ăMX‹Çăyyyť>p˘/ŽaIťá]:˝ŒĚ–;É~ =.Ż^?mssłˇŚw€@AÖ$”ŽGń=˛ZaââÔŁł• ˘˜'ua`˙Lö†ŚŞŞş˝Ža^Ú۫ˇ§4u&†_ Ă5–ˆľ łdůŤŘ_,Řoůö‚9‹–YڙWTćŞ€ź´˜#tî;R?U+Ż–1×ʘFcÖíťpy]ę˝'']pIujˊĽď,ĺ•"xźöżKV\$ śjźL"ŐČ HvŚŤ%ŰBZőúËßř^äźs÷*..Ż­­Y°`Á’%KRŠT^^ž×ţŢľ}Öëdîö$ń°ěułť$€ÖÖօ Ξ={á…999S÷ŸvÔ!‡ňŁńťíü+aŰ*"–ě>&łŸX–ľaÆ翘śU÷éUƒO›kŽŹ‹×Hç/ôĚßHńp *ĹůéGkeíf­ŮŚó—[GOYű“ëë˘Ń~7ü$˙ť×ĘËŃR/Ď<ŚŻ>#‰8 A~Ąˆ¨ˆWß˙ƒÜźŕĉ“–Ľ–ĺmȉÂB,zKÓ52ý0Œ9Ijˇl­ŻmžzĘŕ‘'Úąí(%^YťaGaŇWŃކňDUˇnŤ-,,ôVîśVD::h­Ô[ĐIDAT:BĄ7­¤ż'řĐnô\œŕmťëNF=ŻG[śl …B;f¸’ ÂşRßšUKŐĄŰr.‰ ~źxL‡ę㰞” gá áő¸‰RšR× Ś­+ÚćÜSž š‡ŁDĽ+j)D$g"ž[ƒŚÉŚĎGÖqOl”kŢl˙MŢěQŁĆŒÝcGMÖ ňę şŚĽ3eĚĹ:<äÚó›~z{ÁŤŻçŸóŘâ˝ę‹_­UÝwôS ďÖWb€bÉ9ŽÁči¨tĄ–ÂŰçů™gœ\§­ąrBśQľD’Éäʕ+—,YŇÜܜ““S]]=xđŕd×ÂgO]Ď?Ž]/ÓĆéšŕS׌Ż<Ú5ÁgˇODözö{1°yóć 6lŰś-—””Œ7nÔ¨Q‘HDŠ…T뇠üv”!ę(lŮí"ˆ%mńś‹ßŞ]U?Ľi˙ ď^ř'-?HűÝ$s#rŢŻuÍ}Rë@-ľ-IŚőäďaÎ2fŕ6űŐč oÎ=BĆO”ˇ^Ń-­â lEßBy˘žsŠLŢß,_ńÄ*-˜’Ję€!0Ś+DU! ľôŃłP^*űý¸óľ[ťŠ$Î‡­–-ĆíqŢ2ˆ ö=ٲĄqđ1Éňü~Ýő$k÷ŢsŢĆć=öüť˙źčż'řĐnôlmäććĆbąÝvƢűj^YYYSS““““——ˇc…ƒhÖt>…WaŸcĎ` îŽÝřřؤ•…b2Ę 4Ü.‰‡eýD- Š%ŠeÁ֗Ëb&'ó ”i– ¨ź 5kĐ •2 úťßÍ/HŒ<˛~ÓőÍ-‡LˇĺÚ‰ EŃ,Ů'Ąn$Ůy8_šFż ëć3Í}ŹśđŤĄďŹ>î…M§ŽÚ÷ůÉľŤDsßĐŁŤ‘“Ú5’/@řžx&rB–ă¨eŠQ ‡Ă&L˜8qb,ŤŠŠŮ°aĂťďžűÚkŻĺććöíŰwĐ AUUUyyy]›írĎ~â}Ş^m¨Ŕ‚ě2ކď]ljĹbۡo߸qcmmmgggNNNŸ>}8ŕ€ţýű{'݃—p$‘üł´ín)=Û hW™@ĆU,ËĘHúÓ —?żŚŕĹA'l8˛ł#|Nƒ™z;ޏÚô•ťQâJaƨ8މ†­?ţ0yŘ×Ű?YSąjqŐŔ4&Śď='żź_ö= ŰäšÇńôƒşd™lnÓűÖ§“ą{¤ö;˛ôŞožőSL™†CDZoŰu3b‡P^)Íukׯi|kl ´BŞ*€ZöŽŚ°€ĆufĹÓá}ÎÎWŘerrvae"‘ČËËűœůĂD_[–´{=űľ:;;]×Í.‡Ç.ą"‹Ĺęëëűőë—]mâľĂ˘Š ™ƒľĘ…XƚłŒ đ q!ö}˛ú2]`$>ľÔÝŹ‹ľ –}ýęňŻ6WÝgbb śXGëœŮ˛ą…‹ôÄ ÂŇëßǧm2÷ČĚËŻÎËM8î7#˙˜Ě,™v•ŒqÔXŻfŹ€ůĆ,<ń2žůđŚ9ĺk_mQ“Ü<,7L_o&ýŇÚŰQcŁ+˘ź­6–ŽpŽ›ŚŻźo Úľb${rĐcżˆ´ľľŐÔÔŹ_ż~űöíétÚśíl=ŇŇҒ’’˘˘˘p8ÜłŚůn—ŽdKŔcRŠTkkksssSSSś˛ëşĄP¨ŞŞjȐ!ýű÷ďš_wv‚O÷˝ą[ƒÍ{Łß|ěoŘOŐž„XâJŚŚ~ËŞßo’ßőŰ8jŘ!‘-'čŢ/ę)gĘ}_•LJƒa9˙§xv>ęŸÓœˆU¨Z–ŐÚÖńÎü7 K:gę‡w˜dތ=K~vś>0W~<ĂúAUG濢źoϕ흪@’ŃxŻ,”QăÔ¸]•]EÄͨÔš×Zk—o=ĺóŕđ~šUZ1FŹ€vWěë*ĽŠvly_Ăů֕+4\5ŮMl{{ťmŰ=ë1/éKc˒vŻg_NNN[[["‘č5;żçJůźźźd2šmŰśx_ąD: Ľ â*ÂŐ}Ş\w[GÂáLČžDGL“ĘguSt‘üÓ0č;ňńbl tŰ“­ýŕý÷§ě˝wĐ|˘MŻĘ6§b`˘i1!ČĽŁeßçuekŕčĂ_ţńâ™m"_ŤĽřL ŞľT řłlşŰ^ąŘi­š)Ű0ňĄŻL|ëĄA-njœ—ŔÚ˛yÓz)R=PC˘ŞŽą,}ŕ7:i †ľ\–ľă-BĎ*Ţ)*,,,((đ Ě&‰ÖÖÖŚŚŚĆĆĆĆĆĆőë×' ŻôˆŘś‚Á`Ŕ ĺT9[6ěӑĚůËëo&ëěŒIg2Çq\×UUÇqź5<%%%Ç/---**ŠFŁ=ĎüN}żWŐ隯ä"w8Â{Łőn-¸GŕBÂ‚XâHz뚺­wśă#q@Ńi˘´v°Ů÷b9çXëÎŻj&Ř şőĽwĺôCÔq X555ďžűîĐĄ#&OžřŤ|=âfi+ŸźŠ#ž‘kŽĂ°~ČdTDl[9Fšîüĺ™%ďžŇoţ+ĺ7šíIЈJ~AWŠ‹c,ÝԔ¨¨¨¨Ş°lYMŤĄ;jŰz…î`A‚PËś:tůŸ1i†¨Qą{ż{óÎyWa n0B7†%}ŚžÍÇźźźŽŽŽ`0ŘŤJĎ5řeeeŠTjűöíŐŐŐ]?1˘ Äꪲ* …bMM55EcƸ0#ľŕ;2Ţk†nE|ś‡$'Š™ŰŹ?œ21ńђwŢ{ď }x$°Öє%áŻ`8śŠk0Ź@§Tʝ+ĚÝűIjҀĺ˛pnŒV䇝Bj×Iâ|ĚEWő—Ň_Ů{OtJęgś\‹š=/ě˙ňC!S‡ëN´Ë× m{阺ňďD'P8Ë  5ćžđ nż_˛—éž§e×~żěšĹœœœh4Ú§OŸžÝ§ííí‰DÂqœt:ň$´o ,Ë*--łÂyĄH0‡ĂaŻĐŒ“Ţ Ϟęlť3űŤ˝Ő™FE€—čÝwÖk‹ÍÔş‹úEW#Ěľ2 óŰęnNXłó ëWň3ąĎŐ`ąŮŇ,“NąÎ8D߿$ý*pÔŢtŇpA?ş_Ř[ sÍťď}¸ĽfÓţűďߡo?@˙ú•R8@sŞŒo\Řők˝É;é´óţ{ <éô’ŸâšóeÄyorrť‹=ߓmjZ‹ô)+L&Ł%ĽR>ŢhĽtW[ ÉxŞ~i°jŒŘAl_Ěv~5z'<™LćççłAI˙( Kú<ŮŤs ˆD"ąX̛őúYƒ—ŐŐ՛7onii)..îšćÓ˝‘˝—”ŐŞŞ*miYľjŐؑ#]5FŐkd”Jx1NěT§]2Ťľ­ÉI{M^źčÓ9žőĚ~ۢŐ{ĄĚŻ<¸ŘŻÖŻÎÇÝ{ăąŔƌ‰‡%˙  Á9[_œrĐŚ8÷p˝ľS1č%U(AcŤĺ”,š™<ŰGÍČ=”§żĺN8ŰüzaÝmEËM˝92ţÁ7dŒ‚Ď>…â"L?ĆrŻlAöěđYu|zÍî ĹĹĹŮM=^7l{4´bę„Ă{UđÁÎsp°Ëdtסs ,%Á–Nü~ ΂áP¨Xp ň—ÖBm}—˜Ć‡S͡ddU~żŁĘ _Gđ Žz~5uÖ¤Żč™GâîëäłqĎóxçnőö˝:l˛V ŠrţÍ7yMUš~\A~0íí2ç/2í m5˛6†’z (ěZ%Ňٙüđƒ÷‹KŠ&ŒŸŕş:z‚ö ×܈˛JD˘čľçčĘUŤrŤĐˇoßL\#}&ČYĎi^evcçŽjé­m-ÉvgM˙÷oÇa7Ąt„–îŕŽ‹Ĺ"‘Höó’ţ~,J@Ÿ§gĂŃ+€Ç{.<Č~ŇŐőjYUUU^ÔŠžłťŻňĺŁFe2™ľk×Úb [ʐZeˆ ”ź=´čT4ůĚřq>nŐh DFŁË¨ęąýQ´~š>19@K.2˝jŘ ÷^ëźŘěĽŇPŠŇtZĄÓpU˛ÝůůĚ4ŽZŸžqü˜†Ą'Ű}Œ‹ƒQń‚ş1|ÎńŁŽĎY8O}˙WńO‚íE¤ˆă`ˇšŐó\őŞ?ĐkI‰Ů™¸ŞjŒŽ1Fu§°ó*‘ĎŞT` ř 3ŢĆŘç´*Šáę5 @,#!¸™nŰuŘ0ԉ]Ş<žpŘĆpŮ %Á 6ćĘźgwtÓ:FŻ8Mß{SÚŰ[Wʚßo@ĺ„ \W]€ŔÖ×^Fa1ě€fŰë"˛víÚL&3 tDÄB:.CŽF^Ľ]IŮ5vojh.ÉŤx€5áŤz˙4i݈d›ţ"Ç˝îëž˙ÝIô_aI>z^—óňňŇét:îŮ%ˆ{#‘HEEĹśmŰv= čj_Ş*,kôčѝ6lؑ(Łj Fŕ¨ńććŔÂ[eIHŽő ŽůƒlhEú]ů)šE0׎ŔˇWtŹAb]„‘PLŘc\ű‘#fGśrqjĐ)t`F,E@,ŘpfžŁÖˇÎ˜^ß´lÍuĹTkä&´5p֏ŰöŰ{DŕÉ;­3Mžţ×ÇIŢĂ×ўv=cޗ ŕŠ8=ţs˝ŽI/ó,K, ]‹9ź >ÖçTđŮőrďýćí Ü˝S˙Š}ŸŐ?,Őň\8źë Xp2‰×uL{)yL‰ŚŚš˛í[í˘›TŞU]q2eK&͐łÄÝ×âţżâ¤ËŒâ•÷ńÝßi0€@Pšššöé3wĚĐXňţęâ‰_ľ˙’vÄ-Ď=ŒŐAym>ŠZtŔqĄuq<ţ Î8GOŔ+O-/ĺU?…Е‹¤fŕŐËď~ĺlذĄłłsԨрU7-‘Ý㍝MiI:•Ţž}[EeE44ž]śŐëk7=ęű‹ˆ÷úĚËËŰőŐKô÷`XŇ’m8ćććz“c{őnőĚĹüüüâââÚÚڞ‡uĺJś7SŐśíącÇśľľeóę•ţ ˆ% KÄ@5S7㌏’G_öAĐŢP—ŹşB瞍7Ú$ؕĂë­XA˛žt ä‡Ţí<œW‹€•Ť‘Ąóś}úáÇ0jY–z“)ŘŤáX}g~<ő¨ÎýfX›śE]KŽ˜€Zç ~îůČÓďʐa9םÝw@úg7ÔmÚPoY ˛?vŐĆëœŢą€Üů?ťűťçő[ tuťćĚďö3G ‚˛žS?n šnký Ż× x<}ŢŃŃĹ9ϝemĺŸÔ(\ ň’gY×ŕĄŮúŇ;ú“oĄ´Xaôćűđ˝űeÓڅsćž6h@Ÿ×î)7čÄś:\ü2âŤ:îDůč#l°‘łM|DŢޤϞŻž§Q§ÓčŠMEˇ˙źúŔĄúÝËđÎk˛~•ţä:ůx3ŞúíԌܰaC[[ŰŘącťŤcÖU@JGBUĹęę}u]ˇvkmqqq~~>,mŰ,šVƒ†5]Ż˝ěašššŹK˙p\:B_HĎąoŸŠěBď]§ş‘úúúd2Ůżďë"’Q ŠĚšUíţg:^ž|yaaáŕÁƒ{śS˝˛ŞPKť‹|śvlűxĹw†lzjp &˝§TNÖŞZŤńĺ7GŤ¤n8¨ĺf3‚ZtŽĹłmčëňţ9E|źéŻ‹›uď5śŽ­h&›žk.S™7s9gćĄ *lˆˆă"`ĂKĘłŽŔ× ™ÖyŸĘă5Ú­2ýş~ł ƒÓZő؏ËCŃ@[:pĺ,yüŻ@˘`:“:ôtůó :v„WľÎŹ]ˇhĹłiŮägţ€ek4$ąĽÉEaDß\(CFŠëÂśť’r̘1ĄPČͨ”—gj˘YNynZíЎŤSMM×caŒZ-ň‡Ă°m!Žż{] ăvĹj[[›ˇť‡*éŽĺîč éyŃ …BétÚqœP(´ëw{öŮĆbąX,VPPŕ}ňت/‹$DN龞˛˛˛-[śÄbąŇŇŇ썈ŠŠ `ÁR@ŞŒFňűU ŹÍ4ˇˇ•äV]ŁŁVHËÇ9ëąhň÷‡ ĺř-÷ĘJˆ9Y‡4hčŕh8˛hѢ5›†Uý.gËş°-S†ť…Çě§[›äëˇČ9G˘(OśŐľ—10FÂŒ›Œ žŽƒŽ ­ú´čޛóű]lőšU–ŞŐŕşjI4 d—Ć{ OKľ°Mő‡Ŕ›" TOŽŠťOÔnËÝíŞ×␿BDDb‰TóöÚÚ5ËÖ/˙t^Gy{ gM{pxżâG ß´'&— dÁŐîýH-镔g;ŻŃŒ#AĂúzo¤ ŘXf2oii҄–×”J0zČ$M; Ëié‘űHQ9"6:ßÁő?—ßýŞ *ńwź—ÉŘČ1FŐq ȕłđř,|ˑraŮÝcU5.,K‚˘"¨oŔSŕńßJMMÓč˝Vrbͨqéźh~~NuiieAqA~A~8˛ş/ŮűĐě fĄ ţz5đ•Çá$áíuœĽŢç’-ťu%•Jwtt´ľľ77Ôu6m‹ut,é=ëż04˛şŹ´>T‚#‘J DmŻJ6×aŇů8ç(Üů <ý:&Đ!ý ŽÖؒŋ7nŢş÷¤a&gěWˇl50ňýËä'_ÓLÚŰévފ§ĂËŤˇłXŹsëňeËJŠ6ÂuÔq Š›Öbů"d2˜8†ŠëˆeaĺŠU™tfĚŘŃśmW!b FĺŻW"نSë¨eďčŸčׯ_WĎ*ĝ ˘Ůr‰D"•J}VoŃߏKGčo“˝ĺĺ御ˇ{ëë?ŤReY}űö­ŠŠihh(//‡Ş7­1 ŠŘŮ#m{Ҙ1M+Wś,_^:|¸ˆŠ+ΉúâŮx>Ć?,GˆB˘P5ýG )/ÎY˝ä⺲ # ‡ƒO \ś$gŘř8}‰¨“”xś@R¨1śmí5iâúсuÁ׀ŔéŐÎoײźˆ7Łw͔*ŕĐňÖCÚˇźkABvŠ%^Ď) R^Ś_˙ś^ů Ź|ĽôÁYS_˝YWk9đĚځ{ŐvĆ7§?IKáp(ż /ˇ° _AAtřpDŁśă •R˲l[, "Žśˆ VbŤˆFáB `R’ŽĽbímímmmmíííąT:  i´`Eő°óúŽŞ,ŢżŻÜ2L÷ ʤ7ąt›ŢR‹sGJ8íŃćW@ l ëZ°˙ˇqŃřĺy:k.VnÁé‡"eÚÖÔŹŞ­ŮRŐˇęĚiÓmä‰č‚‡őČďËŞUňÓŃ–Y_A[‹ktÚPůÍ}úý#‘Á÷Ż–ľ+Ô fŽ;süy3*!jJ×,VÁŔá8źkŽ*ě@fsӚÜ* (ŁjjŰÝVĐk^Ťw×âńx˙ţýłcŞ]ŐúźĆ¨—”™L&‘H0)韇-KúŰôĚĹT*Ç ˛ecwŰžt§ŚŚ&??ż¸ŹĚV˝xTä Ł{edóŐukˇmËËË++*Ĺ6$ž•€…uƄať^§›*T#–ՏoŢ\S^R:°˘ŹĹŐß?K§Âî/Ć}TV&Eű ďk”PM DQŞňźÔ}„K°çJˇÔ„œŤŞQ‰Xz÷(œ+—?¤MĺHşbŰ=ÖVz+ůjÔą-ÍX˘ ×ƜßHŕi=0Sgˆ{Aşľ*V×Đśecsg"]9~\{aaIgç~55 `  ƒ´Ëěœoĺ zCN‹'[\ÇÍd2'ădœŒëşŽă¤Ó™T:ĺ8NĆŐܜČŔŠ’ęŇÂhn^ ÍŢŽŻoC@ĺę‘:ŠDŰŇâ/Öȇśĺâ("cş•×E8¤•ĹrÓŁZߊY3ŃԆŸ<ŒŻ/%yŠEK6¤Ó‰ÁƒWVe2ę:ę)ɗ…kôs¤Ş­1\z’)]şIŽžŹ÷܃+Ż–O?ֿ̓€ ˘ˆŁGëá' UÍd¤łŽ@A1ފ…PHZcąX߾ՖeŁŇ5€+j)ħ1č`=őwPWšZ;::ú÷ďżërɞ˙t]ˇ˝˝='''ťŻó’ţ–ô7Űu˛OAAÁŽó{–Édjjjň‹ŠĘKJfŤ>š-eĐ}h@$¨j[$‘N×76–ĺćĆÔY…ÄɋЍh.$¨ ‘”j'`a‘¤ënŹŮ’Ÿg'×öYÔ.牄‘”8OÉ.ŕŽGĺ(uŔyGˇľ!ŘűIĹT-n´Ćăľľľ™tşoUU~qéKWߥO͑C˙ ŁĘ5ćJȆŁČŘ@Čk÷  0ŽÚ"9–WyËď’77Hú8Ý盲ďDIÁł.śŐޤť * .’6ĆÍÁ„GąşgÉ ¤ť÷ľŤ lŁ8Œ´‹—kđ×Íłĺđ*ÝŤT CPČM‹a[rH•FlY߁Őí 0„Óu‡ĽhƑâ<ŹŢ˘÷ÎÖoœ,ű•[žÖ…Ť1¸ZZ۝sËTWDӎ#™ŒvíŻ&ę8’ŸُďE¨j[§ ŹŇKŽĂď”){šÍŻžYÚżŘGäÉŤ*‡}Ũk‹%ťŹé=O0źß¤jĆíËą1†Ę%CąW0°,9çS,oÇÜi¨P¨Âąp˜˝…Eřô0 Ăx5ßuŘűœ:MnťŔ}ôýţ}- Myńś(zÎ účŐ]S˝eŢÝňckLĎťCVŹÖő qß,œ3Q&37=đANžőľŁ§<6G:ëkdö3xę,^ČľPP„=÷Ĺ_ՓOĹu_“cOoą÷ڜ`uinŸîœěů°5{-Ż||Ϣüť&Ľ÷‰W*˝ç¤ž÷ŸýďR˘/ŤŤŞ7 Öó+=É~L&“ëÖ­khjrUÓĆdŒÉ¨ŚŒQŐeŞ7ŞîŤ4ŚĐ˜\Ő}ç;7ÖÔnő~ţc†ŠÂQ…Ş­zœęUUMŁŞżNgŕĆ­—ď›ijbŽQŁő&q‹ĆǙ´3˘é¨f ËóőšĹÚ~ťę5ŐBcúóMםżté/ç/˜žzM_M╣Ířzó]ŐŽQ×Uc–sŁę>ŞAŐBՈęţŞ÷Í¨ŚŒşmwőŁ}ToŇăĄý†ęřR{šb•˘ŞFSFMššQÍMŤ:Žşiu3]˙eҚJŠ›Qď,ŽhŇKß҂?h˙'ôśO5‘V5jŒfŇŞŞ­VÜĽ‹UU3éŽ/žşEń;ĹÝćĆUŐtƍŞnŽ3ĺÇęŒ˙ëhŰśčOÍžň'‹W,]Qť=š˙ד &ę‰ßŇLFŒfR]÷ÄIŤă¨ŞilŐ o2‹V™ƒŻŇ´&˙ďşäÁăęëW4כ“ŚjSƒQU×UUu2úö˝ěd1Đ<˜B˜ÉŚ:ó‚Úd˛ŢuÔÍ'c˛×ͨ›1nFŒqŇF]mlhZˇn]2™ěőâŮőU×ŢŢŢÖÖśŰWŃ?Òţ.ŮËYKKK,SżźLĽRëÖ­khhČéysUUľÖ˜rU3֘”jŚŁăĂO>iXłć&c ZíƌS oůĽQÝlŒŞ>iĚńŽyCő‚ 4pőˇé”şnJUYcLD ŒVióT}v”ţé0˝Ĺ4˝Ş 50ćűŽŤĆdTÝL&švíů[렊Ű̀c´śÎQu]WŞkŒşn­1ĺĆ@uŹ1IUUuUŐh“ęDŁAGßȨ5ŞqWŻžŤyGiŸ\?Mç<ŤNĆ;!ędÔqÔ5ŞĆ¨1揚qť22ă곛tÚ_5ň°=Wß­WUmKéˇ?ŇŰ—ŠŞ:ŽŞę^Ďé §ş~źgź˝Ÿsqń'íLŤŞťŠ.SqŹzŃâç?}î Ÿ|źd›jĘqUŐ´ĆtęĺS öғżŰuÜîťQ×lîQĎú?3ělă¸ZWßđö[óGˇżüŹŤęŞšűn1ďžĄŞšJj:­Ćíz–7Ż3żţž™6ÄôöS ÝťZ댪q]Ó}oťîśšŻ™†††uëÖĽR)őKĘX,ÖŇҲŰcˆţ–ôĺőźTšŽë•„UżźL§Óë×ŻŻŻŻďy¤kLFUU÷S…ęáƨ1)UMĽîŘşąŘ“ń¸w˜1ć]ŐąÝyyžŞłZľÍ5ŚVľřIƒzüöÍŤŢ{ż5WŐ&cƌš™Ć¨šŒj˝&ӚţŘ KŐ˝_çşicTő÷ĆŔŃ|u÷űi{顉żžš°nëşÎx÷ܘýŒŮq'qQŐÓTaôOFU5íŞ“QăŞÝSuäőz@•N駡ţPëśzçD]W3Í8ꚮ|ÚÚŠ?üDű=Š•Ôo¨ UŐôœyŠűô˘ˇTUŁŞş=Žň€Ůó/Şj\c\×u]7ăU˝wÁ}÷éC‹ëŢyűăœCÓg|g{ŚíÓsoŒ]ň+U5Ќq]7ăUm™Š—+Śh6/]c’)U53~b0Â`vYrя?řčŐYżŘŽł¤żKĎ´m;??ż˝˝]DźyüŸud čßżmmíÖ­[ŤŤŤťëŰum.áíMĄ™§z•1‡TTÔƒëׯo+)8p`Ʋ¨Ţ\ ÄT?° X#Ë4Üd÷ˇGîŔ–/[ńîťfżý`ŰކOŚűM˘h×˙ź%î]żWÄňŠíYÚáÚ?ýşvJŃuőîml[ąvűúŐŤŰ<ĹĹÉT*HhQDS0‹8Ş–Ş—Ę°E¨WÂńgᤳeůbÜ›^{*őÇY—!v€Ü݌ő8ŠkNBß|¸Fâ†çăąiX>‡ÍÖś¸<ž_ćmÉ,ś-čŚv,mvÇG;7nolnlhnnNfœĹy§ďűĐrŹzşâšłpەzŮíÖoď3ÁR™ó–|ýVÜ}8.`‰myy‰—~ĽÇ^/ >ŇgçâÄ îżAo~Löźé‘™Űó ŚOÎ)Zú‰._Ś÷ýëWÉĹ'ęâU0Wh2r¨ž˙uœw™„#fÝş--ÍcF}âĄâKžŽƒ†ă§÷ČßEK#şĎ´ö|=lÝşŐqœţýűﺊ×KčsV+ýSąeIŻ^)XPPĐŮٙJĽzVLÝőHŰśűőë§Ş555Ůzë;•FqE.°,Wľ˛¸xü¸q‰drÉŇĽŠÎNˆœ ŠBdCW‰v€ć*úHÇršŸ—?yŸ}FŒé5É$Ç+ŰÄ칯đNÉ[oY GnťçŽiWŮŁŽ<ü#Žœž›— ŢŮ9oŢźš/˝ôƂ @u&ÇÉnŠĺo)F@¤q]5No}PőĄž>FĎú6.§ő7ę˃đ›ŠxĄUżů‘6%@Ԗ=K%hÉä2™1Ňđú6]Ԍ€e:;ڝĆ-y’pëźÍďĚ{mý†Ą`p„ ӏœ>ůŔCO­Îǟ€Á(= ޓ‰ýńŃł2¸ŻŔÂožŤnGŔ†…mi6/§î Ř2÷]ô9FŢ{żnTŐćcpâŁěP żż‡N—ź\œr0Ż’€ ¤(jEPúÁz\yΘ†ˇßŘ V|üřq–=]§Ÿ@œ Şűaě$¨Â;+Ú˝J˛ŚŚFUűőë÷Yů罊ź¤ěěěĚnˆÍ¤¤%ś,é W^ćççwttˆˆ7őżç­ç‘"ҡoßúúú͛7÷éŰ7 Ą×Î$€¸€ˇś$ Ž=zËÖ­ËVŹčÓˇo˙ęęQŞďŠŚvş+0ŒĆťo 9%%a…˘źźÜ6@cc㢾k‹‡ďÓ§mYťţşžˇÓU˙Ć֔#w\­€Ž;Wţ*ÂśQ¨–––q챍MMŸśľmlްa޲eɢ˘‚h4777š›[›ë”–"TŁÂ1ös›qŰrʉËIßĂőA?ĆĽßĂS‘죚'Č{?AQŽŤŠLÇIgRV&~°źĂęë˜ŕ/ŢŞ˝<üQcÚ*Î -ěÍIôżé𾃊ÂF ˒őŰőę g~őźT…x‰ ‚7fá Ť°vîz îźF]WŒŔ5ŠÂ\yţŚĚáWĽ­ĚC?ž"wň^űťĆv] ´­Y澀§ć▟ČÚí(˛pÔązţĺŇwÚÚ$ďÍs˙ô óŇÇáľç˜ýś YŽ­×ţŸw*z˝ŻjY;ş^ÓétmmmnnŽW ńó{_Óétggg~~>“’ţ-–ôŃkTŇŤ˘ž››ëőÇ~V^ŞjEEEss󖚚ŞęęܜUí]öÎ[{ôďÓ§oaጾkc--ŐÆ!ĘßůGTjl‰Ęłkő˘ą펐ôë×o¤m°~ýúuëĆôë—0Á`Wdîœ]ë%`#ăČW"{^¨ËҜrŔľ@YUUżŞ*o9cŮĐĄÓĘĘÖśľ%::bąŘö†ĆąÎ–ý÷Eyy[săłď-{VĆĚn+omn˝#{íŻ^ĹsŮw;ŢÓÚŇŇŇÜÜ\QQ‘ŸŸ˙“2???›”`ýú—cXŇ?^ś}YPPŕ+ˆD"˝ň2ۆóڋyůůV0ŤŤKää ö’/ŁYź@ä'Ŕd ."Ş°ŹœŇŇkDÚ2™âuë’}ű†óó˝´łŽŚKÉ쭘ޢkwQqUĺUĺĺÉxĆŔ˛6nŢÜaYá>}Źlߏ—ĺFa ‚6RfÍD𳂇 ĺՐĐVŕ] ĆŐţ˘ŽŔ4ĽńŘ,_i!­ý‡„ć¤ƒrő㦜oŽţŕZÜ6獀k @ŔÂ7"8˙U4CöáÁG/ÔľŤĂŢůÁeú‹9űkzöEzĆpüt VnŇ–á˘aę*ŠĂrÇ~8iŽˆ…[—ăýZÔ?‚ä ź?ţ5PÁ~›1ĽXӎ,ؖq\X)oÜ­‡]Őëq×ăŘ´Šĺ–KS÷ŰsŐśÂę*5ýĘľ…wŽ‘qđ꧲ětśŕÔó°n•Ś!GŸÜľUV<۰aƒëĘĉŁ˙řŰÜCŽÖPX†ŒÔó/–ˇćbŻýĽgAöíŃöíۉDż~ý˛łŔ>îŤ7Ł'Űűúď~uÓ˙§8Á‡ţ)zÎ÷I$‰D˘çzŻĹá]ůšDj¨ćF"Ëúőű4Dśf,Ő#ѕp•ŔŃ"'ޞ$r °?°IőÂ@`ς‚OWŻ^ťaCĘqşö04’ăŕ7Ë GQ °€ˆŐ}7ĺćz×ň‚`pűúőď̟żbĹ ÄbŢ3Ş)U€6ŠÖÂśÂÁô™ŔQŔ H`C]ˆŕ( Ú żś–ľ¨Ůş`žěű4f­EădĹŮ2t_ŐN\ü–ţ"\h7ăň `ŒšęR Ł÷,T† Ǎłô­ő¸ě[úçG°Ď üt&nň坤̫“€%)'Ŕƒ!”ƒ@ nÚ"4ě‰ĹOăŘJ”V˘Oż _żMBŽx ŘŇŇsŰWüâźúWĽ ďôűŢS{^zGáŸxS…ˆQu Üý,Žš ×_ŁÇœŒ`HKĘQ -ŤŔٰ~ĂŞUŤJJJ'NŰіűć\=˙k]OZßhďčzúĐ#ů2™Ěć͛]×8p`ϤĚ~ԝ÷^9LJúOŔ͟éŸ%;ë5 uvvz}ł=ż%")ŕ`ŕ;Ŕ@‘íŞ÷ˆDęEZTűŠf,Ť0xB¤CľEäBŔqKä‘•"υeĽĽvssl˖ęďóóëEöýN.žˇ§•˛°~YlŮ $E~<¤€0.&ţlĄĹĹâ xv>~š …Erä4ÁDi´$ą mER•Óăü~ňđ&q 儢[ÄU‰¤>‰ˇˇÉ–”Úƒň%‘pXöŘSÎżBŚ*óߖîFč=´§ŻÂéC‘p‘Č`ßJLᱟcâTvŠœ]ĽwŒëÎÁ Ó0ű4ˇăĂEhJČ1S:׎ŤYšrĺś­5i7¸˙䁧ž÷đ+™ÂňĽp’¸˙X"ËAWËňŠ×ő˝wĽ¨g÷@n>x[â‰öW$QŁF[ťÍ rŮ7‘JJ żż}`ßŐdŰç"ąXlëÖ­•••Ů—zt¨öZyÇSŠ“’ţSü;*!Đ˙zŐ÷iiiiooϖ~ńŠŻlW-đF(ŠP]eĚ4c`L•ęqíí74×UŐ9ĆvÍyHőAŐÓTÇłFUqqšKőŠÖÖó6l(N§Ą:Ĺ5÷Şö}ÁÜř‘QŐĹŽ)6]EeŤTê獎QÍ3Ş%Ć\nL­W&‘¸ĽľŞcʛšžş~ý­­%ŢBzc*UWs@ƅšâŰǘßÔUÝТż§x\­§ŸŞŇ2ٞYóţŞ9żSlĐ<Őc]ýŤQU=nŽâ^-Lk;UU]ŁŽW śUsţ ¸WgźĽŞ]Ĺç2M;]lŘŞgheŠ(ĐK/ÖóŸŇ&GkMĺńćş;TuGĽ:×5Şş~›3čÔö5ŘGOüĆćKß߲Ľ6™LyĎO{§™ţ-Ýűƒ1ćÉ×UU3=Ęë¸FUM‡ŁjŚďc5ĆŐDŞńń×ď90ÖÚŇâý×5Şćč˝ôOčúÉůŻj˙°YňąŞÇéz ÔŐŐ­[ˇŽŁŁC{âéYv§g5o/‘––ÖčĄ˙lYŇ?KŻú>áp8•JĽRŠP(ä ŞH>P Ô‡‹< Y | ¸Wd†Č€śśşÖÖp4:*8Č–ŠźŞZ+r4đ‘ ŔlźÄ#‘‚ÂÂE–•ŠuM“œ Ýľ —Aľ`:Đ.Tí/rđ} lůžę,‘S\ŔŹ`°1.šřn[ŰžőőŘ´É$[-kżÎÎ?ځ‘ÁŔRÁL•G÷ÓDîż–áÚĺ2ÚčĎ÷–Ę)jW!şšďIÇÇH´"Á͓đD_+,A4€'7 žB˙|ě[Wa PÁ'MXьšÎŠâ0°,Ř ` %týHŹŰ %hY€öǰužń;œx,î¸ZÖnŐLFňsL<‘jll\łvc˘eő{´źˇŚ˛ĽĂZľŠ XŘďôĂňŲ3 Řذ sޗ§Œ‘KO@$´cB1ş÷ [xüç¸ú{44ůÎüÍíąş+íh(Zúqt߃5“A ‹>Ŕ?–%ƜçđěCřÁOôř“ĺ’ŤŐuaےJĽjkkUľoßžŢĐ5v7HŮóŐâÍ cúÂ-şčŸKwî[‹ĹbŽăäçç{+Ёîú9€Đ=ŠŽŞęíÖÔŇŇÜÜ\TRRR\ěÝJv‰é^ˆšăz ¸ŔD`ŠČ7âńo­^݉üńĐ;§O¤ŽA k‡HUWÄęą;–ÄűgŤš÷IĆqܖ–íÍ-íMąL:7/<Ź8ż3§ď‹ŠÓڗѺH^źGW׈%*ŠTJĂQÜ˝BŽ\¨Â…ňţaúćŰ8ęd%?\ŁŁđčzKä´}[žş˙Ň`ŔÎÍ/.+/ŻŹ(Ü\8|ŚŹŮ¨ppĹš¸űZ8.ś|˙÷Xđ)ޘׅX°d§'ËuŕĹ?É _ĎĚ]´úž_䍛XtÌ(Jtę{ópČ1p]ąm˝ü<šď1”Řč4W9v/}řŻ()‡Ş´śś477—””g/5ťĆ^öTťŽŰŃŃzîşĹ¤¤˙ Kú§ÓݍEe×Ě@DŒŞ%╠PUť{)ˆ7˛nűv+(ŤŹŒƒFŐąť'ŹzçtGÝ``<đW‘ÎŒcšś\űqdľ[ú֑ 7\`aGůYďWŹťIz7âŐ xa QQK!‚L:ůܲć›>Í,1ŐCŠŁCë/Ů#săăC^_TZr–Ž ÷íĽĽQK4áʄżčš:ěÝW>8žë€k´qÓ"|ď} /…éýÔqՁŁŘëy,ŽÇčrůř ŮXÓ!‡<ŻŰ;ŚÔ—ŔÜZ™TšvÚtŇáƒĆoţŃÉŰŽřö ył+ó nž$Ęő“3/ü<˜Uu] °š‡ĎÔ5KÝ—Ÿ„O×᧡ă—ßĆőç"•A(°ă9ęz֌XvűIFoşé7ÉéÜxŤuČ1ę:0Š@ ;C w߄yłŃҤ…ĹrĉzŢĺČ͓t:S__ç8NUUŐg5({˝02™L, ‡ĂŢNÎ`R҆%ý+ôş,z+çrrr˛—ŃěuÝqŐóxcLSSSGGGqqqQQюí‰{\L˝ÔěNîŞ:@@°ĄÝL~÷ [šgŠTT—őJ…lâfo¤kwb…Ť€¨ˆ #GÖăŽU˛=Š'Ä5#eBAńö××ǎYR•z3Ç^Łî)rÄđÎ;úŽ1Áp8š3 8ňŁĺů?_šƒ€ž6]í#ŽľDjâ˜ř4ˇâ´‘xú¸ p ˇŽŔ7ćśŮ_‚–šrHę/›Í=+ĂCŁwŮ^iĽrƒ‰uuöŠ?ʁńŸĎ¨1vţ?ěťĎŘđÉŁő×?–UjJä°3őáßj~¨"ă ”Íu8ę›XšŢîÎځ‘{áÝűQœŻśzœŇ–ćÖÖömK?Ńo~uÔ{kąa5}*F ÄeßÂqgJqŠŞŠ*ŒmwuŢşŽZ6D` Z[[[[[ňóóKKK˝ŽTř%ĽˇD$[ĹLJúð¤ŠěuĐqœX,rss{^4{ÜëzZWW'"•••= ľgëĘ j!ŞĆëkU,˙Şô‹8łĆÔ/ŢÔ X•••eeeًřN7ńÚ´÷*j׳e­¸}žÚˆę˝~,Ίˆ UdTB–ž3_ŞĂ¸b"žö3}ý-ÁÉzß~[ŽČmŰޙś3ńŠČW6MŠ;ö1%7÷Yщp8Pą ÎUŤúĎnŠČ‹ŕš ëűXą„ Q˛´ŚSN_9&fBś“ţaŸe'•śuhh †ç›°e•älkLťŞäk'Gn˝ŇVC›ž˙#üůçȉHG§}K_ů#JZ0°PÎ<'_ŒácźŐ¤hjĹ˙=Œçç#–Ä´qzە2¸Z]ŤŤ†źcëęęŇiłÇřňgVlŮxäŻzŃéxřO(ˆëčŔr9ötœuqWĄWé4,Ń@bIź3ŐŘXъŠĘĎĄÄÎÝݝŽăäĺĺy_ąťŽZ˘/†%ýŤőźJvttcza~~űCU[ZZZZZ KJJzśZĐcô]c™0Şś…Ů[pŃ|Ź>]r-ÓĐŘ\WˇÝqœââ⊊Šh4ÚóO ­^œ €Á‘›!Ë0݇Uá'“0Š+Ű°Ş T*[›“¸kĽ~‚X"ŤşĎˇĽőS=őťřÓQp ą-çŒ×­§×ZůwŢAÍýBéXĘq]“gť : N˙¤BÓ¸¤ďś;Ćľ´¸Ą¤ą\EeŽőľ%Uł" ŽJŽÍOwj8´śĺËśt[3&](§Şw^ ׈miG\ďy^žyڏŽ’ppâđĘëĽŕŽŔ¨(ÌÇůWáč“@,ŽtĹ]…ä- ‰D˘žžžĽĽ%TVV•——$:­ý†é˝Ä Ą8n_Lž"Ťců:¤ŠŘďœ})?^#Qą,}ýE‰ä5Ů —–÷zÖ>ë ő)-ËĘĎĎ˙Ź÷LD˙ –ôŻśëf2™ĚËËóŞŽăłŻ•ŮďŚÓéúúzÇqJKKłőŇĐ}]VŻě˛Ľ TDĆ<ŁWĹĽŁŕąE;::ęëë;::"‘HYYYqIIŔśUŐ‚:qŃJČZŠýęPš|úçâ5¸qjÚ ľ1ŚwLÁá}1°ŽAŘ֋>”îŃĐźsżN É "A™łE§Ď˝y?ܰ‡8ś@IcžÁ†6Tâ–}ќąC€%-°c‹`‘ŒŤA5 :ń|\pŒÜ6흲­Yóٍ*K๮žd¤28é;˜3(¤rœ=Ď=ŞŠŒœw‰žzúDw1]1ŽŰÜŇÜŘؘL&óóó˝úsĆ; üż˝óWÉm?ŇÉűˁG!މyłńÄď0˙ mΈŠ†Ăűᔲ˙!™_ţHg~żőĐŁ UĂÝ{}ú?ąX,‰p’ţó1,éß W^zJ„BĄœœœ/Ň%ë}ˇŁŁŁŠŠÉśíňňňcŸ˝2ľk đ×KôńuňÉIęíî%őM Auű—ćE‹ĘçwÜśRçoĹE˜>çôG‘´‘S^ח–‰‚ uOœ<~Î Ç@śŕíí8đuŕM oÔWďŀ 8.l {ż oӑeXx"–Ś\Dƒxv“\˙lOĄ3Śĺ9úŘá8˘Owć‰ÄőÎŕ„ŘҀ ŕÂăä×_Ç7~ƒ§Ţ@c‚ŒěŻŸŒóôŚłz­;/ßrôĚăđÇä•gqĂ7áśčŢÓpáŐ2ů€öx˛Ąś&ćděŠň˛ňŠRož•wŇ, Gî)§œŁ—}S>yŚ@ąŕ˝óXľT˙x?^zˇ‹BTË đΔV쨎ţů]Żńx<Nçććö|“Ĥ¤˙X Kúwę9…'‹cz \é.%C{MüimmmmmÍÉÉ)++Ëţ zŒAz=IŒyĎŽÓ*Ĺő™(l"RŰÜńëZŸ¨+j3ĄŁ šnÚ/2ŚOĄQ[UmKŽ˙@ý.Ž ‡c`.6u➕ňV-`!×Ćű'blQ× đ´ó0°óîĂŔ ¸cŽYXřů|{<ÔĆqôlyƒ+ńNŽ Íí°3p'î? [€î˛zě¤éÝԟÖáôWt‘yמ‰[gâůů8é 4 üŒëšăşi;~ý~ű 2Írřá:çVX"Žă´wĝT[{Źó€ŤŐľD řŕŠop\Űśş"˙ăwpß-˜˙Š ĄΔcNG$Іí8d}÷q!֎“ě•-ôĆz‹‹Kv8Ô.Á_—ĂvmÓóéú[;ˆţ31,é?ĹŽZŃh´×`äŽ?Ň+2“ÉdssłW€ť¨¨(™^gćÔdŻrTäŕÖeČࢸdŞ˘˜_‡‡×é e{›¸p8)WÂś^đ-î8ś nKk҂ †Bš99šyůšyšĆí÷’,ŠŐŰ’kĆŞcЀ…ož[BB˛âl<őˆŢő">¸+°Šm@[GôÁĄŐ@ĘAŮáĆŽÇX‚Uqü4śß‡kĎÄ­WŔE?ÇĎaÉŘc0źjAޟ°eÉËiśŽ üüÚöóŠŮŢčÚŠ.ĚüMÉÖś’ňůóúÝďĘĎ.Ҍۂ1â5EĐX‡Ç‡'Î\|ęëąč#üeÁN㝎뜜śśˇˇ‡Ăᒒďy“ĆqűÉ{ęŻďÇŮąě;7(“Éd"‘řüai˘˙d KúĎŇłžKgg§ˆäĺĺől&~ţKt÷ő577{óGŠŠŠBĄc4`áÉő8ë56@ŽƒŁűÁ¨BĽ­¨ˆ jă°Ůř¸NŤňeńIZ€KßÁ÷Ćc@žŁŠT˛˝#ÖÖŃá$QË) ˏÖ÷šcuŮ#ŇO˜N[QŰśmŃ%­ŘëIwęăäÇSő°ďĄyŠź}ŸŹ€?Ň=yőłÂÂ5ŘŘֈq_‘ ŽÖ[ŻDƑ`{^‚‰Ăôo#ăˆŔMĽ’ÉD˘ľ#a2ńpĐ=ńG-Ď401˙ŽŽâÂüœœČÉŻéGż•ܨuî,¸ŽXV×v˘Ć ݘ€ëâ͗ńŔí˜űšţţ8áL8I§Ó­­­Ţ Ź’’ŻűÔ+G°rą\r2ŻÇ1‡ă‰Wŕş°ş:`wjŒĆb1UÍÍÍÍÎ!bL҆%ýŮuUe"‘HĽR‘H$‰řśHzHĽR---‰D"‰EŁŃ˜ŁM) ĚíĘHŁbIWŤÎ›4űÄzœó ¸ç@\6 ŽŃš8úć ^P*‚´‘'פoý4—ČęDpŻhě‰ŃkcްíźH°Aŕč÷+_ŠËÍ iĆѡOvŸ{ĚţÝlëÓľ_9#KU‚^Czmž- ŘóB9ëpwÖ5n]˘ÁT8Ü÷ĘÂ3lýęMۛŒŔ V ¨ ‰D÷ť˛ŕ˜r' Ջż/Ÿ<Ľ“†  ď-Gżrô+ Ííú‹'äĆˆv÷”f§Îc`[ę=ÂÚM(.ENž$‰ÖÖÖd2F‹‹‹{‚p]ňđoń•Ënź7Ü Że‰őw5™L&“Ép8F?kĺ%ц%ý‡ę9Šém‡Ůłi‚ĎžćöŠLÇqZ[[cą˜m ňT-…î(+0*,A,ƒIĎcmöí‹wŰŃ5Ú]#›b¸g%žŮ„°\2R/†IĎŁ ( Ž5I“I/kLÝ˝,3§­ŹĹDŒƒéĽ­÷ŽÜ(9rýo+^]T9ç5ŐEɎ„°!"–ľc&Œˇ•ă"?ęnků­ţ‡OŹ{đ›Ű/żťßÔŃąC'´çDě+ďtŕřô'&cМœh(Œ–cô€+eh}ěűHedŔizű•8űŻZ:ŒŮ‘ÉĆŔXÖNÊ;ՃUˆˆˆioľľľťŽ“——WTTÔsÎT÷™÷*ĺâž[Ń҈knÔÜźúĂłšššŹËC˙˙î;@´Ů&ŚŞÚś]PPJĽźňx999^Żěg˝Ďë^aé UŞmŰeee%%%íí­mmMÍyš9ÝŁnŢv% Ŕ1Č Ę9CđăfźW7śájd ŁňA#î^w°WŠ>x¨T×ŔDm_Ź€•Ÿ›ł!–sá2ěSŽ§â’ˇuévšpbţŔŁ[cî“7ť×̒ƒŻŽx瞶A•Ś5Ű2Žk˛÷6 şĆŞČĂĆ:렙…$łŽÉ˝đŚQę#˙¨8™ś#!9zmhÉ çŽŔ˛ÔIetŸK1fPWR†ƒ:~¨x{l ` ]ŐěŒî””ť–ú‘T*ŮŢދŝ 0ż żk“Ź]űŔ˝˙†půˇťŠ=‹ňÄăqÇq˘Ńh8ĆÎŁŃĚKú/ۤ˙DŢ%ľgěE"‘P(”H$ź9&Ůn˝Ďj˛ôŹŻć]Ł SŠT[[ŰöíŰmŰÎĎĎĎÎĚń–…čyĂpë2ÄâňŕR Ł ßý?˙pqěpSŊńíčÂ0 ×\Ö,ďŸ[›pġqŃ):k&~ř`ÁCObŇŢOŮѐzÜTŹŠéĘ-KÎč‘ßÄž{ŕŢë$™F8ˆxJbŘs„wvÜž*,ďáuOwBôňf wtt¸ŽFűôŠňB=rŽ×éÍv于ŢźžŽ™YޖĽ………ťNffRŇ/nţL˙éz^jCĄP(JĽR‰DBD@Ż „?˙x{%z•Hcą˜7uEU@Ŕś]ƒ˛ˆ,lÂňfÔ$ĺĚ!Z Ő9xd=26VˇB,R Kŕ(N{{—ăґâŞX€%Q[[¤4˘+ZĺĘ1Ú˝C Çě‹-ő¸âW8űHĺ!ăt5űź.ӚL<gŽYWăŠŰpË,‹Pť ­Áé‡ŔśĆŕ>˘*ś%Ќœü=yíMšáB3X.űr¸䄮š6ŢăîŐĎžń2˛ŠŠŠľľŐqœ‚‚‚ňňrŻNďŽďrJťnÖ˛`ŰŔkúČĎĎĎf-ôż‚c–ô_Łgg`:N$ލFCĄPŻ$žˇ=ŇŰCŃŰő" ErrKŠrf׏žŁČŕŚ}ń ’p4Ŕ_jpĆkH%Ŕ”~¨Šâí:œ6żŰGĺoސ÷yĆ`i &•î˜GŁ ÇE0€kfáą9Xřú•Ăq `cK&ÎŔ9GbÖŐřé#Č88v?\w'|(Ž<ĎߌPŽ Ű‚eáüńčcD&†iSpäŢřó›ŘހEŁ˘FuˇgÁ{Čńxźłł3N{ťžd÷íuäy"TŐ{.DÄ{.žČAô_‡aI˙ez€ĽÓéd2‰îNÚ/™ŘĺrďEHGG‡7ŘfŰöô*—7…†—蓜ËHQËZőŽĺř¸ íiŒ.ÂľcpHľˇŢą+ ť[r;ćš;Í;Ým^ŘҀI3pÎQ¸c&’iÔ6`Hˆ ™ĆIßÁœˇŕ¨ixîf„ƒ] K–ŽÇużÁ+ € $Žębâ4<÷3 Ź„ˇëVŻş€Ţ†‘‰DÂu]oč7??ßËČ/}Ţ>ëü3&éÒţű|NË& ~‰K×MAU%‘v˘nçQŻG_Ý‚­GöEQĐ˝|XćŕaW˝âŠ]š×ľ\r— ŮM1uçş<ŮÍćĺ#łąü1s.ώŰg"ă `€k Š€Ý]}çźôś3ď.Ă[ŸŔÔq8`œ÷xťśĐ6Ćxg&™LŚÓiáp8777f‡i{/~Î3™Ě—hŮý÷bXŇŤ^—ďT*•L&E$‡Ăá/— X"[:ő[Ęü:­iC~DîŰŤő°Â֎ŒP8’— …BblŤÇŽÓťôń~–žyyőřó›pĘÁ¸ăęI™íËőڈ]%Ń߀ٔçnÖHH\Łś…l䉈kÔq'“öV7:Ž  z{`eĎɗ;3=Ďs*•RŐH$Ňë<3&éÒţťíścPUCĄP$ÉNČĚłť[čjžşż]ĽÇŔÓëqĆ`,j’{WaŃI:ź@ŁnwĽRiŁĆ Á`0‡BĄ`0hYÖ笎čő‡Ś€ë"ŔˇŔoŽEĆŤˇóO‰ˆ7K6•ÁIßĂěˇW˜&/ţRZ0çCqdşš-É¤œLFŐQU˲źÇŢłk´W@â [ŻóćuäŚÓiů[;˝‰ţ0,éAŻ+{&“ńšV^ťŞ×šzě|qW…QŘŚż„9ëšX{.6w etĎRńJĺŠz=œ˘ŞŽëf2™T*•N§3™Œ×†ŰśmŰƒ^ŽÚśmuĂ. ˝íŠł=´= úôŒ7cLĆ1ËÄSÎq×ŰoŃQĂŕŞ~ëÔúSHĆRÁH8 …Âá°÷K?+ ń7f$ş'Í&“ÉL&"‘HŻŠ@ŒIú˙ÒţwôşˆťŽë]彞ŮP(ÔŤĄ‰îb4^X>´ÎGUżŸŠcúuG*`ďňWŇ3źŽă8Žăg&“q]×KО^źÔŻxy×%;÷Ç[Šî…ĄĆcLö\#šşŠ!ç€kĘÓI5rÄţ:÷ތë-kGŠš€Äî2Ňňôz\˝÷=+ô~Á›%úŸÁ°¤˙5ťły}cL ‡ĂŔnkqˆÖw 0ˆŇHWß,vžĄƒĎ˜ěÝděQ~ȋ=×u˝ŽëfoÄŤo×óF˛ P^#Ő˛,ďŁBlKš;đýßcKźř}ů!LŸ"Ž ËÚý]ú[ĎU–ă8ŠTĘq˲ź7Ó0'Ń˙$VđĄ˙5˝ĘÝđş(˝ đ –ƒÁP(”íąŕ•ŕ’ďU[ş§Ůěź7ČŽ;Q÷úŘóë^CÖë˜ýű“M¤°šN~˙-˝}ˆ0NÍÖčůâśŰڧ׎ěő*{MɞťNrl’ˆ-KúˇkC3“ɤÓiÇqzŚ&vTTßi9˙—ˆ‡ěߔ×EüŃ*Üú>^udŮŁşĘăőÚiů ŢĽž-ŞźÉJlJő–%ýŰľĄéd65cą˜W9/ yőózţ}‰ĚřF‹jWAƒŰÂO!œy‚¤3úýí~V 2;Čę˝cđ2˛×U6%‰zaXŇ˙z(˘{XŃKMcŒ—ńx<ŰkşëR]÷9ů׉÷KžvŢ\ƒĘÜt9€Žĺ˜Řš‹řłŚödқÄëÍ?ňćîz źîb.!ú솥˙OíZńŽgœcź8 źëöŽłxv{ł˙đ˜ÉŽ0‰'aŰ˝Ž×Ý˙ţ]'yórÇq]×[…é˝Ří f$ŃgaXŇ˙ďvťłŁ×ÜôxK8źŕĚNRíŐčů2J;/÷ÔĎ>ŹŤ”wˆˇŮvž…›˝Ůiˇ^@°,+Đm×F$˜‘D_Ò¨ËŽŠ‰3E{śĎźľ’vŢW>gsă/÷‡śSšz_éžľěꡇě杻ś‰ąóź0#‰ţ K˘Ţv;6ŮsÝćşËx‹#˝řôÚ =oçKÜ Ż˝˜FÓ ÝŠŮ+š{íşüoj%úð$ú<Ÿ?§4ŰźóŇ+›dŮŮ@=CkçÚ=ŔgtĂöŹăłŰ[Čćqϒ@˝îŇŽ÷ůß}"‰ţť1,‰ž¨Ď*ßłëa=×`dÓ´Wţ}V¤őĘEé†]Jý­wŒˆž4†%ї÷šłrţńYő/ţuD”Ű$úűg˙M1‰ţő–DDD>Źż˙&ˆˆˆţˇ1,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|0,‰ˆˆ|ü?_”ëÔ=tEXtcomment Image generated by AFPL Ghostscript (device=pnmraw) ď4“öIENDŽB`‚latex2rtf-2.3.18/test/ifclause.rtf0000644000175000017500000001164213664476467017236 0ustar wilfriedwilfried{\rtf1\ansi\uc1\deff0\deflang1024 {\fonttbl{\f0\fnil\fcharset0 Times New Roman;} {\f1\fnil\fcharset0 Arial;} {\f2\fnil\fcharset0 Arial;} {\f3\fnil\fcharset0 Courier New;} {\f4\fnil\fcharset0 Zapf Chancery;} {\f5\fnil\fcharset0 STIXGeneral;} {\f6\fnil\fcharset0 MS Gothic;} } {\colortbl; \red0\green0\blue0; \red0\green0\blue255; \red0\green255\blue255; \red0\green255\blue0; \red255\green0\blue255; \red255\green0\blue0; \red255\green255\blue0; \red255\green255\blue255; } {\stylesheet {\s0\qj\widctlpar\f0\fs22 \snext0 Normal;} {\cs10 \additive\ssemihidden Default Paragraph Font;} {\s1\qc\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 Part;} {\s2\ql\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 heading 1;} {\s3\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 2;} {\s4\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 3;} {\s5\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 4;} {\s6\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 5;} {\s7\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 6;} {\s8\qr\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext8 rightpar;} {\s9\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext9 centerpar;} {\s10\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext10 leftpar;} {\s11\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equation;} {\s12\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationNum;} {\s13\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlign;} {\s14\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlignNum;} {\s15\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArray;} {\s16\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArrayNum;} {\s17\ql\sb120\sa120\keep\widctlpar\f0\fs20 \sbasedon0\snext0 theorem;} {\s18\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 bitmapCenter;} {\s20\qc\sb240\sa240\b\f0\fs36 \sbasedon0\snext21 Title;} {\s21\qc\sa120\f0\fs22 \sbasedon0\snext0 author;} {\s22\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext22 footer;} {\s23\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext23 header;} {\s30\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 caption;} {\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext0 Figure;} {\s32\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext32 Table;} {\s33\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext33 Tabular;} {\s34\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext34 Tabbing;} {\s35\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext35 Quote;} {\s38\ql\widctlpar\f3\fs22 \snext38 verbatim;} {\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext46 List;} {\s47\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext47 List 1;} {\s50\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 latex picture;} {\s51\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 subfigure;} {\s61\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext62 bibheading;} {\s62\ql\fi-567\li567\sb0\sa0\f0\fs20 \sbasedon0\snext62 bibitem;} {\s64\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext64 endnotes;} {\s65\ql\fi-113\li397\lin397\f0\fs22 \sbasedon0\snext65 footnote text;} {\s66\qj\fi-170\li454\lin454\f0\fs22 \sbasedon0\snext66 endnote text;} {\cs62\super \additive\sbasedon10 footnote reference;} {\cs63\super \additive\sbasedon10 endnote reference;} {\s67\ql\sb60\sa60\keepn\f0\fs22 \sbasedon0\snext67 acronym;} {\s70\qc\sa120\b\f0\fs22 \sbasedon0\snext71 abstract title;} {\s71\qj\li1024\ri1024\fi340\widctlpar\f0\fs22 \sbasedon0\snext0 abstract;} {\s80\ql\sb240\sa120\keepn\f0\b\fs20 \sbasedon0\snext0 contents_heading;} {\s81\ql\li425\tqr\tldot\tx8222\sb240\sa60\keepn\f0\fs22\b \sbasedon0\snext82 toc 1;} {\s82\ql\li512\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs22 \sbasedon0\snext83 toc 2;} {\s83\ql\li1024\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs22 \sbasedon0\snext84 toc 3;} {\s84\ql\li1536\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs22 \sbasedon0\snext85 toc 4;} {\s85\ql\li2048\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs22 \sbasedon0\snext86 toc 5;} {\s86\ql\li2560\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs22 \sbasedon0\snext86 toc 6;} } {\info {\title Original file was ifclause.tex} {\doccomm Created using latex2rtf 2.3.18 r1266 (released May 29, 2020) on Sat May 30 17:35:19 2020 } } {\footer\pard\plain\f0\fs22\qc\chpgn\par} \paperw12280\paperh15900\margl2680\margr2700\margt2540\margb1760\pgnstart0\widowctrl\qj\ftnbj\f0\aftnnar {\pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 0.1 If-else\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \fi0 This is the true clause! There should be no false clause. \par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 0.2 If only\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \fi0 This is the true clause, with no else clause. It should not appear in the {\plain L{\up5\fs18 A}T{\dn7 E}X}{} version. \par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 0.3 Blank if, non-blank else\par }} }}}latex2rtf-2.3.18/test/agsm.bst0000777000175000017500000006171513073466675016376 0ustar wilfriedwilfried% BibTeX standard bibliography style `agsm' (one of the harvard family) % version 0.99a for BibTeX versions 0.99a or later, LaTeX version 2.09. % Copyright (C) 1991, all rights reserved. % Copying of this file is authorized only if either % (1) you make absolutely no changes to your copy, including name, or % (2) if you do make changes, you name it something other than % btxbst.doc, plain.bst, unsrt.bst, alpha.bst, abbrv.bst, agsm.bst, % dcu.bst or kluwer.bst. % This restriction helps ensure that all standard styles are identical. % The file harvard.tex has the documentation for this style. % ACKNOWLEDGEMENT: % This document is a modified version of alpha.bst to which it owes much of % its functionality. % AUTHOR % Peter Williams, Key Centre for Design Quality, Sydney University % e-mail: peterw@archsci.arch.su.oz.au ENTRY { address author booktitle chapter edition editor howpublished institution journal key month note number organization pages publisher school series title type URL volume year } { field.used etal.allowed etal.required} %%%XXX change { extra.label sort.label list.year } INTEGERS { output.state before.all mid.sentence after.sentence after.block } FUNCTION {init.state.consts} { #0 'before.all := #1 'mid.sentence := #2 'after.sentence := #3 'after.block := } STRINGS { s t f } FUNCTION {output.nonnull} { 's := output.state mid.sentence = { ", " * write$ } { output.state after.block = { add.period$ write$ newline$ "\newblock " write$ } { output.state before.all = 'write$ { add.period$ " " * write$ } if$ } if$ mid.sentence 'output.state := } if$ s } FUNCTION {output} { duplicate$ empty$ 'pop$ 'output.nonnull if$ } FUNCTION {output.check} { 't := duplicate$ empty$ { pop$ "empty " t * " in " * cite$ * warning$ } 'output.nonnull if$ } FUNCTION {item.check} { 't := empty$ { "empty " t * " in " * cite$ * warning$ } { skip$ } if$ } FUNCTION {fin.entry} { add.period$ write$ newline$ } FUNCTION {new.block} { output.state before.all = 'skip$ { after.block 'output.state := } if$ } FUNCTION {not} { { #0 } { #1 } if$ } FUNCTION {and} { 'skip$ { pop$ #0 } if$ } FUNCTION {or} { { pop$ #1 } 'skip$ if$ } FUNCTION {field.or.null} { duplicate$ empty$ { pop$ "" } 'skip$ if$ } FUNCTION {emphasize} { duplicate$ empty$ { pop$ "" } { "{\em " swap$ * "}" * } if$ } FUNCTION {embolden} { duplicate$ empty$ { pop$ "" } { "{\bf " swap$ * "}" * } if$ } FUNCTION {quote} { duplicate$ empty$ { pop$ "" } { "`" swap$ * "'" * } if$ } FUNCTION {write.url} { URL empty$ { skip$ } { "\newline\harvardurl{" URL * "}" * write$ newline$ } if$ } INTEGERS { nameptr namesleft numnames } FUNCTION {format.names} { 's := 'f := #1 'nameptr := s num.names$ 'numnames := numnames 'namesleft := { namesleft #0 > } { s nameptr f format.name$ 't := nameptr #1 > { namesleft #1 > { ", " * t * } { t "others" = { " et~al." * } { " \harvardand\ " * t * } if$ } if$ } 't if$ nameptr #1 + 'nameptr := namesleft #1 - 'namesleft := } while$ } FUNCTION {format.authors} { author empty$ { "" } { "{vv~}{ll}{, jj}{, f.}" author format.names } if$ } FUNCTION {format.editors} { editor empty$ { "" } { "{vv~}{ll}{, jj}{, f.}" editor format.names editor num.names$ #1 > { ", eds" * } { ", ed." * } if$ } if$ } FUNCTION {format.editors.reverse} { editor empty$ { "" } { "{f.~}{vv~}{ll}{, jj}" editor format.names editor num.names$ #1 > { ", eds" * } { ", ed." * } if$ } if$ } FUNCTION {format.title} { title empty$ { "" } { title "t" change.case$ } if$ } FUNCTION {n.dashify} { 't := "" { t empty$ not } { t #1 #1 substring$ "-" = { t #1 #2 substring$ "--" = not { "--" * t #2 global.max$ substring$ 't := } { { t #1 #1 substring$ "-" = } { "-" * t #2 global.max$ substring$ 't := } while$ } if$ } { t #1 #1 substring$ * t #2 global.max$ substring$ 't := } if$ } while$ } FUNCTION {format.btitle} { title emphasize } FUNCTION {tie.or.space.connect} { duplicate$ text.length$ #3 < { "~" } { " " } if$ swap$ * * } FUNCTION {either.or.check} { empty$ 'pop$ { "can't use both " swap$ * " fields in " * cite$ * warning$ } if$ } FUNCTION {format.bvolume} { volume empty$ { "" } { "Vol." volume tie.or.space.connect series empty$ 'skip$ { " of " * series emphasize * } if$ "volume and number" number either.or.check } if$ } FUNCTION {format.number.series} { volume empty$ { number empty$ { series field.or.null } { output.state mid.sentence = { "number" } { "Number" } if$ number tie.or.space.connect series empty$ { "there's a number but no series in " cite$ * warning$ } { " {\em in} " * series quote * } if$ } if$ } { "" } if$ } FUNCTION {format.edition} { edition empty$ { "" } { output.state mid.sentence = { edition "l" change.case$ " edn" * } { edition "t" change.case$ " edn" * } if$ } if$ } INTEGERS { multiresult } FUNCTION {multi.page.check} { 't := #0 'multiresult := { multiresult not t empty$ not and } { t #1 #1 substring$ duplicate$ "-" = swap$ duplicate$ "," = swap$ "+" = or or { #1 'multiresult := } { t #2 global.max$ substring$ 't := } if$ } while$ multiresult } FUNCTION {format.pages} { pages empty$ { "" } { pages multi.page.check { "pp.~" pages n.dashify * } { "p.~" pages * } if$ } if$ } FUNCTION {format.vol.num.pages} { volume embolden field.or.null number empty$ 'skip$ { "(" number * ")" * * volume empty$ { "there's a number but no volume in " cite$ * warning$ } 'skip$ if$ } if$ pages empty$ 'skip$ { duplicate$ empty$ { pop$ format.pages } { ",~" * pages n.dashify * } if$ } if$ } FUNCTION {format.chapter.pages} { chapter empty$ 'format.pages { type empty$ { "chapter" } { type "l" change.case$ } if$ chapter tie.or.space.connect pages empty$ 'skip$ { ", " * format.pages * } if$ } if$ } FUNCTION {format.in.ed.booktitle} { booktitle empty$ { "" } { editor empty$ { "{\em in} " booktitle quote * } { "{\em in} " format.editors.reverse * ", " * booktitle quote * } if$ } if$ } FUNCTION {empty.misc.check} { author empty$ title empty$ howpublished empty$ month empty$ year empty$ note empty$ and and and and and key empty$ not and { "all relevant fields are empty in " cite$ * warning$ } 'skip$ if$ } FUNCTION {format.thesis.type} { type empty$ 'skip$ { pop$ type "t" change.case$ } if$ } FUNCTION {format.tr.number} { type empty$ { "Technical Report" } 'type if$ number empty$ { "t" change.case$ } { number tie.or.space.connect } if$ } FUNCTION {format.article.crossref} { key empty$ { journal empty$ { "need key or journal for " cite$ * " to crossref " * crossref * warning$ "" } { "in {\em " journal * "\/} \cite{" * crossref * "}" *} if$ } { "{\em in} \citeasnoun{" crossref * "}" * } if$ } FUNCTION {format.book.crossref} { volume empty$ { "empty volume in " cite$ * "'s crossref of " * crossref * warning$ "in " } { "Vol." volume tie.or.space.connect " of " * } if$ editor empty$ editor field.or.null author field.or.null = or { key empty$ { series empty$ { "need editor, key, or series for " cite$ * " to crossref " * crossref * warning$ "" * } { "{\em " * series * "\/} \cite{" * crossref * "}" *} if$ } { " \citeasnoun{" * crossref * "}" * } if$ } { " \citeasnoun{" * crossref * "}" * } if$ } FUNCTION {format.incoll.inproc.crossref} { editor empty$ editor field.or.null author field.or.null = or { key empty$ { booktitle empty$ { "need editor, key, or booktitle for " cite$ * " to crossref " * crossref * warning$ "" } { "in {\em " booktitle * "\/}" * " \cite{" * crossref * "}" *} if$ } { "{\em in} \citeasnoun{" crossref * "}" * } if$ } { "{\em in} \citeasnoun{" crossref * "}" * } if$ } INTEGERS { len } FUNCTION {chop.word} { 's := 'len := s #1 len substring$ = { s len #1 + global.max$ substring$ } 's if$ } INTEGERS { ind tsslen } STRINGS { tss ret rss istr } FUNCTION {replace.substring}{ 'rss := 'tss := 'istr := "" 'ret := tss text.length$ 'tsslen := #1 'ind := { istr ind tsslen substring$ "" = not } { istr ind tsslen substring$ tss = { ret rss * 'ret := ind tsslen + 'ind := } { ret istr ind #1 substring$ * 'ret := ind #1 + 'ind := } if$ } while$ ret } FUNCTION {format.lab.names.abbr} { 's := s num.names$ 'numnames := numnames #1 > { numnames #2 > { s #1 "{vv~}{ll}" format.name$ " et~al." * } { s #2 "{ff }{vv }{ll}{ jj}" format.name$ "others" = { s #1 "{vv~}{ll}" format.name$ " et~al." * } { s #1 "{vv~}{ll}" format.name$ " \harvardand\ " * s #2 "{vv~}{ll}" format.name$ * } if$ } if$ } { s #1 "{vv~}{ll}" format.name$ } if$ } FUNCTION {format.lab.names.full} { 's := #1 'nameptr := s num.names$ 'numnames := numnames 'namesleft := { namesleft #0 > } { s nameptr "{vv~}{ll}" format.name$ 't := nameptr #1 > { namesleft #1 > { ", " * t * } { t "others" = { " et~al." * } { " \harvardand\ " * t * } if$ } if$ } 't if$ nameptr #1 + 'nameptr := namesleft #1 - 'namesleft := } while$ } INTEGERS { author.field editor.field organization.field title.field key.field } FUNCTION {init.field.constants} { #0 'author.field := #1 'editor.field := #2 'organization.field := #3 'title.field := #4 'key.field := } FUNCTION {make.list.label} { author.field field.used = { format.authors } { editor.field field.used = { format.editors } { organization.field field.used = { "The " #4 organization chop.word #3 text.prefix$ } { title.field field.used = { format.btitle } { key.field field.used = { key #3 text.prefix$ } { "Internal error :001 on " cite$ * " label" * warning$ } if$ } if$ } if$ } if$ } if$ } FUNCTION {make.full.label} { author.field field.used = { author format.lab.names.full } { editor.field field.used = { editor format.lab.names.full } { organization.field field.used = { "The " #4 organization chop.word #3 text.prefix$ } { title.field field.used = { format.btitle } { key.field field.used = { key #3 text.prefix$ } { "Internal error :001 on " cite$ * " label" * warning$ } if$ } if$ } if$ } if$ } if$ } FUNCTION {make.abbr.label} %%%XXX change { etal.allowed { author.field field.used = { author format.lab.names.abbr } { editor.field field.used = { editor format.lab.names.abbr } { organization.field field.used = { "The " #4 organization chop.word #3 text.prefix$ } { title.field field.used = { format.btitle } { key.field field.used = { key #3 text.prefix$ } {"Internal error :001 on " cite$ * " label" * warning$ } if$ } if$ } if$ } if$ } if$ } { make.full.label } if$ } FUNCTION {output.bibitem} { newline$ etal.allowed %%%XXX change etal.required and { "\harvarditem[" write$ make.abbr.label write$ "]{" write$ } { "\harvarditem{" write$ } if$ make.full.label write$ "}{" write$ list.year write$ "}{" write$ cite$ write$ "}" write$ newline$ "" before.all 'output.state := } FUNCTION {list.label.output} { make.list.label " " * write$ } FUNCTION {article} { output.bibitem list.label.output " \harvardyearleft " list.year * "\harvardyearright " * output.nonnull author "author" item.check title.field field.used = { skip$ } { format.title quote "title" output.check } if$ crossref missing$ { journal emphasize "journal" duplicate$ item.check " " * format.vol.num.pages * output } { format.article.crossref output.nonnull format.pages output } if$ new.block note output fin.entry write.url } FUNCTION {book} { output.bibitem list.label.output " \harvardyearleft " list.year * "\harvardyearright " * output.nonnull author empty$ { editor "author and editor" item.check } { crossref missing$ { "author and editor" editor either.or.check } 'skip$ if$ } if$ title.field field.used = { skip$ } { format.btitle "title" output.check } if$ crossref missing$ { format.bvolume output format.number.series output format.edition output publisher "publisher" output.check address output } { format.book.crossref output.nonnull format.edition output } if$ new.block note output fin.entry write.url } FUNCTION {booklet} { output.bibitem list.label.output " \harvardyearleft " list.year * "\harvardyearright " * output.nonnull title.field field.used = { skip$ } { format.title quote "title" output.check } if$ howpublished output address output new.block note output fin.entry write.url } FUNCTION {inbook} { output.bibitem list.label.output " \harvardyearleft " list.year * "\harvardyearright " * output.nonnull author empty$ { editor "author and editor" item.check } { crossref missing$ { "author and editor" editor either.or.check } 'skip$ if$ } if$ title.field field.used = { skip$ } { format.btitle "title" output.check } if$ crossref missing$ { format.bvolume output format.number.series output format.edition output publisher "publisher" output.check address output } { format.book.crossref output.nonnull format.edition output } if$ format.chapter.pages "chapter and pages" output.check new.block note output fin.entry write.url } FUNCTION {incollection} { output.bibitem list.label.output " \harvardyearleft " list.year * "\harvardyearright " * output.nonnull title.field field.used = { skip$ } { format.title "title" output.check } if$ author "author" item.check crossref missing$ { format.in.ed.booktitle "booktitle" output.check format.edition output format.bvolume output format.number.series output publisher "publisher" output.check address output } { format.incoll.inproc.crossref output.nonnull } if$ format.chapter.pages output new.block note output fin.entry write.url } FUNCTION {inproceedings} { output.bibitem list.label.output " \harvardyearleft " list.year * "\harvardyearright " * output.nonnull title.field field.used = { skip$ } { format.title "title" output.check } if$ author "author" item.check crossref missing$ { format.in.ed.booktitle "booktitle" output.check format.bvolume output format.number.series output address empty$ { organization output publisher output } { organization output publisher output address output.nonnull } if$ } { format.incoll.inproc.crossref output.nonnull } if$ format.pages output new.block note output fin.entry write.url } FUNCTION {conference} { inproceedings } FUNCTION {manual} { output.bibitem list.label.output " \harvardyearleft " list.year * "\harvardyearright " * output.nonnull title.field field.used = { skip$ } { format.btitle "title" output.check } if$ format.edition output author empty$ { organization empty$ { address output } 'skip$ if$ } { organization output address output } if$ new.block note output fin.entry write.url } FUNCTION {mastersthesis} { output.bibitem list.label.output " \harvardyearleft " list.year * "\harvardyearright " * output.nonnull author "author" item.check title.field field.used = { skip$ } { format.title "title" output.check } if$ "Master's thesis" format.thesis.type output.nonnull school "school" output.check address output new.block note output fin.entry write.url } FUNCTION {misc} { output.bibitem list.label.output " \harvardyearleft " list.year * "\harvardyearright " * output.nonnull title.field field.used = { skip$ } { format.title quote output } if$ howpublished output new.block note output fin.entry write.url empty.misc.check } FUNCTION {phdthesis} { output.bibitem list.label.output " \harvardyearleft " list.year * "\harvardyearright " * output.nonnull author "author" item.check title.field field.used = { skip$ } { title "title" output.check } if$ "PhD thesis" format.thesis.type output.nonnull school "school" output.check address output new.block note output fin.entry write.url } FUNCTION {proceedings} { output.bibitem list.label.output " \harvardyearleft " list.year * "\harvardyearright " * output.nonnull title.field field.used = { skip$ } { format.btitle "title" output.check } if$ format.bvolume output format.number.series output address empty$ { editor empty$ { skip$ } { organization output } if$ publisher output } { editor empty$ 'skip$ { organization output } if$ publisher output address output.nonnull } if$ new.block note output fin.entry write.url } FUNCTION {techreport} { output.bibitem list.label.output " \harvardyearleft " list.year * "\harvardyearright " * output.nonnull author "author" item.check title.field field.used = { skip$ } { format.title "title" output.check } if$ format.tr.number output.nonnull institution "institution" output.check address output new.block note output fin.entry write.url } FUNCTION {unpublished} { output.bibitem list.label.output " \harvardyearleft " list.year * "\harvardyearright " * output.nonnull author "author" item.check title.field field.used = { skip$ } { format.title "title" output.check } if$ new.block note "note" output.check fin.entry write.url } FUNCTION {default.type} { misc } MACRO {jan} {"January"} MACRO {feb} {"February"} MACRO {mar} {"March"} MACRO {apr} {"April"} MACRO {may} {"May"} MACRO {jun} {"June"} MACRO {jul} {"July"} MACRO {aug} {"August"} MACRO {sep} {"September"} MACRO {oct} {"October"} MACRO {nov} {"November"} MACRO {dec} {"December"} MACRO {acmcs} {"ACM Computing Surveys"} MACRO {acta} {"Acta Informatica"} MACRO {cacm} {"Communications of the ACM"} MACRO {ibmjrd} {"IBM Journal of Research and Development"} MACRO {ibmsj} {"IBM Systems Journal"} MACRO {ieeese} {"IEEE Transactions on Software Engineering"} MACRO {ieeetc} {"IEEE Transactions on Computers"} MACRO {ieeetcad} {"IEEE Transactions on Computer-Aided Design of Integrated Circuits"} MACRO {ipl} {"Information Processing Letters"} MACRO {jacm} {"Journal of the ACM"} MACRO {jcss} {"Journal of Computer and System Sciences"} MACRO {scp} {"Science of Computer Programming"} MACRO {sicomp} {"SIAM Journal on Computing"} MACRO {tocs} {"ACM Transactions on Computer Systems"} MACRO {tods} {"ACM Transactions on Database Systems"} MACRO {tog} {"ACM Transactions on Graphics"} MACRO {toms} {"ACM Transactions on Mathematical Software"} MACRO {toois} {"ACM Transactions on Office Information Systems"} MACRO {toplas} {"ACM Transactions on Programming Languages and Systems"} MACRO {tcs} {"Theoretical Computer Science"} READ EXECUTE {init.field.constants} FUNCTION {sortify} { purify$ "l" change.case$ } FUNCTION {sortify.names} { " \harvardand\ " " " replace.substring " et~al." " zzz" replace.substring sortify } FUNCTION {author.key.label} { author empty$ { key empty$ { title.field 'field.used := } { key.field 'field.used := } if$ } { author.field 'field.used := } if$ } FUNCTION {author.editor.key.label} { author empty$ { editor empty$ { key empty$ { title.field 'field.used := } { key.field 'field.used := } if$ } { editor.field 'field.used := } if$ } { author.field 'field.used := } if$ } FUNCTION {author.key.organization.label} { author empty$ { key empty$ { organization empty$ { title.field 'field.used := } { organization.field 'field.used := } if$ } { key.field 'field.used := } if$ } { author.field 'field.used := } if$ } FUNCTION {editor.key.organization.label} { editor empty$ { key empty$ { organization empty$ { title.field 'field.used := } { organization.field 'field.used := } if$ } { key.field 'field.used := } if$ } { editor.field 'field.used := } if$ } FUNCTION {sort.format.title} { 't := "A " #2 "An " #3 "The " #4 t chop.word chop.word chop.word sortify #1 global.max$ substring$ } FUNCTION {calc.label} %%%XXX change { make.abbr.label title.field field.used = { sort.format.title } { sortify.names } if$ year field.or.null purify$ #-1 #4 substring$ sortify * 'sort.label := } FUNCTION {preliminaries} %%%XXX change { type$ "book" = type$ "inbook" = or 'author.editor.key.label { type$ "proceedings" = 'editor.key.organization.label { type$ "manual" = 'author.key.organization.label 'author.key.label if$ } if$ } if$ author.field field.used = %%%XXX change { author num.names$ #2 > { #1 } { #0 } if$ 'etal.required := } { editor.field field.used = { editor num.names$ #2 > { #1 } { #0 } if$ } { #0 } if$ 'etal.required := } if$ #1 'etal.allowed := } FUNCTION {first.presort} { calc.label sort.label title.field field.used = { skip$ } { " " * make.list.label sortify.names * " " * title field.or.null sort.format.title * } if$ #1 entry.max$ substring$ 'sort.key$ := } ITERATE {preliminaries} ITERATE {first.presort} SORT STRINGS { last.sort.label next.extra last.full.label} INTEGERS { last.extra.num last.etal.allowed} FUNCTION {initialize.confusion} { #0 int.to.chr$ 'last.sort.label := #0 int.to.chr$ 'last.full.label := #1 'last.etal.allowed := } FUNCTION {confusion.pass} { last.sort.label sort.label = { last.etal.allowed { last.full.label make.full.label sortify.names = { skip$ } { #0 'etal.allowed := #0 'last.etal.allowed := } if$ } { #0 'etal.allowed := } if$ } { sort.label 'last.sort.label := make.full.label sortify.names 'last.full.label := #1 'last.etal.allowed := } if$ } EXECUTE {initialize.confusion} ITERATE {confusion.pass} EXECUTE {initialize.confusion} REVERSE {confusion.pass} FUNCTION {initialize.last.extra.num} { #0 int.to.chr$ 'last.sort.label := "" 'next.extra := #0 'last.extra.num := } FUNCTION {forward.pass} { last.sort.label sort.label = { last.extra.num #1 + 'last.extra.num := last.extra.num int.to.chr$ 'extra.label := } { "a" chr.to.int$ 'last.extra.num := "" 'extra.label := sort.label 'last.sort.label := } if$ } FUNCTION {reverse.pass} { next.extra "b" = { "a" 'extra.label := } 'skip$ if$ year empty$ { "n.d." extra.label emphasize * 'list.year := } { year extra.label emphasize * 'list.year := } if$ extra.label 'next.extra := } ITERATE {first.presort} SORT EXECUTE {initialize.last.extra.num} ITERATE {forward.pass} REVERSE {reverse.pass} FUNCTION {second.presort} { make.list.label title.field field.used = { sort.format.title } { sortify.names } if$ " " * list.year field.or.null sortify * " " * title.field field.used = { skip$ } { title field.or.null sort.format.title * } if$ #1 entry.max$ substring$ 'sort.key$ := } ITERATE {second.presort} SORT FUNCTION {begin.bib} { preamble$ empty$ 'skip$ { "\harvardpreambledefs{%" write$ newline$ preamble$ write$ "}" write$ newline$ "\harvardpreambletext{%" write$ newline$ preamble$ write$ "}" write$ newline$ } if$ "\begin{thebibliography}{xx}" write$ newline$ } EXECUTE {begin.bib} EXECUTE {init.state.consts} ITERATE {call.type$} FUNCTION {end.bib} { newline$ "\end{thebibliography}" write$ newline$ } EXECUTE {end.bib} latex2rtf-2.3.18/test/fig_testa.eps0000777000175000017500000003052213050672360017364 0ustar wilfriedwilfried%!PS-Adobe-3.0 EPSF-3.0 %%BoundingBox: 0 0 249 178 %%HiResBoundingBox: 0.000000 0.000000 248.900000 177.349878 %......................................... %%Creator: AFPL Ghostscript 704 (epswrite) %%CreationDate: 2002/11/08 17:03:41 %%DocumentData: Clean7Bit %%LanguageLevel: 2 %%EndComments %%BeginProlog % This copyright applies to everything between here and the %%EndProlog: % Copyright (C) 2001 artofcode LLC, Benicia, CA. All rights reserved. %%BeginResource: procset GS_epswrite_2_0_1001 /GS_epswrite_2_0_1001 80 dict dup begin /PageSize 2 array def/setpagesize{ PageSize aload pop 3 index eq exch 4 index eq and{ pop pop pop}{ PageSize dup 1 5 -1 roll put 0 4 -1 roll put dup where{ exch get exec} { pop/setpagedevice where { pop 1 dict dup /PageSize PageSize put setpagedevice} { /setpage where{ pop PageSize aload pop pageparams 3 {exch pop} repeat setpage}if}ifelse}ifelse}ifelse} bind def /!{bind def}bind def/#{load def}!/N/counttomark # /rG{3{3 -1 roll 255 div}repeat setrgbcolor}!/G{255 div setgray}!/K{0 G}! /r6{dup 3 -1 roll rG}!/r5{dup 3 1 roll rG}!/r3{dup rG}! /w/setlinewidth #/J/setlinecap # /j/setlinejoin #/M/setmiterlimit #/d/setdash #/i/setflat # /m/moveto #/l/lineto #/c/rcurveto # /p{N 2 idiv{N -2 roll rlineto}repeat}! /P{N 0 gt{N -2 roll moveto p}if}! /h{p closepath}!/H{P closepath}! /lx{0 rlineto}!/ly{0 exch rlineto}!/v{0 0 6 2 roll c}!/y{2 copy c}! /re{4 -2 roll m exch dup lx exch ly neg lx h}! /^{3 index neg 3 index neg}! /f{P fill}!/f*{P eofill}!/s{H stroke}!/S{P stroke}! /q/gsave #/Q/grestore #/rf{re fill}! /Y{P clip newpath}!/Y*{P eoclip newpath}!/rY{re Y}! /|={pop exch 4 1 roll 3 array astore cvx exch 1 index def exec}! /|{exch string readstring |=}! /+{dup type/nametype eq{2 index 7 add -3 bitshift 2 index mul}if}! /@/currentfile #/${+ @ |}! /B{{2 copy string{readstring pop}aload pop 4 array astore cvx 3 1 roll}repeat pop pop true}! /Ix{[1 0 0 1 11 -2 roll exch neg exch neg]exch}! /,{true exch Ix imagemask}!/If{false exch Ix imagemask}!/I{exch Ix image}! /Ic{exch Ix false 3 colorimage}! /F{/Columns counttomark 3 add -2 roll/Rows exch/K -1/BlackIs1 true>> /CCITTFaxDecode filter}!/FX{<Q%fpU@4N'%6OF59~> , K 409 1290 47 46 /1J $C --%lt+G5=f&FSb>5]dPr5rV=n8\.]pl$@6NX7'EO5QCc^rp//4Y3Oa./$61_d^GEq&r%5q`E5sR K*jo7~> , 452 1327 48 54 /6D $C .Os#VW.dutcu_bg#T.`;E=Kg/mG?[6DY)lC+Pqb8gm/2@)gVtcg?_%B_[S3+]n9OD.rB7UYeo&L h7PgmauEg_lu:H:)MY5,:]~> , 478 1376 66 45 /1O $C -&r6N+R.6p9AL`H+PeC/4XTDP9'JJcl#Lm0FOGJL?*p5<>A605Cf]-6CQ1As89[Y::"!pCFIT)_ S$^sT[r1$6h>~> , 529 1411 56 66 /6I $C ,AImi8sLkL6m<#gK:qd"GX00`%E5hph , 579 1461 50 51 /1T $C ,6PaaKH3)t9K5:g\d15d]HH#Wkri8"FM?V'\#8uXrqHHmqqnib41FV3_ma'9pgL(._V!hGC-d[c ;V&5~> , 613 1496 57 58 /6M $C +E)V9DV_pJmG"O6SJ$-<\kUUjPB<:ih'VAF8[P$98^[f`95/6d[as0bP94SJg2>MXO8nqRh=ki2 65O%u%gJ[~> , 656 1539 61 60 /1X $C ,AMk/DV_pJmG#*fh7Ijpe#,U)dVb7jS#"jekr22F:J%p`r0(>UG*^RbQ*dZiD(B=&X&c?+[2s`p VbWd4<39?3C&~> , 695 1563 60 71 /6S $C -(R3eh7Ik):7W"Y , 733 1631 1O , 810 1705 5Y , 876 1757 1J , 370 1096 6S , 407 1163 1O , 484 1238 5Y , 551 1290 1J , 593 1327 6D , 620 1376 1O , 670 1411 6I , 720 1461 1T , 755 1496 6M , 797 1539 1X , 837 1563 6S , 874 1631 1O , 951 1705 5Y , 1017 1757 1J , 345 944 6I , 395 994 1T , 430 1029 6M , 472 1071 1X , 511 1096 6S , 549 1163 1O , 626 1238 5Y , 692 1290 1J , 735 1327 6D , 761 1376 1O , 811 1411 6I , 862 1461 1T , 896 1496 6M , 939 1539 1X , 978 1563 6S , 1016 1631 1O , 1092 1705 5Y , 1159 1757 1J , 367 823 1J , 409 860 6D , 436 909 1O , 486 944 6I , 537 994 1T , 571 1029 6M , 613 1071 1X , 653 1096 6S , 690 1163 1O , 767 1238 5Y , 834 1290 1J , 876 1327 6D , 902 1376 1O , 953 1411 6I , 1003 1461 1T , 1038 1496 6M , 1080 1539 1X , 1120 1563 6S , 1157 1631 1O , 1234 1705 5Y , 1300 1757 1J , 365 696 1O , 442 771 5Y , 508 823 1J , 551 860 6D , 577 909 1O , 628 944 6I , 678 994 1T , 712 1029 6M , 755 1071 1X , 794 1096 6S , 832 1163 1O , 909 1238 5Y , 975 1290 1J , 1017 1327 6D , 1044 1376 1O , 1094 1411 6I , 1145 1461 1T , 1179 1496 6M , 1222 1539 1X , 1261 1563 6S , 1298 1631 1O , 1375 1705 5Y , 1442 1757 1J , 353 526 1T , 387 562 6M , 430 604 1X , 469 629 6S , 506 696 1O , 583 771 5Y , 650 823 1J , 692 860 6D , 719 909 1O , 769 944 6I , 819 994 1T , 854 1029 6M , 896 1071 1X , 936 1096 6S , 973 1163 1O , 1050 1238 5Y , 1116 1290 1J , 1159 1327 6D , 1185 1376 1O , 1236 1411 6I , 1286 1461 1T , 1321 1496 6M , 1363 1539 1X , 1402 1563 6S , 1440 1631 1O , 1517 1705 5Y , 1583 1757 1J , 367 393 6D , 393 441 1O , 444 477 6I , 494 526 1T , 529 562 6M , 571 604 1X , 610 629 6S , 648 696 1O , 725 771 5Y , 791 823 1J , 834 860 6D , 860 909 1O , 910 944 6I , 961 994 1T , 995 1029 6M , 1038 1071 1X , 1077 1096 6S , 1115 1163 1O , 1191 1238 5Y , 1258 1290 1J , 1300 1327 6D , 1327 1376 1O , 1377 1411 6I , 1428 1461 1T , 1462 1496 6M , 1504 1539 1X , 1544 1563 6S , 1581 1631 1O , 1658 1705 5Y , 1724 1757 1J , 466 355 1J , 508 393 6D , 535 441 1O , 585 477 6I , 636 526 1T , 670 562 6M , 712 604 1X , 752 629 6S , 789 696 1O , 866 771 5Y , 933 823 1J , 975 860 6D , 1001 909 1O , 1052 944 6I , 1102 994 1T , 1137 1029 6M , 1179 1071 1X , 1219 1096 6S , 1256 1163 1O , 1333 1238 5Y , 1399 1290 1J , 1442 1327 6D , 1468 1376 1O , 1519 1411 6I , 1569 1461 1T , 1603 1496 6M , 1646 1539 1X , 1685 1563 6S , 1723 1631 1O , 1799 1705 5Y , 1866 1757 1J , 607 355 1J , 650 393 6D , 676 441 1O , 727 477 6I , 777 526 1T , 811 562 6M , 854 604 1X , 893 629 6S , 931 696 1O , 1008 771 5Y , 1074 823 1J , 1116 860 6D , 1143 909 1O , 1193 944 6I , 1244 994 1T , 1278 1029 6M , 1321 1071 1X , 1360 1096 6S , 1397 1163 1O , 1474 1238 5Y , 1541 1290 1J , 1583 1327 6D , 1609 1376 1O , 1660 1411 6I , 1710 1461 1T , 1745 1496 6M , 1787 1539 1X , 1827 1563 6S , 1864 1631 1O , 1941 1705 5Y , 2007 1757 1J , 749 355 1J , 791 393 6D , 818 441 1O , 868 477 6I , 918 526 1T , 953 562 6M , 995 604 1X , 1035 629 6S , 1072 696 1O , 1149 771 5Y , 1215 823 1J , 1258 860 6D , 1284 909 1O , 1335 944 6I , 1385 994 1T , 1420 1029 6M , 1462 1071 1X , 1501 1096 6S , 1539 1163 1O , 1616 1238 5Y , 1682 1290 1J , 1724 1327 6D , 1751 1376 1O , 1801 1411 6I , 1852 1461 1T , 1886 1496 6M , 1929 1539 1X , 1968 1563 6S , 2005 1631 1O , 2082 1705 5Y , 2149 1757 1J , 890 355 1J , 933 393 6D , 959 441 1O , 1009 477 6I , 1060 526 1T , 1094 562 6M , 1137 604 1X , 1176 629 6S , 1214 696 1O , 1290 771 5Y , 1357 823 1J , 1399 860 6D , 1426 909 1O , 1476 944 6I , 1527 994 1T , 1561 1029 6M , 1603 1071 1X , 1643 1096 6S , 1680 1163 1O , 1757 1238 5Y , 1823 1290 1J , 1866 1327 6D , 1892 1376 1O , 1943 1411 6I , 1993 1461 1T , 2028 1496 6M , 2070 1539 1X , 2109 1563 6S , 2147 1631 1O , 2224 1705 5Y , 2290 1757 1J , 1032 355 1J , 1074 393 6D , 1100 441 1O , 1151 477 6I , 1201 526 1T , 1236 562 6M , 1278 604 1X , 1318 629 6S , 1355 696 1O , 1432 771 5Y , 1498 823 1J , 1541 860 6D , 1567 909 1O , 1617 944 6I , 1668 994 1T , 1702 1029 6M , 1745 1071 1X , 1784 1096 6S , 1822 1163 1O , 1898 1238 5Y , 1965 1290 1J , 2007 1327 6D , 2034 1376 1O , 2084 1411 6I , 2135 1461 1T , 2169 1496 6M , 2211 1539 1X , 2251 1563 6S , 2288 1631 1O , 2365 1705 5Y , 1173 355 1J , 1215 393 6D , 1242 441 1O , 1292 477 6I , 1343 526 1T , 1377 562 6M , 1420 604 1X , 1459 629 6S , 1496 696 1O , 1573 771 5Y , 1640 823 1J , 1682 860 6D , 1708 909 1O , 1759 944 6I , 1809 994 1T , 1844 1029 6M , 1886 1071 1X , 1926 1096 6S , 1963 1163 1O , 2040 1238 5Y , 2106 1290 1J , 2149 1327 6D , 2175 1376 1O , 2226 1411 6I , 2276 1461 1T , 2310 1496 6M , 2353 1539 1X , 2392 1563 6S , 1314 355 1J , 1357 393 6D , 1383 441 1O , 1434 477 6I , 1484 526 1T , 1519 562 6M , 1561 604 1X , 1600 629 6S , 1638 696 1O , 1715 771 5Y , 1781 823 1J , 1823 860 6D , 1850 909 1O , 1900 944 6I , 1951 994 1T , 1985 1029 6M , 2028 1071 1X , 2067 1096 6S , 2104 1163 1O , 2181 1238 5Y , 2248 1290 1J , 2290 1327 6D , 2317 1376 1O , 2367 1411 6I , 1456 355 1J , 1498 393 6D , 1525 441 1O , 1575 477 6I , 1625 526 1T , 1660 562 6M , 1702 604 1X , 1742 629 6S , 1779 696 1O , 1856 771 5Y , 1922 823 1J , 1965 860 6D , 1991 909 1O , 2042 944 6I , 2092 994 1T , 2127 1029 6M , 2169 1071 1X , 2208 1096 6S , 2246 1163 1O , 2323 1238 5Y , 2389 1290 1J , 1597 355 1J , 1640 393 6D , 1666 441 1O , 1716 477 6I , 1767 526 1T , 1801 562 6M , 1844 604 1X , 1883 629 6S , 1921 696 1O , 1997 771 5Y , 2064 823 1J , 2106 860 6D , 2133 909 1O , 2183 944 6I , 2234 994 1T , 2268 1029 6M , 2310 1071 1X , 2350 1096 6S , 2387 1163 1O , 1739 355 1J , 1781 393 6D , 1807 441 1O , 1858 477 6I , 1908 526 1T , 1943 562 6M , 1985 604 1X , 2025 629 6S , 2062 696 1O , 2139 771 5Y , 2205 823 1J , 2248 860 6D , 2274 909 1O , 2325 944 6I , 2375 994 1T , 1880 355 1J , 1922 393 6D , 1949 441 1O , 1999 477 6I , 2050 526 1T , 2084 562 6M , 2127 604 1X , 2166 629 6S , 2203 696 1O , 2280 771 5Y , 2347 823 1J , 2389 860 6D , Q q 0 0 250000 0 0 250000 ^ Y K 681 1530 0 -750 P 0 -127.5 -16.5 -144 -141 -151.5 c 0 -28.5 438 0 0 29 p -123 5.98 -144 25.41 -144 134.5 c 0 766.5 81 0 p 171 0 204 -27 238.5 -192 c 36 0 -9 255 -846 0 -9 -255 36 0 p 36 163.5 70.5 192 238.5 192 c h f* 1762.5 503.5 -42 0 P -75 -162 -139.5 -197.5 -354 -197.5 c -40.5 0 p -73.5 0 -136.5 7.29 -147 17.5 c -7.5 4.5 -10 21 -10 46.5 c 0 370 230.5 0 p 123 0 145.5 -19.43 165 -143.5 c 34.5 0 0 348 ^ p -10.5 -61.5 -16.5 -84 -33 -105 c -19.5 -25.5 -61.5 -37.5 -132 -37.5 c -230.5 0 0 333 p 0 42 8.91 51 49 51 c 202.5 0 p 169.5 0 202.5 -22.5 228 -157.5 c 37.5 0 -4.5 214.5 -796.5 0 0 -28.5 p 111 -9 131 -30 131 -135 c 0 -666 p 0 -105 -21.08 -127.5 -131 -135 c 0 -28.5 810 0 h f* 2477 1593 -357 0 0 -28.5 P 81 -3 105 -13.5 105 -48 c 0 -22.5 -16.5 -49.5 -60 -103.5 c -169.5 -207 -63 88.5 p -91.5 127.5 -127.5 192 -127.5 225 c 0 30 22.5 42 72 43.5 c 42 1.5 0 28.5 -453 0 ^ p 97.5 -4.5 124.5 -27 271.5 -235.5 c 163.5 -240 -235.5 -289.5 p -133.5 -159 -141 -165 -217.5 -171 c 0 -28.5 349.5 0 ^ p -87 6 -114 18 -114 52.5 c 0 22.5 22.5 60 78 129 c 178.5 222 142.5 -210 p 49.5 -73.5 76.5 -124.5 76.5 -147 c 0 -27 -24 -42 -75 -43.5 c -6 0 -22.5 -1.5 -40.5 -3 c 0 -28.5 445.5 0 ^ p -79.5 9 -102 24 -166.5 111 c -288 411 219 273 p 97.5 117 127.5 135 223.5 141 c h f* 179 G 651 1560 0 -750 P 0 -127.5 -16.5 -144 -141 -151.5 c 0 -28.5 438 0 0 29 p -123 5.98 -144 25.41 -144 134.5 c 0 766.5 81 0 p 171 0 204 -27 238.5 -192 c 36 0 -9 255 -846 0 -9 -255 36 0 p 36 163.5 70.5 192 238.5 192 c h f* 1732.5 533.5 -42 0 P -75 -162 -139.5 -197.5 -354 -197.5 c -40.5 0 p -73.5 0 -136.5 7.29 -147 17.5 c -7.5 4.5 -10 21 -10 46.5 c 0 370 230.5 0 p 123 0 145.5 -19.43 165 -143.5 c 34.5 0 0 348 ^ p -10.5 -61.5 -16.5 -84 -33 -105 c -19.5 -25.5 -61.5 -37.5 -132 -37.5 c -230.5 0 0 333 p 0 42 8.91 51 49 51 c 202.5 0 p 169.5 0 202.5 -22.5 228 -157.5 c 37.5 0 -4.5 214.5 -796.5 0 0 -28.5 p 111 -9 131 -30 131 -135 c 0 -666 p 0 -105 -21.08 -127.5 -131 -135 c 0 -28.5 810 0 h f* 2447 1623 -357 0 0 -28.5 P 81 -3 105 -13.5 105 -48 c 0 -22.5 -16.5 -49.5 -60 -103.5 c -169.5 -207 -63 88.5 p -91.5 127.5 -127.5 192 -127.5 225 c 0 30 22.5 42 72 43.5 c 42 1.5 0 28.5 -453 0 ^ p 97.5 -4.5 124.5 -27 271.5 -235.5 c 163.5 -240 -235.5 -289.5 p -133.5 -159 -141 -165 -217.5 -171 c 0 -28.5 349.5 0 ^ p -87 6 -114 18 -114 52.5 c 0 22.5 22.5 60 78 129 c 178.5 222 142.5 -210 p 49.5 -73.5 76.5 -124.5 76.5 -147 c 0 -27 -24 -42 -75 -43.5 c -6 0 -22.5 -1.5 -40.5 -3 c 0 -28.5 445.5 0 ^ p -79.5 9 -102 24 -166.5 111 c -288 411 219 273 p 97.5 117 127.5 135 223.5 141 c h f* cleartomark end end pagesave restore showpage %%PageTrailer %%Trailer %%Pages: 1 latex2rtf-2.3.18/test/accentchars.tex0000777000175000017500000001120713050672360017705 0ustar wilfriedwilfried\documentclass{article} \begin{document} \begin{table} \begin{center} \begin{tabular}{ll} \verb#\r{a}#& \r{a}\\ \verb#\`{o}#& \`{o}\\ \verb#\'{o}#& \'{o}\\ \verb#\^{o}#& \^{o}\\ \verb#\"{o}#& \"{o}\\ \verb#\~{o}#& \~{o}\\ \verb#\={o}#& \={o}\\ \verb#\.{o}#& \.{o}\\ \verb#\v{o}#& \v{o}\\ \verb#\c{c}#& \c{c}\\ \verb#\d{o}#& \d{o}\\ \verb#\b{b}#& \b{b}\\ \verb#$\hat{o}$#& $\hat{o}$\\ \verb#$\check{o}$#& $\check{o}$\\ \verb#$\acute{o}$#& $\acute{o}$\\ \verb#$\grave{o}$#& $\grave{o}$\\ \verb#$\tilde{o}$#& $\tilde{o}$\\ \verb#$\bar{o}$#& $\bar{o}$\\ \verb#$\vec{o}$#& $\vec{o}$\\ \verb#$\dot{o}$#& $\dot{o}$\\ \verb#$\ddot{o}$#& $\ddot{o}$\\ \verb#\u{o}#& \u{o}\\ \verb#$\breve{o}$#& $\breve{o}$ \end{tabular} \caption{Totally wacked o's. These should work.} \end{center} \end{table} \pagebreak \begin{table} \begin{center} \begin{tabular}{ll} \verb#\r{x}#& \r{x}\\ \verb#\`{x}#& \`{x}\\ \verb#\'{x}#& \'{x}\\ \verb#\^{x}#& \^{x}\\ \verb#\"{x}#& \"{x}\\ \verb#\~{x}#& \~{x}\\ \verb#\={x}#& \={x}\\ \verb#\.{x}#& \.{x}\\ \verb#\v{x}#& \v{x}\\ \verb#\c{x}#& \c{x}\\ \verb#\d{x}#& \d{x}\\ \verb#\b{x}#& \b{x}\\ \verb#$\hat{x}$#& $\hat{x}$\\ \verb#$\check{x}$#& $\check{x}$\\ \verb#$\acute{x}$#& $\acute{x}$\\ \verb#$\grave{x}$#& $\grave{x}$\\ \verb#$\tilde{x}$#& $\tilde{x}$\\ \verb#$\bar{x}$#& $\bar{x}$\\ \verb#$\vec{x}$#& $\vec{x}$\\ \verb#$\dot{x}$#& $\dot{x}$\\ \verb#$\ddot{x}$#& $\ddot{x}$\\ \verb#\u{x}#& \u{x}\\ \verb#$\breve{x}$#& $\breve{x}$ \end{tabular} \caption{Totally wacked x's.} \end{center} \end{table} \pagebreak \begin{table} \begin{center} \begin{tabular}{ll} \verb#\r{X}#& \r{X}\\ \verb#\`{X}#& \`{X}\\ \verb#\'{X}#& \'{X}\\ \verb#\^{X}#& \^{X}\\ \verb#\"{X}#& \"{X}\\ \verb#\~{X}#& \~{X}\\ \verb#\={X}#& \={X}\\ \verb#\.{X}#& \.{X}\\ \verb#\v{X}#& \v{X}\\ \verb#\c{X}#& \c{X}\\ \verb#\d{X}#& \d{X}\\ \verb#\b{X}#& \b{X}\\ \verb#$\hat{X}$#& $\hat{X}$\\ \verb#$\check{X}$#& $\check{X}$\\ \verb#$\acute{X}$#& $\acute{X}$\\ \verb#$\grave{X}$#& $\grave{X}$\\ \verb#$\tilde{X}$#& $\tilde{X}$\\ \verb#$\bar{X}$#& $\bar{X}$\\ \verb#$\vec{X}$#& $\vec{X}$\\ \verb#$\dot{X}$#& $\dot{X}$\\ \verb#$\ddot{X}$#& $\ddot{X}$\\ \verb#\u{X}#& \u{X}\\ \verb#$\breve{X}$#& $\breve{X}$ \end{tabular} \caption{Totally wacked X's.} \end{center} \end{table} \pagebreak \begin{table} \begin{center} \begin{tabular}{ll} \verb#\r{$\psi$}#& \r{$\psi$}\\ \verb#\`{$\psi$}#& \`{$\psi$}\\ \verb#\'{$\psi$}#& \'{$\psi$}\\ \verb#\^{$\psi$}#& \^{$\psi$}\\ \verb#\"{$\psi$}#& \"{$\psi$}\\ \verb#\~{$\psi$}#& \~{$\psi$}\\ \verb#\={$\psi$}#& \={$\psi$}\\ \verb#\.{$\psi$}#& \.{$\psi$}\\ \verb#\v{$\psi$}#& \v{$\psi$}\\ \verb#\c{$\psi$}#& \c{$\psi$}\\ \verb#\d{$\psi$}#& \d{$\psi$}\\ \verb#\b{$\psi$}#& \b{$\psi$}\\ \verb#$\hat{\psi}$#& $\hat{\psi}$\\ \verb#$\check{\psi}$#& $\check{\psi}$\\ \verb#$\acute{\psi}$#& $\acute{\psi}$\\ \verb#$\grave{\psi}$#& $\grave{\psi}$\\ \verb#$\tilde{\psi}$#& $\tilde{\psi}$\\ \verb#$\bar{\psi}$#& $\bar{\psi}$\\ \verb#$\vec{\psi}$#& $\vec{\psi}$\\ \verb#$\dot{\psi}$#& $\dot{\psi}$\\ \verb#$\ddot{\psi}$#& $\ddot{\psi}$ \end{tabular} \caption{Totally wacked $\psi$'s.} \end{center} \end{table} \pagebreak \begin{table} \begin{center} \begin{tabular}{ll} \verb#\'{a}#& \'{a}\\ \verb#\'{e}#& \'{e}\\ \verb#\'{i}#& \'{i}\\ \verb#\'{o}#& \'{o}\\ \verb#\'{u}#& \'{u}\\ \verb#\'{A}#& \'{A}\\ \verb#\'{E}#& \'{E}\\ \verb#\'{I}#& \'{I}\\ \verb#\'{O}#& \'{O}\\ \verb#\'{U}#& \'{U} \end{tabular} \caption{Grave accents} \end{center} \end{table} \begin{table} \begin{center} \begin{tabular}{ll} \verb#\`{a}#& \`{a}\\ \verb#\`{e}#& \`{e}\\ \verb#\`{i}#& \`{i}\\ \verb#\`{o}#& \`{o}\\ \verb#\`{u}#& \`{u}\\ \verb#\`{A}#& \`{A}\\ \verb#\`{E}#& \`{E}\\ \verb#\`{I}#& \`{I}\\ \verb#\`{O}#& \`{O}\\ \verb#\`{U}#& \`{U} \end{tabular} \caption{Acute accents} \end{center} \end{table} \begin{table} \begin{center} \begin{tabular}{ll} \verb#\"{a}#& \"{a}\\ \verb#\"{e}#& \"{e}\\ \verb#\"{i}#& \"{i}\\ \verb#\"{o}#& \"{o}\\ \verb#\"{u}#& \"{u}\\ \verb#\"{A}#& \"{A}\\ \verb#\"{E}#& \"{E}\\ \verb#\"{I}#& \"{I}\\ \verb#\"{O}#& \"{O}\\ \verb#\"{U}#& \"{U} \end{tabular} \caption{Umlaute accents} \end{center} \end{table} \begin{table} \begin{center} \begin{tabular}{ll} \verb#\d{a}#& \d{a}\\ \verb#\d{e}#& \d{e}\\ \verb#\d{i}#& \d{i}\\ \verb#\d{o}#& \d{o}\\ \verb#\d{u}#& \d{u}\\ \verb#\d{A}#& \d{A}\\ \verb#\d{E}#& \d{E}\\ \verb#\d{I}#& \d{I}\\ \verb#\d{O}#& \d{O}\\ \verb#\d{s}#& \d{s}\\ \verb#\d{u}#& \d{u}\\ \verb#\d{S}#& \d{S}\\ \verb#\d{U}#& \d{U} \end{tabular} \caption{dot accents} \end{center} \end{table} \begin{table} \begin{center} \begin{tabular}{ll} \verb#\v{s}#& \v{s}\\ \verb#\v{S}#& \v{S}\\ \verb#\c{c}#& \c {c}\\ \verb#\c{C}#& \c {C} \end{tabular} \caption{Miscellaneous accents} \end{center} \end{table} \end{document} latex2rtf-2.3.18/test/fig_testd.pdf0000777000175000017500000000257313050672360017356 0ustar wilfriedwilfried%PDF-1.2 %Ç쏢 8 0 obj <> stream xœUAƒ0 ď~…_@ $ź çŇ'ôPU*ÔCż_ěZńFb7“Ăh–!ąčń˙c§ƒ.ŰÂĎeţRâÉ0ł~‰ˇ+Ő2d^…wĽŒ˙üŚű˙~,´42g ZY& ZŠ ˆ–FÖN RBkÁ&”°,نľ`EŹŤ¨b-֐nq—ó‰á]“C˝×˝h˘{9ŃD÷r˘ˆîĺD#z›Ë‘edSHXF–CĂ2˛"–‘ŐPąŒkĚ!˝Ëí> /Contents 8 0 R >> endobj 3 0 obj << /Type /Pages /Kids [ 7 0 R ] /Count 1 >> endobj 1 0 obj <> endobj 6 0 obj <> endobj 10 0 obj <> endobj 5 0 obj <>stream xœkhŮDŔ€ endstream endobj 4 0 obj <>stream xœc`Ů endstream endobj 2 0 obj <>endobj xref 0 11 0000000000 65535 f 0000000506 00000 n 0000000953 00000 n 0000000447 00000 n 0000000806 00000 n 0000000658 00000 n 0000000554 00000 n 0000000306 00000 n 0000000015 00000 n 0000000287 00000 n 0000000628 00000 n trailer << /Size 11 /Root 1 0 R /Info 2 0 R >> startxref 1105 %%EOF latex2rtf-2.3.18/test/fig_test.tex0000777000175000017500000000176013050672360017236 0ustar wilfriedwilfried\documentclass{article} \usepackage{epsf} \usepackage{graphicx} \usepackage{psfig} \begin{document} \begin{figure} \epsffile{fig_test.eps} \caption{Figure test using epsffile.} \label{figure1} \end{figure} Figure \ref{figure1} tests \verb#\epsffile{fig_test.eps}#. \begin{figure*} \epsffile{fig_test.eps} \caption{Figure* test using epsffile.} \label{figure1a} \end{figure*} Figure \ref{figure1} tests \verb#\epsffile{fig_test.eps}#. \begin{figure} \includegraphics{fig_test.eps} \caption{Figure test using includegraphics.} \label{figure2} \end{figure} Figure \ref{figure2} tests \verb#\includegraphic{fig_test.eps}#. \begin{figure} \psfig{figure=fig_test.eps} \caption{Figure test using psfig.} \label{figure3} \end{figure} Figure \ref{figure3} tests \verb#\psfig{figure=fig_test.eps}#. \begin{figure} \includegraphics{fig_testc.ps} \caption{Figure test using includegraphics.} \label{figure4} \end{figure} Figure \ref{figure4} tests \verb#\includegraphic{fig_testc.ps}#. \end{document} latex2rtf-2.3.18/test/linux.tex0000777000175000017500000030122613050672360016571 0ustar wilfriedwilfried\documentclass[a4paper, notitlepage]{report} \usepackage[latin1]{inputenc} % Accept european-encoded (latin1) characters. \usepackage{a4wide} % Wide paper -- W.Hennings: this is bad practice \usepackage{url} \urlstyle{sf} % For Swedish reports \usepackage[english]{babel} %\frenchspacing % For encapsulated postscript figures % % Use: % % \includegraphics{width=10cm, height=10cm}{fig.eps} % % where width and height are optional \usepackage{graphicx} % For eps figures \usepackage{epsfig} % Alternative package % To get figures, tables, etc. where you want them. % % Use: % % \begin{figure}[H] % ... % %\usepackage{here} \setcounter{tocdepth}{4} \setcounter{secnumdepth}{4} % Nicer headers and footers % % \fancyhead[L/C/R]{} to change headers % \fancyfoot[L/C/R]{} to change footers \usepackage{fancyhdr} \fancyhead[L]{Linux Versus AIX, HP-UX, Tru64 UNIX, Solaris} \fancyhead[R]{by César da Silva} %W.Hennings: following line is bad practice and gives error message under MikTeX: %\footrulewidth 0.5pt % Insert a line above the footer \pagestyle{fancy} % % Exchange text in encapsulated postscript figures with LaTeX text % % Before the image, insert arbitrary many % (Don't worry, it _will_ look good when you convert to postscript) % % \psfrag{original text}{substituted text} % \usepackage{psfrag} % % For nicer captions % % Valid options (between []) are: % % Indentation: hang, center, centerlast, nooneline % Size: scriptsize, small, normalsize, large, Large % Style: up, it, sl, sc, md, bf, rm, sf, tt % %\usepackage[hang,small,bf]{caption} % % Want to change font? % % Uncomment your choice, if all uncommented, Computer Modern Roman is % used. Note that some of these don't seem to work properly % %\usepackage{pspalatino} %\usepackage{palatino} \usepackage{times} %\usepackage{charter} %\usepackage{utopia} %\usepackage{pifont} %\usepackage{chancery} %\usepackage{bookman} %\usepackage{avant} %\usepackage{helvet} %\usepackage{zapfchan} %\usepackage{courier} %\usepackage{newcent} % % Some optional packages: % % % Index section % % Put a \index{keyword} at the word in the text, a \printindex where % you want the index printed, and run "makeindex .idx % after LaTeX-compiling (and compile a second time) % \usepackage{makeidx} %Index-section \makeindex % % Fancier enumeration % You get a new \begin{enumerate}[XXX] where you can specify XXX to be % text {i,I,a,A,1}, for example \begin{enumerate}[Uppg. a)] to get a % Uppg. a)/b)/c) list. % \usepackage{enumerate} \begin{document} \title{Linux \\ VS.\\ AIX, HP--UX, Tru64 UNIX, Solaris} \author{ By \\ \\ {\Large César da silva} \\ (\emph{na98csa@student.hig.se}) \\ \\ Instructor: Andreas Larsson \\ \\ UNIVERSITY OF GÄVLE} \maketitle \begin{abstract} There has been a lot of talk in the press that Linux is not ready for the enterprise server market where the demand for high availability, performance and security are the main issues. This report will look at what the latest Linux kernel doesn't have in comparison to the main Unix actors within the enterprise server market and finally conclude if Linux is ready for the enterprise server market or what features Linux have to implement to compete with the other Unix clones to get into the enterprise server market. This is a comparative report who got its information mainly from the original UNIX supplier's homepage, books, articles and from people doing technical support. The information is put together, sorted out, and compared to see which features Linux is lacking in comparison to other Unix's and and if it has more functions then the other operating systems, and finally got to the conclusion that Linux is not yet ready for the enterprise market. To penetrate the enterprise server market it has to implement support for more amount of memory, more high--availability functions and more security functions. It could not be verified if Linux has more features than any of the compared operating systems due to the lack of information. \\ \\ This is a second paragraph just to see how the indentation for the abstract environment works. It is not at all clear what the indentation should be. Keywords: {\bf Linux, operating system, AIX, HP-UX, True64 UNIX, Solaris, enterprise} \end{abstract} \pagenumbering{Roman} \newpage \clearpage \begin{center} \vspace*{12pt} \vfill \section*{Thanks} Thanks to my wife for her patience, the Linux kernel developers (especially those mentioned in the appendix), Jan Strage, Ian P. Springer, and Joel Eriksson for their help. \end{center} \vfill \newpage \clearpage \tableofcontents % Always compile twice if you have changed much \newpage \clearpage \setlength{\parindent}{0pt} \setlength{\parskip}{1ex plus 0.5ex minus 0.2ex} \section{OPEN PUBLICATION LICENSE} \subsection{REQUIREMENTS ON BOTH UNMODIFIED AND MODIFIED VERSIONS} The Open Publication works may be reproduced and distributed in whole or in part, in any medium physical or electronic, provided that the terms of this license are adhered to, and that this license or an incorporation of it by reference (with any options elected by the author(s) and/or publisher) is displayed in the reproduction. Proper form for an incorporation by reference is as follows: \quote{Copyright \copyright \ 2001 by César da Silva. This material may be distributed only subject to the terms and conditions set forth in the Open Publication License, v1.0 or later (the latest version is presently available at \url{http://www.opencontent.org/openpub/}).} The reference must be immediately followed with any options elected by the author(s) and/or publisher of the document (see section VI). Commercial redistribution of Open Publication-licensed material is permitted. Any publication in standard (paper) book form shall require the citation of the original publisher and author. The publisher and author's names shall appear on all outer surfaces of the book. On all outer surfaces of the book the original publishers name shall be as large as the title of the work and cited as possessive with respect to the title. \subsection{COPYRIGHT} The copyright to each Open Publication is owned by its author(s) or designee. \subsection{SCOPE OF LICENSE} The following license terms apply to all Open Publication works, unless otherwise explicitly stated in the document. Mere aggregation of Open Publication works or a portion of an Open Publication work with other works or programs on the same media shall not cause this license to apply to those other works. The aggregate work shall contain a notice specifying the inclusion of the Open Publication material and appropriate copyright notice. \begin{description} \item{SEVERABILITY.} If any part of this license is found to be unenforceable in any jurisdiction, the remaining portions of the license remain in force. \item{NO WARRANTY.} Open Publication works are licensed and provided "as is" without warranty of any kind, express or implied, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose or a warranty of non-infringement. \end{description} \subsection{REQUIREMENTS ON MODIFIED WORKS} All modified versions of documents covered by this license, including translations, anthologies, compilations and partial documents, must meet the following requirements: \begin{enumerate} \item The modified version must be labeled as such. \item The person making the modifications must be identified and the modifications dated. \item Acknowledgement of the original author and publisher if applicable must be retained according to normal academic citation practices. \item The location of the original unmodified document must be identified. \item The original author's (or authors') name(s) may not be used to assert or imply endorsement of the resulting document without the original author's (or authors') permission. \end{enumerate} \subsection{GOOD-PRACTICE RECOMMENDATIONS } In addition to the requirements of this license, it is requested from and strongly recommended of redistributors that: \begin{enumerate} \item If you are distributing Open Publication works on hardcopy or CD-ROM, you provide email notification to the authors of your intent to redistribute at least thirty days before your manuscript or media freeze, to give the authors time to provide updated documents. This notification should describe modifications, if any, made to the document. \item All substantive modifications (including deletions) be either clearly marked up in the document or else described in an attachment to the document. \end{enumerate} Finally, while it is not mandatory under this license, it is considered good form to offer a free copy of any hardcopy and CD-ROM expression of an Open Publication-licensed work to its author(s). \subsection{LICENSE OPTIONS} The author(s) and/or publisher of an Open Publication-licensed document may elect certain options by appending language to the reference to or copy of the license. These options are considered part of the license instance and must be included with the license (or its incorporation by reference) in derived works. A. To prohibit distribution of substantively modified versions without the explicit permission of the author(s). "Substantive modification" is defined as a change to the semantic content of the document, and excludes mere changes in format or typographical corrections. To accomplish this, add the phrase `Distribution of substantively modified versions of this document is prohibited without the explicit permission of the copyright holder.' to the license reference or copy. B. To prohibit any publication of this work or derivative works in whole or in part in standard (paper) book form for commercial purposes is prohibited unless prior permission is obtained from the copyright holder. To accomplish this, add the phrase 'Distribution of the work or derivative of the work in any standard (paper) book form is prohibited unless prior permission is obtained from the copyright holder.' to the license reference or copy. \newpage \section{CHANGES} Here are the changes made to the documentation after the thesis had been handed in. \begin{itemize} \item Corrected the reference point of ACL on HP-UX from 30 to 44 (see page \pageref{change1}). \item Added the following supported file systems to HP-UX: CDFS, HFS, LOFS, ISO9660, Rockridge, and High Sierra (see page \pageref{change2}). \item Added reference and marks in table for HP-UX NFS v2 \& v3 support (see page \pageref{change3}). \item Added support for LVM for HP-UX (see page \pageref{change4}). \item Splitted up Bibliography in sections (see the bibliography on page \pageref{biblio}. \item Added BSD Process Accounting to kernel specific features table and a explanation (see page \pageref{procacc} and \pageref{change5}). \item Changed ``Result analys'' to: \begin{quote}``Linux has support for a more kinds of file systems and architectures than any other operating system in this thesis. But it lacks high-availability and security features (like Live upgrade, dynamic memory/processor resilience, HSM, ACL, IPSec...).''\end{quote} See page \pageref{resultanalys}. \item Added text to ``Conclusions'':\begin{quote}``For Linux to get into the enterprise server market it has to include support for more memory, high-availability and security features, to make it more competitive against the other operating systems. The features Linux lacks of right now are:\begin{itemize} \item Dynamic processor/memory resilience. \item Dynamic page sizing. \item Live upgrade. \item ACL \item Hierarchical storage management. \item CacheFS \item IPSec'' \end{itemize}\end{quote} See page \pageref{conclusions}. \item Removed item ``Compare the different operating systems network features.'' from the section Conclusions (see page \pageref{conclusions}). \item Added REALIZATION chapter with the following text:\begin{quote}``Most of the work has been done by reading various different documentation,asking technical support, and identifying if the mentioned functions were implemented in the kernel. The functions was then inserted into a table to finally get to a result.''\end{quote} See page \pageref{realization}. \item Added section IMPLEMENTATION to the REALIZATION chapter with the following text:\begin{quote}``The implementation of the missing functions are beyond the scope of this thesis. They are left to the developers of the Linux kernel.''\end{quote}. See page \pageref{implementation} \item Changed the text \begin{quote}``Many combinations are possible but I have only seen a few referred to.''\end{quote} on page \pageref{change10} to \begin{quote}``Many other combinations are possible.''\end{quote} \item Added \begin{quote}``There are more kernel options in the Linux kernel then those mentioned in this thesis, but due to the lack of missing information if those functions are available or not on the other operating systems and if they are implemented in the kernel, they are not mentioned in this thesis. This is also true for some functions that the other operating systems have, but that couldn't be confirmed if they existed in the Linux kernel. This would lead to a incorrect and unfair analys of the functions in the kernels.''\end{quote} to section ``DELIMINATION OF THE PROBLEM AREA''. See page \pageref{delimination}. \item Added a picture to the NUMA section to show what SMP and NUMA is. \end{itemize} \newpage \pagenumbering{arabic} \chapter{INTRODUCTION} Linux is a free clone of the operating system Unix, created by Linus Torvald, originally developed as a hobby project. It was first developed for 32-bit x86-based PCs\footnote{386 or higher.}. These days it also runs on various other computer architectures. Here is a list of the supported architectures that Linux runs on\cite{24}: \begin{itemize} \item Compaq Alpha AXP \item Sun \item SPARC \item UltraSPARC \item Motorola 68000 \item PowerPC \item ARM \item Hitachi SuperH \item IBM S/390 \item MIPS \item HP PA-RISC \item Intel IA-64 \item DEC VAX \item AMD x86-64\footnote{Port is currently in progress.} \end{itemize} The popularity of Linux among home users is increasing rapidly, and contributed to a wider acceptance of UNIX among home users\cite{3}. Linux is also beginning to get into the embedded/PDA market \cite{2}. Linux is having more difficulty in being established on the enterprise server market, where it is mostly used for Internet related tasks\cite{3}. This document is going to encounter what features the Linux kernel is lacking in comparation to other Unix kernel. \section{PROBLEM DEFINITION} The major obstacle Linux is having is in getting into the enterprise server market. Whenever Linux gets into a corporation it's only used for Internet related assignments, and not in the "heart" of the corporation.\cite{4} Historically, large corporations have steered clear of free software due to the unfounded assumption that anything free can't be worthwhile and also because Linux has a reputation of being unstable, lack of performance, support, and to not provide for the high degree of security that the enterprises requires about redundancy and high availability in comparison to other UNIX operating systems and Microsoft Windows NT/200 operating systems. This myth are somewhat dispelled in reference.\cite{5} \section{AIM} This report will look at what the other Unix systems used on the enterprise server market, have support for in the kernel that Linux doesn't have. The UNIX operating systems that are going to be measure up against Linux latest kernel are: \begin{center} \begin{itemize} \item AIX\footnote{AIX is copyrighted by IBM.} \item True64 UNIX\footnote{Tru64 UNIX is copyrighted by Compaq.} \item Solaris\footnote{Solaris is copyrighted by Sun Microsystems.} \item HP-UX\footnote{HP-UX is copyrighted by Hewlett Packard.} \end{itemize} \end{center} The latest official, not modified version of every operating system is utilized. Ultimately resolve what features Linux needs to implement in the kernel, in comparison to the Unix operating system referred to above, so that it can be established and used in the enterprise market or in the government agencies. The report might be used as a guide to the enterprises or governments that are planning on adapting Linux or to give a indication to the Linux kernel developers on what features Linux would have to implement in the kernel in comparison to the above mentioned operating system to get an better acceptance and be more widely used in the enterprise/government market. \section{QUESTIONS AT ISSUE} \begin{itemize} \item What features doesn't Linux have in the kernel that other Unix kernels have? \item Does any of the other Unix operating system have more features than Linux? \end{itemize} \section{EXPECTED RESULT} The expected result is that Linux is ready for the enterprise market, because it probably has all the features that all the other UNIX system already have. \chapter{THEORETICAL BACKGROUND} \section{KERNEL/OPERATING SYSTEM} A kernel is merely a computer program that acts as a mediator through which the user interacts with the computer and its components and peripheral devices (processor, processes, files, disks, terminals, printers, plotters, etc.). A UNIX operating system consists of a kernel and some system programs. There are also some application programs for doing work. The kernel is the heart of the operating system\footnote{In fact, it is often mistakenly considered to be the operating system itself, but it is not. An operating system provides many more services than a plain kernel.}. It keeps track of files on the disk, starts programs and runs them concurrently, assigns memory and other resources to various processes, receives packets from and sends packets to the network, and so on. The kernel does very little by itself, but it provides tools with which all services can be built. It also prevents anyone from accessing the hardware directly, forcing everyone to use the tools it provides. This way the kernel provides some protection for users from each other. The tools provided by the kernel are used via system calls. When loaded, the module code resides in the kernel's address space and executes entirely within the context of the kernel. \cite{15} Everything that the kernel support does not have to be in memory all the time. Now days most of the kernels are modular. It means that some system functions are loaded into memory when needed.A kernel module is simply an object file containing routines and/or data to load into a running kernel. \cite{15} The system programs use the tools provided by the kernel to implement the various services required from an operating system. System programs, and all other programs, run `on top of the kernel', in what is called the user mode. The difference between system and application programs is one of intent: applications are intended for getting useful things done (or for playing, if it happens to be a game), whereas system programs are needed to get the system working. A word processor is an application; telnet is a system program. The difference is often somewhat blurry. \cite{15} An operating system can also contain compilers and their corresponding libraries (GCC and the C library in particular under Linux), although not all programming languages need be part of the operating system. Documentation, and sometimes even games, can also be part of it. Traditionally, the operating system has been defined by the contents of the installation disks; with Linux it is not as clear since it is spread all over the FTP sites of the world or bundled with different distributions. \cite{15} \begin{figure}[h] \begin{center} %\epsfig{file=os.eps, height=4cm, width=4cm} **Missing** \end{center} \caption{Block diagram of an operating system.} \label{fig:OperatingSystem} \end{figure} \section{HISTORY OF UNIX} Dennis Ritchie and Ken Thompson at Bell Laboratories developed UNIX on a PDP-7 in the late 1960s; it was first called UNIX in 1970. After 1975, UNIX developed along two separate branches leading to Berkeley (BSD) UNIX and System V UNIX. Nowadays, System V UNIX is available on most computers but different to popular belief, there is no such thing as a "standard" UNIX version. Although the basic commands are available in most UNIX implementations, hardware vendors like to add non-standard options and an identical item commands to tailor their UNIX to their machines. Standardization is, however, being undertaken by the Open Software Foundation (OSF) and, separately, by Unix International; the first precede, OSF/1, is running on the new DEC an Alpha computer. \cite{6} Since the mid-1980s approximately, UNIX has evolved into the operating system of choice for most machines (probably because it is cheap for a hardware vendor to adopt it), which means that users in a multi-vendor computer environment no longer have to learn a new operating system whenever they get a new computer (now they only have to familiarize themselves with the system-specific extensions).\cite{6} UNIX does have some strong points: it is fairly portable, flexible (i.e., easy to change, adapt and extend) and contains several powerful utilities. Also, it supports multiple users and multi-tasking. Nevertheless, UNIX is still very much an operating system for computer programmers; in skilled hands, it is very powerful, but to the novice end-user it is sometimes a nightmare (system-specific extensions, inconsistent syntax). Fortunately, on the modern graphics workstations more and more tools become available which make life easier.\cite{6} \section{UNIX PRODUCT OVERVIEW} \begin{description} \item[AIX]\footnote{AIX is copyrighted by IBM.} was the first major second-generation UNIX product to ship after Sun and HP established its UNIX beachheads in the 1980s.\cite{6} AIX 5L is the first version of AIX to support platforms other than IBM's Power-based hardware. This version runs also on systems based on Intel's upcoming 64-bit Itanium (IA-64) processor, putting IBM in a strong position to take an early lead on IA-64 with a production-grade UNIX system available on the day of shipment. It now also has the capability to run Linux programs, which are compiled with their "AIX Toolbox for Linux" package.\cite{7} \item[HP-UX]\footnote{HP-UX is copyrighted by Hewlett Packard.} -- HP has long been a leading supplier of commercial UNIX solutions, succeeding in part by emphasizing business-oriented factors such as quality, investment protection, consulting abilities, and support. In the 80s, HP was one of the first major vendors to predict the market potential of an improve and robust UNIX operating system. HP seeks to position HP-UX as the preferred enterprise UNIX for next-generation commodity servers based on IA-64. Due in part to its focus on the needs of business users, HP has a history of introducing advanced UNIX functions conservatively in HP-UX, optimizing instead for criteria such as stability and investment protection. But with HP-UX 11i announced in July 2000, HP clearly showed its intensions about pushing HP-UX technically, including a burst of competitive tactical features in the newest release. \cite{8} \item[SOLARIS 8]\footnote{Solaris is copyrighted by Sun Microsystems.} -- Sun originally made UNIX fashionable. After establishing itself as a leading supplier of high-performance workstations during the 1980s and early 1990s, Sun shifted its strategic goal to becoming a first-tier vendor of enterprise servers.\cite{6} Sun announced the Solaris 8 release on January 26, 2000. Sun also announced the free access to the Solaris source and end-user binary. The Solaris 8 Operating Environment is available for both the SPARC(tm) and Intel platforms.\cite{9} \item[TRU64 UNIX]\footnote{Tru64 UNIX is copyrighted by Compaq.} derives from a long and sometimes contentious relationship between UNIX culture and Digital Equipment Corporation, which Compaq purchased in early 1998. Unix was born and bred on Digital hardware in the 1970s. AT\&T and universities mostly drove UNIX development, but Digital always maintained a UNIX group to develop and support drivers as well as to test new designs on UNIX. Digital eventually released ULTRIX, which was UNIX improved by clearer documentation, enhancements specific to Digital hardware, and support services. As the industry began to use UNIX more, Digital along with other vendors, funded efforts such as the X Window System, the Open Software Foundation (OSF) initiative. Tru64 UNIX became the first in the industry to move to 64 bits, and also played an early role in the creation of Linux by donating resources and equipment so that Linux had a native Alpha port by 1994.\cite{6} The latest Tru64 UNIX v5.1 was released in the fall of 2000. Today, Compaq's Alpha UNIX business is focused on five strategic markets: Business Intelligence, High Performance Technical Computing, Telco and Internet Applications, and Enterprise Applications.\cite{10} \item[LINUX] -- Linus Torvalds, a Finnish student, first developed Linux\footnote{Linux is a trademark by Linus Torvalds.} in 1991. He developed a minimal Unix kernel and posted a message to an Internet newsgroup, asking if anyone would be interested in helping him to develop it. First tens, then hundreds of individuals began dedicating their free time to developing Linux. Now the number of volunteers has grown into the thousands. Individuals volunteer their time to perform such tasks as kernel debugging, quality control, and writing documentation. A Linux distribution includes the kernel and user utilities from the GNU system, developed by the Free Software Foundation since 1982, which makes it a complete operating system. This tools have been in development for about a decade before the Linux development started. The utilities/tools allows Linux distributions to have a complete set of tools that can be expected of an UNIX operating system. There are various distributions that are free to download from the Internet or that you can buy for a small amount of money. The result is a commercial operating system that rivals, or even exceeds, commercial releases of Unix available today. Its stability and breadth of features has captured the attention of network administrators who have deployed Linux for file, print and Web servers. Linux is one of the most popular UNIX clones among home users, which has contributed to a wider acceptance and knowledge of UNIX among end users, where it's usage is increasing rapidly. Linux is also starting to get its foot into the embedded and corporation market.\cite{24} The latest stable release branch is version 2.4, which was released on the 4:th of January 2001, which includes many improved enhancements related to the previous versions, the most notable improvement is support for the multitude of printers, digital cameras, scanners, keyboards, mice, network cards, modems, Zip drives and other devices that plug into the universal serial bus (USB) port, SMP, and 3-D accelerated cards. The new kernel is already included in various Linux distributions (SuSe, Linux Mandrake, Red Hat\ldots.\cite{12} \end{description} \section{PREVIOUS RESEARCH} There is no known research of this kind about Linux. The latest kernel version 2.4.x branch, was released on the 4:th of January 2001\cite{12}. If any similar research before has been done, it would be with an older branch of the kernel, which means that the research is not up to date and hence not the same as this report. There is a research by D.H. Brown Associates, Inc that compares AIX 4.3.3, HP-UX 11i, Solaris 8, Tru64 UNIX 5.1 and UNIXWARE 7.1.1 to each other, Linux is never compared in this studies.\cite{13} \section{IMPORTANT THEORIES}\label{importanttheories} \subsection{KERNEL SPECIFIC FEATURES} \begin{description} \item[KERNEL THREADS] \label{kernel-threads}-- A thread (as defined by Maurice Bach's ``The Design of the UNIX Operating System'') is an independent flow of control within a process, composed of a context (including register set and a program counter) and a sequence of instructions to execute. The traditional flow of control within a program has been a process with a single context of registers, following a single path through the code. This is referred to as the ``process-base'' or ``single-threaded model''. For an application in a single-threaded model to handle multiple tasks, it would have to break those tasks up into multiple processes, coordinate with signal handlers to provide some concurrency, or simply deal with those tasks serially (one after the other).\cite{32} In this case it is the kernel itself and not a user-space process that is threaded. This allows for independent tasks in the kernel to be run synchronously instead of being forced to use asynchronous multiplexing between activities.\cite{15} \item[HOT SWAP] \label{hotswap}-- Allows changing peripheral while the computer is running. This means that there is no need to stop the system while hardware maintenance is done (i.e. changing a faulty hard disk).\cite{22} \item[SYSV INTERPROCESS COMMUNICATION (IPC)] \label{ipc} is a set of programming interface that allow a programmer to create and manage individual program process that can run concurrently in an operating system. This allows a program to handle many user requests at the same time. Since a single user request may result in multiple processes running in the operating system on the user's behalf, the processes need to communicate with other. The IPC interfaces make this possible. Each IPC method has its own advantages and limitations so it is not unusual for a single program to use all of the IPC methods. IPC methods include: \cite{15} \begin{itemize} \item pipe and named pipe \item message queueing \item semaphore \item shared memory \item sockets \end{itemize} \item[DYNAMIC PROCESSOR RESILIENCE] \label{dynprocres} -- The operating system isolates faulty CPUs. In the event of a non-fatal error that allows the system to continue processing, the system discontinues the usage of the failed CPU. If the system crashes because of the faulty CPU, the system will restart and isolate the faulty CPU. \item[DYNAMIC MEMORY RESILIENCE]\label{dynmemres} allow the operating system to isolate faulty memory areas that suffer from single-bit errors, so that the software wont use any of unreliable memory are.\cite{13} \item[DYNAMIC PAGE SIZING]\label{dynpagesize} -- UNIX operating systems normally uses fixed--size pages to perform I/O operations. But some application may benefit from variable page sizes. For example, programs that uses many small files (such as e-mail servers) may operate more efficiently with small pages, while I/O--intensive programs using large blocks transfers may run better with larger page sizes.\cite{13} \item[ALTERNATE I/O PATHING]\label{altiopath} allows the operating system to re-route the I/O of devices, such as disk or network adapters, to a backup device, in case of failure.\cite{13} \item[LIVE UPGRADE]\label{liveupg} allows installation of operating system image to occur simultaneously while the system is being use. \item[BSD Process Accounting] \label{procacc}allow for a user-space program to record detailed information about any particular process, how much memory and CPU cycles it utilized, the owner, when it began and ended, etc. \end{description} \subsection{DISTRIBUTED SYSTEMS} The normal usage of distributed systems is to archive high-performance systems, load-balancing\footnote{The main system distributes the system load between the different CPUs belonging to the system.} and high-availability\footnote{Systems that no matter what, have to run 24 hour a day and 7 days a week.} systems or any combination of them.\cite{15} \begin{description} \item[SYMMETRIC MULTI-PROCESSING MODEL (SMP)] \label{smp} -- In a symmetric multiprocessing model (often abbreviated as SMP) all the processors share identical copy of the same operating system, memory, I/O resources, and the copies of the operating system communicate with one another as needed. Since all processors in an SMP server must be able to access all system resources simultaneously, operating systems are deeply involved in the quality of an SMP implementation. Indeed, enabling a kernel to effectively manage large numbers of processors has traditionally presented an extraordinary and tedious challenge for operating-system developers.\cite{15} There is no generally appropriate way to anticipate how well an application will scale on an SMP system under real--world conditions, but the TCP-C (Transaction Processing Performance Council) benchmark is the most widely accepted method to measure SMP systems. TCP-C are vendor-neutral and subjected to rigorous auditing procedures. The test stresses a number of system components that are frequently exercised in commercial-server applications.\cite{28} But as you can read from the TCP-C testes, biggest is not always best, because they don't scale well. And all vendors seldom sell machines with their maximum amount of possible processors (look at the vendors offerings).\cite{28} \item[NON-UNIFORM MEMORY ACCESS (NUMA)] \label{numa} -- On a multi processor system the processors normally share the same bus to the memory and I/O devices. This means that all CPUs in the system are subjected to the same latency and bandwidth restrictions with respect to accessing the system's memory and I/O channels. Uniform Memory Access (UMA) is a term sometimes used to describe this system architecture. One way to address this bottleneck is to design a system built from SMP blocks (each with a limited number of CPUs, memory arrays and I/O ports) and add a second-level bus or switch to connect the blocks. Non-Uniform Memory Access (NUMA) is the term used to describe this type of system architecture because it results in a bandwidth and latency difference, depending on whether a particular CPU accesses memory and I/O resources locally (in the same building block where the CPU resides) or remotely (in another building block).\cite{14} \end{description} %\clearpage %\newpage %\begin{figure}[h] %\begin{center} %\epsfig{file=numa.ps, height=14cm, width=8cm,angle=270} %\end{center} %\caption{Picture of SMP systems in a NUMA enviroment.} %\label{fig:NUMA} %\end{figure} \subsection{DISTRIBUTED FILE SYSTEMS} Distributed file system stores files on one or more computers called servers, and makes them accessible to other computers called clients, where they appear as normal files. There are several advantages to using file servers: the files are more widely available since many computers can access the servers, and sharing the files from a single location is easier than distributing copies of files to individual clients. Backups and safety of the information are easier to arrange since only the servers need to be backed up. The servers can provide large storage space, which might be costly or impractical to supply to every client. The usefulness of a distributed file system becomes clear when considering a group of employees sharing documents. However, more is possible. For example, sharing application software, and printers are an equally good candidate. In both cases system administration becomes easier\cite{15}. The protocols that we are going to get in touch with and that makes use of the functionality of an distributed filesystem are: \begin{description} \item[NETWORK FILE SYSTEM] \label{nfs} was developed by Sun Microsystems and introduced to the market 1984. The most common used version of NFS are version 2 and 3.\cite{15} NFS version 3 contains several features to improve performance, reduce server load, and reduce network traffic. Since NFS version 3 is faster for I/O writes, and uses fewer operations over the network, it will use the network more efficient. Higher throughput may make the network busier. NFS version 3 maintains the stateless server design and simple crash recovery of version 2 along with its approach to build a distributed file service from cooperating protocols.\cite{19} \item[CODA FILE SYSTEM] \label{coda} is an experimental file system, with its origin in AFS2\footnote{AFS is marketed, maintained, and extended by Transarc Corporation. AFS is based on a distributed file system originally developed at the Information Technology Center at Carnegie-Mellon University that was called the Andrew File System.}, developed in the group of M. Satyanarayanan at Carnegie Mellon University since 1987.\cite{15} \item[SERVER MESSAGE BLOCK] \label{smb} (commonly abbreviated as SMB) protocol. This protocol is sometimes also referred to as the Common Internet File System (CIFS), LanManager or NetBIOS protocol. IBM and Microsoft developed it.\cite{15} \item[APPLETALK]\label{appletalk} is local area network communication protocol originally created for Apple computers. It allows Macintosh computers to communicate, share resources through the network. \cite{30} \item[NETWARE] \label{netware} made by Novell. Initially very successful in installing its products in large and small office local area networks (LANs), Novell has redesigned (or at least re-featured) NetWare to work successfully as part of larger and heterogeneous networks, including the Internet.\cite{18} \end{description} \subsection{FILE SYSTEMS} Almost every operating system has its own filesystem (the mechanism for storage and access to the data and programs on the storage).\cite{15} The support of various file systems allows the system to be used for reading/writing to media in an environment with different other operating systems, without the usage of distributed filesystem method. Here is a short presentation of some\footnote{There are to many to mention them all in this thesis.} of the file systems \cite{24}: \begin{description} \item[VFAT] -- Windows. \item[EXT]-- Used by older Linux. There is a newer improved version called EXT2. \item[ISO 9660] -- A filesystem standard for CD's. \item[NTFS] -- NT. \item[HPFS] -- OS/2. \item[UFS] -- used by System V; Coherent; Xenix; BSD; and derivatives like SunOS, FreeBSD, NetBSD, and NeXTStep. \item[HFS] -- The older Macintosh Hierarchical File System. The newer filesystem is called HFS+. \item[AFFS] -- Amiga Fast File System. \item[Memory File System] \label{mfs} -- The file--system resides completely in virtual memory. \end{description} The techniques described below can be stacked in a number of ways to maximize performance and reliability, though at the cost of added complexity. \begin{description} \item[REDUNDANT ARRAY OF INDEPENDENT DISKS (RAID)] \label{raid} is a way of storing the same data in different places (thus, redundantly) on multiple hard disk . By placing data on multiple disks, I/O operations can overlap in a balanced way, improving performance. Since multiple disks increases the mean time between failure (MTBF), storing data redundantly also increases fault-tolerance.\cite{15} A RAID appears to the operating system to be a single logical hard disk. RAID employs the technique of striping , which involves partitioning each driver's storage space into units ranging from a sector (512 bytes) up to several megabytes. The stripes of all the disks are interleaved and addressed in order.\cite{15} In a single-user system where large records, such as medical or other scientific images, are stored, the stripes are typically set up to be small (perhaps 512 bytes) so that a single record spans all disks and can be accessed quickly by reading all disks at the same time.\cite{15} In a multi-user system, better performance requires establishing a stripe wide enough to hold the typical or maximum size record. This allows overlapped disk I/O across drives. There exists two methods on implementing RAID:\cite{15} \begin{description} \item[Software RAID] -- Implemented on the kernel. Slow but cheap. This is the one used in this thesis for comparation. \item[Hardware RAID] -- Implemented in the hardware and use on SAN's and almost every SCSI controller has support for it. In comparation to software RAID, hardware RAID is more expensive but also much faster, efficient and has more functions: remote copy, flashcopy\ldots \end{description} There are at least nine types of RAID plus a non-redundant array (RAID-0): \cite{31} \begin{description} \item[RAID-0]-- This technique has striping but no redundancy of data. It offers the best performance but no fault-tolerance. \item[RAID-1]-- This type is also known as disk mirroring and consists of at least two drives that duplicate the storage of data. There is no striping. Read performance is improved since either disk can be read at the same time. Write performance is the same as for single disk storage. RAID-1 provides the best performance and the best fault-tolerance in a multi-user system. \item[RAID-2]-- This type uses striping across disks with some disks storing error checking and correcting (ECC) information. It has no advantage over RAID-3.\footnote{RAID-2 and -3 requires spindle synchronization in order to achieve good performance. Very few commodity drives support that today,therefore these RAID levels are almost never used.} \item[RAID-3]-- This type uses striping and dedicates one drive to storing parity information. The embedded error checking (ECC) information is used to detect errors. Data recovery is accomplished by calculating the exclusive OR (XOR) of the information recorded on the other drives. Since an I/O operation addresses all drives at the same time, RAID-3 cannot overlap I/O. For this reason, RAID-3 is best for single-user systems with long record applications. \item[RAID-4]-- This type uses large stripes, which means you can read records from any single drive. This allows you to take advantage of overlapped I/O for read operations. Since all write operations have to update the parity drive, no I/O overlapping is possible. RAID-4 offers no advantage over RAID-5. \item[RAID-5]-- This type includes a rotating parity array, thus addressing the write limitation in RAID-4. Thus, all read and write operations can be overlapped. RAID-5 stores parity information but not redundant data (but parity information can be used to reconstruct data). RAID-5 requires at least three and usually five disks for the array. It's best for multi-user systems in which performance is not critical or which do few write operations. \end{description} There are also hybrids available based on RAID 0 or 1 and one other level. Many other combinations are possible\label{change10}. These are more complex than the above mentioned RAID levels. RAID 0/1 combines striping with duplication which gives very high transfers combined with fast seeks as well as redundancy. The disadvantage is high disk consumption as well as the above mentioned complexity. RAID 1/5 combines the speed and redundancy benefits of RAID5 with the fast seek of RAID1. Redundancy is improved compared to RAID 0/1 but disk consumption is still substantial. Implementing such a system would involve typically more than 6 drives, perhaps even several controllers or SCSI channels. \item[CACHEFS] \label{cachefs} improves the efficiency of the client--side NFS access by the use of a caching mechanism.\cite{13} \item[AUTOFS] \label{autofs} allows an operating system to mount remote FS file systems automatically.\cite{13} \item[JOURNALING FILE SYSTEM] \label{jfs} keeps a journal of the activity on your hard disk, so that if your computer crashed for some reason, it will not need to run the file system check procedure. This means a faster start up of a crashed system. Examples of journaling file system are ReiserFS, XFS, JFS and ext3.\cite{16} \item[LOGICAL VOLUME MANAGER (LVM)] \label{lvm} provides an abstraction of the physical disks that makes the handling of larger file systems and disk arrays easier to administer. It does this by grouping sets of disks (physical volumes) into a pool (volume group). The volume group can be in turn be carved up into virtual partitions (logical volumes) that behave just like the ordinary disk block devices, except that (unlike disk partitions) they can be dynamically grown, shrunk and moved about without rebooting the system or entering into maintenance/stand-alone mode. A file system (or a swap space, or a raw device) sits on top of a logical volume. LVM utilities usually simplify adding, moving and removing hard drives, by abstracting away the file system mount points (/, /usr, /opt, etc) from the hard drive devices (/dev/hda1, /dev/sdb2, etc.). \cite{17} \item[ACCESS CONTROL LIST (ACL)] \label{acl} -- Each file and directory has an access list, specifying which users and the type of access they have to it.\cite{15} \item[HIERARCHICAL STORAGE MANAGEMENT (HSM)] \label{hsm} systems transparently move files between disk and secondary storage (such as tape), thus providing a large "virtual" disk farm. \cite{15} \end{description} \subsection{NETWORK} \begin{description} \item[IP V4] \label{ipv4}-- Internet Protocol version 4 is the protocol used on the Internet today. Works on the network layer on the OSI\footnote{A network architecture based on a proposal developed by the International Standard Organization (ISO). Its full name is ISO OSI (Open Systems Interconnection) Reference Model } model \cite{18} and is described in RFC\footnote{Technical reports called Request For Comments abbreviated as RFC are stored on-line and can be fetched by anyone interested in them at he following url \url{http://dir.yahoo.com/Computers_and_Internet/Standards/RFCs/}. } 791. \item[IP V6]\label{ipv6}-- A new version of IP (see previous section), support for a near-infinite number of IP addresses, a number so large that it approaches the number of molecules on the planet, solves a variety of problems (specially with security) with the IP v4 and is more flexible and efficient as well. IP v6 is described in RFC 1550. \cite{18} \item[VIRTUAL IP ADDRESSES] allows having a backup network card in case of the one in use fails to function. Then the backup car will be assigned the IP address of the original network card, and the user will not notice anything, except for a delay in response. \item[SIMPLE NETWORK MANAGEMENT PROTOCOL (SNMP)]\label{snmp} -- A protocol that is described in RFC 1448 and is a standard in the UNIX environment.SNMP is not actually a protocol: it's a client server application that runs on the UDP (User Datagram Protocol) service of the TCP/IP protocol suite. It was developed to be an efficient means of sending network management information over UDP, using Ports 161(SNMP) and 162 (SNMPTRAP).\cite{15} \item[DECNET]\label{decnet} was designed by Digital as a way to interconnect their range of products. The specifications for DECnet Phase IV are freely available. As with TCP/IP there are a number of higher-level protocols layered on top the basic DECnet protocol to provide services to applications.\cite{30} \item[ATTACHED RESOURCE COMPUTER NETWORK (ARCNET)] \label{arcnet} is a network type created before by Datapoint in the end of 70's which works in a way similar to popular Ethernet networks but which is also different in some very important ways. First of all, you can get ARCnet cards in at least two speeds: 2.5 Mbps (slower than Ethernet) and 100 Mbps (faster than normal Ethernet). In fact, there are others as well, but these are less common. The different hardware types are not compatible, so you cannot wire a 100 Mbps card to a 2.5 Mbps card.\cite{30} \item[ASYNCHRONOUS TRANSFER MODE (ATM)] \label{atm} is a dedicated-connection switching technology that organizes digital data into 53-byte cell units and transmits them over a physical medium using digital signal technology. Individually, a cell is processed asynchronously relative to other related cells and is queued before being multiplexed over the transmission path.\cite{18} Because ATM is designed to be easily implemented by hardware (rather than software), faster processing and switch speeds are possible. The prespecified bit rates are either 155.520 Mbps or 622.080 Mbps. Speeds on ATM networks can reach 10 Gbps. Along with Synchronous Optical Network (SONET) and several other technologies, ATM is a key component of broadband ISDN (BISDN).\cite{18} \item[FIBER DISTRIBUTED DATA INTERFACE (FDDI)] \label{fddi} is a standard for data transmission on fiber optic lines in a local area network (LAN) that can extend in range up to 200 km (124 miles). The FDDI protocol is based on the token ring protocol. In addition to being large geographically, an FDDI local area network can support thousands of users. \cite{18} An FDDI network contains two token rings, one for possible backup in case the primary ring fails. The primary ring offers up to 100 Mbps capacity. If the secondary ring is not needed for backup, it can also carry data, extending capacity to 200 Mbps. The single ring can extend the maximum distance; a dual ring can extend 100 km (62 miles). \cite{18} FDDI is a product of American National Standards Committee X3-T9 and conforms to the Open Systems Interconnection (OSI ) model of functional layering. It can be used to interconnect LANs using other protocols. FDDI-II is a version of FDDI that adds the capability to add circuit-switched service to the network so that voice signals can also be handled.\cite{18} \item[ETHERNET] \label{ethernet} is the most widely-installed local area network (LAN) technology. Specified in a standard, IEEE 802.3, Ethernet was originally developed by Xerox and then developed further by Xerox, DEC, and Intel. An Ethernet LAN typically uses coaxial cable or special grades of twisted pair wires. The most commonly installed Ethernet systems are called 10BASE-T and provide transmission speeds up to 10 Mbps. Devices are connected to the cable and compete for access using a Carrier Sense Multiple Access with Collision Detection (CSMA/CD) protocol. \cite{18} Fast Ethernet or 100BASE-T provides transmission speeds up to 100 megabits per second and is typically used for LAN backbone systems, supporting workstations with 10BASE-T cards. Gigabit Ethernet provides an even higher level of backbone support at 1000 megabits per second (1 gigabit or 1 billion bits per second). \cite{18} \item[TOKEN RING] \label{tokenring} network is a local area network (LAN) in which all computers are connected in a ring or star topology and a binary digit - or token-passing scheme is used in order to prevent the collision of data between two computers that want to send messages at the same time. The token ring protocol is the second most widely-used protocol on local area networks after Ethernet . The IBM Token Ring protocol led to a standard version, specified as IEEE 802.5. Both protocols are used and are very similar. The IEEE 802.5 token ring technology provides for data transfer rates of either 4 or 16 megabits per second. \item[BONDING/TRUNKING] \label{bonding}-- This is called Etherchannel by Cisco, Sun Trunking by Sun, Port Trunking by D-Link, and Bonding in Linux. If you have two Ethernet connections to some other computer, you can make them behave like one to double the speed of the connection.\cite{20} \item[TRAFFIC CONTROL]\label{tfc} provides administrators more control over who uses their bandwidth. Consider a Service Provider, who wishes to control which visitors to a web site are more important than others (free versus paying customers) and should get a relatively faster and better service. Before traffic control, this would have needed very expensive equipment. For example, depending on the set-up, it could be at the IP, TCP, and UDP etc i.e. control could be provided either by application (FTP gets less bandwidth than HTTP) or per IP address or ranges or a mixture of all these parameters.\cite{21} \item[INTERNET PROTOCOL SECURITY]\label{ipsec} (IPsec) is a developing standard for security at the network or packet processing layer of network communication.A big advantage of IPsec is that security arrangements can be handled without requiring changes to individual user computers.\cite{13} \item[SIMULTANEOUS IPV4/IPV6 STACKS ON THE SAME NETWORK]\label{ipv4ipv6stack} -- Allows the usage of IPv4 and IPv6 on the same network, allowing both protocols to be used by the server at the same time.\cite{13} \item[IPV6 GATEWAY FACILITIES]\label{ipv6gateway} allows the routing of packets from IPv4 networks to IPv6 networks, and vice-versa.\cite{15} \item[RSVP]\label{rsvp} With RSVP, people who want to receive a particular Internet ``program'' (think of a television program broadcast over the Internet) can reserve bandwidth through the Internet in advance of the program and be able to receive it at a higher data rate and in a more dependable data flow than usual.\cite{15} \item[INTEGRATED SERVICES]\label{intserv} (INTSERV) defines how applications services describe their bandwidth and latency requirements, how this information can be made available to routers (typically via RSVP), and how the appropriate quality of service can be tested and validated. Unlike DiffServ (see below), IntServ routers must classify packets based on several IP packet header fields and maintain state information for each flow.\cite{13} \item[DIFFERENTIATED SERVICES] \label{diffserv}(DIFFSERV or DS) is a protocol for specifying and controlling network traffic by class so that certain types of traffic get precedence - for example, voice traffic, which requires a relatively uninterrupted flow of data, might get precedence over other kinds of traffic.\cite{13} \item[IP MULTIPLEXING / ``ALIASING'']\label{aliasing} allows a single system to be seen as multiple numeric IP addresses, even on the same network-interface. Not to be confused with IP Multicasting.\cite{13} \item[IP MULTICAST SERVER]\label{ipmulticast} allows simultaneous transmition of IP packets to multiple hosts, which enables ``subscription''messaging for audio, video, software, or data streams.\cite{15} \item[TCP SELECTIVE ACKNOWLEDGEMENT]\label{sack} (SACK) allows TCP to recover from multiple losses within transmission windows, providing superior performance in lossy networks, and traffic crossing multiple networks.\cite{13} \item[ATM IP SWITCHING]\label{atmipswitching} Provide the ability to run IP protocol over the ATM protocol.\cite{15} \item[MULTILINK PPP]\label{multilinkppp} allows two PPP (Point-to-Point protocol) to be used as one, to deliver double throughput.\cite{13} \item[TCP LARGE WINDOWS]\label{rfc1323} (RFC 1323) allows the usage of windows that exceed the normal 64 KB limit to improve performance over high-bandwidth networks such as ATM or high-delay networks such as satellite links.\cite{15} \item[TCP/IP GRATUITOUS ARP]\label{rfc2002} (RFC 2002) Notifies the members of the network that the server associated with an IP address has changed.\cite{13} \item[PATH MTU DISCOVERY]\label{rfc1191} (RFC 1191) -- Router doesn't break up packets that are too-large.\cite{13} \item[PATH MTU DISCOVERY OVER UDP]\label{pathmtudiscoverudp} allows use of Path MTU Discovery (see above) over Universal Data Packet (UDP) connections, rather than the typical Internet Protocol (IP).\cite{13} \item[OPEN SHORTEST PATH FIRST]\label{rfc1533} (OSPF -- RFC 1533) replaces the Routing Information Protocol with a better and faster routing. \cite{15} \item[IP MULTIPATH ROUTING] \label{ipmultipathrouting} allows applications to specify multiple paths to a destination on an IP network.\cite{13} \end{description} %\section{PERSPECTIVE AND CHOICE OF THEORY} \section{DELIMINATION OF THE PROBLEM AREA}\label{delimination} This study will compare the latest Linux kernel to the following operating systems: \begin{itemize} \item AIX 5L version 5.1\footnote{AIX is copyrighted by IBM.} \item True64 UNIX 5.1\footnote{Tru64 UNIX is copyrighted by Compaq.} \item Solaris 8\footnote{Solaris is copyrighted by Sun Microsystems.} \item HP-UX 11i\footnote{HP-UX is copyrighted by Hewlett Packard.} \end{itemize} The latest release of each operating system will be used in the comparation. Some features that are not stated anywhere that they belong to the kernel are included, since other operating systems have implemented that function in the kernel, or that function is an essential operating system function according to an operating system reference book, like for example the reference book \cite{15} in the bibliography. The main functions function handled by the kernel are: \begin{itemize} \item device \item memory \item filesystem \end{itemize} There are more kernel options in the Linux kernel then those mentioned in this thesis, but due to the lack of missing information if those functions are available or not on the other operating systems and if they are implemented in the kernel, they are not mentioned in this thesis. This is also true for some functions that the other operating systems have, but that couldn't be confirmed if they existed in the Linux kernel. This would lead to a incorrect and unfair analys of the functions in the kernels. \chapter{METHOD} \section{CHOICE OF METHOD} The information was empirical accumulate and kernel specific functions where sorted out from the rest of other functions. The kernel features where explained, with the help of a descriptive method and then compared to the Linux kernel using a comparative method. \section{DESCRIPTION OF METHOD} This study compares five leading UNIX operating systems - IBM AIX 5L v5.1, Hewlett-Packard HP-UX 11i, Sun Solaris 8, Compaq Tru64 UNIX 5.1, and Linux 2.4.5 based on their functional capabilities implemented in the kernel as of May 27, 2001. The information for this thesis was gathered from various sources. The main sources are books, articles, technical specifications, press releases, and technical representatives from the corresponding company (in the Linux case those representatives are available only through a mailing list called ``Linux kernel development list''). A comparative method compares two or more things to each other and draws conclusions based on the result of the comparison. The following steps where taken in the creation of this thesis: \begin{enumerate} \item Search for technical papers on the Internet at various supplier's homepage, and by asking technical personal. \item Sort out features that are not in the kernel. \item Make a short description of each feature (See section \ref{importanttheories}). \item Create tables with all kernel features and operating systems (see section \ref{resulttable}). \item Create a summary of features that Linux is lacking by looking at the tables. \item Write down the result (see section \ref{resultanalys}). \end{enumerate} To arrive at a complete profile of an operating-system product, users should consider a number of factors in addition to those addressed by this thesis. They might be: \begin{description} \item[Application portfolio] An operating system is only useful as the amount of applications available for it. The suitability of an application portfolio for a given user depends on that user's specific requirements. \item[Quality] As the operating system is a technical product, it may be shipped with a number of defects, which are independent of its relative technical richness. \item[Vendor support] As a high-end system has many options/functions, operating systems introduce a high burden on request for support. The ability of vendors to meet those support requirements may vary. \item[Vendor experience] Vendors offering multiple operating systems may have different levels of experience within their respective product lines, depending on when they entered the market and with what level of commitment. \item[Skills availability] This factors applies both to the skills available within a user's organization and in the market as a whole. \item[Hardware/system capabilities] Since an operating system will only perform as well as its underlying hardware, users must remain aware of factors such as processor performance and the SMP ranges available on host platforms. \item[Cost] This factor depends not only on operating-system software prices and associated client license fees, but also on any necessary add-on packages, the price and price/performance of underlying hardware, and a wide variety of hard-to-measure "soft costs" related to ongoing management and training. \end{description} \chapter{REALIZATION}\label{realization} Most of the work has been done by reading various different documentation, asking technical support, and identifying if the mentioned functions were implemented in the kernel. The functions was then inserted into a table to finally get to a result. \section{IMPLEMENTATION}\label{implementation} The implementation of the missing functions are beyond the scope of this thesis. They are left to the developers of the Linux kernel. \chapter{RESULT} \section{TABLES}\label{resulttable} Cells with \begin{description} \item[empty] = The author could not verify if the operating system supports that function. The feature will be considered as missing due to the fact that looking for information about something that does not exist is almost impossible to find. \item[\textbullet] = Operating system does support that function. See reference inside the brackets for more information. \item[-] = Operating system does not support the function or it is offer as an external program. See reference inside the brackets for more information \end{description} \subsection{TABLE WITH KERNEL SPECIFIC FUNCTIONS} \begin{tabular}{|p{0.9in} |p{0.9in} |p{0.9in} |p{0.9in} |p{0.9in} |p{0.9in} | } \hline \textbf{Feature} &\textbf{Linux} &\textbf{Solaris} &\textbf{AIX} &\textbf{Tru64 UNIX }&\textbf{HP-UX}\\ \hline Supported Architectures & i386, alpha, cris, sparc, sparc64, m68k, ppc, arm, sh4, s390, mips, HP parisc, ia64, DEC VAX and AMD x86--64\cite{24} & sparc and i386 \cite{9} & ppc and ia64 \cite{7} & alpha \cite{10} & parisc and ia64 \cite{33} \\ \hline Maximum physical Memory tested and supported in \textbf{Gigabytes} & 64\cite{41} & 128 \cite{13} &96 \cite{40}& 256 \cite{13} & 256 \cite{13} \\ \hline Maximum supported and tested size of file system in \textbf{Terabytes}& 4\cite{38}& 1 \cite{13}&1\cite{7} & 16 \cite{10}& 2 \cite{13} \\ \hline \end{tabular} \begin{tabular}{|p{0.9in} |p{0.9in} |p{0.9in} |p{0.9in} |p{0.9in} |p{0.9in} | } \hline \textbf{Feature} &\textbf{Linux} & \textbf{Solaris} & \textbf{AIX} &\textbf{Tru64 UNIX}&\textbf{HP-UX}\\ \hline SMP \{\ref{smp}\} &64 \cite{37} & 128 \cite{9} &24 \cite{40} & 32 \cite{26} & 64 \cite{50} \\ \hline NUMA \{\ref{numa}\} &\textbullet \cite{56}&\textbullet \cite{43} &\textbullet \cite{45} &\textbullet \cite{44} &\textbullet \cite{100} \\ \hline Cryptographic hardware support &\textbullet \cite{57} &\textbullet \cite{13}&\textbullet \cite{13}&\textbullet \cite{13} &\textbullet \cite{13} \\ \hline Kernel threads \{\ref{kernel-threads}\} &\textbullet \cite{24} &\textbullet \cite{13} &\textbullet \cite{13} &\textbullet\cite{10}&-- \cite{13} \\ \hline Hot--swap \{\ref{hotswap}\} & \textbullet \cite{31} &\textbullet \cite{13} &\textbullet \cite{13} &\textbullet \cite{13}&\textbullet \cite{33} \\ \hline SysV IPC \{\ref{ipc}\} &\textbullet \cite{52}&\textbullet \cite{13} &\textbullet \cite{13} &\textbullet \cite{10} &\textbullet \cite{13} \\ \hline Dynamic Processor Resilience \{\ref{dynprocres}\} &--\ref{a1} &\textbullet \cite{13}&\textbullet \cite{13}&\textbullet \cite{13}&\textbullet \cite{13}\\ \hline Dynamic Memory Resilience \{\ref{dynmemres}\}&--\cite{11}&\textbullet \cite{13}&\textbullet \cite{13}&\textbullet \cite{13}&\textbullet \cite{13}\\ \hline Dynamic Page Sizing \{\ref{dynpagesize}\}&--\ref{a1} &-- \cite{13} &-- \cite{13} &\textbullet \cite{13}&\textbullet \cite{13} \\ \hline Live Upgrade \{\ref{liveupg}\}&--\ref{a1}&\textbullet \cite{13}&\textbullet \cite{13}& &\textbullet \cite{60} \\ \hline Alternative I/O Pathing \{\ref{altiopath}\}& &\textbullet \cite{13} &-- \cite{13}&\textbullet \cite{13}&\textbullet \cite{13} \\ \hline BSD Process Accounting \label{change5} \ref{procacc}&\textbullet \cite{54} &\textbullet \cite{13} &\textbullet \cite{13} &\textbullet \cite{13} &\textbullet \cite{13} \\ \hline \end{tabular} \subsection{TABLE WITH FILE SYSTEM SPECIFIC FUNCTIONS} \begin{tabular}{|p{0.9in} |p{0.9in} |p{0.9in} |p{0.9in} |p{0.9in} |p{0.9in} | } \hline \textbf{Feature} &\textbf{Linux} &\textbf{Solaris} &\textbf{AIX} &\textbf{Tru64 UNIX}&\textbf{HP-UX}\\ \hline Maximum tested and supported file size in \textbf{Terabytes} &2 GB \cite{38} & 1 \cite{13} &64 \cite{13}&10 \cite{26}& 2 \cite{13} \\ \hline ACL \{\ref{acl}\} &--\cite{38} &\textbullet \cite{42} &\textbullet \cite{68} &\textbullet \cite{10}&\textbullet \cite{51}\label{change1} \\ \hline RAID \{\ref{raid}\} support &\textbullet \cite{31} & &\textbullet \cite{7} &\textbullet \cite{10}&\textbullet \cite{33}\\ \hline Journaling File System \{\ref{jfs}\} & \textbullet \cite{54} &\textbullet \cite{13} & \textbullet \cite{7} &\textbullet \cite{10}& \textbullet \cite{3}\\ \hline Logical Volume Manager \{\ref{lvm}\} &\textbullet \cite{59}&\textbullet \cite{13} &\textbullet \cite{7}&\textbullet \cite{10}& \textbullet \cite{113} \label{change4} \\ \hline HSM \{\ref{hsm}\} &-- \ref{a1} & &-- \cite{7} & &\textbullet \cite{61}\\ \hline Memory File System \{\ref{mfs}\} &\textbullet \cite{55} &\textbullet \cite{13} &\textbullet \cite{13}&\textbullet \cite{101}& \textbullet \cite{13}\\ \hline CacheFS \{\ref{cachefs}\} &-- \cite{23} &\textbullet \cite{13} &\textbullet \cite{13}&-- \cite{13}& \textbullet \cite{13}\\ \hline AutoFS \{\ref{autofs}\} &\textbullet \cite{54} &\textbullet \cite{13} &\textbullet \cite{13}&\textbullet \cite{13}& \textbullet \cite{13}\\ \hline \end{tabular} \begin{tabular}{|p{0.9in} |p{0.9in} |p{0.9in} |p{0.9in} |p{0.9in} |p{0.9in} | } \hline \textbf{Feature} &\textbf{Linux} &\textbf{Solaris} &\textbf{AIX} &\textbf{Tru64 UNIX}&\textbf{HP-UX}\\ \hline Supported file systems & ISO9660, Rockridge, Ext2, VFAT, FATCVF, UFS, FFS, HPFS, NTFS, AFFS,ADFS, BFS, CRAMFS, PROC, ROMFS, SYSV--FS, UDF, UMDOS \cite{24} &DFS \cite{13} UDF, UFS \cite{25} &DFS \cite{13} &CFS \cite{13}, XCDR, DVDFS,\cite{10}, FFM , DFS, EFS, FDFS, PROCFS, SYSV, UFS, MFS, ISO9660 \cite{101}&UFS \cite{33} CIFS \cite{29}, CDFS \cite{106}, HFS \cite{107}, LOFS \cite{108}, DOS \cite{109}, ISO9660, Rockridge, High Sierra, \cite{110} CDFS \cite{112} \label{change2}\\ \hline \end{tabular} \subsection{TABLE WITH NETWORK SPECIFIC FUNCTIONS} \begin{tabular}{|p{0.9in} |p{0.9in} |p{0.9in} |p{0.9in} |p{0.9in} |p{0.9in} | } \hline \textbf{Feature} &\textbf{Linux} &\textbf{Solaris} &\textbf{AIX} &\textbf{Tru64 UNIX}&\textbf{HP-UX} \\ \hline Support for IP v4 and v6 \ref{ipv6}\} &\textbullet \cite{39} &\textbullet \cite{9} &\textbullet \cite{40} &\textbullet \cite{103} &\textbullet \cite{62} \\ \hline Traffic Control \{\ref{tfc}\} &\textbullet \cite{39} & \textbullet \cite{13} &\textbullet \cite{40} &\textbullet \cite{13} &\textbullet \cite{29} \\ \hline Bonding \{\ref{bonding}\} & \textbullet \cite{21} &\textbullet \cite{13} &\textbullet \cite{13} &\textbullet \cite{13}&\textbullet \cite{13} \\ \hline \mbox{NFS v2} \{\ref{nfs}\} &\textbullet \cite{39} &\textbullet \cite{9} &\textbullet \cite{40}&\textbullet \cite{101} &\textbullet \cite{111} \label{change3} \\ \hline \mbox{NFS v3} \{\ref{nfs}\} &\textbullet \cite{39} &\textbullet \cite{101} &\textbullet \cite{40}&\textbullet \cite{101} &\textbullet \cite{111} \\ \hline SNMP \{\ref{snmp}\} &\textbullet &\textbullet \cite{9} &\textbullet \cite{40} & &\textbullet \cite{64} \\ \hline SMB \{\ref{smb}\} &\textbullet \cite{39} &\textbullet \cite{13} &\textbullet \cite{13} &\textbullet \cite{13} &\textbullet \cite{13} \\ \hline AppleTalk \{\ref{appletalk}\} &\textbullet \cite{39} &-- \cite{9} &-- \cite{40} & &-- \cite{63} \\ \hline NetWare \{\ref{netware}\} &\textbullet \cite{39} &\textbullet \cite{13}&-- \cite{40} &\textbullet \cite{13} &-- \cite{67} \\ \hline DECnet \{\ref{decnet}\} &\textbullet \cite{39} &-- \cite{9} &-- \cite{40} &\textbullet \cite{104} &\textbullet \cite{65} \\ \hline ARCnet \{\ref{arcnet}\} &\textbullet \cite{39}& &-- \cite{40}& &\textbullet \cite{66}\\ \hline ATM \{\ref{atm}\} &\textbullet \cite{39} &\textbullet \cite{13} &\textbullet \cite{40} &\textbullet \cite{13} &\textbullet \cite{46} \\ \hline FDDI \{\ref{fddi}\} &\textbullet \cite{39} & &\textbullet \cite{40} & &\textbullet \cite{46} \\ \hline Ethernet \{\ref{ethernet}\} &\textbullet \cite{39} &\textbullet \cite{13} &\textbullet \cite{40} &\textbullet \cite{13} &\textbullet \cite{46} \\ \hline Token Ring \{\ref{tokenring}\} &\textbullet \cite{39} &\textbullet \cite{25}&\textbullet \cite{40} &\textbullet \cite{105} &\textbullet \cite{46} \\ \hline IPSEc \{\ref{ipsec}\} &-- \cite{48}&\textbullet \cite{13} &\textbullet \cite{13} &\textbullet \cite{13} &\textbullet \cite{13} \\ \hline Simultaneous IPv4/IPv6 stacks on the same network \{\ref{ipv4ipv6stack}\} &\textbullet \cite{39} &\textbullet \cite{13} &\textbullet \cite{13} &\textbullet \cite{13}&\textbullet \cite{13} \\ \hline IPv6 Gateway facilities \{\ref{ipv6gateway}\} &\textbullet \cite{39} &\textbullet \cite{13} &\textbullet \cite{13} &\textbullet \cite{13}&\textbullet \cite{13} \\ \hline RSVP \{\ref{rsvp}\} &\textbullet \cite{54} &\textbullet \cite{13} &\textbullet \cite{13} &\textbullet \cite{13}&\textbullet \cite{13} \\ \hline Integrated Services(IntServ) \{\ref{intserv}\} &\textbullet \cite{21} &-- \cite{13} &\textbullet \cite{13} &-- \cite{13}&-- \cite{13} \\ \hline \end{tabular} \begin{tabular}{|p{0.9in} |p{0.9in} |p{0.9in} |p{0.9in} |p{0.9in} |p{0.9in} | } \hline \textbf{Feature} &\textbf{Linux} &\textbf{Solaris} &\textbf{AIX} &\textbf{Tru64 UNIX}&\textbf{HP-UX} \\ \hline Differentiated Services \{\ref{diffserv}\} & \textbullet \cite{21}&-- \cite{13} &\textbullet \cite{13} &-- \cite{13}&\textbullet \cite{13} \\ \hline IP Multiplexing / ``aliasing'' \{\ref{aliasing}\} &\textbullet \cite{39} &\textbullet \cite{13} &\textbullet \cite{13} &\textbullet \cite{13}&\textbullet \cite{13} \\ \hline \mbox{IP Multicast} Server \{\ref{ipmulticast}\} &\textbullet \cite{39} &\textbullet \cite{13} &\textbullet \cite{13} &\textbullet \cite{13}&\textbullet \cite{13} \\ \hline TCP selective acknowledgement (SACK) \{\ref{sack}\} &\textbullet \ref{a1} &\textbullet \cite{13} &\textbullet \cite{13} &\textbullet \cite{13}&\textbullet \cite{13} \\ \hline ATM IP switching \{\ref{atmipswitching}\} & &\textbullet \cite{13} &\textbullet \cite{13} &\textbullet \cite{13}&\textbullet \cite{13} \\ \hline Multilink PPP \{\ref{multilinkppp}\} &\textbullet \ref{a1} &\textbullet \cite{13} &\textbullet \cite{13} &-- \cite{13}&-- \cite{13} \\ \hline TCP Large Windows (RFC 1323) \{\ref{rfc1323}\} &\textbullet \cite{53} &\textbullet \cite{13} &\textbullet \cite{13} &\textbullet \cite{13}&\textbullet \cite{13} \\ \hline TCP/IP Gratuitous ARP (RFC 2002) \{\ref{rfc2002}\} & &\textbullet \cite{13} &\textbullet \cite{13} &\textbullet \cite{13}&\textbullet \cite{13} \\ \hline \mbox{Path MTU} Discovery (RFC 1191) \{\ref{rfc1191}\} &\textbullet \ref{a1} &\textbullet \cite{13} &\textbullet \cite{13} &\textbullet \cite{13}&\textbullet \cite{13} \\ \hline \mbox{Path MTU} Discovery over UDP \{\ref{pathmtudiscoverudp}\} & &\textbullet \cite{13} &\textbullet \cite{13} &\textbullet \cite{13}&\textbullet \cite{13} \\ \hline \mbox{Open Shortest} \mbox{Path First} (\mbox{OSPF--RFC} 1533) \{\ref{rfc1533}\} &\textbullet \cite{21} &\textbullet \cite{13} &\textbullet \cite{13} &\textbullet \cite{13}&\textbullet \cite{13} \\ \hline \mbox{IP Multipath} Routing \{\ref{ipmultipathrouting}\} &\textbullet \ref{a1} &\textbullet \cite{13} &\textbullet \cite{13} &\textbullet \cite{13}&\textbullet \cite{13} \\ \hline \end{tabular} \newpage \section{RESULT ANALYSIS}\label{resultanalys} Linux has support for a more kinds of file systems and architectures than any other operating system in this thesis. But it lacks high-availability and security features (like Live upgrade, dynamic memory/processor resilience, HSM, ACL, IPSec...). \chapter{DISCUSSION} The reader maybe is asking why this thesis just looks at the features of the kernel? The explanation is that one can tell much about an operating system by just looking at the kernel, for example how well developed it is. There was some difficulties in finding information from the suppliers documentation that confirmed which functions where implemented in the kernel. To overcome this difficulty, some technicians from the various companies were asked. Another difficult task was finding information about features that was not implemented in the operating system. Partial because vendors don't announce the features their operating system is missing in comparation to other. Most of the missing features in Linux do already exist for Linux as patches, but they are not yet implemented in the official kernel. For example IPSec (see reference \cite{48}), Dynamic Memory Resilience (see appendix \ref{a8}), live update (see appendix \ref{a2})... Now that Linux is getting a greater deal of press, as is the interest for it to in the enterprise market. Here are some quotes from different magazines. The September 1998 Software Magazine cover story\cite{36} reveals just how far Linux has managed to infiltrate corporate America and how it is not about to go away: \begin{quote} ``Tim Payne, director of database marketing at Oracle, says many of his company's corporate customers have made large investments in Linux. When Oracle announced in July that it would be offering 24x7 support for Oracle8 on Linux, he says 300 customers called the next day asking about availability. 'It's reliable, it's proven, it runs on commodity Intel boxes, and it's a really low-cost alternative to NT,' says Payne. 'The fact that you are going to be able to get enterprise quality support from Oracle to deploy on the Linux platform will help customers adopt Linux.'' \end{quote} Nicholas Petreley, editor-in-chief of NC World and columnist for InfoWorld and NT World Japan provides an explanation for the rise of Linux and FreeBSD in IT departments \cite{35}: \begin{quote} ``Yesterday's college students learned their UNIX expertise on Linux and FreeBSD. Today they're working in IT departments, and many of them are openly hostile to both Microsoft and Windows NT. As a result, Linux, BSD, Solaris, and other forms of UNIX are finding their way into IT departments, both overtly and on the sly.'' \end{quote} \begin{quote} ``For example, are you sure that's an NT server you're connecting to at work? IS employees in many corporations have secretly installed UNIX servers that provide native NT services. Why take such a risk? Linux and FreeBSD are free, as is SAMBA, the software that provides NT services. So the IS department saves money. And managers are unlikely to find out UNIX is behind the scenes because fewer people will complain about server downtime.'' \end{quote} \begin{quote} ``Fewer people will complain because the servers are more stable than Windows NT. Linux, FreeBSD, and BSDI UNIX outperform Windows NT by a wide margin on limited hardware, and under some circumstances can perform as well or better than NT on the best hardware. Once behind in scalability features, UNIX on Intel is catching up and may soon surpass NT in the number of processors it can use, and how it uses them.'' \end{quote} Now that Linux has infiltrated the enterprise market, and the demand for the usage of Linux on enterprise market is increasing, the development of features to Linux that the enterprises are looking for on more expensive alternatives will increase. Specially with the increase of support Linux is getting from the main players on the enterprise market like Compaq, IBM, Hewlett--Packard... \section{METHOD EVALUATION} The chosen methods where the most appropriate for each task of the report. \section{RECEIVED RESULTS VERSUS EXPECTED RESULT} The received result shows that on contrary to the expected result that Linux is not yet ready to take over the enterprise market, due to the lack of features that the enterprise market expect to see on a high--end system. \chapter{CONCLUSIONS}\label{conclusions} For Linux to get into the enterprise server market it has to include support for more memory, high-availability and security features, to make it more competitive against the other operating systems. Linux lacks the following features: \begin{itemize} \item Dynamic processor/memory resilience. \item Dynamic page sizing. \item Live upgrade. \item ACL \item Hierarchical storage management. \item CacheFS \item IPSec \end{itemize} It could not be verified in this thesis if Linux has more features than any other of the compared operating systems due to the lack of information. \section{PROPOSAL FOR FURTHER RESEARCH} \begin{itemize} \item Available programs.. \item Make a survey on companies asking them what hardware support or features they want to see implemented in Linux. \item Available support. \item Cost versus performance. \end{itemize} \chapter{Bibliography} %---------------------------------------------% % % % References % % % %---------------------------------------------% \clearpage \addcontentsline{toc}{section}{References} \begin{thebibliography}{99}\label{biblio} %\bibliographystyle{unsrt} %\bibliography{mybib} \label{biblio} %\setcounter{page}{0} \pagenumbering{Roman} \thispagestyle{fancy} \subsubsection*{Books} \bibitem{1} Matt Welsh and Phil Hughes and David Bandel and Boris Beletsky and Sean Dreilinger and Robert Kiesling and Evan Liebovitch and Henry Pierce, \textit{Linux installation and getting started}, Specialized Systems Consultants Inc, Seattle, \url{http://www.ibiblio.org/pub/Linux/docs/LDP/install-guide/!INDEX.html} (available 2001--05--19), 1998. \bibitem{6} VI Peter H. Salus, \textit{A Quarter Century of UNIX}, Addison-Wesley Publishing Company Inc, ISBN: 0-201-54777-5, 1994. \bibitem{15} Peter Galvin and Avi Silberschatz, \textit{Operating system concepts, 5th edition}, ISBN 0-471-36414-2, John Wiley and Sons Inc., 605 Third Avenue, New York, 1999. \bibitem{18} Andrew S. Tanebaum, \textit{Computer Networks, 3rd edition}, ISBN 0-13-394248-1, Prentice-Hall International, Inc., Upper Saddle River, New Jersey 07458, 1996. \bibitem{30} Valentino Berti, \textit{Datakommunikation}, Liber AB, 113 98 Stockholm, ISBN 91-47-03564-1, 1999. \subsubsection*{White Papers} \bibitem{21} Bert Hubert and Gregory Maxwell and Remco van Mook and Martijn van Oosterhout and Paul B Schroeder and Jasper Spaans, \textit{Linux 2.4 Advanced Routing HOWTO}, \url{http://www.ds9a.nl/2.4Networking/HOWTO//cvs/2.4routing/output/2.4routing.html} (available 2001--05--23), 2001. \bibitem{7} \textit{AIX 5L Technical Preview, AIX Product Marketing}, IBM corporation, \url{http://www-1.ibm.com/servers/aix/pdf/AIX50dr3ms.pdf} (available on 17:th of May 2001), 2000. \bibitem{34} \textit{AIX-- Announcement Supplemental Information}, IBM, 2001--04--17. \bibitem{8} \textit{HP Renews Focus on UNIX for Web Application Infrastructures}, D.H. Brown Associates Inc. 2000. \bibitem{29} \textit{HP 9000 -- A-Class Servers: A500/A400 System Architecture and Design Guide}, Hewlett-Packard, 2000. \bibitem{60} \textit{Updating to HP-UX 11i}, Hewlett--Packard, \url{http://docs.hp.com/cgi-bin/onlinedocs.py?mpn=B2355-90703&service=hpux&path=../B2355-90703/00/00/19&title=HP-UX%2011i%20Installation%20and%20Update%20Guide} \bibitem{33} \textit{HP--UX reference documents}, Hewlett--Packard,\url{http://devresource.hp.com/STK/toc_ref_details.html} (available 2001-05-24), 2001. \bibitem{46} \textit{HP-UX 11i Operating Environments}, Hewlett--Packard, \url{http://docs.hp.com/hpux/onlinedocs/os/11i/oe_presentation_Dec1_external.pdf} (available 2001--05--25), 2000. \bibitem{50} \textit{hp 9000 superdome specifications}, Hewlett--Packard, \url{http://www.hp.com/products1/unixservers/highend/superdome/specifications.html} (available 2001--05--27). \bibitem{61} \textit{Onlinejsf product details and specifications}, Hewlett--Packard,\url{http://www.software.hp.com/cgi-bin/swdepot_parser.cgi/cgi/displayProductInfo.pl?productNumber=B3929CA} (available 2001--05--27). \bibitem{62} \textit{IPv6 early release overview}, Hewlett--Packard,\url{http://www.software.hp.com/cgi-bin/swdepot_parser.cgi/cgi/displayProductInfo.pl?productNumber=T1305AA} (available 2001--05--27). \bibitem{100} \textit{HP MPI User's guide -- Message latency and bandwidth}, Hewlett--Packard, \url{http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B6060-96002/B6060-96002_top.html&con=/hpux/onlinedocs/B6060-96002/00/00/25-con.html&toc=/hpux/onlinedocs/B6060-96002/00/00/25-toc.html&searchterms=numa&queryid=20010528-032930} {available 2001--05--28}. \bibitem{9} \textit{Solaris 8 press release}, Sun Microsystems Inc, \url{http://www.sun.com/smi/Press/sunflash/2000-01/sunflash.20000126.2.html} (avaible 2001-05-19), 2001. \bibitem{20} \textit{Sun trunking overview}, Sun Micro--systems, \url{http://www.sun.com/products-n-solutions/hw/networking/connectivity/suntrunking/trunking.html}. \bibitem{42} \textit{Trusted Solaris 8 Operating Environment -- A Technical Overview}, White Paper, Sun Microsystems Inc, \url{http://www.sun.com/software/white-papers/wp-ts8/} (available 2001--05--25). \bibitem{43} \textit{Sun Enterprise 10000 Key Technologies}, Sun Microsystems Inc, \url{http://www.sun.com/servers/highend/10000/tech.html} (available (2001--05--25). \bibitem{25} \textit{What's new in the Solaris 8 Operating Environment}, Sun Microsystems, January 2000. \bibitem{19} \textit{Tru64 UNIX Operating System Version 5.1 Product Description}, Internal reference: SPD 70.70.03, Compaq Computer Corporation, 2000. \bibitem{10} \textit{Tru64 UNIX Product overview}, Compaq, \url{http://www.tru64unix.compaq.com/unix/index.html} (available online on 2001-05-18), 2001. \bibitem{26} \textit{ True64 UNIX on AlphaServer Product Overview}, Compaq Computer Corporation, \url{http://www.tru64unix.compaq.com/unix/v5.htm} (available 2001-05-19), 2001. \bibitem{13} \textit{2001 UNIX function review}, D.H Brown Associates, Inc, 2001. \bibitem{14} R. P. LaRowe Jr. and J. T. Wilkes and C. S. Ellis, \textit{Exploiting operating system support for dynamic page placement on a NUMA shared memory multiprocessor}, Proceedings of the 3rd ACM SIGPLAN Symposium on Principles \& Practice of Parallel Programming, SIGPLAN Notices volume 26 number 7 page 122-132, \url{http://citeseer.nj.nec.com/larowe91exploiting.html}, April 1991 \bibitem{16} Adam Sweeney and Doug Doucette and Wei Hu and Curtis Anderson and Mike Nishimoto and Geoff Peck, \textit{Scalability in the XFS File System}, Silicon Graphics, \url{http://linux-xfs.sgi.com/projects/xfs/papers/xfs_usenix/index.html}, 1996 \bibitem{17} Heinz Mauelshagen, \textit{Mauelshagen's LVM (Logical Volume Manager) howto}, Linux source documentation, 1999 \bibitem{22} Johannes Erdfelt, \textit{Hot-Swap white paper}, \url{http://johannes.erdfelt.com/hotswap.txt}, 2000. \bibitem{31} Jakob Řstergaard, \textit{The Software--RAID HOWTO}, \url{http://www.linuxdoc.org/HOWTO/Software-RAID-HOWTO.html} (available 2001-05-22), 2000. \bibitem{32} Scott Norton and Mark DiPasquale, \textit{Thread Time - The Multithreaded Programming Guide}, Prentice Hall, ISBN 0-13-190067-6, 1996. \bibitem{37} David Mentré,\textit{Linux SMP HOWTO}, Linux documentation project,\url{http://www.linuxdoc.org/HOWTO/SMP-HOWTO.html}, October 2000. \bibitem{38} Rémy Card and Theodore Ts'o and Stephen Tweedie,\textit{Design and implementation of Second Extended Filesystem}, Proceedings of the Firts Dutch International Symposium, ISBN 90-367-0385-9, \url{http://e2fsprogs.sourceforge.net/ext2intro.html} (available 2001--05--24). \bibitem{39} Joshua Drake, \textit{Linux Networking HOWTO}, \url{http://www.linuxports.com/howto/networking/} (available 2001-05-24), 2000. \bibitem{11} Harald Milz, \textit{Linux High Availability HOWTO}, \url{http://www.ibiblio.org/pub/Linux/ALPHA/linux-ha/High-Availability-HOWTO.html} (available 2001--05--25), 1998--12--22. \bibitem{23} Stein Gjoen, \textit{Multi Disk System Tuning HOWTO},\url{http://www.linuxdoc.org/HOWTO/Multi-Disk-HOWTO.html} (available 2001-05--26), 2000-07--24. \bibitem{44} \textit{Visual Threads Documentation}, Compaq Inc, \url{http://www.compaq.com/products/software/visualthreads/documentation.html} (available 2001--05--25). \subsubsection*{Source documentation and man pages} \bibitem{101} See Solaris 8 man page for \verb|mount_nfs| (1M). \bibitem{102} See Tru64 UNIX man page for \verb|mount| (8). \bibitem{103} See Tru64 UNIX man page for \verb|inet| (7). \bibitem{104} See Tru64 UNIX man pages for \verb|X| (7). \bibitem{105} See Tru64 UNIX man pages for \verb|network_manual_setup| (7). \bibitem{51} See HP-UX 11i man pages for \verb|acl| (2). \bibitem{64} See HP-UX 11i man pages for \verb|snmpd| (1M). \bibitem{65} See HP-UX 11i man pages for \verb|X| (7). \bibitem{66} See HP-UX 11i man pages for \verb|bootpd|. \bibitem{106} See HP-UX 11i man pages for \verb|mount_cdfs| (1M). \bibitem{111} See HP-UX 11i man pages for \verb|mount_nfs| (1M). \bibitem{107} See HP-UX 11i man pages for \verb|mount_hfs| (1M). \bibitem{108} See HP-UX 11i man pages for \verb|mount_lofs| (1M). \bibitem{113} See HP-UX 11i man pages for \verb|mount_lvm| (1M). \bibitem{112} See HP-UX 11i man pages for \verb|mount_cdfs| (1M). \bibitem{109} See HP-UX 11i man pages for \verb|dosif| (4). \bibitem{110} See HP-UX 11i man pages for \verb|pfs| (4). \bibitem{52} See Linux man pages for \verb|ipc| (5). \bibitem{53} See kernel source document \verb|linux/Documentation/network/ip-sysctl.txt|. \bibitem{54} See kernel source document \verb|linux/Documentation/Configure.help|. \bibitem{55} See kernel source document \verb|linux/Documentation/ramdisk.txt|. \bibitem{56} See kernel source document \verb|linux/Documentation/vm/numa.html|. \bibitem{57} See kernel source document \verb|linux/Documentation/devices.txt|. \bibitem{59} See kernel source document \verb|linux/Documentation/LVM-HOWTO.htm|. \urlstyle{rm} \def\UrlFont{\bfseries} \subsubsection*{Articles from the press (bold urls now!)} \bibitem{2} Richard Shim, \textit{Linux makes a move into handhelds}, C--Net, \url{http://news.cnet.com/news/0-1006-200-5827919.html} (available 2001--05--19), 2001. \bibitem{4} Mats Lövgren, \textit{Linux sparkar ut NT och UNIX frĺn bank}, Computer Sweden, \url{http://nyheter.idg.se/display.asp?ID=010504-CS31}, 2001. \bibitem{5} Jon Tillman, \textit{The New Linux Myth Dispeller}, \url{http://www.eruditum.org/linux/myths/myth-dispeller.html}, 2000. \bibitem{12} Mary Jo Foley, \textit{At long last Linux 2.4 has arrived}, ZDNet news, \url{http://www.zdnet.com/zdnn/stories/news/0,4586,2671106,00.html} (available 2001-05-19), January 5 2001. \bibitem{24} Robert Kiesling, \textit{Linux FAQ, Revision 1.4}, \url{http://www.linuxdoc.org/FAQ/Linux-FAQ/index.html} (available 2001--05--21), 2001. \bibitem{27} Mary Jo Foley, \textit{Linus: Partying hard over Linux 2.4}, ZDNet news, \url{http://www.zdnet.com/zdnn/stories/news/0,4586,2671714,00.html} (available 2001-05-19), January 5 2001. \bibitem{35} Nicholas Petreley,\textit{The new UNIX alters NT's orbit: The re-emergence of UNIX threatens to modify the future direction of NT}, NC World, April 1998. \bibitem{36} Ann Harrison,\textit{In LINUX We\ldots}, Software Magazine, Cover Story, September 1998. \bibitem{41} Henry Baltazar. \textit{Operating System - Linux 2.4 Kernel}, ZDNet UK, \url{http://www.zdnet.co.uk/reviews/rstories/0,3040,e7108096,00.html}, 27 January 2001. \bibitem{45} Jaikumar Vijayan, \textit{High-end Systems Vendors offer performance programs}, ComputerWorld, 1999--22--11. \bibitem{58} Press release, \textit{Veritas delivers hsm version 3.1 to bring improved data availability to enterprise applications}, \url{http://www.veritas.com/us/aboutus/pressroom/1998/98-08-18-0.html} (available 2001--05-21), 1998. \subsubsection{Technical persons/resources} \bibitem{40} Jan Strage, IT Architect, IBM Sweden. \bibitem{49} \textit{Linux kernel development list}, \url{http://vger.kernel.org} or \url{http://www.tux.org/lkml/#s3-4} (available 2001--05--27). \subsubsection{Websites} \bibitem{68} Heimo Haub, \textit{Aspects of Access Management in Heterogeneous Distributed Object Systems},Graz University of Technology, \url{http://www.dinopolis.org/documentation/misc/theses/hhaub/node60.html} \bibitem{3} Harald Alvestrand, \textit{The Linux Counter Project}, The Linux Counter Project, \url{http://counter.li.org/} (available 2001--05--21), 2001. \bibitem{28} Transaction Processing Performance Council, \url{http://www.tpc.org} (available 2001-05-21). \bibitem{48} FreeSwan homepage,\url{http://www.freeswan.org/} (available 2001--05--25). \bibitem{63} Columbia Appletalk, \url{http://www.cs.mu.oz.au/appletalk/cap.html} (available 2001--05--27). \bibitem{67} Novell, \url{http://www.novell.com/} (available 2001--05--27). \end{thebibliography} \appendix \chapter{MESSAGE REPLIES FROM THE KERNEL DEVELOPMEN LIST} \label{kernlist} Here are the letter I've got from the developers of the kernel, that where posted on the ``Linux kernel development list''. Please see reference \cite{49} for more information. \section{Jeff Garzik 26 May 2001 22:27:09}\label{a1} \begin{verbatim}Date: Sat, 26 May 2001 22:27:09 -0400 From: Jeff Garzik Organization:MandrakeSoft To: cesar.da.silva@cyberdude.com Cc:linux-kernel@vger.kernel.org Subject:Re: Please help me fill in the blank Cesar Da Silva wrote: > The features that I'm wondering about are: > * Dynamic Processor Resilience is this fault tolerance? I think if a CPU croaks, you are dead. There are patches for hot swap cpu support, but I haven't seen any CPU fault tolerance patches that can handle a dead processor > * Dynamic Memory Resilience RAM fault tolerance? There was a patch a long time ago which detected bad ram, and would mark those memory clusters as unuseable at boot. However that is clearly not dynamic. If your memory croaks, your kernel will experience random corruptions > * Dynamic Page Sizing no > * Live Upgrade LOBOS will let one Linux kernel boot another,but that requires a boot step, so it is not a live upgrade. so, no, afaik > * Alternative I/O Pathing be less vague > * HSM patches exist, I believe > * TCP selective acknowledgement (SACK) yes > * Service Location Protocol (SLP) don't know > * ATM IP switching yes, I believe > * SOCKS 5 support yes, via userspace apps/libs > * Multilink PPP yes > * TCP/IP Gratuitous ARP (RFC 2002) not sure > * Path MTU Discovery (RFC 1191) yes > * Path MTU Discovery over UDP not sure, but I think so > * IP Multipath Routing yes > The questions I have about the features above are: > * Are any of the above features implemented in the > kernel? If yes, where can I read (url-link to the > article, paper... please) about it? \end{verbatim} \section{Jonathan Morton 27 May 2001}\label{a2} \begin{verbatim} Datum:Sun, 27 May 2001 03:50:28 +0100 To:jgarzik@mandrakesoft.com, cesar.da.silva@cyberdude.com From:Jonathan Morton Subject:Re: Please help me fill in the blanks. Cc:linux-kernel@vger.kernel.org >> * Live Upgrade > >LOBOS will let one Linux kernel boot another, but that requires a boot >step, so it is not a live upgrade. so, no, afaik If you build nearly everything (except, obviously what you need to boot) as modules, you can unload modules, build new versions, and reload them. So, you could say that partial support for "live upgrades" is included. It works, too - I unloaded my OV511 driver a few weeks ago, copied the source for the new one in, built it, and re-inserted it. Same goes for the DRM module a couple of weeks before that. Now, the machine in question gets rebooted fairly often in any case, but those were things I *didn't* have to reboot for. -------------------------------------------------------------- from: Jonathan "Chromatix" Morton mail: chromi@cyberspace.org (not for attachments) big-mail: chromatix@penguinpowered.com uni-mail: j.d.morton@lancaster.ac.uk The key to knowledge is not to rely on people to teach you it. Get VNC Server for Macintosh from http://www.chromatix.uklinux.net/vnc/ -----BEGIN GEEK CODE BLOCK----- Version 3.12 GCS$/E/S dpu(!) s:- a20 C+++ UL++ P L+++ E W+ N- o? K? w--- O-- M++$ V? PS PE- Y+ PGP++ t- 5- X- R !tv b++ DI+++ D G e+ h+ r++ y+(*) -----END GEEK CODE BLOCK----- \end{verbatim} \section{Jeff Garzik 26 May 2001 22:55:04}\label{a3} \begin{verbatim} Date: Sat, 26 May 2001 22:55:04 -0400 From: Jeff Garzik Organization: MandrakeSoft To: chromi@cyberspace.org Cc: cesar.da.silva@cyberdude.com, linux-kernel@vger.kernel.org Ämne: Re: Please help me fill in the blanks. Jonathan Morton wrote: > > >> * Live Upgrade > > > >LOBOS will let one Linux kernel boot another, but that requires a boot > >step, so it is not a live upgrade. so, no, afaik > > If you build nearly everything (except, obviously what you need to boot) as > modules, you can unload modules, build new versions, and reload them. So, > you could say that partial support for "live upgrades" is included. I stand corrected, though I clearly know better: Modules are unloaded/reloaded all the time during my driver development :) -- Jeff Garzik | Disbelief, that's why you fail. Building 1024 | MandrakeSoft | \end{verbatim} \section{Dan Hollis 26 May 2001}\label{a4} \begin{verbatim} Date: Sat, 26 May 2001 21:25:28 -0700 (PDT) From: Dan Hollis To: thunderlight1@yahoo.com Subject: Re: Please help me fill in the blanks. On Sun, 27 May 2001, Cesar Da Silva wrote: > * Live Upgrade implemented > * TCP selective acknowledgement (SACK) implemented > * SOCKS 5 support implemented > * Multilink PPP implemented > * Path MTU Discovery (RFC 1191) implemented > * IP Multipath Routing implemented \end{verbatim} \section{James Sutherland 27 May 2001}\label{a5} \begin{verbatim} Date: Sun, 27 May 2001 09:17:15 +0100 (BST) From: James Sutherland To: jgarzik@mandrakesoft.com Cc: cesar.da.silva@cyberdude.com, linux-kernel@vger.kernel.org Subject: Re: Please help me fill in the blanks. On Sat, 26 May 2001, Jeff Garzik wrote: > Cesar Da Silva wrote: > > The features that I'm wondering about are: > > * Dynamic Processor Resilience > > is this fault tolerance? I think if a CPU croaks, you are dead. > > There are patches for hot swap cpu support, but I haven't seen any CPU > fault tolerance patches that can handle a dead processor The S/390 has this; presumably it applies to Linux as well as the other supported OSs? > > * Dynamic Memory Resilience > > RAM fault tolerance? There was a patch a long time ago which detected > bad ram, and would mark those memory clusters as unuseable at boot. > However that is clearly not dynamic. > > If your memory croaks, your kernel will experience random corruptions ECC can be supported by the hardware; no support for mapping out duff banks on x86, but again S/390 may differ? > > * Live Upgrade > > LOBOS will let one Linux kernel boot another, but that requires a boot > step, so it is not a live upgrade. so, no, afaik Live SOFTWARE upgrade, or live HARDWARE upgrade? If the latter, things like hotswap PCI, USB... and again the S/390? > > * Service Location Protocol (SLP) > > don't know Yes, I think so - mars_nwe surely needs this? > > * TCP/IP Gratuitous ARP (RFC 2002) > > not sure Isn't that how LVS clusters handle IP takeovers? > > * Path MTU Discovery (RFC 1191) > > yes With one or two RFC violations, yes. Basically, most of those features relating to hardware resilience should be usable with Linux on an S/390 - they are hardware features, though, AFAICS? James. \end{verbatim} \section{Ingo Oeser 27 May 2001}\label{a6} \begin{verbatim} Date: Sun, 27 May 2001 10:27:07 +0200 From: Ingo Oeser To: jgarzik@mandrakesoft.com Cc: cesar.da.silva@cyberdude.com, linux-kernel@vger.kernel.org Subject: Re: Please help me fill in the blanks. On Sat, May 26, 2001 at 10:27:09PM -0400, Jeff Garzik wrote: > > * Service Location Protocol (SLP) www.openslp.org Regards Ingo Oeser -- To the systems programmer, users and applications serve only to provide a test load. \end{verbatim} \section{Dominik Kubla 27 May 2001}\label{a7} \begin{verbatim} Date: Sun, 27 May 2001 10:57:10 +0200 From: Dominik Kubla To: jgarzik@mandrakesoft.com Cc: cesar.da.silva@cyberdude.com, linux-kernel@vger.kernel.org Subject: Re: Please help me fill in the blanks. On Sat, May 26, 2001 at 10:27:09PM -0400, Jeff Garzik wrote: > > > * Service Location Protocol (SLP) > > don't know Userspace: http://www.openslp.org/ > > * TCP/IP Gratuitous ARP (RFC 2002) > > not sure Userspace. Also no tool comes to my mind, arping should be easily modified to do this. Dominik -- A lovely thing to see: Kobayashi Issa through the paper window's holes (1763-1828) the galaxy. [taken from: David Brin - Sundiver] \end{verbatim} \section{Ville Herva 27 May 2001}\label{a8} \begin{verbatim} Date: Sun, 27 May 2001 20:21:19 +0300 From: Ville Herva To: jgarzik@mandrakesoft.com Cc: cesar.da.silva@cyberdude.com, linux-kernel@vger.kernel.org Subject: Re: Please help me fill in the blanks. > > * Dynamic Memory Resilience > > RAM fault tolerance? There was a patch a long time ago which detected > bad ram, and would mark those memory clusters as unuseable at boot. > However that is clearly not dynamic. If you are referring to Badram patch by Rick van Rein (http://rick.vanrein.org/linux/badram/), it doesn't detect the bad ram, memtest86 does that part (and does it well) -- you enter then enter the badram clusters as boot param. But I have to say badram patch works marvellously (thanks, Rick.) Shame it didn't find its way to standard kernel. \end{verbatim} \end{document} % LocalWords: Tru Cesar da silva Andreas Larsson VLE UX Torvald AXP UltraSPARC % LocalWords: PowerPC SuperH IA AMD NT FreeBSD OSF Itanium Torvalds filesystem latex2rtf-2.3.18/test/bib_apanat.tex0000777000175000017500000000435013050672360017510 0ustar wilfriedwilfried\documentclass[11pt]{article} %\usepackage[english]{babel} \usepackage[longnamesfirst]{natbib} \usepackage{apanat1b} % in conjunction with bibstyle apanat1b.bst. %\usepackage[pagebackref,dvips]{hyperref} \begin{document} \citep{hooper1986,ortony1988,russell1979} %\citet[in][chap.~3]{allen1995a,allen1995b} % apanat1b has problems wiht this citation, apalike not. \citet{allen1995a} \citet[in][chap.~3]{allen1995a} \citeauthor{allen1995b} \citeyear{allen1995b} \citeyearpar{allen1995b} %\bibliography{apanat} %\bibliographystyle{apanat1b} % in conjunction with package apanat1b.sty. \begin{thebibliography}{} \bibitem[\protect\citeauthoryear{Allen \BBA{} Carifio}{Allen \BBA{} Carifio}{1995\protect\BCnt{1}}]{allen1995b} Allen, B.~D.\BCBT{} \BBA{} Carifio, J. \newblock{}\BBOP{}1995\protect\BCnt{1}, May\BBCP{}. \newblock{}\Bem{The relationship between emotional states and solving complex mathematical problems.} \newblock{}Paper presented at the meeting of Eastern Educational Research Association, Hilton Head, SC. \bibitem[\protect\citeauthoryear{Allen \BBA{} Carifio}{Allen \BBA{} Carifio}{1995\protect\BCnt{2}}]{allen1995a} Allen, B.~D.\BCBT{} \BBA{} Carifio, J. \newblock{}\BBOP{}1995\protect\BCnt{2}, March\BBCP{}. \newblock{}\Bem{A {M}ethodology for the {A}nalysis of {E}motion {E}xperiences during {M}athematical {P}roblem {S}olving.} \newblock{}Paper presented at the Annual Conference of the New England Educational Research Organization, Portsmouth, NH. \bibitem[\protect\citeauthoryear{Hooper}{Hooper}{1986}]{hooper1986} Hooper, J. \newblock{}\BBOP{}1986\BBCP{}. \newblock{}\Bem{The 3-{P}ound {U}niverse.} \newblock{}Los Angeles: Teacher, Inc. \bibitem[\protect\citeauthoryear{Ortony, Clore\BCBL{} \BBA{} Collins}{Ortony \BOthers{}}{1988}]{ortony1988} Ortony, A., Clore, G.\BCBL{} \BBA{} Collins, A. \newblock{}\BBOP{}1988\BBCP{}. \newblock{}\Bem{The {C}ognitive {S}tructure of {E}motions.} \newblock{}New York: Cambridge University Press. \bibitem[\protect\citeauthoryear{Russell}{Russell}{1979}]{russell1979} Russell, J.~A. \newblock{}\BBOP{}1979\BBCP{}. \newblock{}\BBOQ{}Affect {S}pace is {B}ipolar.\BBCQ{} \newblock{}\Bem{Journal of Personality and Social Psychology}, \Bem{37}(3), 345--356. \end{thebibliography} \end{document} latex2rtf-2.3.18/test/box.rtf0000644000175000017500000001445713664476467016242 0ustar wilfriedwilfried{\rtf1\ansi\uc1\deff0\deflang1024 {\fonttbl{\f0\fnil\fcharset0 Times New Roman;} {\f1\fnil\fcharset0 Arial;} {\f2\fnil\fcharset0 Arial;} {\f3\fnil\fcharset0 Courier New;} {\f4\fnil\fcharset0 Zapf Chancery;} {\f5\fnil\fcharset0 STIXGeneral;} {\f6\fnil\fcharset0 MS Gothic;} } {\colortbl; \red0\green0\blue0; \red0\green0\blue255; \red0\green255\blue255; \red0\green255\blue0; \red255\green0\blue255; \red255\green0\blue0; \red255\green255\blue0; \red255\green255\blue255; } {\stylesheet {\s0\qj\widctlpar\f0\fs20 \snext0 Normal;} {\cs10 \additive\ssemihidden Default Paragraph Font;} {\s1\qc\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 Part;} {\s2\ql\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 heading 1;} {\s3\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 2;} {\s4\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 3;} {\s5\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 4;} {\s6\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 5;} {\s7\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 6;} {\s8\qr\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext8 rightpar;} {\s9\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext9 centerpar;} {\s10\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext10 leftpar;} {\s11\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equation;} {\s12\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationNum;} {\s13\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlign;} {\s14\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlignNum;} {\s15\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArray;} {\s16\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArrayNum;} {\s17\ql\sb120\sa120\keep\widctlpar\f0\fs20 \sbasedon0\snext0 theorem;} {\s18\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 bitmapCenter;} {\s20\qc\sb240\sa240\b\f0\fs36 \sbasedon0\snext21 Title;} {\s21\qc\sa120\f0\fs20 \sbasedon0\snext0 author;} {\s22\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext22 footer;} {\s23\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext23 header;} {\s30\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 caption;} {\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext0 Figure;} {\s32\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext32 Table;} {\s33\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext33 Tabular;} {\s34\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext34 Tabbing;} {\s35\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext35 Quote;} {\s38\ql\widctlpar\f3\fs20 \snext38 verbatim;} {\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext46 List;} {\s47\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext47 List 1;} {\s50\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 latex picture;} {\s51\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 subfigure;} {\s61\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext62 bibheading;} {\s62\ql\fi-567\li567\sb0\sa0\f0\fs20 \sbasedon0\snext62 bibitem;} {\s64\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext64 endnotes;} {\s65\ql\fi-113\li397\lin397\f0\fs20 \sbasedon0\snext65 footnote text;} {\s66\qj\fi-170\li454\lin454\f0\fs20 \sbasedon0\snext66 endnote text;} {\cs62\super \additive\sbasedon10 footnote reference;} {\cs63\super \additive\sbasedon10 endnote reference;} {\s67\ql\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext67 acronym;} {\s70\qc\sa120\b\f0\fs20 \sbasedon0\snext71 abstract title;} {\s71\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext0 abstract;} {\s80\ql\sb240\sa120\keepn\f0\b\fs20 \sbasedon0\snext0 contents_heading;} {\s81\ql\li425\tqr\tldot\tx8222\sb240\sa60\keepn\f0\fs20\b \sbasedon0\snext82 toc 1;} {\s82\ql\li512\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext83 toc 2;} {\s83\ql\li1024\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext84 toc 3;} {\s84\ql\li1536\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext85 toc 4;} {\s85\ql\li2048\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 5;} {\s86\ql\li2560\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 6;} } {\info {\title Original file was box.tex} {\doccomm Created using latex2rtf 2.3.18 r1266 (released May 29, 2020) on Sat May 30 17:35:19 2020 } } {\footer\pard\plain\f0\fs20\qc\chpgn\par} \paperw12280\paperh15900\margl2680\margr2700\margt2540\margb1760\pgnstart0\widowctrl\qj\ftnbj\f0\aftnnar {\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi0 This silly expression was the hardest bug to find that I have ever looked for in latex2rtf. It turned out to be a mistake in the PopBrace code \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ {\i f}\\s\\do5({\fs16 {\i i}}){z}{\i x}}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi0 that worked for nearly every other case that I encountered. Now I wonder if some of the font changing problems that I had were because of this stupid bug...\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 1 First\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb300 \fi0 2 second\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 Here it is \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ \\F( \\R(,{\i x}+1), \\R(3,{\i x}\\s\\up5({\fs16 3})+1))}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 This is an {\b0\i0\scaps0\f3 \\hbox\{text\}} starting now \ldblquote {text}\rdblquote \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 {\scaps0\b0\i This is an {\b0\i0\scaps0\f3 \\hbox\{text\}} starting now \ldblquote {text}\rdblquote }\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 This is an {\b0\i0\scaps0\f3 \\hbox\{text\}} starting now {{\i x}+{\i y}={text}}\rquote \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 This is an {\b0\i0\scaps0\f3 \\mbox\{text\}} starting now \ldblquote {text}\rdblquote \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 {\scaps0\b0\i This is an {\b0\i0\scaps0\f3 \\mbox\{text\}} starting now \ldblquote {text}\rdblquote }\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 This is an {\b0\i0\scaps0\f3 \\mbox\{text\}} starting now {{\i x}+{\i y}+({\i x}+{\i y})={text}}\rquote \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 \par }} }}}latex2rtf-2.3.18/test/enc_cp437.tex0000777000175000017500000001271613050672360017122 0ustar wilfriedwilfried\documentclass[10pt]{article} \usepackage[T1]{fontenc} \usepackage{textcomp} \usepackage[cp437]{inputenc} \usepackage{times} \begin{document} \begin{tabular}{ccrl} 80&€&199&LATIN CAPITAL LETTER C WITH CEDILLA\\ 81&&252&LATIN SMALL LETTER U WITH DIAERESIS\\ 82&‚&233&LATIN SMALL LETTER E WITH ACUTE\\ 83&ƒ&226&LATIN SMALL LETTER A WITH CIRCUMFLEX\\ 84&„&228&LATIN SMALL LETTER A WITH DIAERESIS\\ 85&…&224&LATIN SMALL LETTER A WITH GRAVE\\ 86&†&229&LATIN SMALL LETTER A WITH RING ABOVE\\ 87&‡&231&LATIN SMALL LETTER C WITH CEDILLA\\ 88&ˆ&234&LATIN SMALL LETTER E WITH CIRCUMFLEX\\ 89&‰&235&LATIN SMALL LETTER E WITH DIAERESIS\\ 8A&Š&232&LATIN SMALL LETTER E WITH GRAVE\\ 8B&‹&239&LATIN SMALL LETTER I WITH DIAERESIS\\ 8C&Œ&238&LATIN SMALL LETTER I WITH CIRCUMFLEX\\ 8D&&236&LATIN SMALL LETTER I WITH GRAVE\\ 8E&Ž&196&LATIN CAPITAL LETTER A WITH DIAERESIS\\ 8F&&197&LATIN CAPITAL LETTER A WITH RING ABOVE\\ 90&&201&LATIN CAPITAL LETTER E WITH ACUTE\\ 91&‘&230&LATIN SMALL LETTER AE\\ 92&’&198&LATIN CAPITAL LETTER AE\\ 93&“&244&LATIN SMALL LETTER O WITH CIRCUMFLEX\\ 94&”&246&LATIN SMALL LETTER O WITH DIAERESIS\\ 95&•&242&LATIN SMALL LETTER O WITH GRAVE\\ 96&–&251&LATIN SMALL LETTER U WITH CIRCUMFLEX\\ 97&—&249&LATIN SMALL LETTER U WITH GRAVE\\ 98&˜&255&LATIN SMALL LETTER Y WITH DIAERESIS\\ 99&™&214&LATIN CAPITAL LETTER O WITH DIAERESIS\\ 9A&š&220&LATIN CAPITAL LETTER U WITH DIAERESIS\\ 9B&›&162&CENT SIGN\\ 9C&œ&163&POUND SIGN\\ 9D&&165&YEN SIGN\\ 9E&ž&8359&PESETA SIGN\\ 9F& &57379&\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} A0& &225&LATIN SMALL LETTER A WITH ACUTE\\ A1&Ą&237&LATIN SMALL LETTER I WITH ACUTE\\ A2&˘&243&LATIN SMALL LETTER O WITH ACUTE\\ A3&Ł&250&LATIN SMALL LETTER U WITH ACUTE\\ A4&¤&241&LATIN SMALL LETTER N WITH TILDE\\ A5&Ľ&209&LATIN CAPITAL LETTER N WITH TILDE\\ A6&Ś&170&FEMININE ORDINAL INDICATOR\\ A7&§&186&MASCULINE ORDINAL INDICATOR\\ A8&¨&191&INVERTED QUESTION MARK\\ A9& &8976&REVERSED NOT SIGN\\ AA&$Ş$&172&NOT SIGN\\ AB&Ť&189&VULGAR FRACTION ONE HALF\\ AC&Ź&188&VULGAR FRACTION ONE QUARTER\\ AD&­&161&INVERTED EXCLAMATION MARK\\ AE&Ž&171&LEFT-POINTING DOUBLE ANGLE QUOTATION MARK\\ AF&Ż&187&RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK\\ B0& &9617&LIGHT SHADE\\ B1& &9618&MEDIUM SHADE\\ B2& &9619&DARK SHADE\\ B3& &9474&BOX DRAWINGS LIGHT VERTICAL\\ B4& &9508&BOX DRAWINGS LIGHT VERTICAL AND LEFT\\ B5& &9509&BOX DRAWINGS VERTICAL LIGHT AND LEFT HEAVY\\ B6& &9512&BOX DRAWINGS VERTICAL HEAVY AND LEFT LIGHT\\ B7& &9490&BOX DRAWINGS DOWN HEAVY AND LEFT LIGHT\\ B8& &9489&BOX DRAWINGS DOWN LIGHT AND LEFT HEAVY\\ B9& &9515&BOX DRAWINGS HEAVY VERTICAL AND LEFT\\ BA& &9475&BOX DRAWINGS HEAVY VERTICAL\\ BB& &9491&BOX DRAWINGS HEAVY DOWN AND LEFT\\ BC& &9499&BOX DRAWINGS HEAVY UP AND LEFT\\ BD& &9498&BOX DRAWINGS UP HEAVY AND LEFT LIGHT\\ BE& &9497&BOX DRAWINGS UP LIGHT AND LEFT HEAVY\\ BF& &9488&BOX DRAWINGS LIGHT DOWN AND LEFT\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} C0& &9492&BOX DRAWINGS LIGHT UP AND RIGHT\\ C1& &9524&BOX DRAWINGS LIGHT UP AND HORIZONTAL\\ C2& &9516&BOX DRAWINGS LIGHT DOWN AND HORIZONTAL\\ C3& &9500&BOX DRAWINGS LIGHT VERTICAL AND RIGHT\\ C4& &9472&BOX DRAWINGS LIGHT HORIZONTAL\\ C5& &9532&BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL\\ C6& &9501&BOX DRAWINGS VERTICAL LIGHT AND RIGHT HEAVY\\ C7& &9504&BOX DRAWINGS VERTICAL HEAVY AND RIGHT LIGHT\\ C8& &9495&BOX DRAWINGS HEAVY UP AND RIGHT\\ C9& &9487&BOX DRAWINGS HEAVY DOWN AND RIGHT\\ CA& &9531&BOX DRAWINGS HEAVY UP AND HORIZONTAL\\ CB& &9523&BOX DRAWINGS HEAVY DOWN AND HORIZONTAL\\ CC& &9507&BOX DRAWINGS HEAVY VERTICAL AND RIGHT\\ CD& &9473&BOX DRAWINGS HEAVY HORIZONTAL\\ CE& &9547&BOX DRAWINGS HEAVY VERTICAL AND HORIZONTAL\\ CF& &9527&BOX DRAWINGS UP LIGHT AND HORIZONTAL HEAVY\\ D0& &9528&BOX DRAWINGS UP HEAVY AND HORIZONTAL LIGHT\\ D1& &9519&BOX DRAWINGS DOWN LIGHT AND HORIZONTAL HEAVY\\ D2& &9520&BOX DRAWINGS DOWN HEAVY AND HORIZONTAL LIGHT\\ D3& &9494&BOX DRAWINGS UP HEAVY AND RIGHT LIGHT\\ D4& &9493&BOX DRAWINGS UP LIGHT AND RIGHT HEAVY\\ D5& &9485&BOX DRAWINGS DOWN LIGHT AND RIGHT HEAVY\\ D6& &9486&BOX DRAWINGS DOWN HEAVY AND RIGHT LIGHT\\ D7& &9538&BOX DRAWINGS VERTICAL HEAVY AND HORIZONTAL LIGHT\\ D8& &9535&BOX DRAWINGS VERTICAL LIGHT AND HORIZONTAL HEAVY\\ D9& &9496&BOX DRAWINGS LIGHT UP AND LEFT\\ DA& &9484&BOX DRAWINGS LIGHT DOWN AND RIGHT\\ DB& &9608&FULL BLOCK\\ DC& &9604&LOWER HALF BLOCK\\ DD& &9612&LEFT HALF BLOCK\\ DE& &9616&RIGHT HALF BLOCK\\ DF& &9600&UPPER HALF BLOCK\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} E0&$ŕ$&945&GREEK SMALL LETTER ALPHA\\ E1&$á$&946&GREEK SMALL LETTER BETA\\ E2&$â$&915&GREEK CAPITAL LETTER GAMMA\\ E3&$ă$&960&GREEK SMALL LETTER PI\\ E4&$ä$&931&GREEK CAPITAL LETTER SIGMA\\ E5&$ĺ$&963&GREEK SMALL LETTER SIGMA\\ E6&$ć$&956&GREEK SMALL LETTER MU\\ E7&$ç$&964&GREEK SMALL LETTER TAU\\ E8&$č$&934&GREEK CAPITAL LETTER PHI\\ E9&$é$&920&GREEK CAPITAL LETTER THETA\\ EA&$ę$&937&GREEK CAPITAL LETTER OMEGA\\ EB&$ë$&948&GREEK SMALL LETTER DELTA\\ EC&$ě$&8734&INFINITY\\ ED&$í$&8709&EMPTY SET\\ EE&$î$&949&GREEK SMALL LETTER EPSILON\\ EF&$ď$&8745&INTERSECTION\\ F0&$đ$&8801&IDENTICAL TO\\ F1&$ń$&177&PLUS-MINUS SIGN\\ F2&$ň$&8805&GREATER-THAN OR EQUAL TO\\ F3&$ó$&8804&LESS-THAN OR EQUAL TO\\ F4&$ $&8992&TOP HALF INTEGRAL\\ F5&$ $&8993&BOTTOM HALF INTEGRAL\\ F6&$ö$&247&DIVISION SIGN\\ F7&$÷$&8776&ALMOST EQUAL TO\\ F8&ř&8728&RING OPERATOR\\ F9&ů&183&MIDDLE DOT\\ FA&ú&8729&BULLET OPERATOR\\ FB&$ű$&8730&SQUARE ROOT\\ FC&$ü$&8319&SUPERSCRIPT LATIN SMALL LETTER N\\ FD&$ý$&178&SUPERSCRIPT TWO\\ FE&ţ&9632&BLACK SQUARE\\ FF&˙&160&NO-BREAK SPACE\\ \end{tabular} \end{document} latex2rtf-2.3.18/test/bib_apacite.tex0000777000175000017500000000553013050672360017653 0ustar wilfriedwilfried\documentclass[11pt]{article} % we must use the BCAY option because the included bibliography was %created by an old version of apacite.sty (made before 2003/03/27) \usepackage[BCAY]{apacite} \begin{document} this topic, including the authors of the second article. The other one, written by W. Vialle et al. \cite{vialle2001} Kulik and Kulik performed a meta-analysis about the effects of acceleration of gifted children \cite{kulik1984}. The authors state that many older studies \cite{hooper1986,ortony1988,russell1979} \cite[chap.~3]{allen1995a,allen1995b} \citeA{allen1995a} \citeyear{allen1995b} \citeauthor{allen1995b} \citeyearNP{allen1995a} \begin{thebibliography}{} \bibitem[\protect\BCAY{Kulik \BBA{} Kulik}{Kulik \BBA{} Kulik}{1984}]{kulik1984} Kulik, J.~A.\BCBT{} \BBA{} Kulik, C.-L.~C. \newblock{}\BBOP{}1984\BBCP{}. \newblock{}\BBOQ{}{Effects of Accelerated Instruction on Students}.\BBCQ{} \newblock{}\Bem{Review of Educational Research}, \Bem{54}(3). \bibitem[\protect\BCAY{Vialle, Ashton, Carlon\BCBL{} \BBA{} Rankin}{Vialle \BOthers{}}{2001}]{vialle2001} Vialle, W., Ashton, T., Carlon, G.\BCBL{} \BBA{} Rankin, F. \newblock{}\BBOP{}2001\BBCP{}. \newblock{}\BBOQ{}{Acceleration: A Coat of Many Colours}.\BBCQ{} \newblock{}\Bem{Roeper Review}, \Bem{24}(1). \bibitem[\protect\BCAY{Allen \BBA{} Carifio}{Allen \BBA{} Carifio}{1995\protect\BCnt{1}}]{allen1995b} Allen, B.~D.\BCBT{} \BBA{} Carifio, J. \newblock{}\BBOP{}1995\protect\BCnt{1}, May\BBCP{}. \newblock{}\Bem{The relationship between emotional states and solving complex mathematical problems.} \newblock{}Paper presented at the meeting of Eastern Educational Research Association, Hilton Head, SC. \bibitem[\protect\BCAY{Allen \BBA{} Carifio}{Allen \BBA{} Carifio}{1995\protect\BCnt{2}}]{allen1995a} Allen, B.~D.\BCBT{} \BBA{} Carifio, J. \newblock{}\BBOP{}1995\protect\BCnt{2}, March\BBCP{}. \newblock{}\Bem{A {M}ethodology for the {A}nalysis of {E}motion {E}xperiences during {M}athematical {P}roblem {S}olving.} \newblock{}Paper presented at the Annual Conference of the New England Educational Research Organization, Portsmouth, NH. \bibitem[\protect\BCAY{Hooper}{Hooper}{1986}]{hooper1986} Hooper, J. \newblock{}\BBOP{}1986\BBCP{}. \newblock{}\Bem{The 3-{P}ound {U}niverse.} \newblock{}Los Angeles: Teacher, Inc. \bibitem[\protect\BCAY{Ortony, Clore\BCBL{} \BBA{} Collins}{Ortony \BOthers{}}{1988}]{ortony1988} Ortony, A., Clore, G.\BCBL{} \BBA{} Collins, A. \newblock{}\BBOP{}1988\BBCP{}. \newblock{}\Bem{The {C}ognitive {S}tructure of {E}motions.} \newblock{}New York: Cambridge University Press. \bibitem[\protect\BCAY{Russell}{Russell}{1979}]{russell1979} Russell, J.~A. \newblock{}\BBOP{}1979\BBCP{}. \newblock{}\BBOQ{}Affect {S}pace is {B}ipolar.\BBCQ{} \newblock{}\Bem{Journal of Personality and Social Psychology}, \Bem{37}(3), 345--356. \end{thebibliography} \end{document} latex2rtf-2.3.18/test/color.rtf0000644000175000017500000002014513664476467016557 0ustar wilfriedwilfried{\rtf1\ansi\uc1\deff0\deflang1024 {\fonttbl{\f0\fnil\fcharset0 Times New Roman;} {\f1\fnil\fcharset0 Arial;} {\f2\fnil\fcharset0 Arial;} {\f3\fnil\fcharset0 Courier New;} {\f4\fnil\fcharset0 Zapf Chancery;} {\f5\fnil\fcharset0 STIXGeneral;} {\f6\fnil\fcharset0 MS Gothic;} } {\colortbl; \red0\green0\blue0; \red0\green0\blue255; \red0\green255\blue255; \red0\green255\blue0; \red255\green0\blue255; \red255\green0\blue0; \red255\green255\blue0; \red255\green255\blue255; \red0\green0\blue128; \red0\green128\blue128; \red0\green128\blue0; \red128\green0\blue128; \red128\green0\blue0; \red128\green128\blue0; \red128\green128\blue128; \red192\green192\blue192; \red239\green219\blue197; \red205\green149\blue117; \red253\green217\blue181; \red120\green219\blue226; \red135\green169\blue107; \red255\green164\blue116; \red250\green231\blue181; \red159\green129\blue112; \red253\green124\blue110; \red35\green35\blue35; \red31\green117\blue254; \red173\green173\blue214; \red25\green158\blue189; \red115\green102\blue189; \red222\green93\blue131; \red203\green65\blue84; \red180\green103\blue77; \red255\green127\blue73; \red234\green126\blue93; \red176\green183\blue198; \red255\green255\blue153; \red28\green211\blue162; \red255\green170\blue204; \red221\green68\blue146; \red29\green172\blue214; \red188\green93\blue88; \red221\green148\blue117; \red154\green206\blue235; \red255\green188\blue217; \red253\green219\blue109; \red43\green108\blue196; \red239\green205\blue184; \red110\green81\blue96; \red29\green249\blue20; \red113\green188\blue120; \red109\green174\blue129; \red195\green100\blue197; \red204\green102\blue102; \red231\green198\blue151; \red252\green217\blue117; \red168\green228\blue160; \red149\green145\blue140; \red28\green172\blue120; \red240\green232\blue145; \red255\green29\blue206; \red178\green236\blue93; \red93\green118\blue203; \red202\green55\blue103; \red59\green176\blue143; \red253\green252\blue116; \red252\green180\blue213; \red255\green189\blue136; \red246\green100\blue175; \red205\green74\blue74; \red151\green154\blue170; \red255\green130\blue67; \red200\green56\blue90; \red239\green152\blue170; \red253\green188\blue180; \red26\green72\blue118; \red48\green186\blue143; \red25\green116\blue210; \red255\green163\blue67; \red186\green184\blue108; \red255\green117\blue56; \red230\green168\blue215; \red65\green74\blue76; \red255\green110\blue74; \red28\green169\blue201; \red255\green207\blue171; \red197\green208\blue230; \red253\green215\blue228; \red21\green128\blue120; \red252\green116\blue253; \red247\green128\blue161; \red142\green69\blue133; \red116\green66\blue200; \red157\green129\blue186; \red255\green29\blue206; \red255\green73\blue108; \red214\green138\blue89; \red255\green72\blue208; \red227\green37\blue107; \red238\green32\blue77; \red255\green83\blue73; \red192\green68\blue143; \red31\green206\blue203; \red120\green81\blue169; \red255\green155\blue170; \red252\green40\blue71; \red118\green255\blue122; \red159\green226\blue191; \red165\green105\blue79; \red138\green121\blue93; \red69\green206\blue162; \red251\green126\blue253; \red205\green197\blue194; \red128\green218\blue235; \red236\green234\blue190; \red255\green207\blue72; \red253\green94\blue83; \red250\green167\blue108; \red252\green137\blue172; \red219\green215\blue210; \red23\green128\blue109; \red222\green170\blue136; \red119\green221\blue231; \red253\green252\blue116; \red146\green110\blue174; \red247\green83\blue148; \red255\green160\blue137; \red143\green80\blue157; \red237\green237\blue237; \red162\green173\blue208; \red255\green67\blue164; \red252\green108\blue133; \red205\green164\blue222; \red252\green232\blue131; \red197\green227\blue132; \red255\green182\blue83; } {\stylesheet {\s0\qj\widctlpar\f0\fs20 \snext0 Normal;} {\cs10 \additive\ssemihidden Default Paragraph Font;} {\s1\qc\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 Part;} {\s2\ql\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 heading 1;} {\s3\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 2;} {\s4\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 3;} {\s5\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 4;} {\s6\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 5;} {\s7\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 6;} {\s8\qr\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext8 rightpar;} {\s9\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext9 centerpar;} {\s10\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext10 leftpar;} {\s11\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equation;} {\s12\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationNum;} {\s13\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlign;} {\s14\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlignNum;} {\s15\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArray;} {\s16\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArrayNum;} {\s17\ql\sb120\sa120\keep\widctlpar\f0\fs20 \sbasedon0\snext0 theorem;} {\s18\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 bitmapCenter;} {\s20\qc\sb240\sa240\b\f0\fs36 \sbasedon0\snext21 Title;} {\s21\qc\sa120\f0\fs20 \sbasedon0\snext0 author;} {\s22\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext22 footer;} {\s23\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext23 header;} {\s30\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 caption;} {\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext0 Figure;} {\s32\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext32 Table;} {\s33\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext33 Tabular;} {\s34\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext34 Tabbing;} {\s35\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext35 Quote;} {\s38\ql\widctlpar\f3\fs20 \snext38 verbatim;} {\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext46 List;} {\s47\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext47 List 1;} {\s50\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 latex picture;} {\s51\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 subfigure;} {\s61\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext62 bibheading;} {\s62\ql\fi-567\li567\sb0\sa0\f0\fs20 \sbasedon0\snext62 bibitem;} {\s64\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext64 endnotes;} {\s65\ql\fi-113\li397\lin397\f0\fs20 \sbasedon0\snext65 footnote text;} {\s66\qj\fi-170\li454\lin454\f0\fs20 \sbasedon0\snext66 endnote text;} {\cs62\super \additive\sbasedon10 footnote reference;} {\cs63\super \additive\sbasedon10 endnote reference;} {\s67\ql\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext67 acronym;} {\s70\qc\sa120\b\f0\fs20 \sbasedon0\snext71 abstract title;} {\s71\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext0 abstract;} {\s80\ql\sb240\sa120\keepn\f0\b\fs20 \sbasedon0\snext0 contents_heading;} {\s81\ql\li425\tqr\tldot\tx8222\sb240\sa60\keepn\f0\fs20\b \sbasedon0\snext82 toc 1;} {\s82\ql\li512\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext83 toc 2;} {\s83\ql\li1024\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext84 toc 3;} {\s84\ql\li1536\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext85 toc 4;} {\s85\ql\li2048\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 5;} {\s86\ql\li2560\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 6;} } {\info {\title Original file was color.tex} {\doccomm Created using latex2rtf 2.3.18 r1266 (released May 29, 2020) on Sat May 30 17:35:19 2020 } } {\footer\pard\plain\f0\fs20\qc\chpgn\par} \paperw12280\paperh15900\margl2680\margr2700\margt2540\margb1760\pgnstart0\widowctrl\qj\ftnbj\f0\aftnnar {\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi0 The color package makes a default color package available. The colors available with this are: red, green, and blue (for screen display) and cyan, magenta, and yellow (to go with black for the CMYK color model for printing). To make a single word or phrase in color, use the command: \par {\pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 {\b0\i0\scaps0\f3 \\textcolor\{color\}\{words to be in color\}} \par }\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 For example, {\cf6 text in red} and {\cf2 text in blue} and {\cf4 text in green}\par }} }}}latex2rtf-2.3.18/test/inc_test.tex0000777000175000017500000000010413050672355017235 0ustar wilfriedwilfriedThis comment will only show up in the RTF conversion of a tex file. latex2rtf-2.3.18/test/hyperref.aux0000644000175000017500000000202213664476470017253 0ustar wilfriedwilfried\relax \providecommand\hyper@newdestlabel[2]{} \providecommand\HyperFirstAtBeginDocument{\AtBeginDocument} \HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined \global\let\oldcontentsline\contentsline \gdef\contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}} \global\let\oldnewlabel\newlabel \gdef\newlabel#1#2{\newlabelxx{#1}#2} \gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}} \AtEndDocument{\ifx\hyper@anchor\@undefined \let\contentsline\oldcontentsline \let\newlabel\oldnewlabel \fi} \fi} \global\let\hyper@last\relax \gdef\HyperFirstAtBeginDocument#1{#1} \providecommand*\HyPL@Entry[1]{} \HyPL@Entry{0<>} \@writefile{toc}{\contentsline {section}{\numberline {1}The first section}{1}{section.1}} \@writefile{toc}{\contentsline {section}{\numberline {2}Random Stuff}{1}{section.2}} \newlabel{randomlabel}{{2}{1}{Random Stuff}{section.2}{}} \@writefile{toc}{\contentsline {subsection}{\numberline {2.1}url}{1}{subsection.2.1}} \@writefile{toc}{\contentsline {section}{\numberline {3}About paragraph breaks}{1}{section.3}} latex2rtf-2.3.18/test/fig_testb.png0000777000175000017500000012142413050672360017364 0ustar wilfriedwilfried‰PNG  IHDRŒHťm‘2?PLTE """222CDDTUUdffoqquww†ˆˆˆˆˆ–™™™™™§ŞŞŞŞŞšťťČĚĚŮÝÝęîîű˙˙ÄŕN pHYs  ¨˙f%€IDATxÚí] [ă8Żí03Ěey”˙˙[ďÚĒΑ”śĐ¤g—Š[–d}ŮM“ÝÔаyř{ż;Ŕľ9ůHřŇÂ5|ř÷ÇŽąĄáú żvťvƆ†ëĂßť];cCĂŕ˙vťvƆ†ëƒüÜľ364l^~ěÚ6ť];cCĂőáőÁűâ㵙úHhglŘ(üϕ¨ť˙ť6S íŒ ŰP˘>ź^›Š…vƆ-Âr˙Ű7)Q÷ĐÎذAř”¨/×fęĂĄąas î;ŔOš6WíŒ [}˙Ű;üßľ™ú hglŘüŸwĹťż×fęS ąaSŕîű~}ƒuíŒ [‚próﵙú,hglŘ€/ďżG‰ş‡vƆÍŔˇť˙Í@;cĂVŕűÝ˙f ąa#đ ď3ĐÎذ ř–÷żhglŘ|Ďűß ´36\žëýoÚŽßöţ7íŒ ×†ď{˙›vƆëÂwž˙Í@;cĂUá[ß˙f ąášđ˝ď3ĐÎŘp=řî÷żhgl¸|űűß ´36\ úţ7íŒ ×ž˙ÍA;cĂU ďóĐÎŘpčűß´36|>ôýoÚ>úţ7 íŒ Ÿ }˙ƒvƆυž˙B;cçBß˙ĆĄąáĄď‹ ąáó ď ĄąáӠąá“ ďË ąás ďKĄąá3 ď+@;cĂ'@ß˙VvƆ‡ž˙­íŒ  }˙[Ú>úţˇ*´36|,ôýoehglřHčűßV@;cĂBß˙śÚ>úţˇUĐÎŘđQĐ÷ż­„vƆ‚ž˙m-´36|ôýo록ąá# ď;Ú>úţˇS ąáâĐ÷żíŒ —†ž˙íDhgl¸0ôýo§B;cĂEĄď;Ú. }˙ŰĐÎŘpAčűß΁vƆ‹Aß˙v´36\ úţˇ3Ąąá2Đ÷ż íŒ ž˙í|hgl¸ôýo€vƆóĄďť´36œ }˙Űe ąá\čűß.íŒ çAß˙v1hgl8 úţˇËA;cĂ9Đ÷ż]ÚN‡ž˙í˘ĐÎŘp2ôýo—…vƆĄďť4´36œ}˙ŰĹĄąá$čűß.íŒ '@ß˙öĐÎذúţˇvƆŐĐ÷ż} ´36Ź„ž˙íŁ ąaôýoíŒ Ť ďű8hglX}˙ŰGB;cCúţˇ…vƆ*ôýo íŒ Ečűß>ÚjĐ÷ż}8´36T ďűhgl(@ß˙öĐÎؐCß˙ö)ĐÎؐAß˙öIĐÎؐ@ß˙öYĐÎŘCß˙öiĐÎŘAß˙ö‰ĐÎŘ@ß˙ö™ĐÎŘ@Ąďű\hgl`Đ÷ż}2´36čűß>Ú ôýoŸíŒ úţˇ+@;c€ž˙íĐÎŘŕ ďť´36XčűߎíŒ úţˇkA;cƒ‚ž˙ízĐÎŘ0Bß˙vEŘ544\^ÚśíŒ vƆ†ŔěŒ^^ž_Ţŕđ‚çCóý™Ó!¸{Ÿŕy˜ ţkşP˙gՉ5á랍ן?_^ ţq‹óĎ/ÜuúżěőĎŃ?[匵㲍܏×>Ŕjx‡ž˙íŠp‚3~„/^Ű…"LŘ匘Ÿ^˙tg@÷żýţdÎÎ×ß-čvFdz3Ó㌂đsŃţ1 8J˘‹ŤĆƒëŸ(ďŘá|šřü)üHܲVç^˙hyIhżhfź{xx ˙ťvLJfWŤóú/ą1˘ŻKr=OVčcĺe3ţ‹Vť˙íL~fôýÝ ţ-xgÔL‹#öŠ˝éçÓß÷NÁS~ü>,ęëó/쑯˜YÉů9ˇ´0#9>t)Žw×?E^Ěť˙mËúżřőOĐ?íĎ3#ݤ_€+ýx{>šËęŕÇž,źÂÂü\ żĹâÍáG_˙xyم§řţˇÖ˙…äúĘTYœx˙/pĆG ln´7?űěřŽâç˘ýĹ´€ĚŤS!ŐO2>ÍŹ'/=\ƒ=˙mú˙ˆëŸ¤ÚÂΨKřCŰüŮ9ăňt˘cŸżY ęŸý7:#ˆ/žŸ öŠŰŻ `:kÇł5úXy‘éĄçżýŮźţ/}ýłäĹý§Jf´¤Ź3ރŐ5]Ő?ŹLŚvéOńšœnqźťţ9ňzôwEţüˇíč˙â×?Y˙ŽQ9ăórýčaž3_ ˙Bg´…ˆŮX>M6b ą…đsąţJ3HâŽ îQﯚź.P“çż)#ݚţ/ýíů—ËŒ$Ž, ń1K iępĚ~ˇ*)?gö?ę#\C/ä߇˙ŕž_ĎĆ hű$yÍđüˇž(ߗç{ćjý݊ţŁţÖqÁ5~PÎxorź,TQ™ŞTđ+pF[Ś YP/ź_Lkż˜ú[u–Ż3şź|;‹HŽQ#ťž\ďĂ´')+xř@hUŐÇŁReÂmšţá„U}×t•üZڌŤ÷ÚYHaĎř&á˝sĆŃöV…œq_*VX"`AI9:8#ż|ŽŐ#“{,^đ öüˇAgáxć—Ä“ˇĘ8†źa.ĽH)Fö‘é;ׁçm°KÉpŒkË4î0ž`ĎŔc3"ĺÄĘ#ŕ3‰‹dD )QĺŠÍŒĹş,ĺ(łDaAĂË1z˙$%jl˘X+~°nFŢۀƐ:ŘXÔWČTߤćáËŕŻŇ˛8#0›béƒé!#UëŒ@ĆĄâý ŒŻ”ODýą9“;}ěA3ëśł#Uńk8_ml:NÖĘŘěůo•4áőJuę{O\^Ăk•ÇZ"Ż@r~R*żîę‰i8ýąĚ(“çíÝzg|u“>;g$Ĺ˜~ Ł.‰ Č`EâĄD9¤RâÚożWmčPXÝUr S/’uŕÝ˙öŰL坥üąÝŒüÚŢšúC•ů΂č­(˜‚0Íô]+Ä$Z}g|´Äfˆ÷Œ C”3ÚKJ›\jAuď3énRUč˘Qo! YEő KşR)@źđň§r˙S¨‹…R%ĺŸk_G! ;KFĎŃ=šW“5 hĺéď `fňŹWňOpąŁ=Łę{7:#“.–>8ŘÓ1‘kЧ$ˆ,Z(°*!šó ОIRAĺAţţS™Bťqęœsçă\rjË21+X&Ň:ĆŐ-Ôˇ ŸüĐDf˝X™ę†ÎCLbtÁţłĘ€Ľö¨œqÇéŰü WŞXÜ0•K„Ă Ź€pÉ*ŮŚ˜Ő˛DrsĄqYťv˙[\Iăň"Ôˇ{ŁeZŞŸÂľĚ7‰Ö19íc%}gz‰ľ; )SŐ0q#Ţŕ/ščđžéâĺ°'‰Ú¤ŘŠÜ:;Ö=Łü˘Rž€kôŹV„ hŇäoĐŕţ7Ćɚ"4-Ť… =ŃĹq´Ž =Dž˘o?2_W;Ä8cAŒš¨ńjm—Šč{ź_ޏJűKG‘aŮ ĘP– ´ ľʏAťŕfx ¨)ɇnAú‚>™%ř…Aĺţ7Ł31íĎU˘˘ ňNXŚJŽĄ ­0Ł.–ÓŠgœ oHEĘs@ —ŠfZţ›íiâŹ!gāöĹď+ą&†6 č…:˛cH ě!đsaZ§Ĺl 桼(°Nî`ĽęŹšÂ‹ţۏ'7ŽXě‹űŤŻ 6¤D3Tc‹ŠwŹępˆČëĎĐwMĘj”3>{2Î0ŢóĂ0§ĆUp˝›ű CČJtĄĂ´Âé˜q [{7L˙ÁČ$$Ľă‰-J´ Éôůof żę¨bů@:żŹ,Ó%?ż@lŤ|X RĂôž]6Zb[]§?˛gäܝńW$%uF%ň<â>Žh%8ŞÂëƒi(.dŸMý=j>ŕÄ×uC;p(ƒra Wn\xţŤP*wŹĽÍ‰Ţ~Ț–ôełm<˛‘5&ś1ęĎ:ăȕž˝ě€ńO"3UçŒ&+ௌ󐍸”J´†„cĂŹŃü#ĺgâmx:QŇŚ‰[źEđřýo̎U„Ř zĐűűH)§Ë΢ţzW§f° LŤ~ľ¨ˆ"ttFǕuqž5üĐÎ UÉDłü7{ŠĂJ9/NŞĄŕř‘ &ôŁćS*”öŁ %Ú0íĘóߘŰéô?tĆH–žâ†*œ$#ą6T-J5ft"ľ*ąŽąţ슏…ŤćĐ8#Kă vřQ0ů’ţĐ5pFˇ‡,󂧄ڑ°[XyĹÖĂŕĎ(˜ĆőŇŚT’ÉDhBű§ö˝˙Tđ`÷ 5a&Z˘mÇNŹN*á6 ÁÇ)śU6(Ó̌3jŸa-YŞĘc}šŃe ¨¨éźRQť”Ć.-w(ĘvF™ ÎąÍĘŚ°nÔéóßďÁUc-ałů÷ň˛ŔiúĂ.n°@Lb¨"!M™|’ţ$(SA5ý;×S ËԁćŤŮƒ’ÉcjBD•T‡vćĹźŒ8üóÇ V Ä>Ź€9Q ňiŹh§‡ůýo˜cšâ˛Â•eV:+Ŕ`űâŠDá3Âş5Ö IçBmü|Ţƒ¸ź˙çqIv\)ą3šŽ;“j‰ś0; ˝ĽEyR”“^¸]kř­ Sź[Rţ<–†ĄZ˛]šđýo¨ą2/ ŕwŒ5›GN‹i TÁ€ '‘˝Ű¸˘˙HÖ;.“ŁůŔípVóƤ͖ÖOfՉ†üâ››ňł˛,i 3R’]oČoeŕ4%ëƒVd]LV#lžňóß(#ŹޟëâNŔ¤aᾆ\É`VŠ-%„"ÔĆćlĎčdy\×CSzoęÜq¨ú~'ĄM˜‡ęjŐQđšý…çpƁ_?łR'bŒ[a…aâŒăDäţ72+(vméi:šňÓpŒ.’Ű_0G0;ćÉÜęßMäŠ=ŔŠYš—Ç[Pú_úźź;Ł~ކ› •ŠŚx\ŕe)S…ݰhö’ŤSÎľ­šţűĂ&Ha~•Jp&Ĺdq#SÇáxţۏ'DÚŠŠ­+D–ud`ý1’I‹ŘZ`ÁŐ˙\LχĺŒĎžžăáÝŃóĂHp|ořüŐuőJb˘źę3şĂűWžhߝUYÝ=LŔˆ” 6›‘°9Ży˙i-Dɨ§p‘–~˘Pb]ĂĆŔöô@ÓT]˙†ťqĆ( EKŢ'Ö ™ŕpJóOÜANŸĺ"ÎH6÷Ë.4œœ”,OÄT(ÄÎߐ`B‡Ń_g¸Řţ‘‘ÂŇűߏM@ŠüÄLG†$ĂI€ÁţźB`.b*Ő?_ýŠŽĹuç¨ę/|n*fđ‡ńÇ̑*uF×űa&ŠřőůńáámöĎţŁő-c;…G"XItYWżÖŞÄ#=˙M Á¸ýěRV&_<‘|ĺńnlęň^ĆeŇބŞ`š,ŠúKß\lCăĄăO,ăĚ"ß3"…ü^ü›ńů÷ˇ;šżűýw˜óźK žD „+ĂŔ0UöšţAő:™{ÔčĹ8Œq4”‘+ÖÂo‚B>Ĺ͙čŸ˙^vĐuY X6çO'i 9#ÓčŰ$obhfnłč+ě§1Ů"rO荎{dĎmUϰƒđrŕŕ%čŁâoocöŕnPŤ‹ŇMřĺ^LŠXKřü7CfžMüLáZOÖ¤ŹÜ~ŹxbëgŞ|ő:_3,çž=Ąswţţq‘˙týígFCk¤ńřřřűń/ŇžqqçŒTŻ{šO>ƒđçŕíăďî¨ËˇżŠ3†¤ÎřFíĺçÝŽ őj# mšŕÓ 2ˇ…Ď‹ůLÚ.ŠŘ!ż•Gi&ňň¸°œ•`L@,ç–ąąţ„:Ł—Žň‰äLœQđXX`źŽŃýÇĂ‘ŕńa42ýŤƒ™^ÍĽ˜ďVŔpť}bÁ]M‘ÍŁ>NĄĺűßdůŸMĐĘŞ%žWGĽÎőęCvJwpţ#sÚqn  ÂL,öΘ>*}n}ŚÚWIä9P ~Í_˝ü Mýo†‹dƙćănźQbŔ2/ŃX\hEď?Í~œ(ĆZu`Ć_ź…üÎ_™ĆóúńŽâ´ó™žŇ#iśTÉ0gąú3•.ŢŰ5Ő cŒh…#Żę3¤¤Ÿ*ž7•]%Šc…ÎKS›ƒ•]dls'ŽGO%+úú“U΂8Ŕ)=Ëě öeť¸ź{nš<|˙ ˙ďóo˙ ´?¨ç_łżş˙óŞ:=˝“Ţżý7ö{o4 Oˇ¸x %ťÓłhĐńűOľúŘŽxž~č !¸1˝šŁ“ÔěŮ –U€™ţŹ3R‹ČßC7 DÎh„FŞű,áý÷Ŕä}ĎáÖ´ßö:KżˆőŒo5w}$ĘÄKÖ –X8w '….Žš˙-áš*]/–Ęň­÷ŰŞśÁÎ(5Ɇî! #äbb˙{PÎx(°ĐÚ‘Źό5żÁ­ˆ)˝˜ÚqirŢOÓc1gá{wŚě {-­´řBy_ň…Ř~˙éĐ&c7˛ŕŠH< DbÉIDOH;ü˝¨ŔkËxń­a"DÍĚô–ŠÔ&ˇ~8Ąg$ â2c8‚0Ľĺňgéóă~ăăm;cďăžŃ<ˇĐiždFeUNNPşëćł+$ézęëřţˇČ4đü°/)ŚIîô|.92FCţ$éÇÇK^݅‹0‘Äú‹íĺ—ţefœ3  gLS˛ŢĂÄt>š>8FŽÓčŰPîąr^fť=Čŕ'˛9RAůˆĘ”ÉŰęD ™9ąjćĎă^…§ŸE ě—PÂQ–ŠF “qŠ` ŒŞŇ?ež‰ĐÁňjý9űŔ—ŠeŸ3"‹Ąjl6ŽLËpÂů×Opěĺ U°4ć—żĐ܏ýa÷Ś€k**ÄŮŻV˜ÔAËĄ•=˙̓YHŹśŇœ“>¸łep‰XĄMů{,Ĺ :Z1/ŰQ č{Ÿ¤?Ľ3œ}ś’řG Ś”Š#ç“x˝ÇećE€ĺ€ćŽndž57O`Ć_ş†ä 3É*Ţ7Ř6˘˝7×ÁóßţI_ó‡/ Ĺ,Ԙ˛‰?H,Ÿ×_@TÜo(B3o´l]˜ç)3ďÄô‡ˆXgŒŹƒ0í˛:~?#+ĚeŇlżýyF‡ƒŁýքŢôń˘:š}ďđǸŠGq‡œ1QURéŐbfƒSÚ¸^Ůýo8‡OŁ[Źú ÚŔ`ÚîBFůÂJ@_ą8ŽŐżË*ť¤¤ąí’ŇĄü)>ńđĂ%Ÿšó‡ĚšâWŮ,ś0ź™ŘĂp"xs˛$ƒ;¤č÷OfŰhţ˛tąň­lCw˙@T՜šŐ ŐňFď\ľ¤,VĆȜ_“" –^řKâţGŹR gMňv Źđ¸Lš#ľ1ŠŠł,´LK…ţĹäćͰ‡tŕnŇYzęú헦óú~őř# &ß 1RŚÂ8Vs'`DŽL ËŢňóßěX!yfešťFm’ČNjI읦w˝ Í ?<+ VęOV<ŠE.H8#ޞˆ>ƂëM°„¸áŰú{ŇEÜ-¨ďn{ÜđżçÍ;k•D>’iđŢL`W ňÄ%´f÷żY(Zc„"Œŕ†źtżčK|TˇxËŁ•ŞI Ů=ލʄAoŠšöýÖčOC˜ix‹9ZŽŇĚH "őď¸cźł"Ł›ýĹsěA'ujúkiĘj™˘Ěhß‰ęݛ‹ąšIĐ"ŚĎóńÜŁ1œĆőa"Ď:řŁ Ćf"VĎD3BÓš€ô& ;rő8É;ôí_RŚ‚ˆ׌8ŁŘQ$ýŽžó896×oŤĄaŒN÷ËU{xC6ćwŕ@ˇběsc˛ĂľŇńßüţ7[ŕn3¨Hp-ňS­8ˆMœ–N™Ö)Ďů‰\šr$+ąľ¤8Ż{ź? ô 2#c‰Gf˛¤|-PIüţďőůĆümăËěÇ#ĺ ćÁ°ŠĄHLߖYPń$+ęŸ_/! )ç207“xŽÖ/ˆ>I`"ŹJ4ȨޗŃ%Ü~+Ő@ü“PMâZţxU9㳌h‘‹‹şĂč/ČĂßťiëǢŇYacgłżTcôO÷Nžg}<ź‰äĂ%8Uo¤z(;­§Ňr Ţ˙VË ”i]Œ#ăôĉ Ťjčjʃ˘%qŠĚŇjÔOrĐős•U—î+â8MńĚčô\ý‡ĎąóÓÄ iŇ?ĚŘżŕ?Üy“Äv6ŸJě¤Ę•€Q?ŇţĐ ”¨݆07z(xFܨ‡Cü†ÚB47Ÿ.Ş3%kâ¸éƒŐËeˆBpů'TVŢľi{ÜŢÝĽăLućٛ1ýĽřŰééxçMę-žÂ^xĐ6ŇqC:8n˛çżRyUŠuĎŻ+‡%&mÉzűĐ J `ŃAami™şF03ëyCr< 83ڕ`Ć ž7•Čň~Œzfľĺţœsđ4‚Éç“E7•XoçHv 6\>GĎ3I9ăOÇZ<˘*ňŔ`RUgňÁĚ˝4z¨ĽŠ´Î@Çʔ”7 ě^Ż?żŘ}P™#TÖăeŞÂKôş×"ŻĽn<ýÁuž‡Włm|y˙÷—ŽčŁľ”‰ß–^IDθ‡żzŚ—ÉÎĽ•~î÷.:ţ­‘• -ƒ‹|DVc/őÚîńýoŔ†RţPČŒ 2^oŻć:îîËšąH,h!š  Ô˙Ęů*żäJVh𹩎†ŒĆhU‡ôĘĘTŔ—Ďţ*ץ›ˇ‡ŕco=yĄSÚüÇ_Ĺ —É/˜k„ :%¨Ť´ ÷żĹŚ4•ű€pý@B3(-ˆŞŻŻ÷whŸ›]!q%ŸvÜd°TŞSýífĆ$Ö@_WŔœ‘+sŔŐ3\~˝pxöÝ˙ƒęӑeąCžĄ|^°ˇ!$YĽT0ž™‚ëß˙6l ŕă§KŢ4á•ĚpýpÉŻ—y_Ś-•Pk [áŕýœƒt$×ĚD$j˛2Őéż Ń˘A茁˛Tr̞?ÁoCÔG-S×ŢŐWLźlH&ˇ90mŁNŐĹÜŞć čĺRńóßtBBüE˛g1„plŠ&É{WKEÁ05Ż&pšŘőzńœV,^ź3âŐ+ËLlEŇŇ?žĹ3|Q}ŃHÔgöZ _L>Č^¸,VůÍDK}Küü7o@„ $ĺ kA@iÎŃÖ-Ě@*ś ŞOYů őé+"Ĺm<÷„ěß8Ł“[°’„­ĽĚTqfĜ*C<ĎóRQŸżţř‹ŘîKD°PB 0˘WÂÍŁžý“™ĎŃĘŠ–řóýQy ¨ 3ăđ“Ůˆo›í”¤ś! Źq2*ˇ-˙W’őç3cŞHP2ۖ 3ćpnfDňŽęł‹ă ś@Á;ţ=ÖŞ0č'Ż ˇ˜I2ţtŠä%°¤J['_/@DË´t|tIłR3ŸŠż=(g|Ö˝|yŕtBP㌊ř}Ÿ¸Áwu¸xđ߄ÍtË%,ŞśŕW‘†ýJOl­ŕŇiťŸ˙ĆÜ MĚs ڰ‚|ąS'ďwŒ’¨6ߚţ“g!ÂFĐsôç3c­Œ™ÉAć3šd`ą¤ Í Œ>“Đ…aŇ$—?„6P܄o‡ÁJO+“7Çťř+vĐSôţSČťĆ&=l‘ĽYډ.v([/Čâ/ľ˜Bv$ĄóŘ˙Ź3r˝ ťzEe*Œ‡# ąľňúĹÚ3xBŁůÖ݁™PĐuČŔ{[p˙[d%łƿ1.˘)Š;Ĺ9ČĐĚÎIfŐľţăô(!]ńmëőç3ŁćV>t’ă5c0ÖübžŐĐߖ4ű<Ş–ňţŽťě˘nÂÉleF§hËĘ@CŢ(ň÷Ÿ†ĚŻáĎkTÔ?€š0żŹh+ŘZýĺK–Ż8ż1UAše döę45Qh˙Ć…Îŕ?0[“čWă‚+“Kľ‘PŘu=ʐdFŽmžPj ˘ĘĽ%{ţŞa|v¤ü•Â:éĘN§K”…‚ĘَĎ’€ë´,‚_űú„ ˛–Ź?bfĆ8ŽQmfÎXĎŔM |ăsę:<JsřčÇ0zŤĘTĎlČfDéýoÂçŠxKœĽ\ ™I3Ě&ՉŽ7ćsf0@(‰šźŞW[5˜HúâŁŐ0ä âĚ•Ă5ĺŒ÷™ ˛ˇ8 ňËł9ę_Ô$n”ůˆ‘?M­Âv>Ý˙ö'ąćźlçĂÔÇRŮmź 'ÚĐ Ń‹˘ćŁÍn"!°¤ôĆSäÂŕ]$S*Ś%ś"kËTŞQŹ„‘*pĆĄşq¤ŚSc˛ČrźËí'ĺőp$ô×]˜Üś1{qĚŘ÷Ů-֋Wd|Á áýo xôiş šÎPDňR"f>!íSbą•¤…ŇüĚ&›!c#”—D ČżH§ňcĺ>y¤ŽĹďčŒR5ÉyŚ{áŁĘ{Ŕ*~ë‚W_7ŰĆ÷[ĆyA<&í߮ϛýŁJľa\-f—ć˘űßüS•÷Čl“R ÜÍáŘŹXśĹ.É*Z%W&żîĆÖŽě/੬äË:#ÉÎŔ¸"(”ŠąâőŁŮťLŠ<%ŽŰáúĄbś÷ŒÇ÷Ƥug{žłý é/2f˝^ńýox?‚­=Đ5o˛×ƒě§ŤVŞS6 ˆĂUr×s;ŞRM¤,%‰8óDžÚ˜T"ЉŠ3ĘĚ1Sďą]Yä˝gÂűšzIč(ôŃ}Ř+šě;" (ĆĚ÷‰‡$ű:ĘĹmŻrĺý§ZUÔ[FiĹj?4żôý‹)˝xT~!rř@äëÚ¨l˝)-3 ŁY=9÷>^‡eŞAUź“vÁŻ–f⌠[8IçvýăůÍŘŢ-ď}BŐľ7+ŽŮ6>RŠEýBHt‚G…ĉfOQ‰*ä_łNDŰé# áë*œJP^ôEۉF(›ćM/ŹKDż¤_?R]TÎřLć­ÍąŔŤąŚ×2ĽńŁĘ?ţâóW÷D–ço?ëÁă\ĆžěT#qľĹźVDČKÉa„Żź˙Ö;¤G՚Ŕ~ž„Ś^ řÓyÚ*ŃçX‘E‰F †Ř —*xÄśŁƒĐ$3.cŞńuťéąŻŁQ ŔŞÜO¤cď›_ôăxk€V‚:–źçëiO/őăZő8ý֙ťůîúc ţ –)Ź ŕĎcŮ ™îtjëŠć€¤ÉCš‘ńƒT`Ýsçë1 ×ÜŐÁ •ęŇő%™™9ŢĄř̸8ąsl­zą4˙ú۸˛/'°đĆ4ďÜ]ŞňxĚhčÓë“ńąĺÖUOŽăĄŤSŽń˜ŸĎ˛ŸëXęŢS+šg łűßĐjÚŻşIbńĆ7wˇËě Ľš'řľ3¤$š/xúŹîœ<ąÄŮ´™8ÇFǂPЍŸnÚ˛ĚX‚ńĽ‰ŕb÷ĎĎÇÇçĽÓDŹĂV†Ô?ăť•Ÿ—’NżlbOâé÷Č2˙őü‘ĺžš——çÇÇß?ě`×_˙]{ŐdßŕyŔҸęRGv˙[í!šhžRQ"I!a #ဌžw‰ ř˜Ű\Z”„6ž‹î3\¨ÉS -[Ź3JD EŚ=˛öŠîů‹Źœöy˙ë÷ăďßżŽ~úŕłXČŇTę5ŞDëí‘÷{ŰQ@q+ś¸8xš”˙Ĺ ^E\ĄĐ1i`/$GľL5z=üÉÓËZFŠÁÂÚÝw<-×&€\˘TkŠNÖç‘TĽzż[÷Éb đť@ü'ÎxPWÉÁB˙dÝušĚˇI~ľÓűßđ&O{52Ł)vŃ#*žą|śŰĽˆ2n$C‚Y@č°[ȁHő+@ωř^€3jJăc%Üĺ§fFd5KŔ|żđ7óôĹdĺ8ňż˙/˜‘vIn|ç%˙%ëŔďkç 9J•‰~™ńŕ˛t°äÄd) Š'W‚{’%ÂşS´ĺ})ƒĎĽÁ TĆą3ÖQH0֝-şzúş#•\úz|F×čĎ`GúĎŁ—„@¨u÷żýăž\Ź(+zżăşˆV"­'Ťn*‘ŘjŃO1˘“썠8b)ô…"€Oˆgôçi.šgěľýÄoZ{ş#„Ţ\†Ú0ŸNuĆy|z2SÜ="Y˘Ĺ™ńýoYę1fL7-¤úűáŠŃÜH…^d­‚ČPž‚5Đ1Ä6â„1}7I•ŮÂÂpÊŹáĽĺ#“I_~yźűýXc>EoÂ˙Ֆ~ňÇĂo˙ŽhžŃJđűOÝf˸A(*IĘFŕó´ĚÍ9 TÔŕ^’R˜ >Tˇ°†Ů-ŚęĎ˝ňAî zǜ3Nş¨[Ż€(*’yţłŮáۊű‡Ç'ómĆjçÂs ů—¨ƒĐVŁEŻ„eőOôţÓ,ĐuĄŽĘ<ŕ„^!Œš‘‘ŤLąí‡yŠţ°ÖRŞC‚•xČ*ú™ČZĺŒĎ żŒĹ×^͙}&sřÄ_ó0U†Źšż.0œHIߊůćą9Č °’ ŻžÔ°™sPe1G- výDsŁsޘóC{nd2jéř: >*SŁĽrrޟ˛čՓpQč c`RĆ]ââŢčo@ŮýoÄö*:C9S­“Ąž.Ř1U3*I¸\T¸¤O MŚŽŘ{n)˛"Ä8‹ęNÇí3P 쯖{¨(đdćŁ/K‚ą:v˛ŁJ1ÁŐęŹđü7‹yë0eQŞtŽ×t}“)ŞźqŠýOĄiď DN@uÖ•i&PcG‘{§ŠÉěŠ2ˇŔďp™\áÍĂ9švĚň ţ6ÜľéDˆ#X¸˝˙ôifȓ¤´R˘/$YŃ4ƒ÷6 (ŔĂjNQŇż!X(G3Nô!lí%x ĄŞpF)0€+č’v•pěReLJ}M đęcŚ5oânY…ăX‹ViÄÁ~ţůoŘ Šw ’,†đŠS&ޞ€7_)…ąČôd-o¤ŢćĆł÷ÉĘDՊuâĺǪ̇̄E&ЁÍeËrËW‰!Ľ>ýKgű9ąśÉGu0Ą Đýoó!iEgÜXŻąÝ<ł/ýX‘™ŔŽÝ˛P…5 7C z'Šőş çwŮxší'řÜÔD•â'*ˆű‰7=Ťlyäí}čgƒ’‡ Ќ…kŹŽÚóߨ*Ăçř/#3ÇNéő̂Muv’Á+2łDŤ•Ŕ˜^QĘŒc}GŰv^kj€™q¨/ †pę+ąC Š‚a&§`%Q!)D_ąq?ˇĂc_?ŐĹŢĘbú˛NA!ů”öŠč- fo,2xŚ@nÇ\˙Ć^ŰÄą‹ŤZŹŠ-3A€W>œŕ`ĽLÚFiö'o-)šAXć’!Ć*ëĺ%Ť¤ÍśU;+×ŇěĚÉóß Q—ăVŠ2˝2˝Htžr‚()*UĂž$.Mń'pp%çš#ďÚđŽ’ŇĚjąŇ§Aŕ 5NgƗF_ľI°.łŮwyŞŢ˙–W‚QGeÖ™MŒ°)VwJoK<Á A,ŐRÖ$…‹ŤˆIĽZŻ€"fBŢź—MÎWärwj9%…ĹöďGÚa ňô+^&Ä<Œ5‹Z=”`ÜřŇóßwşJí˜q—‰˜Í˜tÖ ™6Ă*˜Éüőç'.1R١­Čâ ýŇß荤dŤNĆĄ7=Š ĘsJV‡‘QůioF5°žŕůo`2@Ž) őĂĎôEci"@§9Ě1“I0„’k×VW^ĄAh…ˇN`Ë絛6lžƒ%QŹĽ<-¨(*˛Ňé˝["xî­@QŒż‘|˙[r÷ ¨O•ňPāâ™$˛): ĘŢ$@đKEwj‚şr"ŁÓ!0XŽ'păŽÓ˝n Éu댊Ž#LAŠj"ŹŽBeąҌ-tŒŢű=①ƒezűđ’>˙Í?2ž‚DKôÂݓb+Ł'Ľ^1is5tźAĂÔV´îՕÁc°ßÚdŰ÷ ГX#JžÚ€ľ^q6ž6É!ŒŠn°  œUmdZ­3O;¨éXýk….ž˙tr?ôŠ§yÜ÷óLŻRF….T‡E Š´¨-Ô?~•4Â}ĄýŘ,Ě[żp˝ˆOĄÓT,ź“R(ŐŔ}Óţ!‰ui‘w ŢZXFRDž ź5ŃűßâO!5‹Ă•Ż"qhó$’eŕmĂȗÎŃ?˛3Ë%2@ŤdcaC›ŒÉż} wŕTÔÂVÎËÇ.‰éŁKžXx0‹mâÉŽq4ŞüĐ#ŠŸńŘŞłĂÔx0벜 Šś 4&ÂŞÄqN9W˙ľäŕ֟Ä$˘§ôŘššzÝG ĘT\†pGŠ+$ě=EAxkŢf&n‰úŘň Ľfď?%ŠËđŔC$LaŞÖĽŇÇŰÄrŞGNjŕ†]´_—H+—sž^}Ř˕żôŠŚŠ×ŐL ţüű.dĆŮítphő™&Řu Já•ÇŁ€üüˇ@đÚSď™ók$#uWĽ ô"SÁ2‰˜ŕ’×SŻ-şŤq`ܞ}c›wź +$3š4ŽůŕĽ`2łYŽź´ рF{\HhŻy},ŕĎÜŢ˙•XÄ´čˆÖŤ%¤7ô‹CŻDš\”}_–„ Fe.MW…g$˜Łsäܙ„+`śgŸ/"—ć­•E ˘ԛ׺œ"3ŐŃB$î 'ŒÉŻĘEr˙ňőO4zç™ÓłĄNí_Jű‘ů˘Ţƒž˝/اë_’Áąö†]6ąpzŒĆř8#ĐeŻĄŒŚĺ@ZŚÂ#ţiĘ~gŚpJ+Ö˛FŸĐöÁ˛š>éýoÁÍhž]p,wŒ$IZn“ Ąœ— ˆű‹$GzZÚhpČy‰˜1Ď'1.Ě;†n‡ł3˙H¨]_–T­Ö|ēÜČ­ą7î1Á"ŻtšZş÷żĹfţĐiCšÂ"$Xˆ×l¸Tš!9dbúgIqKƒxÂt"Wݾ均’ĺôČNɟÄ} âJ2•KýeiJ0`]Y(I‰‰Fěž˙ŘK‰Ç*€ü2ˇ{Ađˆ(ÎąŇ@˘6ÇČ yx˘ŒUĺ3Ľ+hŠdq(5¨+ÂČ/@n‡K…őß;}-RŤ”"¨3ąÄˆ 3„Dށ¸ŘL{]°– <˙íŸ';>Śn¸žŘyŃĽăxp##aĚďôŸ'†|^Şˇ$™¸*Gx—Uľ dá điŞ_5U§đ9ÂT‚ŐN˝RŇá&üŻ&„“’đ‚–i-ů$÷żŮČ´fi=˘›+˘Űëi7m)jÎ,fĘŽőŸ‡p¤+˜83¨„đÓcëěŰEäŒi<CW’ËÝw‹EŸđ°(óWČ1†ű´%^aUŹŮöáď?ĹŠĹ âRâ1á5™ĐBĄilƒŘńk§ĆaŁ ď ýúşěWąd!m&ŁĆľj4xÚ‰ôœ‘,Qěuĺ`؟äU"¨k\} 3­cFÔx6™Lá–ß˙•p ¸^QŠR'JÍź}Y­EْgAhʞĆ`­Ě ôćYĄ_š‘KżHéě÷Źžë(UřĽ˘5–~J ŽT¨+ ƌĎC I¤Â sˆYD,+ĽcňŸOŃ˙bő쵟›ŻG÷żĄkDóŹâʒ…wlˆĽř.+™Mů×ô‰™ß|‘X˝nŢE˘ňúűHć”TľĘ@ß$3Ž3”&ŚĚŠÄ˝ŔO…źNó0ęB’€WY }˙ŠŤzaŽĂ_TgŐÜŘôܓ›T-řVźŸ1U=Ěĺ$ćĺEŞ8ŹbsćKČzyÉżÚ@ÜÄX |Ă-S+ŁçHČxÉŐcQł›Ń†5Y`>Ťź˙1ç)×čò9×ć2…O‹o3™.4Źŕ•ľëçeóŞöA‚b­“ůčv¸ę …hŽŹ´tŹD閵 H:š)“d橗ď ˝ŒĘ4QSőÎƃŒ#y>Ł`đ?řkWâiíHŸú"ýšnÎ>çVVW1˙kHp–?ÉtšŠŐÍ(ŃgÜI~ľFXF†ź2YŃń‡Ţ˙&ĐX°u§e҉Ń(%| ˙x=L”ŃD}šił†z†6Ž>VexL†Ź§îz÷KfŃ@ޤ 2M{N ÔHÔ.Uş:Ę }‰č3ňD[Ap›.{˙)M‹‚˝o´–Ő´,•ęÎÓ"‡†Ć!Ÿ"†ŃÚĚź×^#×pÇž0´Sa¸^Ţ1ť7Ő†YśPA˛EcŽč#W&wÚeLo4xNŮBZރűßX4ô1–g|ɇůˆ|‚RgüCY›¨¸•Sř ůşGAĆöÇÖ*ä˘ĐAösţĽż1œ8œŐ ‘:{¨3óÁPhĎŃ#ŽŠŸÜ˙ŚLšf|Č``ڊ+ÍɊ…JéL•ŠâÓOY‰1B›Wäî’ y%ę5´iç ł#‹fYč8gĚmÄÎeĹUç§ôö\2(Bůj9Sh6T+y˙ŠęŠ+Âi´sŢ26™Ł2°ƒœˆýČ/Ÿ‰÷HJ5?ĽMוm•…’}+ĂK=UŸĽÇű[ĘčKŁPçy˝Ââƒô4„Óœ -ţP ćÖŁ.…çIEđüˇˇ÷ŸŇďS9ćN—ČŰp°OUOrę¨GV%ŽÓâ˛ÓđS+ť5œ˜Şá,•ďj%p+h×74mŒĂ`„^śgäÜ)ŤäeTu5˝;yBňĚv˙`ŽP{˙i(­”š ĎFQąsꈗŮR­â]iM ă`&ƒƒpŢLĂ27Ŕ 6L™B>TOţĽ? ԌXX&Ք!…~\vîWvVŞœž˙“ôX0†žĆČDĽ™*đZ™ bß`BÂ?‡˜Í:ço(؝…ŮÇŽĘ:Ű"á(ł2•Uă\Ľ20˘_‰—śľŚPLŚĄĎÖžDę}Ů+ípŹV—Kň’ Ăă§fźĘżŁg ëȤV\ ’] ÖpŃ|r‹.† &â=D_úŤgĎT2h 7+’ oń‹č§fs‡™{4žj‘ľţţ7Ì˜é—ľ–xŕ8 :‚ĎzôN§˘ç ŔŕIsŕř%ÝŻÉ1\Ů>&l ™„–/˝˙â/ý% ł]ÂČŞjdPZŽÓed)öč M €œ-¸˜ƒ‚˘Î Î2ăě´pٸfďL‹çůŔ %€•Q/§°ĐĎűçčœŽŻŽ,Żž“XĚńDW\|Ňß㑠â%„U(&“ÚJţšVeߪů ƒyƒ  ĄŤ2ďŒ@RZ̔Î`égŠÄM ó–Uwŕ&I˛ŮýoČ˝m9ÉŒ$m%Š˝bSgŠƙľ,Ģţm…ä¸D ‘ˇTÜŚnćқ°ŻžĚ;’އ4”_D1‹>›SĹ Œ˘7zGŤź˙qé´âůoăěc}—÷ö|ay§ĹerÖ* Ó |ž)íčŁRęϕzđ8]_×Ď ¤“A˝Ü…˛0ůŐ`sôj_˘‹^ /AÜŠ •Ś‘Ň*船ÚLť˙ÍΝÖŐQżRs<ÓëęJO t$Š#ĎáŸŰŕűób’ŰG4˛RŚ€ÜfzRŚj%]¸|ÂđP˘!Ŕeą‰JŠ-žédĺ˝gĺý§Ŕ<&f“ŁĹövCŁe×üÂX Š^˝f-ƒ€ÓK];­á?œ@+4¨Ż—h|hĂ?H8&›Œ3ęIŹÓ¨f˛*X‡Uu5 ý´fP+Ąú<“űß"#ŽJ[ Ď Ô3ňś‚ţŚ#Ro_”ݰÄW\úŽdlĄéžĐYyxÝs^’*î _ú+ ƒňčk× qÓ ţz– OHOu$í†X{wDŔËĽĚűO㌾‹ÍNĄžŞÄ’WtJ…Ă9WţŃz źO;OŹßCŻ$öšĺËz4ČžĹô‚¤•3šűG„Ě”¨’łXPqŒË\V˜ÔCMă‘áó߈œÜ‘$š ŕ\śůaŁ…?ŕv]{ʤřç/ŸEł"gş˙pn°°^*ه)•QX¤‹XHŔüŤPzł:DĆÄńTąe|ËF’ÉâŚ/ZĆ H•d`‡ôůo\9ŽśŕnŔF™Łxą˘ŹB•­‘U†,YĹY?ˆ˙<8 Şهほ1ÖjĘűŹ3şŕH:Í-ÂFÔöK†žT:%ú˝ýäV3&”şřeą:U˛\fe ¨4’HÇEđ|UůǔRűrXŽ3=ŻÝüń4/|Ďšž),"ě„~ŻË¨”ÇŹäacÝJźTď#%“°Ëu/QŹ'ú€Ă‚ň•dƒt†´äWŒ˛ľ˛ ڌ5dÜzř?´e÷ż˝pŻclČ÷üÁĹË4"Q˙и‘Á-k?΅eňţăjs]ĹThu ؊]TčbP|…mř4U"šEÁú 2š9ç!G’śLśEK­”‹5ŤÚăçżĹŮهŠâű˙8§ś2ú`‰ÉבÎÖ`\H؏­XĹ˙ÄKŇ_^Ž"9GaářDN V~ ş ú ™{!g„ ÖٸLp }]ö´‡‰˙Ŕ™čŇUņŒ!Ęś€G ő&>2˛éŸidœz´Oě÷‰ ˙P/¨@‰‰‡ň'ѝÄeŽĺÇĺNÎÉä5‚´4´%wŕx‡c!ŘĘB§ÔfŤ…á“mMhSŚÉő‰Wő8řrń§É+Ę]Ў!śŤS!ć/5ÄČ8@=•Ń<Ńae¤D/唴r_°öĆ*^ľWÇ=Ş…R$Á‹Ěżôϔ¤/%Ë,ἾłâuiœĆŔ#ż˙ kQě¤<ŮWۈvFşTNĘDÎ'üw‰ĹÂ"N,ŮÓůŸ\ƒ¨&ú¤ĂG#ű1[<F§Šâć1ĺƒÖhě 8/ŰĽ˘Ufđ%q)ĹAĽŸP˜H‡×ŹHůF‹z]:ĺ˛&HŽ ?{4}<ţHĄTúĄZŮŰ˝m[-dHYťŤ/ÎGŠ–”Šˆň"!r!oŁ ďgĘOŁş5˘m¤î KTVŃÇ8{ső&š?L,ZKС†î”ĄĄßJ†`‘:ąélŕ•šI­¨TčeI]Â5ňYˇ‰Z3A ›lՏףŰᴂYJWŠ ĽŹôŠUĽjޤ0L^ľF÷ż…Ě@zČŢăZÖ Žnm9ÉŹoŒ& ­?¤ -Ž^Ŕ—wČbB:!-:ąˆWšG]V6.9đ¨\Ąß3 œ%5ćTYV_YLJ€Íu řzŃ%Ďcl:ó‹lՕćňD‘Ŕššń€čäş­ZOśVQpŠŤ†)2U֖úcfSÖ˘óŕJŚFžśŇ™áWâÖADz„—U ŽÄAŢUÖž5)Ő?˙ zóň˙şĐY`í?¨_Ӊ…"ЉY‡uN}y‚p‚Ŕöř7˜>d 2iN茑¨&óXĐě7ĽŃiŞčÉ9MčńŠîz҅/`.#ăvHVj‘ß˙–đ:U¤đB íʎ*Œ,0㓃”(áćľLĽzYĂżeŽ›źäQńťŢžj gpě$Óy”3>GtcŢg˝ 'uB¤,âŐoÔ+â?¤Ďóe *NĆKI8ÂÖş:¸ůáU)Ź^Ei]&!‘łř<…ť<̉r:Őś\QęNŮijö+p8 ‰X(¤ąˇQey3yl™Â?~ţ›‚\ ÂZ@VŹÄVűvš—ËÁű.}bśÓău‘O?oLu•ť1u/âŁÜ%œ€iAř%/ĎţĎŒËä$`iؕƒ%C‘íl7J´Đř|úe{ţ[˘ëÔđI2ŠŤ=ĹIşő.Ę_ŽÎ2Um_YÚ":0×s„NJ ě˙Ţ™@VńtĄ<+żg$œęX˙,źÂ˘fҍ5ŐL‰. BĚXüţSĎ –TaÎ§Ž¨ŃQ<]Ö]&śQ.<":bÔ§3Äąą:(cp™˜d(%?fţ1˘{ňö(a˙XŇaEَĂyčWˆ”÷‰ůeŢVĄ’‘@u Őڌ„IÝ2_c÷ż Ÿ ×p¸ĘĚÄ=”ŻzPśĹÓ !f9“Ň4˘oôŻPĎCůý”ýŕjў ^őa (­}ě†üí& RR.Ś3l˘RÁ¸íť4÷żĺĽ ŸĆäKÄbXĽ­ČoŠ3PÓÁuÁDý 7]”Ôě “‚“–ě‰č§Av°Vž¸L˝Zń#e`áYSŒĘęéDc‡°¨€á1äůo*-ÄżßÓ~V/ ô§4‡é˛ĆńÎNuôFV}BžöI™?jţƒ@nů—p+$¸,cť@HW9^•‰<'íőtô÷sbčĺÄŠlŹSX˙B˘ĺ翲zÂȍĺN˘˛LŐ)€''c"Ő§Źź_ÓtЙ!öť•ôĄşˆž‹zȔŢĘJiHź$$Ŕ2Վ e_eŽ˜Möqc˘×‘ѨëM˘!ŒÓřrńýţ7oĎyŢGUK.÷ W%âˑ4š¸s{ľĆ'’Ăëř#ř×עźUxxąUgN+Iô›ŐÓä 2c\&ŇzFJÜ0&K˘˜ œ Ypt˙ŰoÖ̧j¸JPfÂęاͽe2v݉ Ęž  ÂŽ@˘gńďčWřÇ$%Ąc݈Š˝t 3䊟ÎqđKˆŁQîqîBHCLôXCÓëÖ덏“çŘýoĄJŮŃĎ ăkhńęť ä6Zđ¨8×­RÎÔ+%Ń  ŽJÝ.\ĄŇ¨ź2‚……$$LdńtUC“@e=ŚčšŠ3ÓľňIf‹B1–4˜ACl*DŇ$nŁaśgáý§N”׹XFś¨â$”m?œ÷UÇ.ËWz^J @ěĺăHß3ˆ„ńäŒQň:bř çĺ*ËôZ–•Šź†ňöHůHJśŠ[úá|3KtÉ]t˙Űc0Â+r§DUQA8k.°ŕ[ Ʋ5`l‰ă”%. şČŮI•Ż)6Ŕb¸żô§:Ź/fH&ěźÚy隒‰ŸÂűßJƗÉ'ľ~ă Â(xUaXiĽŔb’ŕ÷ĽČĆéŃgŔ˘>ÎÖßúdă$Ŕ8byĘÓń e…şŒË>Ÿ5č 4 ӕ„WĂž˜ëă|ý1„ŽN,3"]¤oĂqWq6 VĘÉ§Ě Ĺ_ž˙fľĘHí͙’0\éź “Y/ HĆž Ceţ–#Ŕż„#ź&ż¸˛Ş”?Pß8\E6†š:SŤěŐŘ |nj~­ˆťŐ(h‰Đ˛Ş—|Ÿ (ľđĺ˘yţ›M´b§ &ź—‚ĺ;횪L!ż%np $’ÓӔ3Ná =§ď74|­ŇÇŮú[i݈(̌C €@ßi U %ĘA-ăZÉŽŐÇúłš(t7˛%_m(­óojGՃôDŽř˙Ç!ÄPőYdš°îc•隝 ż,€˛~óŰHfĕ!đyxđ!DĐ úÝĚhš´ĺÇď?%tjĎŹ“Š&¸ŤSŇB6"VŮ­=cŰ•ŞâĆű‰í$ýIŢ ćʲ=Ł6ö’ÂqGIű)=˘v;ŒôSÍżăű߸wĹśßďđÎo˘ŕדę€2 ‹:TwŃě¸\vŮ*Œ™Oá;­ÍJ‰5ˆX•¸Ó:ýĄu.T™c+pFŔ( şώ℥˛ˆÖg•|ńűO- ƒÜý~‚— LŕÁţZ NW4†#G]G¸ƒ ˙šë ÎÂX˘‚í…ŹŻ“ĘbaŠ´cܝ¤?Ľ8?–X›ÝgGŚ2ţŃS#š>ŰńD!¨Uăcäř),Q‡uĐńžM‡lT+AhťqôE\|㺙؆ţ˝%ă­¸’Z‚z€ńľ’u C*+s2ŽNÓ_Â!ň' ä'MTŐŕŒuŐ.îb OHżĽŠňüˇ@¸ŔzŚÚ%[7 ď3 ‘ý$Kƾē„< âćŁNRqěď˘$×+köqŰšúă Äuř@n‡K§ó Đ6 ř2+ş ú'ĎËç{ż¤ł7-¸%¸5¤„i’0âj–, Pr‰_ h & Ô)ővQ[ß"ŕőCaĺ\ýĽëŽĺŚÇ§Š.^ě'Š@Ič€I[…ˆJřUI|˙ Ü*‡S{˝“–YQ'–Źâ*­Sř%ćNx ˜™:hƗAِżŘHp ŞÓŁŞ%%–ă#őg)XÖĚřҍ⾍ˇąOőŤM,?ż4qmĂ$K?řţÓâ$‘‚Á¤DŢ Ô bÝÁňăĺ˛rz)ĎĚÎŚŽaîqáa˘} J%ÄĎŐ_Ź:J:͌Ś/Ź@WĚK$¸ˆ’ž 7éýoś´Dí“2uΊ @Đ%d…ÓNߊLH˜/Ô¨bÉr’źp T(°)TŔH¤ŇxrdOÖ^wLˆŔohřĽ Ş4Iˆ…F4%!ŞÜŃ'Ă5´ž$žÇŃłŇOk.PÉą¨z›Œ]hd V Ž\%yxÎsœq:Ă~ěGžňť š„ţ&´Œ<Ćř`NSKŐŐ q Ć7ľ¨°śâűď^K×HÔ AÄ˝­˘’ĚCďď™f0“đPY[>;AÍ#đuń|Roń‰víĹ˙ž1 h K˘$‰šâşŸŚż´.äe*Żą„-Ć%*ÍŞł<'_.Ä˔M*…K29; JŽđÉÁ.-¨Ľ!I\oڇŽK$ž8ÍÖÔĘiĘdlp$}ćúĽ?ßf ǰď;dˇĂIQs˄>—›"c˘Ôké C×ĘűOGžŞî¤D€ž%|`B—–N4‚Żzu Tąţ€Ó/Bƒ˘Â§‰x‰ôt\qӝŕż+×ďlý%Ë~ź$xź¤?.†UžřHž¸+ ^Ö2‚çż!}EĹ [fl>Ľü˘ČNDô)7Ľ'1Ľ°83mÄi$" AÓ)ă3.ŁŘcMT؀D$IÄÎŞ4–eFîćT¨Äń‘."@z˙# ž÷4é­R­ é ¨ 4 ÝŚ<¸ťeQ!s”€Ţ„Ô¸F.áD%fz…­suńjý˛Ę/>Mäx" [LĆŽűMšŕ lšSUÜdƒjĂçże’x5ů÷íqČĺÇS¤ĺ2ˆěĺŹ ˆô*ÍoČŮ Ń{ ĂŹRPNވaŽĘűގh6Éh Č“mĘŸ ٜ;ž1b‘‚Ş YˆčKŸôý§™dĄ0ÇÔ Ä˕…G{5ŁM¤rÚÁ(4NÎ~xş@ĚPi€GQ= ¸Ă°'Żč‚Ш3Ő—‰–ĆfHí4•¤:Čvnlo&Tł|s_q¤U~˙S~Ĺăkwi&d' ZĂNW¨QđőšMĚËuôž0=Ô[(WŒą5¨dŢ`ýü'J–ť%CUƒđ™Ńp9Z‚ĎŁĘŠÔo(y(™űßÜ(~;^ú~ČzFËo‹“ą_œö؊“ĄŔ`SÖCžđ+ÎşŒÝ$nϢ’ż\Y?jœ@FŽż Xšŕ†ćł™‘‡~Čmü{8P2yćźYË˙)0›)ŐJĄqńíBa辏‹FŁ™wˆËT˜ŻĹ fć8…=Đ:pŮŇ÷ŸzyHb,8?Ă҈Ą„3ą˙ń‹čfKul'eoM>5Żx~ÉB@:d•¨‘śÄъË>ř)řeyŔŕĚ|ă•RџU&Tn¤:ćŒ#qB+4NŤ3^XkĚŇzţŰo3ÉHtńy ˛ŽâbKŘ|1(É.VU÷*Ő:((‘`âgH¤,yÚJ*á)pDÚQEkČwÎČzÇŰ2Î+Ş_ą¸a ŕÁýoI™6ΠmŔżr Hká\“ĺJr˛ÖT¸˜‚Ł?fP_ş°2óœPé¸k5’ŐúyŽăUIÜ%П%ž†DS"Iń'TސŤ2ţĽŇŠßç5ę ÍXź˙ÍËcgóFŇlÉ/đ{]s%mŻëŮ\•t zŕžó ňLĺB&ŘO],:AëG–EĚęEšHß:ę Ě'83e É GŽiŒĺL_Ą€K3úrńPăď#ä`ý/,–Šé)ÇEŚmŔüUMDBżĐ‰ž´elðEYJű š˝…âőł”2úXdślŢÁ9#uű˛—Ă?˝ŕ 2œź˙TŠÔ‡S5ŚČzkŋž2”4&öś ç/đňtYI°ÁˇŽDŸ8=^çcŠÔ[0šÚązýlĺ Ś,ŐJŚż$7ŚČU_Ď]đřú÷Ď´8'X Š,ŒŠ6š˙ÍyẀ‚×`Ôś“Aŕŕ ­ňú˛;Ŕ‚ç%u"*ÍN!v•é˜*dbĽĐÎ@OBë#ł°_ĆWŠžmĘŸ§ŕK….üű=ýľYc°%˝˙Íé(0˜Ă˙2~Ćƒ Ş5×0a†źísO÷Ä÷ ôűůqŕRE´°Ź1VKoĂ ýÖľŐoz€âŕ|ŹKjë7RóÖY‘&e™ÚžŸeFä9<ŒşUȡˆj ŁßZWź˙ʓiŃ|Ž-›Ş#ÔƙČÓ$I‹L8Á|ŇŔ_!uB˘0\›ÚŢ (ƒőăY°”ˆ ŁřŘ-MAÖƒpNˆei9WhŃŘMCz˙d8—‡_ŽűŤR:"÷Żkźkż?ń‡‡ű°˙ýĎǧÝĘšœ´ŢÚ œÁ&2O \O‡ŹAPÁžě%l ҏU)67>ńE™1ó6—ÉťtyV”4:ňűߌž łŃjŹ+Łi°EIőŮ=ýş I&4§r$QŞŃŇIëÍĽ>™\h­A¨Cţ3LčeFâ#Cdşc/…c Ř9ŰřäŐ0B¨F§Ňŕýo$žž´řfôŔId $v M,—=XZƒËËÓďƒXáJĎVĆp˝C‹œ€cB‚ üĐT5am`VÄ ,7$ fÖü}˜ť”‘Ó–E‘IJ˜OMßŃÁ–`ÖOŔZ˛˘,­H‡X¡?,3ňb—(*ŤBN4FĎŁ2ŹzŹB>$â/­ Ž%ŽËâ/O•čw*­w¸zLaĹ2VBˆöý:Œŕhxśáüě÷ˇŕIšú`b(ĐŤLéQe(ŮônH‘Ćŕ(^;ď sůţ7%+Ö€A“Ľ‚DYË^ż4R<ŁRYo{%żýklĐÖvš/ZőŽYNä! ô˜ ňvM?´Î`fDQ!+ܢ’pž:Ô‹]›Ę5zîńź˙-Šf9Prú¨AĹźŕ>íQzoXáţ7L — 4Ż)~|é?iűż‹œăóńWuýJĽ$Şd•–„P‚Ńr˜<ܑ éMˆžçävëIƒrĆ8z-QŁóÂ&+ëčý§ôäEtsh”ku‚ٍ Ô°#`Ż]ŰyȎÖ[ΰ>6ü”V4ŔtŕFÍť3Ži%0N¸1LPYÝX댞 ŃăYfĂIˆ˛§Ćâ9ŐGpť—{ţÓ˜ şdÚž~ŕ¨Í~~ęWkqsiőzóu Łoü~ĘęŤÜÂG)GŐ`ekóníˇ°RDÉpëŒuP‚˘˜"ę"Řřą–üąop˙Űq‡!qgžĐ|ŮFşTĄĘůţźnËů,~Ż/V+ňpͨ‚Ä“ęČi"ţ)¤#ŠĐ)pmšlO`˛ĆŇďş&Töjœ‘‰˘ŰłüWX*ţ$5PÄłű߲řdľ“ą—D?{kű¤zĘÝ,ţ÷ńÎ\śKŹ7°ÁÍŠŃt˜R72˙˛cůúQ{(›?l#ÉgăŒ!”—¨?@ĚO Ó DĽĎă§ ÍCďÄoÓ%i†ďöM2Ⴍ Äi€&9LŠý.áĚS`Üq ÇŽJNű˙ 3’žëČתQŢ˙üý§¤ü%t‚yĚ ‘—śôύeʼnć”×-ŹÖ§‹źő­‹ˇýňöÁwƒź;zűA“ĄśçŚĎe÷Î(`zŽó%ŽOLcŁS쎹đţˇ8\٤Ç@-ě6öř!`Ôˇ„CwäőĽ`}f›†JrK-Âäü¸´~9q-oŕÎSł F˝3/‡ěĘš YĘ÷4%ş˙-Zädóg¤;ĘB‘łÉ;mÖâ?ô5ˇXÓ]Ľ#?XƒxłČzÓ˝LzťhśÝJ¤üc›¤Ćčf‚ÎH ­‰c…żŁ˜%‰•Ţ˙ćéÓě ůyöęvn?+Zü÷ë šdëXyĽ"˛ć+‚wc͡Fš 4D‘'[Ҳź¤öUő'u]Ŕy}”FvëIu;fÇůJz˙›î\°\83ó}iĐ[švŽJ˝U|ˇűÇNÔ'ßÔ 3ä¤ŘŐ[/RyĄ YćĘ ˆ'›ÇršŞs¤˘œń95śůθM˘*ť˙-Ro{ÂޒôœtüÝA°Wn _Z§ĚĽ¸>mőĎҖ0C†s1–¸—áŰą„$(˙ńŘĘ'”3ŸPzCmMäôŹ›J4+ Ţqt˙ŰӄčÁVŔ¤źŞ~n W÷7ýľ†ĹŔMŚ OQŹ” ƒä]rz’tÉí§2ˇ™śđ’ŮĽ‡uĆȉ Tq~‚O¨C%ť;ťNî/ŹVh˛\Á0ÁŠ{ĺöđ—}5^gzYňqâ>7‡l•V­Ÿ§ˇŇ~"ţYg!Ăg°ÎX˘NR[„ăpş˙íq˛Lh¨Ę布Xv¤rޝĽ/őÄ<źl˙.Š k}Ž{'żÍejľ|ľҕ‘âú•Ň*´Ÿľĺ7ż`sŃ҆œš"~"ë9śĄ!ÔŘüťšůZôüˇH…§CâĺŠďÁ7ĺ<ÇWÝŤŒ'a;ČÂŹœ<™JÓA—ŕ°‘üşZ;“Kź;0a};rĆÉP p¤ áŞHŔ÷ż‰î\˙Ö×ţCÄ3́ľŇۈł|4žűůŞôrŞ>cKŒ!*Î]YcŚÎ%ín*ŕ"pcÇ@ZÉî8#Ţ›EŕŽ)¸OCĘńž¨QĚԛnfŢ+%ś ź=üݖă\ŸŰó­×'Xqßś0¨ÔMšqIncŧňor9}ťŮ )rޏ3Íął°™BŮfT`ź˙M‡2b)ƒ–,ލ˝ďągůh|š ‘éOkąú˘ĆĄŮ‘’ĘŔeżŞŚGń ĘŤ‘LýDü{âuŮßŔ;c iúŽ'Łt›ńEđü7 °Ś ÷ˇř⅏š%gůp\~ŤkVżZËĚEí*ĚŮŔŤ?¨öÂ&•ö‘FąŹň 4”ł™NTŁĎËV'áípnTĽ|uÜLpź šGTűâLÎ_ĘǤl`âĚ蟳ŒűöđżÚ Š€GÉÎľđ‘N€ŚsFć†PŸ]/oř댼ˠ† ĚSgâp˙ŰŕŢ,ŒÖ”#´ EŒۖŁ|îţńŸ&¨˜[ś“€d˛€0ő ÄT#—ŰĆzţ…Ó$ ˙žQż&œłS{ 4Ź3X{‡Á ~E_ ę/— úr9°É9Ć|ëřđhśŽÉ‚Ó•‚]\č6 ´>űPĆpްM‡¨˙0F&Ňď¸Ibaéř9ăd Ő}8złĎëř‡ …¤Ż˜z}˙›!|ÂQB•ˆšţUĽâńŕKëhÚ6ňōî_Ä ěš8’Ťě§Ä?! f诜ń9ŇkĚ# `´Ím‡ĎÇĺŸďŁ[A^ťX,x¸šřßo–ß wîˆWVkX@cŐBür]ˆěƒŞö@÷Œ°ź#ü{ś ŞDS*g§ŠŮď×ÂȊő™ŹľLăNŢÉ †ŔŘH4fčŁ"•ÄĄÇKö âŻŘQŹç‚ž׊1A։ŒF\3 â×ÚOÁ7QGüţ„J´+Ą„*kJďÄ<Ťi$& #0#¨;ĆIŽKŤÓâQiß犃›wŰM]^–ĆX MMˆŻ ě‡÷=Č~ţóM“`Cڔ3ž|/b˛e1’č8Ć6 ŚG´Ů›Ĺá*N™d {›ěQi߯„2^äeÁŚrř{řČĂoÂĹS"+žÎ~@ojááGÜ:#(-\.˘ĺ‡ŽGAg0(ťŽZłň@"¤ƒŠÍĂĽŰřÝđßÎIĆpč .Y˛ź)¨Š`=)Ť ŽąŸŐüXgœI$¤‹8=AmşĆpOJÖ:šÍÍ*ÎşDE9Ä xŹt>Ť.™}ż6ś+AÎîQɧ˛çü“¨ř^L|ŕŒśďÂ4/ÔI™`X>˜¨ź>E=TŮס˘Ő{žüă­đ;ăwC{˛˛2p/cÇE[F˝Ę–;5đöSç_“x4&;cž–NX ˜ęV!ţR˘źŐ2uÓÎ8ŔüT"Ľ(mđâÚřú¤ŢDz)3ť”NëíĽRS$Đ,pFňˆ9ß8››<ˆfb’’"ÝŠ2–T¸óôď<ö}ń?ăĽÂVAŒRÉ"ië4v -ú´žÚĚ>hě {Ů#•ÓĹĎËtœ1VŻćk'-Ź!!Œ°×…ýäL"ˆ¤Žlźô)jňŤŽcns™A˘]ŢŹńb™˘ːÜ„Ňvâ=jÓôœ3šěá<ĂńU΋ž­h4,[ÖńCú0Zs}gÁ6~wüˇŃŇŠO:LßÁSćă~`ŠŮՐ˛+˝b;O6źÂÚX˘xG”3>úsLQ M=ł¤ăD}X–Œä’Ĺt2ě´ó`›ż;žť_=ŽlŻáÁĄşJčĺ`B<ʚH@m§“Dý<(g|Ad`9âŕ™ƒ3dĂ-Ő§Ő÷AŞŚƒ‘ÝoËř7‡˙Żi.ž(śč/I´ž>>Ď)†bB&™°Ä˙@ÁŸSčśÔ3"÷ąÓ¤á$ż¨FĹż_s~.ф\ődZ]š/úŘí0°1ăß.KoҸč2›*){,1z´Ţ6T’˜OCŔřž‹ËœQ3VЃňţdefA<=É4ő˜…)˙ #Öô΁mm\ă˙z.Ŕ†öhTO[2î[ĂoôvǴž~Ў6…úAÎŚ"›Ŕ<üˆ‹2-ŠuF Ow‰&¸np?š„RëóăZ—čA€żęٔqßž×ŕđšăŠŚ™˜—‰ŁAV=,WmooC2 “‚ç&ăbÔŃX˜‹Œ3}p˘eĄĘąâcQKÚU†ńÇěImß%Žoɸo _Zƒ_Ť,â;|4 Ԏ‡ lć4ţmr˜uŒ3:Ɯ_%,܉Š.xWk¸ĄU=rŢŹ^qžŽä݊ú‡Äçá‡KVÇN˙i}˜06śŕ %&Öóp9tF=Υ䕼žxůěQI:MdL 6Ţm螼q!źdwӍ—Ĺ*v ň˜‹Enáa.Rü›2ˇ˛MrÓyg>łÓˆĺ—Ň˜(žžňŔgC6ĐşťSĘŃ7cĚ7Ău3;zş¸ăˇěş/MŽŢQOMiœA8ĹőüóKĂöÎhYŕ^Ŕâ‡wڟą(ŹťnƉ( ÷n?żdCĆ|ó8Y ć>‰3řu‹Ô ƒ`ăŐω˙ž ń!ġfkŒöŒx'K3_ŕ ’4Uö„áádYä:řâv ůöqý ÇťţI­ĆZˇ Xyőă~'S–"!Yöł’Ö'‘ :#ő8KP8ŔۗŠm^ĄŸxg´z„wëéýâEńŕpY†”€öŔP 5Pĺb8‡ť€łcŔƖeŘŁ˝nčŻRŻÝpŻROĂ<Üó&óę˝@V}qSĆ|ëřîíűF­hžl(ŇŞuėHŕO7’őŃČSkvţĄÎeż}˙äĽőʜńeš˜PÎt1i\Yűôň/Ę}c÷c; Bây0ęŐőĚ"únw×űŏúžQ/Ľľ‡Ě¨Ňm qvDŃC您­ăżd¸uƈO_ŹóôŹTbCÁi;/UW+géxŒâ2ä/€ß7â… ĎP„­9 ŐÁ*“­KOKćJyä×xźHlÓŚšę52ˆdţ >§cu][WôÂŔ,Š‘Zň˙ö73毂ǫĆí+ë‹h†1›Ň ýx.+âÖśźL-řó¸IKýŢÄ?!×YťŃŠ\[ár|/ńFŒ÷Ëá’č.–ŕuŐy,÷˘…Rl/źzÍíÇgœ°ś Âr9Ł›nľ=m¸‡ĂĘ"ĘŁíáƒP&z'÷ŰŁ”śbź_Ÿ* l2Üą ^ČA`[ľÍcđÉ{.6Oœ‘ĎROÖÔą¨ŁĆŹ32–Ž3ŹŻěŘÖĆĎ<ČyŇú‡ţ ‘QЕök.–ÝŁŹŸN‚á”üY.xgď!6!ŒďÚ ;ŕÍ3K‚NŰ,‰*šůă՗ŞĺÝ\~oÉxżޟŕ¨ôĎí‹Ú N•4HíĹÚZÁ~ڜ5Łć>çÖ;#•ĺ?rž“'řb<2ŤćĘűůŒ#‘ýšţĽDN?< RÎ^Ň>Œľ=Ęźv ­?E˙Šô@?™Ŕ|:ŢxłcýňxRÖ ‹ŽŔƒšďŠăŘ#$LŒkbţçŻęľÁœŠœńEó%“óä‰!‚Pźˇâ‚ďĂě(zźhŞÁ&tžşł0MŰ1ÜŻˆ?óő@‹ŠVs\y•ŢZb>´ÉIŮxÍăÁL’°Î˜Í$™Î"îĘFu'ZН/^ÝXż:ţăUŻLugGŠCC˜‰ď‘X˘/h°#äwEÂO ŇuĆă;™`â°<Ĺ%‡¸.źR])ôS™œ0şTĺýËţĎÄw÷|Á&`dޤňUĹ) әĽ°…Ű<`ä!}ÄąůhœQđ8çFO0pNęţŔŠbZç¤:@ďÝ:úđć3q˙e6>^‹֐9ŸŔîa°;‹ĆdŮҡűZŕŮĆëŇ1I‘?ĹZ‹’Ýř9p҄ÄńËś’Ťę—Ç˙ţ˜ŰŃzDfŚ;ŰÓťm˛çŞ›ÄT=_cÜHSƒ™XlĽŔœŽşCe*ŕ?Ô:•A~—‘ôĄ źSBúﲪ_oÁXż<ţ´\ öď΂TŘq–č@´Ąóâ°JďYfěńŚNŠźC8ĄXD ă8xŠóŚ…Ł˙0ü§vĆŕüϟíŢǨşOĹîîmŮčvńÄ4çsşwtôŃáŽnsÎH+L眀¸ŘKšAŞ,7ŮŔ¨‹p0püścĆúŐqY>!ł Ü/nh .’oűNöCp§š"ƒ:gôupČ +iŃSž-žÝT}ක†XŞš—Ýî†Öx÷śÂm*]N`—˜ ˜+>ˇ!&J§Š6‹(;–p\ć+sCŻi6‰ĎŽÚG@vĆ|i6ŒGá˙<r ˆŢ ąä‰MˆWt˘Ł7J¨Šƒ™•€žg†żžŕ¨ŻŮŸ-kâŚÄňe1Ȳ1Ĺ';śąC‚Ë´/nÂ8żŽě‡ű'ąöŚBłxyŕwQžŇ œńPPb{‡yĽĹ ’ń*d*ő,; śąńĹŐÖ'(Ÿ@„ö֏Q˘K0”/×eňăČ~2`Y}g×H\댵8Bvΰ(ł…Đ#CGŰÚ`ŔK;âńĽU-OźIPöĺO …ÎěqœŠ'’8t+9JhqěŞPLfĐWŘ=öô¸Ź­"2–-ëÝ%ŤńuřăÔ(’mqő}Ô$őŠ“o !†>‰ƒ°Řá…‰°ę֍Nꄑ~Xöš ăQđĆ? 7ß6.6‘%Dz_–ŸĄË-IŸXDö$řłŁĎâť}8Ł ż# *¨ßšŤżoôtĽ/’đö¨}ńúĆůÝpš[ź‘f.™b{A[.kĹnqé')=`¤‘yg‡(GΊGćC’ŃĆĄP¤K|ÓĎft|€~„˙Vpc6&;Z$Mväč"8 &á‡4+2ÎFۅU-ŚœŃ95ôr ˝ fǰHŠÂŘJFíŘďáÌŤńSœąeUpU €@ĐćKJâkr”ˆŐ ŚgCôź3vRŔdľó˘d4!8ÇZ2znůłű0ăj|%ÚôŠůJĄR MIhżŮ‚d ˝#UnŽ>gä˝ :cƋ ´+ *ÜÔNU=ՇÍÄjÂ>IÝî6ţԆÁ9‚č?z˝m&\Ƃ=`œ3Ćy_ •/a<Ÿh:ę ”Šâ{Z%`Nۃ쿣R't[Ó8$EŔŞš{;†říńů‡ĆĐ(‡ĎÂ/{Cä’\@=ÝŃf1ť‡ô9O3gäç,`:v¤ĂKç@"Ű(ąÂG1ŘMńVŒńťă;ľBű¨56â.×z{ÝHR|-Ą/†MM**ScąĚűň‚Rœ˙LSúžźuŞÔŠŐ斌ńťă;űDw@¨ě×ăx{rç} ä‰=_/> p"7Ü0ZŞR˝Ő}đMSφçŠ[ĚHÓú+Ëá∂-‚-ęńŠŽ>˝9 Üřuđc#ŮUä‡CY…ó"kđ›ÜžÁř˜_}ř+ɘ˝zŕWŹĹމxcŰ͈Œ„Z¨srlڎ!6>˝.WĂU_â¨Q6B‰L2AT¨l“ĺ|Fď胝Ăś÷Č™3Üď)⚏ adăqĘ\ܔ16>BëˆMŘRöŢCąý”]†BźyŠ›~V˝ĺÜÂÁƒŻ6*ťj•އ8ȱڄ~ únÂř7¸ł˜ń”Ŕ.čIhů€a˘#<}ŃŁÉĐKŁÄJ‰č}p÷ţgatňĂĽhđäIÄÍ÷ޤŽ%ĄmĆ×řÎ9#5edĺĘ$’™ŕ9L‚' U+c…´ńŤď>h2#vŠČĄÂY Ǚg2‡]C†×8Á킅!6ąe|đ‹Rad{Äł$1QÓŽďu—Šń3śÇ´ç­Ö•ą}űaSĆ×řŻvĽŞ6˝Ôtćaů'€˜žˇ0îúzŰcöş§ŠŞkŹ0OMČőfó?˘¨ď¨xsa3Ć׸ƆĆk­‚úhŽô‰\09H ěóL‡Âć˝n@fÄě:™’ŠÝŽ K[ ř÷ąĆÖĚŻ'ŐooŤć=nby툡u{­ej"gzFěŹŃFź4ç<ýM˜‡m_ăÖ—ÔČÖžW‚ľ— 1ˇ—UFÇňřŞH–’÷JqÎËw#=Ԋ1Ą‡ëk5ýĄßQ˜-_ăνqK›‹3ů?6Żđ:,ýiÝ|z ĺ¨ř=#ČĂ¤ŚŻ×ĐÉÔšôçloŢ~uĂkÜáó´ˆ(öZŇćv“Ě~á`bŒâČ{gB‰Z8I Ç^%`gË˝ŤÎ]e‰n}X™ě,ŘĆĆŻŽż?ÄGčI,’÷*î†D’îŃźçŔ^%ě4u. ‚ÂŇ6Ó¤‰Óék‘v÷3žĆ!Ž9°~2câóĹŘčČš§~Ś ‹ŃŢnΕ˘qĚţsŻ‘ŮŸCąŐ'ŔRiÇLĘN9Ÿţ|ůM”§m[ă1ŽÖŐnŻ€˝¤Ç0žƒÍ¨HSuRÄEr:{D§ŠöéʎˇEž4*i=ohó~}ůg÷1†ÓřŕËjŇCŠü‚Ľ vxŢěÁóŃL°S֙ĎĘX}}ŻH܈'ł…źRn×Ó?ŒĐo€ťśą5>eÎ8.ˇxS芴5›'j˙ůíšC[ŕě4ĆěRűžžA™Jt)‰ÍOT†ÁBI3نËYÚżŰí.h,,œgQ¸(K0;˛˜$–AŔŹdŁÜXçÜ{…ŔŻ6 ‘€›L’<ˇZ7$ű…hČtüľÜfŒ­ń•™`ÏSi5f”šŽ,ĚdbŻ Ă ;>śíőa2#MÉ)¸ÉóŇB`2=­˜kVăuü?¸Ăk–¨É^‘u$4í $]1Ż›ÍΡşLG…œĘŚo(cŹáD3Đżť¤ą4ţąřcŁ1“§ŔşűĚě؊#—˝VŰŚHÂëŔ´…¤!RŚZ —`˘ş@ “ ËäăĎjúűŽzÇx°ńmâöAqÁć >ŃŰ$9Ɯ·šáŠŇ˜é óŇ2ĎfFĘ~¸“śCď…,‡ôĽJ;†Öřš/ţů†pÎÂL3vH2xŮ.đç2ęؼ׆rF‰ćažgΛ ›Hxú•”ł ýI­śAß.>ŹŽÉŤJщŤŠřŒ3ŻÄŘź¤° 3¨ąWĆěŒĎ ş[Y”ÓâąÄ×mLߋ†㖌­ń]Á‘ŃťZŐEs‚ąSuě ç${eŘ2ľŔ4ayh>}l҇l‚giŽo\ŻĂĂÓâaQđ"&IDATyRٚt”4rY†ľ6oe î^Ł3"§Qœ$ÎËơŞáš˝á0ŹĆOħŔo†= ą5l/ět#ĘegCrCĽc÷şđ8‹Ă§Ľb ~œä z-KĐočş%ăj|Ž—žjlU{AŚ)'Żžhó­˝.ÂďÍ|<‡bÄľąö;Ţp [2ŽĆ×áÖÚHyşŢ^Vîč‘ů))ŕ“Ě‹ÍVÝëÂ}Ď*@Â0¸_[’!´EfgćrmʸŻăĎÔN†ok Ą˝TmşH>oP.‹mpőëÂË^(3‚ â*ք%Uę€+ž¤ńMVăëđťc#Z_[•íĽd0ŽP íϟ|˜Í{UhgĚË_/9á,í\•°“xŐWKŒmWăëđá.ţýąœb/ěvˇŔ*ĹNU{ZŤiĺˇŮÉBȃĘTťÉDĺĽ$N+NŃÍăľ5ď{´‹1`Ű0ŽĆ×᲌•íEߍ­|'5"kÉ)Ye´!Ÿ˛Śmž°×Dx€ŁĄ Śqs!ç.:?fôőYÔőŤń•řýĄ› ~—đˆĎ¤Č|ĽNŠ}œyZż@śl`Ż PŚ*vXéKvă}5IÓę˛9°ÉdüٖĄ5^řą„Řň×đŐ€ˇróDPń×˝%WýCŔeżŃœ1ß02)'ě“I1 A™{źIđşăj|>6n §ŮKşW¤&đ™¨îabyŻ_ŚČ¨)EE|\@ŘS^iZ_hÁ‹{~nƸ_‡3ŁŽdB{ýa°”ŮăĂ,ĽČ›Fă„Ú&s^ĐžWÄěŒĎž[ńQuřŤ*H ˝Ńŕi3ĆŐřJÜŹmôŐľT6ŇŚcťńâ†CÓ­úŢ?ęw9îő°âŤ ˛m‡+tCIéF´súżvŽÂ5~x\JÚŐ֙ –ą&ŤÎMěÍ|âž>\ŕ6, ŁĽľ×ĂčŒă”ú6Łů â–HŞď—™É)NkPŹ×atżěććqgîĐAWۋŒ”%őáŇ,Ŕ?Ŕl4w“潂Ż6tƢŃ ˜ rHzś„ó)ú; Gáż üÉŮAiK—5Lá¨J÷´O¸§ĺÝÁÁě^ö4•Ôź #RF`ž9ś$DĹ=űý0ŞĆNĐîŮ˜Óo/¨›@×M‘˛e§mN’ä)a—G#v™‘űÚŞś,ŞŔ„Š[x}­Ű^w—4ŒĆ?o‰ Wv¨ /k'ę/Ug,8SÚ6ĐEç;{-Ŕ2Ut Ü‰–A‰âF‰yŃý‚iږą5ăŻsŤ7ivL^ Y3Zu¸˜Zjě“,ú{-ä§Š‘¨LNĐđX=ňawIăhü“ńűc럸ŃÉBÁŒF70ç4>ńJŃX§Äłâ^ŘgU˝@f§ř!X{|Ż{šŠN*"œ‹’uß"Ň{ĄŘt›0ŚĆĎĂŐÌM…‡ü+6‰8“ Q˛ţ*Ěk™Ôt6öžW.Ské8$žVŠOIŠśĎXŹűŒź cjü<ü׹‘XŞĹ—Á*Ěĺ(%óç7•,€S­łýŇörZ Ů9ŁřI2(˙°‰lšGľ§ż cjü<üinEëždâ6^—J>xbžeǕýĂś#ď÷ŒŞÄ5ckÂL¤ăŞš;:*s=ßX˝¤a4~-<śuŃԙΒšch|ŕ×Řş÷ˆ2c=͗Ä(őʒ8{Îď6bLŸ‡Ođ–'8şívd>N–œŕdŸŁÍKLŠď'옸ӀT=`ZňŠÎŒ“ö‚1đc.ŸQXňŘUÁŽŹF›ćéĹGĄżIÜ؈?7ŒNi‚Í0łŘšSĎńö\<™ďM {Œ™‘œ>ąCŠĺF[q¤ ăőšOýýwc›z@ăՍŠńópb<•LI ȃ}?ÇcA‘Š Őt;(†žj„˝x™ęƒÇ„ŇăßáŐł—¨ KŤŇxucjü\ěÖźoŠvR<*8E/M¨Ř”ÍÖłČE‘˝üČ]ІłÁ¸W §'Z€ÍRăgáťĺÁâfĄÓT`ۇŘ1é™őŢ=˜Y‰Ą ż˝Œ3–Şču$G­¨łkKĆÔřŮÎřČLŔ–Š‹-GĆemƔ{*łŃSGQ3ü@Üß÷¨L…'űĺŤŰŐ Ž0Yź …öے15~ś3ţĂ2Ú'†ůGH?ş]š°}OĺÔcĎ9€łÂ=&Üvíŕ3#9•E{9—Şj‰UłRÇWtۖŒŠńłń˜BnQü´39Ř4×?‰tž} s%ď3#+ňÓ,Ş*&*$$Ջƒ[0¤ĆĎßŢ˙Ľ›Twëâ'™BčąZ684uIddŇC$LbeŞ)“ÇĄ^Qîů§†)IȂFąó˛Ýň–ŒŠńóđ—ů‚łp~W~8Ýř‘iÄÎň&ü36ďً?;ăóT‚äĹ!âű…ÔŚ@בp3˙[1ŚĆ/ťŞC}öB Qtw8‚uŔ›2”D‰ĄJm2f›)˛‹´—‰vÄüO6يuÁ=Lëő§ńËâ5óG:Îxl6„ŸžVě>†äۋ?:Łŕa°˜)Úß1ă§ ­ŽČôą†ŃřçăŠÁ‘ŤvGrš€ĘÎ8ƒô‰ű˛Íéřa/žß3ĆţMOąJ—ywŰŽ´*PœvĆ/‡'ŚRKDps&ĄG˘ÓŃęńbr<)ŘĂÝÇ˝řÁ÷Œš9ŔqŕHRdčĎú  ×7žĆ?ŇŮÓɂýЂ ÝböK…|CčPÉĆÂ9ă{ńá÷Œącäĺh0ޕu'ŰH™ÚżŰwBhGHĽ 3 čk›YečÎ[ŹÝOö^|”ƒ@€•3ˆI0ý2‡•Â;Űýü›/„óÇMř"ŐŘ8,ŠŮá#FŰe$ř {bŻąăhNŕsS5CŽ´Xcë~2ÉL›w3¤ĽXÄ÷őܒ15~Ś3>[ ĺ_\R:ŤěĆglŕrmB§đvĐ˝ř.3Zž‰“KäTŠÓD•2e č¸çú~SĆÔř™Îř˜Ú’˘ß͆v‰ÎZŒŽ*ĘUdJ=ĺ8é^|v€“Ś(ˡđ>€ˆL@sCÚ­řúžë‡MSăg:ăƒ6äԎQ9i*M>–ÚЍ?ĂÎN uŠŽ÷8j/>(SÍK#u옐ÁBŢmţŇłžčźœ'=ě.i_˙}hAy=…ěěő&ď]ŢHńVՌg{ZK˜'š˝ôƒ3˛ÎĹ6Î-Šz„Q Џ3ű2ŚĆĎߎ­Ä2$´H÷Řś)ĚöŠYi—×lâ]“m|‡K{é}™Š÷x—x •ĆÍśš‘pcžšq¨ńĹ_ććiňĂÍŮŰKd¤>ăЌőDO?.T¨c&5Ý÷ÂĎÎřL!ů’ď%iREŁč2w~Ůí.j _—š93^˘Ę‹l@“ńĘň_g>iEňĘo/<üjĂR(EŽ\(ĘÝGdˇdH_ wV=šp—ŹhInlĄ6:̎ęfhűљÍytF}†ě”rĆăýyŠË÷œčČUŚvĆŻ‰c—@_:¨6.ˏ<}>㇉oMSĹhéĺĽß^xöŐĆ bśnŻě+éVÜÜťGjŒ}Ă6Œ§ńËâÚŐ {ÁýŸ`—ÁWdć܁˝({áíiŞŻľ3ńÉŠŚŁiM¸S ˜šahۆń4~YœšAő<§śE2vLßς÷‡ŢEœľ"żśŒí…w™ű ÎWq ÇÄăĎŮ3ż}\E՘­ýj3[ŰÁkŹ?fé g”r™š‰śŚ ˆĆ“M3;ß݆ń4~Y˜Q­ĚóÉÁgZžbÁn”ľ\ŹLőŇÁÄîńÜ@#$ďe2§< ×6Œ§ńËâÔî‘}ŁWěiaí*Ó~}ášóLşž˙˝đ 3J…źäqBl  ĆçGżŽŕ6Œ§ńËâÄĐKöŸ“–úŁ*TŸâÚqIZdüě…Ç{FćŽXŽŃÚ:ϏŠŐŮďdS†Ôř™řnů†M´]PÇSe*< ć}mhÉłŁK¤3Źć˙ üčŒÂ{{†J;e´Á&㓧"čkÇŐܒ15~ gÄë˝Ř‡ŮÉ!lüPůᢣ˛OěpŁĚ˙Qł3>#ŢÝŇg}$˛ł="l3ťM_ĽNŰ2ŚĆ/ăŒř0›ÍZ{ 44eü“!h¸Ôâú¸)”YěEtJĎ}=Ÿ˘ŠQqýŽŤš%cjü2Ł+ ŁÍžp<Rí?tÖ8!Pä˙(üQ Âh Z:đ3×Xďœ;Q͋YĹŁ@ß,>ˇG˙)ë­­Ú?ë\ŰFüďe÷§Š4Kę%ČďeĹx4PŹß>üŢi8 ÔřÍâ÷ÇvżŢ‘™ŒeJ;íăň•ütÖřh˙Ł.Ź3˛C"átđ†˝ö†W|1Ńfd=î4jüfń‡cť+ŹÖZŁńÍv¤@Gľâƒ#ç.§?ĘÎVăL]öżŢČĆŁăV×QwjgürřŕŒĄ‘űXW°˘mî‚ę<˙ő€D”*ü uF-Qʋj€t<ěĐšmc†Ôř…ptŒ9᏾;ëP—¨Ý†ýĹNF~Źy×đŸ›jvjtGF6ý˘0 `ăI.ʔśb<_Řc ÇŹ‹Ÿői-t'ŮńTţ÷˛ejÂs!×Ď yÎ;¨zDˇb<3ú´€mKő•ŮŕsaÇ06‡ĽŠMu(Żbű.ń?gtEŞX&7{,9ăcq1lĹxż¸3:SB'“śSíx3RԖHŠuÍ2˙`Ď(x<`7:>­ŒW3 íľ¤őkNăƒ‡Ćo7…Ŕ^‚Ń-4šT<°)ńż—Ý}ľa=ΖěéHez{Ş?CiKĆÓřeq`Ť5đƋĘ6ńýlĘr (;g´Yh5˙{ŮŮięěOɑ ÍŐiG;D$—ĎvĎ8~nükŕ`Ůu͇ 2`łĄ5‰řvp,şS0× ţ'ăŒĎ€oŔżţuâű•Ć;ŮŁŞˇń+ăÁń_´Ë ěÚ?Çńl:ár?‰˙˝ěŃiŞÎŠŔűP ŠĺJĆóbfEÇü† ŠńÓńcŽď`ő”œYŠ2P” ĐnŒ•—Ä˙|v\Í?ƌ‡źhÄ'žqYŮŽ˜E{PǏb~#ĆÔř…œ‘š,śĐy+2?äB>ŤŠ§‹‡×ůßË^űžŃîJ56Ěhű i÷j§8„ůSă—rFg/eű8Ü8.Sę[c?čEhŁW;1=˙˝ěđŤ KÔK-˜"šXŻŻŘC/#Ůţƒb~#ĆÔřůΘÝʂěƒlă†!ŕä"7Ҝo—ľqŔž÷˛›ĚřŢŤNş4ëÚžá^űĐ*v5~łřËţ_ąƒăњ…ą “NalOHÇŰŃ2˙{Ůy™*㖗•ŸJ ›˘ň•˛I’âňggŔś5~sřËąnk’äć÷LŽ`+řîřŰ*8<Œf‚ eţe՞LÂÄmy<}Łíş3`Űż9üĺŘYš˛gôĂ`qŕüD˘ŘjŮ :Wů‡ĎMç. S‘‰óń‘ôôicĆÔřyřËą¨GöĄ>Ł_F óDhöJ˘ZŘQ¤p˙{ŮIf¤”l}ŞűDef2hbBÔÇ{C†Ôř…p`Fŕ÷’fjGQšKź<´TS#Żĺ/ťrFa1aQ3•Ő˘űI4h;ĆÓř坱dXŔJĐŰKŇblŔƒ¤VńyÁţ'ăŒĎœ?mŃ;c űMţôŽĹSŕ4ţupşwA1˜ p 1x{cg|ŽĂe°Ly §˝—Ý–Š*ĚUď—nL% ˛ăiüC2ŁśĂôđ6BňÄŠá›ń( žš˙˝ěŁ3݆˛żŽä[?ʅémÁp˙ÜŮBfO“wLX:ްݕô‘ńŻ˘ż—ÝŕdG ť.Éől<•đł%ăiü˛8ś…°t¤xŞ}­Ł/\¤ż—}Ďh?'Z'ć:ŠkƏ”|;ڎ%ăiü˛8°oO‡őÄ܇ěëöľ†>ŘœŽ˘ԁűž1Ů V‚M–×%ˇd<_ώ÷ČUî3ЈŽUéŸ`ż6KîeG™‘ďeŁS^°\5žˇC~öܨ ö‹÷{SĆÔř™Îřpm›ş>ܨ3ţÜ}¤a4ţÉřĂąő{ÍŞŕq÷ĄĆŃřçâ÷ÇÖď 7Ş‚˙í>Ô8˙\|nýŢpŁ*xŮ]Ôż*ţ:ˇ~o¸UlƐż~m‹ÚÜŞŽo<_żśEmnU×7žĆ/‹_ۢ6ˇŞƒëOă—ĹŻmQ€[ŐÁś Šńóńk[ÔŕVup}ăiźńÂpŤ:x[ż—iCĆÔx;ă™pł:ŘŻßÓ´!cjü,üÚö´¸Y%Üď4ź ÓřMăßnV úVńmSăçáßnV úVńmSăçáßnV ˙î4ź ÓřMăßnV ×6œĆ/‡ďú™opłÎ8} q4ţŮÎxwmkÚ´36~u|ˇűumkÚ´36~u|ˇű÷ÚÖ´ ¸yg>6~‹řÓÜüíᆵ°cjü<ü׹ľá†Ő°cjü<üîŘÚpĂj؈15~ŢĎżYŕ†ŐđśŠ˙^Ň0ż~m[ÚܲöŤřkĆÔřYřľ-i#pËzŘ/ăÝ&ŒŠńóđk[ŇFŕ–ő°ł`ß<Ţ[ĆnY˛1ĂjüTüږ´¸i=lƘ? żśmnZ[1ŚĆŰ/7­ˆ­Să팗€ŰVÄ Šńłńk[Ńfŕś5ą cjü<üÚV´¸mMlØ?żśmn[Ű0ŚĆĎĂŻmE›×Ä~-˙lɰ_‰ˇ/.păŞŘ/ćýڌŤń•ÎřpmÚ|g<ü g#ĆŐřJgüżkŰĐvŕ+8ăăGKăěŒýĆnÜőSţßjüfđţ‘ż†[×E˙¸ř†ńšąá n^[2ŽĆW;ăkŰϖ ąńŤáť~zą‚/ăŒăçĆoďŚZ¸}elƸ_‡˙<67ŕöľąăj|ŢÜppűÚ؊q5ž˙żššá_@ű5˝ß–Ą5^ÄŻm;ۂ/ ŽˇUýť ăj|~mŰŮ|uź­jßw“řľmg[đÔą_Ő~˜ń-âלœÁWĐÇ˙6aXŻÇŻm9ƒ/ĄÍWăŤđkŰÍÖŕK(d+ĆŐx;ă9đ%˛ăjźńř ـa5žżśŐlž†Fśa\ŻĂŻm5›ƒŻĄ‘mWăëđk[Íćŕ‹hdĆŐř*üÚ6ł=ř"*y[Ýž ç†đݿל™íÁqơuţą%ck<ĆďŽm1„ŻäŒťKKă‹wbôđUœqR7§nŔŘĎń _F)×6ŹĆëřŽ#„/ăŒÓOă—vĆŢ1"hglü ÎŘ/Ř@ĐÎŘřç;ăšśľlžŽ3ö˙7˙;ˇ6XřBjنą5ă÷skƒ…ݤ–ˇe~™śe|“/|%˝ź­óĂ´-ăkÜ9㏯dt—„/Ľ—Głęo6ž!üenođđĽŁŢ'ž ăk\ăs{ƒ‡ŻĽ˜_ťÝe§ń‹â/ss€ŻĽ“ßl|;x'Ćž˜f6dxüÚ6˛]řbŞŮ‚ą5ăל‘íÂWSÍŒ­q‚˙/4@řjşŮ’ń5ŽńŢ1&đĺtóśŕ˙^Ýđ'řľícËđĺ”óśâ?d3Ć×x;cžžrޖüq3Ć׸¯m›†/¨ˇEď7ożśmlž z^vcHŸ_Ű6ś _Q=?ˇc|+üږąqřŠúyý0cjźńáKęg3Ć×xŸ¤Ž€ŻŠ  ^ăżśUlžŚ†śa|OíŒkŕ‹jhĆ׸¯mۇ/Ş˘÷坶dŒßżśMlžŞŠvlc㟋÷3ÄsřŞÎ8ݡ3noˆáË*饝qsxC _WI湍oÂ6~-üÚÖpđuľ´CüöxżčŚ_×§3ŽĆW:cżľ_ا3ŽĆ×áל„vĆĆ?˙{mK¸řĘÎřnwýŽkâťýcJđĽńÝ*~nĘ8żŢEjž3îţlÉ8żŢ'ŠuřÚÎh Ś çwĂßŢ^ŰP‚/îŒúŤ˙7˙|?ígږ1ß:ţcin8žĄövlkăkńĂMpßК. ßQ}ýĺ˙Ľqé›ŕ.ßR7ž)˘ń“ńöĹËŔ÷T ńĆ7E4~2Ţ7Ţ\žŠˇcȡKűâ…໪pCĆ|ăxרƒoŤĂÍóă틗ƒďŤÄƒ1ő÷çáýĆĺŕkqçŔś6žáűťţ ÂwVcßx.ţŇžxIřÖzěďĎ߆ö†óá{+˛żo< o_ź,|sMnǰoŽ4\žť*7dÜ7†˙j_ź4|{]ŤŸ§zŇ-pßŢ~. ­Ěƒ‰őóTOŮ/^{íž´:ŮĆĆű¸Ď€Öçäžŕx}cß8ţˇoťůh…îĄŸ§ş ďŻú?ZŁođż~™ę ź}ńc Uú›1ô­ăŇǨ­Ó­Ĺă÷í‹­Ô#ŒěÇÓśŒkxűâÇAkuƒý”-˙ÖđvŏƒÖë˙ë_q„ř]űâ‡B+v„×űÝ%÷Ťáí‹ ­Y —4ŢŻ†ˇ+~,´n lÉřˇ†ďv?^Ž˝>_Ú-íîĎśáÚřĐÜđAĐÚőp°ť>UmWü\hý8˜ŢÝ%ůÖń.Q?Úě<Řćď†ďäÚŤň塝CŸŞZ¸öŠ|hؒ3\ďős ‘Á†œáÚx—¨ŸíŒf[|śĺŸ?^{%ž ´3°`Űż:ţ_Zü{íuř.ĐÎB;㏯˝ßÚcŘŠcŐ 8Çgă˝[ü˙ęsËť_ŸýT9㈝oz‰>vŘë—Ć˙ýeî zřż×këŁ!‡vĆ„k9cçÄۄ^¨äOüüœvÄۄ^Źɲ֙řkHźáf ×ës€úËăӋX˙Yƒ?ÜÂז¸a5ôš}ě*`;<Ě´ťť_˙ö˘Ţ&ôş}.ěžއÎt˙đ0˘/˙AɋĐÇŚˇ íŒ×€5ŢU‡kKŐp&ô ^^ţ÷řóL|h/ü:Đ yu8Ý_ş&ýRĐθ!Čö‡/ ż.ôÂ64lÚ6íŒ vƆ†Ŕ˙ĂŕŮłUX1Ĺ=tEXtcomment Image generated by AFPL Ghostscript (device=pnmraw) ď4“öIENDŽB`‚latex2rtf-2.3.18/test/report.dvi0000644000175000017500000002453413664476470016743 0ustar wilfriedwilfried÷ƒ’Ŕ;č TeX output 2020.05.30:1735‹˙˙˙˙ y ýŁ ? ţŠnź‘XŚóDÓítGŽGŽcmr17šT‘ţĽVest–7tDošsŽcumenŒqt“for“Do˜cumenŒqtclass“Rep˜ortŽŸ,’˛ŽśóXŤQ cmr12şThe–ę¨LaT‘˙VeX2rtf“teamŸűĽ2ó|{Ycmr8ť1ŽŽŽŽŽŽŽŸ’Č„şMaŹry–ę¨30,“2020Ž  Ž‘J{şŸü-=óšAa¨cmr6ź1ŽŽŽ‘NŚaóo´‹Ç cmr9ĂThanks–Tto“Donald“Knž9uth“for“designing“T‘˙:ŤeXŽŽŽŒ‹* y ýŁ ? ţ4‘>óÂÖN áH cmbx12ÇCon–˙8őten“tsŽŽŸ’čóKń`y cmr10˛1ŽŽŒ‹¸ y ýŁ ? ţ4‘>ÇList– T{of“FiguresŽŽŸ’č˛2ŽŽŒ‹J y ýŁ ? ţ/‘>óÂÖN ˝q cmbx12ÉChapter‘Ç 1ŽŸ2‘>ÇFirst‘ T{ChapterŽŸ:‘>ó ÂÖN ff cmbx12Ë1.1Ž‘bćcInŒĚtroŽŸç‘>˛Let– 0the“distance‘ /bGe“633›ŞŽnm“or“633˜nm‘ /or“633˜nm“or“633˜nm“or‘ /633˜nm“or“633˜nmޤ ‘>or–ĚO633›ŞŽnm‘ĚNor“633˜nm“or“633˜nm‘ĚNor“633˜nm“or“633˜nm‘ĚNor“633˜nm“just“to‘ĚNforce“aŽĄ‘>line–UUbreak“to“test“the“non-breaking“space.ŽĄ‘MLet–{›the“distance“bGe“633›ŞŽnm“or“633˜nm“or“633˜nm“or“633˜nm“or“633˜nm“orŽĄ‘>633–ŞŽnm›ťęor‘ťë633“nm˜or˜633“nm˜or‘ťë633“nm˜or˜633“nm‘ťëor˜633“nm˜or˜633“nm‘ťëjust˜toŽĄ‘>force–UUa“line“break“to“test“the“non-breaking“space.ŽĄ‘MLet–{›the“distance“bGe“633›ŞŽnm“or“633˜nm“or“633˜nm“or“633˜nm“or“633˜nm“orŽĄ‘>633–ŞŽnm›ťęor‘ťë633“nm˜or˜633“nm˜or‘ťë633“nm˜or˜633“nm‘ťëor˜633“nm˜or˜633“nm‘ťëjust˜toŽĄ‘>force–UUa“line“break“to“test“the“non-breaking“space.ŽĄ‘MLorem–Zšipsum›Zşdolor“sit˜amet,Ÿü^˙óٓ Rcmr7ą1ŽŽ‘؆˛consectetuer“adipiscing“elit.‘őSed“pGosuere,‘\duiŽĄ‘>ut›Xţnon•¸ăumm“y˜lobGortis,–Yčleo˜dui˜laoreet˜arcu,“sed˜blandit˜lectus˜libGero˜sed˜elit.‘|ÂInŽĄ‘>non–l:vš¸ăelit.‘$Aenean“dignissim“aliquam“felis.‘$Curabitur“nec“v˜elit.‘$Donec“vitae“felis.ŽĄ‘>P•¸ăellen“tesque–Î faucibus“suscipit“dui.‘ŰîNunc“dictum,‘ě:purus“congue“ultrices“condi-ŽĄ‘>menš¸ătum,‘ diam‘čIenim–čHaccumsan“dolor,‘ et“viv˜erra“risus›čIoGdio“et˜justo.‘*ĄPhasellusŽĄ‘>accumsan–!ƒmagna›!‚ac“turpis.‘ÖPNullam“bibGendum“condimen¸ătum˜leo.‘ÖQCras˜a“tel-ŽĄ‘>lus.‘+Phasellus–“n¸ăulla“ipsum,–˘‹egestas‘“at,“tempGor›“id,“accumsan˜in,“eros.‘+Praesen¸ătŽĄ‘>tincidun¸ăt–UUtellus“ut“risus.‘qÇSee“Figure“ó!ň"V cmbx10Ě??Ž‘1ò.ŽŸ9ş˜ŸŢ9’ĚăFóXŤQ ff cmr12ĘFIGUREŽŸ’Żßú˛Figure–UU1.1:‘qÇThis“is“ gure“1ŽŽŽŸ9‘MMauris›zĘlobGortis.Ÿü^˙ą2ŽŽ‘ ^›˛P•¸ăellen“tesque˜egestas˜n“unc–zËat˜ligula.‘â'Nulla“ultrices˜magnaŽĄ‘>quis–¨neque.‘ÁŔAenean‘§lobšGortis“semp˜er“purus.›ÁŔIn“non•¸ăumm“y‘¨egestas‘§urna.˜NamŽĄ‘>soGdales–đřorci“ac“felis.›PSV‘˙*Şestibulum“vitae“an•¸ăte.˜Viv‘˙qÇam“us–đřquis“dui.˜Aenean“suscipit.Ž‘>ŸX-‰ff‰˙vŸ J=‘ "5Ÿý-:ź1ŽŽŽ‘LÜťthe‘ŐX rstŽŸ Š>‘ "5Ÿý-:ź2ŽŽŽ‘LÜťthe‘ŐXsecondŽŽŸ’č˛3ŽŽŒ‹ś y ýŁ ? ý䍑>˛Sed›mollis.‘­úP•¸ăellen“tesque˜erat‘ligula,‘CŔdictum˜at,–Cżcursus˜et,“accumsan˜fringilla,ޤ ‘>metus.‘F‘˙*Şusce–<ac›<neque“id˜ipsum“ornare“sagittis.‘See˜Figure“Ě??Ž‘T˛and“See˜Figure“Ě??Ž‘ }˛.ŽŠČэ’ˍĘFIGURE2ŽŽŸ9‘M˛Mauris›zĘlobGortis.Ÿü^˙ą3ŽŽ‘ ^›˛P•¸ăellen“tesque˜egestas˜n“unc–zËat˜ligula.‘â'Nulla“ultrices˜magnaŽĄ‘>quis–¨neque.‘ÁŔAenean‘§lobšGortis“semp˜er“purus.›ÁŔIn“non•¸ăumm“y‘¨egestas‘§urna.˜NamŽĄ‘>soGdales–đřorci“ac“felis.›PSV‘˙*Şestibulum“vitae“an•¸ăte.˜Viv‘˙qÇam“us–đřquis“dui.˜Aenean“suscipit.ŽĄ‘>Sed›mollis.‘­úP•¸ăellen“tesque˜erat‘ligula,‘CŔdictum˜at,–Cżcursus˜et,“accumsan˜fringilla,ŽĄ‘>metus.‘F‘˙*Şusce–<ac›<neque“id˜ipsum“ornare“sagittis.‘See˜Figure“Ě??Ž‘T˛and“See˜Figure“Ě??Ž‘ }˛.ŽŚ’Ň„UĘT‘ţÓ4ABLEŽŽŸ9‘M˛Mauris›zĘlobGortis.‘â(P•¸ăellen“tesque˜egestas˜n“unc–zËat˜ligula.Ÿü^˙ą4ŽŽ‘ ^š˛Nulla“ultrices˜magnaŽĄ‘>quis–¨neque.‘ÁŔAenean‘§lobšGortis“semp˜er“purus.›ÁŔIn“non•¸ăumm“y‘¨egestas‘§urna.˜NamŽĄ‘>soGdales–đřorci“ac“felis.›PSV‘˙*Şestibulum“vitae“an•¸ăte.˜Viv‘˙qÇam“us–đřquis“dui.˜Aenean“suscipit.ŽĄ‘>Sed›mollis.‘­úP•¸ăellen“tesque˜erat‘ligula,‘CŔdictum˜at,–Cżcursus˜et,“accumsan˜fringilla,ŽĄ‘>metus.‘F‘˙*Şusce–<ac›<neque“id˜ipsum“ornare“sagittis.‘See˜Figure“Ě??Ž‘T˛and“See˜Figure“Ě??Ž‘ }˛.ŽŸ!荑>Ë1.2Ž‘bćcMethos3dŽŸç‘>˛Mauris–VaimpGerdiet.›ËDuis“scelerisque.˜P•¸ăellen“tesque›Vahabitan“t˜morbi‘V`tristique˜senec-ŽĄ‘>tus–Ńet›Ńnetus“et“malesuada˜fames“ac“turpis˜egestas.›äóNulla“facilisi.˜Viv‘˙qÇam¸ăusŽĄ‘>soGdales–*§magna›*¨et“nibh.‘ńżNulla“non˜neque“in˜quam“mollis˜ornare.‘ńžV‘˙*ŞestibulumŽĄ‘>non•¸ăumm“y–Äťaugue›Äşut“wisi.‘żřCurabitur“adipiscing˜eros“sit“amet˜lorem.‘żřCras“auc-ŽĄ‘>tor,›;,tortor–4Ąut“euismoGd–4˘iaculis,‘;+elit“purus–4Ąfacilisis“nibh,˜id“tempus“n¸ăulla‘4˘libGero“inŽĄ‘>ipsum.‘TĘPraesen•¸ăt›Ąv“estibulum˜facilisis˜arcu.‘TĘCurabitur˜quis˜augue‘Ąac˜mi˜dictumŽĄ‘>ultricies.–EĘMaecenas›Ń^consectetuer.“Mauris‘Ń]non˜lacus.“Nunc˜et–Ń]nisl˜sit“amet˜ligulaŽĄ‘>pretium›’dapibus.‘( P•¸ăellen“tesque˜habitan“t–’morbi˜tristique˜senectus˜et“netus˜etŽĄ‘>malesuada–ôIfames›ôHac“turpis˜egestas.‘QnNullam“ut“metus˜in“sapien˜mollis“dignissim.ŽĄ‘>Ut‘Áăsem–Áâlacus,›ÝcommoGdo“nec,˜fermen¸ătum“sit‘Áăamet,˜pGorta“sit‘Áăamet,‘Ýarcu.‘ˇpNuncŽĄ‘>non–UUeros.‘qÇV‘˙*Şestibulum“ullamcorpGer“adipiscing“risus.Ÿü^˙ą5ŽŽ‘î:˛See“Figure“Ě??Ž‘1ò.ŽŸmË]Ÿę’ŻßúFigure–UU1.2:‘qÇThis“is“ gure“2ŽŽĄŽ‘>Ÿ.ʉff‰˙vŸ J=‘ "5Ÿý-:ź3ŽŽŽ‘LÜťthe‘ŐXthirdޤ Š>‘ "5Ÿý-:ź4ŽŽŽ‘LÜťthe‘ŐXfourthŽĄ‘ "5Ÿý-:ź5ŽŽŽ‘LÜťthe‘ŐX fthŽŽŸ’č˛4ŽŽŒ‹ ˇ y ýŁ ? ţ/‘>ÉChapter‘Ç 2ŽŸ2‘>ÇSecond‘ T{ChapterŽŸ:‘>Ë2.1Ž‘bćcInŒĚtroŽŠç‘>˛Mauris›^wlobGortis.‘,P•¸ăellen“tesque˜egestas˜n“unc˜at–^vligula.‘-Nulla“ultrices˜magna˜quisޤ ‘>neque.‘fƒAenean›3‰lob•Gortis‘3ˆsemp“er˜purus.‘fƒIn˜non•¸ăumm“y˜egestas‘3ˆurna.‘fƒNam˜soGdalesŽĄ‘>orci›ć+ac–ć*felis.‘$HV‘˙*Şestibulum“vitae˜an•¸ăte.‘$HViv‘˙qÇam“us–ć*quis˜dui.›$HAenean“suscipit.˜SedŽĄ‘>mollis.‘JâP•¸ăellen“tesque‘ŕŚerat–ŕĽligula,›÷üdictum“at,˜cursus‘ŕŚet,˜accumsan“fringilla,˜metus.ŽĄ‘>F‘˙*Şusce–UUac“neque“id“ipsum“ornare“sagittis.Ÿü^˙ą1ŽŽ‘î:˛See“Figure“Ě??Ž‘‡˛and“See“Figure“Ě??Ž‘1ò.ŽŸmË]Ÿę’ŻßúFigure–UU2.1:‘qÇThis“is“ gure“3ŽŽĄŽŸ+ý‘>Ë2.2Ž‘bćcMethos3dŽŚ‘>˛Maecenas–I6graš¸ăvida,‘K˘massa“id‘I5in˜terdum“sempGer,‘KŁpurus‘I5ipsum“vulputate“nibh,‘K˘v˜elŽĄ‘>egestas–˜Bdiam“an¸ăte“sit‘˜Aamet“metus.›2ÁEtiam“rutrum“augue“eleifend“leo.˜V‘˙*ŞestibulumŽĄ‘>a–”oleo.‘/Duis›”prhoncus“orci“quis˜tortor.‘/P•¸ăellen“tesque˜id–”oipsum“nec˜est“v¸ăestibulumŽĄ‘>impGerdiet.›č™Etiam–|đv¸ăolutpat.‘čšMaecenas“ornare“laoreet‘|ńmauris.˜Praesen¸ăt“feugiat.ŽĄ‘>Donec– xpGede“elit,›>sollicitudin“ut,‘=vulputate“a,˜v¸ăenenatis“eu,˜dui.‘Y(Praesen¸ăt“mollis.ŽĄ‘>Aenean–Penim‘Pdui,›Q$commoGdo“at,˜tincidun¸ăt“at,˜luctus‘Psuscipit,˜leo.‘pAenean“urna.ŽĄ‘>Praesenš¸ăt–mđadipiscing.‘ť–Quisque“id“arcu‘mďat“v˜elit“tincidun˜t‘mďconsectetuer.‘ť—PhasellusŽĄ‘>graš¸ăvida–_&est“sed“felis.‘9Proin“mi“tortor,‘Ąšsuscipit“et,‘Ą™con˜v‘˙qÇallis“euismoGd,‘ĄšultricesŽ‘>ŸX-‰ff‰˙vŸ J=‘ "5Ÿý-:ź1ŽŽŽ‘LÜťthe–ŐX rst“in“the“second“cĂŽhapterŽŽŸ’č˛5ŽŽŒ‹˘ y ýŁ ? ý䍑>˛vitae,›Esjusto.‘˛Cras–mleo“arcu,˜viv¸ăerra“at,˜dignissim“nec,˜feugiat“sed,˜ligula.‘˛Seeޤ ‘>Figure‘UUĚ??Ž‘‡˛and–UUSee“Figure“Ě??Ž‘1ò.ŽŸmË]Ÿę’ŻßúFigure–UU2.2:‘qÇThis“is“ gure“4ŽŽĄŽŸ9‘MNunc‘i¤leo–iŁjusto,›n¸egestas“id,˜soGdales“id,–nˇaliquam›i¤eget,“massa.‘ŽłMauris˜pGosuereŽĄ‘>nibh–Šépulvinar“neque“feugiat“pšGorta.‘8ŁMorbi“temp˜or“faucibus“nibh.‘8ŁDonec“sit“ametŽĄ‘>urna.›!Sed–dŹdictum“dui‘dŤut“justo.˜V‘˙*Şestibulum“impGerdiet.˜Morbi“sed“risus.˜Praesen¸ătŽĄ‘>sollicitudin.‘WViv‘˙qÇam¸ăus–ĄÄut›ĄĹest“sit“amet˜diam“sempGer“lacinia.‘WDonec“nec˜tortor“aŽĄ‘>lacus›Ómplacerat–Ólaliquet.‘ěV‘˙*Şestibulum“quis˜turpis.–ěCurabitur˜auctor˜libGero.“NamŽĄ‘>sit–č`amet›č_felis“nec“mauris“tempus˜impGerdiet.‘*čAenean˜est“ipsum,‘ "molestie“eget,ŽĄ‘>vulputate–tincidun¸ăt,›O tempus“ac,˜lectus.‘ÉP•¸ăellen“tesque›habitan“t˜morbi˜tristiqueŽĄ‘>senectus–i÷et›iönetus“et˜malesuada“fames“ac˜turpis“egestas.‘#SNullam˜molestie“rhoncusŽĄ‘>metus.›hňNunc–:Ősollicitudin“ipsum“nec“urna.˜Class“apten¸ăt‘:Ötaciti“soGciosqu“ad“litoraŽĄ‘>torquen•¸ăt›ľŻpGer‘ľŽcon“ubia˜nostra,‘ÍĹpGer˜inceptos‘ľŽh“ymenaeos.‘’ÔIn˜hac‘ľŽhabitasse˜plateaŽĄ‘>dictumst.ŽŽŸ’č6ŽŽŒ‹g y ýŁ ? ţ/‘>ÉApp‘Ľëendix‘Ç AŽŸ2‘>ÇFirst‘ T{App‘Ç endixŽŸ:‘>ËA.1Ž‘g†InŒĚtroŽŸç‘>˛Mauris›^wlobGortis.‘,P•¸ăellen“tesque˜egestas˜n“unc˜at–^vligula.‘-Nulla“ultrices˜magna˜quisޤ ‘>neque.‘fƒAenean›3‰lob•Gortis‘3ˆsemp“er˜purus.‘fƒIn˜non•¸ăumm“y˜egestas‘3ˆurna.‘fƒNam˜soGdalesŽĄ‘>orci›ć+ac–ć*felis.‘$HV‘˙*Şestibulum“vitae˜an•¸ăte.‘$HViv‘˙qÇam“us–ć*quis˜dui.›$HAenean“suscipit.˜SedŽĄ‘>mollis.‘JâP•¸ăellen“tesque‘ŕŚerat–ŕĽligula,›÷üdictum“at,˜cursus‘ŕŚet,˜accumsan“fringilla,˜metus.ŽĄ‘>F‘˙*Şusce–UUac“neque“id“ipsum“ornare“sagittis.‘qÇSee“Figure“Ě??Ž‘‡˛and“See“Figure“Ě??Ž‘1ò.ŽŽŸ’č7ŽŽŒ‹"Ł y ýŁ ? ţ/‘>ÉApp‘Ľëendix‘Ç BŽŸ2‘>ÇSecond‘ T{App‘Ç endixŽŸ:‘>ËB.1Ž‘fQInŒĚtroŽŸç‘>˛Mauris›^wlobGortis.‘,P•¸ăellen“tesque˜egestas˜n“unc˜at–^vligula.‘-Nulla“ultrices˜magna˜quisޤ ‘>neque.‘fƒAenean›3‰lob•Gortis‘3ˆsemp“er˜purus.‘fƒIn˜non•¸ăumm“y˜egestas‘3ˆurna.‘fƒNam˜soGdalesŽĄ‘>orci›ć+ac–ć*felis.‘$HV‘˙*Şestibulum“vitae˜an•¸ăte.‘$HViv‘˙qÇam“us–ć*quis˜dui.›$HAenean“suscipit.˜SedŽĄ‘>mollis.‘JâP•¸ăellen“tesque‘ŕŚerat–ŕĽligula,›÷üdictum“at,˜cursus‘ŕŚet,˜accumsan“fringilla,˜metus.ŽĄ‘>F‘˙*Şusce–UUac“neque“id“ipsum“ornare“sagittis.‘qÇSee“Figure“Ě??Ž‘‡˛and“See“Figure“Ě??Ž‘1ò.ŽŽŸ’č8ŽŽŒř%mƒ’Ŕ;čy— ó!ň"V cmbx10ó ÂÖN ff cmbx12óXŤQ ff cmr12óÂÖN ˝q cmbx12óÂÖN áH cmbx12óo´‹Ç cmr9óšAa¨cmr6ó|{Ycmr8óXŤQ cmr12óDÓítGŽGŽcmr17óKń`y cmr10óٓ Rcmr7ů(8ßßßßßlatex2rtf-2.3.18/test/acro2.tex0000777000175000017500000000346313050672357016450 0ustar wilfriedwilfried\documentclass{article} \usepackage{hyperref} \usepackage[printonlyused,withpage]{acronym} \begin{document} \section{Intro} In the early nineties, \acs{GSM} was deployed in many European countries. \ac{GSM} offered for the first time international roaming for mobile subscribers. The \acs{GSM}'s use of \ac{TDMA} as its communication standard was debated at length. And every now and then there are big discussion whether \ac{CDMA} should have been chosen over \ac{TDMA}. \section{Furthermore} \acresetall The reader could have forgotten all the nice acronyms, so we repeat the meaning again. If you want to know more about \acf{GSM}, \acf{TDMA}, \acf{CDMA} and other acronyms, just read a book about mobile communication. Just to mention it: There is another \ac{UA}, just for testing purposes! \begin{figure}[h] Figure \caption{A float also admits references like \ac{GSM} or \acf{CDMA}.} \end{figure} \subsection{Some chemistry and physics} \label{Chem} \ac{NAD+} is a major electron acceptor in the oxidation of fuel molecules. The reactive part of \ac{NAD+} is its nictinamide ring, a pyridine derivate. One mol consists of \acs{NA} atoms or molecules. There is a relation between the constant of Boltzmann and the \acl{NA}: \begin{equation} k = R/\acs{NA} \end{equation} \acl{lox}/\acl{lh2} (\acsu{lox}/\acsu{lh2}) \section{Acronyms} \begin{acronym}[TDMA] \acro{CDMA}{Code Division Multiple Access} \acro{GSM}{Global System for Mobile communication} \acro{NA}[\ensuremath{N_{\mathrm A}}]{Number of Avogadro\acroextra{ (see \S\ref{Chem})}} \acro{NAD+}[NAD\textsuperscript{+}]{Nicotinamide Adenine Dinucleotide} \acro{NUA}{Not Used Acronym} \acro{TDMA}{Time Division Multiple Access} \acro{UA}{Used Acronym} \acro{lox}[\ensuremath{LOX}]{Liquid Oxygen} \acro{lh2}[\ensuremath{LH_2}]{Liquid Hydrogen} \end{acronym} \end{document}latex2rtf-2.3.18/test/picture.tex0000777000175000017500000000070213050672360017100 0ustar wilfriedwilfried\documentstyle[12pt]{article} \begin{document} \setlength{\unitlength}{2pt} \begin{picture}(50,200) \linethickness{1pt} \bezier{20}(0,0)(10,30)(50,30) \bezier{200}(0,0)(40,0)(50,30) \thinlines \put(0,0){\circle*{1}} \put(0,0){\line(1,3){10}} \put(0,-1){\makebox(0,0)[t]{A}} \put(10,30){\circle*{1}} \put(10,31){\makebox(0,0)[b]{B}} \put(50,30){\circle*{1}} \put(50,30){\line(-1,0){40}} \put(50,31){\makebox(0,0)[b]{C}} \end{picture} \end{document} latex2rtf-2.3.18/test/psfig.sty0000777000175000017500000007031713050672357016573 0ustar wilfriedwilfried% Psfig/TeX \def\PsfigVersion{1.10} \def\setDriver{\DvipsDriver} % \DvipsDriver or \OzTeXDriver % % All software, documentation, and related files in this distribution of % psfig/tex are Copyright 1993 Trevor J. Darrell % % Permission is granted for use and non-profit distribution of psfig/tex % providing that this notice is clearly maintained. The right to % distribute any portion of psfig/tex for profit or as part of any commercial % product is specifically reserved for the author(s) of that portion. % % To use with LaTeX, use \documentstyle[psfig,...]{...} % To use with TeX, use \input psfig.sty % % Bugs and improvements to trevor@media.mit.edu. % % Thanks to Ned Batchelder, Greg Hager (GDH), J. Daniel Smith (JDS), % Tom Rokicki (TR), Robert Russell (RR), George V. Reilly (GVR), % Ken McGlothlen (KHC), Baron Grey (BG), Gerhard Tobermann (GT). % and all others who have contributed code and comments to this project! % % ====================================================================== % Modification History: % % 9 Oct 1990 JDS used more robust bbox reading code from Tom Rokicki % 29 Mar 1991 JDS implemented rotation= option % 25 Jun 1991 RR if bb specified on cmd line don't check % for .ps file. % 3 Jul 1991 JDS check if file already read in once % 4 Sep 1991 JDS fixed incorrect computation of rotated % bounding box % 25 Sep 1991 GVR expanded synopsis of \psfig % 14 Oct 1991 JDS \fbox code from LaTeX so \psdraft works with TeX % changed \typeout to \ps@typeout % 17 Oct 1991 JDS added \psscalefirst and \psrotatefirst % 23 Jun 1993 KHC ``doclip'' must appear before ``rotate'' % 27 Oct 1993 TJD removed printing of filename to avoid % underscore problems. changed \frame to \fbox. % Added OzTeX support from BG. Added new % figure search path code from GT. % % ====================================================================== % % Command synopsis: % % \psdraft draws an outline box, but doesn't include the figure % in the DVI file. Useful for previewing. % % \psfull includes the figure in the DVI file (default). % % \psscalefirst width= or height= specifies the size of the figure % before rotation. % \psrotatefirst (default) width= or height= specifies the size of the % figure after rotation. Asymetric figures will % appear to shrink. % % \psfigurepath{dir:dir:...} sets the path to search for the figure % % \psfig % usage: \psfig{file=, figure=, height=, width=, % bbllx=, bblly=, bburx=, bbury=, % rheight=, rwidth=, clip=, angle=, silent=} % % "file" is the filename. If no path name is specified and the % file is not found in the current directory, % it will be looked for in directory \psfigurepath. % "figure" is a synonym for "file". % By default, the width and height of the figure are taken from % the BoundingBox of the figure. % If "width" is specified, the figure is scaled so that it has % the specified width. Its height changes proportionately. % If "height" is specified, the figure is scaled so that it has % the specified height. Its width changes proportionately. % If both "width" and "height" are specified, the figure is scaled % anamorphically. % "bbllx", "bblly", "bburx", and "bbury" control the PostScript % BoundingBox. If these four values are specified % *before* the "file" option, the PSFIG will not try to % open the PostScript file. % "rheight" and "rwidth" are the reserved height and width % of the figure, i.e., how big TeX actually thinks % the figure is. They default to "width" and "height". % The "clip" option ensures that no portion of the figure will % appear outside its BoundingBox. "clip=" is a switch and % takes no value, but the `=' must be present. % The "angle" option specifies the angle of rotation (degrees, ccw). % The "silent" option makes \psfig work silently. % % ====================================================================== % check to see if macros already loaded in (maybe some other file says % "\input psfig") ... \ifx\undefined\psfig\else\endinput\fi % % from a suggestion by eijkhout@csrd.uiuc.edu to allow % loading as a style file. Changed to avoid problems % with amstex per suggestion by jbence@math.ucla.edu \let\LaTeXAtSign=\@ \let\@=\relax \edef\psfigRestoreAt{\catcode`\@=\number\catcode`@\relax} %\edef\psfigRestoreAt{\catcode`@=\number\catcode`@\relax} \catcode`\@=11\relax \newwrite\@unused \def\ps@typeout#1{{\let\protect\string\immediate\write\@unused{#1}}} \def\DvipsDriver{ \ps@typeout{psfig/tex \PsfigVersion -dvips} \def\PsfigSpecials{\DvipsSpecials} \def\ps@dir{/} \def\ps@predir{} } \def\OzTeXDriver{ \ps@typeout{psfig/tex \PsfigVersion -oztex} \def\PsfigSpecials{\OzTeXSpecials} \def\ps@dir{:} \def\ps@predir{:} \catcode`\^^J=5 } %% Here's how you define your figure path. Should be set up with null %% default and a user useable definition. \def\figurepath{./:} \def\psfigurepath#1{\edef\figurepath{#1:}} %%% inserted for Searching Unixpaths %%% (the path must end with :) %%% (call: \DoPaths\figurepath ) %%%------------------------------------------------------ \def\DoPaths#1{\expandafter\EachPath#1\stoplist} % \def\leer{} \def\EachPath#1:#2\stoplist{% #1 part of the list (delimiter :) \ExistsFile{#1}{\SearchedFile} \ifx#2\leer \else \expandafter\EachPath#2\stoplist \fi} % % exists the file (does not work for directories!) % \def\ps@dir{/} \def\ExistsFile#1#2{% \openin1=\ps@predir#1\ps@dir#2 \ifeof1 \closein1 %\ps@typeout{...not: \ps@predir#1\ps@dir#2} \else \closein1 %\ps@typeout{...in: \ps@predir#1\ps@dir#2} \ifx\ps@founddir\leer %\ps@typeout{set founddir #1} \edef\ps@founddir{#1} \fi \fi} %------------------------------------------------------ % % Get dir in path or error % \def\get@dir#1{% \def\ps@founddir{} \def\SearchedFile{#1} \DoPaths\figurepath % \fi } %------------------------------------------------------ %%% END of Searching Unixpaths % % @psdo control structure -- similar to Latex @for. % I redefined these with different names so that psfig can % be used with TeX as well as LaTeX, and so that it will not % be vunerable to future changes in LaTeX's internal % control structure, % \def\@nnil{\@nil} \def\@empty{} \def\@psdonoop#1\@@#2#3{} \def\@psdo#1:=#2\do#3{\edef\@psdotmp{#2}\ifx\@psdotmp\@empty \else \expandafter\@psdoloop#2,\@nil,\@nil\@@#1{#3}\fi} \def\@psdoloop#1,#2,#3\@@#4#5{\def#4{#1}\ifx #4\@nnil \else #5\def#4{#2}\ifx #4\@nnil \else#5\@ipsdoloop #3\@@#4{#5}\fi\fi} \def\@ipsdoloop#1,#2\@@#3#4{\def#3{#1}\ifx #3\@nnil \let\@nextwhile=\@psdonoop \else #4\relax\let\@nextwhile=\@ipsdoloop\fi\@nextwhile#2\@@#3{#4}} \def\@tpsdo#1:=#2\do#3{\xdef\@psdotmp{#2}\ifx\@psdotmp\@empty \else \@tpsdoloop#2\@nil\@nil\@@#1{#3}\fi} \def\@tpsdoloop#1#2\@@#3#4{\def#3{#1}\ifx #3\@nnil \let\@nextwhile=\@psdonoop \else #4\relax\let\@nextwhile=\@tpsdoloop\fi\@nextwhile#2\@@#3{#4}} % % \fbox is defined in latex.tex; so if \fbox is undefined, assume that % we are not in LaTeX. % Perhaps this could be done better??? \ifx\undefined\fbox % \fbox code from modified slightly from LaTeX \newdimen\fboxrule \newdimen\fboxsep \newdimen\ps@tempdima \newbox\ps@tempboxa \fboxsep = 3pt \fboxrule = .4pt \long\def\fbox#1{\leavevmode\setbox\ps@tempboxa\hbox{#1}\ps@tempdima\fboxrule \advance\ps@tempdima \fboxsep \advance\ps@tempdima \dp\ps@tempboxa \hbox{\lower \ps@tempdima\hbox {\vbox{\hrule height \fboxrule \hbox{\vrule width \fboxrule \hskip\fboxsep \vbox{\vskip\fboxsep \box\ps@tempboxa\vskip\fboxsep}\hskip \fboxsep\vrule width \fboxrule} \hrule height \fboxrule}}}} \fi % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % file reading stuff from epsf.tex % EPSF.TEX macro file: % Written by Tomas Rokicki of Radical Eye Software, 29 Mar 1989. % Revised by Don Knuth, 3 Jan 1990. % Revised by Tomas Rokicki to accept bounding boxes with no % space after the colon, 18 Jul 1990. % Portions modified/removed for use in PSFIG package by % J. Daniel Smith, 9 October 1990. % \newread\ps@stream \newif\ifnot@eof % continue looking for the bounding box? \newif\if@noisy % report what you're making? \newif\if@atend % %%BoundingBox: has (at end) specification \newif\if@psfile % does this look like a PostScript file? % % PostScript files should start with `%!' % {\catcode`\%=12\global\gdef\epsf@start{%!}} \def\epsf@PS{PS} % \def\epsf@getbb#1{% % % The first thing we need to do is to open the % PostScript file, if possible. % \openin\ps@stream=\ps@predir#1 \ifeof\ps@stream\ps@typeout{Error, File #1 not found}\else % % Okay, we got it. Now we'll scan lines until we find one that doesn't % start with %. We're looking for the bounding box comment. % {\not@eoftrue \chardef\other=12 \def\do##1{\catcode`##1=\other}\dospecials \catcode`\ =10 \loop \if@psfile \read\ps@stream to \epsf@fileline \else{ \obeyspaces \read\ps@stream to \epsf@tmp\global\let\epsf@fileline\epsf@tmp} \fi \ifeof\ps@stream\not@eoffalse\else % % Check the first line for `%!'. Issue a warning message if its not % there, since the file might not be a PostScript file. % \if@psfile\else \expandafter\epsf@test\epsf@fileline:. \\% \fi % % We check to see if the first character is a % sign; % if so, we look further and stop only if the line begins with % `%%BoundingBox:' and the `(atend)' specification was not found. % That is, the only way to stop is when the end of file is reached, % or a `%%BoundingBox: llx lly urx ury' line is found. % \expandafter\epsf@aux\epsf@fileline:. \\% \fi \ifnot@eof\repeat }\closein\ps@stream\fi}% % % This tests if the file we are reading looks like a PostScript file. % \long\def\epsf@test#1#2#3:#4\\{\def\epsf@testit{#1#2} \ifx\epsf@testit\epsf@start\else \ps@typeout{Warning! File does not start with `\epsf@start'. It may not be a PostScript file.} \fi \@psfiletrue} % don't test after 1st line % % We still need to define the tricky \epsf@aux macro. This requires % a couple of magic constants for comparison purposes. % {\catcode`\%=12\global\let\epsf@percent=%\global\def\epsf@bblit{%BoundingBox}} % % % So we're ready to check for `%BoundingBox:' and to grab the % values if they are found. We continue searching if `(at end)' % was found after the `%BoundingBox:'. % \long\def\epsf@aux#1#2:#3\\{\ifx#1\epsf@percent \def\epsf@testit{#2}\ifx\epsf@testit\epsf@bblit \@atendfalse \epsf@atend #3 . \\% \if@atend \if@verbose{ \ps@typeout{psfig: found `(atend)'; continuing search} }\fi \else \epsf@grab #3 . . . \\% \not@eoffalse \global\no@bbfalse \fi \fi\fi}% % % Here we grab the values and stuff them in the appropriate definitions. % \def\epsf@grab #1 #2 #3 #4 #5\\{% \global\def\epsf@llx{#1}\ifx\epsf@llx\empty \epsf@grab #2 #3 #4 #5 .\\\else \global\def\epsf@lly{#2}% \global\def\epsf@urx{#3}\global\def\epsf@ury{#4}\fi}% % % Determine if the stuff following the %%BoundingBox is `(atend)' % J. Daniel Smith. Copied from \epsf@grab above. % \def\epsf@atendlit{(atend)} \def\epsf@atend #1 #2 #3\\{% \def\epsf@tmp{#1}\ifx\epsf@tmp\empty \epsf@atend #2 #3 .\\\else \ifx\epsf@tmp\epsf@atendlit\@atendtrue\fi\fi} % End of file reading stuff from epsf.tex %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % trigonometry stuff from "trig.tex" \chardef\psletter = 11 % won't conflict with \begin{letter} now... \chardef\other = 12 \newif \ifdebug %%% turn me on to see TeX hard at work ... \newif\ifc@mpute %%% don't need to compute some values \c@mputetrue % but assume that we do \let\then = \relax \def\r@dian{pt } \let\r@dians = \r@dian \let\dimensionless@nit = \r@dian \let\dimensionless@nits = \dimensionless@nit \def\internal@nit{sp } \let\internal@nits = \internal@nit \newif\ifstillc@nverging \def \Mess@ge #1{\ifdebug \then \message {#1} \fi} { %%% Things that need abnormal catcodes %%% \catcode `\@ = \psletter \gdef \nodimen {\expandafter \n@dimen \the \dimen} \gdef \term #1 #2 #3% {\edef \t@ {\the #1}%%% freeze parameter 1 (count, by value) \edef \t@@ {\expandafter \n@dimen \the #2\r@dian}% %%% freeze parameter 2 (dimen, by value) \t@rm {\t@} {\t@@} {#3}% } \gdef \t@rm #1 #2 #3% {{% \count 0 = 0 \dimen 0 = 1 \dimensionless@nit \dimen 2 = #2\relax \Mess@ge {Calculating term #1 of \nodimen 2}% \loop \ifnum \count 0 < #1 \then \advance \count 0 by 1 \Mess@ge {Iteration \the \count 0 \space}% \Multiply \dimen 0 by {\dimen 2}% \Mess@ge {After multiplication, term = \nodimen 0}% \Divide \dimen 0 by {\count 0}% \Mess@ge {After division, term = \nodimen 0}% \repeat \Mess@ge {Final value for term #1 of \nodimen 2 \space is \nodimen 0}% \xdef \Term {#3 = \nodimen 0 \r@dians}% \aftergroup \Term }} \catcode `\p = \other \catcode `\t = \other \gdef \n@dimen #1pt{#1} %%% throw away the ``pt'' } \def \Divide #1by #2{\divide #1 by #2} %%% just a synonym \def \Multiply #1by #2%%% allows division of a dimen by a dimen {{%%% should really freeze parameter 2 (dimen, passed by value) \count 0 = #1\relax \count 2 = #2\relax \count 4 = 65536 \Mess@ge {Before scaling, count 0 = \the \count 0 \space and count 2 = \the \count 2}% \ifnum \count 0 > 32767 %%% do our best to avoid overflow \then \divide \count 0 by 4 \divide \count 4 by 4 \else \ifnum \count 0 < -32767 \then \divide \count 0 by 4 \divide \count 4 by 4 \else \fi \fi \ifnum \count 2 > 32767 %%% while retaining reasonable accuracy \then \divide \count 2 by 4 \divide \count 4 by 4 \else \ifnum \count 2 < -32767 \then \divide \count 2 by 4 \divide \count 4 by 4 \else \fi \fi \multiply \count 0 by \count 2 \divide \count 0 by \count 4 \xdef \product {#1 = \the \count 0 \internal@nits}% \aftergroup \product }} \def\r@duce{\ifdim\dimen0 > 90\r@dian \then % sin(x+90) = sin(180-x) \multiply\dimen0 by -1 \advance\dimen0 by 180\r@dian \r@duce \else \ifdim\dimen0 < -90\r@dian \then % sin(-x) = sin(360+x) \advance\dimen0 by 360\r@dian \r@duce \fi \fi} \def\Sine#1% {{% \dimen 0 = #1 \r@dian \r@duce \ifdim\dimen0 = -90\r@dian \then \dimen4 = -1\r@dian \c@mputefalse \fi \ifdim\dimen0 = 90\r@dian \then \dimen4 = 1\r@dian \c@mputefalse \fi \ifdim\dimen0 = 0\r@dian \then \dimen4 = 0\r@dian \c@mputefalse \fi % \ifc@mpute \then % convert degrees to radians \divide\dimen0 by 180 \dimen0=3.141592654\dimen0 % \dimen 2 = 3.1415926535897963\r@dian %%% a well-known constant \divide\dimen 2 by 2 %%% we only deal with -pi/2 : pi/2 \Mess@ge {Sin: calculating Sin of \nodimen 0}% \count 0 = 1 %%% see power-series expansion for sine \dimen 2 = 1 \r@dian %%% ditto \dimen 4 = 0 \r@dian %%% ditto \loop \ifnum \dimen 2 = 0 %%% then we've done \then \stillc@nvergingfalse \else \stillc@nvergingtrue \fi \ifstillc@nverging %%% then calculate next term \then \term {\count 0} {\dimen 0} {\dimen 2}% \advance \count 0 by 2 \count 2 = \count 0 \divide \count 2 by 2 \ifodd \count 2 %%% signs alternate \then \advance \dimen 4 by \dimen 2 \else \advance \dimen 4 by -\dimen 2 \fi \repeat \fi \xdef \sine {\nodimen 4}% }} % Now the Cosine can be calculated easily by calling \Sine \def\Cosine#1{\ifx\sine\UnDefined\edef\Savesine{\relax}\else \edef\Savesine{\sine}\fi {\dimen0=#1\r@dian\advance\dimen0 by 90\r@dian \Sine{\nodimen 0} \xdef\cosine{\sine} \xdef\sine{\Savesine}}} % end of trig stuff %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \def\psdraft{ \def\@psdraft{0} %\ps@typeout{draft level now is \@psdraft \space . } } \def\psfull{ \def\@psdraft{100} %\ps@typeout{draft level now is \@psdraft \space . } } \psfull \newif\if@scalefirst \def\psscalefirst{\@scalefirsttrue} \def\psrotatefirst{\@scalefirstfalse} \psrotatefirst \newif\if@draftbox \def\psnodraftbox{ \@draftboxfalse } \def\psdraftbox{ \@draftboxtrue } \@draftboxtrue \newif\if@prologfile \newif\if@postlogfile \def\pssilent{ \@noisyfalse } \def\psnoisy{ \@noisytrue } \psnoisy %%% These are for the option list. %%% A specification of the form a = b maps to calling \@p@@sa{b} \newif\if@bbllx \newif\if@bblly \newif\if@bburx \newif\if@bbury \newif\if@height \newif\if@width \newif\if@rheight \newif\if@rwidth \newif\if@angle \newif\if@clip \newif\if@verbose \def\@p@@sclip#1{\@cliptrue} % % \newif\if@decmpr % \def\@p@@sfigure#1{\def\@p@sfile{null}\def\@p@sbbfile{null}\@decmprfalse % look directly for file (e.g. absolute path) \openin1=\ps@predir#1 \ifeof1 \closein1 % failed, search directories for file \get@dir{#1} \ifx\ps@founddir\leer % failed, search directly for file.bb \openin1=\ps@predir#1.bb \ifeof1 \closein1 % failed, search directories for file.bb \get@dir{#1.bb} \ifx\ps@founddir\leer % failed, lose. \ps@typeout{Can't find #1 in \figurepath} \else % found file.bb in search dir \@decmprtrue \def\@p@sfile{\ps@founddir\ps@dir#1} \def\@p@sbbfile{\ps@founddir\ps@dir#1.bb} \fi \else \closein1 %found file.bb directly \@decmprtrue \def\@p@sfile{#1} \def\@p@sbbfile{#1.bb} \fi \else % found file in search dir \def\@p@sfile{\ps@founddir\ps@dir#1} \def\@p@sbbfile{\ps@founddir\ps@dir#1} \fi \else % found file directly \closein1 \def\@p@sfile{#1} \def\@p@sbbfile{#1} \fi } % % % \def\@p@@sfile#1{\@p@@sfigure{#1}} % \def\@p@@sbbllx#1{ %\ps@typeout{bbllx is #1} \@bbllxtrue \dimen100=#1 \edef\@p@sbbllx{\number\dimen100} } \def\@p@@sbblly#1{ %\ps@typeout{bblly is #1} \@bbllytrue \dimen100=#1 \edef\@p@sbblly{\number\dimen100} } \def\@p@@sbburx#1{ %\ps@typeout{bburx is #1} \@bburxtrue \dimen100=#1 \edef\@p@sbburx{\number\dimen100} } \def\@p@@sbbury#1{ %\ps@typeout{bbury is #1} \@bburytrue \dimen100=#1 \edef\@p@sbbury{\number\dimen100} } \def\@p@@sheight#1{ \@heighttrue \dimen100=#1 \edef\@p@sheight{\number\dimen100} %\ps@typeout{Height is \@p@sheight} } \def\@p@@swidth#1{ %\ps@typeout{Width is #1} \@widthtrue \dimen100=#1 \edef\@p@swidth{\number\dimen100} } \def\@p@@srheight#1{ %\ps@typeout{Reserved height is #1} \@rheighttrue \dimen100=#1 \edef\@p@srheight{\number\dimen100} } \def\@p@@srwidth#1{ %\ps@typeout{Reserved width is #1} \@rwidthtrue \dimen100=#1 \edef\@p@srwidth{\number\dimen100} } \def\@p@@sangle#1{ %\ps@typeout{Rotation is #1} \@angletrue % \dimen100=#1 \edef\@p@sangle{#1} %\number\dimen100} } \def\@p@@ssilent#1{ \@verbosefalse } \def\@p@@sprolog#1{\@prologfiletrue\def\@prologfileval{#1}} \def\@p@@spostlog#1{\@postlogfiletrue\def\@postlogfileval{#1}} \def\@cs@name#1{\csname #1\endcsname} \def\@setparms#1=#2,{\@cs@name{@p@@s#1}{#2}} % % initialize the defaults (size the size of the figure) % \def\ps@init@parms{ \@bbllxfalse \@bbllyfalse \@bburxfalse \@bburyfalse \@heightfalse \@widthfalse \@rheightfalse \@rwidthfalse \def\@p@sbbllx{}\def\@p@sbblly{} \def\@p@sbburx{}\def\@p@sbbury{} \def\@p@sheight{}\def\@p@swidth{} \def\@p@srheight{}\def\@p@srwidth{} \def\@p@sangle{0} \def\@p@sfile{} \def\@p@sbbfile{} \def\@p@scost{10} \def\@sc{} \@prologfilefalse \@postlogfilefalse \@clipfalse \if@noisy \@verbosetrue \else \@verbosefalse \fi } % % Go through the options setting things up. % \def\parse@ps@parms#1{ \@psdo\@psfiga:=#1\do {\expandafter\@setparms\@psfiga,}} % % Compute bb height and width % \newif\ifno@bb \def\bb@missing{ \if@verbose{ \ps@typeout{psfig: searching \@p@sbbfile \space for bounding box} }\fi \no@bbtrue \epsf@getbb{\@p@sbbfile} \ifno@bb \else \bb@cull\epsf@llx\epsf@lly\epsf@urx\epsf@ury\fi } \def\bb@cull#1#2#3#4{ \dimen100=#1 bp\edef\@p@sbbllx{\number\dimen100} \dimen100=#2 bp\edef\@p@sbblly{\number\dimen100} \dimen100=#3 bp\edef\@p@sbburx{\number\dimen100} \dimen100=#4 bp\edef\@p@sbbury{\number\dimen100} \no@bbfalse } % rotate point (#1,#2) about (0,0). % The sine and cosine of the angle are already stored in \sine and % \cosine. The result is placed in (\p@intvaluex, \p@intvaluey). \newdimen\p@intvaluex \newdimen\p@intvaluey \def\rotate@#1#2{{\dimen0=#1 sp\dimen1=#2 sp % calculate x' = x \cos\theta - y \sin\theta \global\p@intvaluex=\cosine\dimen0 \dimen3=\sine\dimen1 \global\advance\p@intvaluex by -\dimen3 % calculate y' = x \sin\theta + y \cos\theta \global\p@intvaluey=\sine\dimen0 \dimen3=\cosine\dimen1 \global\advance\p@intvaluey by \dimen3 }} \def\compute@bb{ \no@bbfalse \if@bbllx \else \no@bbtrue \fi \if@bblly \else \no@bbtrue \fi \if@bburx \else \no@bbtrue \fi \if@bbury \else \no@bbtrue \fi \ifno@bb \bb@missing \fi \ifno@bb \ps@typeout{FATAL ERROR: no bb supplied or found} \no-bb-error \fi % %\ps@typeout{BB: \@p@sbbllx, \@p@sbblly, \@p@sbburx, \@p@sbbury} % % store height/width of original (unrotated) bounding box \count203=\@p@sbburx \count204=\@p@sbbury \advance\count203 by -\@p@sbbllx \advance\count204 by -\@p@sbblly \edef\ps@bbw{\number\count203} \edef\ps@bbh{\number\count204} %\ps@typeout{ psbbh = \ps@bbh, psbbw = \ps@bbw } \if@angle \Sine{\@p@sangle}\Cosine{\@p@sangle} {\dimen100=\maxdimen\xdef\r@p@sbbllx{\number\dimen100} \xdef\r@p@sbblly{\number\dimen100} \xdef\r@p@sbburx{-\number\dimen100} \xdef\r@p@sbbury{-\number\dimen100}} % % Need to rotate all four points and take the X-Y extremes of the new % points as the new bounding box. \def\minmaxtest{ \ifnum\number\p@intvaluex<\r@p@sbbllx \xdef\r@p@sbbllx{\number\p@intvaluex}\fi \ifnum\number\p@intvaluex>\r@p@sbburx \xdef\r@p@sbburx{\number\p@intvaluex}\fi \ifnum\number\p@intvaluey<\r@p@sbblly \xdef\r@p@sbblly{\number\p@intvaluey}\fi \ifnum\number\p@intvaluey>\r@p@sbbury \xdef\r@p@sbbury{\number\p@intvaluey}\fi } % lower left \rotate@{\@p@sbbllx}{\@p@sbblly} \minmaxtest % upper left \rotate@{\@p@sbbllx}{\@p@sbbury} \minmaxtest % lower right \rotate@{\@p@sbburx}{\@p@sbblly} \minmaxtest % upper right \rotate@{\@p@sbburx}{\@p@sbbury} \minmaxtest \edef\@p@sbbllx{\r@p@sbbllx}\edef\@p@sbblly{\r@p@sbblly} \edef\@p@sbburx{\r@p@sbburx}\edef\@p@sbbury{\r@p@sbbury} %\ps@typeout{rotated BB: \r@p@sbbllx, \r@p@sbblly, \r@p@sbburx, \r@p@sbbury} \fi \count203=\@p@sbburx \count204=\@p@sbbury \advance\count203 by -\@p@sbbllx \advance\count204 by -\@p@sbblly \edef\@bbw{\number\count203} \edef\@bbh{\number\count204} %\ps@typeout{ bbh = \@bbh, bbw = \@bbw } } % % \in@hundreds performs #1 * (#2 / #3) correct to the hundreds, % then leaves the result in @result % \def\in@hundreds#1#2#3{\count240=#2 \count241=#3 \count100=\count240 % 100 is first digit #2/#3 \divide\count100 by \count241 \count101=\count100 \multiply\count101 by \count241 \advance\count240 by -\count101 \multiply\count240 by 10 \count101=\count240 %101 is second digit of #2/#3 \divide\count101 by \count241 \count102=\count101 \multiply\count102 by \count241 \advance\count240 by -\count102 \multiply\count240 by 10 \count102=\count240 % 102 is the third digit \divide\count102 by \count241 \count200=#1\count205=0 \count201=\count200 \multiply\count201 by \count100 \advance\count205 by \count201 \count201=\count200 \divide\count201 by 10 \multiply\count201 by \count101 \advance\count205 by \count201 % \count201=\count200 \divide\count201 by 100 \multiply\count201 by \count102 \advance\count205 by \count201 % \edef\@result{\number\count205} } \def\compute@wfromh{ % computing : width = height * (bbw / bbh) \in@hundreds{\@p@sheight}{\@bbw}{\@bbh} %\ps@typeout{ \@p@sheight * \@bbw / \@bbh, = \@result } \edef\@p@swidth{\@result} %\ps@typeout{w from h: width is \@p@swidth} } \def\compute@hfromw{ % computing : height = width * (bbh / bbw) \in@hundreds{\@p@swidth}{\@bbh}{\@bbw} %\ps@typeout{ \@p@swidth * \@bbh / \@bbw = \@result } \edef\@p@sheight{\@result} %\ps@typeout{h from w : height is \@p@sheight} } \def\compute@handw{ \if@height \if@width \else \compute@wfromh \fi \else \if@width \compute@hfromw \else \edef\@p@sheight{\@bbh} \edef\@p@swidth{\@bbw} \fi \fi } \def\compute@resv{ \if@rheight \else \edef\@p@srheight{\@p@sheight} \fi \if@rwidth \else \edef\@p@srwidth{\@p@swidth} \fi %\ps@typeout{rheight = \@p@srheight, rwidth = \@p@srwidth} } % % Compute any missing values \def\compute@sizes{ \compute@bb \if@scalefirst\if@angle % at this point the bounding box has been adjsuted correctly for % rotation. PSFIG does all of its scaling using \@bbh and \@bbw. If % a width= or height= was specified along with \psscalefirst, then the % width=/height= value needs to be adjusted to match the new (rotated) % bounding box size (specifed in \@bbw and \@bbh). % \ps@bbw width= % ------- = ---------- % \@bbw new width= % so `new width=' = (width= * \@bbw) / \ps@bbw; where \ps@bbw is the % width of the original (unrotated) bounding box. \if@width \in@hundreds{\@p@swidth}{\@bbw}{\ps@bbw} \edef\@p@swidth{\@result} \fi \if@height \in@hundreds{\@p@sheight}{\@bbh}{\ps@bbh} \edef\@p@sheight{\@result} \fi \fi\fi \compute@handw \compute@resv} % % % \def\OzTeXSpecials{ \special{empty.ps /@isp {true} def} \special{empty.ps \@p@swidth \space \@p@sheight \space \@p@sbbllx \space \@p@sbblly \space \@p@sbburx \space \@p@sbbury \space startTexFig \space } \if@clip{ \if@verbose{ \ps@typeout{(clip)} }\fi \special{empty.ps doclip \space } }\fi \if@angle{ \if@verbose{ \ps@typeout{(rotate)} }\fi \special {empty.ps \@p@sangle \space rotate \space} }\fi \if@prologfile \special{\@prologfileval \space } \fi \if@decmpr{ \if@verbose{ \ps@typeout{psfig: Compression not available in OzTeX version \space } }\fi }\else{ \if@verbose{ \ps@typeout{psfig: including \@p@sfile \space } }\fi \special{epsf=\@p@sfile \space } }\fi \if@postlogfile \special{\@postlogfileval \space } \fi \special{empty.ps /@isp {false} def} } \def\DvipsSpecials{ % \special{ps::[begin] \@p@swidth \space \@p@sheight \space \@p@sbbllx \space \@p@sbblly \space \@p@sbburx \space \@p@sbbury \space startTexFig \space } \if@clip{ \if@verbose{ \ps@typeout{(clip)} }\fi \special{ps:: doclip \space } }\fi \if@angle \if@verbose{ \ps@typeout{(clip)} }\fi \special {ps:: \@p@sangle \space rotate \space} \fi \if@prologfile \special{ps: plotfile \@prologfileval \space } \fi \if@decmpr{ \if@verbose{ \ps@typeout{psfig: including \@p@sfile.Z \space } }\fi \special{ps: plotfile "`zcat \@p@sfile.Z" \space } }\else{ \if@verbose{ \ps@typeout{psfig: including \@p@sfile \space } }\fi \special{ps: plotfile \@p@sfile \space } }\fi \if@postlogfile \special{ps: plotfile \@postlogfileval \space } \fi \special{ps::[end] endTexFig \space } } % % \psfig % usage : \psfig{file=, height=, width=, bbllx=, bblly=, bburx=, bbury=, % rheight=, rwidth=, clip=} % % "clip=" is a switch and takes no value, but the `=' must be present. \def\psfig#1{\vbox { % do a zero width hard space so that a single % \psfig in a centering enviornment will behave nicely %{\setbox0=\hbox{\ }\ \hskip-\wd0} % \ps@init@parms \parse@ps@parms{#1} \compute@sizes % \ifnum\@p@scost<\@psdraft{ \PsfigSpecials % Create the vbox to reserve the space for the figure. \vbox to \@p@srheight sp{ % 1/92 TJD Changed from "true sp" to "sp" for magnification. \hbox to \@p@srwidth sp{ \hss } \vss } }\else{ % draft figure, just reserve the space and print the % path name. \if@draftbox{ % Verbose draft: print file name in box % 10/93 TJD changed to fbox from frame \hbox{\fbox{\vbox to \@p@srheight sp{ \vss \hbox to \@p@srwidth sp{ \hss % 10/93 TJD deleted to avoid ``_'' problems % \@p@sfile \hss } \vss }}} }\else{ % Non-verbose draft \vbox to \@p@srheight sp{ \vss \hbox to \@p@srwidth sp{\hss} \vss } }\fi }\fi }} \psfigRestoreAt \setDriver \let\@=\LaTeXAtSign latex2rtf-2.3.18/test/misc3.tex0000777000175000017500000025000013050672360016441 0ustar wilfriedwilfried\documentclass[a4paper,12pt]{article} \addtolength{\evensidemargin}{-25pt} \addtolength{\oddsidemargin}{-25pt} \def\displayandname#1{\rlap{$\displaystyle\csname #1\endcsname$}% \qquad \texttt{\char92 #1}} \def\mathlexicon#1{$$\vcenter{\halign{\displayandname{##}\hfil&&\qquad \displayandname{##}\hfil\cr #1}}$$} \begin{document} \title{Getting Started with \LaTeX} \author{David R. Wilkins} \date{2nd Edition\\[3pt] Copyright \copyright\ David R. Wilkins 1995} \maketitle \tableofcontents \section{Introduction to \LaTeX} \subsection{What is \LaTeX?} \LaTeX\ is a computer program for typesetting documents. It takes a computer file, prepared according to the rules of \LaTeX\, and converts it to a form that may be printed on a high-quality printer, such as a laser writer, to produce a printed document of a quality comparable with good quality books and journals. Simple documents, which do not contain mathematical formulae or tables may be produced very easily: effectively all one has to do is to type the text straight in (though observing certain rules relating to quotation marks and punctuation dashes). Typesetting mathematics is somewhat more complicated, but even here \LaTeX\ is comparatively straightforward to use when one considers the complexity of some of the formulae that it has to produce and the large number of mathematical symbols which it has to produce. \LaTeX\ is one of a number of `dialects' of \TeX, all based on the version of \TeX\ created by D. E. Knuth which is known as Plain \TeX. \LaTeX\ (created by L. B. Lamport) is one of these `dialects'. It is particularly suited to the production of long articles and books, since it has facilities for the automatic numbering of chapters, sections, theorems, equations etc., and also has facilities for cross-referencing. It is probably one of the most suitable version of \LaTeX\ for beginners to use. \subsection{A Typical \LaTeX\ Input File} In order to produce a document using \LaTeX, we must first create a suitable \emph{input file} on the computer. We apply the \LaTeX\ program to the input file and then use the printer to print out the so-called `DVI' file produced by the \LaTeX\ program (after first using another program to translate the `DVI' file into a form that the printer can understand). Here is an example of a typical \LaTeX\ input file: \begin{quote} \begin{verbatim} \documentclass[a4paper,12pt]{article} \begin{document} The foundations of the rigorous study of \textit{analysis} were laid in the nineteenth century, notably by the mathematicians Cauchy and Weierstrass. Central to the study of this subject are the formal definitions of \textit{limits} and \textit{continuity}. Let $D$ be a subset of $\bf R$ and let $f \colon D \to \textbf{R}$ be a real-valued function on $D$. The function $f$ is said to be \textit{continuous} on $D$ if, for all $\epsilon > 0$ and for all $x \in D$, there exists some $\delta > 0$ (which may depend on $x$) such that if $y \in D$ satisfies \[ |y - x| < \delta \] then \[ |f(y) - f(x)| < \epsilon. \] One may readily verify that if $f$ and $g$ are continuous functions on $D$ then the functions $f+g$, $f-g$ and $f.g$ are continuous. If in addition $g$ is everywhere non-zero then $f/g$ is continuous. \end{document} \end{verbatim} \end{quote} When we apply \LaTeX\ to these paragraphs we produce the text \begin{quotation} \normalsize The foundations of the rigorous study of \textit{analysis} were laid in the nineteenth century, notably by the mathematicians Cauchy and Weierstrass. Central to the study of this subject are the formal definitions of \textit{limits} and \textit{continuity}. Let $D$ be a subset of $\bf R$ and let $f \colon D \to \textbf{R}$ be a real-valued function on $D$. The function $f$ is said to be \textit{continuous} on $D$ if, for all $\epsilon > 0$ and for all $x \in D$, there exists some $\delta > 0$ (which may depend on $x$) such that if $y \in D$ satisfies \[ |y - x| < \delta\] then \[ |f(y) - f(x)| < \epsilon.\] One may readily verify that if $f$ and $g$ are continuous functions on $D$ then the functions $f+g$, $f-g$ and $f.g$ are continuous. If in addition $g$ is everywhere non-zero then $f/g$ is continuous. \end{quotation} This example illustrates various features of \LaTeX. Note that the lines \begin{quote} \begin{verbatim} \documentclass[a4paper,12pt]{article} \begin{document} \end{verbatim} \end{quote} are placed at the beginning of the input file. These are followed by the main body of the text, followed by the concluding line \begin{quote} \begin{verbatim} \end{document} \end{verbatim} \end{quote} Note also that, although most characters occurring in this file have their usual meaning, yet there are special characters such as \verb/\/, \verb/$/, \verb/{/ and \verb/}/ which have special meanings within \LaTeX. Note in particular that there are sequences of characters which begin with a `backslash' \verb/\/ which are used to produce mathematical symbols and Greek letters and to accomplish tasks such as changing fonts. These sequences of characters are known as \emph{control sequences}. \subsection{Characters and Control Sequences} We now describe in more detail some of the features of \LaTeX\ illustrated in the above example. Most characters on the keyboard, such as letters and numbers, have their usual meaning. However the characters \begin{quote} \begin{verbatim} \ { } $ ^ _ % ~ # & \end{verbatim} \end{quote} are used for special purposes within \LaTeX. Thus typing one of these characters will not produce the corresponding character in the final document. Of course these characters are very rarely used in ordinary text, and there are methods of producing them when they are required in the final document. In order to typeset a mathematical document it is necessary to produce a considerable number of special mathematical symbols. One also needs to be able to change fonts. Also mathematical documents often contain arrays of numbers or symbols (matrices) and other complicated expressions. These are produced in \LaTeX\ using \emph{control sequences}. Most control sequences consist of a backslash \verb/\/ followed by a string of (upper or lower case) letters. For example, \verb/\alpha/, \verb/\textit/ and \verb/\sum/ are control sequences. In the example above we used the control sequences \verb/\textit/ and \verb/\textbf/ to change the font to \textit{italic} and \textbf{boldface} respectively. Also we used the control sequences \verb/\to/, \verb/\in/, \verb/\delta/ and \verb/\epsilon/ to produce the mathematical symbols $\to$ and $\in$ and the Greek letters $\delta$ and $\epsilon$ There is another variety of control sequence which consists of a backslash followed by a \emph{single} character that is not a letter. Examples of control sequences of this sort are \verb/\{/, \verb/\"/ and \verb/\$/. The special characters \verb/{/ and \verb/}/ are used for \emph{grouping} purposes. Everything enclosed within matching pair of such brackets is treated as a single unit. We have applied these brackets in the example above whenever we changed fonts. We shall see other instances where one needs to use \verb/{/ and \verb/}/ in \LaTeX\ to group words and symbols together (e.g., when we need to produce superscripts and subscripts which contain more than one symbol). The special character \verb/$/ is used when one is changing from ordinary text to a mathematical expression and when one is changing back to ordinary text. Thus we used \begin{quote} \begin{verbatim} for all $\epsilon > 0$ and for all $x \in D$, \end{verbatim} \end{quote} to produce the phrase \begin{quotation} for all $\epsilon > 0$ and for all $x \in D$, \end{quotation} in the example given above. Note also that we used \verb/\[/ and \verb/\]/ in the example above to mark the beginning and end respectively of a mathematical formula that is displayed on a separate line. The remaining special characters \begin{quote} \begin{verbatim} ^ _ % ~ # & \end{verbatim} \end{quote} have special purposes within \LaTeX\ that we shall discuss later. \section{Producing Simple Documents using \LaTeX} \subsection{Producing a \LaTeX\ Input File} We describe the structure of a typical \LaTeX\ input file. The first line of the input file should consist of a \verb/\documentclass/ command. The recommended such \verb/\documentclass/ command for mathematical articles and similar documents has the form \begin{quote} \begin{verbatim} \documentclass[a4paper,12pt]{article} \end{verbatim} \end{quote} (You do not have to worry about what this command means when first learning to use \LaTeX: its effect is to ensure that the final document is correctly positioned on A4 size paper and that the text is of a size that is easy to read.) There are variants of this \verb/\documentclass/ command which are appropriate for letters or for books. The \verb/documentstyle/ command may be followed by certain other optional commands, such as the \verb/\pagestyle/ command. It is not necessary to find out about these commands when first learning to use \LaTeX. After the \verb/\documentclass/ command and these other optional commands, we place the command \begin{quote} \begin{verbatim} \begin{document} \end{verbatim} \end{quote} This command is then followed by the main body of the text, in the format prescribed by the rules of \LaTeX. Finally, we end the input file with a line containing the command \begin{quote} \begin{verbatim} \end{document} \end{verbatim} \end{quote} \subsection{Producing Ordinary Text using \LaTeX} To produce a simple document using \LaTeX\ one should create a \LaTeX\ input file, beginning with a \verb/\documentclass/ command and the \verb/\begin{document}/ command, as described above. The input file should end with the \verb/\end{document}/ command, and the text of the document should be sandwiched between the \verb/\begin{document}/ and \verb/\end{document}/ commands in the manner described below. If one merely wishes to type in ordinary text, without complicated mathematical formulae or special effects such as font changes, then one merely has to type it in as it is, leaving a completely blank line between successive paragraphs. You do not have to worry about paragraph indentation: \LaTeX\ will automatically indent all paragraphs with the exception of the first paragraph of a new section (unless you take special action to override the conventions adopted by \LaTeX) For example, suppose that we wish to create a document containing the following paragraphs: \begin{quotation} \normalsize \noindent If one merely wishes to type in ordinary text, without complicated mathematical formulae or special effects such as font changes, then one merely has to type it in as it is, leaving a completely blank line between successive paragraphs. You do not have to worry about paragraph indentation: all paragraphs will be indented with the exception of the first paragraph of a new section. One must take care to distinguish between the `left quote' and the `right quote' on the computer terminal. Also, one should use two `single quote' characters in succession if one requires ``double quotes''. One should never use the (undirected) `double quote' character on the computer terminal, since the computer is unable to tell whether it is a `left quote' or a `right quote'. One also has to take care with dashes: a single dash is used for hyphenation, whereas three dashes in succession are required to produce a dash of the sort used for punctuation---such as the one used in this sentence. \end{quotation} To create this document using \LaTeX\ we use the following input file: \begin{quote} \begin{verbatim} \documentclass[a4paper,12pt]{article} \begin{document} If one merely wishes to type in ordinary text, without complicated mathematical formulae or special effects such as font changes, then one merely has to type it in as it is, leaving a completely blank line between successive paragraphs. You do not have to worry about paragraph indentation: all paragraphs will be indented with the exception of the first paragraph of a new section. One must take care to distinguish between the `left quote' and the `right quote' on the computer terminal. Also, one should use two `single quote' characters in succession if one requires ``double quotes''. One should never use the (undirected) `double quote' character on the computer terminal, since the computer is unable to tell whether it is a `left quote' or a `right quote'. One also has to take care with dashes: a single dash is used for hyphenation, whereas three dashes in succession are required to produce a dash of the sort used for punctuation---such as the one used in this sentence. \end{document} \end{verbatim} \end{quote} Having created the input file, one then has to run it through the \LaTeX\ program and then print it out the resulting output file (known as a `DVI' file). \subsection{Blank Spaces and Carriage Returns in the Input File} \LaTeX\ treats the carriage return at the end of a line as though it were a blank space. Similarly \LaTeX\ treats tab characters as blank spaces. Moreover, \LaTeX\ regards a sequence of blank spaces as though it were a single space, and similarly it will ignore blank spaces at the beginning or end of a line in the input file. Thus, for example, if we type \begin{quote} \begin{verbatim} This is a silly example of a file with many spaces. This is the beginning of a new paragraph. \end{verbatim} \end{quote} then we obtain \begin{quotation} This is a silly example of a file with many spaces. This is the beginning of a new paragraph. \end{quotation} It follows immediately from this that one will obtain the same results whether one types one space or two spaces after a full stop: \LaTeX\ does not distinguish between the two cases. Any spaces which follow a control sequence will be ignored by \LaTeX. If you really need a blank space in the final document following whatever is produced by the control sequence, then you must precede this blank by a \emph{backslash} \verb/\/. Thus in order to obtain the sentence \begin{quotation} \LaTeX\ is a very powerful computer typesetting program. \end{quotation} we must type \begin{quote} \begin{verbatim} \LaTeX\ is a very powerful computer typesetting program. \end{verbatim} \end{quote} (Here the control sequence \verb/TeX/ is used to produce the \LaTeX\ logo.) In general, preceding a blank space by a backslash forces \LaTeX\ to include the blank space in the final document. As a general rule, you should never put a blank space after a left parenthesis or before a right parenthesis. If you were to put a blank space in these places, then you run the risk that \LaTeX\ might start a new line immediately after the left parenthesis or before the right parenthesis, leaving the parenthesis marooned at the beginning or end of a line. \subsection{Quotation Marks and Dashes} Single quotation marks are produced in \LaTeX\ using \verb/`/ and \verb/'/. Double quotation marks are produced by typing \verb/``/ and \verb/''/. (The `undirected double quote character \verb/"/ produces double right quotation marks: it should \emph{never} be used where left quotation marks are required.) \LaTeX\ allows you to produce dashes of various length, known as `hyphens', `en-dashes' and `em-dashes'. Hyphens are obtained in \LaTeX\ by typing \verb/-/, en-dashes by typing \verb/--/ and em-dashes by typing \verb/---/. One normally uses en-dashes when specifying a range of numbers. Thus for example, to specify a range of page numbers, one would type \begin{quote} \begin{verbatim} on pages 155--219. \end{verbatim} \end{quote} Dashes used for punctuating are often typeset as em-dashes, especially in older books. These are obtained by typing \verb/---/. The dialogue \begin{quotation} ``You \emph{were} a little grave,'' said Alice. ``Well just then I was inventing a new way of getting over a gate---would you like to hear it?'' ``Very much indeed,'' Alice said politely. ``I'll tell you how I came to think of it,'' said the Knight. ``You see, I said to myself `The only difficulty is with the feet: the \emph{head} is high enough already.' Now, first I put my head on the top of the gate---then the head's high enough---then I stand on my head---then the feet are high enough, you see---then I'm over, you see.'' \end{quotation} (taken from \emph{Alice through the Looking Glass}, by Lewis Carroll) illustrates the use of quotation marks and dashes. It is obtained in \LaTeX\ from the following input: \begin{quote} \begin{verbatim} ``You \emph{were} a little grave,'' said Alice. ``Well just then I was inventing a new way of getting over a gate---would you like to hear it?'' ``Very much indeed,'' Alice said politely. ``I'll tell you how I came to think of it,'' said the Knight. ``You see, I said to myself `The only difficulty is with the feet: the \emph{head} is high enough already.' Now, first I put my head on the top of the gate---then the head's high enough---then I stand on my head---then the feet are high enough, you see---then I'm over, you see.'' \end{verbatim} \end{quote} Sometimes you need single quotes immediately following double quotes, or vica versa, as in \begin{quotation} ``I regard computer typesetting as being reasonably `straightforward'\,'' he said. \end{quotation} The way to typeset this correctly in \LaTeX\ is to use the control sequence \verb/\,/ between the quotation marks, so as to obtain the necessary amount of separation. The above example is thus produced with the input \begin{quote} \begin{verbatim} ``I regard computer typesetting as being reasonably `straightforward'\,'' he said. \end{verbatim} \end{quote} \subsection{Section Headings in \LaTeX} Section headings of various sizes are produced (in the \textbf{article} document style) using the commands \verb/\section/,\verb/\subsection/ and \verb/\subsubsection/ commands. \LaTeX\ will number the sections and subsections automatically. The title of the section should be surrounded by curly brackets and placed immediately after the relevant command. Thus if we type \begin{quote} \begin{verbatim} \section{Section Headings} We explain in this section how to obtain headings for the various sections and subsections of our document. \subsection{Headings in the `article' Document Style} In the `article' style, the document may be divided up into sections, subsections and subsubsections, and each can be given a title, printed in a boldface font, simply by issuing the appropriate command. \end{verbatim} \end{quote} then the title of the section and that of the subsection will be printed in a large boldface font, and will be numbered accordingly. Other document styles (such as the \textbf{book} and \textbf{letter} styles) have other `sectioning' commands available (for example, the \textbf{book} style has a \verb/\chapter/ command for beginning a new chapter). Sometimes one wishes to suppress the automatic numbering provided by \LaTeX. This can be done by placing an asterisk before the title of the section or subsection. Thus, for example, the section numbers in the above example could be suppressed by typing \begin{quote} \begin{verbatim} \section*{Section Headings} We explain in this section how to obtain headings for the various sections and subsections of our document. \subsection*{Headings in the `article' Document Style} In the `article' style, the document may be divided up into sections, subsections and subsubsections, and each can be given a title, printed in a boldface font, simply by issuing the appropriate command. \end{verbatim} \end{quote} \subsection{Changing Fonts in Text Mode} \LaTeX\ has numerous commands for changing the typestyle. The most useful of these is \verb/\emph{/\emph{text}\verb/}/ which \emph{emphasizes} some piece of text, setting it usually in an \textit{italic font} (unless the surrounding text is already italicized). Thus for example, the text \begin{quotation} The basic results and techniques of \emph{Calculus} were discovered and developed by \emph{Newton} and \emph{Leibniz}, though many of the basic ideas can be traced to earlier work of \emph{Cavalieri}, \emph{Fermat}, \emph{Barrow} and others. \end{quotation} is obtained by typing \begin{quote} \begin{verbatim} The basic results and techniques of \emph{Calculus} were discovered and developed by \emph{Newton} and \emph{Leibniz}, though many of the basic ideas can be traced to earlier work of \emph{Cavalieri}, \emph{Fermat}, \emph{Barrow} and others. \end{verbatim} \end{quote} Another useful font-changing command is \verb/\textbf{/\emph{text}\verb/}/, which typesets the specified portion of text in \textbf{boldface}. A \emph{font family} or \emph{typeface} in \LaTeX\ consists of a collection of related fonts characterized by \emph{size}, \emph{shape} and \emph{series}. The font families available in \LaTeX\ include \textrm{roman}, \textsf{sans serif} and \texttt{typewriter}: \begin{itemize} \item \textrm{Roman is normally the default family and includes \textup{upright}, \textit{italic}, \textsl{slanted}, \textsc{small caps} and \textbf{boldface} fonts of various sizes.} \item \textsf{There is a sans serif family with \textup{upright}, \textsl{slanted} and \textbf{boldface} fonts of various sizes.} \item \texttt{There is a typewriter family with \textup{upright}, \textit{italic}, \textsl{slanted}\newline and \textsc{small caps} fonts of various sizes.} \end{itemize} The sizes of fonts used in \LaTeX\ are can be determined and changed by means of the control sequences \verb/\tiny/, \verb/\scriptsize/, \verb/\footnotesize/, \verb/\small/, \verb/\normalsize/, \verb/\large/, \verb/\Large/, \verb/\LARGE/, \verb/\huge/ and \verb/\HUGE/: \begin{quote} {\tiny This text is \texttt{tiny}}. {\scriptsize This text is \texttt{scriptsize}}. {\footnotesize This text is \texttt{footnotesize}}. {\small This text is \texttt{small}}. {\normalsize This text is \texttt{normalsize}}. {\large This text is \texttt{large}}. {\Large This text is \texttt{Large}}. {\LARGE This text is \texttt{LARGE}}. {\huge This text is \texttt{huge}}. {\Huge This text is \texttt{Huge}}. \end{quote} \vspace{6pt} The \emph{shape} of a font can be \textup{upright}, \textit{italic}, \textsl{slanted} or \textsc{small caps}: \begin{itemize} \item \textup{The LaTeX command} \verb/\textup{/\emph{text}\verb/}/ \textup{typesets the specified text with an upright shape: this is normally the default shape.} \item \textit{The LaTeX command} \verb/\textit{/\emph{text}\verb/}/ \textit{typesets the specified text with an italic shape.} \item \textsl{The LaTeX command} \verb/\textsl{/\emph{text}\verb/}/ \textsl{typesets the specified text with a slanted shape: slanted text is similar to italic.} \item \textsc{The LaTeX command} \verb/\textsc{/\emph{text}\verb/}/ \textsc{typesets the specified text with a small caps shape in which all letters are capitals (with uppercase letters taller than lowercase letters).} \end{itemize} The \emph{series} of a font can be \textmd{medium} (the default) or \textbf{boldface}: \begin{itemize} \item \textup{The LaTeX command} \verb/\textmd{/\emph{text}\verb/}/ \textmd{typesets the specified text with a medium series font.} \item \textbf{The LaTeX command} \verb/\textbf{/\emph{text}\verb/}/ \textbf{typesets the specified text with a boldface series font.} \end{itemize} If the necessary fonts are available, one can combine changes to the size, shape and series of a font, for example producing \textbf{\textsl{boldface slanted text}} by typing \begin{quote} \begin{verbatim} \textbf{\textsl{boldface slanted text}}. \end{verbatim} \end{quote} There are in \LaTeX\ font declarations corresponding to the the font-changing commands described above. When included in the \LaTeX\ input such declarations determine the type-style of the subsequent text (till the next font declaration or the end of the current `group' delimited by curly brackets or by appropriate \verb/\begin/ and \verb/\end/ commands). Here is a list of font-changing commands and declarations in text mode: \begin{quote} \begin{tabular}{lll} \emph{Command}&\emph{Declaration}&\\ \verb/\textrm/&\verb/\rmfamily/&{\rmfamily Roman family}\\ \verb/\textsf/&\verb/\sffamily/&{\sffamily Sans serif family}\\ \verb/\texttt/&\verb/\ttfamily/&{\ttfamily Typewriter family}\\[6pt] \verb/\textup/&\verb/\upshape/&{\upshape Upright shape}\\ \verb/\textit/&\verb/\itshape/&{\itshape Italic shape}\\ \verb/\textsl/&\verb/\slshape/&{\slshape Slanted shape}\\ \verb/\textsc/&\verb/\scshape/&{\scshape Small caps shape}\\[6pt] \verb/\textmd/&\verb/\mdseries/&{\mdseries Medium series}\\ \verb/\textbf/&\verb/\bfseries/&{\bfseries Boldface series}\\ \end{tabular} \end{quote} \subsection{Accents used in Text} There are a variety of control sequences for producing accents. For example, the control sequence \verb/\'{o}/ produces an acute accent on the letter \verb/o/. Thus typing \begin{quote} \begin{verbatim} Se\'{a}n \'{O} Cinn\'{e}ide. \end{verbatim} \end{quote} produces \begin{quotation} Se\'{a}n \'{O} Cinn\'{e}ide. \end{quotation} Similarly we use the control sequence \verb/\`/ to produce the grave accent in `alg\`{e}bre' and we use \verb/\"/ to produce the umlaut in `Universit\"{a}t'. The accents provided by \LaTeX\ include the following: \begin{quote} \begin{tabular}{lll} \verb/\'{e}/ & \'{e} & e.g., \verb/math\'{e}matique/ yields `math\'{e}matique' \\ \verb/\`{e}/ & \`{e} & e.g., \verb/alg\`{e}bre/ yields `alg\`{e}bre' \\ \verb/\^{e}/ & \^{e} & e.g., \verb/h\^{o}te/ yields `h\^{o}te' \\ \verb/\"{o}/ & \"{o} & e.g., \verb/H\"{o}lder/ yields `H\"{o}lder' \\ \verb/\~{n}/ & \~{n} & e.g., \verb/ma\~{n}ana/ yields `ma\~{n}ana' \\ \verb/\={o}/ & \={o} & \\ \verb/\.{o}/ & \.{o} & \\ \verb/\u{o}/ & \u{o} & \\ \verb/\v{c}/ & \v{c} & e.g., \verb/\v{C}ech/ yields `\v{C}ech' \\ \verb/\H{o}/ & \H{o} & \\ \verb/\t{oo}/ & \t{oo} & \\ \verb/\c{c}/ & \c{c} & e.g., \verb/gar\c{c}on/ yields `gar\c{c}on' \\ \verb/\d{o}/ & \d{o} & \\ \verb/\b{o}/ & \b{o} & \end{tabular} \end{quote} These accents are for use in ordinary text. They cannot be used within mathematical formulae, since different control sequences are used to produce accents within mathematics. The control sequences \verb/\i/ and \verb/\j/ produce dotless `i' and `j'. These are required when placing an accent on the letter. Thus \'{i} is produced by typing \verb/\'{\i}/. \subsection{Active Characters and Special Symbols in Text} The `active characters' \begin{quote} \begin{verbatim} # $ % & \ ^ _ { } ~ \end{verbatim} \end{quote} have special purposes within \LaTeX. Thus they cannot be produced in the final document simply by typing them directly. On the rare occasions when one needs to use the special characters \begin{quote} \#\ \$\ \%\ \&\ \_\ \{\ \} \end{quote} in the final document, they can be produced by typing the control sequences \begin{quote} \begin{verbatim} \# \$ \% \& \_ \{ \} \end{verbatim} \end{quote} respectively. However the characters \verb/\/, \verb/^/ and \verb/~/ cannot be produced simply by preceding them with a backslash. They can however be produced using \verb/\char92/ (in the \verb/\texttt/ font only), \verb/\char94/ and \verb/\char126/ respectively. (The decimal numbers 92, 94 and 126 are the ASCII codes of these characters.) Other special symbols can be introduced into text using the appropriate control sequences: \begin{quote} \begin{tabular}{l|l} \emph{Symbol} & \emph{Control Sequence}\\ \hline \oe, \OE & \verb/\oe, \OE/ \\ \ae, \AE & \verb/\ae, \AE/ \\ \aa, \AA & \verb/\aa, \AA/ \\ \o, \O & \verb/\o, \O/ \\ \l, \L & \verb/\l, \L/ \\ \ss & \verb/\ss/ \\ ?` & \verb/?`/ \\ !` & \verb/!`/ \\ \dag & \verb/\dag/ \\ \ddag & \verb/\ddag/ \\ \S & \verb/\S/ \\ \P & \verb/\P/ \\ \copyright & \verb/\copyright/ \\ \pounds & \verb/\pounds/ \\ \i & \verb/\i/ \\ \j & \verb/\j/ \end{tabular} \end{quote} \section{Producing Mathematical Formulae using \LaTeX} \subsection{Mathematics Mode} In order to obtain a mathematical formula using \LaTeX, one must enter \emph{mathematics mode} before the formula and leave it afterwards. Mathematical formulae can occur either embedded in text or else displayed between lines of text. When a formula occurs within the text of a paragraph one should place a \verb/$/ sign before and after the formula, in order to enter and leave mathematics mode. Thus to obtain a sentence like \begin{quotation} Let $f$ be the function defined by $f(x) = 3x + 7$, and let $a$ be a positive real number. \end{quotation} one should type \begin{quote} \begin{verbatim} Let $f$ be the function defined by $f(x) = 3x + 7$, and let $a$ be a positive real number. \end{verbatim} \end{quote} In particular, note that even mathematical expressions consisting of a single character, like $f$ and $a$ in the example above, are placed within \verb/$/ signs. This is to ensure that they are set in italic type, as is customary in mathematical typesetting. \LaTeX\ also allows you to use \verb/\(/ and \verb/\)/ to mark the beginning and the end respectively of a mathematical formula embedded in text. Thus \begin{quotation} Let \( f \) be the function defined by \( f(x) = 3x + 7 \). \end{quotation} may be produced by typing \begin{quote} \begin{verbatim} Let \( f \) be the function defined by \( f(x) = 3x + 7 \). \end{verbatim} \end{quote} However this use of \verb/\(/ ... \verb/\)/ is only permitted in \LaTeX: other dialects of TeX such as Plain \TeX\ and AmSTeX use \verb/$/ ... \verb/$/. In order to obtain a mathematical formula or equation which is displayed on a line by itself, one places \verb/\[/ before and \verb/\]/ after the formula. Thus to obtain \begin{quotation} If $f(x) = 3x + 7$ and $g(x) = x + 4$ then \[ f(x) + g(x) = 4x + 11 \] and \[ f(x)g(x) = 3x^2 + 19x +28. \] \end{quotation} one would type \begin{quote} \begin{verbatim} If $f(x) = 3x + 7$ and $g(x) = x + 4$ then \[ f(x) + g(x) = 4x + 11 \] and \[ f(x)g(x) = 3x^2 + 19x +28. \] \end{verbatim} \end{quote} (Here the character \verb/^/ is used to obtain a superscript.) \LaTeX\ provides facilities for the automatic numbering of displayed equations. If you want an numbered equation then you use \verb/\begin{equation}/ and \verb/\end{equation}/ instead of using \verb/\[/ and \verb/\]/ . Thus \begin{quote} \begin{verbatim} If $f(x) = 3x + 7$ and $g(x) = x + 4$ then \begin{equation} f(x) + g(x) = 4x + 11 \end{equation} and \begin{equation} f(x)g(x) = 3x^2 + 19x +28. \end{equation} \end{verbatim} \end{quote} produces \begin{quotation} If $f(x) = 3x + 7$ and $g(x) = x + 4$ then \begin{equation} f(x) + g(x) = 4x + 11 \end{equation} and \begin{equation} f(x)g(x) = 3x^2 + 19x +28. \end{equation} \end{quotation} \subsection{Characters in Mathematics Mode} All the characters on the keyboard have their standard meaning in mathematics mode, with the exception of the characters \begin{quote} \begin{verbatim} # $ % & ~ _ ^ \ { } ' \end{verbatim} \end{quote} Letters are set in italic type. In mathematics mode the character \verb/'/ has a special meaning: typing \verb/$u' + v''$/ produces $u' + v''$ When in mathematics mode the spaces you type between letters and other symbols do not affect the spacing of the final result, since \LaTeX\ determines the spacing of characters in formulae by its own internal rules. Thus \verb/$u v + w = x$/ and \verb/$uv+w=x$/ both produce $u v + w = x$ You can also type carriage returns where necessary in your input file (e.g., if you are typing in a complicated formula with many Greek characters and funny symbols) and this will have no effect on the final result if you are in mathematics mode. To obtain the characters \begin{quote} \begin{verbatim} # $ % & _ { } \end{verbatim} \end{quote} in mathematics mode, one should type \begin{quote} \begin{verbatim} \# \$ \% \& \_ \{ \} . \end{verbatim} \end{quote} To obtain \verb/\/ in mathematics mode, one may type \verb/\backslash/. \subsection{Superscripts and Subscripts} Subscripts and superscripts are obtained using the special characters \verb/_/ and \verb/^/ respectively. Thus the identity \[ ds^2 = dx_1^2 + dx_2^2 + dx_3^2 - c^2 dt^2 \] is obtained by typing \begin{quote} \begin{verbatim} \[ ds^2 = dx_1^2 + dx_2^2 + dx_3^2 - c^2 dt^2 \] \end{verbatim} \end{quote} It can also be obtained by typing \begin{quote} \begin{verbatim} \[ ds^2 = dx^2_1 + dx^2_2 + dx^2_3 - c^2 dt^2 \] \end{verbatim} \end{quote} since, when a superscript is to appear above a subscript, it is immaterial whether the superscript or subscript is the first to be specified. Where more than one character occurs in a superscript or subscript, the characters involved should be enclosed in curly brackets. For example, the polynomial $x^{17} - 1$ is obtained by typing \verb/$x^{17} - 1$/. One may not type expressions such as \verb/$s^n^j$/ since this is ambiguous and could be interpreted either as $s^{n j}$ or as $s^{n^j}$ The first of these alternatives is obtained by typing \verb/$s^{n j}$/, the second by typing \verb/$s^{n^j}$/. A similar remark applies to subscripts. Note that one can obtain in this way double superscripts (where a superscript is placed on a superscript) and double subscripts. It is sometimes necessary to obtain expressions in which the horizontal ordering of the subscripts is significant. One can use an `empty group' \verb/{}/ to separate superscripts and subscripts that must follow one another. For example, the identity \[ R_i{}^j{}_{kl} = g^{jm} R_{imkl} = - g^{jm} R_{mikl} = - R^j{}_{ikl} \] can be obtained by typing \begin{quote} \begin{verbatim} \[ R_i{}^j{}_{kl} = g^{jm} R_{imkl} = - g^{jm} R_{mikl} = - R^j{}_{ikl} \] \end{verbatim} \end{quote} \subsection{Greek Letters} Greek letters are produced in mathematics mode by preceding the name of the letter by a backslash \verb/\/. Thus to obtain the formula $A = \pi r^2$ one types \verb/A = \pi r^2/. Here are the control sequences for the standard forms of the lowercase Greek letters:- \begin{quotation} \mathlexicon{alpha&iota&rho\cr beta&kappa&sigma\cr gamma&lambda&tau\cr delta&mu&upsilon\cr epsilon&nu&phi\cr zeta&xi&chi\cr eta&\omit\qquad \rlap{$o$}\qquad \texttt{o}\hfil&psi\cr theta&pi&omega\cr} \end{quotation} There is no special command for omicron: just use \verb/o/. Some Greek letters occur in variant forms. The variant forms are obtained by preceding the name of the Greek letter by `var'. The following table lists the usual form of these letters and the variant forms:- \begin{quotation} $$\vcenter{\halign{\displayandname{#}\hfil&&\qquad \displayandname{#}\hfil\cr epsilon&varepsilon\cr theta&vartheta\cr pi&varpi\cr rho&varrho\cr sigma&varsigma\cr phi&varphi\cr}}$$ \end{quotation} Upper case Greek letters are obtained by making the first character of the name upper case. Here are the control sequence for the uppercase letters:--- \begin{quotation} \mathlexicon{Gamma&Xi&Phi\cr Delta&Pi&Psi\cr Theta&Sigma&Omega\cr Lambda&Upsilon&\omit\hfil\cr} \end{quotation} \subsection{Mathematical Symbols} There are numerous mathematical symbols that can be used in mathematics mode. These are obtained by typing an appropriate control sequence. Miscellaneous Symbols: \begin{quotation} \mathlexicon{aleph&prime&forall\cr hbar&emptyset&exists\cr imath&nabla&neg\cr jmath&surd&flat\cr ell&top&natural\cr wp&bot&sharp\cr Re&|&clubsuit\cr Im&angle&diamondsuit\cr partial&triangle&heartsuit\cr infty&backslash&spadesuit\cr} \end{quotation} ``Large'' Operators: \begin{quotation} \mathlexicon{sum&bigcap&bigodot\cr prod&bigcup&bigotimes\cr coprod&bigsqcup&bigoplus\cr int&bigvee&biguplus\cr oint&bigwedge&\omit\hfil\cr} \end{quotation} Binary Operations: \begin{quotation} \mathlexicon{pm&cap&vee\cr mp&cup&wedge\cr setminus&uplus&oplus\cr cdot&sqcap&ominus\cr times&sqcup&otimes\cr ast&triangleleftø\cr star&triangleright&odot\cr diamond&wr&dagger\cr circ&bigcirc&ddagger\cr bullet&bigtriangleup&amalg\cr div&bigtriangledown&\omit\hfil\cr} \end{quotation} Relations: \begin{quotation} \mathlexicon{leq&geq&equiv\cr prec&succ&sim\cr preceq&succeq&simeq\cr ll&gg&asymp\cr subset&supset&approx\cr subseteq&supseteq&cong\cr sqsubseteq&sqsupseteq&bowtie\cr in&ni&propto\cr vdash&dashv&models\cr smile&mid&doteq\cr frown¶llel&perp\cr} \end{quotation} Negated Relations: \begin{quotation} \def\negdisplayandname#1{\rlap{$\displaystyle\not\csname #1\endcsname$}% \qquad \texttt{\char92 not\char92 #1}} $$\vcenter{\halign{\negdisplayandname{#}\hfil&&\qquad \negdisplayandname{#}\hfil\cr \omit\rlap{$\not<$}\qquad\texttt{\char92 not<}\hfil&\omit \qquad\rlap{$\not>$}\qquad\texttt{\char92 not>}\hfil&\omit \qquad\rlap{$\not=$}\qquad\texttt{\char92 not=}\hfil\cr leq&geq&equiv\cr prec&succ&sim\cr preceq&succeq&simeq\cr subset&supset&approx\cr subseteq&supseteq&cong\cr sqsubseteq&sqsupseteq&asymp\cr}}$$ \end{quotation} Arrows: \begin{quotation} \mathlexicon{% leftarrow&rightarrow\cr longleftarrow&longrightarrow\cr Leftarrow&Rightarrow\cr Longleftarrow&Longrightarrow\cr leftrightarrow&Leftrightarrow\cr longleftrightarrow&Longleftrightarrow\cr hookleftarrow&hookrightarrow\cr leftharpoonup&rightharpoonup\cr leftharpoondown&rightharpoondown\cr uparrow&downarrow\cr Uparrow&Downarrow\cr updownarrow&Updownarrow\cr nearrow&nwarrow\cr searrow&swarrow\cr mapsto&longmapsto\cr rightleftharpoons&\omit\hfil\cr} \end{quotation} Openings: \begin{quotation} \mathlexicon{lbrack&lfloor&lceil\cr lbrace&langle&\omit\hfil\cr} \end{quotation} Closings: \begin{quotation} \mathlexicon{rbrack&rfloor&rceil\cr rbrace&rangle&\omit\hfil\cr} \end{quotation} Alternative Names: \begin{quotation} \def\widedisplayandname#1{\rlap{$\displaystyle\csname #1\endcsname$}% \qquad\qquad \texttt{\char92 #1}} $$\vcenter{\halign{\widedisplayandname{#}\hfil&\qquad (same as \texttt{\char92 #})\hfil\cr \omit\rlap{$\not=$}\qquad\qquad \texttt{\char92 ne} or \texttt{\char92 neq}\hfil¬=\cr le&leq\cr ge&geq\cr \omit\rlap{$\{$}\qquad\qquad\texttt{\char92 \char123}\hfil&lbrace\cr \omit\rlap{$\}$}\qquad\qquad\texttt{\char92 \char125}\hfil&lbrace\cr to&rightarrow\cr gets&leftarrow\cr owns&ni\cr land&wedge\cr lor&vee\cr lnot&neg\cr vert&\omit\qquad (same as \texttt{|})\hfil\cr Vert&\omit\qquad (same as \texttt{\char92 |})\hfil\cr iff&\omit\qquad (same as \texttt{\char92 Longleftrightarrow}, but with\hfil\cr \omit\hfil&\omit\qquad\ extra space at each end)\hfil\cr colon&\omit\qquad (same as \texttt{:}, but with less space around it and\hfil\cr \omit\hfil&\omit \qquad\ less likelihood of a line break after it)\hfil\cr}}$$ \end{quotation} \subsection{Changing Fonts in Mathematics Mode} \emph{(The following applies to \LaTeX2$\epsilon$, a recent version of \LaTeX. It does not apply to older versions of \LaTeX.)} The `math italic' font is automatically used in mathematics mode unless you explicitly change the font. The rules for changing the font in mathematics mode are rather different to those applying when typesetting ordinary text. In mathematics mode any change only applies to the single character or symbol that follows (or to any text enclosed within curly brackets immediately following the control sequence). Also, to change a character to the roman or boldface font, the control sequences \verb/\mathrm/ and \verb/\mathbf/ must be used (rather than \verb/\textrm/ and \verb/\textbf/). The following example illustrates the use of boldface in mathematical formulae. To obtain \begin{quotation} Let $\mathbf{u}$,$\mathbf{v}$ and $\mathbf{w}$ be three vectors in ${\mathbf R}^3$. The volume~$V$ of the parallelepiped with corners at the points $\mathbf{0}$, $\mathbf{u}$, $\mathbf{v}$, $\mathbf{w}$, $\mathbf{u}+\mathbf{v}$, $\mathbf{u}+\mathbf{w}$, $\mathbf{v}+\mathbf{w}$ and $\mathbf{u}+\mathbf{v}+\mathbf{w}$ is given by the formula \[ V = (\mathbf{u} \times \mathbf{v}) \cdot \mathbf{w}.\] \end{quotation} one could type \begin{quote} \begin{verbatim} Let $\mathbf{u}$,$\mathbf{v}$ and $\mathbf{w}$ be three vectors in ${\mathbf R}^3$. The volume~$V$ of the parallelepiped with corners at the points $\mathbf{0}$, $\mathbf{u}$, $\mathbf{v}$, $\mathbf{w}$, $\mathbf{u}+\mathbf{v}$, $\mathbf{u}+\mathbf{w}$, $\mathbf{v}+\mathbf{w}$ and $\mathbf{u}+\mathbf{v}+\mathbf{w}$ is given by the formula \[ V = (\mathbf{u} \times \mathbf{v}) \cdot \mathbf{w}.\] \end{verbatim} \end{quote} There is also a `calligraphic' font available in mathematics mode. This is obtained using the control sequence \verb/\cal/. \emph{This font can only be used for uppercase letters.} These calligraphic letters have the form \[ \cal{A}\cal{B}\cal{C}\cal{D}\cal{E}\cal{F}\cal{G}\cal{H}\cal{I} \cal{J}\cal{K}\cal{L}\cal{M}\cal{N}\cal{O}\cal{P}\cal{Q}\cal{R} \cal{S}\cal{T}\cal{U}\cal{V}\cal{W}\cal{X}\cal{Y}\cal{Z}. \] \subsection{Standard Functions (sin, cos etc.)} The names of certain standard functions and abbreviations are obtained by typing a backlash \verb/\/ before the name. For example, one obtains \[ \cos(\theta + \phi) = \cos \theta \cos \phi - \sin \theta \sin \phi \] by typing \begin{quote} \begin{verbatim} \[ \cos(\theta + \phi) = \cos \theta \cos \phi - \sin \theta \sin \phi \] \end{verbatim} \end{quote} The following standard functions are represented by control sequences defined in \LaTeX: \[ \vcenter{\halign{$\backslash$\texttt{#}&&\quad $\backslash$\texttt{#}\cr arccos&cos&csc&exp&ker&limsup&min&sinh\cr arcsin&cosh°&gcd&lg&ln&Pr&sup\cr arctan&cot&det&hom&lim&log&sec&tan\cr arg&coth&dim&inf&liminf&max&sin&tanh\cr}} \] Names of functions and other abbreviations not in this list can be obtained by converting to the roman font. Thus one obtains $\mathrm{cosec} A$ by typing \verb/$\mathrm{cosec} A$/. Note that if one were to type simply \verb/$cosec A$/ one would obtain $cosec A$, because \LaTeX\ has treated \verb/cosec A/ as the product of six quantities $c$, $o$, $s$, $e$, $c$ and $A$ and typeset the formula accordingly. \subsection{Text Embedded in Displayed Equations} Text can be embedded in displayed equations (in \LaTeX) by using \verb/\mbox{/\emph{embedded text}\verb/}/. For example, one obtains \[ M^\bot = \{ f \in V' : f(m) = 0 \mbox{ for all } m \in M \}. \] by typing \begin{quote} \begin{verbatim} \[ M^\bot = \{ f \in V' : f(m) = 0 \mbox{ for all } m \in M \}.\] \end{verbatim} \end{quote} Note the blank spaces before and after the words `for all' in the above example. Had we typed \begin{quote} \begin{verbatim} \[ M^\bot = \{ f \in V' : f(m) = 0 \mbox{for all} m \in M \}.\] \end{verbatim} \end{quote} we would have obtained \[ M^\bot = \{ f \in V' : f(m) = 0 \mbox{for all} m \in M \}. \] (In Plain \TeX\ one should use \verb/\hbox/ in place of \verb/\mbox/.) \subsection{Fractions and Roots} Fractions of the form \[ \frac{\mbox{\textit{numerator}}}{\mbox{\textit{denominator}}} \] are obtained in \LaTeX\ using the construction \begin{quote} \verb/\frac{/\emph{numerator}\verb/}{/\emph{denominator}\verb/}/. \end{quote} For example, to obtain \begin{quotation} The function $f$ is given by \[ f(x) = 2x + \frac{x - 7}{x^2 + 4}\] for all real numbers $x$. \end{quotation} one would type \begin{quote} \begin{verbatim} The function $f$ is given by \[ f(x) = 2x + \frac{x - 7}{x^2 + 4}\] for all real numbers $x$. \end{verbatim} \end{quote} To obtain square roots one uses the control sequence \begin{quote} \verb/\sqrt{/\emph{expression}\verb/}/. \end{quote} For example, to obtain \begin{quotation} The roots of a quadratic polynomial $a x^2 + bx + c$ with $a \neq 0$ are given by the formula \[ \frac{-b \pm \sqrt{b^2 - 4ac}}{2a} \] \end{quotation} one would type \begin{quote} \begin{verbatim} The roots of a quadratic polynomial $a x^2 + bx + c$ with $a \neq 0$ are given by the formula \[ \frac{-b \pm \sqrt{b^2 - 4ac}}{2a} \] \end{verbatim} \end{quote} In \LaTeX, an $n$th root is produced using \begin{quote} \verb/\sqrt[n]{/\emph{expression}\verb/}/. \end{quote} For example, to obtain \begin{quotation} The roots of a cubic polynomial of the form $x^3 - 3px - 2q$ are given by the formula \[ \sqrt[3]{q + \sqrt{ q^2 - p^3 }} + \sqrt[3]{q - \sqrt{ q^2 - p^3 }} \] where the values of the two cube roots must are chosen so as to ensure that their product is equal to $p$. \end{quotation} in \LaTeX, one would type \begin{quote} \begin{verbatim} The roots of a cubic polynomial of the form $x^3 - 3px - 2q$ are given by the formula \[ \sqrt[3]{q + \sqrt{ q^2 - p^3 }} + \sqrt[3]{q - \sqrt{ q^2 - p^3 }} \] where the values of the two cube roots must are chosen so as to ensure that their product is equal to $p$. \end{verbatim} \end{quote} \subsection{Ellipsis (i.e., `three dots')} Ellipsis (three dots) is produced in mathematics mode using the control sequences \verb/\ldots/ (for dots aligned with tbe baseline of text), and \verb/\cdots/ (for dots aligned with the centreline of mathematical formulae). Thus the formula \[ f(x_1, x_2,\ldots, x_n) = x_1^2 + x_2^2 + \cdots + x_n^2 \] is obtained by typing \begin{quote} \begin{verbatim} \[ f(x_1, x_2,\ldots, x_n) = x_1^2 + x_2^2 + \cdots + x_n^2 \] \end{verbatim} \end{quote} Similarly the formula \[ \frac{1 - x^{n+1}}{1 - x} = 1 + x + x^2 + \cdots + x^n \] is produced using \verb/\cdots/, by typing \begin{quote} \begin{verbatim} \[ \frac{1 - x^{n+1}}{1 - x} = 1 + x + x^2 + \cdots + x^n \] \end{verbatim} \end{quote} \subsection{Accents in Mathematics Mode} There are various control sequences for producing underlining, overlining and various accents in mathematics mode. The following table lists these control sequences, applying them to the letter~$a$: \begin{quotation} \def\exhibitaccent#1#2{\rlap{$\csname #1\endcsname{#2}$}% \qquad \texttt{\char92 #1\char123 #2\char125}} $$\vcenter{\halign{#\hfil\cr \exhibitaccent{underline}{a}\cr \exhibitaccent{overline}{a}\cr \exhibitaccent{hat}{a}\cr \exhibitaccent{check}{a}\cr \exhibitaccent{tilde}{a}\cr \exhibitaccent{acute}{a}\cr \exhibitaccent{grave}{a}\cr \exhibitaccent{dot}{a}\cr \exhibitaccent{ddot}{a}\cr \exhibitaccent{breve}{a}\cr \exhibitaccent{bar}{a}\cr \exhibitaccent{vec}{a}\cr }}$$ \end{quotation} It should be borne in mind that when a character is underlined in a mathematical manuscript then it is normally typeset in bold face without any underlining. Underlining is used very rarely in print. The control sequences such as \verb/\'/ and \verb/\"/, used to produce accents in ordinary text, may not be used in mathematics mode. \subsection{Brackets and Norms} The frequently used left delimiters include (, [ and \{, which are obtained by typing \verb/(/, \verb/[/ and \verb/\{/ respectively. The corresponding right delimiters are of course obtained by typing \verb/)/, \verb/]/ and \verb/\}/. In addition $|$ and $\|$ are used as both left and right delimiters, and are obtained by typing \verb/|/ and \verb/\|/ respectively. For example, we obtain \begin{quotation} Let $X$ be a Banach space and let $f \colon B \to \textbf{R}$ be a bounded linear functional on $X$. The \textit{norm} of $f$, denoted by $\|f\|$, is defined by \[ \|f\| = \inf \{ K \in [0,+\infty) : |f(x)| \leq K \|x\| \mbox{ for all } x \in X \}.\] \end{quotation} by typing \begin{quote} \begin{verbatim} Let $X$ be a Banach space and let $f \colon B \to \textbf{R}$ be a bounded linear functional on $X$. The \textit{norm} of $f$, denoted by $\|f\|$, is defined by \[ \|f\| = \inf \{ K \in [0,+\infty) : |f(x)| \leq K \|x\| \mbox{ for all } x \in X \}.\] \end{verbatim} \end{quote} Larger delimiters are sometimes required which have the appropriate height to match the size of the subformula which they enclose. Consider, for instance, the problem of typesetting the following formula: \[ f(x,y,z) = 3y^2 z \left( 3 + \frac{7x+5}{1 + y^2} \right). \] The way to type the large parentheses is to type \verb/\left(/ for the left parenthesis and \verb/\right)/ for the right parenthesis, and let \LaTeX\ do the rest of the work for you. Thus the above formula was obtained by typing \begin{quote} \begin{verbatim} \[ f(x,y,z) = 3y^2 z \left( 3 + \frac{7x+5}{1 + y^2} \right).\] \end{verbatim} \end{quote} If you type a delimiter which is preceded by \verb/\left/ then \LaTeX\ will search for a corresponding delimiter preceded by \verb/\right/ and calculate the size of the delimiters required to enclose the intervening subformula. One is allowed to balance a \verb/\left(/ with a \verb/\right]/ (say) if one desires: there is no reason why the enclosing delimiters have to have the same shape. One may also nest pairs of delimiters within one another: by typing \begin{quote} \begin{verbatim} \[ \left| 4 x^3 + \left( x + \frac{42}{1+x^4} \right) \right|.\] \end{verbatim} \end{quote} we obtain \[ \left| 4 x^3 + \left( x + \frac{42}{1+x^4} \right) \right|. \] By typing \verb/\left./ and \verb/\right./ one obtains \emph{null delimiters} which are completely invisible. Consider, for example, the problem of typesetting \[ \left. \frac{du}{dx} \right|_{x=0}.\] We wish to make the vertical bar big enough to match the derivative preceding it. To do this, we suppose that the derivative is enclosed by delimiters, where the left delimiter is invisible and the right delimiter is the vertical line. The invisible delimiter is produced using \verb/\left./ and thus the whole formula is produced by typing \[ \left. \frac{du}{dx} \right|_{x=0}.\] \subsection{Multiline Formulae in \LaTeX} Consider the problem of typesetting the formula \begin{quotation} \begin{eqnarray*} \cos 2\theta & = & \cos^2 \theta - \sin^2 \theta \\ & = & 2 \cos^2 \theta - 1. \end{eqnarray*} \end{quotation} It is necessary to ensure that the = signs are aligned with one another. In \LaTeX, such a formula is typeset using the \verb/eqnarray*/ environment. The above example was obtained by typing the lines \begin{quote} \begin{verbatim} \begin{eqnarray*} \cos 2\theta & = & \cos^2 \theta - \sin^2 \theta \\ & = & 2 \cos^2 \theta - 1. \end{eqnarray*} \end{verbatim} \end{quote} Note the use of the special character \verb/&/ as an \emph{alignment tab}. When the formula is typeset, the part of the second line of the formula beginning with an occurrence of \verb/&/ will be placed immediately beneath that part of the first line of the formula which begins with the corresponding occurrence of \verb/&/. Also \verb/\\/ is used to separate the lines of the formula. Although we have placed corresponding occurrences of \verb/&/ beneath one another in the above example, it is not necessary to do this in the input file. It was done in the above example merely to improve the appearance (and readability) of the input file. The more complicated example \begin{quotation} If $h \leq \frac{1}{2} |\zeta - z|$ then \[ |\zeta - z - h| \geq \frac{1}{2} |\zeta - z|\] and hence \begin{eqnarray*} \left| \frac{1}{\zeta - z - h} - \frac{1}{\zeta - z} \right| & = & \left| \frac{(\zeta - z) - (\zeta - z - h)}{(\zeta - z - h)(\zeta - z)} \right| \\ & = & \left| \frac{h}{(\zeta - z - h)(\zeta - z)} \right| \\ & \leq & \frac{2 |h|}{|\zeta - z|^2}. \end{eqnarray*} \end{quotation} was obtained by typing \begin{quote} \begin{verbatim} If $h \leq \frac{1}{2} |\zeta - z|$ then \[ |\zeta - z - h| \geq \frac{1}{2} |\zeta - z|\] and hence \begin{eqnarray*} \left| \frac{1}{\zeta - z - h} - \frac{1}{\zeta - z} \right| & = & \left| \frac{(\zeta - z) - (\zeta - z - h)}{(\zeta - z - h)(\zeta - z)} \right| \\ & = & \left| \frac{h}{(\zeta - z - h)(\zeta - z)} \right| \\ & \leq & \frac{2 |h|}{|\zeta - z|^2}. \end{eqnarray*} \end{verbatim} \end{quote} The asterisk in \verb/eqnarray*/ is put there to suppress the automatic equation numbering produced by \LaTeX. If you wish for an automatically numbered multiline formula, you should use \verb/\begin{eqnarray}/ and \verb/\end{eqnarray}/. \subsection{Matrices and other arrays in \LaTeX} Matrices and other arrays are produced in \LaTeX\ using the \textbf{array} environment. For example, suppose that we wish to typeset the following passage: \begin{quotation} The \emph{characteristic polynomial} $\chi(\lambda)$ of the $3 \times 3$~matrix \[ \left( \begin{array}{ccc} a & b & c \\ d & e & f \\ g & h & i \end{array} \right)\] is given by the formula \[ \chi(\lambda) = \left| \begin{array}{ccc} \lambda - a & -b & -c \\ -d & \lambda - e & -f \\ -g & -h & \lambda - i \end{array} \right|.\] \end{quotation} This passage is produced by the following input: \begin{quote} \begin{verbatim} The \emph{characteristic polynomial} $\chi(\lambda)$ of the $3 \times 3$~matrix \[ \left( \begin{array}{ccc} a & b & c \\ d & e & f \\ g & h & i \end{array} \right)\] is given by the formula \[ \chi(\lambda) = \left| \begin{array}{ccc} \lambda - a & -b & -c \\ -d & \lambda - e & -f \\ -g & -h & \lambda - i \end{array} \right|.\] \end{verbatim} \end{quote} First of all, note the use of \verb/\left/ and \verb/\right/ to produce the large delimiters around the arrays. As we have already seen, if we use \begin{quote} \verb/\left)/ ... \verb/\right)/ \end{quote} then the size of the parentheses is chosen to match the subformula that they enclose. Next note the use of the alignment tab character \verb/&/ to separate the entries of the matrix and the use of \verb/\\/ to separate the rows of the matrix, exactly as in the construction of multiline formulae described above. We begin the array with \verb/\begin{array}/ and end it with \verb/\end{array}/. The only thing left to explain, therefore, is the mysterious \verb/{ccc}/ which occurs immediately after \verb/\begin{array}/. Now each of the \verb/c/'s in \verb/{ccc}/ represents a column of the matrix and indicates that the entries of the column should be \emph{centred}. If the \verb/c/ were replaced by \verb/l/ then the corresponding column would be typeset with all the entries flush \emph{left}, and \verb/r/ would produce a column with all entries flush \emph{right}. Thus \begin{quote} \begin{verbatim} \[ \begin{array}{lcr} \mbox{First number} & x & 8 \\ \mbox{Second number} & y & 15 \\ \mbox{Sum} & x + y & 23 \\ \mbox{Difference} & x - y & -7 \\ \mbox{Product} & xy & 120 \end{array}\] \end{verbatim} \end{quote} produces \[ \begin{array}{lcr} \mbox{First number} & x & 8 \\ \mbox{Second number} & y & 15 \\ \mbox{Sum} & x + y & 23 \\ \mbox{Difference} & x - y & -7 \\ \mbox{Product} & xy & 120 \end{array}\] We can use the array environment to produce formulae such as \[ |x| = \left\{ \begin{array}{ll} x & \mbox{if $x \geq 0$};\\ -x & \mbox{if $x < 0$}.\end{array} \right. \] Note that both columns of this array are set flush left. Thus we use \verb/{ll}/ immediately after \verb/\begin{array}/. The large curly bracket is produced using \verb/\left\{/. However this requires a corresponding \verb/\right/ delimiter to match it. We therefore use the \emph{null delimiter} \verb/\right./ discussed earlier. This delimiter is invisible. We can therefore obtain the above formula by typing \begin{quote} \begin{verbatim} \[ |x| = \left\{ \begin{array}{ll} x & \mbox{if $x \geq 0$};\\ -x & \mbox{if $x < 0$}.\end{array} \right. \] \end{verbatim} \end{quote} \subsection{Derivatives, Limits, Sums and Integrals} The expressions \[ \frac{du}{dt} \mbox{ and } \frac{d^2 u}{dx^2} \] are obtained in \LaTeX\ by typing \verb/\frac{du}{dt}/ and \verb/\frac{d^2 u}{dx^2}/ respectively. The mathematical symbol $\partial$ is produced using \verb/\partial/. Thus the Heat Equation \[\frac{\partial u}{\partial t} = \frac{\partial^2 u}{\partial x^2} + \frac{\partial^2 u}{\partial y^2} + \frac{\partial^2 u}{\partial z^2} \] is obtained in \LaTeX\ by typing \begin{quote} \begin{verbatim} \[\frac{\partial u}{\partial t} = \frac{\partial^2 u}{\partial x^2} + \frac{\partial^2 u}{\partial y^2} + \frac{\partial^2 u}{\partial z^2} \] \end{verbatim} \end{quote} To obtain mathematical expressions such as \[ \lim_{x \to +\infty} \mbox{, } \inf_{x > s} \mbox{ and } \sup_K \] in displayed equations we type \verb/\lim_{x \to +\infty}/, \verb/\inf_{x > s}/ and \verb/\sup_K/ respectively. Thus to obtain \[ \lim_{x \to 0} \frac{3x^2 +7}{x^2 +1} = 3. \] (in \LaTeX) we type \begin{quote} \begin{verbatim} \[ \lim_{x \to 0} \frac{3x^2 +7x^3}{x^2 +5x^4} = 3.\] \end{verbatim} \end{quote} To obtain a summation sign such as \[ \sum_{i=1}^{2n} \] we type \verb/sum_{i=1}^{2n}/. Thus \[ \sum_{k=1}^n k^2 = \frac{1}{2} n (n+1). \] is obtained by typing \begin{quote} \begin{verbatim} \[ \sum_{k=1}^n k^2 = \frac{1}{2} n (n+1).\] \end{verbatim} \end{quote} We now discuss how to obtain \emph{integrals} in mathematical documents. A typical integral is the following: \[ \int_a^b f(x)\,dx. \] This is typeset using \begin{quote} \begin{verbatim} \[ \int_a^b f(x)\,dx.\] \end{verbatim} \end{quote} The integral sign $\int$ is typeset using the control sequence \verb/\int/, and the \emph{limits of integration} (in this case $a$ and $b$ are treated as a subscript and a superscript on the integral sign. Most integrals occurring in mathematical documents begin with an integral sign and contain one or more instances of~$d$ followed by another (Latin or Greek) letter, as in $dx$, $dy$ and $dt$. To obtain the correct appearance one should put extra space before the~$d$, using \verb/\,/. Thus \[ \int_0^{+\infty} x^n e^{-x} \,dx = n!. \] \[ \int \cos \theta \,d\theta = \sin \theta. \] \[ \int_{x^2 + y^2 \leq R^2} f(x,y)\,dx\,dy = \int_{\theta=0}^{2\pi} \int_{r=0}^R f(r\cos\theta,r\sin\theta) r\,dr\,d\theta. \] and \[ \int_0^R \frac{2x\,dx}{1+x^2} = \log(1+R^2). \] are obtained by typing \begin{quote} \begin{verbatim} \[ \int_0^{+\infty} x^n e^{-x} \,dx = n!.\] \end{verbatim} \end{quote} \begin{quote} \begin{verbatim} \[ \int \cos \theta \,d\theta = \sin \theta.\] \end{verbatim} \end{quote} \begin{quote} \begin{verbatim} \[ \int_{x^2 + y^2 \leq R^2} f(x,y)\,dx\,dy = \int_{\theta=0}^{2\pi} \int_{r=0}^R f(r\cos\theta,r\sin\theta) r\,dr\,d\theta.\] \end{verbatim} \end{quote} and \begin{quote} \begin{verbatim} \[ \int_0^R \frac{2x\,dx}{1+x^2} = \log(1+R^2).\] \end{verbatim} \end{quote} respectively. In some multiple integrals (i.e., integrals containing more than one integral sign) one finds that \LaTeX\ puts too much space between the integral signs. The way to improve the appearance of of the integral is to use the control sequence \verb/\!/ to remove a thin strip of unwanted space. Thus, for example, the multiple integral \[ \int_0^1 \! \int_0^1 x^2 y^2\,dx\,dy. \] is obtained by typing \begin{quote} \begin{verbatim} \[ \int_0^1 \! \int_0^1 x^2 y^2\,dx\,dy.\] \end{verbatim} \end{quote} Had we typed \begin{quote} \begin{verbatim} \[ \int_0^1 \int_0^1 x^2 y^2\,dx\,dy.\] \end{verbatim} \end{quote} we would have obtained \[ \int_0^1 \int_0^1 x^2 y^2\,dx\,dy. \] A particularly noteworthy example comes when we are typesetting a multiple integral such as \[ \int \!\!\! \int_D f(x,y)\,dx\,dy. \] Here we use \verb/\!/ three times to obtain suitable spacing between the integral signs. We typeset this integral using \begin{quote} \begin{verbatim} \[ \int \!\!\! \int_D f(x,y)\,dx\,dy.\] \end{verbatim} \end{quote} Had we typed \begin{quote} \begin{verbatim} \[ \int \int_D f(x,y)\,dx\,dy.\] \end{verbatim} \end{quote} we would have obtained \[ \int \int_D f(x,y)\,dx\,dy. \] The following (reasonably complicated) passage exhibits a number of the features which we have been discussing: \begin{quotation} In non-relativistic wave mechanics, the wave function $\psi(\mathbf{r},t)$ of a particle satisfies the \textit{Schr\"{o}dinger Wave Equation} \[ i\hbar\frac{\partial \psi}{\partial t} = \frac{-\hbar^2}{2m} \left( \frac{\partial^2}{\partial x^2} + \frac{\partial^2}{\partial y^2} + \frac{\partial^2}{\partial z^2} \right) \psi + V \psi.\] It is customary to normalize the wave equation by demanding that \[ \int \!\!\! \int \!\!\! \int_{\textbf{R}^3} \left| \psi(\mathbf{r},0) \right|^2\,dx\,dy\,dz = 1.\] A simple calculation using the Schr\"{o}dinger wave equation shows that \[ \frac{d}{dt} \int \!\!\! \int \!\!\! \int_{\textbf{R}^3} \left| \psi(\mathbf{r},t) \right|^2\,dx\,dy\,dz = 0,\] and hence \[ \int \!\!\! \int \!\!\! \int_{\textbf{R}^3} \left| \psi(\mathbf{r},t) \right|^2\,dx\,dy\,dz = 1\] for all times~$t$. If we normalize the wave function in this way then, for any (measurable) subset~$V$ of $\textbf{R}^3$ and time~$t$, \[ \int \!\!\! \int \!\!\! \int_V \left| \psi(\mathbf{r},t) \right|^2\,dx\,dy\,dz\] represents the probability that the particle is to be found within the region~$V$ at time~$t$. \end{quotation} One would typeset this in \LaTeX\ by typing \begin{quote} \begin{verbatim} In non-relativistic wave mechanics, the wave function $\psi(\mathbf{r},t)$ of a particle satisfies the \textit{Schr\"{o}dinger Wave Equation} \[ i\hbar\frac{\partial \psi}{\partial t} = \frac{-\hbar^2}{2m} \left( \frac{\partial^2}{\partial x^2} + \frac{\partial^2}{\partial y^2} + \frac{\partial^2}{\partial z^2} \right) \psi + V \psi.\] It is customary to normalize the wave equation by demanding that \[ \int \!\!\! \int \!\!\! \int_{\textbf{R}^3} \left| \psi(\mathbf{r},0) \right|^2\,dx\,dy\,dz = 1.\] A simple calculation using the Schr\"{o}dinger wave equation shows that \[ \frac{d}{dt} \int \!\!\! \int \!\!\! \int_{\textbf{R}^3} \left| \psi(\mathbf{r},t) \right|^2\,dx\,dy\,dz = 0,\] and hence \[ \int \!\!\! \int \!\!\! \int_{\textbf{R}^3} \left| \psi(\mathbf{r},t) \right|^2\,dx\,dy\,dz = 1\] for all times~$t$. If we normalize the wave function in this way then, for any (measurable) subset~$V$ of $\textbf{R}^3$ and time~$t$, \[ \int \!\!\! \int \!\!\! \int_V \left| \psi(\mathbf{r},t) \right|^2\,dx\,dy\,dz\] represents the probability that the particle is to be found within the region~$V$ at time~$t$. \end{verbatim} \end{quote} \section{Further Features of \LaTeX} \subsection{Producing White Space in \LaTeX} To produce (horizontal) blank space within a paragraph, use \verb/\hspace/, followed by the length of the blank space enclosed within curly brackets. The length of the skip should be expressed in a unit recognized by \LaTeX. These recognized units are given in the following table: \begin{quote} \begin{tabular}{lll} \texttt{pt} & point & (1 in = 72.27 pt) \\ \texttt{pc} & pica & (1 pc = 12 pt) \\ \texttt{in} & inch & (1 in = 25.4 mm) \\ \texttt{bp} & big point & (1 in = 72 bp) \\ \texttt{cm} & centimetre & (1 cm = 10 mm) \\ \texttt{mm} & millimetre & \\ \texttt{dd} & didot point & (1157 dd = 1238 pt) \\ \texttt{cc} & cicero & (1 cc = 12 dd) \\ \texttt{sp} & scaled point & (65536 sp = 1 pt) \\ \end{tabular} \end{quote} Thus to produce a horizontal blank space of 20 mm in the middle of a paragraph one would type \verb/\hspace{20 mm}/. If \LaTeX\ decides to break between lines at a point in the document where an \verb/\hspace/ is specified, then no white space is produced. To ensure that white space is produced even at points in the document where line breaking takes place, one should replace \verb/\hspace/ by \verb/\hspace*/ To produce (vertical) blank space between paragraphs, use \verb/\vspace/, followed by the length of the blank space enclosed within curly brackets. Thus to obtain \begin{quotation} This is the first paragraph of some text. It is separated from the second paragraph by a vertical skip of 10 millimetres. \vspace{10 mm} This is the second paragraph. \end{quotation} one should type \begin{quote} \begin{verbatim} This is the first paragraph of some text. It is separated from the second paragraph by a vertical skip of 10 millimetres. \vspace{10 mm} This is the second paragraph. \end{verbatim} \end{quote} If \LaTeX\ decides to introduce at a point in the document where a \verb/\vspace/ is specified, then no white space is produced. To ensure that white space is produced even at points in the document where page breaking takes place, one should replace \verb/\vspace/ by \verb/\vspace*/ We now describe certain features of \LaTeX\ relating to blank spaces and paragraph indentation which will improve the appearance of the final document. Experienced users of \LaTeX\ will improve the appearance of their documents if they bear these remarks in mind. First note that, as a general rule, you should never put a blank space after a left parenthesis or before a right parenthesis. If you were to put a blank space in these places, then you run the risk that \LaTeX\ might start a new line immediately after the left parenthesis or before the right parenthesis, leaving the parenthesis marooned at the beginning or end of a line. \LaTeX\ has its own rules for deciding the lengths of blank spaces. For instance, \LaTeX\ will put an extra amount of space after a full stop if it considers that the full stop marks the end of a sentence. The rule adopted by \LaTeX\ is to regard a period (full stop) as the end of a sentence if it is preceded by a lowercase letter. If the period is preceded by an uppercase letter then \LaTeX\ assumes that it is not a full stop but follows the initials of somebody's name. This works very well in most cases. However \LaTeX\ occasionally gets things wrong. This happens with a number of common abbreviations (as in `Mr.\ Smith' or in `etc.'), and, in particular, in the names of journals given in abbreviated form (e.g., `Proc.\ Amer.\ Math.\ Soc.'). The way to overcome this problem is to put a backslash before the blank space in question. Thus we should type \begin{quote} \begin{verbatim} Mr.\ Smith etc.\ and Proc.\ Amer.\ Math.\ Soc. \end{verbatim} \end{quote} \LaTeX\ determines itself how to break up a paragraph into lines, and will occasionally hyphenate long words where this is desirable. However it is sometimes necessary to tell \LaTeX\ not to break at a particular blank space. The special character used for this purpose is \verb/~/. It represents a blank space at which \LaTeX\ is not allowed to break between lines. It is often desirable to use \verb/~/ in names where the forenames are represented by initials. Thus to obtain `W. R. Hamilton' it is best to type \verb/W.~R.~Hamilton/. It is also desirable in phrases like `Example 7' and `the length~$l$ of the rod', obtained by typing \verb/Example~7/ and \verb/the length~$l$ of the rod./ \LaTeX\ will automatically indent paragraphs (with the exception of the first paragraph of a new section). One can prevent \LaTeX\ from indenting a paragraph though by beginning the paragraph with the control sequence \verb/\noindent/. Thus one obtains \begin{quotation} \noindent This is the beginning of a paragraph which is not indented in the usual way. This has been achieved by placing an appropriate control sequence at the beginning of the paragraph. \end{quotation} by typing \begin{quote} \begin{verbatim} \noindent This is the beginning of a paragraph which is not indented in the usual way. This has been achieved by placing an appropriate control sequence at the beginning of the paragraph. \end{verbatim} \end{quote} Conversely, the control sequence \verb/\indent/ forces \LaTeX\ to indent the paragraph. \subsection{Lists} \LaTeX\ provides the following list environments: \begin{itemize} \item \verb/enumerate/ for numbered lists, \item \verb/itemize/ for un-numbered lists, \item \verb/description/ for description lists \end{itemize} Numbered lists are produced using \begin{quote} \begin{verbatim} \begin{enumerate} ... \end{enumerate} \end{verbatim} \end{quote} The items in the list should be enclosed between \begin{quote} \verb/\begin{enumerate}/ and \verb/\end{enumerate}/ \end{quote} and should each be preceded by the control sequence \verb/\item/ (which will automatically generate the number labelling the item). For example, the text \begin{quotation} A \emph{metric space} $(X,d)$ consists of a set~$X$ on which is defined a \emph{distance function} which assigns to each pair of points of $X$ a distance between them, and which satisfies the following four axioms: \begin{enumerate} \item $d(x,y) \geq 0$ for all points $x$ and $y$ of $X$; \item $d(x,y) = d(y,x)$ for all points $x$ and $y$ of $X$; \item $d(x,z) \leq d(x,y) + d(y,z)$ for all points $x$, $y$ and $z$ of $X$; \item $d(x,y) = 0$ if and only if the points $x$ and $y$ coincide. \end{enumerate} \end{quotation} is generated by \LaTeX\ from the following input: \begin{quote} \begin{verbatim} A \emph{metric space} $(X,d)$ consists of a set~$X$ on which is defined a \emph{distance function} which assigns to each pair of points of $X$ a distance between them, and which satisfies the following four axioms: \begin{enumerate} \item $d(x,y) \geq 0$ for all points $x$ and $y$ of $X$; \item $d(x,y) = d(y,x)$ for all points $x$ and $y$ of $X$; \item $d(x,z) \leq d(x,y) + d(y,z)$ for all points $x$, $y$ and $z$ of $X$; \item $d(x,y) = 0$ if and only if the points $x$ and $y$ coincide. \end{enumerate} \end{verbatim} \end{quote} Un-numbered lists are produced using \begin{quote} \begin{verbatim} \begin{itemize} ... \end{itemize} \end{verbatim} \end{quote} If we replace \begin{quote} \verb/\begin{enumerate}/ and \verb/\end{enumerate}/ \end{quote} in the above input by \begin{quote} \verb/\begin{itemize}/ and \verb/\end{itemize}/ \end{quote} respectively, \LaTeX\ generates an itemized list in which each item is preceeded by a `bullet': \begin{quotation} A \emph{metric space} $(X,d)$ consists of a set~$X$ on which is defined a \emph{distance function} which assigns to each pair of points of $X$ a distance between them, and which satisfies the following four axioms: \begin{itemize} \item $d(x,y) \geq 0$ for all points $x$ and $y$ of $X$; \item $d(x,y) = d(y,x)$ for all points $x$ and $y$ of $X$; \item $d(x,z) \leq d(x,y) + d(y,z)$ for all points $x$, $y$ and $z$ of $X$; \item $d(x,y) = 0$ if and only if the points $x$ and $y$ coincide. \end{itemize} \end{quotation} Description lists (for glossaries etc.) are produced using \begin{quote} \begin{verbatim} \begin{description} ... \end{description} \end{verbatim} \end{quote} The items in the list should be enclosed between \begin{quote} \verb/\begin{description}/ and \verb/\end{description}/ \end{quote} and should each be preceded by \verb/\item[/\emph{label}\verb/]/, where \emph{label} is the label to be assigned to each item. For example, the text \begin{quotation} We now list the definitions of \emph{open ball}, \emph{open set} and \emph{closed set} in a metric space. \begin{description} \item[open ball] The \emph{open ball} of radius~$r$ about any point~$x$ is the set of all points of the metric space whose distance from $x$ is strictly less than $r$; \item[open set] A subset of a metric space is an \emph{open set} if, given any point of the set, some open ball of sufficiently small radius about that point is contained wholly within the set; \item[closed set] A subset of a metric space is a \emph{closed set} if its complement is an open set. \end{description} \end{quotation} is generated by \LaTeX\ from the following input: \begin{quote} \begin{verbatim} We now list the definitions of \emph{open ball}, \emph{open set} and \emph{closed set} in a metric space. \begin{description} \item[open ball] The \emph{open ball} of radius~$r$ about any point~$x$ is the set of all points of the metric space whose distance from $x$ is strictly less than $r$; \item[open set] A subset of a metric space is an \emph{open set} if, given any point of the set, some open ball of sufficiently small radius about that point is contained wholly within the set; \item[closed set] A subset of a metric space is a \emph{closed set} if its complement is an open set. \end{description} \end{verbatim} \end{quote} \subsection{Displayed Quotations} Displayed quotations can be embedded in text using the \textbf{quote} and \textbf{quotation} environments \begin{quote} \begin{verbatim} \begin{quote} ... \end{quote} \end{verbatim} \end{quote} and \begin{quote} \begin{verbatim} \begin{quotation} ... \end{quotation}. \end{verbatim} \end{quote} The \textbf{quote} environment is recommended for short quotations: the whole quotation is indended in the \textbf{quote} environment, but the first lines of individual paragraphs are not further indented. The input file \begin{quote} \begin{verbatim} Isaac Newton discovered the basic techiques of the differential and integral calculus, and applied them in the study of many problems in mathematical physics. His main mathematical works are the \emph{Principia} and the \emph{Optics}. He summed up his own estimate of his work as follows: \begin{quote} I do not know what I may appear to the world; but to myself I seem to have been only like a boy, playing on the sea-shore, and diverting myself, in now and then finding a smoother pebble, or a prettier shell than ordinary, whilst the great ocean of truth lay all undiscovered before me. \end{quote} In later years Newton became embroiled in a bitter priority dispute with Leibniz over the discovery of the basic techniques of calculus. \end{verbatim} \end{quote} is typeset by \LaTeX\ as follows: \begin{quotation} Isaac Newton discovered the basic techiques of the differential and integral calculus, and applied them in the study of many problems in mathematical physics. His main mathematical works are the \emph{Principia} and the \emph{Optics}. He summed up his own estimate of his work as follows: \begin{quote} I do not know what I may appear to the world; but to myself I seem to have been only like a boy, playing on the sea-shore, and diverting myself, in now and then finding a smoother pebble, or a prettier shell than ordinary, whilst the great ocean of truth lay all undiscovered before me. \end{quote} In later years Newton became embroiled in a bitter priority dispute with Leibniz over the discovery of the basic techniques of calculus. \end{quotation} For longer quotations one may use the \textbf{quotation} environment: the whole quotation is indented, and the openings of paragraphs are then further indented in the normal fashion. \subsection{Tables} Tables can be produced in \LaTeX\ using the \textbf{tabular} environment. For example, the text \begin{quotation} The first five International Congresses of Mathematicians were held in the following cities: \begin{quote} \begin{tabular}{lll} Chicago&U.S.A.&1893\\ Z\"{u}rich&Switzerland&1897\\ Paris&France&1900\\ Heidelberg&Germany&1904\\ Rome&Italy&1908 \end{tabular} \end{quote} \end{quotation} is produced in \LaTeX using the following input file: \begin{quote} \begin{verbatim} The first five International Congresses of Mathematicians were held in the following cities: \begin{quote} \begin{tabular}{lll} Chicago&U.S.A.&1893\\ Z\"{u}rich&Switzerland&1897\\ Paris&France&1900\\ Heidelberg&Germany&1904\\ Rome&Italy&1908 \end{tabular} \end{quote} \end{verbatim} \end{quote} The \verb/\begin{tabular}/ command must be followed by a string of characters enclosed within braces which specifies the format of the table. In the above example, the string \verb/{lll}/ is a format specification for a table with three columns of left-justified text. Within the body of the table the ampersand character~\verb/&/ is used to separate columns of text within each row, and the double backslash~\verb/\\/ is used to separate the rows of the table. The next example shows how to obtain a table with vertical and horizontal lines. The text \begin{quotation} The group of permutations of a set of $n$~elements has order $n!$, where $n!$, the factorial of $n$, is the product of all integers between $1$ and $n$. The following table lists the values of the factorial of each integer~$n$ between 1 and 10: \begin{quote} \begin{tabular}{|r|r|} \hline $n$&$n!$\\ \hline 1&1\\ 2&2\\ 3&6\\ 4&24\\ 5&120\\ 6&720\\ 7&5040\\ 8&40320\\ 9&362880\\ 10&3628800\\ \hline \end{tabular} \end{quote} Note how rapidly the value of $n!$ increases with $n$. \end{quotation} is produced in \LaTeX using the following input file: \begin{quote} \begin{verbatim} The group of permutations of a set of $n$~elements has order $n!$, where $n!$, the factorial of $n$, is the product of all integers between $1$ and $n$. The following table lists the values of the factorial of each integer~$n$ between 1 and 10: \begin{quote} \begin{tabular}{|r|r|} \hline $n$&$n!$\\ \hline 1&1\\ 2&2\\ 3&6\\ 4&24\\ 5&120\\ 6&720\\ 7&5040\\ 8&40320\\ 9&362880\\ 10&3628800\\ \hline \end{tabular} \end{quote} Note how rapidly the value of $n!$ increases with $n$. \end{verbatim} \end{quote} In this example the format specification \verb/{|r|r|}/ after \verb/\begin{tabular}/ specifies that the table should consist of two columns of right-justified text, with vertical lines to the left and to the right of the table, and between columns. Within the body of the table, the command \verb/\hline/ produces a horizontal line; this command can only be placed between the format specification and the body of the table (to produce a line along the top of the table) or immediately after a row separator (to produce a horizontal line between rows or at the bottom of the table). In a \textbf{tabular} environment, the format specification after \verb/\begin{tabular}/ should consist of one or more of the following, enclosed within braces \verb/{/ and \verb/}/: \begin{quote} \begin{tabular}{ll} \verb/l/&specifies a column of left-justified text\\ \verb/c/&specifies a column of centred text\\ \verb/r/&specifies a column of right-justified text\\ \verb/p{/\emph{width}\verb/}/&specifies a left-justified column of the given width\\ \verb/|/&inserts a vertical line between columns\\ \verb/@{/\emph{text}\verb/}/&inserts the given \emph{text} between columns\\ \end{tabular} \end{quote} A string \emph{str} of characters in the format specification can be repeated \emph{num} times using the construction \verb/*{/\emph{num}\verb/}{/\emph{str}\verb/}/. For example, a table with 15 columns of right-justified text enclosed within vertical lines can be produced using the format specification \verb/{|*{15}{r|}}/. If additional vertical space is required between rows of the table, then this can be produced by specifying the amount of space within square brackets after \verb/\\/. For example, on would use \verb/\\[6pt]/ to separate two rows of the table by 6~points of blank space. A horizontal line in a table from column~$i$ to column~$j$ inclusive can be produced using \verb/\cline{/$i$\verb/-/$j$\verb/}/. For example \verb/\cline{3-5}/ produces a horizontal line spanning columns 3, 4 and 5 of some table. A command of the form \verb/\multicolumn{/\emph{num}\verb/}{/\emph{fmt}\verb/}{/\emph{text}\verb/}/ can be used within the body of a table to produce an entry spanning several columns. Here \emph{num} specifies the number of columns to be spanned, \emph{fmt} specifies the format for the entry (e.g., \verb/l/ if the entry is to be left-justified entry, or \verb/c/ if the entry is to be centred), and \emph{text} is the text of the entry. For example, to span three columns of a table with the words `Year of Entry' (centred with respect to the three columns), one would use \begin{quote} \begin{verbatim} \multicolumn{3}{c}{Year of entry} \end{verbatim} \end{quote} \subsection{The Preamble of the \LaTeX\ Input file} We describe the options available in \LaTeX\ for specifying the overall style of a document. A \LaTeX\ document should begin with a \verb/\documentclass/ command and any text to be printed must be included between \begin{quote} \verb/\begin{document}/ and \verb/\end{document}/ \end{quote} commands. The \verb/\begin{document}/ command is sometimes preceded by commands that set the page-style and set up user-defined control sequences. Here is a typical \LaTeX\ input file: \begin{quote} \begin{verbatim} \documentclass[a4paper,12pt]{article} \begin{document} This is the first paragraph of a typical document. It is produced in a `12~point' size. A \textit{point} is a unit of length used by printers. One point is approximately $1/72$~inch. In a `12~point' font the height of the parentheses is 12~points (i.e. about $1/6$~inch) and the letter~`m' is about 12 points long. This is the second paragraph of the document. There are also `10 point' and `11 point' styles available in \LaTeX. The required size is specified in the `documentstyle' command. If no such size is specified then the 10~point size is assumed. \end{document} \end{verbatim} \end{quote} The syntax of the \verb/\documentclass/ command is as follows. The command begins with \verb/\documentclass/ and ends with the names of one of the available styles, enclosed in curly brackets. The available styles are \verb/article/, \verb/report/, \verb/book/ and \verb/letter/. Between the ``\verb/\documentclass/'' and the name of the document style, one may place a list of \emph{options}. These options are separated by commas and the list of options is enclosed in square brackets (as in the above example). The options available (which are usually the names of certain `style files') include the following: \begin{description} \item[11pt] Specifies a size of type known as \emph{eleven-point}, which is ten percent larger than the ten-point type normally used. \item[12pt] Specifies a twelve-point type size, which is twenty percent larger than ten-point. \item[twocolumn] Produces two-column output. \item[a4paper] This ensures that the page is appropriately positioned on A4 size paper. \end{description} Typing simply \verb/\documentclass{article}/ will produce a document in ten-point type size. However the printed output will not be nicely positioned on A4 paper, since the default size is intended for a different (American) paper size. Pages will be automatically numbered at the bottom of the page, unless you specify otherwise. This can be done using the \verb/\pagestyle/ command. This command should come after the \verb/\documentclass/ command and before the \verb/\begin{document}/ command. This command has the syntax \verb/\pagestyle{/\textit{option}\verb/}/, where the \textit{option} is one of the following: \begin{description} \item[plain] The page number is at the foot of the page. This is the default page style for the \verb/article/ and \verb/report/ document styles. \item[empty] No page number is printed. \item[headings] The page number (and any other information determined by the document style) is put at the top of the page. \item[myheadings] Similar to the \textbf{headings} pagestyle, except that the material to go at the top of the page is determined by \verb/\markboth/ and \verb/\markright/ commands (see the \LaTeX\ manual). \end{description} For example, the input file \begin{quote} \begin{verbatim} \documentclass[a4paper]{article} \pagestyle{empty} \begin{document} The main body of the document is placed here. \end{document} \end{verbatim} \end{quote} produces a document without page numbers, using the standard ten-point type size. \subsection{Defining your own Control Sequences in \LaTeX} Suppose that we are producing a paper that makes frequent use of some mathematical expression. For example, suppose that integrals like \[ \int_{-\infty}^{+\infty} f(x)\,dx. \] occur frequently throughout the text. This formula is obtained by typing \begin{quote} \begin{verbatim} \[ \int_{-\infty}^{+\infty} f(x)\,dx.\] \end{verbatim} \end{quote} It would be nice if we could type \verb/\inftyint/ (say) to obtain the integral sign at the beginning. This can be done using \verb/\newcommand/. What we do is to place a line with the command \begin{quote} \begin{verbatim} \newcommand{\inftyint}{\int_{-\infty}^{+\infty}} \end{verbatim} \end{quote} near the beginning of the input file (e.g., after the \verb/\documentclass/ command but before the \verb/\begin{document}/ command). Then we only have to type \begin{quote} \begin{verbatim} \[ \inftyint f(x)\,dx.\] \end{verbatim} \end{quote} to obtain the above formula. We can modify this procedure slightly. Suppose that we we defined a new control sequence \verb/\intwrtx/ by putting the line \begin{quote} \begin{verbatim} \newcommand{\intwrtx}[1]{\int_{-\infty}^{+\infty} #1 \,dx} \end{verbatim} \end{quote} at the beginning of the input file. If we then type the line \begin{quote} \begin{verbatim} \[ \intwrtx{f(x)}.\] \end{verbatim} \end{quote} then we obtain \newcommand{\intwrtx}[1]{\int_{-\infty}^{+\infty} #1 \,dx} \[ \intwrtx{f(x)}. \] What has happened is that the expression in curly brackets after \verb/\intwrtx/ has been substituted in the expression defining \verb/\intwrtx/, replacing the \verb/#1/ in that expression. The number 1 inside square brackets in the \verb/\newcommand/ line defining \verb/\intwrtx/ indicates to \LaTeX\ that it is to expect one expression (in curly brackets) after \verb/\intwrtx/ to substitute for \verb/#1/ in the definition of \verb/\intwrtx/. If we defined a control sequence \verb/\intwrt/ by \begin{quote} \begin{verbatim} \newcommand{\intwrt}[2]{\int_{-\infty}^{+\infty} #2 \,d #1} \end{verbatim} \end{quote} then it would expect two expressions to substitute in for \verb/#1/ and \verb/#2/ in the definition of \verb/\intwrt/. Thus if we then type \begin{quote} \begin{verbatim} \[ \intwrt{y}{f(y)}.\] \end{verbatim} \end{quote} we obtain \newcommand{\intwrt}[2]{\int_{-\infty}^{+\infty} #2 \,d #1} \[ \intwrt{y}{f(y)}. \] \end{document} latex2rtf-2.3.18/test/bib_super.bib0000777000175000017500000000244613050672355017346 0ustar wilfriedwilfried@article{known, author = {A. Known and G. K{\"o}nig}, title = {Fast reactions in LaTeX conversion}, journal = {J Nonreproducible Results}, volume = {24}, pages = {319--34}, year = {1978}, } @article{known2, author = {A. Known and B. Betterknown}, title = {Fast reactions in LaTeX conversion, a reprise}, journal = {J Nonreproducible Results}, volume = {34}, pages = {119--34}, year = {1979}, } @article{known3, author = {A. Knšwn and B. Betterknown}, title = {Fast reactions in LaTeX conversion, a reprise}, journal = {J Nonreproducible Results}, volume = {34}, pages = {119--34}, year = {1979}, } @article{known4, author = {B. Known and B. Betterknown}, title = {Fast reactions in LaTeX conversion, a reposte}, journal = {J Nonreproducible Results}, volume = {34}, pages = {119--34}, year = {1979}, } @article{known5, author = {C. Known and B. Betterknown}, title = {Fast reactions in LaTeX conversion, a remise}, journal = {J Nonreproducible Results}, volume = {34}, pages = {119--34}, year = {1979}, } @article{known6, author = {D. Known and B. Betterknown}, title = {Fast reactions in LaTeX conversion, a stop hit}, journal = {J Nonreproducible Results}, volume = {34}, pages = {119--34}, year = {1979}, } latex2rtf-2.3.18/test/chem.rtf0000644000175000017500000001640613664476467016362 0ustar wilfriedwilfried{\rtf1\ansi\uc1\deff0\deflang1024 {\fonttbl{\f0\fnil\fcharset0 Times New Roman;} {\f1\fnil\fcharset0 Arial;} {\f2\fnil\fcharset0 Arial;} {\f3\fnil\fcharset0 Courier New;} {\f4\fnil\fcharset0 Zapf Chancery;} {\f5\fnil\fcharset0 STIXGeneral;} {\f6\fnil\fcharset0 MS Gothic;} } {\colortbl; \red0\green0\blue0; \red0\green0\blue255; \red0\green255\blue255; \red0\green255\blue0; \red255\green0\blue255; \red255\green0\blue0; \red255\green255\blue0; \red255\green255\blue255; } {\stylesheet {\s0\qj\widctlpar\f0\fs20 \snext0 Normal;} {\cs10 \additive\ssemihidden Default Paragraph Font;} {\s1\qc\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 Part;} {\s2\ql\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 heading 1;} {\s3\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 2;} {\s4\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 3;} {\s5\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 4;} {\s6\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 5;} {\s7\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 6;} {\s8\qr\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext8 rightpar;} {\s9\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext9 centerpar;} {\s10\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext10 leftpar;} {\s11\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equation;} {\s12\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationNum;} {\s13\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlign;} {\s14\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlignNum;} {\s15\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArray;} {\s16\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArrayNum;} {\s17\ql\sb120\sa120\keep\widctlpar\f0\fs20 \sbasedon0\snext0 theorem;} {\s18\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 bitmapCenter;} {\s20\qc\sb240\sa240\b\f0\fs36 \sbasedon0\snext21 Title;} {\s21\qc\sa120\f0\fs20 \sbasedon0\snext0 author;} {\s22\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext22 footer;} {\s23\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext23 header;} {\s30\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 caption;} {\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext0 Figure;} {\s32\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext32 Table;} {\s33\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext33 Tabular;} {\s34\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext34 Tabbing;} {\s35\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext35 Quote;} {\s38\ql\widctlpar\f3\fs20 \snext38 verbatim;} {\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext46 List;} {\s47\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext47 List 1;} {\s50\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 latex picture;} {\s51\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 subfigure;} {\s61\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext62 bibheading;} {\s62\ql\fi-567\li567\sb0\sa0\f0\fs20 \sbasedon0\snext62 bibitem;} {\s64\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext64 endnotes;} {\s65\ql\fi-113\li397\lin397\f0\fs20 \sbasedon0\snext65 footnote text;} {\s66\qj\fi-170\li454\lin454\f0\fs20 \sbasedon0\snext66 endnote text;} {\cs62\super \additive\sbasedon10 footnote reference;} {\cs63\super \additive\sbasedon10 endnote reference;} {\s67\ql\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext67 acronym;} {\s70\qc\sa120\b\f0\fs20 \sbasedon0\snext71 abstract title;} {\s71\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext0 abstract;} {\s80\ql\sb240\sa120\keepn\f0\b\fs20 \sbasedon0\snext0 contents_heading;} {\s81\ql\li425\tqr\tldot\tx8222\sb240\sa60\keepn\f0\fs20\b \sbasedon0\snext82 toc 1;} {\s82\ql\li512\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext83 toc 2;} {\s83\ql\li1024\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext84 toc 3;} {\s84\ql\li1536\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext85 toc 4;} {\s85\ql\li2048\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 5;} {\s86\ql\li2560\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 6;} } {\info {\title Original file was chem.tex} {\doccomm Created using latex2rtf 2.3.18 r1266 (released May 29, 2020) on Sat May 30 17:35:19 2020 } } {\footer\pard\plain\f0\fs20\qc\chpgn\par} \paperw12280\paperh15900\margl2680\margr2700\margt2540\margb1760\pgnstart0\widowctrl\qj\ftnbj\f0\aftnnar {\pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 1 Chemistry\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 Ex: Soaps are essentially useless in acidic water, because in acidic water the carboxylate ions of soap molecules pick up hydogen ions to form the undissociated fatty acid:\par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ {\i R}{\i C}{\i C}{\i O}\\s\\up5({\fs16 \u8722?}){ }+{ }{\i H}\\s\\up5({\fs16 +}){ }{\f5\u10229*}{ }{\i R}{\i C}{\i O}{\i O}{\i H}}}{\fldrslt }} \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ {\i R}{\i C}{\i C}{\i O}\\s\\up5({\fs16 \u8722?}){ }+{ }{\i H}\\s\\up5({\fs16 +}){ }{\f5\u10230*}{ }{\i R}{\i C}{\i O}{\i O}{\i H}}}{\fldrslt }} \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ {\i R}{\i C}{\i C}{\i O}\\s\\up5({\fs16 \u8722?}){ }+{ }{\i H}\\s\\up5({\fs16 +}){ }{\f5\u10231*}{ }{\i R}{\i C}{\i O}{\i O}{\i H}}}{\fldrslt }} \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ {\i R}{\i C}{\i C}{\i O}\\s\\up5({\fs16 \u8722?}){ }+{ }{\i H}\\s\\up5({\fs16 +}){ }{\f5\u10232*}{ }{\i R}{\i C}{\i O}{\i O}{\i H}}}{\fldrslt }} \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ {\i R}{\i C}{\i C}{\i O}\\s\\up5({\fs16 \u8722?}){ }+{ }{\i H}\\s\\up5({\fs16 +}){ }{\f5\u10233*}{ }{\i R}{\i C}{\i O}{\i O}{\i H}}}{\fldrslt }} \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ {\i R}{\i C}{\i C}{\i O}\\s\\up5({\fs16 \u8722?}){ }+{ }{\i H}\\s\\up5({\fs16 +}){ }{\f5\u10234*}{ }{\i R}{\i C}{\i O}{\i O}{\i H}}}{\fldrslt }} \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ {\i R}{\i C}{\i C}{\i O}\\s\\up5({\fs16 \u8722?}){ }+{ }{\i H}\\s\\up5({\fs16 +}){ }{\u8644*}{ }{\i R}{\i C}{\i O}{\i O}{\i H}}}{\fldrslt }} \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ {\i R}{\i C}{\i C}{\i O}\\s\\up5({\fs16 \u8722?}){ }+{ }{\i H}\\s\\up5({\fs16 +}){ }{\u8647*}{ }{\i R}{\i C}{\i O}{\i O}{\i H}}}{\fldrslt }} \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ {\i R}{\i C}{\i C}{\i O}\\s\\up5({\fs16 \u8722?}){ }+{ }{\i H}\\s\\up5({\fs16 +}){ }{\u8649*}{ }{\i R}{\i C}{\i O}{\i O}{\i H}}}{\fldrslt }} \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ {\i R}{\i C}{\i C}{\i O}\\s\\up5({\fs16 \u8722?}){ }+{ }{\i H}\\s\\up5({\fs16 +}){ }{\u8646*}{ }{\i R}{\i C}{\i O}{\i O}{\i H}}}{\fldrslt }} \par }} }}}latex2rtf-2.3.18/test/hyperref.out0000644000175000017500000000032013664476470017264 0ustar wilfriedwilfried\BOOKMARK [1][-]{section.1}{The first section}{}% 1 \BOOKMARK [1][-]{section.2}{Random Stuff}{}% 2 \BOOKMARK [2][-]{subsection.2.1}{url}{section.2}% 3 \BOOKMARK [1][-]{section.3}{About paragraph breaks}{}% 4 latex2rtf-2.3.18/test/fig_tex.png0000777000175000017500000001102513050672360017036 0ustar wilfriedwilfried‰PNG  IHDRܙa¤ ‚“IDATxÚÝ]=ˆ+ÉîđŔXŃćłŕäqˆ‹äp`/1ŠĹ%J608éŔ‰AÁ‰Kd|ǰ`‡ :ƒ1:żó2ös Ŕ Öła%+ĚbŘD0l˘DÉxzfş§ŤŤŞgôˇďŮďi[ęŽęoŞşşşşgF¤ŻFIœQ”ýK^K˘87œ‰2 ĂśČţ“R ™•DĐ.Kç…z&pI,Ă  ˘XÄś8-1Õ!UŔƒPžâŔœQЕѲŕaK4Ľe$ť°ŽÁ n=Ë6 —]ŠĽĄœ­?Hpą´MçlśÂ[Q§í\œ÷.‰D0š,š>ďWZffF§„§‚Ńňx66-3–Çëďhpk ˘Ó"+(ňČx$¸ô€§ŁŻŰ1ரŚĂđ8‹?\2é 0ęýýměTœš"óUawr w9\œ›ăQNQ0%ŞŤż”yd![‚™n-݆Ľ=şT4œƒ†öŕٞ˜ć áäW,ŐpҖ{§Hˇ›ýčw?ţüßľ•<×Pl7Şbg× §DÚu6čĺK!ő~~ÚxTłÚ‹“Ĺb–ąuƒf÷ŻzˆŹt085ôFë÷ŽS\cQ–úDo|˙—&<ž}3żů.[öŮld ÓôÝýýŸü-UťĺůŔŮŤ3d˘R\ö§žöÓţ…0Ř$ŁÜS Ńę\ߒ-;­˘YxnpZgśę˛’TÂ;cśůľ°ŠRzţŠeš˙Đr9Ü­krvpepâŞn†ÝL|˙–n}Ťű§R-áȰŃ 9Č9´ ŮVKI€›ĘáU§Óą.pj ­Ÿ.łŞýář†ÇϤËI÷ŇmWvRqîŠ5ź"%"GœÄ‘}IzeŸş“2%# ë‘˝–Ŕä§éâjęT‰Š(Ëékü)9ň”UŽ˜š¤`šŒş‰3­L u´­U '/I ŔŠ14uŔÁŢŃńĘ_ŕŚYÓ’Z-Tf7-´2€ą¸čĆ]NÄ;kô+GľÉ9_¨ŽÜ Ť í˘/ś„Qţ_Ž‚ œ_SÝîÎEח´ ÍJ}D‚œr`;E 0˜}f)Pˇˇ%8JřŰ-˝ ĂüxM‰(Ł ůMîLňŽ']* ĚÁ)ËľćYŰ^đńŕ˜DńŰÜůf4LCB„žEÔU‚Zˇ‰ Tl7›Ďł+Xß­Aü,Ňfcޚ‰^6żď€N4rŠČcNc˝WEH˙Öƛ ŞŠ„CÎVąŘGsÖĺÉąńgž[”Žź\:"v‹Şöä,$ľ*(ŔYCNşś°Ç’GS€WâX.QztÁÝôœ†Ú§ŽQÔJJČRZĂ,¨`Ě2ŔŔ2Ň.-ăŘ Ž„×ˆĐč-gRąq __‰ƒBZsÍwćźň ľŢ¸čzK‹Šžé3ŃLŽę°¤m'…ÜÁäŐ)T>ŞŹę…v&%ĹîTŽŔE],šVsÍ Đ%ę;ÝŘ8;čL‚Äeڍ|˘3Ň;|Âňc8Q­8íaă[›–߁ńfšJ]Ú}ç˘ëĎJz@ZΈˆě 7 ˆ’Öâ Ô [&ŔŮaÇúˇn'zľŘŠ˝ćjˇR%Ĺcť7/śĘ™Ö+F!ý}Ę 9œnüäö"ß2Ȃ„$h†9źŠĹ4)%l˜S+2ac¸M~’” ŠÁ\*Ń[%łÔliłHMĎ4SQĺƒ,š†6S("˙LŕאáŐđjδŒćšŢ+A3Mwoç ' Ňa5X?•‹3kxŔUm pśtO2ĹłxAr1ljAŞś¤b1GľđiŽçŃĄšK”/| ąÁ ;!b@eŻ$áf=yK{şń8H#BůąËôiΑ”^Ś$¸HU”?Ts<:(˘ľŮ|vi4Wüf‚ŻĄDčz1É´$Ň,c:‡š6GxË=o„QŤúőŰV;ĘąhĄłÂˇŸSŇĄ¤Ĺ^11408çŞqĹđaJ•ˆú “8W+RÝxŔ3Ľ§gˇÔhNԚ%C–ˆ$ŽUÎQ7ÓΤș|Đőg,SfÇ q8űÎí€)™°ŤČ™ŕdX¨ŃáWu.ČQşOsţIDʈĽž%Iˆ@ɰ)Ź :p–´žUAůÁŽ °jÄ,—Ú™äšĂI‰ˆ1‡2ĎoՃKÜŹdýIŮŁŔ™ˆ˛p3ÍrRgÉÜ4 Ó˝]œw‚1wiŽŽ]‘‡Öˆˆďךß~ôúvD3Ç4<šŁÁą˘.;ŢđÚNţ_lůá'ćh]ꗗ‘ü)ŽFOśPĹnJôúppcľsS=Šă˘Ń€KŐÍűxGŸ‰$Ŕ́.¸ńŃŕ¨sŒCs°ë0ŐÍÔhĚĽ*źś~p'–›ŁR{Ë8žÉQpéöM…&ďPŚTwűYCpŕ†\äœ.„“…ńž ˘…-ĺŒĽ8ň„5Y˘ö”§_4—ßJ]:TĐ—XÔ¤öU•ŕ˝ÓCAœ˛K0 ëŕćc÷é9ŹćÍMđxsúFíźŘ<ü9†V‘2ĺJô!č_@ÄwBßš#žđ4ÔäË~ŐőďŸđŞWŠsßӐő$¸ůŻ7ŠŻiEŃ'ś Š <é˛wj/+íÜĽËo•˜vdŻ2úf“6ă2 ˘íŠyîŘWO;Ť5°ÍČqň ŘÝÉqŐ%v{ŻřŘpŘ2şŽˇŰlVýrîĄĹĂjÓyńjŽVŢćéáŽäx÷nőźŮůTžëlž‡Ťˇs/Ý˝{Ül=ŕćÍé>­K§›9t{=9ďĚŕŇęü]ŐÍ&ŕœËbJŻîͲÎ,AW€{ĂÜb•Ž÷Ż=Ľ>>4’ą%Ë9ÖízĂ!óhťęö8Ç…{tKœ}ń… ÎÑkýúŕöLĘ6G{•ł(鎼I3¸şm3)™3ńŢí=ýH?5—šÝÄ'ΧšÚżéĎV)AĎ(;\*Ű#ʡäX„G„]ŠÚ͞0Đ\şaĚścVÍa‰†5Ôq6|Ęcpů˘ÔވDšlřďIl>}Ěöçрň'DăV>pdô&÷yćĹ~Â×"˜Uńp5°ź'euÍ*baJťŐj5ź!ˇűčâńâç§žě8îrŮz.mî÷N†ýÍ& d5ôź+q[ˆpJÔ]­ƒěúÝz¤˙ůŔ—1¤>püšÍs5_g“:iy‡˝Œá2ŻŃh¨šZšŞT¤"{(jĘKŻö Eĺ P¸×">4ԍĎ`Sýɉ€ńl†¨FkŘ&‹Cm“F_ܧ^"+Ô[pŐ;+¨6ę]ŔŮĎ?űMŐLŐ8ĺË#Onë`SÔ÷ůë‹ˇŕś‹÷ĺĘň¸ĺë'ńwßÂfÁą}998´ŘŁĆ\ţâćŘ~PčvTŽŸ¸ü!€C[JӋzž/î3őTěuŇžu(dú÷'űـ€ś›ÇŐ=ąC§–;'}őç Ŕů~-î]şă+ˇN<䎡{ŞŮćlNS!öImÜvóźň)b_˛–;ďÜŠ —;˙wŕDÓ‰˙ƒŕäɇÜQEîľ؄Nü˘ű Üią}XŕęßvłýéTă÷Ls=tEXtcomment Image generated by AFPL Ghostscript (device=pnmraw) ď4“öIENDŽB`‚latex2rtf-2.3.18/test/head_book.rtf0000644000175000017500000001332613664476467017357 0ustar wilfriedwilfried{\rtf1\ansi\uc1\deff0\deflang1024 {\fonttbl{\f0\fnil\fcharset0 Times New Roman;} {\f1\fnil\fcharset0 Arial;} {\f2\fnil\fcharset0 Arial;} {\f3\fnil\fcharset0 Courier New;} {\f4\fnil\fcharset0 Zapf Chancery;} {\f5\fnil\fcharset0 STIXGeneral;} {\f6\fnil\fcharset0 MS Gothic;} } {\colortbl; \red0\green0\blue0; \red0\green0\blue255; \red0\green255\blue255; \red0\green255\blue0; \red255\green0\blue255; \red255\green0\blue0; \red255\green255\blue0; \red255\green255\blue255; } {\stylesheet {\s0\qj\widctlpar\f0\fs20 \snext0 Normal;} {\cs10 \additive\ssemihidden Default Paragraph Font;} {\s1\qc\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 Part;} {\s2\ql\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 heading 1;} {\s3\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 2;} {\s4\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 3;} {\s5\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 4;} {\s6\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 5;} {\s7\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 6;} {\s8\qr\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext8 rightpar;} {\s9\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext9 centerpar;} {\s10\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext10 leftpar;} {\s11\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equation;} {\s12\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationNum;} {\s13\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlign;} {\s14\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlignNum;} {\s15\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArray;} {\s16\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArrayNum;} {\s17\ql\sb120\sa120\keep\widctlpar\f0\fs20 \sbasedon0\snext0 theorem;} {\s18\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 bitmapCenter;} {\s20\qc\sb240\sa240\b\f0\fs36 \sbasedon0\snext21 Title;} {\s21\qc\sa120\f0\fs20 \sbasedon0\snext0 author;} {\s22\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext22 footer;} {\s23\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext23 header;} {\s30\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 caption;} {\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext0 Figure;} {\s32\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext32 Table;} {\s33\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext33 Tabular;} {\s34\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext34 Tabbing;} {\s35\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext35 Quote;} {\s38\ql\widctlpar\f3\fs20 \snext38 verbatim;} {\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext46 List;} {\s47\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext47 List 1;} {\s50\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 latex picture;} {\s51\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 subfigure;} {\s61\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext62 bibheading;} {\s62\ql\fi-567\li567\sb0\sa0\f0\fs20 \sbasedon0\snext62 bibitem;} {\s64\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext64 endnotes;} {\s65\ql\fi-113\li397\lin397\f0\fs20 \sbasedon0\snext65 footnote text;} {\s66\qj\fi-170\li454\lin454\f0\fs20 \sbasedon0\snext66 endnote text;} {\cs62\super \additive\sbasedon10 footnote reference;} {\cs63\super \additive\sbasedon10 endnote reference;} {\s67\ql\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext67 acronym;} {\s70\qc\sa120\b\f0\fs20 \sbasedon0\snext71 abstract title;} {\s71\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext0 abstract;} {\s80\ql\sb240\sa120\keepn\f0\b\fs20 \sbasedon0\snext0 contents_heading;} {\s81\ql\li425\tqr\tldot\tx8222\sb240\sa60\keepn\f0\fs20\b \sbasedon0\snext82 toc 1;} {\s82\ql\li512\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext83 toc 2;} {\s83\ql\li1024\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext84 toc 3;} {\s84\ql\li1536\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext85 toc 4;} {\s85\ql\li2048\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 5;} {\s86\ql\li2560\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 6;} } {\info {\title Original file was head_book.tex} {\doccomm Created using latex2rtf 2.3.18 r1266 (released May 29, 2020) on Sat May 30 17:35:19 2020 } } {\footer\pard\plain\f0\fs20\qc\chpgn\par} \paperw12280\paperh15900\margl2680\margr2700\margt2540\margb1760\pgnstart0\widowctrl\qj\ftnbj\f0\aftnnar {\pard\plain\s1\qc\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \fi0 Part I\par First Part\par \page \pard\plain\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \fi0 Chapter 1\par \pard\plain\s2\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \sb240 \fi0 First Chapter\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb480 \fi0 1.1 First Section\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb180 \fi0 1.1.1 First Subsection\par \pard\plain\s5\ql\sb240\sa120\keepn\f0\b\fs24\sl240\slmult1 \sb180 \fi0 First Subsubsection\par \pard\plain\s6\ql\sb240\sa120\keepn\f0\b\fs24\sl240\slmult1 \sb180 \fi0 First Paragraph\par \pard\plain\s7\ql\sb240\sa120\keepn\f0\b\fs24\sl240\slmult1 \sb180 \fi0 First SubParagraph\par \page \pard\plain\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \sb60 \fi0 Chapter 2\par \pard\plain\s2\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \sb240 \fi0 Second Chapter\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb480 \fi0 2.1 First Section\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb300 \fi0 2.2 Second Section\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb180 \fi0 2.2.1 First Subsection\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb180 \fi0 2.2.2 Second Subsection\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb180 \fi0 2.2.3 Third Subsection\par }} }}}latex2rtf-2.3.18/test/percent.tex0000777000175000017500000000315313050672357017076 0ustar wilfriedwilfried\documentclass{article} \begin{document} \section{Some simple comments to check percentage signs} Here % this should not show up is a comment embedded in text. Sometimes one just uses % yet another comment a comment to hide stuff. {\it This will work % to hide } if the \% is correctly ignored} Testing \verb#\%# after this: \% chance of failure. Testing \verb#\\%# after this: \\% chance of failure. Testing \verb#\\\%# after this: \\\% chance of failure. \begin{figure}[ht] \caption{\label{zoom}The spatial distribution of the total energy density of ellipsoidal shaped FeSi-films; a:b:c = 10:10:1, $K_1 = 29\rm kJ/m^3$, $K_2 = -9 \rm kJ/m^3$; a) energy scale $e = 500\rm kJ/m^3$, b), c), d) reducing the energy scale to 33\% for each picture, the total energy reveals the magnetocrystalline energy in the film plane} \end{figure} \section{Checks for the option bracket parameter} \begin{itemize} \item [NEEDS] testing \verb@[NEEDS]@ \item [{[}NEEDS] testing \verb@[{[}NEEDS]@ \item [NEEDS{]}] testing \verb@[NEEDS{]}]@ \item [{[}NEEDS{]}] testing \verb@[{[}NEEDS{]}]@ \item [NEEDS\{] testing \verb@[NEEDS\{]@ \item [{\textbf{\textsc{\large {[}NEEDS}}}] testing \verb@[{\textbf{\textsc{\large {[}NEEDS}}}]@ \item [{noun{Compiler:}}] testing \verb@[{noun{Compiler:}}]@ \end{itemize} Open the file specified by and include its contents at the current position. When the end of the file is reached, close the file and continue compilation. An error condition exists if the named file can not be opened, if an I/O exception occurs reading the file, or if an I/O exception occurs while closing the file.\bigskip{} \end{document} latex2rtf-2.3.18/test/essential.tex0000777000175000017500000011765713050672357017444 0ustar wilfriedwilfried% Essential LaTeX - Jon Warbrick 02/88 % Copyright (C) Jon Warbrick and Plymouth Polytechnic 1989 % Permission is granted to reproduce the document in any way providing % that it is distributed for free, except for any reasonable charges for % printing, distribution, staff time, etc. Direct commercial % exploitation is not permitted. Extracts may be made from this % document providing an acknolwledgment of the original source is % maintained. \documentstyle[11pt,hndout]{article} % counters used for the sample file example \newcounter{savesection} \newcounter{savesubsection} % commands to do 'LaTeX Manual-like' examples \newlength{\egwidth}\setlength{\egwidth}{0.42\textwidth} \newenvironment{eg}% {\begin{list}{}{\setlength{\leftmargin}{0.05\textwidth}% \setlength{\rightmargin}{\leftmargin}}\item[]\footnotesize}% {\end{list}} \newenvironment{egbox}% {\begin{minipage}[t]{\egwidth}}% {\end{minipage}} \newcommand{\egstart}{\begin{eg}\begin{egbox}} \newcommand{\egmid}{\end{egbox}\hfill\begin{egbox}} \newcommand{\egend}{\end{egbox}\end{eg}} % one or two other commands \newcommand{\fn}[1]{\hbox{\tt #1}} \newcommand{\llo}[1]{(see line #1)} \newcommand{\lls}[1]{(see lines #1)} \newcommand{\bs}{$\backslash$} \title{Essential \LaTeX} \author{Jon Warbrick} \docnumber{U05.04--202} \begin{document} \maketitle \section{Introduction} This document is an attempt to give you all the essential information that you will need in order to use the \LaTeX{} Document Preparation System. Only very basic features are covered, and a vast amount of detail has been omitted. In a document of this size it is not possible to include everything that you might need to know, and if you intend to make extensive use of the program you should refer to a more complete reference. Attempting to produce complex documents using only the information found below will require much more work than it should, and will probably produce a less than satisfactory result. The main reference for \LaTeX{} is {\em The \LaTeX{} User's guide and Reference Manual\/} by Leslie Lamport (M05.04--200). This contains all the information that you will ever need to know about the program, and you will need access to a copy if you are to use \LaTeX{} seriously. Both the Manual and this document avoid mentioning anything that depends on the particular computer system that you are using. This is because \LaTeX{} is available on a number of systems and they all differ in one way or another. Instead, they both refer to a {\em local guide\/} for their particular system. For \LaTeX{} on the Prime, the {\em local guide\/} is the handout {\em The Local Guide to \LaTeX{} on the Plymouth Prime System\/} (U05.04--201). \section{How does \LaTeX{} work?} In order to use \LaTeX{} you generate a file containing both the text that you wish to print and instructions to tell \LaTeX{} how you want it to appear. You will normally create this file using your system's text editor. You can give the file any name you like, but it should end ``\fn{.TEX}'' to identify the file's contents. You then get \LaTeX{} to process the file, and it creates a new file of typesetting commands; this has the same name as your file but the ``\fn{.TEX}'' ending is replaced by ``\fn{.DVI}''. This stands for `{\it D\/}e{\it v\/}ice {\it I\/}ndependent' and, as the name implies, this file can be used to create output on a range of printing devices. Your {\em local guide\/} will go into more detail. Rather than encourage you to dictate exactly how your document should be laid out, \LaTeX{} instructions allow you describe its {\em logical structure\/}. For example, you can think of a quotation embedded within your text as an element of this logical structure: you would normally expect a quotation to be displayed in a recognisable style to set it off from the rest of the text. A human typesetter would recognise the quotation and handle it accordingly, but since \LaTeX{} is only a computer program it requires your help. There are therefore \LaTeX{} commands that allow you to identify quotations and as a result allow \LaTeX{} to typeset them correctly. Fundamental to \LaTeX{} is the idea of a {\em document style\/} that determines exactly how a document will be formatted. \LaTeX{} provides standard document styles that describe how standard logical structures (such as quotations) should be formatted. You may have to supplement these styles by specifying the formatting of logical structures peculiar to your document, such as mathematical formulae. You can also modify the standard document styles or even create an entirely new one, though you should know the basic principles of typographical design before creating a radically new style. There are a number of good reasons for concentrating on the logical structure rather than on the appearance of a document. It prevents you from making elementary typographical errors in the mistaken idea that they improve the aesthetics of a document---you should remember that the primary function of document design is to make documents easier to read, not prettier. It is more flexible, since you only need to alter the definition of the quotation style to change the appearance of all the quotations in a document. Most important of all, logical design encourages better writing. A visual system makes it easier to create visual effects rather than a coherent structure; logical design encourages you to concentrate on your writing and makes it harder to use formatting as a substitute for good writing. \section{A Sample \LaTeX{} file} \begin{figure} %--------------------------------------------------------------- {\footnotesize\begin{verbatim} 1: % SMALL.TEX -- Released 5 July 1985 2: % USE THIS FILE AS A MODEL FOR MAKING YOUR OWN LaTeX INPUT FILE. 3: % EVERYTHING TO THE RIGHT OF A % IS A REMARK TO YOU AND IS IGNORED 4: % BY LaTeX. 5: % 6: % WARNING! DO NOT TYPE ANY OF THE FOLLOWING 10 CHARACTERS EXCEPT AS 7: % DIRECTED: & $ # % _ { } ^ ~ \ 8: 9: \documentstyle[11pt,a4]{article} % YOUR INPUT FILE MUST CONTAIN THESE 10: \begin{document} % TWO LINES PLUS THE \end COMMAND AT 11: % THE END 12: 13: \section{Simple Text} % THIS COMMAND MAKES A SECTION TITLE. 14: 15: Words are separated by one or more spaces. Paragraphs are 16: separated by one or more blank lines. The output is not affected 17: by adding extra spaces or extra blank lines to the input file. 18: 19: 20: Double quotes are typed like this: ``quoted text''. 21: Single quotes are typed like this: `single-quoted text'. 22: 23: Long dashes are typed as three dash characters---like this. 24: 25: Italic text is typed like this: {\em this is italic text}. 26: Bold text is typed like this: {\bf this is bold text}. 27: 28: \subsection{A Warning or Two} % THIS MAKES A SUBSECTION TITLE. 29: 30: If you get too much space after a mid-sentence period---abbreviations 31: like etc.\ are the common culprits)---then type a backslash followed by 32: a space after the period, as in this sentence. 33: 34: Remember, don't type the 10 special characters (such as dollar sign and 35: backslash) except as directed! The following seven are printed by 36: typing a backslash in front of them: \$ \& \# \% \_ \{ and \}. 37: The manual tells how to make other symbols. 38: 39: \end{document} % THE INPUT FILE ENDS LIKE THIS \end{verbatim} } \caption{A Sample \LaTeX{} File}\label{fig:sample} \end{figure} %----------------------------------------------------------------- \begin{figure} %--------------------------------------------------------------- % This figure will only work if the main style of this document % is article, or something like article, because that's what the example % file thinks it is. Unfortunately, I can't see how to include a % \documentstyle command in a figure! \setcounter{savesection}{\value{section}} \setcounter{section}{0} \setcounter{savesubsection}{\value{subsection}} \setcounter{subsection}{0} \setlength{\parindent}{17pt} \setlength{\parskip}{0pt} \noindent\rule{\textwidth}{0.8pt} % SMALL.TEX -- Released 5 July 1985 % USE THIS FILE AS A MODEL FOR MAKING YOUR OWN LaTeX INPUT FILE. % EVERYTHING TO THE RIGHT OF A % IS A REMARK TO YOU AND IS IGNORED % BY LaTeX. % % WARNING! DO NOT TYPE ANY OF THE FOLLOWING 10 CHARACTERS EXCEPT AS % DIRECTED: & $ # % _ { } ^ ~ \ % ......................................................................... % \documentstyle[a4]{article} % YOUR INPUT FILE MUST CONTAIN THESE % \begin{document} % TWO LINES PLUS THE \end COMMAND AT % % THE END % ......................................................................... \section{Simple Text} % THIS COMMAND MAKES A SECTION TITLE. Words are separated by one or more spaces. Paragraphs are separated by one or more blank lines. The output is not affected by adding extra spaces or extra blank lines to the input file. Double quotes are typed like this: ``quoted text''. Single quotes are typed like this: `single-quoted text'. Long dashes are typed as three dash characters---like this. Italic text is typed like this: {\em this is italic text}. Bold text is typed like this: {\bf this is bold text}. \subsection{A Warning or Two} % THIS MAKES A SUBSECTION TITLE. If you get too much space after a mid-sentence period---abbreviations like etc.\ are the common culprits)---then type a backslash followed by a space after the period, as in this sentence. Remember, don't type the 10 special characters (such as dollar sign and backslash) except as directed! The following seven are printed by typing a backslash in front of them: \$ \& \# \% \_ \{ and \}. The manual tells how to make other symbols. % ................ % \end{document} % ................ \noindent\rule{\textwidth}{0.8pt} \setcounter{section}{\value{savesection}} \setcounter{subsection}{\value{savesubsection}} \caption{The result of processing the sample file}\label{fig:result} \end{figure} % ---------------------------------------------------------------- Have a look at the example \LaTeX{} file in Figure~\ref{fig:sample}. It is a slightly modified copy of the standard \LaTeX{} example file \fn{SMALL.TEX}. Your local guide will tell you how you can make your own copy of this file. The line numbers down the left-hand side are not part of the file, but have been added to make it easier to identify various portions. Also have a look at Figure~\ref{fig:result} which shows, more or less, the result of processing this file. \subsection{Running Text} Most documents consist almost entirely of running text---words formed into sentences, which are in turn formed into paragraphs---and the example file is no exception. Describing running text poses no problems, you just type it in naturally. In the output that it produces, \LaTeX{} will fill lines and adjust the spacing between words to give tidy left and right margins. The spacing and distribution of the words in your input file will have no effect at all on the eventual output. Any number of spaces in your input file are treated as a single space by \LaTeX{}, it also regards the end of each line as a space between words \lls{15--17}. A new paragraph is indicated by a blank line in your input file, so don't leave any blank lines unless you really wish to start a paragraph. \LaTeX{} reserves a number of the less common keyboard characters for its own use. The ten characters \begin{quote}\begin{verbatim} # $ % & ~ _ ^ \ { } \end{verbatim}\end{quote} should not appear as part of your text, because if they do \LaTeX{} will get confused. \subsection{\LaTeX{} Commands} There are a number of words in the file that start `\verb|\|' \lls{9, 10 and 13}. These are \LaTeX{} {\em commands\/} and they describe the structure of your document. There are a number of things that you should realise about these commands: \begin{itemize} \item All \LaTeX{} commands consist of a `\verb|\|' followed by one or more characters. \item \LaTeX{} commands should be typed using the correct mixture of upper- and lower-case letters. \verb|\BEGIN| is {\em not\/} the same as \verb|\begin|. \item Some commands are placed within your text. These are used to switch things, like different typestyles, on and off. The \verb|\em| command is used like this to emphasise text, normally by changing to an {\it italic\/} typestyle \llo{25}. The command and the text are always enclosed between `\verb|{|' and `\verb|}|'---the `\verb|{\em|' turns the effect on and and the `\verb|}|' turns it off. \item There are other commands that look like \begin{quote}\begin{verbatim} \command{text} \end{verbatim}\end{quote} In this case the text is called the ``argument'' of the command. The \verb|\section| command is like this \llo{13}. Sometimes you have to use curly brackets `\verb|{}|' to enclose the argument, sometimes square brackets `\verb|[]|', and sometimes both at once. There is method behind this apparent madness, but for the time being you should be sure to copy the commands exactly as given. \item When a command's name is made up entirely of letters, you must make sure that the end of the command is marked by something that isn't a letter. This is usually either the opening bracket around the command's argument, or it's a space. When it's a space, that space is always ignored by \LaTeX. We will see later that this can sometimes be a problem. \end{itemize} \subsection{Overall structure} There are some \LaTeX{} commands that must appear in every document. The actual text of the document always starts with a \verb|\begin{document}| command and ends with an \verb|\end{document}| command \lls{10 and 39}. Anything that comes after the \verb|\end{document}| command is ignored. Everything that comes before the \verb|\begin{document}| command is called the {\em preamble\/}. The preamble can only contain \LaTeX{} commands to describe the document's style. One command that must appear in the preamble is the \verb|\documentstyle| command \llo{9}. This command specifies the overall style for the document. Our example file is a simple technical document, and uses the {\tt article\/} style, modified to print in eleven-point type on A4 paper. There are other styles that you can use, as you will find out later on in this document. \subsection{Other Things to Look At} \LaTeX{} can print both opening and closing quote characters, and can manage either of these either single or double. To do this it uses the two quote characters from your keyboard: {\tt `} and {\tt '}. You will probably think of {\tt '} as the ordinary single quote character which probably looks like {\tt\symbol{'23}} or {\tt\symbol{'15}} on your keyboard, and {\tt `} as a ``funny'' character that probably appears as {\tt\symbol{'22}}. You type these characters once for single quote \llo{21}, and twice for double quotes \llo{20}. The double quote character {\tt "} itself is almost never used. \LaTeX{} can produce three different kinds of dashes. A long dash, for use as a punctuation symbol, as is typed as three dash characters in a row, like this `\verb|---|' \llo{23}. A shorter dash, used between numbers as in `10--20', is typed as two dash characters in a row, while a single dash character is used as a hyphen. From time to time you will need to include one or more of the \LaTeX{} special symbols in your text. Seven of them can be printed by making them into commands by proceeding them by backslash \llo{36}. The remaining three symbols can be produced by more advanced commands, as can symbols that do not appear on your keyboard such as \dag, \ddag, \S, \pounds, \copyright, $\sharp$ and $\clubsuit$. It is sometimes useful to include comments in a \LaTeX{} file, to remind you of what you have done or why you did it. Everything to the right of a \verb|%| sign is ignored by \LaTeX{}, and so it can be used to introduce a comment. \section{Document Styles and Style Options}\label{sec:styles} There are four standard document styles available in \LaTeX: \nobreak \begin{description} \item[{\tt article}] intended for short documents and articles for publication. Articles do not have chapters, and when \verb|\maketitle| is used to generate a title (see Section~\ref{sec:title}) it appears at the top of the first page rather than on a page of its own. \item[{\tt report}] intended for longer technical documents. It is similar to {\tt article}, except that it contains chapters and the title appears on a page of its own. \item[{\tt book}] intended as a basis for book publication. Page layout is adjusted assuming that the output will eventually be used to print on both sides of the paper. \item[{\tt letter}] intended for producing personal letters. This style will allow you to produce all the elements of a well laid out letter: addresses, date, signature, etc. \end{description} These standard styles can be modified by a number of {\em style options\/}. They appear in square brackets after the \verb|\documentstyle| command. Only one style can ever be used but you can have more than one style option, in which case their names should be separated by commas. The standard style options are: \begin{description} \item[{\tt 11pt}] prints the document using eleven-point type for the running text rather that the ten-point type normally used. Eleven-point type is about ten percent larger than ten-point. \item[{\tt 12pt}] prints the document using twelve-point type for the running text rather than the ten-point type normally used. Twelve-point type is about twenty percent larger than ten-point. \item[{\tt twoside}] causes documents in the article or report styles to be formatted for printing on both sides of the paper. This is the default for the book style. \item[{\tt twocolumn}] produces two column on each page. \item[{\tt titlepage}] causes the \verb|\maketitle| command to generate a title on a separate page for documents in the \fn{article} style. A separate page is always used in both the \fn{report} and \fn{book} styles. \end{description} There is one further option which, while not standard to \LaTeX{}, is very useful in all European countries. The \fn{a4} option causes the output in all of the standard styles to be adjusted to fit correctly on A4 paper. \LaTeX{} was designed in America where the standard paper is shorter and slightly wider than A4; without this option you will find that your output looks a little strange. \section{Environments} We mentioned earlier the idea of identifying a quotation to \LaTeX{} so that it could arrange to typeset it correctly. To do this you enclose the quotation between the commands \verb|\begin{quotation}| and \verb|\end{quotation}|. This is an example of a \LaTeX{} construction called an {\em environment\/}. A number of special effects are obtained by putting text into particular environments. \subsection{Quotations} There are two environments for quotations: \fn{quote} and \fn{quotation}. \fn{quote} is used either for a short quotation or for a sequence of short quotations separated by blank lines: \egstart \begin{verbatim} US presidents ... pithy remarks: \begin{quote} The buck stops here. I am not a crook. \end{quote} \end{verbatim} \egmid% US presidents have been known for their pithy remarks: \begin{quote} The buck stops here. I am not a crook. \end{quote} \egend Use the \fn{quotation} environment for quotations that consist of more than one paragraph. Paragraphs in the input are separated by blank lines as usual: \egstart \begin{verbatim} Here is some advice to remember: \begin{quotation} Environments for making ...other things as well. Many problems ...environments. \end{quotation} \end{verbatim} \egmid% Here is some advice to remember: \begin{quotation} Environments for making quotations can be used for other things as well. Many problems can be solved by novel applications of existing environments. \end{quotation} \egend \subsection{Centering and Flushing} Text can be centred on the page by putting it within the \fn{center} environment, and it will appear flush against the left or right margins if it is placed within the \fn{flushleft} or \fn{flushright} environments. Notice the spelling of \fn{center}---unfortunately \LaTeX{} doesn't understand the English spelling. Text within these environments will be formatted in the normal way, in {\samepage particular the ends of the lines that you type are just regarded as spaces. To indicate a ``newline'' you need to type the \verb|\\| command. For example: \egstart \begin{verbatim} \begin{center} one two three \\ four \\ five \end{center} \end{verbatim} \egmid% \begin{center} one two three \\ four \\ five \end{center} \egend } \subsection{Lists} There are three environments for constructing lists. In each one each new item is begun with an \verb|\item| command. In the \fn{itemize} environment the start of each item is given a marker, in the \fn{enumerate} environment each item is marked by a number. These environments can be nested within each other in which case the amount of indentation used is adjusted accordingly: \egstart \begin{verbatim} \begin{itemize} \item Itemized lists are handy. \item However, don't forget \begin{enumerate} \item The `item' command. \item The `end' command. \end{enumerate} \end{itemize} \end{verbatim} \egmid% \begin{itemize} \item Itemized lists are handy. \item However, don't forget \begin{enumerate} \item The `item' command. \item The `end' command. \end{enumerate} \end{itemize} \egend The third list making environment is \fn{description}. In a description you specify the item labels inside square brackets after the \verb|\item| command. For example: \egstart \begin{verbatim} Three animals that you should know about are: \begin{description} \item[gnat] A small animal... \item[gnu] A large animal... \item[armadillo] A ... \end{description} \end{verbatim} \egmid% Three animals that you should know about are: \begin{description} \item[gnat] A small animal that causes no end of trouble. \item[gnu] A large animal that causes no end of trouble. \item[armadillo] A medium-sized animal. \end{description} \egend \subsection{Tables} Because \LaTeX{} will almost always convert a sequence of spaces into a single space, it can be rather difficult to lay out tables. See what happens in this example \nolinebreak \egstart \begin{verbatim} \begin{flushleft} Income Expenditure Result \\ 20s 0d 19s 11d happiness \\ 20s 0d 20s 1d misery \\ \end{flushleft} \end{verbatim} \egmid% \begin{flushleft} Income Expenditure Result \\ 20s 0d 19s 11d happiness \\ 20s 0d 20s 1d misery \\ \end{flushleft} \egend The \fn{tabbing} environment overcomes this problem. Within it you set tabstops and tab to them much like you do on a typewriter. Tabstops are set with the \verb|\=| command, and the \verb|\>| command moves to the next stop. The \verb|\\| command is used to separate each line. A line that ends \verb|\kill| produces no output, and can be used to set tabstops: \nolinebreak \egstart \begin{verbatim} \begin{tabbing} Income \=Expenditure \= \kill Income \>Expenditure \>Result \\ 20s 0d \>19s 11d \>Happiness \\ 20s 0d \>20s 1d \>Misery \\ \end{tabbing} \end{verbatim} \egmid% \begin{tabbing} Income \=Expenditure \= \kill Income \>Expenditure \>Result \\ 20s 0d \>19s 11d \>Happiness \\ 20s 0d \>20s 1d \>Misery \\ \end{tabbing} \egend Unlike a typewriter's tab key, the \verb|\>| command always moves to the next tabstop in sequence, even if this means moving to the left. This can cause text to be overwritten if the gap between two tabstops is too small. \subsection{Verbatim Output} Sometimes you will want to include text exactly as it appears on a terminal screen. For example, you might want to include part of a computer program. Not only do you want \LaTeX{} to stop playing around with the layout of your text, you also want to be able to type all the characters on your keyboard without confusing \LaTeX. The \fn{verbatim} environment has this effect: \egstart \begin{flushleft} \verb|The section of program in| \\ \verb|question is:| \\ \verb|\begin{verbatim}| \\ \verb|{ this finds %a & %b }| \\[2ex] \verb|for i := 1 to 27 do| \\ \ \ \ \verb|begin| \\ \ \ \ \verb|table[i] := fn(i);| \\ \ \ \ \verb|process(i)| \\ \ \ \ \verb|end;| \\ \verb|\end{verbatim}| \end{flushleft} \egmid% The section of program in question is: \begin{verbatim} { this finds %a & %b } for i := 1 to 27 do begin table[i] := fn(i); process(i) end; \end{verbatim} \egend \section{Type Styles} We have already come across the \verb|\em| command for changing typeface. Here is a full list of the available typefaces: \begin{quote}\begin{tabbing} \verb|\sc|~~ \= \sc Small Caps~~~ \= \verb|\sc|~~ \= \sc Small Caps~~~ \= \verb|\sc|~~ \= \kill \verb|\rm| \> \rm Roman \> \verb|\it| \> \it Italic \> \verb|\sc| \> \sc Small Caps \\ \verb|\em| \> \em Emphatic \> \verb|\sl| \> \sl Slanted \> \verb|\tt| \> \tt Typewriter \\ \verb|\bf| \> \bf Boldface \> \verb|\sf| \> \sf Sans Serif \end{tabbing}\end{quote} Remember that these commands are used {\em inside\/} a pair of braces to limit the amount of text that they effect. In addition to the eight typeface commands, there are a set of commands that alter the size of the type. These commands are: \begin{quotation}\begin{tabbing} \verb|\footnotesize|~~ \= \verb|\footnotesize|~~ \= \verb|\footnotesize| \= \kill \verb|\tiny| \> \verb|\small| \> \verb|\large| \> \verb|\huge| \\ \verb|\scriptsize| \> \verb|\normalsize| \> \verb|\Large| \> \verb|\Huge| \\ \verb|\footnotesize| \> \> \verb|\LARGE| \end{tabbing}\end{quotation} \section{Sectioning Commands and Tables of Contents} Technical documents, like this one, are often divided into sections. Each section has a heading containing a title and a number for easy reference. \LaTeX{} has a series of commands that will allow you to identify different sorts of sections. Once you have done this \LaTeX{} takes on the responsibility of laying out the title and of providing the numbers. The commands that you can use are: \begin{quote}\begin{tabbing} \verb|\subsubsection| \= \verb|\subsubsection|~~~~~~~~~~ \= \kill \verb|\chapter| \> \verb|\subsection| \> \verb|\paragraph| \\ \verb|\section| \> \verb|\subsubsection| \> \verb|\subparagraph| \\ \end{tabbing}\end{quote} The naming of these last two is unfortunate, since they do not really have anything to do with `paragraphs' in the normal sense of the word; they are just lower levels of section. In most document styles, headings made with \verb|\paragraph| and \verb|\subparagraph| are not numbered. \verb|\chapter| is not available in document style \fn{article}. The commands should be used in the order given, since sections are numbered within chapters, subsections within sections, etc. A seventh sectioning command, \verb|\part|, is also available. Its use is always optional, and it is used to divide a large document into series of parts. It does not alter the numbering used for any of the other commands. Including the command \verb|\tableofcontents| in you document will cause a contents list to be included, containing information collected from the various sectioning commands. You will notice that each time your document is run through \LaTeX{} the table of contents is always made up of the headings from the previous version of the document. This is because \LaTeX{} collects information for the table as it processes the document, and then includes it the next time it is run. This can sometimes mean that the document has to be processed through \LaTeX{} twice to get a correct table of contents. \section{Producing Special Symbols} You can include in you \LaTeX{} document a wide range of symbols that do not appear on you your keyboard. For a start, you can add an accent to any letter: \begin{quote}\begin{tabbing} \t{oo} \= \verb|\t{oo}|~~~ \= \t{oo} \= \verb|\t{oo}|~~~ \= \t{oo} \= \verb|\t{oo}|~~~ \= \t{oo} \= \verb|\t{oo}|~~~ \= \t{oo} \= \verb|\t{oo}|~~~ \= \t{oo} \= \kill \a`{o} \> \verb|\`{o}| \> \~{o} \> \verb|\~{o}| \> \v{o} \> \verb|\v{o}| \> \c{o} \> \verb|\c{o}| \> \a'{o} \> \verb|\'{o}| \\ \a={o} \> \verb|\={o}| \> \H{o} \> \verb|\H{o}| \> \d{o} \> \verb|\d{o}| \> \^{o} \> \verb|\^{o}| \> \.{o} \> \verb|\.{o}| \\ \t{oo} \> \verb|\t{oo}| \> \b{o} \> \verb|\b{o}| \\ \"{o} \> \verb|\"{o}| \> \u{o} \> \verb|\u{o}| \\ \end{tabbing}\end{quote} A number of other symbols are available, and can be used by including the following commands: \begin{quote}\begin{tabbing} \LaTeX~\= \verb|\copyright|~~~~ \= \LaTeX~\= \verb|\copyright|~~~~ \= \LaTeX~\= \kill \dag \> \verb|\dag| \> \S \> \verb|\S| \> \copyright \> \verb|\copyright| \\ \ddag \> \verb|\ddag| \> \P \> \verb|\P| \> \pounds \> \verb|\pounds| \\ \oe \> \verb|\oe| \> \OE \> \verb|\OE| \> \ae \> \verb|\AE| \\ \AE \> \verb|\AE| \> \aa \> \verb|\aa| \> \AA \> \verb|\AA| \\ \o \> \verb|\o| \> \O \> \verb|\O| \> \l \> \verb|\l| \\ \L \> \verb|\L| \> \ss \> \verb|\ss| \> ?` \> \verb|?`| \\ !` \> \verb|!`| \> \ldots \> \verb|\ldots| \> \LaTeX \> \verb|\LaTeX| \\ \end{tabbing}\end{quote} There is also a \verb|\today| command that prints the current date. When you use these commands remember that \LaTeX{} will ignore any spaces that follow them, so that you can type `\verb|\pounds 20|' to get `\pounds 20'. However, if you type `\verb|LaTeX is wonderful|' you will get `\LaTeX is wonderful'---notice the lack of space after \LaTeX. To overcome this problem you can follow any of these commands by a pair of empty brackets and then any spaces that you wish to include, and you will see that \verb|\LaTeX{} really is wonderful!| (\LaTeX{} really is wonderful!). Finally, \LaTeX{} `math' mode, normally used to layout mathematical formulae, gives access to an even larger range of symbols, including the upper and lower case greek mathematical alphabet, calligraphic letters, mathematical operators and relations, arrows and a whole lot more. This document has not mentioned math mode, and it isn't going to either, so you will have to refer to the manual if you really need something that you can't get otherwise. \section{Titles}\label{sec:title} Most documents have a title. To title a \LaTeX{} document, you include the following commands in your document, usually just after \verb|begin{document}|. \begin{quote}\footnotesize\begin{verbatim} \title{required title} \author{required author} \date{required date} \maketitle \end{verbatim}\end{quote} If there are several authors, then their names should be separated by \verb|\and|; they can also be separated by \verb|\\| if you want them to be centred on different lines. If the \verb|\date| command is left out, then the current date will be printed. \egstart \begin{verbatim} \title{Essential \LaTeX} \author{J Warbrick\and A N Other} \date{14th February 1988} \maketitle \end{verbatim} \egmid \begin{center} {\normalsize Essential \LaTeX}\\[4ex] J Warbrick\hspace{1em}A N Other\\[2ex] 14th February 1988 \end{center} \egend The exact appearance of the title varies depending on the document style. In styles \fn{report} and \fn{book} the title appears on a page of its own. In the \fn{article} style it normally appears at the top of the first page, the style option \fn{titlepage} will alter this (see Section~\ref{sec:styles}). \section{Letters} Producing letters is simple with \LaTeX{}. To do this you use the document style {\tt letter}. You can make any number of letters with a single input file. Your name and address, which are likely to be the same for all letters, are given once at the top of the file. Each letter is produced by a {\tt letter} environment, having the name and address of the recipient as its argument. The letter itself begins with an \verb|\opening| command to generate the salutation. The letter ends with a \verb|\closing| command, you can use the commands \verb|\encl| and \verb|\cc| to generate lists of enclosures and people to whom you are sending copies. Any text that follows the \verb|\closing| must be proceeded by a \verb|\ps| command. This command produces no text---you'll have to type ``P.S.'' yourself---but is needed to format the additional text correctly. Perhaps an example will make this clearer: \begin{quote}\footnotesize\begin{verbatim} \documentstyle{letter} \begin{document} \address{1234 Avenue of the Armadillos \\ Gnu York, G.Y. 56789} \signature{R. (Ma) Dillo \\ Director of Cuisine} \begin{letter}{G. Natheniel Picking \\ Acme Exterminators \\ Illinois} \opening{Dear Nat,} I'm afraid that the armadillo problem is still with us. I did everything ... ... and I hope that you can get rid of the nasty beasts this time. \closing{Best Regards,} \cc{Jimmy Carter\\Richard M. Nixon} \end{letter} \end{document} \end{verbatim}\end{quote} \section{Errors} When you create a new input file for \LaTeX{} you will probably make mistakes. Everybody does, and it's nothing to be worried about. As with most computer programs, there are two sorts of mistake that you can make: those that \LaTeX{} notices and those that it doesn't. To take a rather silly example, since \LaTeX{} doesn't understand what you are saying it isn't going to be worried if you mis-spell some of the words in your text. You will just have to accurately proof-read your printed output. On the other hand, if you mis-spell one of the environment names in your file then \LaTeX won't know what you want it to do. When this sort of thing happens, \LaTeX{} prints an error message on your terminal screen and then stops and waits for you to take some action. Unfortunately, the error messages that it produces are rather user-unfriendly and not a little frightening. Nevertheless, if you know where to look they will probably tell you where the error is and went wrong. Consider what would happen if you mistyped \verb|\begin{itemize}| so that it became \verb|\begin{itemie}|. When \LaTeX{} processes this instruction, it displays the following on your terminal: \begin{quote}\footnotesize\begin{verbatim} LaTeX error. See LaTeX manual for explanation. Type H for immediate help. ! Environment itemie undefined. \@latexerr ...for immediate help.}\errmessage {#1} \endgroup l.140 \begin{itemie} ? \end{verbatim}\end{quote} After typing the `?' \LaTeX{} stops and waits for you to tell it what to do. The first two lines of the message just tell you that the error was detected by \LaTeX{}. The third line, the one that starts `!' is the {\em error indicator}. It tells you what the problem is, though until you have had some experience of \LaTeX{} this may not mean a lot to you. In this case it is just telling you that it doesn't recognise an environment called \fn{itemie}. The next two lines tell you what \LaTeX{} was doing when it found the error, they are irrelevant at the moment and can be ignored. The final line is called the {\em error locator}, and is a copy of the line from your file that caused the problem. It start with a line number to help you to find it in your file, and if the error was in the middle of a line it will be shown broken at the point where \LaTeX{} realised that there was an error. \LaTeX{} can sometimes pass the point where the real error is before discovering that something is wrong, but it doesn't usually get very far. At this point you could do several things. If you knew enough about \LaTeX{} you might be able to fix the problem, or you could type `X' and press the return key to stop \LaTeX{} running while you go and correct the error. The best thing to do, however, is just to press the return key. This will allow \LaTeX{} to go on running as if nothing had happened. If you have made one mistake, then you have probably made several and you may as well try to find them all in one go. It's much more efficient to do it this way than to run \LaTeX{} over and over again fixing one error at a time. Don't worry about remembering what the errors were---a copy of all the error messages is being saved in a {\em log\/} file so that you can look at them afterwards. See your {\em local guide\/} to find out what this file is called. If you look at the line that caused the error it's normally obvious what the problem was. If you can't work out what you problem is look at the hints below, and if they don't help consult Chapter~6 of the manual. It contains a list of all of the error messages that you are likely to encounter together with some hints as to what may have caused them. Some of the most common mistakes that cause errors are \begin{itemize} \item A mis-spelt command or environment name. \item Improperly matched `\verb|{|' and `\verb|}|'---remember that they should always come in pairs. \item Trying to use one of the ten special characters \verb|# $ % & _ { } ~ ^| and \verb|\| as an ordinary printing symbol. \item A missing \verb|\end| command. \item A missing command argument (that's the bit enclosed in '\verb|{|' and `\verb|}|'). \end{itemize} One error can get \LaTeX{} so confused that it reports a series of spurious errors as a result. If you have an error that you understand, followed by a series that you don't, then try correcting the first error---the rest may vanish as if by magic. Sometimes \LaTeX{} may write a {\tt *} and stop without an error message. This is normally caused by a missing \verb|\end{document}| command, but other errors can cause it. If this happens type \verb|\stop| and press the return key. Finally, \LaTeX{} will sometimes print {\em warning\/} messages. They report problems that were not bad enough to cause \LaTeX{} to stop processing, but nevertheless may require investigation. The most common problems are `overfull' and `underfull' lines of text. A message like: \begin{quote}\footnotesize\begin{verbatim} Overfull \hbox (10.58649pt too wide) in paragraph at lines 172--175 []\tenrm Mathematical for-mu-las may be dis-played. A dis-played \end{verbatim}\end{quote} indicates that \LaTeX{} could not find a good place to break a line when laying out a paragraph. As a result, it was forced to let the line stick out into the right-hand margin, in this case by 10.6 points. Since a point is about 1/72nd of an inch this may be rather hard to see, but it will be there none the less. This particular problem happens because \LaTeX{} is rather fussy about line breaking, and it would rather generate a line that is too long than generate a paragraph that doesn't meet its high standards. The simplest way around the problem is to enclose the entire offending paragraph between \verb|\begin{sloppypar}| and \verb|\end{sloppypar}| commands. This tells \LaTeX{} that you are happy for it to break its own rules while it is working on that particular bit of text. Alternatively, messages about ``Underfull \verb|\hbox|'es'' may appear. These are lines that had to have more space inserted between words than \LaTeX{} would have liked. In general there is not much that you can do about these. Your output will look fine, even if the line looks a bit stretched. About the only thing you could do is to re-write the offending paragraph! \section{A Final Reminder} You now know enough \LaTeX{} to produce a wide range of documents. But this document has only scratched the surface of the things that \LaTeX{} can do. This entire document was itself produced with \LaTeX{} (with no sticking things in or clever use of a photocopier) and even it hasn't used all the features that it could. From this you may get some feeling for the power that \LaTeX{} puts at your disposal. Please remember what was said in the introduction: if you {\bf do} have a complex document to produce then {\bf go and read the manual}. You will be wasting your time if you rely only on what you have read here. One other warning: having dabbled with \LaTeX{} your documents will never be the same again \ldots. \end{document} latex2rtf-2.3.18/test/essential.dvi0000644000175000017500000013635013664476467017425 0ustar wilfriedwilfried÷ƒ’Ŕ;č TeX output 2020.05.30:1735‹˙˙˙˙ mĚ܍ ýš3$ (Ě܍ ţT3$‘Č™› ˙€‰feÖĚƟT„TfeŸŘ­:‘0 lóKń`y ó3 cmr10šComputing–ŚfService“LogoŽŽ’Ö„TfeŽžfe‰feÖĚʎŽŽŸˆ’ň?óÂÖN ff cmbx12ťEssenŒĚtial‘ffLŸüű+‘ú+óň"V cmbx10žAŽŽnšťT‘ýL¨Ÿ32EŽ‘čdXŽŽŽŸź’ yšU05.04{202ŽŸ ™š’ť2Ma˛!y‘Śf2020ŽŸŒĎ’ŚŕJon‘ŚfW‘˙earbric˛!kŽŽŽ‘ÉŸř32„fdԎŽŽŽŽŸ(~Zť1Ž‘LËInŒĚtros3ductionŽŸě΍šThis–ăPdoMŢcumen˛!t›ăOis“an˜attempt“to˜givš˛!e“y˜ou›ăOall“the˜essen˛!tial“information˜that“y˛!ou˜will“need˜in“orderޤ ™što–ť˝use“the“LŸýűó‘üŮó'|{Ycmr8ŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X‘ťžDoMŢcumenš˛!t“Preparation“System.‘âOnly“v˜ery“basic‘ťžfeatures“are“co˜v˜ered,‘Áand“a“v‘˙dDastŽĄamoun˛!t–Ć:of›Ć9detail“has“bMŢeen˜omitted.‘“$In“a˜doMŢcumen˛!t“of“this˜size“it“is˜not“pMŢossible“to˜include“ev˛!erythingŽĄthat–Ëyš˛!ou“migh˜t“need‘Ëto“kno˜w,‘ÔBand“if“y˜ou‘Ëin˜tend“to“mak˜e“extensiv˜e“use“of‘Ëthe“program“y˜ou“shouldŽĄrefer–ßďto“a“more“complete“reference.‘ŠwA˛!ttempting“to“prošMŢduce“complex“do˜cumen˛!ts“using“only“theŽĄinformation–‰tfound“bMŢeloš˛!w“will“require“m˜uc˜h“more“w˜ork‘‰uthan“it“should,‘>and“will“probably“proMŢduce“aŽĄless–Śfthan“satisfactory“result.ŽŠ܍The–Œ'main›Œ(reference“for˜LŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X“is˜ó8ý': ó3 cmti10ăThe–ŇĹLŸýűó‘űřnó9#Ńfcmti8äAŽŽ‘ŠěăT‘ţ"RŸ[wEŽ‘)ĄX“User's“guide“and“R–˙pšefer“enc“e‘ŇĹManual‘­Ńšb˛!y˜Leslie‘Œ'LampMŢortŽĄ(M05.04{200).‘‰ÖThis–ŞRcon˛!tains›ŞQall“the˜information“that˜y˛!ou“will˜ev˛!er“need˜to“kno˛!w˜abMŢout“the˜program,ŽĄand–Śfyš˛!ou“will“need“access“to“a“cop˜y“if“y˜ou“are“to“use“LŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X“seriously‘˙e.ŽŚBoth–Äthe“Manš˛!ual‘Ăand“this“doMŢcumen˜t“a˜v˜oid‘Ămen˜tioning“an˜ything“that“depMŢends‘Ăon“the“particularŽĄcomputer–F”system“that“yš˛!ou“are“using.‘žgThis“is“bMŢecause“LŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X“is“a˜v‘˙dDailable“on“a“n˜um˜bMŢer“of“systemsŽĄand–źnthey›źoall“di er“in˜one“w•˛!a“y–źnor˜another.‘ŕInstead,‘ë9they˜bMŢoth“refer“to˜a“ălo–˙pšc“al‘Şguide‘šfor˜their‘źnparticularŽĄsystem.‘Ÿ`F‘˙eor–ćçLŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X“on“the“Prime,‘÷the“ălo–˙pšc“al›&Bguide‘šˆšis–ćçthe“handout“ăThe˜L–˙pšo“c“al˜Guide‘&Ato˜LŸýűó‘űřnäAŽŽ‘ŠěăT‘ţ"RŸ[wEŽ‘)ĄX˜on˜theŽĄPlymouth–ęęPrime“System‘}qš(U05.04{201).ŽŸ(~[ť2Ž‘LËHošŒĚw–ffdos3es“LŸüű+‘ú+žAŽŽnšťT‘ýL¨Ÿ32EŽ‘čdX“w˜ork?ŽŸě͍šIn–úorder›úto“use˜LŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X“y˛!ou˜generate“a˜ le“con˛!taining“bMŢoth˜the“text˜that“y˛!ou˜wish“to˜prin˛!t“andŽĄinstructions–Žľto›Žśtell“LŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X˜hoš˛!w“y˜ou‘Žśw˜an˜t“it›Žśto“appMŢear.‘öĚY‘˙eou“will˜normally“create˜this“ le˜using“y˛!ourŽĄsystem's–8text›7editor.‘Ö#Y‘˙eou“can˜giv˛!e“the“ le˜an˛!y“name˜yš˛!ou“lik˜e,‘“Úbut“it“should›7end“\ó5ßę ó3 cmmi10Ô]“šand“×|š.ŽŚIt–ü´is›üľsometimes“useful“to“include˜commen˛!ts“in“a“LŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X˜ le,‘Gto“remind˜yš˛!ou“of“what“y˜ou‘üľha˜v˜e“doneŽĄor–fwhš˛!y“y˜ou‘fdid“it.‘ČpEv˜erything“to“the‘frigh˜t“of“a“ŕ%“šsign“is‘fignored“b˜y“LŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X,‘růand“so“it“can‘fbMŢe“used“toŽĄinš˛!troMŢduce–Śfa“commen˜t.ŽŽŸ’č#×6ŽŽŒ‹7> mĚ܍ ýš3$ (Ě܍ ýű3$ť4Ž‘LËDos3cumen•ŒĚt›ffSt“yles˜and˜St“yle˜OptionsŽŸq‹šThere–Śfare“four“standard“doMŢcumenš˛!t“st˜yles“a˜v‘˙dDailable“in“LŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X:ŽŸ™šŕarticleŽŽ‘-ˇ@šinš˛!tended–ŽZfor“short“doMŢcumen˜ts“and“articles‘Ž[for“publication.‘ŐŮArticles“do“not“ha˜v˜e“c˜hapters,ޤ ™š‘`and–^)when“ŕ\maketitle“šis“used›^(to“generate“a“title“(see“Section“Ú??Ž‘Bšš)“it“appMŢears˜at“the“top“of“theŽĄ‘` rst–Śfpage“rather“than“on“a“page“of“its“o˛!wn.ŽŠ™šŕreportŽŽ‘'÷–šinš˛!tended–×lfor‘×mlonger“tec˜hnical‘×mdoMŢcumen˜ts.‘pđIt“is›×msimilar“to˜ŕarticleš,‘ăŽexcept“that˜it“con˛!tainsŽĄ‘`cš˛!hapters–Śfand“the“title“appMŢears“on“a“page“of“its“o˜wn.ŽŚŕbookŽŽ‘xBšinš˛!tended–îlas“a“basis“for“b•MŢo“ok–îlpublication.‘ľďP˜age“la˜y˜out“is“adjusted“assuming“that“the“outputŽĄ‘`will›Śfev•˛!en“tually˜bMŢe˜used˜to˜prin“t˜on˜b•MŢoth˜sides˜of˜the˜pap“er.ŽŚŕletterŽŽ‘'÷–šin˛!tended–…Qfor‘…RprošMŢducing“p˜ersonal“letters.‘}This‘…Rstš˛!yle“will“allo˜w“y˜ou›…Rto“proMŢduce“all˜the“elemen˛!tsŽĄ‘`of–Śfa“w˛!ell“laid“out“letter:‘ÝÝaddresses,“date,“signature,“etc.ŽŠ™šThese–İstandard“st˛!yles“can‘ÄŻbšMŢe“mo˜di ed“bš˛!y“a“n˜um˜bšMŢer“of“ăstyle‘Boptions‘ćš.‘’ĄThey‘ÄŻapp˜ear“in“square“brac•˛!k“etsŽĄafter–Zžthe›Z˝ŕ\documentstyle“šcommand.‘ÄĽOnly˜one“st˛!yle“can˜ev˛!er“bMŢe˜used“but“y˛!ou˜can“ha•˛!v“e˜more‘ZžthanŽĄone–0stš˛!yle“option,‘R|in“whic˜h“case›0their“names“should“bMŢe“separated˜bš˛!y“commas.‘zŕThe“standard“st˜yleŽĄoptions‘Śfare:ŽŚŕ11ptŽŽ‘xBšprin•˛!ts›5Œthe‘5doMŢcumen“t˜using‘5elev“en-pMŢoin“t˜t“ypMŢe–5for˜the“running˜text“rather˜that“the˜ten-pMŢoin˛!tŽĄ‘`tš˛!ypMŢe–Śfnormally“used.‘ÝÝElev˜en-pMŢoin˜t“t˜ypšMŢe“is“ab˜out“ten“p˜ercen˛!t“larger“than“ten-p˜oin˛!t.ŽŠ™šŕ12ptŽŽ‘xBšprin•˛!ts›˘the‘ĄdoMŢcumen“t˜using‘Ąt“w“elv“e-pMŢoin“t˜t“ypMŢe˜for–Ąthe˜running˜text“rather˜than“the˜ten-pMŢoin˛!tŽĄ‘`tš˛!ypMŢe–Śfnormally“used.‘ÝÝTw˜elv˜e-pMŢoin˜t“t˜ypšMŢe“is“ab˜out“t•˛!w“en“t“y‘Śfp˜ercen“t–Śflarger“than“ten-p˜oin˛!t.ŽŚŕtwosideŽŽ‘-ˇ@šcauses–)ĐdošMŢcumen˛!ts“in‘)Ďthe“article“or“rep˜ort“st˛!yles‘)Ďto“b˜e“formatted“for“prin˛!ting‘)Ďon“b˜oth“sidesŽĄ‘`of–Śfthe“papšMŢer.‘ÝÝThis“is“the“default“for“the“b˜o˜ok“st˛!yle.ŽŚŕtwocolumnŽŽ‘96”šproMŢduces›Śft•˛!w“o˜column˜on˜eac“h˜page.ŽŚŕtitlepageŽŽ‘96”šcauses–‰Şthe“ŕ\maketitle“šcommand“to“generate“a‘‰Ťtitle“on“a“separate“page“for“doMŢcumen˛!tsŽĄ‘`in–Śfthe“ŕarticleŽ‘/Šršstš˛!yle.‘ÝÝA“separate“page“is“alw˜a˜ys“used“in“bMŢoth“the“ŕreportŽ‘)ĘČšand“ŕbookŽ‘Ktšst˜yles.ŽŸ™šThere–Ńşis“one“further“option“whic˛!h,›Žwhile“not“standard“to“LŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X,˜is“v˛!ery“useful“in“all“EuropMŢeanŽĄcoun˛!tries.‘ <ŹThe‘Vŕa4Ž‘ľ˙šoption–Vcauses“the›Uoutput“in“all“of˜the“standard“st˛!yles˜to“bMŢe“adjusted˜to“ tŽĄcorrectly–Don›DA4“papMŢer.‘śńLŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X“w˛!as˜designed“in˜America“where“the˜standard“papMŢer“is˜shorter“andŽĄslighš˛!tly–Śfwider“than“A4;“without“this“option“y˜ou“will“ nd“that“y˜our“output“loMŢoks“a“little“strange.ŽŽŸ’č#×7ŽŽŒ‹Fx mĚ܍ ýš3$ (Ě܍ ýű3$ť5Ž‘LËEn•ŒĚvironmen“tsŽŸq‹šW‘˙ee–ßGmenš˛!tioned“earlier‘ßHthe“idea“of“iden˜tifying“a“quotation›ßHto“LŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X“so“that“it“could˜arrange“to“t˛!ypMŢesetޤ ™šit›bÜcorrectly–˙e.‘ÇZT“o˜do˜this˜y•˛!ou˜enclose˜the˜quotation˜bMŢet“w“een˜the˜commands˜ŕ\begin{quotation}˜šandŽĄŕ\end{quotation}š.‘gÎThis›Ô`is–Ôaan“example“of“a“LŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X“construction“called˜an“ăenvir‘˙pšonment‘ ęš.‘gÎA‘ÔUn•˛!um“bMŢerŽĄof–ŚfspMŢecial“e ects“are“obtained“bš˛!y“putting“text“in˜to“particular“en˜vironmen˜ts.ŽŸ$R…ëG5.1Ž‘ŔQuotationsŽŠŤ˙šThere–3–are“t•˛!w“o›3–en“vironmen“ts–3•for˜quotations:‘¤uŕquoteŽ‘$–]šand˜ŕquotationŽ‘6đš.‘ˇ˜ŕquoteŽ‘$Š€šis˜used“either˜for˜a˜shortŽĄquotation–Śfor“for“a“sequence“of“short“quotations“separated“b˛!y“blank“lines:ŽŸ‘};ëEUS–š–presidents“...“pithy“remarks:ޤ ‘};\begin{quote}ŽĄ‘};The–š–buck“stops“here.ŽĄĄ‘};I–š–am“not“a“crook.ŽĄ‘};\end{quote}ŽŽ’řř6óDo´‹Ç cmr9ëDUS‘Uŕpresiden•ž9ts›V3ha“v“e˜bAÇeen˜kno“wn˜for˜their˜pith“yŽŸ ’řř6remarks:ŽŸ’X:The–Tbucž9k“stops“here.ŽŸ ’X:I–Tam“not“a“croAÇok.ŽŽŽŸTšŞšUse–‚the“ŕquotationŽ‘<Áýšen•˛!vironmen“t–‚for“quotations“that“consist‘‚‚of“more“than“one“paragraph.‘r/P˛!ara-ŽĄgraphs–Śfin“the“input“are“separated“b˛!y“blank“lines“as“usual:ŽŸ‘};ëEHere–š–is“some“advice“to“remember:ޤ ‘};\begin{quotation}ŽĄ‘};Environments–š–for“makingŽĄ‘};...other–š–things“as“well.ŽĄĄ‘};Many‘š–problemsŽĄ‘};...environments.ŽĄ‘};\end{quotation}ŽŽ’řř6ëDHere–Tis“some“advice“to“rememž9bAÇer:ŽŸ’"84En•ž9vironmen“ts–ÉÂfor“making“quo-ޤ ’X:tations–˝Zcan“bAÇe“used‘˝[for“other“thingsŽĄ’X:as‘Twž9ell.ŽĄ’"84Manž9y–FHproblems›FIcan“bAÇe˜solvšž9ed“b˜yŽĄ’X:no•ž9v“el–ĎĂapplications“of“existing“enž9vi-ŽĄ’X:ronmenž9ts.ŽŽŽŸn§ŮëG5.2Ž‘ŔCen tering–€and“FlushingŽŚšT‘˙eext–Řscan›ŘrbMŢe“cen˛!tred“on“the˜page“b˛!y“putting“it˜within“the“ŕcenterŽ‘,.ášen•˛!vironmen“t,‘$öand–Řsit˜will“ap-ŽĄpMŢear–­6 ush›­7against“the“left˜or“righ˛!t“margins˜if“it“is“placed˜within“the“ŕflushleftŽ‘=gšor“ŕflushrightŽŽĄšen•˛!vironmen“ts.‘ÂiNotice‘T the–T spšMŢelling“of“ŕcenterŽ‘%Ňš|unfortunately“LŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X“do˜esn't‘T understand“the“EnglishŽĄspMŢelling.ŽŽŸ’č#×8ŽŽŒ‹ Rô mĚ܍ ýš3$ (Ě܍ ýű3$šT›˙eext–ʟwithin“these“en•˛!vironmen“ts‘Źžwill–ʟbMŢe“formatted“in“the“normal“w•˛!a“y˜,‘Ž-in–ʟparticular‘Źžthe“ends“of“theޤ ™šlines–ćthat‘ĺyš˛!ou“t˜ypMŢe›ĺare“just˜regarded“as˜spaces.‘\T‘˙eo˜indicate“a˜\newline"“y˛!ou˜need“to˜t˛!ypMŢe“the˜ŕ\\ŽĄšcommand.‘ÝÝF‘˙eor‘Śfexample:ŽŠô卍‘};ëE\begin{center}ޤ ‘};oneŽĄ‘};twoŽĄ‘};three‘š–\\ŽĄ‘};four‘š–\\ŽĄ‘};fiveŽĄ‘};\end{center}ŽŽ’@őëDone›Tt•ž9w“o˜threeޤ ’SƒzfourŽĄ’T­ł vž9eŽŽŽŸakëG5.3Ž‘ŔListsŽŸ*%šThere–­are“three“en•˛!vironmen“ts–­for“constructing“lists.‘łIn“eacš˛!h“one“eac˜h“new“item“is“bMŢegun“with“anŽĄŕ\item–şâšcommand.‘SIn“the“ŕitemizeŽ‘1łkšen•˛!vironmen“t–şâthe›şăstart“of“eac˛!h˜item“is˜giv˛!en“a˜mark˛!er,‘in“theŽĄŕenumerateŽ‘8Ľżšen•˛!vironmen“t›čĆeac“h–čĹitem“is˜markš˛!ed“b˜y“a‘čĆn˜um˜bMŢer.‘¤űThese“en˜vironmen˜ts“can‘čĆbMŢe“nestedŽĄwithin–Śfeacš˛!h“other“in“whic˜h“case“the“amoun˜t“of“inden˜tation“used“is“adjusted“accordingly:ŽŚ‘};ëE\begin{itemize}ޤ ‘};\item–š–Itemized“lists“are“handy.ŽĄ‘};\item–š–However,“don't“forgetŽĄ‘ đg\begin{enumerate}ŽĄ‘ đg\item–š–The“`item'“command.ŽĄ‘ đg\item–š–The“`end'“command.ŽĄ‘ đg\end{enumerate}ŽĄ‘};\end{itemize}ŽŽ’ >˘óQŠąĘ cmsy9ëQŽŽŽ’X:ëDItemized–Tlists“are“handy‘˙:Ť.ޤ’ >˘ëQŽŽŽ’X:ëDHo•ž9w“ev“er,–Tdon't“forgetŽŸ€’Ăč1.ŽŽŽ’,oFThe–T`item'“command.ŽĄ’Ăč2.ŽŽŽ’,oFThe–T`end'“command.ŽŽŽŸcOŽšThe–V”third›V“list“making˜en•˛!vironmen“t˜is‘V”ŕdescriptionŽ‘C’âš.‘îfIn˜a˜description›V”y“ou˜spMŢecify–V“the˜item“labMŢelsŽĄinside–Śfsquare“brac•˛!k“ets–Śfafter“the“ŕ\item“šcommand.‘ÝÝF‘˙eor“example:ŽŚ‘};ëEThree–š–animals“that“you“shouldޤ ‘};know–š–about“are:ŽĄ‘};\begin{description}ŽĄ‘ đg\item[gnat]–š–A“small“animal...ŽĄ‘ đg\item[gnu]–š–A“large“animal...ŽĄ‘ đg\item[armadillo]–š–A“...ŽĄ‘};\end{description}ŽŽ’řř6ëDThree–Tanimals“that“yšž9ou“should“kno˜w“abAÇout“are:ޤ’řř6óRt ‰: cmbx9ëRgnatŽŽ’4ëDA‘ÁŚsmall–Áťanimal›Áźthat“causes“no“end˜of“trou-ŽŠ ’X:ble.ŽĄ’řř6ëRgn´CuŽŽ’NŒëDA‘j.large›jCanimal–jDthat“causes˜no“end˜of“trou-ŽŚ’X:ble.ŽĄ’řř6ëRarmadilloŽŽ’*.ÔëDA–Tmedium-sized“animal.ŽŽŽŸbŤëG5.4Ž‘ŔT‘ţŕablesŽŸ*%šBecause–sLŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X›swill“almost“alw•˛!a“ys‘scon“v“ert˜a–ssequence“of“spaces˜in˛!to“a“single“space,‘}Xit“can˜bMŢe“ratherŽĄdicult–Śfto“la˛!y“out“tables.‘ÝÝSee“what“happMŢens“in“this“exampleŽŽŸ’č#×9ŽŽŒ‹ \[ mĚ܍ ýš3$ (Ě܍ ýű3$‘};ëE\begin{flushleft}ޤ ‘};Income‘ s,Expenditure‘š–Result‘,Â\\ŽĄ‘};20s–š–0d‘ s,19s“11d‘Ÿîhappiness“\\ŽĄ‘};20s–š–0d› s,20s“1d‘Y„misery˜\\ŽĄ‘};\end{flushleft}ŽŽ’řř6ëDIncome–TExpAÇenditure“Resultޤ ’řř620s–T0d“19s“11d“happinessŽĄ’řř620s–T0d“20s“1d“miseryŽŽŽŸEZŠšThe‘^\ŕtabbingŽ‘0ú^šen•˛!vironmen“t›^[o“v“ercomes–^\this“problem.‘żWithin˜it“y˛!ou“set“tabstops“and˜tab“to“themޤ ™šm•˛!uc“h›lik“e‘y“ou˜do˜on‘a˜t“ypMŢewriter.‘˙ăT‘˙eabstops–are˜set˜with“the˜ŕ\=“šcommand,‘>and˜the“ŕ\>˜šcommandŽĄmo•˛!v“es–6Đto“the›6Ńnext“stop.‘The“ŕ\\“šcommand“is˜used“to“separate“eac˛!h“line.‘A‘6Ťline˜that“ends“ŕ\killŽĄšprošMŢduces–Śfno“output,“and“can“b˜e“used“to“set“tabstops:ŽŠ‘};ëE\begin{tabbing}ޤ ‘};Income–š–\=Expenditure“\=‘ćX\killŽĄ‘};Income–š–\>Expenditure“\>Result“\\ŽĄ‘};20s–š–0d“\>19s“11d“\>Happiness‘,Â\\ŽĄ‘};20s–š–0d“\>20s“1d‘ s,\>Misery‘ćX\\ŽĄ‘};\end{tabbing}ŽŽ’@řëDIncome–TExpAÇenditure“ResultŽŽ¤ ’@ř20s–T0d‘_Î19s“11d‘ˇHappinessŽŽĄ’@ř20s–T0d‘_Î20s“1d‘WMiseryŽŽĄŽŽŸQšŞšUnlikš˛!e–?’a“t˜ypMŢewriter's‘?‘tab“k˜ey‘˙e,‘T#the“ŕ\>“šcommand‘?‘alw˜a˜ys“mo˜v˜es“to“the“next“tabstop‘?‘in“sequence,‘T#ev˜enŽĄif–‘this“means“moš˛!ving“to“the“left.‘ŸRThis‘‘Žcan“cause“text“to“bMŢe“o˜v˜erwritten“if“the“gap“bMŢet˜w˜een“t˜w˜oŽĄtabstops–Śfis“toMŢo“small.ŽŸ$R…ëG5.5Ž‘ŔV‘ţŕerbatim‘€OutputŽŸŤ˙šSometimes–ĐZyš˛!ou‘Đ[will“w˜an˜t›Đ[to“include“text˜exactly“as˜it“appMŢears“on˜a“terminal“screen.‘[ťF‘˙eor“example,ŽĄy•˛!ou›ևmigh“t‘ֈw“an“t˜to–ֈinclude˜part“of˜a“computer˜program.‘˜“Not“only˜do“y•˛!ou˜w“an“t–ֈLŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X˜to“stop˜pla˛!yingŽĄaround–5ţwith“the‘5ýla•˛!y“out–5ţof“yš˛!our“text,‘Yăy˜ou“also‘5ýw˜an˜t“to“bMŢe“able‘5ýto“t˜ypMŢe“all“the‘5ýc˜haracters“on“y˜ourŽĄkš˛!eybMŢoard–Śfwithout“confusing“LŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X.‘ÝÝThe“ŕverbatimŽ‘5Jšen˜vironmen˜t“has“this“e ect:ŽŚ‘};ëEThe–š–section“of“program“inޤ ‘};question‘š–is:ŽĄ‘};\begin{verbatim}ŽĄ‘};{–š–this“finds“%a“&“%b“}ŽŸżţ‘};for–š–i“:=“1“to“27“doŽĄ‘ ˝7beginŽĄ‘ ˝7table[i]–š–:=“fn(i);ŽĄ‘ ˝7process(i)ŽĄ‘ ˝7end;ŽĄ‘};\end{verbatim}ŽŽ’řř6ëDThe–Tsection“of“program“in“question“is:ŽŸ’řř6ëE{–š–this“finds“%a“&“%b“}ޤ Ą’řř6for–š–i“:=“1“to“27“doŽĄ’$řbeginŽĄ’$řtable[i]–š–:=“fn(i);ŽĄ’$řprocess(i)ŽĄ’$řend;ŽĄŽŽŽŸ’ĺg š10ŽŽŒ‹ fm mĚ܍ ýš3$ (Ě܍ ýű3$ť6Ž‘LËT•ŒĚyps3e‘ffSt“ylesŽŸ×ɍšW‘˙ee›yuha•˛!v“e–ytalready˜come˜across˜the“ŕ\em˜šcommand˜for˜cš˛!hanging“t˜ypMŢeface.‘W Here“is–yua“full“list‘ytof“theޤ ™ša•˛!v‘˙dDailable‘Śft“ypMŢefaces:ŽŠ˙ ‘`ŕ\rm– ó2šRoman‘-ťŰŕ\it“ăItalic‘7Mšŕ\sc“ó;Œ-ř ó3 cmcsc10ćSmall‘"ůCapsŽŽĄ‘`ŕ\em– ó2ăEmphatic‘"żfŕ\sl“ó>pŽ0J ó3 cmsl10éSlan˛!ted‘,]uŕ\tt“TypewriterŽŽĄ‘`\bf– ó2ÚBoldface‘ Ţ/ŕ\sf“ó2m#˝R ó3 cmss10ÝSans‘ŚfSerifŽŽŚšRemem˛!bMŢer–ÁŰthat›ÁÚthese“commands“are˜used“ăinside‘”|ša˜pair“of˜braces“to“limit˜the“amoun˛!t“of˜text“thatŽĄthey–9—e ect.‘—rIn“addition›9˜to“the˜eighš˛!t“t˜ypMŢeface›9˜commands,‘^dthere“are˜a“set˜of“commands˜that“alterŽĄthe–Śfsize“of“the“t˛!ypMŢe.‘ÝÝThese“commands“are:ŽŚ‘`ŕ\tiny‘8đ‚\small‘30Ř\large‘+ä \hugeŽŽĄ‘`\scriptsize–r†\normalsize“\Large‘+ä \HugeŽŽĄ‘`\footnotesize‘`˘\LARGEŽŽŸ(U…ť7Ž‘LËSectioning–ffCommands“and“T‘ţŚfables“of“Con•ŒĚten“tsŽŸ×ɍšT‘˙eec•˛!hnical›ą€doMŢcumen“ts,‘ôFlik“e‘ąthis˜one,‘ôFare˜often˜divided˜in“to‘ąsections.‘˙+Eac“h˜section‘ąhas˜a˜headingŽĄcon˛!taining–pa›qtitle“and˜a“n•˛!um“bMŢer˜for–peasy˜reference.‘ĐŕLŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X˜has“a˜series“of˜commands“that˜will“allo˛!wŽĄyš˛!ou–űéto“iden˜tify‘űčdi eren˜t“sorts“of“sections.‘Ľ Once‘űčy˜ou“ha˜v˜e“done“this“LŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X“tak˜es‘űčon“the“respMŢonsibilit˜yŽĄof–Śflaš˛!ying“out“the“title“and“of“pro˜viding“the“n˜um˜bMŢers.ŽŸ˙؍The–Śfcommands“that“y˛!ou“can“use“are:ŽŚ‘`ŕ\chapter‘&$b\subsection‘9e`\paragraphŽŽĄ‘`\section‘&$b\subsubsection‘(&b\subparagraphŽŽĄŚšThe–‰ćnaming“of“these›‰ĺlast“t•˛!w“o–‰ćis“unfortunate,‘ÂĹsince“they“do“not“really“ha•˛!v“e˜an“ything–‰ćto“do“withŽĄ`paragraphs'–ž˝in“the“normal“sense“of“the“wš˛!ord;‘ öthey“are“just“lo˜w˜er“lev˜els“of“section.‘ĽIn“most“doMŢcumen˜tŽĄstš˛!yles,‘MČheadings–,Nmade“with“ŕ\paragraph“šand“ŕ\subparagraph“šare“not‘,On˜um˜bMŢered.‘o•ŕ\chapter“šis“notŽĄa•˛!v‘˙dDailable›őYin‘őXdoMŢcumen“t˜st“yle‘őXŕarticleŽ‘-2ţš.‘ĘľThe˜commands˜should–őXbMŢe˜used“in˜the˜order“giv˛!en,‘IsinceŽĄsections–Śfare“n•˛!um“bMŢered–Śfwithin“c˛!hapters,“subsections“within“sections,“etc.ŽŸ˙؍A‘đŞsev•˛!en“th–đ˝sectioning“command,–Sŕ\partš,“is–đ˝also“aš˛!v‘˙dDailable.‘źâIts‘đžuse“is“alw˜a˜ys“optional,‘Sand“it“is“usedŽĄto–nTdivide“a“large‘nUdoMŢcumenš˛!t“in˜to“series“of“parts.‘Ë-It“doMŢes“not“alter“the“n˜um˜bMŢering“used‘nUfor“an˜y“of“theŽĄother‘Śfcommands.ŽŽŸ’ĺg 11ŽŽŒ‹ p- mĚ܍ ýš3$ (Ě܍ ýű3$šIncluding–vmthe“command“ŕ\tableofcontents‘vnšin“yš˛!ou“doMŢcumen˜t“will“cause“a“con˜ten˜ts‘vnlist“to“bMŢe“in-ޤ ™šcluded,‘Ť*con˛!taining›winformation–wcollected“from˜the“v‘˙dDarious“sectioning“commands.‘OľY‘˙eou˜will“noticeŽĄthat–o&eacš˛!h‘o%time“y˜our“doMŢcumen˜t›o%is“run“through˜LŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X“the“table˜of“con•˛!ten“ts‘o&is˜alw“a“ys–o&made“up˜of“theŽĄheadings–^Ôfrom›^Óthe“previous˜v˛!ersion“of“the˜doMŢcumen˛!t.‘&This“is˜bMŢecause“LŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X˜collects“informationŽĄfor–ý=the›ý‘{ęŕ?`ŽŽĄ‘`š<‘œüŕ!`‘@=Nš.–Ó3.“.‘á@ŕ\ldots‘)>ŚšLŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X‘Śfŕ\LaTeXŽŽĄŚšThere–¨źis›¨ťalso“a˜ŕ\today“šcommand˜that“prin˛!ts˜the“curren•˛!t˜date.‘äŢWhen˜y“ou–¨źuse˜these“commandsŽĄremem˛!bMŢer–֌that›֍LŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X“will“ignore˜anš˛!y“spaces“that“follo˜w–֍them,‘â•so“that–֌y˜ou“can‘֍t˜ypMŢe“`ŕ\pounds‘żŞ20š'ŽĄto–ˆŒget“`ëP$š20'.‘ÓęHo•˛!w“ev“er,‘Ž„if›ˆŒy“ou‘ˆt“ypMŢe˜`ŕLaTeX–żŞis“wonderfulš'˜y•˛!ou˜will˜get˜`LŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B Xis˜w“onderful'|noticeŽĄthe–]lacš˛!k“of“space“after‘]LŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X.‘äT‘˙eo“o˜v˜ercome“this“problem“y˜ou“can‘]follo˜w“an˜y“of“these“commandsŽĄbš˛!y–$™a“pair“of“empt˜y“brac˜k˜ets“and“then“an˜y“spaces“that“y˜ou“wish“to“include,‘D%and“y˜ou“will“see“thatŽĄŕ\LaTeX{}–żŞreally“is“wonderful!–Śfš(LŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X“really“is“w˛!onderful!).ŽŽŸ’ĺg 12ŽŽŒ‹ z; mĚ܍ ýš3$ (Ě܍ ýű3$šFinally‘˙e,–ՑLŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X‘˜î`math'›˜ďmoMŢde,“normally˜used˜to‘˜îla•˛!y“out˜mathematical˜form“ulae,‘Ցgiv“es‘˜îaccess˜to˜anޤ ™ševš˛!en–Ş$larger“range“of‘Ş%sym˜bšMŢols,‘ëincluding“the“upp˜er“and“lo•˛!w“er‘Ş%case–Ş$greek“mathematical“alphab˜et,ŽĄcalligraphic–7letters,››'mathematical“opMŢerators“and“relations,˜arro˛!ws“and“a‘7whole“lot“more.‘ ŹThisŽĄdoMŢcumenš˛!t–ß7has“not‘ß6men˜tioned“math“moMŢde,‘íkand‘ß6it“isn't“going“to“either,‘íjso“y˜ou“will“ha˜v˜e‘ß6to“refer“toŽĄthe–Śfmanš˛!ual“if“y˜ou“really“need“something“that“y˜ou“can't“get“otherwise.ŽŸ)€Ať9Ž‘LËTitlesŽŸq‹šMost›ńčdoMŢcumen•˛!ts‘ńéha“v“e˜a–ńétitle.‘ŔdT‘˙eo“title˜a“LŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X˜doMŢcumen•˛!t,‘Ęy“ou˜include‘ńéthe˜follo“wing‘ńécommands˜inŽĄy•˛!our›ŚfdoMŢcumen“t,˜usually˜just˜after˜ŕbegin{document}š.ŽŠ‘`ëE\title{required‘š–title}ޤ ‘`\author{required‘š–author}ŽĄ‘`\date{required‘š–date}ŽĄ‘`\maketitleŽŸ™ššIf–HÉthere“are›HČsev˛!eral“authors,‘ąathen“their“names“should˜bMŢe“separated“b˛!y“ŕ\andš;‘úthey˜can“also“bMŢeޤ ™šseparated–7;bš˛!y‘7<ŕ\\“šif“y˜ou‘7“for˜immediate˜help.ŽĄ‘`!–š–Environment“itemie“undefined.ŽĄ‘`\@latexerr–š–...for“immediate“help.}\errmessage“{#1}ŽĄ’ŸP\endgroupŽĄ‘`l.140‘š–\begin{itemie}ŽĄĄ‘`?ŽŸ›šAfter–Śftš˛!yping“the“`?'‘ÝÝLŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X“stops“and“w˜aits“for“y˜ou“to“tell“it“what“to“do.ŽŚThe›Hx rst‘Hyt•˛!w“o˜lines˜of–Hythe˜message˜just˜tell“y˛!ou˜that˜the“error˜w˛!as˜detected“b˛!y˜LŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X.‘ÄThe˜thirdޤ ™šline,‘I-the›1ŕone–1ßthat“starts˜`!'‘ˇis“the˜ăerr–˙pšor‘śindic“atorš.‘ˇIt–1ßtells˜y˛!ou“what“the˜problem“is,‘I-though˜unš˛!til“y˜ouŽĄha•˛!v“e–'had›(some“expMŢerience˜of“LŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X˜this“ma˛!y˜not“mean˜a“lot˜to“y˛!ou.‘ŹIn“this˜case“it˜is“just˜telling“y˛!ouŽĄthat–GNit“doMŢesn't›GMrecognise“an“en•˛!vironmen“t–GNcalled˜ŕitemieŽ‘&ĹIš.‘Ŕ•The˜next“t•˛!w“o–GNlines“tell˜y˛!ou“what“LŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B XŽĄw˛!as– Rdoing› Swhen“it“found˜the“error,‘;#they“are˜irrelev‘˙dDan˛!t“at“the˜momen˛!t“and“can“bMŢe˜ignored.‘ą,The“ nalŽĄline–śXis›śYcalled“the˜ăerr–˙pšor‘ů•lo“c“atorš,‘şUand˜is–śXa˜cop˛!y“of“the˜line“from˜y˛!our“ le˜that“caused“the˜problem.‘ ´ItŽĄstart–Ĺŕwith“a“line›Ĺán•˛!um“bMŢer–Ĺŕto“help“y˛!ou“to“ nd˜it“in“yš˛!our“ le,‘Íżand“if“the“error“w˜as“in‘Ĺáthe“middle“of“aŽĄline–Ĺait“will“bMŢe‘Ĺ`shoš˛!wn“brok˜en“at“the“pMŢoin˜t“where“LŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X‘Ĺ`realised“that“there“w˜as“an“error.‘:ÍLŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X“canŽĄsometimes–fSpass“the“pšMŢoin˛!t‘fRwhere“the“real“error“is“b˜efore‘fRdisco•˛!v“ering–fSthat“something“is“wrong,‘s#but“itŽĄdoMŢesn't–Śfusually“get“v˛!ery“far.ŽŸٛA•˛!t›ëthis‘ëpMŢoin“t˜y“ou–ëcould˜do“sev˛!eral˜things.‘ŤÂIf“y˛!ou˜knew“enough˜abMŢout“LŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X˜yš˛!ou“migh˜t›ëbMŢe“able˜toŽĄ x–žthe›problem,‘,kor“y˛!ou˜could“t˛!ypMŢe“`X'‘‚and˜press“the˜return“k˛!ey˜to“stop˜LŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X“running˜while“y˛!ouŽĄgo–Ügand›Ühcorrect“the˜error.‘áThe“bMŢest˜thing“to˜do,‘éçho•˛!w“ev“er,‘éčis–Ügjust˜to“press˜the“return“k˛!ey‘˙e.‘âThis“willŽĄallo˛!w–eýLŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X›eţto“go“on˜running“as“if˜nothing“had“happMŢened.‘ČeIf“y•˛!ou˜ha“v“e–eýmade“one˜mistakš˛!e,‘rßthen“y˜ouŽĄha•˛!v“e–4Çprobably›4Čmade“sev˛!eral“and˜yš˛!ou“ma˜y“as‘4Čw˜ell“try“to›4Č nd“them“all˜in“one“go.‘‰It's˜m•˛!uc“h‘4ÇmoreŽĄecienš˛!t–żFto“do“it‘żEthis“w˜a˜y“than“to“run“LŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X“o˜v˜er“and‘żEo˜v˜er“again“ xing“one“error“at“a‘żEtime.‘(}Don'tŽĄwš˛!orry–„ĐabMŢout“remem˜bMŢering“what‘„Ďthe“errors“w˜ere|a“cop˜y“of“all“the“error‘„Ďmessages“is“bMŢeing“sa˜v˜ed“inŽĄa–ˆ›ălo‘˙pšg‘€›š le“so“that“y˛!ou›ˆšcan“loMŢok“at˜them“afterw•˛!ards.‘ÓďSee˜y“our‘ˆ›ălo–˙pšc“al‘ρguide‘[<što˜ nd–ˆ›out“what“this˜ le“isŽĄcalled.ŽŚIf–˝7y˛!ou›˝8loMŢok“at˜the“line“that˜caused“the“error˜it's“normally˜ob˛!vious“what“the˜problem“w•˛!as.‘#If˜y“ou‘˝7can'tŽĄwš˛!ork–‹xout‘‹ywhat“y˜ou“problem“is‘‹yloMŢok“at“the“hin˜ts‘‹ybMŢelo˜w,‘Űand“if“they›‹ydon't“help“consult“Chapter˜6“ofŽĄthe–“†manš˛!ual.‘דIt“con˜tains“a›“‡list“of“all“of˜the“error“messages“that˜yš˛!ou“are“lik˜ely“to‘“‡encoun˜ter“togetherŽĄwith–Śfsome“hinš˛!ts“as“to“what“ma˜y“ha˜v˜e“caused“them.ŽŽŸ’ĺg 15ŽŽŒ‹™ mĚ܍ ýš3$ (Ě܍ ýű3$šSome–Śfof“the“most“common“mistak˛!es“that“cause“errors“areŽŸDE‘lĐ×ŽŽŽ‘`šA–Śfmis-spMŢelt“command“or“en•˛!vironmen“t‘Śfname.ޤŇ~‘lĐ×ŽŽŽ‘`šImpropMŢerly–Śfmatcš˛!hed“`ŕ{š'“and“`ŕ}š'|remem˜bMŢer“that“they“should“alw˜a˜ys“come“in“pairs.ŽĄ‘lĐ×ŽŽŽ‘`šT‘˙erying–Á„to›Áƒuse“one˜of“the˜ten˜spMŢecial“c˛!haracters“ŕ#–żŞ$“%“&“_“{“}“~“^˜šand–Á„ŕ\˜šas˜an“ordinaryŽŠ ™š‘`prin•˛!ting‘Śfsym“bMŢol.ŽĄ‘lĐ×ŽŽŽ‘`šA–Śfmissing“ŕ\end“šcommand.ŽŸŇ}‘lĐ×ŽŽŽ‘`šA–Śfmissing“command“argumen˛!t“(that's“the“bit“enclosed“in“'ŕ{š'“and“`ŕ}š').ŽŸDFOne–error“can›get“LŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X“so“confused“that˜it“repMŢorts“a“series“of“spurious˜errors“as“a“result.‘ÝIf“y˛!ouŽŚha•˛!v“e–G+an“error“that‘G,yš˛!ou“understand,‘Z7follo˜w˜ed“b˜y“a“series“that“y˜ou–G,don't,‘Z6then“try–G+correcting“the“ rstŽŚerror|the–Śfrest“maš˛!y“v‘˙dDanish“as“if“b˜y“magic.ޤ6 Sometimes–°ÂLŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X“ma˛!y›°Ăwrite“a“ŕ*“šand“stop˜without“an“error“message.‘üňThis“is“normally˜caused“b˛!y“aŽŚmissing–˜Çŕ\end{document}“šcommand,‘›but“other“errors›˜Čcan“cause“it.‘ŮSIf“this“happ•MŢens˜t˛!yp“e–˜Çŕ\stop“šandŽŚpress–Śfthe“return“k˛!ey‘˙e.ŽĄFinally‘˙e,‘töLŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X›KĽwill–KŚsometimes“prin˛!t“ăwarning‘C§šmessages.‘͝They“repMŢort˜problems“that“w˛!ere“not“badŽŚenough–<%to›<&cause“LŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X˜to“stop˜proMŢcessing,‘a•but˜nevš˛!ertheless“ma˜y‘<&require“in˜v˜estigation.‘ŸThe“mostŽŚcommon–Śfproblems“are“`o•˛!v“erfull'–Śfand“`underfull'“lines“of“text.‘ÝÝA“message“lik˛!e:ŽŸŞŤ‘`ëEOverfull–š–\hbox“(10.58649pt“too“wide)“in“paragraph“at“lines“172--175ŽŸ ‘`[]\tenrm–š–Mathematical“for-mu-las“may“be“dis-played.“A“dis-playedŽŸDEšindicates–Gathat›G`LŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X“could˜not“ nd˜a“go•MŢo“d˜place–Gato˜break“a˜line“when˜la˛!ying“out˜a“paragraph.‘ž0As“aŽŚresult,‘lĘit–^cwš˛!as“forced“to“let“the“line“stic˜k“out‘^din˜to“the“righ˜t-hand“margin,‘lĘin“this“case“b˜y“10.6“pMŢoin˜ts.ŽŚSince–Ĺ,a›Ĺ-pMŢoin˛!t“is˜abMŢout“1/72nd˜of“an˜incš˛!h“this“ma˜y›Ĺ-bMŢe“rather˜hard“to˜see,‘ĚŢbut“it˜will“bMŢe˜there“noneŽŚthe‘Śfless.ŽĄThis–ű?particular“problem“happšMŢens“b˜ecause“LŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X“is“rather“fussy“ab˜out“line“breaking,‘uand“it“w˛!ouldŽŚrather–ϝgenerate›Ϟa“line“that“is˜toMŢo“long“than˜generate“a“paragraph˜that“doMŢesn't“meet“its˜high“stan-ŽŚdards.‘é†The–ŞIsimplest“w•˛!a“y–ŞIaround“the“problem“is“to“enclose“the“enš˛!tire“o ending“paragraph“bMŢet˜w˜eenŽŚŕ\begin{sloppypar}––Öšand“ŕ\end{sloppypar}“šcommands.‘Ř­This“tells“LŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X‘–Őthat“yš˛!ou“are“happ˜y“for“itŽŚto–Śfbreak“its“oš˛!wn“rules“while“it“is“w˜orking“on“that“particular“bit“of“text.ŽĄAlternativ˛!ely‘˙e,‘¨Pmessages›§íabMŢout–§î\Underfull“ŕ\hboxš'es"˜ma˛!y“appMŢear.‘âtThese“are˜lines“that“had˜to“ha•˛!v“eŽŚmore–@úspace“inserted“bMŢet•˛!w“een‘@ůw“ords–@úthan“LŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X“wš˛!ould“ha˜v˜e“lik˜ed.‘źIn“general“there‘@ůis“not“m˜uc˜h“thatŽŚy˛!ou– |can› {do“abMŢout˜these.‘ Y‘˙eour˜output“will˜loMŢok“ ne,‘#ev˛!en˜if“the˜line“loMŢoks˜a“bit˜stretc˛!hed.‘ AbMŢoutŽŚthe–Śfonly“thing“y˛!ou“could“do“is“to“re-write“the“o ending“paragraph!ŽŽŸ’ĺg 16ŽŽŒ‹Š mĚ܍ ýš3$ (Ě܍ ýű3$ť12Ž‘ fdA–ffFinal“ReminderŽŸq‹šY‘˙eou›Ŕyno•˛!w‘Ŕzkno“w˜enough–ŔzLŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X˜to“proMŢduce˜a“wide˜range˜of“doMŢcumen˛!ts.‘,But“this˜doMŢcumen˛!t“has˜onlyޤ ™šscratc˛!hed–%gthe“surface›%hof“the“things“that“LŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X“can˜do.‘ZŕThis“enš˛!tire“doMŢcumen˜t‘%hw˜as“itself“proMŢducedŽĄwith– LŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X› (with“no“stic˛!king“things˜in“or“clev˛!er“use˜of“a“photoMŢcopier)˜and“ev˛!en“it“hasn't˜used“allŽĄthe–%nfeatures“that“it“could.‘ZôF‘˙erom“this“yš˛!ou“ma˜y“get“some“feeling“for“the‘%mpMŢo˜w˜er“that“LŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X“puts“atŽĄy˛!our‘ŚfdispMŢosal.ŽŠ™šPlease–č€rememš˛!bMŢer“what‘čw˜as“said“in“the“in˜troMŢduction:‘~ęif‘čy˜ou“Údo“šha˜v˜e“a“complex‘čdoMŢcumen˜t“to“proMŢduceŽĄthen‘xöÚgo›ţMand–ţLread“the˜manŚtualš.‘θY‘˙eou–xöwill“bMŢe“wš˛!asting“y˜our‘x÷time“if“y˜ou“rely“only“on‘x÷what“y˜ou“ha˜v˜eŽĄread‘Śfhere.ŽŚOne–Śfother“w•˛!arning:‘ÝÝha“ving–Śfdabbled“with“LŸýűó‘üŮŇAŽŽ‘ČGšT‘ţ,łŸ[wEŽ‘B X“yš˛!our“doMŢcumen˜ts“will“nev˜er“bMŢe“the“same“again“.–Ó3.“.“.ŽŽŸ’ĺg 17ŽŽŒřśTƒ’Ŕ;čmĚÜŐÁG óRt ‰: cmbx9óQŠąĘ cmsy9óP Pâ ó3 cmu10óGÂÖN  cmbx12óEߤN cmtt9óDo´‹Ç cmr9ó>pŽ0J ó3 cmsl10ó;Œ-ř ó3 cmcsc10ó9#Ńfcmti8ó8ý': ó3 cmti10ó5ßę ó3 cmmi10ó'|{Ycmr8óň"V cmbx10óÂÖN ff cmbx12óKń`y ó3 cmr10ůťßßßßßlatex2rtf-2.3.18/test/enc_latin3.tex0000777000175000017500000001144113050672360017446 0ustar wilfriedwilfried\documentclass[10pt]{article} \usepackage[T1]{fontenc} \usepackage[latin3]{inputenc} \usepackage{times} \usepackage{textcomp} \begin{document} \begin{tabular}{ccrl} 80& &128&\\ 81& &129&\\ 82& &130&\\ 83& &131&\\ 84& &132&\\ 85& &133&\\ 86& &134&\\ 87& &135&\\ 88& &136&\\ 89& &137&\\ 8A& &138&\\ 8B& &139&\\ 8C& &140&\\ 8D& &141&\\ 8E& &142&\\ 8F& &143&\\ 90& &144&\\ 91& &145&\\ 92& &146&\\ 93& &147&\\ 94& &148&\\ 95& &149&\\ 96& &150&\\ 97& &151&\\ 98& &152&\\ 99& &153&\\ 9A& &154&\\ 9B& &155&\\ 9C& &156&\\ 9D& &157&\\ 9E& &158&\\ 9F& &159&\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} A0& &160&NO-BREAK SPACE\\ A1&Ą&294&LATIN CAPITAL LETTER H WITH STROKE\\ A2&˘&728&BREVE\\ A3&Ł&163&POUND SIGN\\ A4&¤&164&CURRENCY SIGN\\ A5& &65535&unknown\\ A6&Ś&292&LATIN CAPITAL LETTER H WITH CIRCUMFLEX\\ A7&§&167&SECTION SIGN\\ A8&¨&168&DIAERESIS\\ A9&Š&304&LATIN CAPITAL LETTER I WITH DOT ABOVE\\ AA&Ş&350&LATIN CAPITAL LETTER S WITH CEDILLA\\ AB&Ť&286&LATIN CAPITAL LETTER G WITH BREVE\\ AC&Ź&308&LATIN CAPITAL LETTER J WITH CIRCUMFLEX\\ AD&­&173&SOFT HYPHEN\\ AE& &65535&unknown\\ AF&Ż&379&LATIN CAPITAL LETTER Z WITH DOT ABOVE\\ B0&°&176&DEGREE SIGN\\ B1&ą&295&LATIN SMALL LETTER H WITH STROKE\\ B2&$˛$&178&SUPERSCRIPT TWO\\ B3&$ł$&179&SUPERSCRIPT THREE\\ B4&´&180&ACUTE ACCENT\\ B5&$ľ$&181&MICRO SIGN\\ B6&ś&293&LATIN SMALL LETTER H WITH CIRCUMFLEX\\ B7&ˇ&183&MIDDLE DOT\\ B8&¸&184&CEDILLA\\ B9&š&305&LATIN SMALL LETTER DOTLESS I\\ BA&ş&351&LATIN SMALL LETTER S WITH CEDILLA\\ BB&ť&287&LATIN SMALL LETTER G WITH BREVE\\ BC&ź&309&LATIN SMALL LETTER J WITH CIRCUMFLEX\\ BD&˝&189&VULGAR FRACTION ONE HALF\\ BE& &65535&unknown\\ BF&ż&380&LATIN SMALL LETTER Z WITH DOT ABOVE\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} C0&Ŕ&192&LATIN CAPITAL LETTER A WITH GRAVE\\ C1&Á&193&LATIN CAPITAL LETTER A WITH ACUTE\\ C2&Â&194&LATIN CAPITAL LETTER A WITH CIRCUMFLEX\\ C3& &65535&unknown\\ C4&Ä&196&LATIN CAPITAL LETTER A WITH DIAERESIS\\ C5&Ĺ&266&LATIN CAPITAL LETTER C WITH DOT ABOVE\\ C6&Ć&264&LATIN CAPITAL LETTER C WITH CIRCUMFLEX\\ C7&Ç&199&LATIN CAPITAL LETTER C WITH CEDILLA\\ C8&Č&200&LATIN CAPITAL LETTER E WITH GRAVE\\ C9&É&201&LATIN CAPITAL LETTER E WITH ACUTE\\ CA&Ę&202&LATIN CAPITAL LETTER E WITH CIRCUMFLEX\\ CB&Ë&203&LATIN CAPITAL LETTER E WITH DIAERESIS\\ CC&Ě&204&LATIN CAPITAL LETTER I WITH GRAVE\\ CD&Í&205&LATIN CAPITAL LETTER I WITH ACUTE\\ CE&Î&206&LATIN CAPITAL LETTER I WITH CIRCUMFLEX\\ CF&Ď&207&LATIN CAPITAL LETTER I WITH DIAERESIS\\ D0& &65535&unknown\\ D1&Ń&209&LATIN CAPITAL LETTER N WITH TILDE\\ D2&Ň&210&LATIN CAPITAL LETTER O WITH GRAVE\\ D3&Ó&211&LATIN CAPITAL LETTER O WITH ACUTE\\ D4&Ô&212&LATIN CAPITAL LETTER O WITH CIRCUMFLEX\\ D5&Ő&288&LATIN CAPITAL LETTER G WITH DOT ABOVE\\ D6&Ö&214&LATIN CAPITAL LETTER O WITH DIAERESIS\\ D7&$×$&215&MULTIPLICATION SIGN\\ D8&Ř&284&LATIN CAPITAL LETTER G WITH CIRCUMFLEX\\ D9&Ů&217&LATIN CAPITAL LETTER U WITH GRAVE\\ DA&Ú&218&LATIN CAPITAL LETTER U WITH ACUTE\\ DB&Ű&219&LATIN CAPITAL LETTER U WITH CIRCUMFLEX\\ DC&Ü&220&LATIN CAPITAL LETTER U WITH DIAERESIS\\ DD&Ý&364&LATIN CAPITAL LETTER U WITH BREVE\\ DE&Ţ&348&LATIN CAPITAL LETTER S WITH CIRCUMFLEX\\ DF&ß&223&LATIN SMALL LETTER SHARP S\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} E0&ŕ&224&LATIN SMALL LETTER A WITH GRAVE\\ E1&á&225&LATIN SMALL LETTER A WITH ACUTE\\ E2&â&226&LATIN SMALL LETTER A WITH CIRCUMFLEX\\ E3& &65535&unknown\\ E4&ä&228&LATIN SMALL LETTER A WITH DIAERESIS\\ E5&ĺ&267&LATIN SMALL LETTER C WITH DOT ABOVE\\ E6&ć&265&LATIN SMALL LETTER C WITH CIRCUMFLEX\\ E7&ç&231&LATIN SMALL LETTER C WITH CEDILLA\\ E8&č&232&LATIN SMALL LETTER E WITH GRAVE\\ E9&é&233&LATIN SMALL LETTER E WITH ACUTE\\ EA&ę&234&LATIN SMALL LETTER E WITH CIRCUMFLEX\\ EB&ë&235&LATIN SMALL LETTER E WITH DIAERESIS\\ EC&ě&236&LATIN SMALL LETTER I WITH GRAVE\\ ED&í&237&LATIN SMALL LETTER I WITH ACUTE\\ EE&î&238&LATIN SMALL LETTER I WITH CIRCUMFLEX\\ EF&ď&239&LATIN SMALL LETTER I WITH DIAERESIS\\ F0& &65535&unknown\\ F1&ń&241&LATIN SMALL LETTER N WITH TILDE\\ F2&ň&242&LATIN SMALL LETTER O WITH GRAVE\\ F3&ó&243&LATIN SMALL LETTER O WITH ACUTE\\ F4&ô&244&LATIN SMALL LETTER O WITH CIRCUMFLEX\\ F5&ő&289&LATIN SMALL LETTER G WITH DOT ABOVE\\ F6&ö&246&LATIN SMALL LETTER O WITH DIAERESIS\\ F7&$÷$&247&DIVISION SIGN\\ F8&ř&285&LATIN SMALL LETTER G WITH CIRCUMFLEX\\ F9&ů&249&LATIN SMALL LETTER U WITH GRAVE\\ FA&ú&250&LATIN SMALL LETTER U WITH ACUTE\\ FB&ű&251&LATIN SMALL LETTER U WITH CIRCUMFLEX\\ FC&ü&252&LATIN SMALL LETTER U WITH DIAERESIS\\ FD&ý&365&LATIN SMALL LETTER U WITH BREVE\\ FE&ţ&349&LATIN SMALL LETTER S WITH CIRCUMFLEX\\ FF&˙&729&DOT ABOVE\\ \end{tabular} \end{document} latex2rtf-2.3.18/test/fonts.tex0000777000175000017500000001234213050672360016561 0ustar wilfriedwilfried\documentclass{article} \begin{document} \section{Font commands} First the trickiest bit. {\it This is in italics {\em this is emphasized} but this is italics and {\em this final bit is emphasized} but this is not.} An easier test. \textit{This is in italics \emph{this is emphasized} but this is italics and \emph{this final bit is emphasized} but this is not.} This is roman, testing \verb#itshape# {\itshape italics} more roman text. This is roman, testing \verb#\begin{itshape}# \begin{itshape} italics\end{itshape} more roman text. This is roman, testing \verb#\textit# \textit{italics} more roman text. \section{Emphasize commands} \subsection{the em environment} Testing the \verb#\em# environment by \begin{em}emphasizing text and then \begin{em}embedding another level inside\end{em} of the first level.\end{em} this is some text \begin{em} with some emphasized text \end{em} in the middle. {\bf this is some bold text \begin{em} with some emphasized text \end{em} in the middle.} \textbf{this is some bold text \begin{em} with some emphasized text \end{em} in the middle.} \textit{this is some italic text \begin{em} with some emphasized text \end{em} in the middle.} \subsection{the emph command} Next testing \verb#\emph# by \emph{emphasizing text and then \emph{embedding another level inside} of the first level.} this is some text \emph{with some emphasized text} in the middle. {\bf this is some bold text \emph{with some emphasized text} in the middle.} \textbf{this is some bold text \emph{with some emphasized text} in the middle.} \textit{this is some italic text \emph{with some emphasized text} in the middle.} \subsection{the em command} First testing \verb#\em# by {\em emphasizing text and then {\em embedding another level inside} of the first level.} this is some text {\em with some emphasized text} in the middle. {\bf this is some bold text {\em with some emphasized text} in the middle.} \textbf{this is some bold text {\em with some emphasized text} in the middle.} \textit{this is some italic text {\em with some emphasized text} in the middle.} \section{Miscellaneous} what about \it some italics \bf some bold \rm followed by roman {\it here is italics \tt followed by plain typewriter} {\it here is italics \sf followed by plain sans serif} \textbf{here is bold roman \sf followed by plain sans serif} {\bf here is bold roman \textsf{followed by bold sans serif}} \textbf{\textit{bold italics \sf followed by plain sans serif}} \textbf{\textit{bold italics \textsf{followed by bold italics sans serif}}} \section{Normal roman font} \begin{itemize} \item Testing \verb#\rm# by \textsf{sans serif text with {\rm some roman text} in the middle}. \item Testing \verb#\rm# by \textit{italic text with {\rm some roman text} in the middle}. \item Testing \verb#\rm# by \textbf{bold text with {\rm some plain roman text} in the middle}. \item Testing \verb#\rm# by \textsc{small caps with some {\rm some plain roman text} in the middle}. \item Testing \verb#\textrm# by \textsf{sans serif text with \textrm{some roman text} in the middle}. \item Testing \verb#\textrm# by \textit{italic text with \textrm{some italic roman text} in the middle}. \item Testing \verb#\textrm# by \textbf{bold text with \textrm{some bold roman text} in the middle}. \item Testing \verb#\textrm# by \textsc{small caps with some \textrm{some small caps roman text} in the middle}. \item Testing \verb#\rmfamily# by \textsf{sans serif text with {\rmfamily some roman text} in the middle}. \item Testing \verb#\rmfamily# by \textit{italic text with {\rmfamily some italic roman text} in the middle}. \item Testing \verb#\rmfamily# by \textbf{bold text with {\rmfamily some bold roman text} in the middle}. \item Testing \verb#\rmfamily# by \textsc{small caps with some {\rmfamily some roman text} in the middle}. \item We also have math $x+y = \mathrm{truth}$. \end{itemize} \section{Normal sans serif font} This is some text. \emph{This text is emphasized} \begin{itemize} \item Testing \verb#\sf# by \textrm{roman text with {\sf some plain sans serif text} in the middle}. \item Testing \verb#\sf# by \textit{italic text with {\sf some plain sans serif text} in the middle}. \item Testing \verb#\sf# by \textbf{bold text with {\sf some plain sans serif text} in the middle}. \item Testing \verb#\sf# by \textsc{small caps with some {\sf some plain sans serif text} in the middle}. \item Testing \verb#\textsf# by \textrm{roman text with \textsf{some sans serif text} in the middle}. \item Testing \verb#\textsf# by \textit{italic text with \textsf{some italic sans serif text} in the middle}. \item Testing \verb#\textsf# by \textbf{bold text with \textsf{some bold sans serif text} in the middle}. \item Testing \verb#\textsf# by \textsc{small caps with some \textsf{some small caps sans serif text} in the middle}. \item Testing \verb#\sffamily# by \textrm{roman text with {\sffamily some sans serif text} in the middle}. \item Testing \verb#\sffamily# by \textit{italic text with {\sffamily some italic sans serif text} in the middle}. \item Testing \verb#\sffamily# by \textbf{bold text with {\sffamily some bold sans serif text} in the middle}. \item Testing \verb#\sffamily# by \textsc{small caps with some {\sffamily some small caps sans serif text} in the middle}. \end{itemize} \end{document} latex2rtf-2.3.18/test/acronym.tex0000777000175000017500000000655113050672360017105 0ustar wilfriedwilfried\documentclass[a4paper,11pt]{article} \usepackage[T1]{fontenc} \usepackage[utf8x]{inputenc} \setlength{\oddsidemargin}{0pt} \setlength{\evensidemargin}{0pt} \setlength{\textwidth}{6in} \setlength{\parindent}{0pt} %% tested packages \usepackage[printonlyused,withpage]{acronym} \usepackage{srcltx} \usepackage{cite} \usepackage{nameref} %% for more complex labels \usepackage{ifpdf} %% \usepackage{harvard} %% backport in progress \usepackage{graphicx} \graphicspath{{./graphs}{./figures}} %% end tested packages \title{acronym and srcltx support for LaTEX2rtf} \author{Pedro A. Aranda Guti\'errez} \begin{document} \maketitle \acused{bgp} \section{Test section} This is a test file for the acronyms. Remember we have just set: \begin{verbatim} \acused{bgp} \end{verbatim} But I will leave \ac{undef} undefined! \subsection{Test text} \label{sec:test} Each time a \ac{bgp} advertisement traverses an \ac{as}, the \ac{aspath} attribute is modified. Additionally, many \acp{as} introduce additional changes in the \ac{aspath} for traffic engineering purposes. Forget about using \acfi{RIP} in an interdomain environment. This should have expanded the \texttt{RIP} acronym, without marking it as used. The next time it is used, it will appear completely expanded. But it is not only communications which have strange acronyms. Look at politics: You have one \ac{MP} and there is no problem. Even when you don't want to waste too much time, you are on the safe side: \acp{MP}. But when you bother about all them, you get in trouble with \aclp{MP}. \section{Acronym definition macros} Using following acronym macros \begin{verbatim} \usepackage[printonlyused,withpage]{acronym} \begin{acronym} [IS-IS] \acrodef{aspath}[AS\_PATH]{Autonomous System Path} \acrodef{as}[AS]{Autonomous System} \acrodefplural{as}[ASes]{Autonomous Systems} \acrodef{MP}{Member of Parliament} \acrodefplural{MP}{Members of Parliament} \acro{bgp}[BGP-4]{Border Gateway Protocol} \acro{isis}[IS-IS]{IS-IS Protocol} \acro{RIP}{RIPv2 Routing Protocol} \acro{NA}[NA]{Number of Avogadro \acroextra{ (See Section~\ref{sec:test})}} \end{acronym} \end{verbatim} Only \textbf{\ac{bgp}} and \textbf{\ac{RIP}} should appear as an acronym in the acronym section. This line should have the acronym \ac{RIP} expanded. \begin{verbatim} \acfi{RIP} \end{verbatim} doesn't mark the acronym as used! (see generated acronym.dvi) \section{Shortcuts} \label{sec:shortcut} The text for the \ac{NA}, which is defined as \begin{verbatim} \acro{NA}[NA]{Number of Avogadro\acroextra{ (See Section~\ref{sec:test})}} \end{verbatim} where \texttt{ref\{sec:test\}} refers to Section~\ref{sec:test} in Page~\pageref{sec:test}. It is also necessary to scan the .aux file for other things, like citations.. Let's see if I have gotten it right and I can cite the multivendor interworking book \cite{Goralski-cisco-juniper} or the Defcon paper \cite{defcon16-bgp} \section*{Acronyms} \begin{acronym}[BGP-4] \acrodef{aspath}[AS\_PATH]{Autonomous System Path} \acrodef{as}[AS]{Autonomous System} \acrodefplural{as}[ASes]{Autonomous Systems} \acrodef{MP}{Member of Parliament} \acrodefplural{MP}{Members of Parliament} \acro{bgp}[BGP-4]{Border Gateway Protocol} \acro{isis}[IS-IS]{IS-IS Protocol} \acro{RIP}{RIPv2 Routing Protocol} \acro{NA}[NA]{Number of Avogadro\acroextra{ (See Section~\ref{sec:test})}} \end{acronym} \bibliographystyle{abbrv} \bibliography{acronym} \end{document} latex2rtf-2.3.18/test/table_array2.tex0000777000175000017500000000326413050672357020010 0ustar wilfriedwilfried%% LyX 1.6.3 created this file. For more info, see http://www.lyx.org/. %% Do not edit unless you really know what you are doing. \documentclass[british]{article} \usepackage[T1]{fontenc} \usepackage[latin9]{inputenc} \usepackage{array} \usepackage{booktabs} \makeatletter %%%%%%%%%%%%%%%%%%%%%%%%%%%%%% LyX specific LaTeX commands. %% Because html converters don't know tabularnewline \providecommand{\tabularnewline}{\\} \makeatother \usepackage{babel} \begin{document} % \begin{table}[btp] \caption{Endowment Against Final Allocation for Pooled Data} \label{PooledResults} \begin{tabular}{>{\raggedright}p{0.05\columnwidth}ll>{\raggedright}p{0.2\textwidth}>{\raggedright}p{0.2\columnwidth}} \toprule & & \multicolumn{2}{l}{Final Allocation } & \tabularnewline \cmidrule{3-4} & & Lemonade Rich & Crisps Rich & Total \tabularnewline \midrule \multicolumn{2}{l}{Endowment} & & & \tabularnewline & Lemonade Rich & \multicolumn{1}{r}{73} & \multicolumn{1}{r}{37} & \multicolumn{1}{r}{110}\tabularnewline & Crisps Rich & \multicolumn{1}{r}{40} & \multicolumn{1}{r}{60} & \multicolumn{1}{r}{100}\tabularnewline \multicolumn{2}{l}{Total} & \multicolumn{1}{r}{113} & \multicolumn{1}{r}{97} & \multicolumn{1}{r}{210}\tabularnewline \bottomrule \end{tabular} \emph{\small Lemonade Rich}{\small{} means two bottles of lemonade and one packet of crisps.}\emph{\small{} Crisps Rich }{\small means two packets of crisps and one bottle of lemonade. }\emph{\small Endowment}{\small{} is what the subject held before deciding whether or not to trade. }\emph{\small Final Allocation }{\small is what they held after the decision.} \end{table} \end{document} latex2rtf-2.3.18/test/fig_testa.png0000777000175000017500000004721113050672360017364 0ustar wilfriedwilfried‰PNG  IHDRů˛€Đi?gAMAŮBÖOĄ pHYs  šœ$tEXtSoftwareQuickTime 6.5.2 (Mac OS X)öé”tIMEŐ3:Ó4 IDATxœíÝ”,Gů7ŕÁÝÝÝÝ]žŕÁÝݝŕÜÝÝ!ˇŕîîîîűíÓ|ďýWŠîjť3“ţ3gďݝjŠŞ×ĽľľĹŒC<ţůĎ.ţú׿?ůË_‡:ÔĄG:ґZ?‡;Üávú•füv§`ĆrńŻýkńӟţtńŁýhńă˙¸úüđ‡?\|ń‹_\üöˇż]ç8ÇYć0‡Šž‹Đ˙üç?/Žüă/Žwźă-Nt˘Œp}čC/^řÂ.~˙űß/ntŁ-ţýď/~ýë_/ž˙ýď/~öłŸ-ŽzÔŁV×Bŕ˙űßäŚp´ŁmqÜăwqғžtqšÓœfq’“œ¤úˇëö°ó\65KňÍbţĆ7žąřž°řÜç>WýüÇ?ţQbBTˆëÇ8Ćâo|ăâÖˇžőâwżű]Eě÷źç=+‚üůĎ^ěÉNv˛j  řîSžň”ĹĽ.uŠJŞöłŸ­Ć7îÄ'>quŸtƁ1`2G9ĘQ_ţň—'?ůÉżúŐŻ?řÁ*Ś‚ œílg[œýěgŻ>g8Ăv1žă1łŃ5Ä˙řÇĹ'>ń‰Ĺ'?ůÉĹמöľĹwżű݊ /tĄ UDr­k]kńŕ?xqÄ#ń`ăň}ď{ßĹя~ôęťďzםvÂ<á OX}r÷čG?ş’üg9ËY*ƐaÓ8@Ôţđ‡םŢőÇ>öąŤ{űˇŸżýío‹Ż|ĺ+czîsŸ[1+šŚp‘‹\dqîsŸ{qţóŸżb3úc–äkśđG>ň‘ĹűŢ÷žĹ§>őŠJuśéIPÁíˇß~‹#á‹Ăţđ×ůĎţSÔk_űڊ üŰ8ęuÎRŘ"¤÷;ßůÎŠšž|ä#ŤűůČG.Žó|Ćź˙ýďŻ4…›Ýěf‹ÓîtŐ;¤? Ŕťžŕ/¨˜˘÷nŢűҗžtEüŽ1Ł3‘Ż Hĺ}ěc‹÷ž÷˝ŐOvŤMMU>ďyĎ{0;ö^÷şW%ŻtĽ+Ù„î‚wŐŤ^ľRľ/ůËw÷¨G=Ş"ŔŤ_ýę•qľŤ]­Ó¸ ^đ‚Ő5ý,1¸C2f"_üáXźá oXźřĹ/Ž$"čşyŮĆTř‡<ä!•ÓŹ+Œc?îqŤléŽ ý‚?ĺ)OŮyÜ3Ÿů̊iÝéNwŞÔţŽD‰AĐ>Ž}íkWL,$xÎ ýóšĘUŽr0sŕŽ™Čwúӟo~ó›Ť L ł§o|ăWĐTáӟţô•ăŤď8ŢnŽś>@Pœx}ÇqRďÝłcí{ßű^%ýĎxĆ3î’ćuřĹ/~QÍĽ9eĎ_ă×X\ůĘWޜ‡dĚDž›Áž}ë[ßZmFŇŰ&´›W3†AŘđuŻ{]Eđ" ןć5Wźâ+â?¤a&ňÝRLŠiď˝÷Ž6]_É;cä`ŞB‡´ˆŰßţö•ˆÁ֌ĽáŸ˙üçÖŤ^őŞ­=÷ÜskŻ˝öÚúČG>ŇiÜţóŸęďxÇ;śśíćÎăţőŻU˙Ţf*[ŸúÔ§v]§ 1îg?űŮÖŰßţöęŮűŒƒ×źć5[űŰßz{á _ŘyÜż˙ýďQă>ůÉOn]ö˛—ÝÚc=ś^ýęWw~ĎuĆ'_؆Ď~öłoyË[§>őŠ+›wźŤç[Řéř@_>íiOŰ9TÄŰüÍo~ł’Z2لšJaŞ€ĐőöE/zQe+súuľ™™O}ęS+˙GaWgšÜ“Ÿüäj\ϸPÚóž÷źĹO~ň“^ă8éśnƒżůÍož¸Ä%.ąxÎsžł¸čE/ZE&nyË[örZŽ˝Ó°Iŕqžá o¸¸Á nP9‰Äś…źÄ‰ýDpźŕTőĭŰ?ó™ĎTLB b¸ÍmnS…”š ´†8żúŐŻV˙Ç 8ôî˙űW×j‚tUŒä[ßúÖâŰßţvőŹÂd/}éKď~÷ť‹Ďʋ-'ąsńmLŽΰw™Ë\ښڌ¤›<'OǙÓ[ÝęVĹqňdŮÉ5đ~úŽwźcĺ@”awýë_żJŐľ†‡V%6_˙úסŽ}íkoíłĎ>[Ÿýěgöˇm‰Uý}{CmmK‘­;ÝéN[p@ë5ˇ%ÖÖś-šő€<`ëŔŹ~žá oŘúýď_G ţőŻ˝ľMd[Ď}îsˇó˜Çl˝üĺ/ßúĺ/YGumćÁřŔ­mßږĐ[?üá‹ă˜ŰŇ|ëË_ţrőnL„‡>ôĄŐ˙Űăn|ăWssŸűÜçćŻیë`ăÜw[óiלیpkď˝÷ŢşÎuŽSý}S0ůlK˘­›Ýěf•÷ą}l×ď蜤ŮzÖłžľËžö“ČŢmýЇ>t°qŰRk뜡˝íÖ+^ńŠj“6Á÷^đ‚T›~űŰßníż˙ţŐľ~ó›ß4Žó˝—˝ěe• ďţîńÎwžsk[úomŤţăŘÂlđ÷ž÷˝ťěböîUŻzՃÍEݸ7˝éM[/~ń‹w1Źmí¤š›m)Ű:Îűüüç??ظҜY‹ƒ:hk[KŘÚwß};űCV;ć]§bQ%׊5ś7xĽÚĘĂßNĄxc›Ř*•[\X˜Ź‹]-,k\אű°áe G­g“w´Qjşř3uő§8E';ž*Ďt vó7(:ĄöˇşLÝć?P”rÖłžľSYjŒcFHÜšřĹ/ŢÉĎ×B˘Œwlƒ´_>&×%/yÉĹśvRUćŐAşîŞŔ:晄;FäŠŘd3ŚƒÍ¸­nW…—ťÜĺŠß•\"Ó ĄÜínwŤcl…=÷Üł˜p‚9o›ƒćŹâč['`DW¸Â˙Žů(–ŮÖn×˝îu+§Šůůŕ?X9čî}ď{˙ă•÷°*ŕkßŸbÇo<ş3Ś… Źę‹3Š jʕ’r$i~ŹcŤŐŤ.ćlIW*jYU´iź÷4*̋Fc>0?žy)źźńŰjţnzÚi°c’œˇ—ú5c:đhSE÷ÚkŻJ’§…,RQIčsë\łmŤVŚÇ>ű쳸ÉMnň?RŠş ů8c^ň’—TŮz§:ŐŠŞ•°ŘŞćadL‹”šĄ4RÚźŠŽ ćˇťÝíg:әŞPS„GĺŢĂţűď_IÎ/}éKUؓ)ąJŞű Np‚ĹůÎwžŤ'§͘L ąyqë_ţň—U7–›TxHŚWjs ÷éîbł+Žą™SB'ŮęĆ  I!E.śĘ6ś9Â`:ôÍÁ Y…QŹŇ…áhŒ!lÇtvrŒw<ó™ĎźxŔ°xůË_^ƨ„Űwß}+˘~Ĺ+^QIs~{ÜăUůl Ć3ƒ0?ľđ—˝ěeśc€‘Ţó˘Ua0u`^ŘłşžAHmé|“#:φłAl ąwcبœuTÓ\]„ăŘíĆš6É­LUĺ՟óŒRČϢîœízםŢuqĐAí–w÷ˆ’ƒŽFáýi>ˆüa{XŸ „uërňbs&ŕŐŻ~őâžpEp)ĚSC ů1ŕ1ŕ야#ž˙đ‡?źĘ_`V4xŠS×Ő˙ć7żŮ‰[o,t}‰ÍdƒŠL `Ş~G]•g“dˆŸôá)'ur§[:!Y3É9$?o3€Ä*+s:K‹ŕéÇDŔwo{ŰŰLŒ?vVM EůxŠĺŃłŽ:ËkNËĄ‰ đüăŐ;ÓH01ZŒB˘HôI˜7ď~Ÿűܧʉ7WžďŁŠ‡g ł”ŚÔˇÖ=ŹóˆVUóLnžuőnÖÖźŹĽşnŹMDUąĄbciO„ƒRi|ÂNjÓ¤sÚ¸C@5>ŕ€Šß1ů$]úÓ&łůâƒ`؄6×P¤!Ľf慓 ĄQŁAƗçÖ&ŠúÉeS¤`Ë Ë‘r1Žç]Íúîp‡*Œĺ=“KšůÄ8ŮhRH1si¨˛Ë‚M85"Ă/…"Sä~÷ť_mč+$-ڐ֞ÇÁĆ˙ŕ˝áç8ÇÁƑ‰ö텖cÍ0żCˆćłKMkYäŇž ̨Ç>öą#­†LĂâO9ĎyÎS­S]XqmˆˇłGf{‰%Ż 0›:ľŞ.„hŁEO3N“.1ë@şÎqĆNĽv†#ÎćţR×t}2M*kÄąĺŇÇ^mň§ăÄÁ}HP’M*ŞuO5Œ)ď%U~¤*ĆÖƒGÜúЇ*oš97| ˜“šjŇ:0{ÁZ ’VÄó•nî+']0t Ah“  0H ŐźĺŔ”0Lž€.}ďvŒČűŘ伟Ďţó+Îśé yi>Ô`D•z}KHšx$옝=čA0ç6Ľä›żŽŔ1SΛő‰O|bľŮ˘–HâuN•DÜMăÜEľů'×T0O 䕯|ĺŽÖĐ9<őÚł"LŇo뿙ŸQšë:ičď4EsCEżóďź+źFk Qóޤ*-IÍ@Z§ĐU0bxÄ#ŞľHá~|źO]üJKrŞŸ†Ľ ¤.ią¨ş>Ô'MÄqmîô“öÇíĹCŠËS8…ŁeÜßÂ!\ś!é![ŽęJĘyĎPăCZăHÄ@”6OŇÍéšQťv4}ä%/ŷ͋qćĘ8I/<ěťRÖ^Ý8j´Ţqé8Ž#sţž÷ź§WËŠŹ9ŚâžŹô~ö]ŘśˆŽ6EşŇ8J;ěăÂüłF4"ë—wŹĄ‰qRŠT0W$AŸ€śZšćÇ'ÂÓĎŁß++Éq1ꊉĚaAŁÓőŞKCŔÔ+ŇEJ%‚C„ËjňĎń‚Ó#.j‘ÚŠ…ƒl˛|œMŤżé!ýTť„tŁṲ̊ •üMozSuojhĚ7é ‡§Ť ž 6#՗ʛ3żu -­™y𽹠‘PůJŠŽukńú׿ž5•×8‚ŔXá4ڑwäq燨ƒy”GđřÇ?žÚŁ| mžp‚ ŽŔ™no{Űۇáv,„V’ä^’Ż#p“ě÷â–˝/sŇąŮ3œ<ŞĽ4Î1 !,2Ɇ‰ŕĆl(ŽŇ9wvĺăl<ŢQ1Yž^_BşÁ1˙§‚ú7‰šçاßĺď`!vă8œ˜’jš¤ŠfcRĎIĹ|śT\ E(ƒ˜6kŐaěZÜĆÉ ˆ<}BŚÉżŔ´+ŔŘä< °ÁŠč9ďąÇ•Ö3&Ξ#Dn‘K’œ˝™VŢo1PöÖP5ĎBqŠˆ[âĘl6 ° )nsˆkA}D¨ThRä¸@ŁcÇ3ćă¨Úâ˛7˝éM‹D‘9s€şLR’°M]U›ä Œ“Ůƒ@ý?憓­˜Ż=uÔFDä|mălbĎE;ÁlIţ)˘¸ˆćŔÄĄŠĽ˜z-0Î˝Ś‚‚Óô^žËܗlh÷qFnƒc\$řŘF”;Bä%[ĺ0Ja‚ź,ťp(pJ! j“^á~ڐMęÖXđ2ăâŠęŚ1-‚—bĽBƒů8‹É‘’6eRŃň†Ű ěÔ&PľƒůůŘÄ|msƒ¨I'ćŠmƒŇŽÚƑţdí‘#ˆ)ŔFXöJŠeŹE“)ćh2̂œxS`˛ÓIqJ´™BËÜ"/Šę‘D6 ť‰” *%ՊmiS˛őĹn§Ž Ěć%Ůxdĺ8łľębĈJ7”Ç>ĚÇĽ61ťicŚ’œäaÚ䰙TŞEřΆĽś˛g9Ĩťu‰%4ăÎ4•wĆ(dv1ę€á ďHkB ֔#+âîSlfÎWLŁ+Óe­E€ä~ÚӞśkÂŚŽÇštM0§˛×0œlpQŠŠĚȕ"rÄMKAľn˛íş€Ý§dĐŚb—Jz°É–Ń)Ő˘é•$ÉËéB‘Çœ‡t؇'HĹG˝ËÇĽŢbvz“}–9 ž3RĂür8ŮXž—ĘiS٨<ř…ÔJa]H[’Ĺć5ŽŠą_ő<ˇkC5gëc.Ú„čc-¨ż´ˆ)Ôv& ĂgŮkƒL6?cœ÷áagú4Áťňeä~'óĎ,˜˛WüޤľšHöuŽ%…úNľP†€db÷ńJ‹Y6y^ݡ-e° iƛ‡ ‚ÁœÚE8HAź•óÇAâÇňŻŰb bĽ4’Â6œDŕt”ź_ZĨď~÷ťWß%ľ…MY*ÁŒuą™Ůˇ…“JlČRi*FÂŮ'Š8DHrNĎşľbÂLú$ՁW›Ęěݖ˝ćƒ"@03ădŮє„›`.sł” „ÖçTš.X)I.4‘ÂfJŕ—­(gZ¨Ę,R"-”ER‘Ő&„ i‡!qč´ÁŚŞ“ui­)H[ĚLŽťů!Q5žŹ‹b¤ˆj*ś#-Ŕ8ĐfK“ör~PK]šÖÂZG íˆş 6 iŮkĄC-u—ťÜe×8Ĺ>%7‡9c‚ÂrS8ěHœźŽČŠ’l˜).ßy8:„E0 NýهáŮœ4$]—#„x˝I:ś-őŒtí’ÝFjˆ>ˆßŚh#rRŠÔŚnc|R2Ďښ?ř‰ĽĐ‚Ęƒm3śŠ”ţNƒ˘˛ ;qşľ­[™ęk? …÷ÁÜi.œŽË^ aJ ʞîRcßÄĎžĎA{ăw*aGˆźÎť.“ţžçuČŃ´Ź^V:逻–ĆLNo Q4Aˆ‡˝L-•-E‚ŕî$Ÿ–LM`×ڀĆIžaGŚŞmSŠ)óČƧZ“6Š%l4Rý|`cHŇß͍ąÔVĎĚšĆŃŚwyS˝8&îţÁ¸l­OúÓĹľp/ĎĘGŔDł.d•CŹÔžiŠľŕ[ŕó!ŃiYMLÓMnb˜$ť~cM•:ʌşžÇĹ9ˆ€jfxmmę,—iź9_ u”łFŽxΠŇ$ś_AŔÁ{ғžô?6 šŠÍîbŰ6˙nž óěx& !ŽC˛!PŒ(oŔč;$.đœËYˆë ŇÎ8?S{ܸ˜SŞr0Ŕ|şŹ›Ü8sĹ$Ë|99ŕrÓfęľ:ĺ¨Mn,ŻŢ9†ögżpĘI_VB]7qi~zŘ6}ÁÖăLÂU-¤‰ĎKTz“jcQé§Č]ç]ŽË]rż¨ňŢ$ ľ3ŹNłZ‚çŒqlj‚´|1'rńbڃ˛ÉČËśá%érRkC˝b¤:+cĨĎŃyśž‰šÍclŁ“Jˆ›dĆ šÖÂ8kanŹ™ůsż'áĆ4ű”DŤŁ9¤ąóeŹ‚/ŐË+gÎĂi´šƒë˜/ëä{œ€Sb%’aŘ))Wäšís´-¨ ŠXbŒĽC€T˛ńmŹe¨H9H…¸ŸEĽÎ˛‰Ůb% ˜Čʞ‰bgVî”LŐu1›G× -ŁűI:×9hBh>¤ ÇHžńŒg;łú›TxĎ|FĄ 5´´žk-ŒC0Ć!>ăŒJ’’Ť\“š˜z-f$ŔÔA‚א|űĐ 0hĎhw-GíŠ ĄŠŰMl¤MzŹŽ !AşÓRsĺ$ŠÂ“ş¤’Šzn’-2 ĹЗŠňZ.ÉMŻÍ`3# ˆUsbŮl$BÉ&FœTR†ŠŕŒăŕŁj§ +H”(bápŽąÁE-8Ëő„Ź{ßh{„Xݛ íC‚QEůę¤UŒĂ<ŻMĘ>5Ď]×Â8šÇœ9"őeĹŮüuáÖ>0˘ćĂóOš˜S)ÍÚ\č—Úáîϔ`öäk!BÏŔŸĐĽ}Ź„Mžöż2}ËéHo^_Ą!JZeSVŁ §űT8ó2[ ˖˘â9+;îÇűĘÉÚشA0žZ’׆$•…ybUÚőŇ÷Ěs×m„'Y… mźqM 6DmŒłŃHkADtMęhŒ NĺĺuîłĆaZĆ ×çŮ_SaMW¸żç“É7ĺZPˇK5`.uŽ6ŒX˙ťşľĽČq[rúőĹa,řš›ał°'-* “ŚZPĐ„šk™ ĆŠÔD´ě;6§âó>̅Ąí¨fˆ €˝šć‰S;Ľ’ěuцقŠY7UБnňťeëyVڀ1uăB’Pmْz uĐwݓ3ŠTÉd垫™f žńîS ő)aS¨ oĘž2ŽMŹÝűȢB¨ěG6\Ó8׍Ž(źźÔD!)N@NŻŚb4égnpŞŠ­fkR…p¨úMŕŔ˘ú*Ü0ŽăJ]d†ŽE:Î<”<Ům0ŻLŚEÚ.Ei-ŘîĽű3ÝHű|ll)ÄuhZ ű†ä—L…ŠąÉSŕpTĄřtmŕŔ3‰łSÁšŇ$MŽMőá%ś6˝ ĂLbœEÂ&ÇŹ\‹tó“ ě~Ńn™CĽN唞*˘ŕť6ű'!m´&o8ˇÍY´v ÝFćŞ#&ľUî95_?9ę6̓tełÖÍŠÍčťŃŞŮ5¨Ź$bit]‹ň'„Óbœ8?ódLKoóÂÄ!™‡!KkáYý˝) ĹŢWœ’'WńŽóő] żGßPě¸$$šAQŠćÖQ}pb›Ä°Y–u|l&÷ AI ÷¤Š´qaś´188É/ë GˇŃJ-w•6zžh›U3 ‡)”š L!L˜ĆaS SQĄó3ĎR`$Ü8×Gp2âHťŇ8ş;çiŽ7&ľ]•šzńT°4­…őÄT›’Ś0Uyv3$9ÖĄm-0k÷ćTŸŢďťÓ’|Řŕ6HZniň}dtQ‘pÉhßĂBÂć›×äXšń–Jrę9G…ąůÝ×'çŕ<˛îéŢl4’G“!™m|ăň´Ęç˝"ÎOŇ!>é›l˙=Ľ°IyžwĚŔťúˇě@÷$IH‘<„ăbNyGo ňÍ7f-â\5žoÄç~z:.šoŽ)bá!ŚEĂroó]ˇěwó\r´QŤin)­źůtýűŽE´Ŕ֔ƒŠ0;îxë ›Ů&ťŐ­nľëw&JI˛Xhäłű¨ŽAđVڈ^ÚSÔ`‘Ř–8ż‘<íÜŃbcáÜ*ě$>¸7ď´qlZăŘŕyčÄ;çš<昉`C¨śâI—)XGpŽin뇀˘‚1œfy[Št\Ě)­#3ޤ1.O?ťlWi¨QţNLJ RšÇ:Mi ö’žt|;ÖŚn-ÚŞâhyłŒVbOúŒC×B‚é."1;vÚPŕfÔˇ´=ąÍËk#$<ÂQĂjŠAâ"ŒĄÓЖń–ƒ}%ąBî8;•zÝĽĎ)ÁůÄAސ89Ą4—•§Ab*]ĆŃP$Ž×gNÇŽéNÚ‡JŔ0ˇ1iÉćC íÝ›;8™†%â’'Ŕ?”†şh ÚMçá1kaIţ<=ś ÖĘ&7ĄC¸îČ]dlŹ’g8…¸ˇkL™żN­ŤÓl^÷äPńŹqfvۙÖĆ!ắâĚĄmœ÷2ŽMg^ÜŰżťŒ#cœłťŽóœ}ĆĹůbÔZҍíŰĹobÍIž1g‚“ $šźńœŕ˜%çh“đ’Dzi#9[CkîyýôžiTŠ ą†LX˜G`Ź•$Wű=Ůßď$eŕ’*dáă,Ş&ǃjěĐPZ*Éý›D j–Š9f”ÁŮFÓá„ÂhJF•ŰżýĽ/}ie‚Đ”8;1iZBS2 ˘Ő#?ÝG˜Ě>Ě%ź¤23iÇńç:Ľ~ƒé8zýĽ×öÁÚŘä^ÖB(L9褡x"˜ŒR܀ÍCUŸ*!fřĺJ‘QĄ9ÝÚć4CŽ…tSyźë*,e›1erçO ­Rاœh$˛}ĘÔ Ú2ÚŇq„œÔăžX"gψU6%0ÉmŃUZő “M— DŹ—ÓEŘĚĎeż´Éŕ]ç•g†ui°)ŇĐŚľľÁ@|üm)Ťď~÷ť˙§ˇť˝É^îRěäY9Üäô9(„ĎŔ~ŠśŘ]ą6; ”Kń:đĚFře§Ŕ3ŢqJvABŒ„jáԙv›^é8sœ´ě°ů(˜^üC1‹k—Z)ó5H¤IAđué%Đ> sę+`¨ř4Žşn˝MX INőćYîŇŠ}3eĎę)ŔögŁŰźÂ_ěMLkŠâƒMDĘ ťÚÚÔZĚsŹľTőEĹćĘĎ+Ó*ŞOapŔ 1…%ŃBs4°’ÜK‰GBĆ:˝(q‡7Շ ŞÎ8:WÍ~¤ IDATŚpތ9Ě.……gÖČËćůš‰¨3G€>$Pü› Í4âIťĘ EJä}Ţs?O.acĐć6†ž Ý)ҲđÄĺÓłĎKX "W¨¸Cv’E—€ŃĽk†…ąalxĹ,łADš5§ŃŸŘŚtEŸS)Ą 'IúîŘ. BkZa ; €úL͖ő%E´Ď‘?Š ›V)’˜’ JY$yĽËYŕ}Ŕі3Î^ER`íc =gôŞkǢąœjÂjmţ´€&6ŠČ%ď“RŃO˝ A˜8Îá˙fk-“Ŕj‰°šœőşEŽÎĽ>ň§ĹŽĽ>Ž•ć2śVŔ!R7}ĽˆgKb˛9ťŹA*É˝SĚ)ŸL›ŠK]ÇT„ŐڊvHlajĽPvę݂yaŢR[1L˝ Ą%‹hxÓĘ)h‡š_ „•'r‹KÍUŹań978WŘF 2šjŒ-śÍ…Łs¤D&•` ӕ ö ěyĹyqsëĺxkjހ¸ŻtĽ+*¸€´gŘdĚŢ[*^.I}Ÿj/M•ôĂ h;â°MGň‚üŞ˘„ ›¤ľAIďBsÁ⧔PYpˆ‚yRА@Jäž;ć”Öƒpý›ŠÓ”]čÝ­wÚVl(0*M,S0E˜[Šgó1‡´´čšoí9ĘňÓRRˆČŘŤBw’q8 'ŒÍ§.ń…ó6šŸvń?­<‘‹WŠ?>ýéOŻ6!Ď"ÂĽ jQ‚ acH!Äd!QÝSőyjhIlxů•â¸mŠ‹| 6vîĐé Ň UkŠĘŠ,ä{7Á†¤EP7}_e—špŚPé8_ŒRľ QEeů×uڈgC”ŽOşŇŹt)őmKŐuĎs*ÉI˛‰Ô`yŢ%Čşă˙Ťś×ů0pő 9Ě MÓßŮéÖ^rM0VÂĘZ`ćJx­Iť3?2 ŃFŠ—B`ĺ˝ëŞrź,§ďzô+#ýš&äWČqK‡Ş(ž(†Ţ7-°+¤b"ěĐýöŰŻj@š6#ŤĘ†—‹?&VŸÇtĽUÖ8ťQ|—DʉD(x‘ń§şËŐxôĹ÷.ü"}ւägĎb$¨ŞÓ„ÇŹQRÂÂÜ=ˇ9e Uy~˙ŻéiN1ƒśƒťŔ^‘ö°Ż˜YĐ*7ab>4ľo:‘ó˘!7d-0ŻŽÚßʧľJ ŇXŕŽ-‰|WRƒ 9DM(ŃT§šęrBŐĺŕ+IÀJ4I••TÇ>qÖRU‘‘ű:ýľKšB'ą{žĐiýc-˜GĚţ‚6Źź$§’¨h"ŃŰŔŒĆ B)$¤‰ś0̧§@dşĺa–ˆ¤>-C|•dJŕ90ĜŔ˝G 6$ç[ąK¨Ią5”í™yƒÂ:´­&ŃMmrL“ĆÓćT$ÁŠĆ˜–9e/[ eLë$  DáˆĂGŁL VbŠ54§m#0oŒCœ4ź'ÉŚ éZ~ůŃbĎßé[;Ä`qx]e™‰N Ř&Bh’ůmccćv•1鸊ˆÜóŘÜuMü-”&Ňť فßG㉱ˆ{ÓLÂĆwŠ˘QĎě~$I,ŸSś0Ʌ°c×u˛MĄ˘Të2Ÿ$hθźSz?ß#éăřkŒ!ւŚ46R’ m‚ă¨é¤*ÝZÜÖőaO×"|!ĚWŒSÇ^éZ`\š]’…VšČ-iç…ę2Šœ|’Ú%B'Îđ˘˛-p~ pĽăŚJĽ “”yřĆçt iD:ąëlQ˙îŇ9´ źŤÍAR„¤FXš&RƒŮ$çc]v—Ř}:7TeuňlMaHł:É8d-üŽÎfN×C€ÔĎŁňü-Ě,-Ż8ź8çĚih-ւvăyĆ"šL`$"7Nů‘ă@ťą†ć4gđůZxăœklŒŤói`¨éSůZH‹mÓaĽ‰œ*d2Šuńçđ7j(•>­ßÖÛCÄsžĺmŸI…W*Dč ‘Ú•Ť^Ο>đdó[řЊdáj4ÔÇhzH5dúpHŮTu˝Ü͙šáŠyâČ"Á]ŁŽjČZP}ëzŘĽDŽAą­óŠž‰vBJç”kNI˙t-ŚŞ@”>Ń)Fl›ăÍšSϚ˘i-0.G7Ÿşă•í{́ś;] DŢ%z°ŇDŽKِ6GşNŞXLŇGü›ÍÂNą‘x(q]Ü<ďJMq¤ÍTęş|dŞx^YÄŚŽQłÜŞf“X@„N œ"ڰĄľ0"EÄŚÝÇý؂lV6¤PdÝqTćŮܐ>ZK[-˜žq6ŁpYŽĄkQW|’2<›:bý)¨ţć›)s*‚„7§Ö8Öƒ Óh,ź#É-Őœ2G8ÝŹĄ9Í5†ŇZ›Ĺ¸şrY×54DZ‹ÜykiDJ"_é8š RRÁęěG\’ęC‚’<źż’\„=,.'…Ÿš:žŽc琰SԔSŁxËóÓ\H,Î']>ÄŁqt5ÓŔƒřÄu§ )ĚEŞňܲůyĹ!ş€Ö…cnl.Ëޘň{a+×(ëť$ź{Ľ-–SŠ‹92ŐňL9sýŰůĚ)”›~OJš“Sćń#dLƒši­ÖĐď먼ľˆquQóB"„0NĄHkւ6°ęz] 9Ž-¤Á᪎M†!łĹ9^ě´tSĹ8Ň%ĆĹńźS Š3îp?÷‰Ű\žy„Ą„{ňţßCaN„Ÿ ˆŽ§ÔôІh)ĄÚDüpô˜›˜7ę(" ľ2'đąka\ÎSINjĽžŽaź_ĚŠ ąp|Ń­†łŒt_!K× [ÚŚsƒŠčYלů¸|-ă\n-źŻűzǍP×ëÂ,Ę4m Ôƒ›‹;—r†c\şi¨‘]âŻCŔk*.œß הĚ1źľźÖAP’NäŃsÚ4MK2QƒŔ¨—jZ˛g§X‹ÜYUŞBkZCsšÇîĹâĽŐ.ćD٧†˘uŠ&RzÍëk™¸3$] ´ąö’œJ–N [†Ó#úpClŞb]LR:ÎuÑaҧtznÍ{a*÷‹ú_÷{o ć‹› AŘźTÂ:BőwćŠ0[Ńwý΁ňŠ7LLššó­ŽžÜćĎDžg˝nNIüŚd›x÷1§°› u `Ţů"DNŹůkÁŔsad­ťÔĎŻôá źľ))Ŕ&bOr¨p˛ř°ˇšÎű ˜dvOŒłaYGę˜¤8ş˜ĘEłČTvŽĄÜšŠäRĚ´tˆ^ ˜ '¸žgŇňŢĽüu°IhćĹłňŽSŰR§\ Î:ŒJόĄć# ŠĄĆšv:ŽZ—Cî;TĽdNcźÝcOÓ!aĽ°r 1Qܓ–aţD8˖ľ˛$Ýżíôš•–äěTęŽŒťád¸§†vNăŕuOóŠs .ý¸xtÓqRÓüăŠ`1‹…Ăsް ݏ“­éČ#ăň*˛Ą •8lÁ\5ľŚv?Sa3 Ç`PćÓ¸üŔ„ËZ‹8sĂËǑ~ů¸şă•Ł c‰iÇa˜DzÜóđ?p*Ę=×Ć|ě[Ě Q/s-—.žœ•&r6;††3‡§ś!T˜59ͨ“œ“}”Ž3ńS9ŰRH’P@^r Níuż&“€ÔçĄM“ƂÍł]§ĘŮT$Ľ NS"1ýÎO!сŚq´–eŻEދ“캆Q†ZęóĆN—¤+o÷Đęż .LˆéĐ C=÷<ËX Pě#RÓĽ[ŇJ¨ˆk6@Ĺᐗ–mą›Š@lÜ÷ÇŠ?8W7nŞá a ” ›”j~I%D`s•§*bǑţXD#ADˆÉćTT#e“˛›œeŠ<$tđ1,s-<ƒç÷71pŇMň‡ql_QÓý$”rÇÍłb™ÜY%N=Et#˛Řřbhq‘8őZŕƒ Žű´™+/ÉI Žö­ĹˇilŽR•‚ĽňI%)Ů7żmÜXĢÚL6œűľőSÓŚô´ťgŠŐ’ůôœTAšâľé9ťJŢpßÎYöZPçĹđ…Â<ŁD’‡ šĆŃřJNş*˙Í \ˇfĆűBá1ÄK›°ËX ߉yIžŇDŽťÚ Ęű¨'<śum™˝ŹÚ\’b"$cٰkL¸Ÿ‘x’“¤ůyŇCÁ´a‹ĂցMK} ‘ZŚuӘŁ~JŔőÓűąk…h¨ľ2ĹHśşłŻŠ‚:œDŠóZÖZpZ ó'ŒćăԖ×AҎ÷)ĄŽGÄÚc"œWc•ÚȆŁ}ԕâNľŽmŒš^{›œ—‡ĺa§Ž!ˆÜyEUĽÎăâ6 5ÇŔŠcVœ‘OFÁ+epŞšMóřÇ?žŠăR›spŽąy‰ƒ¨‘9Ĺd˜¤-{ßýäyƒŒ,óÁ™%ƒw6—´ *5)Ä;Ěžô>TÉđ¤OšM'káYŒŁ5äăňÔÖW™ËŇÖőhó ÂnŢĂxď2…FeŽ™&TöSŽĆŠ!…gÎӄë°Ň69Ÿń\ ąÔ`ăŮ(8Łďˇu!iä›`ĽĄi}N5E(ý}Ă<Ť”@2…MNý‹Mäw¤B22OŠ"ڒ0*śˇĐ•ÍĘô IHŞR\včZ`pźĺœzG§O{‰x™ $SL¨ŔNMkˆĐťř[ş[<ó˜sĎÁ^ŕm:†Š×ăR´ĄÓV:NšŁĂGlfSąOŘ~&ALşÔŐŚła…SHˆĄŢöş8yłűń‹ăĚţ/Ö;Uœwźh›ŮőŠŘjŞŠ‡rźKĄ.`Rť§ĺüBx%[ąi-ܛę}Iíş4Vď —˝Ď‘Dă!ÝęęłLŸR6ć')%?aV\[zhÝZ&îDKjwĚuœ×7ĺZč4.'ŠŹt ˆ7ň:6Á†•e!qEÜ٢ľqH„-žÉŢą1wÇi&œ2žŞH˛Dů†Ÿ2ÖHC„oă }•˜P@’­Ă&›Ř:´Š†MkÁÁÚF—ŽÍËiĹć¤Ţ#^ϝ§ťŚŔüK)ŤÖ“Ł-ĎíN{´Ő­…çöůa†}ᝨă˜Ś;őZšś5ł Ź´M’Ř]‘Üօ— O)‰MˆŐ אyšg”“âŇb™Žƒťr’ô9rŚ+ŇňUś¨‹T/Ď(ÜB*v]¨>ˆC(€*ë~2Éź71Ej­yÎ'!!&†çÍ=Đ]×"ď^RˇćÂZPAŁŢć6r:ŽÚZű7ďí†88 ŰÖšâ´ZPWä@Lľ~2íř,ş`ĺ%9Îç%ăŕ;R—ĂÇŚ‹Ĺ@ԜTĄ|0Îă'•'Jű\ƒ„›ÇœĂFˇ BHîÉ‹œlŚ„÷ňźSòŠŇąQěŔœČa#!RÎ4)M‘$y¨Ů̉źĄtY ’1%róÁB$9ý^nAşÔhR0_CÎVÁ0ŽäŕdË’Ř J$؏ŇZÄ Ôë1.+ץ˝ńÓHůĽĹLą˜—9ëzćßĘKr°aqś°ů4A䉤!&*[ORAfoS…Ş|ĎäŮlÂ6č2N@ľ ědŽÎCŒÄâp*qŽ-ƒŔŞŹcŠűŰîď~u› źť HňšżGژKŸşZűŽk‘—yz>N…´„Ĺňľ Â6­ĄďŃJ.L–ŸNcó<źÔ]×Â;×ő˛ë šÔTe°S­Zhjó]{ÝŃoą  Ď­Öľ8uJ‡‹ç…IŽRÓ›‚tĐP€sÇXŽ*Ú˛’cŻ.ľLć›âqŕewwçđŃr™ˇş)g:€x8Hžj’׸śJ9sÚe-r›8ő}¸F׾ Q%ź”žƒPes­LDóžkáݘcëŃe°é…ßÖ5śëZĐTŇÜmX IŽűâp’0ŘmÔ@F F ó÷&–Ęŕ´ŕńdw‘@8¤…Ż‹gIEM§6Űđ“âěáDiŞ›?ŔýŠĽ(š'ďXDÛĎÎ ŠŐpWŒ+ů ĚŠq]Ö"Ď0K}Ö¤ËZ¸Ÿ]JÂ<4oĚĂ_¤&ušĎZĐŹ!ĺ{SäQX9ęuáš>kA•ç´kŇę°’Üf°yÄI&ĄńM›şIŠ K‘zŤQ˝¨”<śZ‘"]Ľë ś˘ ťpěŘ 6 Ő´Š C((Ň|ěÉ&›-|âűŠi8¸Ä‹ů>JălF›Áąe¤•ÖÂ|”bÎÖ m-¨ţ˜´ż—ÔtL†˝Âüóă(ůŒśL]ւsKţɊ¤]{œ7Áœj%Š€Ř}ׂ#O˝@ŸSb×B’ÎŚRÇÁy<§€Ä(Šé ŹÔ$ęžśA‘ON{`}á8Ęsa.’üŸ*ËŚj Aą#§"r„…ą°›NExć†ÄB<Ôći‡ژSăÚÖÂ;•W]ÖB÷S×-­Ű:ď’jž…Ëh֞ôŚtY BÁű`Řú 2'ĆФ˛97ׁžkA}ŻK'.amˆ\Q>ŽŮu$îNEŁ °É– ҁzJzP§pč.Őm6ÝT‰‡]:ϒÔWĎǙÓÜ%ÇƓ7mNă oZ‹8Ča 0,ĎږšHĂKa ;Qło­˝š‚.&QŹ…5”GŽą)™â€`Účű-ŚűŹ…°!í”:ßkĄŽNn‚)Pßş@ůŚĐ° ęsŚóHáŮV#ěœ*^dż6`\lĘągvA5Žôt—KĘŮüz˛ľôăőľĽđ˛óXo€­gšőB ,…6‚ÉíBĄHDTذ¤c—Ä#kARjŸĚÄÁ%ż=hŰڙ&Á,…V˜ŻĎZ ‘â°6’L8•¸ÉfÄuĺ÷ňPňžHĹ§Ě m@dŇ\ٚ}MÜ_ßmœ;*˜ŞHŚI­5ÔWń‘Ž>$ ;ąÉFĽŞRËŁË ˜Să4Iŕ{Čáoš}Üěa뼟´ 4$ÍsĎwڙދšť;ˇI#pżt-˘5TT˙<Éj0̟C­ëZ ~…:]_Ź‘Ë˘~՝ŕAĽ“)ŽÇčX ˛äEďržT \„t+WHěQ”AÚťˇŇËetŞ P›ÝăáxT "…Ă Ń7•+2=Ě)ď7gs@™SăňŞ0R—6çŚ łńmÇÉ?ĎϏC€žĎœŠť{N1çŇÚc~$jŹ…ď[7kČDŹ; bŠÓXxέ‹0k—ľđ7NĂ.§ĐćX+"*0ÎœŰşź°œ&¸/ť‘úĂ;ŮSštŇ. ],2)(źÓ¤ňN›É†5/zwSľťř5„¨Äü ĆłEr`°Ţ‰DÄ\ǀ:\wF Ţń|ŽŠâŽ}˘­™Ó¨,kŚ@ÉľcPŸâ\ľˆ,Hăm; Ő^—d$`ÖĆ&1HÂ`_SŰIŠ‘Ta2ö0ÇDRŚÝOŒłh¸őŽ/E9܇÷T†ÖÁ8ľçäWđĚĚ Rg Hž(ˇä‘EÔ˘&y¨Ş<ĹlWJ‹"ßËĂ[ˆŘ8ŇŢ3=x•yŽůHóďqœ°ĎĐż9—ká' ¨´mš&Çűîü3Ďé˝ĚŠRĎukA'Ĺ ădĽŐĂ|0ń|á-k7śŮ†ä¸eśvŢێĹô´v4–8úiVžžź6ŐwłÉ¨:zÁ‘Č6ŠĹ˛ˆšŇwŠŞŇ0Ł;&ű}Şoy=9âR-§ś„ăÄŚńüDźżcęÉ× ií;&Í)kÁVM;ľÖ%ýrćÄVĽĄH˜ÂücNS”Ö˘4ł§fŠńɘăkĄšLA>ölĚČŔó~ö’ů Ęs.Ę&ěâÄ­ĂÚŠë@˘Ň&žs‹—Hd]Y4üË œcÇ UŕĆĆEĐeŔâGˇŇN7§ "ß|S’`MŹ-„O˘DऊśZ9ËbCŕŔ¤¨›ÓśľhÂŽ´.‚DR áY{[ůŽŕm—S_řhhJœĚŁčI?+ß4˘ 2߄!⸚śúq - cĐčÔ4ŽÚĺwSŽ Žáţ$…,*ÚES#‹1M#Ö ůAł ÝtRK€‡Ÿ#5O:ÂíRĐg-ö SŔO㇠ľ™„Ĺ”Üa–Z@w9đţĚ6NšŚÄ/ď+‡ŻĄkĹYÖR’[‘=câŘyśK°(6ľQZ`“KUŸęčâ+‘ËMľł!lj‹śŒúőuËÄj“RZ3çmŽ0ui˘ˆ°Šif`čZç>ĆńŁŘ/îE5ŕ÷SdNrŰÇâú4UČ}„ÔĆÖWŹ-‘ƒŽ1ě4Ş{ŠMPRb°’¨ícěŞ.áe†6űŞĚŠM€šoŤ’CLqBŔüńť`‘HŇCץ#6-›8&#…h;RŞ+<ďž\"ÁTç@싵&rF•a“÷Ug,˜ě9\sŒ$ďŇ-xIă4әČ˙;˙¤TŰÜ[Ł<á…mގ™9ő÷ž]V‡Žm@Zî4§łęşJˆl8Ä.מCqŠ˜üÚď6ę’î&%­îiŽ6ٲ%9”ş¸ŽEęą^Hďg“^a|8¤8łúH3XŻ)Ë. ů†W9…(Š“?ačœÇű^s™7Ĺyv4R“bŞC7ÖZ’,şäŽ6ŰŹcíă´DrhnՁz72^is-ŕ?C΁°&#ŽŰĹŠƒ*ćPgVŢá…s*˙ÝŞ€żgŞŇe}říËH#‹ r’ĆfŁJ‰ƒÚŒ]4Ćyęr-^ő5LUřĐ&$Š řRh’ĐEBq´É¤KĄđ¤‹G<×C×"BSŮćŔńFxMá¤Ý"ś5ÇUöSÓӆąáT"um”ś@ş)ë ęŕ˝Ó†f‰Bϙ§îC*ëßR*ő`óě˜(˘FĚrŐĺ~sfb˛œRÖĄŠ­K•œůP–‚ÚtŔDj˛ç’Ţu]‡ŽE*Dbi>… l~ćA˜•c°ö6y *#ťˆ-ÇN遞К,y{˘ž@ä6.u׾šŰşÎřŽf6¤źiśiŠâj,ldŠÎâr?„ëžy‘IŠ8+NS^ěč˙íŝiP4q݀ě,Ě@âŃĽ.uŠAĎŤÄ4%RĎËŮÖďbî1ĎĚć6˙C×s3śí G÷KÇyó=ćÇÂŢâTV` ?C°1’< ai˘ˆEB”ÁRţȖŠhł *ŕäAKŸ,A$Áؐ6‡‘ś"…1 ‚˜mx÷Łé(ö)Ç8’H\ƒ´4§Ć•$ž¸wi<ć1…ŒŁ qŇ)UĄYÄ7t-8űÚü;̎|œ9­+ŕYu˜s[ŸůÖ2w˝ ¸Ź ¸´^duj˘ 3ńČąĂ™dŃe-)6(ţ¤+')‰ó󪶍iBÓYh)lFś#g™JąHň(#¤őą¨ň3ňrŠŢ8IG:˛ô…ӈ”`. 8hmÝ\1!&„,8s‹@†Ź†čےPňqćTÖăÍ?r`ĚŮR<Ä‹Aĺľym’ĄRź ŽÍĆ|Aěj°1<ŞĽű5Ľ’Ň‚„Âź‹q’iR6j§@ŕ*뢜UUÝPDšidÂ)ß­k۔Ω¤ß3§žßť‘ümăšÖ˘Šű Šm\ĚŠ˛U׊qocűڕ`î­M_sc‰HN Ŕ!GBQ!řÔůăQ(CľELiź÷Çll,6ŐŇó,6Źhž°ŮM~ĐAϤ߸şlš…qœgmŐz[ˇé§ÂHţ=ŚM-Aůlš#Մ1§¤1ĆŕůŰ€ ] ëĘůg\ĚŠ{FřŒ6 —\ۏ'˛ű&ňşdkŽmZ ÔDDlâőŠjŽűň(/Ó a rŇĎýlšƒ3şmöš Ę_€ó‡Ú;ĺŃĹbŐ<ßr ů llí‘9°ŇôK›ŰFyđ{ĆÜy^L‘äňź¤dŢ˜Ä uܜş‡0&5vŠsĺ{pYĎ´ą6y_PĂT/™Î-‚8c„śxŚŰĆÚđźÔB:TB]A-~ b1NčŤK×Ń:tÉ]R×=eŚń4ó SŮE)­ÖťŮđŽ+÷CbqʱǛDŕ§RT*/őß;ˇUU!:ăbNwçZÄ8Í4)aşĐŘę6_ČT $ŚŔĆJňž°(źĘ6­-IgÜ˝ ¤šF l:ęZm9â6†Â˜śqăĆ/T)(Í&ćIFMă|GZŤyőŽ2pH­ÉÉŻuI(1ƒtNwçZÄ8ýăšsę'†iž8ődXށĂl“g°‘ämËE’!oľŘÔ^Ňc }W\śTčĎÉV7nŠCîë@ŞŮäœGŢKâ b'­í”H;ę6{3oRČKŕü #0ŽŠnœ{‡mgĚqT)pqţĎo\ôăd`F´ Eŕ˜gÂĚhćŇýhS­EńŤßƤśŇˆœÂŞÄt0Kňŕčqň$őÁshĺ9%łJx qcsŠ+ł9sL%ÉmZ慍°LŰÉŠ4’“3N IĐ)Ôˇ}š{‡`ŮŠ%¨uŇTjw”ăFĆ Ź)gZĚăźŕ0ĆyÎRCĘžk@ŕ¤>ż„ăŠÚÚAŻ*f›|,6' uVł@DΓ‚dRj˛ Şď2;‡@ô:# …šşô°Óî8j’#íÚ ‚2LsA˘Ć8Ţń6`(Ć!TóÂăo\ŢČCyg^­‡9()rôwůü8ă}ׂ#ϚŇpHpgÚŻ+Ă,É'€ ÷ =¨"?ĂG€ď(ŒĐ+­nĂL%Éśb*1ľ\ŚâkɆ°Cllé.jit7eK§î\ö`—qÔđh˝Ä”`.„I@Š‹Ťç„÷ťß}W7WŞ=Uš9Ń›î˛ŢAË,ZŒŸmM.׳$ŸˆHž„gŤS™9Šlqb*­M•—BFH[Ű˘Ž°ńŮŤ$BÍcˇŠgĂ,źŰTő'̖÷rkçݘ1Žž"Ň+A8/Ú#ǎŚ~ëg\jócz9c âöŽ7*wJŕîsĘ)ŽźhۜŻ{\ŒŰ˙%ˇ8‘rSćd˜ !sL^6UPj# ŁYŹ˛p,Ľˆ´O ”Š ¨Ł’Węš5"'Œžz•Ľí b\äGÔ<ˤa>N&œzÝ8DDCˆ4ŠŽM.űÍ{§­—0ź”˜ˆ6e6| yů,7–çŢ|‹Ď‡Ł#óě „&˙AűfÚ?Á:Ťä%̒| ŕ’+-,%{JwΨÜ>éB},Đ‘Ąĺ˘9"\ÇŢdwzÎ/YqĽq$ ĎÇÉ`sÍŚq˜Ćb.HP×Á`8Á03?ÝF§–:Í&?ÍáZ†<`<ć„ăÍxsm-¤Ůbj˘˛×6•ŔaśÉw$ŇP%cŃÂ7ŞŃ¨•M燵!ľÉmÖś–˝6=Ś"ś­+ŞŇJŞvHš&ÄI/é8'Ľˆg—@šs’‰×‹á;Œ€–#֝Ÿë]:đBS !5Ŕ˝w]˙wҜçwœůÂť.šF\Ób\FŸűUĹ,Éw؏*œ¨‡ˆ[R UdkęƒŢMîa$ٰ6;'Ą\}NŻ&'Q1 J çăšœZÍAĆGá™HqDŞgškđĚçN…n:ă[Ř+Äľs—4#íĂď1$~ŒČ5…Áh! OIłMž›ŔHq’›TťăďX٧i‡Í)!Ąš "Ҍƒ$tOůŰM ń%ź  &Hc ŞmĆ@ĺbäP“*-ů¤tĆXxö됍ęe)d ʓ'Ĺ›Hl1ÇB`iŰ!łşž"@ÔĘ!hŤ'ˇŃ…ç¨Í¤ě6ÉM•döŤř5Ś€Ŕ]ƒô–6Z‚ě4x‰8ˆŠĎ6v h8ËňƒSĐ8ďlnڏ˜„™ˆÂ‡yŽ8Î+ɘ%ůŠ éhĺ)@UVĺEMENér?ö=âDPZ#¤\ĹŽ-AŹ\œűˇ¸EĽ=”r8K<ëéőľŞĺŤĚĂŠÎß4ĚDž"z8`¨Ěěpv4‰ŠHcČГá–ÇłÓçŕ#@ĚÂzÚóœżä%/Š<á¤d¨ÉÔű8œÍ,d&€™Ŕ$Š­Ł- HłÚśw)u‘ń˜o+‚şrĚŽHĽŤëhdŔŽćɎŽ'žĂ!ĹůEĘ6Idžm*otE!ńçIoĘ,ŁÚ‹;?öą­Ôu^mßĹ(„ÓƈŔJ¤˘Ë˙oCncX3wÇl“Ż؛C[ýZÂh”ˆ¨xž:BăČ"IĽ›*é$Ő㓟¤Ęń%/\8Íxyáš(´őžcŻc*L’œšŽh$"*zÂňá!&SWwB¤˜rřÚΟń˜Őő@¨ČC°8šB=Wď F“ŹA`âôUţMŽ”Oöl4n`żűŠ|Uę)ŰÜuăěmáŠôCĺââĹö.˜gŸgrmĚ$ ď<í*[0¨hŘźô3÷ĂLä+D8VĄB<<ôyŐ=,=ě0GtdM?RUóß DßôIcŘĆąŤyÚă4—ŽŕKĂjyčlF;f"ßaŘđSœ+ĆNĽZËô’ˆR:ö§ˆ’ä"ôY|B{˛ď4{ĘÄÚâă3Ú1ůC šŽ'Y_Pc•˜" ^bÜ]šT¤?)+ÝOÉ=ŢĹgŞhAJäLŠe% m2fÇŰBň‹ô˛—€TóĐâpżü“ƒ6༛qЉ‡Ţ2]_˘ňLž;[F?̒|7Æĺ]&Á§îÔZş'˘lJ]UˆŸ§ĽĽumśf´c&ň%‚¤ŁĘ’Hle„=UƒˆMGšĺł=> 3‘/Ôp^áčP2cR{œĄ˜ŃŒ9ăm ˆ?g G’M@íů2óű73‘ĎXIĚŞút˜˝ëK†~j*¤†ŚŹÎř/dŃi61Ł?fIždˆĎ>ňÜgŽ™ČgŹ<öŘc~„ľĆŹŽĎ˜ąá˜%ůŒŽ™ČgĚŘpĚD>cƆc&ň363‘Ď˜ąá˜‰|Ì ÇLä3fl8f"Ÿ1cĂ1ůŒŽ™ČgĚŘpĚD>cƆc&ň363‘Ď˜ąá˜‰|Ì ÇLä3fl8f"Ÿ1cĂ1ůŒŽ™ČgĚŘpĚD>cƆc&ň363‘Ď˜ąá˜‰|Ì ÇLä3fl8űměôC̘1cyřčióďۆ cIENDŽB`‚latex2rtf-2.3.18/test/enc_latin5.tex0000777000175000017500000001131013050672360017443 0ustar wilfriedwilfried\documentclass[10pt]{article} \usepackage[T1]{fontenc} \usepackage[latin5]{inputenc} \usepackage{times} \usepackage{textcomp} \begin{document} \begin{tabular}{ccrl} 80& &128&\\ 81& &129&\\ 82& &130&\\ 83& &131&\\ 84& &132&\\ 85& &133&\\ 86& &134&\\ 87& &135&\\ 88& &136&\\ 89& &137&\\ 8A& &138&\\ 8B& &139&\\ 8C& &140&\\ 8D& &141&\\ 8E& &142&\\ 8F& &143&\\ 90& &144&\\ 91& &145&\\ 92& &146&\\ 93& &147&\\ 94& &148&\\ 95& &149&\\ 96& &150&\\ 97& &151&\\ 98& &152&\\ 99& &153&\\ 9A& &154&\\ 9B& &155&\\ 9C& &156&\\ 9D& &157&\\ 9E& &158&\\ 9F& &159&\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} A0& &160&NO-BREAK SPACE\\ A1&Ą&161&INVERTED EXCLAMATION MARK\\ A2&˘&162&CENT SIGN\\ A3&Ł&163&POUND SIGN\\ A4&¤&164&CURRENCY SIGN\\ A5&Ľ&165&YEN SIGN\\ A6&Ś&166&BROKEN BAR\\ A7&§&167&SECTION SIGN\\ A8&¨&168&DIAERESIS\\ A9&$Š$&169©RIGHT SIGN\\ AA&Ş&170&FEMININE ORDINAL INDICATOR\\ AB&Ť&171&LEFT-POINTING DOUBLE ANGLE QUOTATION MARK\\ AC&$Ź$&172&NOT SIGN\\ AD&­&173&SOFT HYPHEN\\ AE&Ž&174®ISTERED SIGN\\ AF&Ż&175&MACRON\\ B0&°&176&DEGREE SIGN\\ B1&$ą$&177&PLUS-MINUS SIGN\\ B2&$˛$&178&SUPERSCRIPT TWO\\ B3&$ł$&179&SUPERSCRIPT THREE\\ B4&´&180&ACUTE ACCENT\\ B5&$ľ$&181&MICRO SIGN\\ B6&ś&182&PILCROW SIGN\\ B7&ˇ&183&MIDDLE DOT\\ B8&¸&184&CEDILLA\\ B9&$š$&185&SUPERSCRIPT ONE\\ BA&ş&186&MASCULINE ORDINAL INDICATOR\\ BB&ť&187&RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK\\ BC&ź&188&VULGAR FRACTION ONE QUARTER\\ BD&˝&189&VULGAR FRACTION ONE HALF\\ BE&ž&190&VULGAR FRACTION THREE QUARTERS\\ BF&ż&191&INVERTED QUESTION MARK\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} C0&Ŕ&192&LATIN CAPITAL LETTER A WITH GRAVE\\ C1&Á&193&LATIN CAPITAL LETTER A WITH ACUTE\\ C2&Â&194&LATIN CAPITAL LETTER A WITH CIRCUMFLEX\\ C3&Ă&195&LATIN CAPITAL LETTER A WITH TILDE\\ C4&Ä&196&LATIN CAPITAL LETTER A WITH DIAERESIS\\ C5&Ĺ&197&LATIN CAPITAL LETTER A WITH RING ABOVE\\ C6&Ć&198&LATIN CAPITAL LETTER AE\\ C7&Ç&199&LATIN CAPITAL LETTER C WITH CEDILLA\\ C8&Č&200&LATIN CAPITAL LETTER E WITH GRAVE\\ C9&É&201&LATIN CAPITAL LETTER E WITH ACUTE\\ CA&Ę&202&LATIN CAPITAL LETTER E WITH CIRCUMFLEX\\ CB&Ë&203&LATIN CAPITAL LETTER E WITH DIAERESIS\\ CC&Ě&204&LATIN CAPITAL LETTER I WITH GRAVE\\ CD&Í&205&LATIN CAPITAL LETTER I WITH ACUTE\\ CE&Î&206&LATIN CAPITAL LETTER I WITH CIRCUMFLEX\\ CF&Ď&207&LATIN CAPITAL LETTER I WITH DIAERESIS\\ D0&Đ&286&LATIN CAPITAL LETTER G WITH BREVE\\ D1&Ń&209&LATIN CAPITAL LETTER N WITH TILDE\\ D2&Ň&210&LATIN CAPITAL LETTER O WITH GRAVE\\ D3&Ó&211&LATIN CAPITAL LETTER O WITH ACUTE\\ D4&Ô&212&LATIN CAPITAL LETTER O WITH CIRCUMFLEX\\ D5&Ő&213&LATIN CAPITAL LETTER O WITH TILDE\\ D6&Ö&214&LATIN CAPITAL LETTER O WITH DIAERESIS\\ D7&$×$&215&MULTIPLICATION SIGN\\ D8&Ř&216&LATIN CAPITAL LETTER O WITH STROKE\\ D9&Ů&217&LATIN CAPITAL LETTER U WITH GRAVE\\ DA&Ú&218&LATIN CAPITAL LETTER U WITH ACUTE\\ DB&Ű&219&LATIN CAPITAL LETTER U WITH CIRCUMFLEX\\ DC&Ü&220&LATIN CAPITAL LETTER U WITH DIAERESIS\\ DD&Ý&304&LATIN CAPITAL LETTER I WITH DOT ABOVE\\ DE&Ţ&350&LATIN CAPITAL LETTER S WITH CEDILLA\\ DF&ß&223&LATIN SMALL LETTER SHARP S\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} E0&ŕ&224&LATIN SMALL LETTER A WITH GRAVE\\ E1&á&225&LATIN SMALL LETTER A WITH ACUTE\\ E2&â&226&LATIN SMALL LETTER A WITH CIRCUMFLEX\\ E3&ă&227&LATIN SMALL LETTER A WITH TILDE\\ E4&ä&228&LATIN SMALL LETTER A WITH DIAERESIS\\ E5&ĺ&229&LATIN SMALL LETTER A WITH RING ABOVE\\ E6&ć&230&LATIN SMALL LETTER AE\\ E7&ç&231&LATIN SMALL LETTER C WITH CEDILLA\\ E8&č&232&LATIN SMALL LETTER E WITH GRAVE\\ E9&é&233&LATIN SMALL LETTER E WITH ACUTE\\ EA&ę&281&LATIN SMALL LETTER E WITH OGONEK\\ EB&ë&235&LATIN SMALL LETTER E WITH DIAERESIS\\ EC&ě&279&LATIN SMALL LETTER E WITH DOT ABOVE\\ ED&í&237&LATIN SMALL LETTER I WITH ACUTE\\ EE&î&238&LATIN SMALL LETTER I WITH CIRCUMFLEX\\ EF&ď&299&LATIN SMALL LETTER I WITH MACRON\\ F0&đ&287&LATIN SMALL LETTER G WITH BREVE\\ F1&ń&241&LATIN SMALL LETTER N WITH TILDE\\ F2&ň&242&LATIN SMALL LETTER O WITH GRAVE\\ F3&ó&243&LATIN SMALL LETTER O WITH ACUTE\\ F4&ô&244&LATIN SMALL LETTER O WITH CIRCUMFLEX\\ F5&ő&245&LATIN SMALL LETTER O WITH TILDE\\ F6&ö&246&LATIN SMALL LETTER O WITH DIAERESIS\\ F7&$÷$&247&DIVISION SIGN\\ F8&ř&248&LATIN SMALL LETTER O WITH STROKE\\ F9&ů&249&LATIN SMALL LETTER U WITH GRAVE\\ FA&ú&250&LATIN SMALL LETTER U WITH ACUTE\\ FB&ű&251&LATIN SMALL LETTER U WITH CIRCUMFLEX\\ FC&ü&252&LATIN SMALL LETTER U WITH DIAERESIS\\ FD&ý&305&LATIN SMALL LETTER DOTLESS I\\ FE&ţ&351&LATIN SMALL LETTER S WITH CEDILLA\\ FF&˙&255&LATIN SMALL LETTER Y WITH DIAERESIS\\ \end{tabular} \end{document} latex2rtf-2.3.18/test/excalibur.tex0000777000175000017500000021653713050672360017422 0ustar wilfriedwilfried\documentclass[11pt,titlepage]{article} \usepackage{html} \usepackage{url,alltt} \usepackage{times} % For PDF version of the manual. It makes it much smaller. \newcommand{\ex}{\textbf{Excalibur}} \newcommand{\oz}{O\kern-.03em z\kern-.15em\TeX} \newcommand{\AmS}{\latex{{\protect\the\textfont2 A\kern-.1667em\lower.5ex\hbox{M}\kern-.125emS}}\html{AMS}} \newcommand{\textures}{\emph{Textures}} \newcommand{\SLiTeX}{\latex{\textsc{Sli\TeX}}\html{SliTeX}} \begin{document} \title{Excalibur 3.0} \author{Rick Zaccone} \date{October 11, 1999} \pagenumbering{roman} \tableofcontents \newpage \pagenumbering{arabic} \maketitle \sloppy \section{Introduction} \ex{} is a Macintosh spelling checker. It will spell check documents created by any text editor such as \texttt{BBEdit}, \texttt{Alpha}, \texttt{Emacs} or \texttt{MPW}. It will also spell check the clipboard, making it a useful spelling checker for mail programs such as \texttt{Eudora} and news readers such as \texttt{NewsWatcher}. It will also work with any word processing program that supports \htmlref{Word Services}{sec:word-services} \begin{latexonly} (section~\ref{sec:word-services} on page~\pageref{sec:word-services}) \end{latexonly} such as AppleWorks (formerly ClarisWorks) or WordPerfect. \ex{} is also a very good \LaTeX{} spelling checker. \LaTeX{} is a collection of typesetting macros. If you are a \LaTeX{} user, you should turn on the option that makes \ex{} aware of \LaTeX. See \htmlref{\textbf{\LaTeX{} Options}}{sec:latex-options} \begin{latexonly} (section~\ref{sec:latex-options} on page~\pageref{sec:latex-options}) \end{latexonly} for more information. If you don't know what \LaTeX{} is and you would like more information, there are some very good resources available on the Internet. Probably the best place to start is Gary Gray's Macintosh \TeX/\LaTeX{} \htmladdnormallink{web page.} {http://www.esm.psu.edu/mac-tex/} \begin{latexonly} \begin{alltt} \url{http://www.esm.psu.edu/mac-tex/} \end{alltt} \end{latexonly} George Gr\"{a}tzer has a good book called \emph{Math into \LaTeX}. You can download part~1 of this book from his \htmladdnormallink{web page.} {http://server.maths.umanitoba.ca/homepages/gratzer.html/LaTeXBooks.html} \begin{latexonly} \begin{alltt} \url{http://server.maths.umanitoba.ca/homepages/gratzer.html/LaTeXBooks.html} \end{alltt} \end{latexonly} \ex{} is a stand-alone spelling checker that you can use with many other applications. If you want to use it for spell checking the clipboard, it's probably best to turn on the \textbf{Open the Clipboard} option or the \textbf{Open the Clipboard and Go} option. See \htmlref{\textbf{Start-up Actions}}{sec:start-up-actions} \begin{latexonly} (section~\ref{sec:start-up-actions} on page~\pageref{sec:start-up-actions}) \end{latexonly} for more information. \ex{} supports Word Services which streamlines its operation with MT-NewsWatcher, Eudora Pro, Communicate, Nisus Writer, and AppleWorks (formerly ClarisWorks). \section{Excalibur's \LaTeX\ Philosophy} One approach to \LaTeX{} spell checking is to put all the commands into the dictionary. This yields limited success because it does not specify what should be done with the arguments of the commands. For example, the \verb+\label+ command has an argument that should always be ignored. On the other hand, the \verb+\section+ command has an argument that should always be spell checked. To complicate things more, there are commands such as \verb+\addtocontents+ that have one argument that should be ignored, and another that should be spell checked. \ex{} does \emph{not} put \LaTeX{} commands into its dictionary. Instead, it knows how to process each command intelligently. It knows which arguments to ignore and which it should spell check. As a result, \ex{} is a \LaTeX{} spelling checker that does a very good job. \section{Installing Excalibur} We have packaged \ex{} so that it is ready to go. \ex{} will know about any dictionaries that it finds in its folder. If you would like to keep your dictionaries on a server, put aliases to them in the \ex{} folder. Then, \ex{} will be able to insert them into its \textbf{Dictionary} menu when it starts up. If you use dictionaries other than the Standard Dictionary, adjust \ex's memory partition. System 8 is a bit more picky about having the memory partition set properly than System 7. See \htmlref{\textbf{Large Documents and Dictionaries}}{sec:large-docs} \begin{latexonly} (section~\ref{sec:large-docs} on page~\pageref{sec:large-docs}) \end{latexonly} for more information. \section{Uninstalling Excalibur} To uninstall \ex, just throw the \ex{} folder in the trash. You should also remove the file \textbf{Excalibur Preferences} in the Preferences folder. There are no other files to remove. \section{Excalibur Features} \begin{itemize} \item \ex{} recognizes \LaTeX, \AmS-\LaTeX, and \texttt{epic} commands. It also recognizes a fair number of plain \TeX{} commands. \item You can teach \ex{} about new commands and environments that you define. \item \ex{} knows about accented characters and ligatures. This should help non English speaking users. They can add words with accents and ligatures to their dictionaries. \item \ex{} knows about discretionary hyphens. \item \ex{} will optionally ignore text in the \verb+\tt+ font. This is very useful for people (like us) who are in computer science and often sprinkle their documents with file names in the typewriter font. \item \ex{} ignores everything that appears in the following environments: \html{ \begin{rawhtml}

alltt equation
cprog math
displaymath subeqnarray
eqnarray verbatim
eqnarray* verbatim*

\end{rawhtml} } \begin{latexonly} \begin{tt} \begin{tabular}{ll} alltt & equation \\ cprog & math \\ displaymath & subeqnarray \\ eqnarray & verbatim \\ eqnarray* & verbatim* \end{tabular} \end{tt} \end{latexonly} \ex{} ignores the following \AmS-\LaTeX{} environments: \html{ \begin{rawhtml}

align gather*
align* multiline
alignat multiline*
alignat* xalignat
comment xalignat*
equation* xxalignat
gather xxalignat*

\end{rawhtml} } \begin{latexonly} \begin{tt} \begin{tabular}{ll} align & gather* \\ align* & multline \\ alignat & multline* \\ alignat* & xalignat \\ comment & xalignat* \\ equation* & xxalignat \\ gather & xxalignat* \end{tabular} \end{tt} \end{latexonly} It also ignores everything that appears within \begin{itemize} \item \verb+\[+\ldots\verb+\]+, \verb+\(+\ldots\verb+\)+,\verb+$+\ldots\verb+$+, \verb+$$+\ldots\verb+$$+ and \verb+\begintt+\ldots\verb+\endtt+. \end{itemize} \item \ex{} ignores the arguments of \verb+\verb+ and \verb+\verb*+ commands. \item \ex{} will warn you if it thinks it found a \LaTeX{} syntax error in a file. This usually means that you have unmatched braces, unmatched \verb+\begin+ \ldots \verb+\end+ pairs, or an unmatched math mode delimiter. \item \ex{} will spell check the contents of the clipboard. You can copy text to the clipboard, have \ex{} check it, and then write the results back onto the clipboard. With this feature you can use \ex{} as a spelling checker for programs such as Eudora Lite. \end{itemize} \section{Word Services} \label{sec:word-services} Word Services is a protocol that allows any program to link to \ex{} as if it were a built-in spelling checker. For a partial list of programs that support Word Services, see the Word Services \htmladdnormallink{web page.}{http://www.wordservices.org/} \begin{latexonly} \begin{verbatim} \end{verbatim} \end{latexonly} Here are the advantages of using Word Services as quoted from the Word Services web page. \begin{quote} Word Services is good for users as you can share a single speller, and a single dictionary among all your applications that use Word Services. You can have a single interface for spelling, and the you are not stuck with a built-in speller. If you don't like the speller your application came with, you can use another, or even add several, one for each language that you use. \end{quote} \textbf{Note:} If you are using Word Services, you should have \ex's \htmlref{Start-Up Actions}{sec:start-up-actions} \begin{latexonly} (section~\ref{sec:start-up-actions} on page~\pageref{sec:start-up-actions}) \end{latexonly} set to ``Do Nothing.'' \section{Program Menus} This section explains \ex's menus. \subsection{The File Menu} Most of the items in the \textbf{File} menu are standard for a Macintosh application. This menu contains items to open a file, close a file, save the changes to a file, reverting a file, and quitting the program. If you have started to spell check a file and you suddenly remember that you forgot to activate a dictionary, you can use \textbf{Revert} to put the spell checking operation in its initial state. Then, activate your dictionary and hit \textbf{Start}. The \textbf{Open Clipboard} item will let you open the clipboard for spell checking. When spell checking the clipboard, the \textbf{Save} item becomes \textbf{Save Clipboard} so you can save your changes back to the clipboard. This is useful if you want to spell check just a small portion of a document. You can copy the text to the clipboard, check its spelling, save the result back to the clipboard, and then paste the result back into your document. \subsection{The Edit Menu} The \textbf{Edit} menu contains the \textbf{Preferences} item which lets you change \ex{} settings. \subsection{The Dictionary Menu} The \textbf{Dictionary} menu lets you create new dictionaries and add words to existing dictionaries. It also lets you select the dictionaries that you would like to use for spell checking. \subsubsection{Create Dictionary} \ex{} comes with a Standard Dictionary of about 161,000 English words. If you would like to create your own dictionary so you can add words that aren't in the Standard Dictionary, use the \textbf{Create Dictionary} item in the \textbf{Dictionary} menu. You can save the dictionary any place you like, but \ex{} looks first in its own folder for dictionaries. If it doesn't find any dictionaries there, you will have to tell it where to find them. It's probably easiest to save your dictionaries in the \ex{} folder. \ex{} is capable of keeping track of up to 7 dictionaries at a time. \subsubsection{Open Dictionary} You can use \textbf{Open Dictionary} to add another dictionary to the \textbf{Dictionary} menu. Since no dictionary may appear in the \textbf{Dictionary} menu more than once, the open file dialog will not display any file name that already appears in the \textbf{Dictionary} menu. \subsubsection{Save Dictionaries} The \textbf{Save Dictionaries} menu item will save any dictionaries that have changed since you started \ex. If you forget to invoke the \textbf{Save Dictionaries} command, \ex{} will warn you when you try to quit. \subsubsection{Add Word} You can use this to add a word to a dictionary when you are not spell checking a document. You must have a user defined \htmlref{\emph{active dictionary}}{sec:act-dict} for this item to be enabled. \begin{latexonly} See \textbf{Active Dictionaries} (section~\ref{sec:act-dict} page~\pageref{sec:act-dict}) for more information on active dictionaries. \end{latexonly} This dialog will let you add a word if it is not already present in another dictionary. If the word is already present, \ex{} quietly does nothing when you hit the \textbf{Add} button. If you would like to add a word to a selected dictionary even if it is already present in another dictionary, hold down the option key when you click on the \textbf{Add} button. \subsubsection{Conversions} Using the \textbf{Conversions} menu you can convert a dictionary to a text file so you can edit it. This is useful if you want to remove or add words. You can also convert a text file to a dictionary. The words do not have to be sorted. When you convert a dictionary to a text file, \ex{} gives you the option of setting the file creator for the resulting text file. You can choose Alpha, BBEdit, Emacs \ex, MPW, MS~Word, Nisus, \oz{} and \textures. You can't do conversions when the \textbf{Dictionary} menu lists 7 dictionaries. In this case you should quit \ex. If you normally use 7 dictionaries, move one of them into a different folder and relaunch \ex. When you convert a text file to a dictionary, \ex{} gives you the option of saving the file as \emph{read only}. If you choose this option, you will not be able to add words to the dictionary from within \ex. It's a good idea to keep the Standard Dictionary read only. \ex{} will recognize accents and ligatures if the \textbf{Do \LaTeX{} Command Parsing} option is checked. If you don't have any accents or ligatures, you can uncheck this option and the conversion will be a little faster. \ex{} also looks at the \textbf{Word Boundaries} options when doing a text to dictionary conversion. So, if you have \textbf{Regard 's as end of word} selected, \ex{} will not add any words ending in 's to your dictionary. You can use \ex{}'s conversions to produce a sorted list of words that appear in a document. First, perform a text to dictionary conversion using a text document as input. Then, convert your new dictionary to a text document. The result will be a sorted list of all the words that appear in your document. \subsubsection{The Dictionary List} The bottom portion of the Dictionary menu contains a list of your dictionaries. \ex{} uses the checked dictionaries in its spell checking operation. You can check and uncheck dictionaries before you begin the spell check operation. Once you have begun, you can't change them. You \emph{can} change dictionaries \emph{between} spell checking operations. Any dictionary that is checked is an \htmlref{\emph{active dictionary}}{sec:act-dict}. \begin{latexonly} See section~\ref{sec:act-dict} on page~\pageref{sec:act-dict} for more information on active dictionaries. \end{latexonly} If a dictionary name appears in plain text, it is modifiable. That is, you can add words to it. If the name appears in italics, the dictionary is read only. \subsection{LaTeX Menu} \label{sec:latex} You can teach \ex{} about new \LaTeX{} commands and environments that you have defined with the \textbf{LaTeX} menu. If you define a new command with either \verb+\newcommand+ or \verb+\renewcommand+, you can tell \ex{} about it by selecting the \textbf{Edit Commands\ldots} item. Enter the name of your command in the text box, select the number of arguments with the pop-up menu, and hit the \textbf{Add} button. You can add any number of commands to the list. Each command in the list is followed by the number of arguments that \ex{} should ignore. Thus, if you define a command that has three arguments and you would like \ex{} to spell check the third argument, tell \ex{} to ignore two arguments. You can tell \ex{} about new environments in a similar fashion. Use the \textbf{Edit Environments\ldots} menu item. It performs exactly the same as the \textbf{Edit Commands\ldots} item. You cannot specify the number of arguments for an environment since \ex{} doesn't need to know this number. If you add an environment called \texttt{foo}, \ex{} will ignore everything between \verb+\begin{foo}+ and \verb+\end{foo}+. Thus, the number of arguments is irrelevant. Use the \textbf{Save Definitions\ldots} command to save the commands and environments that you have defined to a file. You can read a file that contains command and environment definitions with the \textbf{Read Definitions\ldots} command. The \textbf{Clear Definitions} command will cause \ex{} to forget about the currently defined definitions. \ex{} will check the list of user defined commands and environments before checking to see if a command or environment is part of standard \LaTeX. Thus, if you change the definition of a standard \LaTeX command with \begin{verbatim} \renewcommand \end{verbatim} \ex{} will not get confused. \subsection{Spell Menu} This menu provides menu and keyboard equivalents to the buttons in the spell check window. \subsection{The Help Menu} You can use the Help menu to get access to the complete \ex{} manual and the \ex{} home page. \ex{} will use the browser specified by Internet Config to open these URLs. If you do not have Internet Config installed on your machine, these menu items will not be available. \htmladdnormallink{Internet Config} {http://www.quinn.echidna.id.au/Quinn/Config/} is free and \emph{very} useful. If you don't have it installed, you should consider it. It is available from most Macintosh archive sites and from the author: \begin{verbatim} \end{verbatim} \section{Other Program Components} This section explains other program concepts and components. \subsection{Active Dictionaries} \label{sec:act-dict} Throughout this manual, we will refer to any dictionary that is checked in the \textbf{Dictionary} menu as an \emph{active dictionary}. You can add or remove a check mark by selecting that menu item. \ex{} uses the active dictionaries when spell checking. \textbf{Note:} In order for the \textbf{Add\ldots} button to be operational, you must have at least one modifiable dictionary that is active. A dictionary is not modifiable if its name appears in italics in the \textbf{Dictionary} menu. A dictionary is active if it is checked. \subsection{The Document Display} The top portion of \ex's display is the document display. \ex{} will show you the context for your misspelled words here. \subsection{The Spell Check Window} \begin{rawhtml}

\end{rawhtml} Most of your interaction with \ex{} will be through the spell check window. It contains buttons for starting the spell check operation and for making corrections to words. You must open a document using \textbf{Open\ldots} in the \textbf{File} menu for the spell check window to appear. \section{Program Operation} This section explains how to perform a typical spell check operation. It also explains how to change \ex's settings. \subsection{Getting Started} If you don't already have a document open, open one now with the \textbf{Open} or \textbf{Open Clipboard} items in the \textbf{File} menu. You can also open a document by dragging it onto the \ex{} icon. Note that \ex{} opens plain text documents only. To begin spell checking, hit the \textbf{Start} button. \ex{} will display incorrect words in the \textbf{Unknown Word} field. This means that it wasn't able to find the word in any \htmlref{active dictionary}{sec:act-dict}. \begin{latexonly} See \textbf{Active Dictionaries} (section~\ref{sec:act-dict} on page~\pageref{sec:act-dict}) for more information on active dictionaries. \end{latexonly} \subsection{How To Make a Spelling Correction} You enter spelling corrections through the \textbf{Change To:} box. You can get text into this box in several ways. \begin{enumerate} \item Simply enter the correct word. \item Hit the \textbf{Change} button. This will copy the incorrect word to the \textbf{Change To:}\ box. You can then edit the word. \item Double click on the misspelled word in the document. This will copy the incorrect word to the \textbf{Change To:}\ box. You can then edit the word. \item Ask \ex{} to suggest a correction by hitting the \textbf{Suggest} button. If you see the correct spelling in the list of words that \ex{} presents, double click on it. This will copy the correct word into the \textbf{Change To:}\ box. \end{enumerate} To complete the change operation, hit the \textbf{Change} button. \textbf{Helpful hint:} If the \textbf{Change To:}\ box is empty, then \ex{} uses the flagged word to create its suggestion list. If the \textbf{Change To:}\ box has text in it, \ex{} uses that text as a basis for its suggestion list. So, if \ex{} doesn't give you a suggestion that you like, hit the \textbf{Change} button to copy the flagged word into the \textbf{Change To:}\ box. Then change its spelling slightly and hit \textbf{Suggest} again. \subsection{Ignoring a Word} If you would like to ignore what \ex{} thinks is a misspelled word, hit the \textbf{Ignore} button. \ex{} will ignore any subsequent occurrence of this word also. You can change this behavior in the \textbf{Preferences} dialog. \subsection{Adding Words to a Dictionary} \begin{rawhtml}

\end{rawhtml} \ex{} flags any word that is not in an active dictionary. To add the flagged word to an active dictionary, hit the \textbf{Add\ldots} button. You can add the word to any active dictionary that is modifiable. The Standard Dictionary is read only. Use the checkbox to always select the same dictionary for the word you are spell checking. When you do this, \ex{} will stop presenting the \textbf{Add} dialog every time you add a word. If you have checked this box, you can force \ex{} to bring up the dialog by holding the shift key down while you click on \textbf{Add}. This allows you to deselect the checkbox or select a new set of dictionaries to automatically select from then on. After adding a word to a dictionary, you will still have to take an action on the current word. It will often be the case that you would like to simply ignore the word now that you have entered it into a dictionary. You can use the \textbf{Options} menu to make this the default action. \textbf{Note:} In order for the \textbf{Add\ldots} button to be operational, you must have at least one modifiable dictionary that is active. A dictionary is not modifiable if its name appears in italics in the \textbf{Dictionary} menu. A dictionary is active if it is checked. \subsection{Quitting Excalibur} To quit \ex, select \textbf{Quit} from the \textbf{File} menu. If you forgot to save your corrections, \ex{} will warn you. \ex{} will also warn you if you forgot to save any changes to your dictionaries or if you have not saved any changes to your definitions. \subsection{Changing Preferences} You can change preferences by selecting \textbf{Preferences} from the \textbf{Edit} menu. \subsubsection{Spell Checking Options} \label{sec:spell-check-options} \begin{rawhtml}

\end{rawhtml} \textbf{Ignore All CAPS} instructs \ex{} to ignore words that do not contain any lower case letters. If you hit the \textbf{Ignore} button and the \textbf{Ignore Throughout} option is checked, \ex{} will ignore any subsequent occurrences of the word. If you change a word and the \textbf{Replace Throughout} option is checked, \ex{} will replace all subsequent occurrences of the word also. Note that you have to finish spell checking the document for this to happen. If you stop spell checking a document before reaching the end, \ex{} may not replace all occurrences of the word even though you have checked this option. If you select the \textbf{Auto Suggest} option, \ex{} will automatically make suggestions when it shows you a misspelled word. If you select the \textbf{Spell Check URLs} option, \ex{} will spell check e-mail addresses and other web addresses. If you uncheck this option, \ex{} will skip over these URLs. \subsubsection{Dialog Behavior Options} \begin{rawhtml}

\end{rawhtml} If you attempt to replace a misspelled word with a word that is not in any active dictionary, you may have \ex{} display a warning. If you tell \ex{} to proceed with the replacement anyway, \ex{} will remember the word and it will not ask you about it again. If you cancel the operation you will have the opportunity to use a different replacement. You could also cancel and then enter the word into a dictionary. \paragraph{Press Ignore Button Automatically} If you have just added a word to the dictionary, you will often want to press \textbf{Ignore} to indicate that you are finished with the word. This option causes this to happen automatically. You will immediately advance to the next misspelled word when this option is checked. If you find that you often want to enter several words at once to the dictionary (for example, the same word with several different endings), then you may wish to uncheck this option. \paragraph{Press Change Button Automatically} If you have just added a replacement word to the dictionary, you will often want to press \textbf{Change} to make the change and advance you to the next word. This option causes this to happen automatically. If you find that you often want to enter several words at once to the dictionary (for example, the same word with several different endings), then you may wish to uncheck this option. \paragraph{Save Dictionaries Automatically} If you have made changes to user defined dictionaries and you quit \ex, it will automatically save your dictionaries for you if this option is set. If this option is not set, \ex{} will warn you before quitting. \subsubsection{Word Boundary Options} \begin{rawhtml}

\end{rawhtml} The \textbf{Use German babel conventions} option tells \ex{} that you are using \texttt{"} when typing an umlaut. For example, this tells \ex{} that \verb+"u+ is the same as \verb+\"u+. When you turn on this option \ex{} will also know about the German double quotes \verb+"'+ and \verb+"`+, the French double quotes \verb+"<+ and \verb+">+, the hyphens \verb+"-+, \verb+""+, and \verb+"=+, and the \ss{} (es-zet) \verb+\3+, \verb+"s+ and \verb+"z+. This option is not available if you do not have \LaTeX{} command parsing turned on. The \textbf{Treat single quotation mark as end of word} option tells \ex{} that a single quote will never be part of a word. This is probably not useful for English speaking users since this causes \ex{} to no longer recognize contractions. It may be useful in French though. If the word ``application'' is in the dictionary, then \ex{} won't flag ``l'application.'' Even if this option is checked, \ex{} will still recognize the \verb+\'+ accent. The \textbf{Regard 's as end of word} option tells \ex{} to stop parsing a word when it reaches 's. Thus, if the word ``Knuth'' is in your dictionary, \ex{} won't flag ``Knuth's''. This option is probably most useful to English speaking users. This option is not available if \textbf{Single quote marks end of word} is checked. \subsubsection{Start-Up Actions} \label{sec:start-up-actions} \begin{rawhtml}

\end{rawhtml} The \textbf{Present an Open File dialog} option tells \ex{} to present a standard open file dialog when the program starts. The \textbf{Open the clipboard} option tells \ex{} to open the clipboard when the program starts. This will only happen if the clipboard contains text. This option also causes \ex{} to automatically open the clipboard whenever you bring \ex{} into the foreground. If you keep \ex{} running so that you can periodically spell check the contents of the clipboard, this will make this operation faster. The \textbf{Open clipboard and go} option is similar to the \textbf{Open the clipboard} option. It tells \ex{} to open the clipboard when the program starts or when you bring \ex{} into the foreground. It starts spell checking immediately without the need to press the \textbf{Start} button. When you close the window, \ex{} saves the results back onto the clipboard. To override this option, hold down the shift key when you bring \ex{} into the foreground. It will still open the clipboard, but it won't automatically start spell checking. If you hold down the shift key when you close the window, \ex{} will not automatically write the document back onto the clipboard. Instead, it will warn you if the document is dirty. The \textbf{Do nothing} option causes \ex{} to do neither of the above actions when you start the program. You should set this option if you are using Word Services. \subsubsection{\LaTeX\ Options} \label{sec:latex-options} \begin{rawhtml}

\end{rawhtml} If \textbf{Do \LaTeX{} Command Parsing} is checked, \ex{} assumes that the file you are processing contains \TeX/\LaTeX{} commands. \textbf{Ignore} \verb+\tt+ \textbf{Text} instructs \ex{} to not spell check words that are in the typewriter font. \textbf{Warn on parsing errors} causes \ex{} to warn you if it thinks it found a \LaTeX{} syntax error. \textbf{Use \TeX{} style accents} instructs \ex{} to use escape sequences when making corrections that use accents. For example, when making a correction it will represent the word na\"{\i}ve as \verb+na\"{\i}ve+. If you type text into the \textbf{Change To:} box using the extended character set, \ex{} will translate the text so that it uses \TeX{} style accents when making the correction. This is useful if you don't remember the \TeX{} sequence for a particular accent. This option also affects how \ex{} copies text from the suggestion list to the \textbf{Change To:} box. Words always appear in the suggestion box using the extended character set. However, \ex{} will copy them to the \textbf{Change To:} box with \TeX{} style accents so you can see how they will appear in the document. \textbf{Use extended character set} instructs \ex{} to use Apple's extended character set when making corrections that use accents. For example, it will use na\"{\i}ve instead of \verb+na\"{\i}ve+. Even if you type text in the \textbf{Change To:} box using escape sequences, \ex{} will translate the text into the extended character set when making the correction. If no translation is available (for example, the character \v{c} doesn't exist in Apple's character set) \ex{} will insert the word unchanged. \section{Known Problems} \label{sec:problems} When you correct a word, \ex{} does not update the screen to reflect the correction. However, the change \emph{does} take place. \section{Large Documents and Dictionaries} \label{sec:large-docs} The size of a document or dictionary is limited only by the amount of memory on your machine. \ex{} will use any free memory on your machine to load large documents or dictionaries, or to perform dictionary conversions. Quitting other applications will make more memory available to \ex. To set the optimal partition size under all versions of the system software, use the following formula. Compute the total size of all your dictionaries and add 567K. For example, if the dictionaries you are using have a total size of 1,000K, set \ex's memory partition to 1,567K. \section{Frequently Asked Questions} \label{seq:faq} \begin{enumerate} \item If there is a \TeX{} and \LaTeX{} way of doing the same thing, which should I choose? If there is a \TeX{} and \LaTeX{} way of doing things, \ex{} usually handles the \LaTeX{} method better. For example, use \begin{verbatim} \input{file} \end{verbatim} instead of \begin{verbatim} \input file \end{verbatim} Use the \verb+\symbol{}+ command instead of \verb+\char+. For example, you should use \begin{verbatim} \symbol{'134} \end{verbatim} instead of \begin{verbatim} \char'134 \end{verbatim} to produce a backslash. (Actually, the preferred method for producing a backslash is to use \verb+\textbackslash+, or \verb+$\backslash$+.) Use the \verb+\setlength{}{}+ command change the length of something. For example, you should use \begin{verbatim} \setlength{\textwidth}{6.5in} \end{verbatim} instead of \begin{verbatim} \textwidth=6.5in \end{verbatim} Use \verb+\newcommand+ or \verb+\renewcommand+ instead of \verb+\def+ to define a command. \item I've redefined a \LaTeX{} command to have a different number of arguments than usual and now \ex{} is confused. What should I do? Be careful when using \verb+\renewcommand+. \ex{} doesn't look at the new definition of a command. If you define it to have a different number of arguments than the original command, \ex{} will get confused. Tell \ex{} about the new form of the command by using the \htmlref{\textbf{LaTeX} menu.}{sec:latex} \begin{latexonly} See section~\ref{sec:latex} on page~\pageref{sec:latex}. \end{latexonly} \item \ex{} seems to be skipping large portions of my file. How do I fix this? \ex{} knows a fair amount about \TeX/\LaTeX{} syntax. If it looks like it's skipping large portions of a file, it's probably because of an unmatched brace or some other syntax error. It's best to run it on a syntactically correct file. It will warn you if it thinks it found a syntax error. \item How do I get \ex{} to recognize accents in a tabbing environment? The commands \verb+\=+, \verb+\'+, and \verb+\`+ usually produce accents. However, they are redefined in a tabbing environment. To make sure that \ex{} interprets them properly in a tabbing environment, precede (unless at the beginning of a line) and follow them by a space. \ex{} knows about the special \verb+\a+ accent in the tabbing environment. \item \ex{} is having trouble finding the end of an environment. How do I fix this? For any environment that \ex{} ignores, there should be no spaces between the \verb+\end+ and the left curly brace. For example, \verb+\end {verbatim}+ will confuse \ex. \item I'm using \verb+\equation+ \ldots \verb+\endequation+ and \ex{} is not ignoring the equations contained within. What's wrong? If you use \verb+\equation+ \ldots \verb+\endequation+ to delimit the bounds of an equation, \ex{} won't ignore it. You should use \begin{verbatim} \begin{equation} \end{equation} \end{verbatim} instead. \item Are there any limitations on \ex's parsing of \TeX{} documents? A word may not begin with a left curly brace, but it may contain embedded curly braces. For example, \ex{} will recognize the word ``na\"\i ve'' when it is written as \verb+na\"{\i}ve+, \verb+na\"\i{}ve+, or \verb+na\"\i ve+ but not \verb+{na\"\i}ve+, even though this last form is syntactically correct. Note that a space may be part of a word. \item \ex{} is having trouble suggesting accented words. Why? If you are using version 2.3 or later, \ex{} will do a much better job of suggesting words if your dictionary has words stored using Apple's extended character set. \item I've defined my own shorthand verbatim environment and \ex{} doesn't like it. How do I instruct \ex{} about my verbatim environment? A declaration such as \verb+\def|{\verb|}+ will allow you to write \verb+|\rule|+ as a shorthand for \verb+\verb|\rule|+. However, this will completely confuse \ex. It will start looking for the arguments to \verb+\rule+ and report a syntax error. Use \verb+\MakeShortVerb{\|}+ instead and \ex{} will do the right thing. It knows about \verb+\DeleteShortVerb{\|}+ too. If you have an old \LaTeX{} 2.09 file that creates a shorthand verbatim environment in the manner just described, you can trick \ex{} into recognizing it by including the following lines in your file. \begin{verbatim} \iffalse \MakeShortVerb{\|} \fi \end{verbatim} \ex{} doesn't process the \verb+\iffalse+ command and so it will process the \verb+\MakeShortVerb+ command. \item I've checked the option that instructs \ex{} to ignore \verb+\tt+ text, but it doesn't ignore \verb+\texttt+ text. How do I get it to ignore this too? \LaTeXe{} defines the command \verb+\texttt+ for specifying text in the typewriter font. The option to ignore \verb+\tt+ text does not have any effect on this command. If you want \ex{} to ignore the argument of \verb+\texttt+, use the \textbf{Edit Commands} dialog. \item I want to nest math environments, but \ex{} gets confused by this. Is there a way around this? If you nest math environments which are delimited by \$'s, \ex{} will get confused. You should use \verb+\(+\ldots\verb+\)+ instead. For example, instead of \begin{verbatim} $\Lambda = n \in I \mbox{for all $n \ge 0$}$ \end{verbatim} use \begin{verbatim} \(\Lambda = n \in I \mbox{for all \(n \ge 0\)}\) \end{verbatim} \item I'm using a package that redefines the \verb+\cite+ command to have more than one optional argument. Now \ex{} refuses to spell check my document. How do I tell \ex{} that \verb+\cite+ may have more than one optional argument? Use the \textbf{Edit Commands} dialog to tell \ex{} that the \verb+\cite+ command has one argument. This may not seem different than the usual definition, but there's a subtle difference. \ex{} will ignore \emph{all} optional arguments for commands defined using the \textbf{Edit Commands} dialog. If you use this package frequently, save your preferences and \ex{} will remember this setting every time you use it. \item How do I tell \ex{} not to spell check an e-mail or HTML address? Uncheck the \textbf{Spell check URLs} options. \item How do I use \ex{} with AppleWorks (ClarisWorks)? \ex{} and AppleWorks communicate through Word Services. AppleWorks doesn't make this very obvious. For a good explanation of how it works, see \htmladdnormallink{Using Word Services with ClarisWorks.} {http://www.wordservices.org/Products/clarisworksinst.html} \begin{latexonly} \begin{alltt} \url{http://www.wordservices.org/Products/clarisworksinst.html} \end{alltt} \end{latexonly} \end{enumerate} \section{Plans for the Future} I will fix any bugs that people find. Please use the information in \htmlref{\textbf{Suggestions and Bug Reports}}{sec:bugs} \begin{latexonly} (section~\ref{sec:bugs} on page~\pageref{sec:bugs}) \end{latexonly} to send bug reports. I welcome suggestions on how to improve \ex. \section{Suggestions, Bug Reports, and Contact Information} \label{sec:bugs} I am very interested in maintaining and improving this program. If you have a \htmladdnormallink{bug report}{http://www.eg.bucknell.edu/\~{}excalibr/excalbug.html} and your bug is not easy to reproduce, try to send us a small file that readily reproduces the problem. Be sure to mention which version of \ex{} you are using. Send comments, suggestions, contributions, and bug reports to: \begin{flushleft} Rick Zaccone \\ Computer Science Department \\ Bucknell University \\ Lewisburg, PA 17837 \\ U.S.A \\[4pt] Phone: 570-577-1393 \\[4pt] Electronic mail: \verb+zaccone@bucknell.edu+ \\ \end{flushleft} \section{Other Dictionaries} \label{sec:dictionaries} You will always find the latest version of \ex{} on the \htmladdnormallink{\ex{} home page.}{http://www.eg.bucknell.edu/\~{}excalibr/excalibur.html} \begin{latexonly} \begin{alltt} \url{http://www.eg.bucknell.edu/~excalibr/excalibur.html} \end{alltt} \end{latexonly} You will also find dictionaries for atomic elements, British English, Catalan, Danish, Dutch, French, German, HTML, Italian, life sciences, Manx Gaelic, medical terms, Norwegian, Portuguese, and Spanish. \section{Acknowledgments} Special thanks to Adrienne Forbes for her tireless testing and Stephanie DiBello for \ex's new splash screen and About box. I produced \ex{} using \htmladdnormallink{Metrowerks CodeWarrior}{http://www.metrowerks.com/}. We wish to acknowledge the efforts of Matt Biar for Version 1.0 \LaTeX{} parsing and significant contributions to the design of \ex. We also thank Mohamad Daimon for great user interface ideas, knick-knacks, and hours of tedious testing. We also acknowledge the rest of the original \ex{} team: Nancy Dodge (documentation), Dan Jamieson , John Meehan, James Mitchell, Frank Lijoi, and Joe Lijoi. \section{Excalibur Legend} Excalibur is King Arthur's great sword. It sometimes gives off light and occasionally is wielded by Gawain. Excalibur is given to Arthur, and finally taken from him, by a hand in the lake. Merlin, who brings Arthur to the Lady of the Lake to receive Excalibur, informs the King that the scabbard is worth far more than the sword itself, for the former will protect its bearer from injury. Despite this fact, it is the sword rather than its scabbard that has captured the imagination of later writers and readers. \section{Legal Fine Print} \ex{} is free. However it is not public domain and we retain the copyright. You may not charge to redistribute this program except for normal download fees. You may not distribute \ex{} with a commercial package without written permission from the authors. \htmladdnormallink{\textures{}}{http://www.bluesky.com/textures.html} is a commercial version of \TeX{} for the Macintosh produced by \htmladdnormallink{Blue Sky Research}{http://www.bluesky.com/}. \htmladdnormallink{\oz{}}{http://www.kagi.com/authors/akt/oztex.html} is a shareware version of \TeX{} for the Macintosh produced by \htmladdnormallink{Andrew Trevorrow}{http://www.kagi.com/authors/akt/}. \section{Excalibur Genealogy} \ex{} has its roots in a software engineering course at Bucknell University in the spring semester of 1990. Rick Zaccone produced the current version using the original application as a base. \subsection{Version 3.0, October 11, 1999} \begin{itemize} \item New Features: \begin{itemize} \item \ex{} will now optionally skip over URLs. By default, it will skip over URLs when spell checking. \item You can zoom and grow \ex's window. \item Preferences are now in a tab panel and they are automatically saved. \item Spell checking, particularly on large documents, is much faster. \item Text to dictionary conversions are dramatically faster, regardless of the ordering of the original text file. Dictionary to text conversions are about twice as fast as before. \item Adding words to an existing dictionary is faster. \item Improved how Replace Throughout works. \ex{} now does a better job with case preservation and multi-word replacements. \item Made some corrections to the Standard Dictionary. Eliminated a few errors and added more words. There are now 161,855 words in the Standard Dictionary! \item Improved suggestions. \item Changed the behavior when replacing a word with something that is not in an active dictionary. \item There are keyboard equivalents for most operations. \item Added Nisus Writer to the file type popup menu. \item \ex{} is now PowerPC only. \item Many smaller changes. \end{itemize} \item Bugs Fixed: \begin{itemize} \item Fixed a bug that caused the last word in a text file to sometimes not get included when doing a text to dictionary conversion. \item Fixed a bug that would have caused a few error message not to be displayed properly. \end{itemize} \item Special Notes: \begin{itemize} \item \ex{} is still freeware, but please consider helping me defray development costs by making a contribution. I have supported this program since 1991 and I will continue to do that. However, development tools are expensive. If you would like to contribute a development tool directly, please contact me and I'll let you know what I need. \item Special thanks to Adrienne Forbes for her tireless testing and Stephanie DiBello for \ex's new splash screen and About box. \end{itemize} \end{itemize} \subsection{Version 2.6, November 5, 1998} \begin{itemize} \item New features: \begin{itemize} \item You can now drag multiple files on \ex. When you do, it will operate in a slightly different fashion. It will automatically start spell checking each file and it will auto save each file when you are finished with it. \item Added Navigation Services support. You can select more than one file to spell check. When you select more than one file, the behavior is the same as when you drop multiple files onto \ex. \item \ex{} has a significantly better Standard Dictionary. The new dictionary is several times larger than the previous one. As a result, \ex's suggested application size is now about 2~MB. I am grateful to Adrienne Forbes for her invaluable help in putting this dictionary together. \end{itemize} \item Bugs fixed: \begin{itemize} \item Fixed a display bug that appeared when a document was open and you tried to open another document that was busy. \item Fixed the handling of \textbf{Save As}\ldots while correcting. \item Clicking on the splash screen no longer causes a crash. \end{itemize} \end{itemize} \subsection{Version 2.5.2, August 8, 1998} \begin{itemize} \item Bugs fixed: \begin{itemize} \item Fixed \ex's handling of Word Services. It works much better with most applications now. In particular, you don't lose formatting with ClarisWorks and WordPerfect. \item \ex{} knows about \verb+\tabularnewline+, \verb+\r+ (ring accent), \verb+\SS+ (capital \verb+\ss+), \verb+\k+ (ogonek accent), \verb+\DH+ (eth), \verb+\DJ+ (dbar), \verb+\NG+ (eng), \verb+\TH+ (thorn) and their lower case equivalents. \item Zap null characters if they're present in a file. This prevents parsing errors that sometimes occurred. \item Double clicking on a misspelled word should copy it into the \textbf{Change To:} box. When the word was at the beginning of a line, this did not always work. It does now. \item Fixed some internal workings that are not presently a problem, but might cause problems in future versions of the operating system. \item Fixed a bug that could have caused an occasional crash while saving commands. (No crash was ever reported.) \item Updated the popup menu that appears in the Save dialog when performing dictionary to text conversions. \item Fixed a cosmetic problem related to window shading. \item Fixed a bug that prevented \ex{} from adding certain dictionary names to the Dictionary menu properly. \item Many other minor changes. \end{itemize} \end{itemize} \subsection{Version 2.5.1, November 26, 1997} \begin{itemize} \item Bugs fixed: \begin{itemize} \item \ex{} no longer displays a dialog when it receives an Apple Event it doesn't understand. \item \ex{} now handles DOS and Unix files correctly. \item Fixed a rare bug that sometimes caused saves to fail under System~6 while running over an AppleTalk network. \end{itemize} \end{itemize} \subsection{Version 2.5, July 3, 1997} \begin{itemize} \item New Features: \begin{itemize} \item \ex{} supports the Word Services batch check, check word and guess word events. I have tested it with MT-NewsWatcher, Eudora Pro, Communicate 2.0 (due in late summer), Nisus Writer, and ClarisWorks. \ex{} is a plain text spell checker, so it works best in Nisus Writer and ClarisWorks if you check a segment of text that uses a single font and size. \item The \ex{} manual and the \ex{} home page are now available through the help menu if you have Internet Config installed. \item If you have Internet Config installed, \ex{} will use it to determine the file type when you select \textbf{Save As}. \end{itemize} \item Bugs Fixed: \begin{itemize} \item Fixed a bug that caused buttons to appear as check boxes under System~8. \item Fixed another bug related to converting very large dictionaries to text files on 68K machines. \end{itemize} \end{itemize} \subsection{Version 2.4, June 1, 1997} \begin{itemize} \item New Features: \begin{itemize} \item Improved suggestions. \item Use a AGA compliant popup menu in the edit commands dialog if possible. \item Changed the \textbf{Edit Commands} dialog so that there is more room for the command name. \item The ``Use german.sty conventions'' option is now called ``Use German babel conventions''. \item \ex{} knows how to translate \texttt{"s} and \texttt{"z} when German babel conventions are turned on. \item Added a check box to the open file dialog that enables you to view only \texttt{*.tex} and \texttt{*.ltx} files. If you save preferences, \ex{} will remember the contents of this check box. \item \ex{} knows about the Catalan geminated-l digraph. In \LaTeX{} it recognizes \verb+\l.l+ and \verb+\L.L+. Using the Macintosh character set, type \html{\texttt{l.l}}\latex{\texttt{l}$\cdot$\texttt{l}} or \html{\texttt{L.L}}\latex{\texttt{L}$\cdot$\texttt{L}} where \latex{$\cdot$}\html{\texttt{.}} is a centered dot. \item Modal dialogs are now moveable. \item Better handling of eastern European and extended Roman scripts. \end{itemize} \item Bugs Fixed: \begin{itemize} \item Fixed a crashing bug when converting a dictionary to text. It only occurred when converting very large dictionaries. \item Fixed an minor update problem in the spell check window. \item Better error detection when opening files. It knows about AppleShare deny modes and it checks for locked volume. \item Fixed a minor update problem in open and save file dialogs. \end{itemize} \end{itemize} \subsection{Version 2.3.1, November 17, 1996} \begin{itemize} \item New features: \begin{itemize} \item Added some conformance to Apple's Grayscale Appearance. \item If you ask \ex{} to remember which dictionaries are currently active, it checks to see if the file or an alias to it is in its folder. If not, it will remind you that it won't be able to find the dictionary the next time you launch the program. \end{itemize} \item Bugs fixed: \begin{itemize} \item Suggestions are much faster. \item Fixed a bug that caused \ex{} to squeeze blanks out of words in the \textbf{Change To:} box. \item Fix a problem with \ex{} not being able to recognize characters in the extended character set on systems that use a non Roman script. \end{itemize} \end{itemize} \subsection{Version 2.3, September 7, 1996} \begin{itemize} \item New features: \begin{itemize} \item \ex{} is much better at making suggestions. \item \ex{} gives you the option of making corrections using \TeX{} style accents or with Apple's extended character set. See \htmlref{\textbf{\LaTeX{} Options}}{sec:latex-options} \begin{latexonly} on page~\pageref{sec:latex-options} \end{latexonly} for more information. \item When \ex{} adds a word to a dictionary, it will do so using Apple's extended character set if possible. This helps to make the new suggestion algorithm work better. If you have been saving words with \TeX{} style accents, you should convert your dictionary. Using \ex{} 2.3, convert your current dictionary to a plain text file. Then, convert it back into a dictionary. Don't forget to set your spell checking options before doing this second conversion. You do not need to make any changes to the Standard Dictionary. \end{itemize} \item Bug fixes: \begin{itemize} \item Improved error checking and error recovery when opening and saving files that are in use by other applications. \end{itemize} \end{itemize} \subsection{Version 2.2.2, April 18, 1996} \begin{itemize} \item New features: \begin{itemize} \item Added processing for \begin{verbatim} \DeclareMathOperator \font \textcircled \end{verbatim} \item \ex{} now knows about the \AmS-\LaTeX{} variants of the following commands: \begin{verbatim} \newcommand \newenvironment \newtheorem \parbox \providecommand \renewcommand \renewenvironment \end{verbatim} \item Buttons are now indented when you press them so they look like they're pressed. \end{itemize} \item Bugs Fixed: \begin{itemize} \item Fixed a bug that caused \ex{} to skip two characters following a math environment delimited by \verb+\(+\ldots\verb+\)+. \item Fixed a hard to reproduce bug that caused \ex{} to crash on some machines that don't have color. \item Corrected the processing of \verb+\email+. \item Shift key didn't bring up Add Words dialog if there was only one modifiable dictionary. \end{itemize} \end{itemize} \subsection{Version 2.2.1, March 13, 1996} \begin{itemize} \item New features: \begin{itemize} \item \ex{} knows about the commands \begin{verbatim} \MakeShortVerb \DeleteShortVerb \end{verbatim} \item Added a start-up option that causes \ex{} to start spell checking whenever it opens the clipboard. When this option is set, closing the window saves the results back to the clipboard. Holding down the shift key overrides the new behavior in both cases. \item Got rid of the \textbf{Save To Clipboard} menu item. Now the text of the \textbf{Save} item changes to \textbf{Save Clipboard} when the document is a clipboard. \item Allow the nesting of \verb+\(+\ldots\verb+\)+ pairs. \item Better memory management. You don't have to increase the application size to use a large dictionary. \end{itemize} \item Bugs fixed: \begin{itemize} \item Fixed a bug that caused the \textbf{Add} button to not update when the user creates a new dictionary. \item Fixed the About Box animation. \item Fixed a bug that caused new commands not to get inserted into the list of commands properly. \item Improved reporting for \LaTeX{} syntax errors. Most of the parsing code is new. \item Better recovery when a dictionary fails to load. \item Disable \textbf{Convert} menu if the dictionary list is full. \item Fixed two minor bugs that caused Excalibur to report a syntax error when there was no error. \end{itemize} \end{itemize} \subsection{Version 2.2, January 25, 1996} \begin{itemize} \item Got rid of some of \ex's alerts. The program operation is much smoother. \ex{} displays the current state of the program rather than announce it with alerts. \item \ex{} no longer beeps when it can't find a suggestion. Instead, it puts a message into the suggestion box. It's much less annoying now, and it's fast enough on the power Mac that you may want to leave the \textbf{Auto Suggest} option checked. \item \ex{} will now open aliases to dictionaries. For example, suppose there's a dictionary on a server that you would like to use every time you launch \ex. Put an alias to that dictionary in the \ex{} folder and it will open it when you launch the program. \item If a document is already open, you can replace it with another as long as a spell check operation is not in progress. \item \ex{} now has a Spanish dictionary. See \htmlref{\textbf{Other Dictionaries}}{sec:dictionaries} \begin{latexonly} (section~\ref{sec:dictionaries} on page~\pageref{sec:dictionaries}) \end{latexonly} for information on where to find it and other dictionaries. \item \ex{} remembers the folder of the last file you opened. \item \ex{} continues to look for dictionaries after finding an old style dictionary. \item Fixed a dictionary conversion bug that caused \ex{} to think it was out of memory when it really wasn't. \item Revised \ex's balloon help. \item Dialogs draw faster on a PowerPC. \item Numbers now have a thousands separator. \item Fixed a problem with hitting the \textbf{Restart} button when the document is a clipboard snapshot. \item Updated the \texttt{BBEdit} icon so that it is in step with the \texttt{BBEdit}~3.5 icon. \item Fixed a bug that caused \ex{} to not properly remember your preferences for commands. \item Fixed a menu update problem. \item Made e-mail address in About Box easier to read. \item There are many other minor changes. \end{itemize} \subsection{Version 2.1, March 28, 1995} \begin{itemize} \item \ex{} now has a new look! \item There are better error message when \ex{} detects a syntax error. \item There are better error messages when doing conversions. \item When doing a dictionary to text conversion you can select the text file type from a pop-up menu. \item Double clicking on a misspelled word copies it into the \textbf{Change To: box}. \item If you have just one modifiable dictionary, \ex{} doesn't ask you which dictionary to add a word. \item \ex{} requires System 6.0.5 or greater. \item \ex{} now observes the \textbf{Ignore all CAPS} option when converting from text to dictionary. \item Fixed a bug that caused \ex{} to sometimes suggest the same word more than once. \item Added support for the \texttt{german.sty} sequences \verb+"|+ (separate ligatures) and \verb+"~+ (unbreakable hyphen). \item The About box animation works at the same rate regardless of the CPU speed. \item There are various other adjustments and bug fixes. \end{itemize} \subsection{Version 2.0.1, January 12, 1995} \begin{itemize} \item A word is considered to be all caps if it doesn't contain any lower case letters. Thus, ``FRED'S'' is now all caps as is ``68K''. Previously, all characters had to be upper case letters. \item \ex{} sometimes thought that definitions were dirty when they were not. This no longer happens. \item Fixed some minor problems with dictionary names in the \textbf{Dictionary} menu. \item Better handling of dictionaries and memory. Unchecking a dictionary purges it from memory. \item The Edit Commands and Edit Environments dialogs are now in color. \item It's now legal to create a command with zero arguments. This is useful if you want to override a built-in command to have zero arguments. \item Fixed a problem that caused \ex{} to sometimes not find dictionaries at start-up. \item Various other minor fixes. \end{itemize} \subsection{Version 2.0, July 6, 1994} \begin{itemize} \item \ex{} now runs in native mode on a PowerPC. \item \ex{} uses a new dictionary format that greatly speeds up operations in languages other than English. You will need to convert any dictionaries you created with a previous version of \ex{} to this new format. Here's the procedure for doing that. (The dictionary we are distributing with \ex{} 2.0 is a new version of the Standard Dictionary.) Use your current version of \ex{} (1.x) convert your dictionary to a text file. Then use \ex{} 2.0 to convert that text file back into a dictionary. Don't forget to pay attention to your option settings when creating a new dictionary. For example, if you set the option to treat 's as the end of a word, no words with 's will appear in your dictionary. \ex{} 2.0 is smart enough to display an error message if you try to open an old style dictionary. Old versions of \ex{} may crash if you try to open a new style dictionary. \item \ex{} uses temporary memory to open large files and when doing text to dictionary and dictionary to text conversions. This means that if there is enough memory on your machine, you won't have to increase \ex's partition size to open a large file or to do a conversion. \item \ex{} has a vastly improved memory management scheme. It should always recover gracefully from a low memory situation. \item Text to dictionary conversions use much less memory. Fixed a few bugs associated with conversions. \item Hitting the Enter key selects the default item in the spell check window. \item \ex{} knows about the \SLiTeX{} and \texttt{seminar.sty} versions of the slide environment. \item \ex's interaction with Alpha is smoother. If you select Spellcheck Window in Alpha and \ex{} already has a window open, it will close it and spell check the new document. It does this more smoothly now. \item \ex{} uses intelligent suggestions for the new file names when doing conversions. You can customize the strings that \ex{} uses for extensions by changing resource \verb+STR#+ 306. \item The behavior of the \textbf{Add Word}\ldots menu item has changed slightly. Now it adds a word only if it doesn't appear in any other active dictionary. If you would like to add a word to a dictionary even if it appears in another dictionary, hold down the option key when you click on the Add button. \item Various smaller changes. \end{itemize} \subsection{Version 1.5.1, April 10, 1994} \begin{itemize} \item Fixed some clipboard problems that surfaced when running System~6. \item Saving now works properly on EasyServer and CAP (Columbia AppleTalk Package) volumes. It now works under A/UX~3.0 too. (Thanks to Stuart Castergine for helping me fix this.) \item \ex{} knows about new \LaTeXe{} commands. \item Put up an alert if the preferences file is out of date. \item The updating of statistics while spell checking is now flicker free. \item The buttons in the spell check window are handled a bit more intelligently. If the text in the \textbf{Change To:} box and the flagged word are the same, then the \textbf{Change} button is inactive. If there is no text in the \textbf{Change To:} box, then the \textbf{Ignore} button is the default. \item A `@' can now be part of a user defined command or environment name. \item Fine tuned memory management somewhat. \item Fixed a rare bug that would cause \ex{} to be unable to find dictionaries. \end{itemize} \subsection{Version 1.5, January 14, 1994} \begin{itemize} \item Added options that let the user choose how \ex{} should behave when you launch it. You may choose to present an ``open file'' dialog, open the clipboard if it has text, or do nothing. When the clipboard option is checked, \ex{} will also open the clipboard when it receives a resume event (if it contains text). \item Adjusted a few of the dialogs so that they all appear and behave consistently. Hitting Return or Enter is the same as clicking the default button. Command period is the same as cancel. \item Made some changes so that \ex's interactions with Alpha are better. \item Fixed the \textbf{Edit Commands} dialog so that it is a bit more intuitive. \item Fixed the \textbf{Edit Environments} dialog so that you no longer enter the number of arguments. \ex{} never used these values anyway. \item You can now drag \ex's windows to another monitor. \item Fixed a few minor bugs. \end{itemize} \subsection{Version 1.4.2, August 11, 1993} Fixed a bug that caused all the buttons in the spell check window to be inactive during the correction phase. This happened on 68000 based machines. \subsection{Version 1.4.1, August 4, 1993} \begin{itemize} \item Repaired several minor bugs including better error handling under low memory conditions. \item You can now convert larger text files into dictionaries. If you create a really large dictionary you may not be able to read it with an older version of \ex{}. \item \ex{} knows about the conventions in \texttt{german.sty}. If you turn on the option to treat \texttt{"} as if it were \verb+\"+, \ex{} will also know about the hyphens and quotes defined in \texttt{german.sty}. \end{itemize} \subsection{Version 1.4, July 11, 1993} \begin{itemize} \item You may now spell check the contents of the clipboard. You may save the results back to the clipboard too. \item You may now teach \ex{} about new commands and environments that you have defined. \item Fixed some update problems that occurred when balloon help was on. \item Fixed a problem with the \textbf{Save As\ldots} command. \item Fixed a problem that caused a flagged word to not appear on the screen. This occurred very rarely. \item \ex{} now handles the \verb+\cite+ command properly. \item Fixed an obscure bug in the \textbf{Add Words\ldots} dialog. \item Added an option that tells \ex{} to treat \texttt{"} as if it were \verb+\"+. If you type \"u as \verb+"u+ instead of \verb+\"u+, \ex{} will be happy. Many German speaking users requested this change. \item There is an option that will cause \ex{} to always have a single quote mark the end of a word. This is not good for English speaking users since \ex{} will not recognize contractions when this is on. However, many French speaking users requested this. \item When the \textbf{Use selection from now on} box is checked in the \textbf{Add\ldots} dialog, the ellipses no longer appear in the \textbf{Add} button. This gives you a visual indication that this box is checked. \item If you have an older version of \ex{}, you will need to rebuild your desktop in order to see the new icon for definition files. \end{itemize} \subsection{Version 1.3.3, May 1, 1993} \begin{itemize} \item Version 1.3.3 has a better algorithm for suggesting words with accents. \item Added processing for \verb+\epsfbox+ command. \item Most text that appears in dialog boxes is now in string resources. This should make it easier to localize \ex. \item Some \ex{} users have been kind enough to contribute additional dictionaries. There are British, Dutch, French, German, Italian and Spanish dictionaries. We will gladly accept any other non-copyrighted dictionaries that users are willing to contribute. \item We also eliminated the help facility in this version. The balloon help makes it unnecessary. \end{itemize} \subsection{Version 1.3.2, April 10, 1993} \begin{itemize} \item \ex{} now has balloon help. \item You may now optionally ignore \texttt{'s} at the end of words. \item There is an option to automatically suggest a correction to a misspelled word. \item The error correction phase of \ex{} is now faster. Under certain rare circumstances, the error correction phase would slow down. This no longer happens. \item In preparation for some future additions to \ex{}, we have rewritten much of the display code. A few things look different, but there are a lot of changes under the hood. \item Fixed some problems with the Standard Dictionary. \item Numerous minor fixes and adjustments. \end{itemize} \subsection{Version 1.3.1, February 7, 1993} This version corrects a bug in the \LaTeX{} parsing, and it correct several minor display problems. \subsection{Version 1.3, January 10, 1993} \begin{itemize} \item \ex{} handles disk insert events. If you insert an uninitialized disk while \ex{} is running, it will ask you if you want to initialize it. \item \ex{} now recognizes the \verb+\lefteqn+ command. \item \ex{} positions alerts and dialogs according to the Human Interface Guidelines. \item \ex{} saves both the resource and data forks of a file. Previously, it didn't save the resource fork under System~7. \item \ex{} looks at the ``Do LaTeX Parsing'' option when doing text to dictionary conversions. If this option is checked, \ex{} will recognize \TeX{} accents and ligatures in words. \item Text to Dictionary conversions are faster. They also require more memory. \item \ex{} correctly updates the document display. \item Drag and Drop should work better. \item Numerous bug fixes. \end{itemize} \subsection{Version 1.2} We produced version 1.2 in September 1992. Here are the features and bug fixes we added. \begin{itemize} \item Fixed problem with recognizing the \texttt{tabular*} environment. \item \ex{} is now System~7 friendly. It handles the required Apple events. (It handles the Print event, although it doesn't do anything.) As a result, it handles drag and drop operations properly. You may drag just one file at a time. \item \ex{} now uses a ``safe save'' technique for saving files if you are running System~7. That is, it saves the file into a temporary file. Once the save has successfully completed, \ex{} moves the file onto the original. This may make a difference if you are saving onto a floppy disk. Make sure there is enough room for two copies of the file. \item \ex{} now requires System 6.0.4 or higher. \item \ex{} recognizes the Apple extended character set. \item Fixed a display bug in the ``About the Authors'' dialog. \item \ex{} now recognizes \AmS-\LaTeX{} environments. In particular, it knows about the environments \latex{ \begin{tt} \begin{tabular}{ll} align & gather* \\ align* & multline \\ alignat & multline* \\ alignat* & xalignat \\ comment & xalignat* \\ equation* & xxalignat \\ gather & xxalignat* \end{tabular} \end{tt} } \html{ \begin{rawhtml}

align gather*
align* multline
alignat multline*
alignat* xalignat
comment xalignat*
equation* xxalignat
gather xxalignat*

\end{rawhtml} } \item It knows the \AmS-\LaTeX{} commands \html{ \begin{rawhtml}

accentedsymbol numberwithin
addtoversion operatorname
email operatornamewithlimits
eqref series
family shape
newmathalphabet theoremstyle

\end{rawhtml} } \begin{latexonly} \begin{tt} \begin{tabular}{ll} accentedsymbol & numberwithin \\ addtoversion & operatorname \\ email & operatornamewithlimits \\ eqref & series \\ family & shape \\ newmathalphabet & theoremstyle \end{tabular} \end{tt} \end{latexonly} \item If \ex{} gets an error while trying to save a file, it tries to print a meaningful error message. If it gets an error for which it doesn't have a message, it prints the error number. \item Added Preferences File that saves spell-checking and dialog options as well as the names of active dictionaries. \item Changed Help dialog button from OK to Done. \item Added Text to Dictionary and Dictionary to text file conversions. Text files can be saved as MS Word, Alpha, or generic text files. Alpha contains some nice support for \LaTeX. It's well worth the shareware fee. \end{itemize} \subsection{Version 1.1} Version 1.1 was produced in February 1992. We have rewritten substantial portions of version 1.0. Some new features include: \begin{itemize} \item User defined dictionaries now work. \item Many improvements to the user interface. \item \LaTeX/\TeX{} command recognizer completely rewritten. \LaTeX{} command recognition is now excellent. Plain \TeX{} command recognition is good. The syntax of plain \TeX{} is difficult to parse. We are not sure how much the plain \TeX{} recognition will improve in the future, but please send us information about any problems you have. \item \ex{} knows about accented characters and ligatures. \item \ex{} will optionally ignore text in the \verb+\tt+ font. \item \ex{} will now warn you if it thinks it found a \LaTeX{} syntax error in a file. \item \ex{} is considerably faster than version 1.0. \end{itemize} \subsection{Version 1.0} Version 1.0 was produced in May 1990. \end{document} % Local Variables: % mode: outline-minor % outline-regexp: "\\\\section\\|\\\\subsection\\|\\\\subsubsection" % End: latex2rtf-2.3.18/test/fig_test2.tex0000777000175000017500000000073013050672360017314 0ustar wilfriedwilfried\documentclass{article} \usepackage{graphicx} \begin{document} \begin{figure} \includegraphics{fig_testb.pdf} \end{figure} \begin{figure} \includegraphics{fig_testc.pdf} \end{figure} Figure tests \verb#\includegraphic{fig_testb.pdf}#. This cannot be in \texttt{fig\_test.tex} because that file needs to be run through \LaTeX\ so that the cross-references can be determined. The problem with that is that \LaTeX\ does not handle \texttt{.pdf} files. \end{document} latex2rtf-2.3.18/test/babel_german.tex0000777000175000017500000000660513050672355020037 0ustar wilfriedwilfried\documentclass[11pt]{report} % ergaenze `twoside', wenn gewuenscht! \usepackage{ngerman} \title{Test-Dokument f"ur "`german.sty"'} \author{Wilfried Hennings} \date{2001-09-10} \begin{document} \maketitle \tableofcontents \chapter{Einleitung} Dies ist ein nicht besonders intelligenter Text zum Testen von Dokumenten, die die Besonderheiten des Pakets "`german.sty"' verwenden. Das Paket muss mit folgender Syntax in der Preambel des Dokuments eingebunden werden:\\ \verb|\usepackage{german}|\\ f"ur die "`alte"' Rechtschreibung oder \\ \verb|\usepackage{ngerman}|\\ f"ur die "`neue"' Rechtschreibung \chapter{Die Besonderheiten deutscher Texte} \section{Umlaute} Wichtig in deutschen Texten sind vor allem die Umlaute. \subsection{Umlaute ohne das Paket "`german.sty"'} Ohne das Paket "`german.sty"' m"ussen Umlaute so kodiert werden, wie in Tabelle~\ref{T1} auf Seite \pageref{T1} dargestellt. \begin{table}[ht] \"A = \verb|\"A|\\ \"O = \verb|\"O|\\ \"U = \verb|\"U|\\ \"a = \verb|\"a|\\ \"o = \verb|\"o|\\ \"u = \verb|\"u|\\ \ss{} = \verb|\ss{}| \caption{Tabelle der Umlaute in Standard-LaTeX} \label{T1} \end{table} \subsection{Umlaute mit dem Paket "`german.sty"'} Mit dem Paket "`german.sty"' k"onnen Umlaute auch so kodiert werden, wie in Tabelle~\ref{T2} auf Seite \pageref{T2} dargestellt. \begin{table}[ht] "A = \verb|"A|\\ "O = \verb|"O|\\ "U = \verb|"U|\\ "a = \verb|"a|\\ "o = \verb|"o|\\ "u = \verb|"u|\\ "s = \verb|"s|\\ \caption{Tabelle der Umlaute mit dem Paket "`german.sty"'} \label{T2} \end{table} \section{Beschriftungen} Eine weitere Anpassung ist f"ur Beschriftungen der Elemente eines Dokuments erforderlich. Zum Beispiel soll aus dem englischen "`page"' das deutsche "`Seite"' werden, aus dem englischen "`bibliography"' das deutsche "`Literatur"'. Um dies zu testen, sind in diesem Dokument verschiedene "Uberschriften, eine Abbildung (Abbildung~\ref{A1} auf Seite \pageref{A1}), zwei Tabellen (Tabelle~\ref{T1} auf Seite \pageref{T1} und Tabelle~\ref{T2} auf Seite \pageref{T2}) sowie eine Bibliographie eingef"ugt. Einige Beispiele sind der "`LaTeX2e-Kurzbeschreibung"' \cite{l2kurz} entnommen. \begin{figure}[tb] \vspace{4cm} \caption{Landschaft im Nebel} \label{A1} \end{figure} \section{Anf"uhrungszeichen} Schlie"slich sehen in deutschen Texten die Anf"uhrungszeichen anders aus. W"ahrend im Englischen die doppelten Anf"uhrungszeichen ``so'' aussehen, sollen sie im Deutschen "`so"' aussehen. \begin{thebibliography}{9} \bibitem{l2kurz} Walter Schmidt, J"org Knappen, Hubert Partl, Irene Hyna:\\ \textit{LaTeX2e-Kurzbeschreibung} \chapter{Another Chapter} Schlie"slich sehen in deutschen Texten die Anf"uhrungszeichen anders aus. W"ahrend im Englischen die doppelten Anf"uhrungszeichen ``so'' aussehen, sollen sie im Deutschen "`so"' aussehen. \appendix \chapter{this should be ``Anhang A''} Schlie"slich sehen in deutschen Texten die Anf"uhrungszeichen anders aus. W"ahrend im Englischen die doppelten Anf"uhrungszeichen ``so'' aussehen, sollen sie im Deutschen "`so"' aussehen. \section{first section in Anhang A} \subsection{here is a subsection} \section{second section in Anhang A} \subsection{here is a subsection} \chapter{this should be ``Anhang B''} Schlie"slich sehen in deutschen Texten die Anf"uhrungszeichen anders aus. W"ahrend im Englischen die doppelten Anf"uhrungszeichen ``so'' aussehen, sollen sie im Deutschen "`so"' aussehen. \end{thebibliography} \end{document} latex2rtf-2.3.18/test/figures/0000777000175000017500000000000013664230753016354 5ustar wilfriedwilfriedlatex2rtf-2.3.18/test/figures/fig_tex.eps0000777000175000017500000000106113050672354020507 0ustar wilfriedwilfried%!PS-Adobe-3.0 EPSF-3.0 %%BoundingBox: 29 25 249 178 gsave /helvetica findfont 10 scalefont setfont /ps{(PostScript ) show} def /rad {ps ps ps ps ps} def gsave 30 30 translate 1 .7 scale newpath 110 110 100 0 360 arc gsave stroke grestore clip 1 1.43 scale 45 rotate -70 70 moveto {10 -10 rmoveto gsave rad grestore currentpoint pop 100 ge{exit}if} loop grestore /Times-Roman findfont 150 scalefont setfont .7 setgray /tex {(T) show -35 -35 rmoveto (E) show -35 35 rmoveto (X) show} def 30 60 moveto 0 setgray tex 27 63 moveto .7 setgray tex grestore showpage latex2rtf-2.3.18/test/bib_apacite3.tex0000777000175000017500000000067313050672357017747 0ustar wilfriedwilfried\documentclass{article} \usepackage{apacite} \begin{document} \bibliographystyle{apacite} fullcite: \fullcite{warren&gibson&russell2009} fullciteA: \fullciteA{warren&gibson&russell2009} fullciteNP: \fullciteNP{warren&gibson&russell2009} shortcite: \shortcite{warren&gibson&russell2009} shortciteA: \shortciteA{warren&gibson&russell2009} shortciteNP: \shortciteNP{warren&gibson&russell2009} \bibliography{bib_apacite3} \end{document} latex2rtf-2.3.18/test/tikz2.tex0000777000175000017500000000500113050672355016471 0ustar wilfriedwilfried\documentclass[12pt]{article} \usepackage[pdftex]{graphics} \usepackage{tikz} \usetikzlibrary{circuits} \usetikzlibrary{circuits.ee} \usetikzlibrary{circuits.ee.IEC} \usetikzlibrary{arrows} \usetikzlibrary{patterns} \begin{document} Super desctription of LC-circuit. \begin{figure}[!h] \begin{center} \begin{tikzpicture}[circuit ee IEC] \node (in) at (0,0) [contact] {}; \node (L1) at (1,0) [inductor={info = $L_1$, info'= 47 uH}] {}; \node (C1) at (3,0) [capacitor={info = $C_1$, info'= 100 pF}] {}; \node (R) at (5,0) [resistor={info = $R_1$, info'= 2 Ohm}] {}; \node (out) at (6,0) [contact] {}; \draw (in) -- (L1) -- (C1) -- (R) -- (out); \end{tikzpicture} \end{center} \caption{LC-contour} \end{figure} RC and its amplitude frequency response. \begin{figure}[!h] \begin{center} \begin{tikzpicture}[circuit ee IEC] \node (R) [resistor={info={$R$}}] at (2,2) {}; \node (p1) [contact] at (3,2) {}; \node (C) [point up, capacitor={info={$C$}}] at (3,1) {}; \node (p2) [contact] at (3,0) {}; \draw [-latex] (p1) -- (5,2); \draw [latex-] (0,2) -- (R); \draw (R) -- (p1) -- (C) -- (p2); \draw [latex-] (0,0) -- (p2); \draw [-latex] (p2) -- (5,0); \node at (0,1) {Input}; \node at (5,1) {Output}; \draw[xshift=60mm,-latex] (0,0) -- (4,0) node [anchor=west] {$\omega$}; \draw[xshift=60mm,-latex] (0,0) -- (0,3) node [anchor=south] {$K(\omega)$}; \draw [very thick,xshift=60mm, y=2cm, x=1cm, declare function={K(\w)=1/sqrt(1+\w^2);}] plot [domain=0:3, samples=10, smooth] (\x,{K(\x)}); \end{tikzpicture} \end{center} \caption{Amplitude-frequency response} \end{figure} \begin{figure}[!ht] \begin{center} \begin{tikzpicture} \draw (-10mm,0) node [anchor=south] {$x_k$}-- (0,0); \node (s) at (40mm,-30mm) [circle,draw, inner sep=2mm] {$\Sigma$}; \foreach \x / \a in {0mm/$a_0$,20mm/$a_1$,40mm/$a_2$,60mm/$a_3$} { \fill (\x,0) circle (0.7mm); \draw [-latex] (\x,0)--(\x+5mm,0); \draw (\x+5mm, -5mm)rectangle (\x+15mm,5mm); \draw (\x+5mm,0) node [anchor=west] {$z^{-1}$}; \draw [-latex] (\x,0) -- (\x,-10mm); \draw (\x-5mm,-10mm) node [anchor=north east] {\a} -- (\x+5mm,-10mm) -- (\x,-20mm) -- (\x-5mm,-10mm); \draw (\x+15mm,0)--(\x+20mm,0); \draw [-latex] (\x,-20mm) -- (s); } \draw [-latex] (80mm,0) -- (80mm,-10mm); \draw (75mm,-10mm) node [anchor=north east] {$a_m$} -- (85mm,-10mm) -- (80mm,-20mm) -- (75mm,-10mm); \draw [-latex] (80mm,-20mm) -- (s); \draw [-latex] (s)--(40mm,-40mm)--(50mm,-40mm) node [anchor=west] {$y_k$}; \end{tikzpicture} \end{center} \caption{Finite impulse response (FIR) digital filter} \end{figure} \end{document} latex2rtf-2.3.18/test/include2.tex0000777000175000017500000000330413050672360017133 0ustar wilfriedwilfried\subsection{This is the first subsection in file \texttt{include2.tex}} \label{section21} Here is some text to create a paragraph or two so that we can see if this works or not. It will be interesting to see if the labels work properly. As I create these testing files I realize that I need to add parsing support for \verb#\input# and \verb#\include# in the getSection function. Furthermore, after reading the \LaTeX{} book, I see that \verb#\include# files will all start on a new page. This is not the case for \verb#\input# files. Here is a reference to the next subsection \ref{section22}. \subsection{This is the second subsection in file \texttt{include2.tex}} \label{section22} Here is some text to create a paragraph or two so that we can see if this works or not. It will be interesting to see if the labels work properly. As I create these testing files I realize that I need to add parsing support for \verb#\input# and \verb#\include# in the getSection function. Furthermore, after reading the \LaTeX{} book, I see that \verb#\include# files will all start on a new page. This is not the case for \verb#\input# files. Here is a reference to the previous subsection \ref{section21}. Here is a reference to the first section in \texttt{include1.tex} \ref{section11}. Now we include another file from within an included file \section{Testing how including files within other files} \label{section3} The trick here is to test the various ways that files might be included within another file. \input{include3} This is the content following \verb#\input{include3}#. There should be no pagebreak. \input include4 This is the content following \verb#\input include4 #. There should be no pagebreak. latex2rtf-2.3.18/test/list.rtf0000644000175000017500000006574613664476467016434 0ustar wilfriedwilfried{\rtf1\ansi\uc1\deff0\deflang1024 {\fonttbl{\f0\fnil\fcharset0 Times New Roman;} {\f1\fnil\fcharset0 Arial;} {\f2\fnil\fcharset0 Arial;} {\f3\fnil\fcharset0 Courier New;} {\f4\fnil\fcharset0 Zapf Chancery;} {\f5\fnil\fcharset0 STIXGeneral;} {\f6\fnil\fcharset0 MS Gothic;} } {\colortbl; \red0\green0\blue0; \red0\green0\blue255; \red0\green255\blue255; \red0\green255\blue0; \red255\green0\blue255; \red255\green0\blue0; \red255\green255\blue0; \red255\green255\blue255; } {\stylesheet {\s0\qj\widctlpar\f0\fs20 \snext0 Normal;} {\cs10 \additive\ssemihidden Default Paragraph Font;} {\s1\qc\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 Part;} {\s2\ql\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 heading 1;} {\s3\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 2;} {\s4\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 3;} {\s5\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 4;} {\s6\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 5;} {\s7\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 6;} {\s8\qr\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext8 rightpar;} {\s9\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext9 centerpar;} {\s10\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext10 leftpar;} {\s11\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equation;} {\s12\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationNum;} {\s13\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlign;} {\s14\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlignNum;} {\s15\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArray;} {\s16\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArrayNum;} {\s17\ql\sb120\sa120\keep\widctlpar\f0\fs20 \sbasedon0\snext0 theorem;} {\s18\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 bitmapCenter;} {\s20\qc\sb240\sa240\b\f0\fs36 \sbasedon0\snext21 Title;} {\s21\qc\sa120\f0\fs20 \sbasedon0\snext0 author;} {\s22\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext22 footer;} {\s23\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext23 header;} {\s30\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 caption;} {\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext0 Figure;} {\s32\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext32 Table;} {\s33\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext33 Tabular;} {\s34\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext34 Tabbing;} {\s35\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext35 Quote;} {\s38\ql\widctlpar\f3\fs20 \snext38 verbatim;} {\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext46 List;} {\s47\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext47 List 1;} {\s50\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 latex picture;} {\s51\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 subfigure;} {\s61\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext62 bibheading;} {\s62\ql\fi-567\li567\sb0\sa0\f0\fs20 \sbasedon0\snext62 bibitem;} {\s64\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext64 endnotes;} {\s65\ql\fi-113\li397\lin397\f0\fs20 \sbasedon0\snext65 footnote text;} {\s66\qj\fi-170\li454\lin454\f0\fs20 \sbasedon0\snext66 endnote text;} {\cs62\super \additive\sbasedon10 footnote reference;} {\cs63\super \additive\sbasedon10 endnote reference;} {\s67\ql\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext67 acronym;} {\s70\qc\sa120\b\f0\fs20 \sbasedon0\snext71 abstract title;} {\s71\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext0 abstract;} {\s80\ql\sb240\sa120\keepn\f0\b\fs20 \sbasedon0\snext0 contents_heading;} {\s81\ql\li425\tqr\tldot\tx8222\sb240\sa60\keepn\f0\fs20\b \sbasedon0\snext82 toc 1;} {\s82\ql\li512\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext83 toc 2;} {\s83\ql\li1024\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext84 toc 3;} {\s84\ql\li1536\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext85 toc 4;} {\s85\ql\li2048\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 5;} {\s86\ql\li2560\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 6;} } {\info {\title Original file was list.tex} {\doccomm Created using latex2rtf 2.3.18 r1266 (released May 29, 2020) on Sat May 30 17:35:19 2020 } } {\footer\pard\plain\f0\fs20\qc\chpgn\par} \paperw12280\paperh15900\margl2680\margr2700\margt2540\margb1760\pgnstart0\widowctrl\qj\ftnbj\f0\aftnnar {\pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 1 First test, no text after section head\par {\pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab first item \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab second item \par }\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 this line should not be indented, the next one should be.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Testing itemize with internal brackets {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Bla {and contents in brackets} and further contents. And make this line extra long so that we can see how the line breaks take place.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \li600\fi0 Yet more {\scaps0\b0\i text that should be in the next} paragraph \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Blah blah. \par }\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi300 This paragraph should be indented, as well as the next.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 The enumerate environment without labels {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 1.\tab this is a frog. Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 2.\tab this is an arachnid. Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \li600\fi0 This is a second paragraph in this item. It is also very very long and goes and goes and goes and goes until at least one line is used.\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 3.\tab this is a bone. Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly. \par }\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 The itemize environment without labels {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab this is a frog. Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab this is an arachnid. Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab this is a bone. Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly. \par }\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 The enumerate environment with labels {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {frog\~\~\~}\tab this is a frog Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {spider\~\~\~}\tab this is an arachnid. Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 1.\tab this has no label. Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {}\tab this has an empty label. Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 2.\tab this has also has no label. Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly. \par }\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 The itemize environment with labels {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {frog\~\~\~}\tab this is a frog \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {spider\~\~\~}\tab this is an arachnid \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab this has no label \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {}\tab this has an empty label \par }\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 The description environment with labels {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b frog\~\~\~} this is a frog \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b spider\~\~\~} this is an arachnid \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 this has no label \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b } this has an empty label \par }\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 The description environment without labels {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b } this is a frog \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b } this is an arachnid \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 this is a bone \par }\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly.\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 2 Nested Environments\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 Now to test nested environments. First the enumerate environment without labels {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 1.\tab this is the first item in an enumerate environment {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1200\fi-300 (a)\tab this should be numbered (a). filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1200\fi-300 (b)\tab this should be numbered (b). filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1200\fi-300 (c)\tab this should be numbered (c). filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler \par }\pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 2.\tab this is the second sublist. filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1200\fi-300 \bullet\tab this a sub sub list (itemize inside enumerate, so there should be a bullet at the start ller filler filler filler filler filler filler filler filler filler filler {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1800\fi-300 (a)\tab this should be numbered (a). filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1800\fi-300 (b)\tab this should be numbered (b). filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1800\fi-300 (c)\tab this should be numbered (c). filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler \par }\pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1200\fi-300 \bullet\tab this is another bullet. filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1200\fi-300 \bullet\tab this yet another bullet, but with a sub list. filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1800\fi-300 (a)\tab this is (a) frog \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1800\fi-300 (b)\tab this is (b) an arachnid \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1800\fi-300 (c)\tab this is (c) bone \par }}\pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 3.\tab this is 3 an arachnid \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 4.\tab this is 4 the third sublist {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1200\fi-300 (a)\tab this (a) is sub sub list {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1800\fi-300 i.\tab i. this is a frog {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li2400\fi-300 @.\tab this A. is a frog \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li2400\fi-300 A.\tab this B. is an arachnid \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li2400\fi-300 B.\tab this C. is a bone \par }\pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1800\fi-300 ii.\tab this is ii. an arachnid \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1800\fi-300 iii.\tab this is iii. a bone \par }\pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1200\fi-300 (b)\tab this is an arachnid Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly.\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1200\fi-300 (c)\tab this another sub sub list Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly.\par {\pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1800\fi-300 i.\tab this i. is a frog \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1800\fi-300 ii.\tab this ii. is an arachnid \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1800\fi-300 iii.\tab this iii. is a bone \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1800\fi-300 iv.\tab this iv. is a frog \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1800\fi-300 v.\tab this v. is an arachnid \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1800\fi-300 vi.\tab this vi. is a frog \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1800\fi-300 vii.\tab this vii. is an arachnid \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1800\fi-300 viii.\tab this viii. is a bone \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1800\fi-300 ix.\tab this ix. is a frog \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li1800\fi-300 x.\tab this x. is an arachnid \par }}}\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb100 \fi0 Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly.\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 3 Paralist Environments\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 Testing inparaenum. Testing inparaenum. Testing inparaenum. Testing inparaenum. Testing inparaenum. Testing inparaenum. Testing inparaenum. Testing inparaenum. Testing inparaenum. Testing inparaenum. Testing inparaenum. Testing inparaenum. Testing inparaenum. Testing inparaenum. Testing inparaenum. Testing inparaenum. { 1. (This should be 1.) is a frog! 2. (This should be 2.) is an arachnid! 3. (This should be 3.) is a bone! 4. (This should be 4.) is a frog! } Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Testing asparaenum. Testing asparaenum. Testing asparaenum. Testing asparaenum. Testing asparaenum. Testing asparaenum. Testing asparaenum. Testing asparaenum. Testing asparaenum. Testing asparaenum. Testing asparaenum. Testing asparaenum. Testing asparaenum. Testing asparaenum. Testing asparaenum. Testing asparaenum. {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 1.\tab (This should be 1.) is a frog! \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 2.\tab (This should be 2.) is an arachnid! \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 3.\tab (This should be 3.) is a bone! \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 4.\tab (This should be 4.) is a frog! \par }\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Testing compactenum. Testing compactenum. Testing compactenum. Testing compactenum. Testing compactenum. Testing compactenum. Testing compactenum. Testing compactenum. Testing compactenum. Testing compactenum. Testing compactenum. Testing compactenum. Testing compactenum. Testing compactenum. Testing compactenum. Testing compactenum. {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 1.\tab (This should be 1.) is a frog! \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 2.\tab (This should be 2.) is an arachnid! \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 3.\tab (This should be 3.) is a bone! \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 4.\tab (This should be 4.) is a frog! \par }\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Testing compactitem. Testing compactitem. Testing compactitem. Testing compactitem. Testing compactitem. Testing compactitem. Testing compactitem. Testing compactitem. Testing compactitem. Testing compactitem. Testing compactitem. Testing compactitem. Testing compactitem. Testing compactitem. Testing compactitem. Testing compactitem. {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab (This should be a bullet) is a frog! \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab (This should be a bullet) is an arachnid! \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab (This should be a bullet) is a bone! \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab (This should be a bullet) is a frog! \par }\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Testing compactdesc. Testing compactdesc. Testing compactdesc. Testing compactdesc. Testing compactdesc. Testing compactdesc. Testing compactdesc. Testing compactdesc. Testing compactdesc. Testing compactdesc. Testing compactdesc. Testing compactdesc. Testing compactdesc. Testing compactdesc. Testing compactdesc. Testing compactdesc. {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b frog\~\~\~} this is a frog \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {\b spider\~\~\~} this is an arachnid \par }\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly.\par }} }}}latex2rtf-2.3.18/test/graphicspath.tex0000777000175000017500000000134713050672357020116 0ustar wilfriedwilfried\documentclass[a4paper,11pt]{article} \usepackage[T1]{fontenc} \usepackage[utf8x]{inputenc} \setlength{\oddsidemargin}{0pt} \setlength{\evensidemargin}{0pt} \setlength{\textwidth}{6in} \setlength{\parindent}{0pt} \usepackage{graphicx} \graphicspath{{./graphs}{./figures}} \title{graphicspath support for LaTEX2rtf} \author{Pedro A. Aranda Guti\'errez} \begin{document} \maketitle \section {Tests} I have two new directories and I import the graphics from them instead of having them in the same directory where the TeX file resides \begin{figure} \includegraphics{fig_oval} \caption{Figure included from graphs} \end{figure} \begin{figure} \includegraphics{fig_tex} \caption{Figure included from figures} \end{figure} \end{document} latex2rtf-2.3.18/test/fontsize.tex0000777000175000017500000000074713050672360017277 0ustar wilfriedwilfried\documentclass{article} \begin{document} \section{Normal roman font} This is some text. \emph{This text is emphasized} \begin{itemize} \item Testing \verb#\Large# by {\Large roman text with {\normalsize normal sized text} in the middle}. \item Testing \verb#\Huge# by {\sf\Huge sans serif text with {\normalsize normal sized text} in the middle}. \item Testing \verb#\small# by {\sc\small small caps text with {\large large sized text} in the middle}. \end{itemize} \end{document} latex2rtf-2.3.18/test/include.log0000644000175000017500000001115613664476467017054 0ustar wilfriedwilfriedThis is pdfTeX, Version 3.14159265-2.6-1.40.18 (TeX Live 2017/Debian) (preloaded format=latex 2019.1.18) 30 MAY 2020 17:35 entering extended mode restricted \write18 enabled. %&-line parsing enabled. **include (./include.tex LaTeX2e <2017-04-15> Babel <3.18> and hyphenation patterns for 8 language(s) loaded. (/usr/share/texlive/texmf-dist/tex/latex/base/article.cls Document Class: article 2014/09/29 v1.4h Standard LaTeX document class (/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo File: size10.clo 2014/09/29 v1.4h Standard LaTeX file (size option) ) \c@part=\count79 \c@section=\count80 \c@subsection=\count81 \c@subsubsection=\count82 \c@paragraph=\count83 \c@subparagraph=\count84 \c@figure=\count85 \c@table=\count86 \abovecaptionskip=\skip41 \belowcaptionskip=\skip42 \bibindent=\dimen102 ) No file include.aux. \openout1 = `include.aux'. LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 6. LaTeX Font Info: ... okay on input line 6. LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 6. LaTeX Font Info: ... okay on input line 6. LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 6. LaTeX Font Info: ... okay on input line 6. LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 6. LaTeX Font Info: ... okay on input line 6. LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 6. LaTeX Font Info: ... okay on input line 6. LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 6. LaTeX Font Info: ... okay on input line 6. LaTeX Font Info: Font shape `OT1/cmtt/bx/n' in size <14.4> not available (Font) Font shape `OT1/cmtt/m/n' tried instead on input line 18. LaTeX Font Info: External font `cmex10' loaded for size (Font) <7> on input line 26. LaTeX Font Info: External font `cmex10' loaded for size (Font) <5> on input line 26. LaTeX Warning: Reference `section02' on page 1 undefined on input line 28. LaTeX Warning: Reference `section11' on page 1 undefined on input line 30. LaTeX Warning: Reference `section31' on page 1 undefined on input line 31. [1 ] \openout2 = `include1.aux'. (./include1.tex LaTeX Font Info: Font shape `OT1/cmtt/bx/n' in size <12> not available (Font) Font shape `OT1/cmtt/m/n' tried instead on input line 1. LaTeX Warning: Reference `section12' on page 2 undefined on input line 11. LaTeX Warning: Reference `section11' on page 2 undefined on input line 23. ) [2 ] \openout2 = `include2.aux'. (./include2.tex LaTeX Warning: Reference `section22' on page 3 undefined on input line 11. LaTeX Warning: Reference `section21' on page 3 undefined on input line 23. LaTeX Warning: Reference `section11' on page 3 undefined on input line 25. (./include3.tex LaTeX Font Info: Font shape `OT1/cmtt/bx/n' in size <10> not available (Font) Font shape `OT1/cmtt/m/n' tried instead on input line 1. LaTeX Warning: Reference `section32' on page 3 undefined on input line 11. LaTeX Warning: Reference `section31' on page 3 undefined on input line 23. LaTeX Warning: Reference `section11' on page 3 undefined on input line 25. ) (./include4.tex LaTeX Warning: Reference `section42' on page 3 undefined on input line 11. LaTeX Warning: Reference `section52' on page 3 undefined on input line 12. [3 ] LaTeX Warning: Reference `section41' on page 4 undefined on input line 24. LaTeX Warning: Reference `section11' on page 4 undefined on input line 26. )) [4] LaTeX Warning: Reference `section21' on page 5 undefined on input line 50. LaTeX Warning: Reference `section11' on page 5 undefined on input line 52. LaTeX Warning: Reference `section01' on page 5 undefined on input line 53. (./include5.tex LaTeX Warning: Reference `section52' on page 5 undefined on input line 4. LaTeX Warning: Reference `section42' on page 5 undefined on input line 5. LaTeX Warning: Reference `section51' on page 5 undefined on input line 16. LaTeX Warning: Reference `section11' on page 5 undefined on input line 18. ) [5 ] (./include.aux (./include1.aux) (./include2.aux)) LaTeX Warning: There were undefined references. LaTeX Warning: Label(s) may have changed. Rerun to get cross-references right. ) Here is how much of TeX's memory you used: 251 strings out of 494872 2756 string characters out of 6178408 53317 words of memory out of 5000000 3649 multiletter control sequences out of 15000+600000 5664 words of font info for 22 fonts, out of 8000000 for 9000 14 hyphenation exceptions out of 8191 24i,4n,22p,191b,113s stack positions out of 5000i,500n,10000p,200000b,80000s Output written on include.dvi (5 pages, 10340 bytes). latex2rtf-2.3.18/test/fig_size.tex0000777000175000017500000001363713050672360017237 0ustar wilfriedwilfried\documentclass{article} \usepackage{graphicx} \begin{document} Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nulla nonummy sem ac nulla. Donec egestas, dolor ac laoreet volutpat, urna mi commodo turpis, sit amet pharetra turpis nisi sit amet elit. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Cras imperdiet, mauris et adipiscing sagittis, mauris turpis eleifend mauris, vel auctor lorem nulla quis lorem. Duis ac purus eu turpis tincidunt feugiat. Etiam eros. Vestibulum quam. Duis porta, odio non congue euismod, elit lacus condimentum ligula, vitae suscipit mi quam ut lectus. Fusce at nibh et elit pellentesque ornare. Nulla risus libero, sodales vel, tincidunt vel, placerat ac, massa. Maecenas ultricies. Vivamus id felis ac metus elementum ultricies. Quisque lacinia libero vel justo. Praesent iaculis massa ac arcu. \begin{figure} \begin{center} \includegraphics{fig_oval.png} \caption{Figure size test no options.} \end{center} \end{figure} Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nulla nonummy sem ac nulla. Donec egestas, dolor ac laoreet volutpat, urna mi commodo turpis, sit amet pharetra turpis nisi sit amet elit. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Cras imperdiet, mauris et adipiscing sagittis, mauris turpis eleifend mauris, vel auctor lorem nulla quis lorem. Duis ac purus eu turpis tincidunt feugiat. Etiam eros. Vestibulum quam. Duis porta, odio non congue euismod, elit lacus condimentum ligula, vitae suscipit mi quam ut lectus. Fusce at nibh et elit pellentesque ornare. Nulla risus libero, sodales vel, tincidunt vel, placerat ac, massa. Maecenas ultricies. Vivamus id felis ac metus elementum ultricies. Q uisque lacinia libero vel justo. Praesent iaculis massa ac arcu. \begin{figure} \begin{center} \includegraphics[0,0][72,72]{fig_oval.png} \caption{Figure size test with two options \texttt{[0,0][72,72]}.} \end{center} \end{figure} Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nulla nonummy sem ac nulla. Donec egestas, dolor ac laoreet volutpat, urna mi commodo turpis, sit amet pharetra turpis nisi sit amet elit. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Cras imperdiet, mauris et adipiscing sagittis, mauris turpis eleifend mauris, vel auctor lorem nulla quis lorem. Duis ac purus eu turpis tincidunt feugiat. Etiam eros. Vestibulum quam. Duis porta, odio non congue euismod, elit lacus condimentum ligula, vitae suscipit mi quam ut lectus. Fusce at nibh et elit pellentesque ornare. Nulla risus libero, sodales vel, tincidunt vel, placerat ac, massa. Maecenas ultricies. Vivamus id felis ac metus elementum ultricies. Quisque lacinia libero vel justo. Praesent iaculis massa ac arcu. \begin{figure} \begin{center} \includegraphics[scale=0.3]{fig_oval.png} \end{center} \caption{Figure size test with 30\% scaling.} \end{figure} Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nulla nonummy sem ac nulla. Donec egestas, dolor ac laoreet volutpat, urna mi commodo turpis, sit amet pharetra turpis nisi sit amet elit. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Cras imperdiet, mauris et adipiscing sagittis, mauris turpis eleifend mauris, vel auctor lorem nulla quis lorem. Duis ac purus eu turpis tincidunt feugiat. Etiam eros. Vestibulum quam. Duis porta, odio non congue euismod, elit lacus condimentum ligula, vitae suscipit mi quam ut lectus. Fusce at nibh et elit pellentesque ornare. Nulla risus libero, sodales vel, tincidunt vel, placerat ac, massa. Maecenas ultricies. Vivamus id felis ac metus elementum ultricies. Quisque lacinia libero vel justo. Praesent iaculis massa ac arcu. \begin{figure} \begin{center} \includegraphics[scale=0.2]{fig_oval.png} \includegraphics[scale=0.2]{fig_oval.png} \end{center} \caption{Two figures with 20\% scaling each.} \end{figure} Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nulla nonummy sem ac nulla. Donec egestas, dolor ac laoreet volutpat, urna mi commodo turpis, sit amet pharetra turpis nisi sit amet elit. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Cras imperdiet, mauris et adipiscing sagittis, mauris turpis eleifend mauris, vel auctor lorem nulla quis lorem. Duis ac purus eu turpis tincidunt feugiat. Etiam eros. Vestibulum quam. Duis porta, odio non congue euismod, elit lacus condimentum ligula, vitae suscipit mi quam ut lectus. Fusce at nibh et elit pellentesque ornare. Nulla risus libero, sodales vel, tincidunt vel, placerat ac, massa. Maecenas ultricies. Vivamus id felis ac metus elementum ultricies. Quisque lacinia libero vel justo. Praesent iaculis massa ac arcu. \begin{figure} \begin{center} \includegraphics[width=1in,height=3cm]{fig_oval.png} \caption{Figure size test with width of one inch and height of 3\,cm.} \end{center} \end{figure} Some poking around reveals that \verb#width=0.25\textwidth# is supported in \verb#getDimension()#, and appears to work correctly. The gotcha is that you have to explicitly specify $x$ and $y$ scaling in \verb#\includegraphics#; if only $x$ is specified, which is my usual procedure, the aspect ratio is wrong. So this works: \begin{figure} \begin{center} \includegraphics[width=0.25\textwidth,height=0.25\textwidth]{fig_testf.png} \end{center} \caption{Figure size test with width and height equal to one quarter of text width.} \end{figure} The following used to fail. \begin{figure} \begin{center} \includegraphics[width=0.25\textwidth]{fig_testf.png} \caption{Figure size test with width set to one quarter of text width.} \end{center} \end{figure} Test that height also works properly \begin{figure} \begin{center} \includegraphics[height=0.25\textwidth]{fig_testf.png} \caption{Figure size test with height set to one quarter of text width.} \end{center} \end{figure} \end{document} latex2rtf-2.3.18/test/head_book.tex0000777000175000017500000000063513050672360017345 0ustar wilfriedwilfried\documentclass{book} \begin{document} \part{First Part} \chapter{First Chapter} \section{First Section} \subsection{First Subsection} \subsubsection{First Subsubsection} \paragraph{First Paragraph} \subparagraph{First SubParagraph} \chapter{Second Chapter} \section{First Section} \section{Second Section} \subsection{First Subsection} \subsection{Second Subsection} \subsection{Third Subsection} \end{document} latex2rtf-2.3.18/test/color2.tex0000777000175000017500000001042713050672357016640 0ustar wilfriedwilfried%% color-package-demo.tex %% Bent Petersen Oct 2000 \documentclass[11pt]{article} \usepackage[usenames]{color} \title{\color{Blue}\jobname.tex} \author{Bent Petersen} \date{Oct 24, 2000} \pagestyle{plain} \setlength{\parindent}{0pt} \setlength{\parskip}{2.0ex plus 0.6ex minus 0.4ex} \begin{document} \maketitle \thispagestyle{empty} The easiest way to use color text in \LaTeXe{} is to use the color package. You load the color package in your preamble as usual \begin{verbatim} \documentclass[11pt]{article} \usepackage[usenames]{color} \end{verbatim} Here the option [usenames] causes the definitions for the 68 colors known to dvips (see next page) to be preloaded. Those colors can then be specified by name. For example \verb={\color{BrickRed} BrickRed}= produces {\color{BrickRed} BrickRed}. Alternately one can use the command \begin{verbatim} \textcolor{BrickRed}{this is BrickRed} \end{verbatim} which produces \textcolor{BrickRed}{this is BrickRed}. If the 68 predefined colors do not suffice, or if you do not want to load the definitions of all of them, you may define your own custom colors. Here is a dark blue defined in terms of the RGB (red, green, blue) color model. \begin{verbatim} \definecolor{MyDarkBlue}{rgb}{0,0.08,0.45} \begin{center} {\color{MyDarkBlue}This color is MyDarkBlue} \end{center} \end{verbatim} %% \definecolor{MyDarkBlue}{rgb}{0.1,0,0.55} \begin{center} {\color{MyDarkBlue}This color is MyDarkBlue} \end{center} %% Once we have defined the new color we can use it anywhere in the current document. For example, \verb=\textcolor{MyDarkBlue}{a nice blue}= produces \textcolor{MyDarkBlue}{a nice blue}. Custom colors may also be defined in terms of the CMYK (cyan, magenta, yellow, black) color model. Here is a light magenta. %% \begin{verbatim} \definecolor{MyLightMagenta}{cmyk}{0.1,0.8,0,0.1} \begin{center} {\color{MyLightMagenta}This color is MyLightMagenta} \end{center} \end{verbatim} %% \definecolor{MyLightMagenta}{cmyk}{0.1,0.8,0,0.1} \begin{center} {\color{MyLightMagenta}This color is MyLightMagenta} \end{center} \begin{center}\large The 68 standard colors known to dvips\vspace{0.5ex} \begin{tabular}{|l|l|l|l|} \hline {\color{Apricot} Apricot}& {\color{Aquamarine} Aquamarine}& {\color{Bittersweet} Bittersweet}& {\color{Black} Black}\\ \hline {\color{Blue} Blue}& {\color{BlueGreen} BlueGreen}& {\color{BlueViolet} BlueViolet}& {\color{BrickRed} BrickRed}\\ \hline {\color{Brown} Brown}& {\color{BurntOrange} BurntOrange}& {\color{CadetBlue} CadetBlue}& {\color{CarnationPink} CarnationPink}\\ \hline {\color{Cerulean} Cerulean}& {\color{CornflowerBlue} CornflowerBlue}& {\color{Cyan} Cyan}& {\color{Dandelion} Dandelion}\\ \hline {\color{DarkOrchid} DarkOrchid}& {\color{Emerald} Emerald}& {\color{ForestGreen} ForestGreen}& {\color{Fuchsia} Fuchsia}\\ \hline {\color{Goldenrod} Goldenrod}& {\color{Gray} Gray}& {\color{Green} Green}& {\color{GreenYellow} GreenYellow}\\ \hline {\color{JungleGreen} JungleGreen}& {\color{Lavender} Lavender}& {\color{LimeGreen} LimeGreen}& {\color{Magenta} Magenta}\\ \hline {\color{Mahogany} Mahogany}& {\color{Maroon} Maroon}& {\color{Melon} Melon}& {\color{MidnightBlue} MidnightBlue}\\ \hline {\color{Mulberry} Mulberry}& {\color{NavyBlue} NavyBlue}& {\color{OliveGreen} OliveGreen}& {\color{Orange} Orange}\\ \hline {\color{OrangeRed} OrangeRed}& {\color{Orchid} Orchid}& {\color{Peach} Peach}& {\color{Periwinkle} Periwinkle}\\ \hline {\color{PineGreen} PineGreen}& {\color{Plum} Plum}& {\color{ProcessBlue} ProcessBlue}& {\color{Purple} Purple}\\ \hline {\color{RawSienna} RawSienna}& {\color{Red} Red}& {\color{RedOrange} RedOrange}& {\color{RedViolet} RedViolet}\\ \hline {\color{Rhodamine} Rhodamine}& {\color{RoyalBlue} RoyalBlue}& {\color{RoyalPurple} RoyalPurple}& {\color{RubineRed} RubineRed}\\ \hline {\color{Salmon} Salmon}& {\color{SeaGreen} SeaGreen}& {\color{Sepia} Sepia}& {\color{SkyBlue} SkyBlue}\\ \hline {\color{SpringGreen} SpringGreen}& {\color{Tan} Tan}& {\color{TealBlue} TealBlue}& {\color{Thistle} Thistle}\\ \hline {\color{Turquoise} Turquoise}& {\color{Violet} Violet}& {\color{VioletRed} VioletRed}& {\color{White} White}\\ \hline {\color{WildStrawberry} WildStrawberry}& {\color{Yellow} Yellow}& {\color{YellowGreen} YellowGreen}& {\color{YellowOrange} YellowOrange}\\ \hline \end{tabular} \end{center} \end{document} latex2rtf-2.3.18/test/fig_testb.pdf0000777000175000017500000004267313050672360017361 0ustar wilfriedwilfried%PDF-1.3 %âăĎÓ 4 0 obj << /Linearized 1 /O 6 /H [ 854 172 ] /L 17851 /E 16599 /N 1 /T 17654 >> endobj xref 4 22 0000000016 00000 n 0000000784 00000 n 0000001026 00000 n 0000001180 00000 n 0000001311 00000 n 0000001349 00000 n 0000001766 00000 n 0000001787 00000 n 0000001979 00000 n 0000002211 00000 n 0000003278 00000 n 0000003301 00000 n 0000003324 00000 n 0000015036 00000 n 0000015057 00000 n 0000015876 00000 n 0000015896 00000 n 0000015916 00000 n 0000016112 00000 n 0000016237 00000 n 0000000854 00000 n 0000001006 00000 n trailer << /Size 26 /Info 2 0 R /Root 5 0 R /Prev 17645 /ID[<71d7e9b5c710bf86408ffaedffb99dca><7b907f303e97e751292e212a0a2a6e5f>] >> startxref 0 %%EOF 5 0 obj << /Type /Catalog /Pages 1 0 R /Metadata 3 0 R >> endobj 24 0 obj << /S 36 /Filter /FlateDecode /Length 25 0 R >> stream H‰b``a``c›Š Ř”b!(éâc’`űŔŇŘËŔÂuŔ”Eœ‡Á:›‘§$ťq‰`0ő•Ţ endstream endobj 25 0 obj 68 endobj 6 0 obj << /Type /Page /Parent 1 0 R /Resources 7 0 R /Contents 9 0 R /MediaBox [ 54 26 281 236 ] /CropBox [ 54 26 281 236 ] /Rotate 0 >> endobj 7 0 obj << /ProcSet [ /PDF /Text ] /ColorSpace << /Cs1 8 0 R >> /Font << /F1.0 11 0 R >> /Pattern << /P1 23 0 R >> >> endobj 8 0 obj [ /ICCBased 18 0 R ] endobj 9 0 obj << /Length 10 0 R /Filter /FlateDecode >> stream xœuRMOĂ0 ˝çWź# ŃĹi’ŚW&8­gmBˆNÚǁŸĎsšŽ EŞ_\??ŰńŻŘ#x¸ç:8ą8lđ†ËŁ !ĺ3ă–çQ ĄČ#Źq‰Ě!›Ě-ćr]‚-Ö˘M€KúqÁ3˝VöęýtÚvŞ˝XŠňŽeuHcĄmźé™"‘ßAB24™UýŠžž?G’ŐФBšĹe›ÍœRo*5GWý<ƒk“ą}˜{4W=Jtćˇ8ăäšÖ˛Ž6묎@ŹŻ(Ł“&öҚéîĂiş0[ŽP:)čĽć*€íT‘É?éWĘoeůß@&㣟‹.JäÎ! |üť'ÓkßÚĂI< ŕHŠ›–O0ŒXźHÔś¸6ß§{ ŸxŞÚŐZš˙䜛Ć=–5TôU‘'ŇVŰ@tćÁTĐŃĂUýą‹ endstream endobj 10 0 obj 340 endobj 11 0 obj << /Type /Font /Subtype /TrueType /BaseFont /PGRWEO+CenturySchoolbook /FontDescriptor 12 0 R /Widths 13 0 R /FirstChar 0 /LastChar 255 /Encoding /MacRomanEncoding >> endobj 12 0 obj << /Type /FontDescriptor /Ascent 986 /CapHeight 0 /Descent -216 /Flags 32 /FontBBox [ -166 -216 1006 986 ] /FontName /PGRWEO+CenturySchoolbook /ItalicAngle 0 /StemV 0 /MaxWidth 1000 /FontFile2 16 0 R >> endobj 13 0 obj [ 750 750 750 750 750 750 750 750 750 750 750 750 750 750 750 750 750 750 750 750 750 750 750 750 750 750 750 750 750 750 750 750 278 296 390 557 557 834 815 205 334 334 500 606 278 334 278 278 557 557 557 557 557 557 557 557 557 557 278 278 606 606 606 444 737 723 723 723 778 723 667 778 834 408 557 778 667 944 815 778 667 778 723 630 667 815 723 981 705 705 611 334 606 334 606 500 334 557 557 444 575 500 334 538 611 315 296 593 315 890 611 500 575 557 444 463 390 611 538 778 538 538 481 334 606 334 606 750 723 723 723 723 815 778 815 557 557 557 557 557 557 444 500 500 500 500 315 315 315 315 611 500 500 500 500 500 611 611 611 611 500 400 557 557 500 606 606 575 737 737 1000 334 334 750 1000 778 750 549 750 750 705 577 750 750 750 750 750 334 300 750 796 500 444 296 606 750 557 750 750 426 426 1000 278 723 723 778 1000 834 557 1000 390 390 205 205 549 750 538 705 167 606 259 259 611 611 500 334 205 390 1000 723 723 723 723 723 408 408 408 408 778 778 750 778 815 815 815 315 334 334 500 334 334 334 334 334 334 334 ] endobj 14 0 obj 20960 endobj 15 0 obj 11618 endobj 16 0 obj << /Length 15 0 R /Length1 14 0 R /Filter /FlateDecode >> stream xœí{ \TUŰřs°;˛Č…qg›7eEPMpe€QFg+Í%ÔÄ5ÍD-ÍlÍ -ÓĘÔ,ËĘĚ6´˛ŹŢĚ3+ažçž{YÜzűŢď÷ž˙ď÷ýţs}ć<÷œç<çŮĎšĂxŕ|Z^Ćč_.ž€=Ÿř]+Ť2Xd.ÚüĎȃËjíüSÉĎš a™YőCŇ×Ă"TČ afe݌_KZ˛z?€ăńFCůÁ îQ€ǐçŕ ěđl–ˆÂ[čUQeŸ—cÉlĹű^ěůJs™Ąrޖ5qJršĘ0Ď"{JŃ@s éůjC•1ˇvČ:m(@P†Ĺlł÷ zm5@F“ją-Ywúd>‰ňÄ9„^B ~ß`ëôăwNłČďSšË€Ľc–ţćALó"żŘőCˆÖSă.WŠ#ŒLššk”œpdцpÍššMtˇžĐ­=ëC!‰^ŮP 60C%ÁŽ0R¸4üőü8Ձז˝ľű‹˘uU>‡ {Oh^¤ZŁYÄč4‹ČNFĹ]=ä“űúMz1řŠEĚTi<:ĺ$ ŠcĐzkźäl§đUfTۍÖjŁ]¨ńş\}= VSžifu4ŸQ]ŤMĐh…7ß|ŞšŞĘh-3*ů<ó ű\ƒŐČçԔVšlFŤOMŃô ôHʍIÔĐϤ@źŃj†Ä' J”8é?!BĂćîz° Ť@ÓpÓĐŻ˝o2ć’ňwő;Rôl~ÁëiËôc‡żşŕĚűŤ_şęŒűOż5{g˙=Ťkm÷{˝t{ŇŞ˛š}ĄŇoÜŠőMŠ—Mś†–Ňńڞď^{Ăýw5|zďč ߛß.ĜžkŚlîŤ?šđáŸëzź4ňĂš GR?űůłłÇˇ-^ńfĘ+#"njŮރa1¨np ‹r=÷’ŁfÖ=[—(Ÿ÷ڎřŤ÷}˜ŔM֗cöؗ;vBP}{^ĚhWžn|(%%îç§Ëćc{Čż)8|ţŠ”“÷;ybčŔ´“5Wż›s¸ĄÇĐŔAcŸ~}dü×-˛C÷~tč”3żÝ?´źébţŰÇß˙äôKÜĆVfŃgËűď~-űąsĘľIIC‡ú3~ž÷ě}ˇń›‡ :şqŐňăáÇó ×t˜Ă8jxDŽ ]Đé™|kÍΏ7Ú皭ł;|ęv“OŁ5Äu×LS•‘ĎłŞ,Śę™|žŃZk*3ňšfł];P/RGĎćł2RFedeäó)ŠŠúœ|}Z4߯Źâţú5hŃ ŇĆk†HQ˜˜¨OĐJˇ˙űřŤ~?–˙ąâÎč˜Ř†ĐÝň=;Ü^đö˜řqޙš/ßH°çÔ—ÉůśŠÝĹýä'!“ö¸peůîM‡–őţÇ]E*ŰŹyoÎńo;RtĽ˙Ž˘ikšś˜RĐăsř ˛(üdwŢ˙Ŕ{Ǎýö‡á‘O>´ âáĘĽ‡ĆŽ^7kďöÁ\s‰yoâƛb˜cx˜÷ĂKd#ßűśţĎ;>ŘyůÉşk˛kŽ˜ŁŢŐďěJ_ă=íŃËČęIJ{憎üÂË~/ź[řĐleŠţČÖÇ>´PŮjá–ĘvÜépż_ꏿŒ;­¸wŁŞ˛¨ÝuĐşă÷l>ËYp—áŢWžq›łáńŁ3JGxđČřő‘÷4ţQŽěőë{`üb!f3ţpŔ{ĂÇŠ#ţL/şűžăé˛z˙ŕWň/ˆŸÔöŐô÷ük1:4uť­Ś˙’ˆˇ/Ü7yMĂŚ›Bzza™Ňť ÷>ľŞitÓ§{˝§™>u]XÚ$מxŰš|Mú‡Ăřö”Ľ˛’Ď(lXl¸7ËcůT}n~JĆx׉)šš)ăó3ôy|ZF^jVJĆ8}Ÿ2>­Ű~˜•1.ˇĂXWz|ĆřŃĂřü1zž OĎg§#š‘GŮe¤g¤ŚäëyźÍËĎÍHÍĎ*ćó FŐ§ćóůŮÂ×B}n>4ďFŸ‘=žĎÉMIÍĎHŐăĹ–ČČË+Ŕőř”‚ü1Ůš(‹k‡yđăr˛2$™őE9šúź<žK+4ÂřÔŹ‚4KWŻ+Ę=NŸ›:o;´ĚÎĺÓ3ňÇ ÓÓOásRPĆÔ‚Ź”\>§ 7';OM™˜‘•ŏĎÎwĽ§FĘŇÓ ŠŮăóô PřŒ”Źhœ2>#?ŁPšÓ!l6j•˧ĽŒK­Ď‹ĺóôzWAO Ę#MTYyhéT3–jt™yƍą8ÓdĂ a,çŤÍŐBXÍ0ËóÄDHącf”Ö`šçá|Üľ†Ę#oŤ0`T›í|Š‘/3ăP9eb°ń†˛˛Ť˜3ĚÖ*š3ŽľbŮG ŒTA‚Œ”X×mƒëţ4ďčŻ4Ď4ÇÎ4ÍĐ  ËĹib4QÍý›ű.í-°A.6ĚČŰőŒĘ„íH­ÔtŤ7!œR#ǚƒ˙nń0YđáúůcŻi.î}÷ÔUňÖŤ~ť0ç§ą–ŤS†ĆúŸO÷ş’;ęé­Pe5 œq¸ŕő‚WNž4™ŒŰćósňĂëWN˜6äě#Oé,˓ŕťÇ“Üük~âŇwU —mú~ĂĆŕĄĎ>]y>34ű\Qč۟y?wf]ű„E×N˙íŰŸŻqŕĘçŸ>9żHťˆ}Qłˆ}!DSó(čˇ8]÷łIsĂMN+š°ÚîĺĂˇëÎM{CńׄwMä´>œęŸŒGz~cĎąYĎ&-žU˘™ŐÜ];E3ŠYS Š`„j°C XĄxȃ2¨3ý…§”śłą7[¤Úҧž—B(Uulý4ěuóLŤÁRQÇß°÷s ő|ůÝđˇƒ}ŰűDnÔŁďž6(śĐ÷'Íô;SNO_ę–ÝţxđşcWűŘ&n\Űëhhň÷°4'™.üşňŢH™.!oÚ,űŚŹĹŻ.PžîڟŸĎÝźĺ9]ĎSs/Ď˙˜É¸Úk^Đ Ď˙öčEkÍă.éF4őđ¸˙Ýß]^Úťäg7ˇźźe9‰§žˇşŒ$×."°kŸŕý†–˙őYˇ{Zź>‚Š5AÝČ­ë÷?‚ńÓ9"Ózѧ4-ЇĆ'Ä™tSüźQ]Ż~乐ĹęüóË׏î}áfŸęCf}ęëiÍşclŸâűVlŘşbRĚą7âˇéś/ęy5çÁáĆĆŕ%˙G×ýŸ/>óAóOᯎ˙eés_ď藸vĐéŇď"ÚßYiń°?ádÍÂ~;5ܞGJ,ć٧ľúűóţ´ôşŻ _ćőވ•[NOŮ;˘xëŠ%Ë˙Ř;ńꡯ%N|X Bé/ Ŕ\Á;ÄŘkŔ1cG-č@ƒÁ<`8‰–ä™Gű˜ŁĚĚg,Çşł^Ź7ëdž°ýŘXVËeGązöďÇó=ůHžߟ×đĂř4ţɈȈ>‘L¤<Ň+Ň;Ň?28˛gdTä˜Č’Hcďă?2WKŻÎžZsuţŐ;Ż.ü“q:q}pÇěiĆusI Ž{Ž{×=Ă+§ëúâşj6†ŐtŽëËńĄ<ëöĂuoąnÎuËq]rľäꏍşî‚? ]œ_"lwNs.rŚ:g:ýÚ˝Ú~oťÚvĽíלËm?´]hű˛í‹śOŰŢo{ˇmČšÍâŻĆç– Ź=ˇäÜűçźĎÎ:[׺śukëŠÖĺ­;Zí­sZ§ˇĆľj>ž¤:¨lQîV>ĽÜŠ|\šCv­^ óÁ<čö!D¸ý‡‘PÂcy›qĎżšM˝/^OÂ6¸–ŔUX _ĂR¸VŔ&Ř ‚ á2,†űáüŤ`,‡_Ą~€Gŕ ř~‚_`+<oŔQxk^4A9ź‰uń‡wŕ-8oĂ˜ďĂIxž™pÖŔi8`­üţ÷Ŕ,0aĽŹÂŞY ÍX-ç€+Ş ëŞ-3žAËĚÇ {ÜwB l…‘őĐßÁ÷°ÎŔçđ | ŸÁ9řÎÂóđ†˝đź‹ŕUXFľ| C›ČA wÁ>Œö7 ÍÂÉä Ľ‹Ť›ť‡§—ĘŰÇ×Ď? 0¨GpHhXĎp>"RÝŤwŸžýúˆŠŽ‰Óhăźé‘ÍÍ[śn{ôąí;ßůÄŽ'ŸzúÇî=Ďî}îůZöíńĽ/<ôĘŤŻ~ýČŃcoó­ożsňÝ÷Ţ?őÁéĎ|ôń'Ÿ~ÖzöÜç˜ß=QÓą4ż]o“ŰÝsXČŕ’żRÎŢ:_ťçĽ•˙$'…<źMvË5ši˙$ĎhnŒšÎĂH üé‡#ĘŰäƕ[ôýßĎš#˛3ŕ'; Ო°;qçůh_čüÇ"°ý…]Š´_ßÂN•›DÔy›OŠs 3řÖčF×rd˘]2QĂL˜††÷ śĂDÔz ÖÎ_B’¸á÷Ť0† ľžCźěĉzĆČh#D ůđ8<‹^=áÜ ôŚ7zLjŢhBŻ=ŠQ Ťá%ř€sÇ=)zC?˜€ž??“L˛Œˆ'ÁtäV‡ž:ĂČąŚ¸CŒC?ß Ű™ŠĚˆĂľÇ ďl°vĂeâM.r9ΞÎŐÎűœGăhž} Ŕ!ź^Çë‘‘ňËłľNťłŮů"JCQĂB¤:ˆqň js $O““äÄ gZŘlŮçnĚę(\ŻJ0Jlw` ,†•ąŰűŤđ=aQFú“x’@*ˆ…<ˆ|žb˜L3wóíě ěÇÜ@ŮCÎ˨‘+ęÔ%č ń0RPă ¨_5r^ŠśŮ†’ďDÍ^‚Č3—Ě &˛’l!ϐ˝ä'f “Ĺ|ĂüÂłwł÷ąOs2CۇíÚßnżäôq8Ÿw~ŠžrÇsF8hđJÁÚ$\™h“Ôv:ŽdBëĚĹřnŔőa=l„Íč™í° ă÷ÁĚzžÂ|ť†zů“ždB’I!YJÉC(ÉŤhŁoÉ Ëx1L/źúŁŚ™ĚĆĚÜËl`cL;;€Ía÷ąçŘ+\ Äń\<7™[Ě­ĺžáNË&ÉfËËÖËśČ#•o‹mwoŸŃţtűç¨E¨s¤łĐ9ßšĘيÖwV9^JÔ*ă§Ćf ÄbĹMĹČĐŁˇsńʃ˜BŸ„Œ6S_ :ށٸăk5Ćß}đ ćúÔtĆč.ĚŐ}čý—чoařcŕ źÎc=úkĎUpb5gńÄęN<ĐŢh‰^¤/Úb8IƓ2…”ŁwĚĊ×2źV’ äa´Ďcd;yŽE+&“oˆ“á_&„̌`F1iL^EŒ…YĆŹa62ۙ—˜×˜™Ď˜VćxěÍbg°°Űđڅ—ƒ}•˝ÂśqŔšqƒšî"×.Y„,E–V|UvTöžě”ěsyüeůŠbe8P—]×'7Éւ™Ä€‘=€‘ő1l##Hӗü÷r§šĎ˜8ÎĆrÉ;“lFËź…9ŰJČΐ-–GB”˘Ԙ;›3“\(š›lĺr˜IL-3‚ĂŮxnó!§e?Wqϐ,v ŕEĚÁi$cťzB-OĐ%K:d`BźV5 żž}z÷RGFđá=ĂBC‚{řűůúxŤź<=ÜÝ\]” šŒcŃzuz ďčSâŕú¨ÇŒ‰îŐě0të(qđؕ~=ƒ/Ądüő”:¤œqĽN¤ÔuRŸI1Ńź^Í;N¤Šů2iBâŤŇÔĹźă"ĹÇQœëCo<đ&"gđú Š4ŢAJx˝#˝ś˘Q_’†üvťšŚŞSŽ1ѰŰŐ Q7ÄéjËn’>’P„I×Ű̀ŇĽrŒU§éę4AŰ[o(wäL(ҧ…DDÇD;Hj™şÔęQŻ(JŠt‡<ŐĄ Ëđ&AXÁďŽ>Ô¸˛EĽ%QîĺęrÔ"k(ÖđŽrŒV§9FĎ?ÝBśç9\R[ä탹ÎúÝőiiĹÂj>ŠEËş“‡°ú /Ü66.ăÍŠşFßĹĹČ4&:3ˇ(ĽVëWň‚šETdJ‚âPHĄOPSTŘ¨Ö =%łx‡‹z”ş˘qV :+¸Ńšu{‚Çęö9ĎÁX=ߘ_¤Žp$‡¨‹ iĄťý 1ˇîŮ ŸqýHLôn•ˇhéݞ^âîŃ1vŽQŒ’ JÝaj"H¤ÎŔqđe‰qsŚžż<őb˘Ş6œÔ–”|ą}ÎÔ$U’VsŚ’9S}#|ŐLD¤ÜßŰ/`8ń”?x÷Ŕ>ęH…\ĄžÄ9Âôiíç†E Đ<Ř6á‰Č^ą k 9ę ŮŃśwÉĹ~ą–öŠĚ̌ ĺžéÓ÷ž9żςçŮýěëŕ=a›.FǓáJĽLĽ Šß\üÁ#!˛ĐŮ*…ĚâęŚPö¨…f‹’œT•’([ȝ—‡?Š˝äAź<Â=s¸ęŠuN[’ŞÍ:gęĺ‹Ţ¨ĹĹä6ďĸ‹¨„ŞmŞw˘V“Z§‹îéćÇpž~>~ŒœíâÝc. óň/Ă͓”A°_č\ŇÓ3´Œ0î˛2ˆŠŠ"QČT?$̓ú$Äă˝,Í XAÎîi3Č2 —ž›r_ű÷/ľ;Űö-?Żn+#k{őťgjĹňö颲łĄíç‰ęÔyŇcĺâ)zíđę ű…‡ŁçĎĚ%Y_<ő™uĄëÜ đóă,ŹĎi*Ţ#ǃóřĂŢrƒⳇa¸™R<ń¸Ÿg›<ˆG cŘ#ŸďßBzčźÁWĺŤómö=ä{ŇWîëLý{ţbŰԋŞóIŞ‹h–śŠIÉmI؍žJź#ü#ĐŠčĎ! žDŮgˇ˛“Ä4×ţîŘÄ´eŞü‘öĹŰĚĂ e}ŰMiŰ1>oÁšŸ[8“ŠI÷kF 4\ >Á$jݚţqŁĺEžE|…o?WžNŽTň.ŚĐ§Đˇ˜/Š˜Ź)ÖĘ5­BЌSřřúĘ5<ŻőńńˆôöŽŒŹ‰SúĹĹ)QřĽźÖGâ"y_.JăŁđVĘĺÚ¨ĺĺÎ$LOB@ŐŻGŔÄŔŔ  ţý¸F(|XFéSźÜq™¸H“ŕŢÂĚх{y%{e{ą˝ˆ—W`…Šgš˜“ Œ†ŃáYľ…1ëüúX´:hsĐ;AœWPrPvô"žeĄ?ňpł6žČjI` ÓKçśpŔ懰0€ ŘGFÂ@Օ9S/â?~ –—šŠs.zű& €˙0ÁT4*“’’şĄH°Ě36Ęó.Őalƒ$ä°2i™§ę0bŞ$úĽ<ŹŐŤ˜ţrżp2ă°ď źń"xM *ôĹŽbz5™>}5äpľĎÖGźëȊŐY/ˆ°´Q푃z¨|_ZÇ„m7í7jĐţö‹ąĽěN=§Vő8}$Ŕ/ĘMŻ,ůş}yďđĚL7Ľť[đďŻöďŃĂÇdf*‚úúž”' ?rŇęÎ zít}yĘtݤ_!D|đlčnĐîտ׈gůtĽťâK~{ěü‘@ńeťđ(ăë”î#ŸßĺR“(Á4xž 3gsśr6¸Oţ˜äKϜ0›yîFpáJš@ôKđţlˇ s‘Ţˆđ9B B#BÂj„„w"Ô"ív„‘GşŔGhŮU0Aö¸ËŽ:Âjn@¸ĎŹéŘ.•Â,Ä+P–vd!pźĎĂ~bD˘|ůxoĆűlí8g Ě–ŕý0Œ<S|jŮVč-ŰęźĚ} cQîŸqÝHlą}’çeÄ$T(Ďn=Ę0űă¸,(ĂyQĚĐ2Ӝ‡¸—!ńxEŇ ŠH§Gú8w6ÎČî…9hÇŠsƒQŽAŘj˘Ř yVqáSÜ Ŕő3D˝Šî÷ :wč$Č/ÉtPQžî@ĺ!ÁżSśAŤ;$˛ čWúĹćüď—p‘‡PśŮ¨×HôZŒź>(ó›ą\9ôŔű(”3Wśő+%BhkîaXĘ^ŽEɤô#-ĆؓÎĚyo-ŸAÔe*Ć^ ‡rČG9°íÉ}Ál…Ó‰p ×z“ÉÂý^˛•`ěKøČF™/+чhóLŒ×ąÉČ#eü%řžś?źÝŒ_ˆŚöůă` ĆäÓ8G/ĚGžý%,íjQŒżî@}$@.@‡ż:€úá Ŕ!ř đ—„8C¨@˜Š°!IˆW!f„ŘâCˆ äÇŁ\#iĚ ňÂô…ŻVœsBo„Ô‡/ŠqŒŒk™sĺ#X€éÝ÷?z=ůĎ.˙—×ýâĹ<ô˙Żő˘eýw¨Â3v)žšP†cž$(ţ­ †3Ç;÷ƒ…ťXŢą)ŕě ÎBl‘pi^•p¸Ă) —ƒ7œ“pŒƒŸDż‚p/q‚§ŹB gŔ…”J8‹řl çˇK¸ ńť$\ŽřR W€7Y-áJP’f wAšÇ%ÜńÝî† ZŽ~ă$ű).,CŽPœţöINS\Aűż ¸’â?S\ŕŃÎ0N  ΀'ŰKÂYĹĆK8‡4v —Ať^ÂĺÉ:$­Ěž'áJˆç*%ÜúqH¸+{†;"án0CŮŃď¸!‹¸‡ŰŰ.s=aŠ˙0Šť zůŻĽ¸› ‹˙VŠťÓţ=÷¤řËW şř§¸/â>ţg(îGižŁ¸?ĺC˙ęĘýrŠ÷ćřPŢ̧VŞg;MýHĄđ6_™Ą’Ď^0Âe˛­ĺŚjCĽ-ŻĆb´šĚV[')Œ3XąF ąR¨#`„YP ßŇߔ;ĆňŔŽm5”ăˇĘŮ ěnö{a>ń> ůPú7”aËĂN„|¨ ř8ú‹yˆT<¤RŢúmŔ~Ľŕą§çÇ"–Fű ˙CN<ÄŃŮÔyô횚N:öe`+ŽŠ…Dź4ƒßZźOAÚJls‘z&J`§ôšČ Ď~¸^-~—Ăß{“G˜5)*Š˙Ţť?×ĎáaX§ŒÚżĹĄJi봉eŒú]?÷V3˙ž|&jÁGV*Špo§k vá|"ü-ʊj Ě1cŒüO"ăć˘w͸ž0Âœë ş›_ÇQ^VIÚtjĎJ*%Ł$=ž)ß iʊĘ]*݉rŰ%šo´÷U¸B%˝›‹T&j17ĐuKi+ÚEÔčFz˜‡Ň‹Y&ƕF꿙ŘŰaS3]OĐb]ą˛›\•H7ƒj-zGü_ƒ&ěěR)ůŞ”b|ˇœí˜cĄÖŞŚÖŻFZĂÍţˇQ 3Ş#ćŇ5ŒŇşŐTA.fŠIę$5ü-ýŁ;ő˛Ré:˘­’ę#ęaŁ}eâ;rÔ˙6*O)ý?’sŠ5Ş%>‚Gfw“LěŤŚÚ sŒ’Vé8b•x•Ńz!đŹťe̤ÜJ„؍˙ÍŻ˝.mÔâÂşU´ÖäăŞ]łł(f“bóćucťe‘M˛b9•°šćMdľŽ¸ígżĄRGKöŤĄ&J+řŃNŁ×$ŐkĽŮWC­QŢiM3Őâ6â{P­Žˇ”˜%7GĹÍ+wí÷ľ´×ŕwÇ.b ľŘHsýÖŃ!Xż{şęvÝMžýÔĺ}“´;wěcjYÝůĘţ–Ďy)ťďfë ŞœZZŹČş—Zťö˘;Š­ÝâöÚz;KUŇ÷NL5éâ7—ú6őf÷łNG%ě˘4#­x ŞĄřWtę#ĘŐ=ş…:(îfiňˇŽ3ânCĽQW|dPÝoöœ`a˙ě7RŢڈťsőjő >°Ţ`ď.Î6ş7{E9ˆçKń 1ˇ[ř;Ţďŕ'椐Ťľ7íröÎ}ôF?šĽ}J<_hVß*ťŸśşŰzĆKÚ.+ßźB™tj*•îşK$ę#DаNX˙S°w(žI†ŕÍ<Ą ĹVƒ÷Â[R<ÍĆLüˆW?ěéCđ 3ű†ŕs <ŃĐÁ1]ŇńF=şWăŽJ/D¤Ö´›óIvXŢJ÷ [çŽÇKąj¤{ßD)óÄž—ýŒRéŞdĺ4Ũ0Ývʗď<tœ´LŇłBGŢŹżA˛‰j(Zůz;˜ťŐ´žR‹+ĚÇËüoąÇżţÔĐĹ_ü;ý80ţnőůţ@ř՜ČAJpÁőÝč{łžŕEßZö_đ€@‚ ! aĐÂQűˆ5ô‚ŢĐíÓ÷‹%˝™‡ű‡âéđ Ü;†ŕ^“ˆZ ‡$#!t¸’Ţ_M§ďNgĐwtłpŻžir`}§5wĽBŒĂ"<ËL‚É0ŚÂ4|*ĄgÍ2éÍę™ô¤2 ĎN•hjşăΑžŘkčŰěóĐ>óá¸î‚°žÇžÓ7đ—Â2X÷@#Ź€•° îĽďĘŽűŕ~x„ľ„őđl€đ0l‚GKß˘Ý ŰŕQxLz›v'<ťŕIx ž†gŔťa˘ďç ďۡÂY8ŸĂyř ž† đ ֌ďŕđ=\„ŕGř ~ĆJs~…+DFäDA”p€­ŞŃ˛ŮUœžĆjv1 ˙yťĚl5ĘŤLĺĺfťű sŐ&ý ĚZLZHq…zŚšš"źĂ4ę{‹ž ?˝)9<üY€!5]ř&™{ꎅˇżg †…ó)žĚhĐ Ô#4!üˆ  Ů:˛_çËl˜t,źĄč›cáß 0šî ˙a)6:ˇđĽó…ż2=)|ú&áŢ5\3Y7™™<] ˝°éXřAKŠ9őM?"pŕç@…Ŕ#ht22EçŽôł„9ł‡…CJ"“qÓJęžAxá‚NJářMW+ňj…„C'Î!Č;{K,őÍ7PýHZuN×]ł…Ă6Ő6~›f›n[Î69¨ řMŽ §@Uůšş9ĺ0[5›Ÿ­™­›3[Uů‰š‰ş‰ş 9sĚ9\ř š ş ŹĆSăĽóÔyô<é%×ÔęjÍ|Ý|ŚžśŠ–ŠŸß4Ÿůqq9wš$Ş;YÇÔojÚÄh6é61őÓë_išŢô ΅Ëâ¸8΄łL8„&œ„ł*•W‰cyŢ+™$łW6Éfu.:Żéd:›ă’ăef˛ŤŮ@3)q)ńZH,.ŻŐ¤ŢĽŢk3iriňr†4ť4{$‡×;䐋îĹC^gÉI—“^îá •[œ‚wKVhܲ:ˇéŠ7ł˘ÄmĄÂâśZQďśYŃäöŒ˘Ůí ÂáöŽâŰYĹIˇ`/š—"N§ŕ:dy˛bş|şBéĹyÉxŽ—%sÉ23g–-äĘ6s›eîá2•GœŒ÷H–i<˛e:é˛łŹÄcĄĚâąZVďąYÖäńŒŹŮă ĚáńŽěÇYŮI`đăýt~ő~¤§cÁôńVęĆđ-äܞ1ńŘ| 6§Äć=ą9!6o‰Íkb3El&‰M‘ŘL›ą™ 6ŮbÓSlBÄ&XlueŘ^Fřá'„ţđ-ÂťŻ Dxa7Â&„ű–",A¸a>B-Â,„r„éS&#Ńu΋˽)6ÇÄćˆ.ŰK§ś#<8&ŢŰĹŰĽŠ…LÓéM+šĐWëMsMVES™˘É h*TôRF*yeOe¨2X¤ Pú)}”*Ľ§Ň]éŞT*ĺJNÉ(1Lj×Íd2óF‘LÇĄ2Č,ĺWňÔ-ÄuÂ$‡L=Š8|2!3TchT&V\ǐ¨L‡"grŃnBî-v0ËéëŮ-¤‡pż$Dx3{ÖĄ!KV…­sÉŞâbˆşůԉ‘Ěœş}őĄĎ+ÂU„ĎS`_fv5 ]Mż*šhWٓk3 +J sę-ßćCô&Aɜ˘ÝJUœ:ElŸeÜ\Q䒐ˆâQ*ËH*˙đˆ !ű9 ƒ[TąĂ]=ĘၠŤĤCXä„!Oá}wi(hÁđˆýäqiH…ÝŢh@°ŐŘlöüŘl6błŰěÓlÓě؅Ąˇ&ĘnŤąŰPBńŤS`áÖ^UeŁŻpđş%^ćë+Z˜JŠ#Rö_ĎŘř; endstream endobj 17 0 obj 714 endobj 18 0 obj << /Length 17 0 R /N 3 /Alternate /DeviceRGB /Filter /FlateDecode >> stream xœ}”OhÓPÇżŠŽt2pÎ1T‚‡šC;˛í2/ęÚmu¨ĽŤîťdiŇĆĽILŇŞcÄŁsGÂTÄĂđ$˛ƒoE'ŽéECaPő÷’śÉ°óÁëűźďűý{ż×hŇDÓÔBvä›;ć-KÍĺ~^NćăFÁ,:˛áGuŠ'Â÷ ‚[Ł×+/?Ý']كŘë§;€ŐKŔÔ`ü.đđ;pöpěj2纍Ú,hĹÚ˝Zi†eýĘ$­Ô|̊CÔwôáÉŹ<4ĚޟxLś‡Ť6܈˘ŽŒ˛Ć“^R,ďH˙ :ŁQÖľäDU?­ÉËU_Ítbé*—íŇäpMwčKF|†xíš8–"î$^Y0ƙŢNš-ćăÉ*ż\ĚgŚj5#:M *$đH“Ł5EŠ…TNƒ;#`ľßŰŔ çh_ ÉNj–Q˜ő2٤\/ž-çúěÔŁŁŰXhMKâNď!|~ ŰÂŞđTřQ÷戚űœQÝw/–§ž˙:ŠdÉüŽ’OăzÖĚĹ<íYýĚŽäžŮôÉzĺwKu=í€W°ś÷<›Ć]eVęĆŇëżžíĂës[á%E_îôUióţ/ů^˛Ě~يüŁű cşS endstream endobj 19 0 obj 79 endobj 20 0 obj 15 endobj 21 0 obj << /Length 20 0 R /Type /XObject /Subtype /Image /Width 8 /Height 8 /ImageMask true /Decode [ 1 0 ] /BitsPerComponent 1 /Filter /FlateDecode >> stream xœ{wwwů; tű endstream endobj 22 0 obj << /ProcSet [ /PDF /ImageB /ImageC /ImageI ] /ColorSpace << /Cs1 8 0 R >> /XObject << /Im1 21 0 R >> >> endobj 23 0 obj << /Length 19 0 R /Type /Pattern /PatternType 1 /PaintType 1 /TilingType 1 /BBox [ 0 0 8 8 ] /XStep 8 /YStep 8 /Matrix [ 1 0 0 -1 54 236 ] /Resources 22 0 R /Filter /FlateDecode >> stream xœ+TT(TĐw.6TH.V0Ăâd ´Â˘T…4ý€Ô˘äԂ’ŇÄ…˘L°œHQ!PÉĽkVœŤ ď™k¨ŕ’43ňŒ endstream endobj 1 0 obj << /Type /Pages /Count 1 /Kids [ 6 0 R ] >> endobj 2 0 obj << /Producer (Mac OS X 10.2.5 Quartz PDFContext) /CreationDate (D:20030503142818Z) /ModDate (D:20030503074234-07'00') >> endobj 3 0 obj << /Type /Metadata /Subtype /XML /Length 825 >> stream Mac OS X 10.2.5 Quartz PDFContext 2003-05-03T14:28:18Z 2003-05-03T07:42:34-07:00 2003-05-03T14:28:18Z 2003-05-03T07:42:34-07:00 2003-05-03T07:42:34-07:00 endstream endobj xref 0 4 0000000000 65535 f 0000016535 00000 n 0000016599 00000 n 0000016737 00000 n trailer << /Size 4 /ID[<71d7e9b5c710bf86408ffaedffb99dca><7b907f303e97e751292e212a0a2a6e5f>] >> startxref 173 %%EOF latex2rtf-2.3.18/test/ch.rtf0000644000175000017500000010741313664476467016037 0ustar wilfriedwilfried{\rtf1\ansi\uc1\deff0\deflang1024 {\fonttbl{\f0\fnil\fcharset0 Times New Roman;} {\f1\fnil\fcharset0 Arial;} {\f2\fnil\fcharset0 Arial;} {\f3\fnil\fcharset0 Courier New;} {\f4\fnil\fcharset0 Zapf Chancery;} {\f5\fnil\fcharset0 STIXGeneral;} {\f6\fnil\fcharset0 MS Gothic;} } {\colortbl; \red0\green0\blue0; \red0\green0\blue255; \red0\green255\blue255; \red0\green255\blue0; \red255\green0\blue255; \red255\green0\blue0; \red255\green255\blue0; \red255\green255\blue255; } {\stylesheet {\s0\qj\widctlpar\f0\fs20 \snext0 Normal;} {\cs10 \additive\ssemihidden Default Paragraph Font;} {\s1\qc\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 Part;} {\s2\ql\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 heading 1;} {\s3\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 2;} {\s4\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 3;} {\s5\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 4;} {\s6\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 5;} {\s7\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 6;} {\s8\qr\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext8 rightpar;} {\s9\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext9 centerpar;} {\s10\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext10 leftpar;} {\s11\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equation;} {\s12\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationNum;} {\s13\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlign;} {\s14\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlignNum;} {\s15\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArray;} {\s16\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArrayNum;} {\s17\ql\sb120\sa120\keep\widctlpar\f0\fs20 \sbasedon0\snext0 theorem;} {\s18\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 bitmapCenter;} {\s20\qc\sb240\sa240\b\f0\fs36 \sbasedon0\snext21 Title;} {\s21\qc\sa120\f0\fs20 \sbasedon0\snext0 author;} {\s22\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext22 footer;} {\s23\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext23 header;} {\s30\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 caption;} {\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext0 Figure;} {\s32\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext32 Table;} {\s33\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext33 Tabular;} {\s34\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext34 Tabbing;} {\s35\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext35 Quote;} {\s38\ql\widctlpar\f3\fs20 \snext38 verbatim;} {\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext46 List;} {\s47\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext47 List 1;} {\s50\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 latex picture;} {\s51\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 subfigure;} {\s61\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext62 bibheading;} {\s62\ql\fi-567\li567\sb0\sa0\f0\fs20 \sbasedon0\snext62 bibitem;} {\s64\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext64 endnotes;} {\s65\ql\fi-113\li397\lin397\f0\fs20 \sbasedon0\snext65 footnote text;} {\s66\qj\fi-170\li454\lin454\f0\fs20 \sbasedon0\snext66 endnote text;} {\cs62\super \additive\sbasedon10 footnote reference;} {\cs63\super \additive\sbasedon10 endnote reference;} {\s67\ql\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext67 acronym;} {\s70\qc\sa120\b\f0\fs20 \sbasedon0\snext71 abstract title;} {\s71\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext0 abstract;} {\s80\ql\sb240\sa120\keepn\f0\b\fs20 \sbasedon0\snext0 contents_heading;} {\s81\ql\li425\tqr\tldot\tx8222\sb240\sa60\keepn\f0\fs20\b \sbasedon0\snext82 toc 1;} {\s82\ql\li512\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext83 toc 2;} {\s83\ql\li1024\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext84 toc 3;} {\s84\ql\li1536\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext85 toc 4;} {\s85\ql\li2048\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 5;} {\s86\ql\li2560\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 6;} } {\info {\title Original file was ch.tex} {\doccomm Created using latex2rtf 2.3.18 r1266 (released May 29, 2020) on Sat May 30 17:35:19 2020 } } {\footer\pard\plain\f0\fs20\qc\chpgn\par} \paperw12280\paperh15900\margl2680\margr2700\margt2540\margb1760\pgnstart0\widowctrl\qj\ftnbj\f0\aftnnar {{{\pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \par {\trowd\cellx1700\cellx1894\cellx3782\cellx5011\cellx6899 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '000}}\cell} {\pard\intbl\qc {}\cell} {\pard\intbl\qc {{\f3 \u915?}}\cell} {\pard\intbl\qc {{\u915?}}\cell} {\pard\intbl\qc {{\f0 \u915?}}\cell} \row} {\trowd\cellx1700\cellx1894\cellx3782\cellx5011\cellx6899 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '001}}\cell} {\pard\intbl\qc {}\cell} {\pard\intbl\qc {{\f3 \u916?}}\cell} {\pard\intbl\qc {{\u916?}}\cell} {\pard\intbl\qc {{\f0 \u916?}}\cell} \row} {\trowd\cellx1700\cellx1894\cellx3782\cellx5011\cellx6899 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '002}}\cell} {\pard\intbl\qc {}\cell} {\pard\intbl\qc {{\f3 \u920?}}\cell} {\pard\intbl\qc {{\u920?}}\cell} {\pard\intbl\qc {{\f0 \u920?}}\cell} \row} {\trowd\cellx1700\cellx1894\cellx3782\cellx5011\cellx6899 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '003}}\cell} {\pard\intbl\qc {}\cell} {\pard\intbl\qc {{\f3 \u923?}}\cell} {\pard\intbl\qc {{\u923?}}\cell} {\pard\intbl\qc {{\f0 \u923?}}\cell} \row} {\trowd\cellx1700\cellx1894\cellx3782\cellx5011\cellx6899 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '004}}\cell} {\pard\intbl\qc {}\cell} {\pard\intbl\qc {{\f3 \u926?}}\cell} {\pard\intbl\qc {{\u926?}}\cell} {\pard\intbl\qc {{\f0 \u926?}}\cell} \row} {\trowd\cellx1700\cellx1894\cellx3782\cellx5011\cellx6899 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '005}}\cell} {\pard\intbl\qc {}\cell} {\pard\intbl\qc {{\f3 \u928?}}\cell} {\pard\intbl\qc {{\u928?}}\cell} {\pard\intbl\qc {{\f0 \u928?}}\cell} \row} {\trowd\cellx1700\cellx1894\cellx3782\cellx5011\cellx6899 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '006}}\cell} {\pard\intbl\qc {}\cell} {\pard\intbl\qc {{\f3 \u931?}}\cell} {\pard\intbl\qc {{\u931?}}\cell} {\pard\intbl\qc {{\f0 \u931?}}\cell} \row} {\trowd\cellx1700\cellx1894\cellx3782\cellx5011\cellx6899 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '007}}\cell} {\pard\intbl\qc {}\cell} {\pard\intbl\qc {{\f3 \u933?}}\cell} {\pard\intbl\qc {{\u933?}}\cell} {\pard\intbl\qc {{\f0 \u933?}}\cell} \row} {\trowd\cellx1700\cellx1894\cellx3782\cellx5011\cellx6899 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '010}}\cell} {\pard\intbl\qc {}\cell} {\pard\intbl\qc {{\f3 \u934?}}\cell} {\pard\intbl\qc {{\u934?}}\cell} {\pard\intbl\qc {{\f0 \u934?}}\cell} \row} {\trowd\cellx1700\cellx1894\cellx3782\cellx5011\cellx6899 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '011}}\cell} {\pard\intbl\qc {}\cell} {\pard\intbl\qc {{\f3 \u936?}}\cell} {\pard\intbl\qc {{\u936?}}\cell} {\pard\intbl\qc {{\f0 \u936?}}\cell} \row} {\trowd\cellx1700\cellx1894\cellx3782\cellx5011\cellx6899 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '012}}\cell} {\pard\intbl\qc {}\cell} {\pard\intbl\qc {{\f3 \u937?}}\cell} {\pard\intbl\qc {{\u937?}}\cell} {\pard\intbl\qc {{\f0 \u937?}}\cell} \row} {\trowd\cellx1700\cellx1894\cellx3782\cellx5011\cellx6899 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '013}}\cell} {\pard\intbl\qc {}\cell} {\pard\intbl\qc {{\f3 \u8593?}}\cell} {\pard\intbl\qc {{\u-1280?}}\cell} {\pard\intbl\qc {{\f0 \u-1280?}}\cell} \row} {\trowd\cellx1700\cellx1894\cellx3782\cellx5011\cellx6899 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '014}}\cell} {\pard\intbl\qc {}\cell} {\pard\intbl\qc {{\f3 \u8595?}}\cell} {\pard\intbl\qc {{\u-1279?}}\cell} {\pard\intbl\qc {{\f0 \u-1279?}}\cell} \row} {\trowd\cellx1700\cellx1894\cellx3782\cellx5011\cellx6899 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '015}}\cell} {\pard\intbl\qc {}\cell} {\pard\intbl\qc {{\f3 \u-1794?}}\cell} {\pard\intbl\qc {{\u-1278?}}\cell} {\pard\intbl\qc {{\f0 \u-1278?}}\cell} \row} {\trowd\cellx1700\cellx1894\cellx3782\cellx5011\cellx6899 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '016}}\cell} {\pard\intbl\qc {}\cell} {\pard\intbl\qc {{\f3 \u161?}}\cell} {\pard\intbl\qc {{\u-1277?}}\cell} {\pard\intbl\qc {{\f0 \u-1277?}}\cell} \row} {\trowd\cellx1700\cellx1894\cellx3782\cellx5011\cellx6899 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '017}}\cell} {\pard\intbl\qc {}\cell} {\pard\intbl\qc {{\f3 \u191?}}\cell} {\pard\intbl\qc {{\u-1276?}}\cell} {\pard\intbl\qc {{\f0 \u-1276?}}\cell} \row} {\trowd\cellx1700\cellx1894\cellx3782\cellx5011\cellx6899 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '020}}\cell} {\pard\intbl\qc {}\cell} {\pard\intbl\qc {{\f3 \u305?}}\cell} {\pard\intbl\qc {{\u305?}}\cell} {\pard\intbl\qc {{\f0 \u305?}}\cell} \row} {\trowd\cellx1700\cellx1894\cellx3782\cellx5011\cellx6899 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '021}}\cell} {\pard\intbl\qc {}\cell} {\pard\intbl\qc {{\f3 \u-1793?}}\cell} {\pard\intbl\qc {{\u-1793?}}\cell} {\pard\intbl\qc {{\f0 \u-1793?}}\cell} \row} {\trowd\cellx1700\cellx1894\cellx3782\cellx5011\cellx6899 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '022}}\cell} {\pard\intbl\qc {}\cell} {\pard\intbl\qc {{\f3 \u768?}}\cell} {\pard\intbl\qc {{\u768?}}\cell} {\pard\intbl\qc {{\f0 \u768?}}\cell} \row} {\trowd\cellx1700\cellx1894\cellx3782\cellx5011\cellx6899 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '023}}\cell} {\pard\intbl\qc {}\cell} {\pard\intbl\qc {{\f3 \u769?}}\cell} {\pard\intbl\qc {{\u769?}}\cell} {\pard\intbl\qc {{\f0 \u769?}}\cell} \row} {\trowd\cellx1700\cellx1894\cellx3782\cellx5011\cellx6899 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '024}}\cell} {\pard\intbl\qc {}\cell} {\pard\intbl\qc {{\f3 \u780?}}\cell} {\pard\intbl\qc {{\u780?}}\cell} {\pard\intbl\qc {{\f0 \u780?}}\cell} \row} {\trowd\cellx1700\cellx1894\cellx3782\cellx5011\cellx6899 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '025}}\cell} {\pard\intbl\qc {}\cell} {\pard\intbl\qc {{\f3 \u774?}}\cell} {\pard\intbl\qc {{\u774?}}\cell} {\pard\intbl\qc {{\f0 \u774?}}\cell} \row} {\trowd\cellx1700\cellx1894\cellx3782\cellx5011\cellx6899 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '026}}\cell} {\pard\intbl\qc {}\cell} {\pard\intbl\qc {{\f3 \u773?}}\cell} {\pard\intbl\qc {{\u773?}}\cell} {\pard\intbl\qc {{\f0 \u773?}}\cell} \row} {\trowd\cellx1700\cellx1894\cellx3782\cellx5011\cellx6899 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '027}}\cell} {\pard\intbl\qc {}\cell} {\pard\intbl\qc {{\f3 \u778?}}\cell} {\pard\intbl\qc {{\u778?}}\cell} {\pard\intbl\qc {{\f0 \u778?}}\cell} \row} {\trowd\cellx1700\cellx1894\cellx3782\cellx5011\cellx6899 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '030}}\cell} {\pard\intbl\qc {}\cell} {\pard\intbl\qc {{\f3 \u807?}}\cell} {\pard\intbl\qc {{\u807?}}\cell} {\pard\intbl\qc {{\f0 \u807?}}\cell} \row} {\trowd\cellx1700\cellx1894\cellx3782\cellx5011\cellx6899 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '031}}\cell} {\pard\intbl\qc {}\cell} {\pard\intbl\qc {{\f3 \u223?}}\cell} {\pard\intbl\qc {{\u223?}}\cell} {\pard\intbl\qc {{\f0 \u223?}}\cell} \row} {\trowd\cellx1700\cellx1894\cellx3782\cellx5011\cellx6899 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '032}}\cell} {\pard\intbl\qc {}\cell} {\pard\intbl\qc {{\f3 \u230?}}\cell} {\pard\intbl\qc {{\u230?}}\cell} {\pard\intbl\qc {{\f0 \u230?}}\cell} \row} {\trowd\cellx1700\cellx1894\cellx3782\cellx5011\cellx6899 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '033}}\cell} {\pard\intbl\qc {}\cell} {\pard\intbl\qc {{\f3 \u339?}}\cell} {\pard\intbl\qc {{\u339?}}\cell} {\pard\intbl\qc {{\f0 \u339?}}\cell} \row} {\trowd\cellx1700\cellx1894\cellx3782\cellx5011\cellx6899 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '034}}\cell} {\pard\intbl\qc {}\cell} {\pard\intbl\qc {{\f3 \u248?}}\cell} {\pard\intbl\qc {{\u248?}}\cell} {\pard\intbl\qc {{\f0 \u248?}}\cell} \row} {\trowd\cellx1700\cellx1894\cellx3782\cellx5011\cellx6899 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '035}}\cell} {\pard\intbl\qc {}\cell} {\pard\intbl\qc {{\f3 \u198?}}\cell} {\pard\intbl\qc {{\u198?}}\cell} {\pard\intbl\qc {{\f0 \u198?}}\cell} \row} {\trowd\cellx1700\cellx1894\cellx3782\cellx5011\cellx6899 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '036}}\cell} {\pard\intbl\qc {}\cell} {\pard\intbl\qc {{\f3 \u338?}}\cell} {\pard\intbl\qc {{\u338?}}\cell} {\pard\intbl\qc {{\f0 \u338?}}\cell} \row} {\trowd\cellx1700\cellx1894\cellx3782\cellx5011\cellx6899 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '037}}\cell} {\pard\intbl\qc {}\cell} {\pard\intbl\qc {{\f3 \u216?}}\cell} {\pard\intbl\qc {{\u216?}}\cell} {\pard\intbl\qc {{\f0 \u216?}}\cell} \row} } {\par {\trowd\cellx1676\cellx1961\cellx3823\cellx5036\cellx6898 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '040}}\cell} {\pard\intbl\qc {}\cell} {\pard\intbl\qc {{\f3 \u9250?}}\cell} {\pard\intbl\qc {{\u823?}}\cell} {\pard\intbl\qc {{\f0 \u823?}}\cell} \row} {\trowd\cellx1676\cellx1961\cellx3823\cellx5036\cellx6898 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '041}}\cell} {\pard\intbl\qc {!}\cell} {\pard\intbl\qc {{\f3 \u33?}}\cell} {\pard\intbl\qc {{\u33?}}\cell} {\pard\intbl\qc {{\f0 \u33?}}\cell} \row} {\trowd\cellx1676\cellx1961\cellx3823\cellx5036\cellx6898 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '042}}\cell} {\pard\intbl\qc {"}\cell} {\pard\intbl\qc {{\f3 \u34?}}\cell} {\pard\intbl\qc {{\u8208?}}\cell} {\pard\intbl\qc {{\f0 \u8208?}}\cell} \row} {\trowd\cellx1676\cellx1961\cellx3823\cellx5036\cellx6898 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '043}}\cell} {\pard\intbl\qc {#}\cell} {\pard\intbl\qc {{\f3 \u35?}}\cell} {\pard\intbl\qc {{\u35?}}\cell} {\pard\intbl\qc {{\f0 \u35?}}\cell} \row} {\trowd\cellx1676\cellx1961\cellx3823\cellx5036\cellx6898 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '044}}\cell} {\pard\intbl\qc {$}\cell} {\pard\intbl\qc {{\f3 \u36?}}\cell} {\pard\intbl\qc {{\u36?}}\cell} {\pard\intbl\qc {{\f0 \u36?}}\cell} \row} {\trowd\cellx1676\cellx1961\cellx3823\cellx5036\cellx6898 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '045}}\cell} {\pard\intbl\qc {%}\cell} {\pard\intbl\qc {{\f3 \u37?}}\cell} {\pard\intbl\qc {{\u37?}}\cell} {\pard\intbl\qc {{\f0 \u37?}}\cell} \row} {\trowd\cellx1676\cellx1961\cellx3823\cellx5036\cellx6898 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '046}}\cell} {\pard\intbl\qc {&}\cell} {\pard\intbl\qc {{\f3 \u38?}}\cell} {\pard\intbl\qc {{\u38?}}\cell} {\pard\intbl\qc {{\f0 \u38?}}\cell} \row} {\trowd\cellx1676\cellx1961\cellx3823\cellx5036\cellx6898 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '047}}\cell} {\pard\intbl\qc {\rquote }\cell} {\pard\intbl\qc {{\f3 \u39?}}\cell} {\pard\intbl\qc {{\u39?}}\cell} {\pard\intbl\qc {{\f0 \u39?}}\cell} \row} {\trowd\cellx1676\cellx1961\cellx3823\cellx5036\cellx6898 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '050}}\cell} {\pard\intbl\qc {(}\cell} {\pard\intbl\qc {{\f3 \u40?}}\cell} {\pard\intbl\qc {{\u40?}}\cell} {\pard\intbl\qc {{\f0 \u40?}}\cell} \row} {\trowd\cellx1676\cellx1961\cellx3823\cellx5036\cellx6898 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '051}}\cell} {\pard\intbl\qc {)}\cell} {\pard\intbl\qc {{\f3 \u41?}}\cell} {\pard\intbl\qc {{\u41?}}\cell} {\pard\intbl\qc {{\f0 \u41?}}\cell} \row} {\trowd\cellx1676\cellx1961\cellx3823\cellx5036\cellx6898 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '052}}\cell} {\pard\intbl\qc {*}\cell} {\pard\intbl\qc {{\f3 \u42?}}\cell} {\pard\intbl\qc {{\u42?}}\cell} {\pard\intbl\qc {{\f0 \u42?}}\cell} \row} {\trowd\cellx1676\cellx1961\cellx3823\cellx5036\cellx6898 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '053}}\cell} {\pard\intbl\qc {+}\cell} {\pard\intbl\qc {{\f3 \u43?}}\cell} {\pard\intbl\qc {{\u43?}}\cell} {\pard\intbl\qc {{\f0 \u43?}}\cell} \row} {\trowd\cellx1676\cellx1961\cellx3823\cellx5036\cellx6898 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '054}}\cell} {\pard\intbl\qc {,}\cell} {\pard\intbl\qc {{\f3 \u44?}}\cell} {\pard\intbl\qc {{\u44?}}\cell} {\pard\intbl\qc {{\f0 \u44?}}\cell} \row} {\trowd\cellx1676\cellx1961\cellx3823\cellx5036\cellx6898 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '055}}\cell} {\pard\intbl\qc {-}\cell} {\pard\intbl\qc {{\f3 \u45?}}\cell} {\pard\intbl\qc {{\u45?}}\cell} {\pard\intbl\qc {{\f0 \u45?}}\cell} \row} {\trowd\cellx1676\cellx1961\cellx3823\cellx5036\cellx6898 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '056}}\cell} {\pard\intbl\qc {.}\cell} {\pard\intbl\qc {{\f3 \u46?}}\cell} {\pard\intbl\qc {{\u46?}}\cell} {\pard\intbl\qc {{\f0 \u46?}}\cell} \row} {\trowd\cellx1676\cellx1961\cellx3823\cellx5036\cellx6898 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '057}}\cell} {\pard\intbl\qc {/}\cell} {\pard\intbl\qc {{\f3 \u47?}}\cell} {\pard\intbl\qc {{\u47?}}\cell} {\pard\intbl\qc {{\f0 \u47?}}\cell} \row} {\trowd\cellx1676\cellx1961\cellx3823\cellx5036\cellx6898 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '060}}\cell} {\pard\intbl\qc {0}\cell} {\pard\intbl\qc {{\f3 \u48?}}\cell} {\pard\intbl\qc {{\u48?}}\cell} {\pard\intbl\qc {{\f0 \u48?}}\cell} \row} {\trowd\cellx1676\cellx1961\cellx3823\cellx5036\cellx6898 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '061}}\cell} {\pard\intbl\qc {1}\cell} {\pard\intbl\qc {{\f3 \u49?}}\cell} {\pard\intbl\qc {{\u49?}}\cell} {\pard\intbl\qc {{\f0 \u49?}}\cell} \row} {\trowd\cellx1676\cellx1961\cellx3823\cellx5036\cellx6898 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '062}}\cell} {\pard\intbl\qc {2}\cell} {\pard\intbl\qc {{\f3 \u50?}}\cell} {\pard\intbl\qc {{\u50?}}\cell} {\pard\intbl\qc {{\f0 \u50?}}\cell} \row} {\trowd\cellx1676\cellx1961\cellx3823\cellx5036\cellx6898 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '063}}\cell} {\pard\intbl\qc {3}\cell} {\pard\intbl\qc {{\f3 \u51?}}\cell} {\pard\intbl\qc {{\u51?}}\cell} {\pard\intbl\qc {{\f0 \u51?}}\cell} \row} {\trowd\cellx1676\cellx1961\cellx3823\cellx5036\cellx6898 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '064}}\cell} {\pard\intbl\qc {4}\cell} {\pard\intbl\qc {{\f3 \u52?}}\cell} {\pard\intbl\qc {{\u52?}}\cell} {\pard\intbl\qc {{\f0 \u52?}}\cell} \row} {\trowd\cellx1676\cellx1961\cellx3823\cellx5036\cellx6898 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '065}}\cell} {\pard\intbl\qc {5}\cell} {\pard\intbl\qc {{\f3 \u53?}}\cell} {\pard\intbl\qc {{\u53?}}\cell} {\pard\intbl\qc {{\f0 \u53?}}\cell} \row} {\trowd\cellx1676\cellx1961\cellx3823\cellx5036\cellx6898 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '066}}\cell} {\pard\intbl\qc {6}\cell} {\pard\intbl\qc {{\f3 \u54?}}\cell} {\pard\intbl\qc {{\u54?}}\cell} {\pard\intbl\qc {{\f0 \u54?}}\cell} \row} {\trowd\cellx1676\cellx1961\cellx3823\cellx5036\cellx6898 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '067}}\cell} {\pard\intbl\qc {7}\cell} {\pard\intbl\qc {{\f3 \u55?}}\cell} {\pard\intbl\qc {{\u55?}}\cell} {\pard\intbl\qc {{\f0 \u55?}}\cell} \row} {\trowd\cellx1676\cellx1961\cellx3823\cellx5036\cellx6898 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '070}}\cell} {\pard\intbl\qc {8}\cell} {\pard\intbl\qc {{\f3 \u56?}}\cell} {\pard\intbl\qc {{\u56?}}\cell} {\pard\intbl\qc {{\f0 \u56?}}\cell} \row} {\trowd\cellx1676\cellx1961\cellx3823\cellx5036\cellx6898 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '071}}\cell} {\pard\intbl\qc {9}\cell} {\pard\intbl\qc {{\f3 \u57?}}\cell} {\pard\intbl\qc {{\u57?}}\cell} {\pard\intbl\qc {{\f0 \u57?}}\cell} \row} {\trowd\cellx1676\cellx1961\cellx3823\cellx5036\cellx6898 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '072}}\cell} {\pard\intbl\qc {:}\cell} {\pard\intbl\qc {{\f3 \u58?}}\cell} {\pard\intbl\qc {{\u58?}}\cell} {\pard\intbl\qc {{\f0 \u58?}}\cell} \row} {\trowd\cellx1676\cellx1961\cellx3823\cellx5036\cellx6898 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '073}}\cell} {\pard\intbl\qc {;}\cell} {\pard\intbl\qc {{\f3 \u59?}}\cell} {\pard\intbl\qc {{\u59?}}\cell} {\pard\intbl\qc {{\f0 \u59?}}\cell} \row} {\trowd\cellx1676\cellx1961\cellx3823\cellx5036\cellx6898 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '074}}\cell} {\pard\intbl\qc {<}\cell} {\pard\intbl\qc {{\f3 \u60?}}\cell} {\pard\intbl\qc {{\u161?}}\cell} {\pard\intbl\qc {{\f0 \u161?}}\cell} \row} {\trowd\cellx1676\cellx1961\cellx3823\cellx5036\cellx6898 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '075}}\cell} {\pard\intbl\qc {=}\cell} {\pard\intbl\qc {{\f3 \u61?}}\cell} {\pard\intbl\qc {{\u61?}}\cell} {\pard\intbl\qc {{\f0 \u61?}}\cell} \row} {\trowd\cellx1676\cellx1961\cellx3823\cellx5036\cellx6898 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '076}}\cell} {\pard\intbl\qc {>}\cell} {\pard\intbl\qc {{\f3 \u62?}}\cell} {\pard\intbl\qc {{\u191?}}\cell} {\pard\intbl\qc {{\f0 \u191?}}\cell} \row} {\trowd\cellx1676\cellx1961\cellx3823\cellx5036\cellx6898 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '077}}\cell} {\pard\intbl\qc {?}\cell} {\pard\intbl\qc {{\f3 \u63?}}\cell} {\pard\intbl\qc {{\u63?}}\cell} {\pard\intbl\qc {{\f0 \u63?}}\cell} \row} } {\par {\trowd\cellx1365\cellx2878\cellx4391\cellx5384\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '100}}\cell} {\pard\intbl\qc {@}\cell} {\pard\intbl\qc {{\f3 \u64?}}\cell} {\pard\intbl\qc {{\u64?}}\cell} {\pard\intbl\qc {{\f0 \u64?}}\cell} \row} {\trowd\cellx1365\cellx2878\cellx4391\cellx5384\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '101}}\cell} {\pard\intbl\qc {A}\cell} {\pard\intbl\qc {{\f3 \u65?}}\cell} {\pard\intbl\qc {{\u65?}}\cell} {\pard\intbl\qc {{\f0 \u65?}}\cell} \row} {\trowd\cellx1365\cellx2878\cellx4391\cellx5384\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '102}}\cell} {\pard\intbl\qc {B}\cell} {\pard\intbl\qc {{\f3 \u66?}}\cell} {\pard\intbl\qc {{\u66?}}\cell} {\pard\intbl\qc {{\f0 \u66?}}\cell} \row} {\trowd\cellx1365\cellx2878\cellx4391\cellx5384\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '103}}\cell} {\pard\intbl\qc {C}\cell} {\pard\intbl\qc {{\f3 \u67?}}\cell} {\pard\intbl\qc {{\u67?}}\cell} {\pard\intbl\qc {{\f0 \u67?}}\cell} \row} {\trowd\cellx1365\cellx2878\cellx4391\cellx5384\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '104}}\cell} {\pard\intbl\qc {D}\cell} {\pard\intbl\qc {{\f3 \u68?}}\cell} {\pard\intbl\qc {{\u68?}}\cell} {\pard\intbl\qc {{\f0 \u68?}}\cell} \row} {\trowd\cellx1365\cellx2878\cellx4391\cellx5384\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '105}}\cell} {\pard\intbl\qc {E}\cell} {\pard\intbl\qc {{\f3 \u69?}}\cell} {\pard\intbl\qc {{\u69?}}\cell} {\pard\intbl\qc {{\f0 \u69?}}\cell} \row} {\trowd\cellx1365\cellx2878\cellx4391\cellx5384\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '106}}\cell} {\pard\intbl\qc {F}\cell} {\pard\intbl\qc {{\f3 \u70?}}\cell} {\pard\intbl\qc {{\u70?}}\cell} {\pard\intbl\qc {{\f0 \u70?}}\cell} \row} {\trowd\cellx1365\cellx2878\cellx4391\cellx5384\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '107}}\cell} {\pard\intbl\qc {G}\cell} {\pard\intbl\qc {{\f3 \u71?}}\cell} {\pard\intbl\qc {{\u71?}}\cell} {\pard\intbl\qc {{\f0 \u71?}}\cell} \row} {\trowd\cellx1365\cellx2878\cellx4391\cellx5384\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '110}}\cell} {\pard\intbl\qc {H}\cell} {\pard\intbl\qc {{\f3 \u72?}}\cell} {\pard\intbl\qc {{\u72?}}\cell} {\pard\intbl\qc {{\f0 \u72?}}\cell} \row} {\trowd\cellx1365\cellx2878\cellx4391\cellx5384\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '111}}\cell} {\pard\intbl\qc {I}\cell} {\pard\intbl\qc {{\f3 \u73?}}\cell} {\pard\intbl\qc {{\u73?}}\cell} {\pard\intbl\qc {{\f0 \u73?}}\cell} \row} {\trowd\cellx1365\cellx2878\cellx4391\cellx5384\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '112}}\cell} {\pard\intbl\qc {J}\cell} {\pard\intbl\qc {{\f3 \u74?}}\cell} {\pard\intbl\qc {{\u74?}}\cell} {\pard\intbl\qc {{\f0 \u74?}}\cell} \row} {\trowd\cellx1365\cellx2878\cellx4391\cellx5384\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '113}}\cell} {\pard\intbl\qc {K}\cell} {\pard\intbl\qc {{\f3 \u75?}}\cell} {\pard\intbl\qc {{\u75?}}\cell} {\pard\intbl\qc {{\f0 \u75?}}\cell} \row} {\trowd\cellx1365\cellx2878\cellx4391\cellx5384\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '114}}\cell} {\pard\intbl\qc {L}\cell} {\pard\intbl\qc {{\f3 \u76?}}\cell} {\pard\intbl\qc {{\u76?}}\cell} {\pard\intbl\qc {{\f0 \u76?}}\cell} \row} {\trowd\cellx1365\cellx2878\cellx4391\cellx5384\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '115}}\cell} {\pard\intbl\qc {M}\cell} {\pard\intbl\qc {{\f3 \u77?}}\cell} {\pard\intbl\qc {{\u77?}}\cell} {\pard\intbl\qc {{\f0 \u77?}}\cell} \row} {\trowd\cellx1365\cellx2878\cellx4391\cellx5384\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '116}}\cell} {\pard\intbl\qc {N}\cell} {\pard\intbl\qc {{\f3 \u78?}}\cell} {\pard\intbl\qc {{\u78?}}\cell} {\pard\intbl\qc {{\f0 \u78?}}\cell} \row} {\trowd\cellx1365\cellx2878\cellx4391\cellx5384\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '117}}\cell} {\pard\intbl\qc {O}\cell} {\pard\intbl\qc {{\f3 \u79?}}\cell} {\pard\intbl\qc {{\u79?}}\cell} {\pard\intbl\qc {{\f0 \u79?}}\cell} \row} {\trowd\cellx1365\cellx2878\cellx4391\cellx5384\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '120}}\cell} {\pard\intbl\qc {P}\cell} {\pard\intbl\qc {{\f3 \u80?}}\cell} {\pard\intbl\qc {{\u80?}}\cell} {\pard\intbl\qc {{\f0 \u80?}}\cell} \row} {\trowd\cellx1365\cellx2878\cellx4391\cellx5384\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '121}}\cell} {\pard\intbl\qc {Q}\cell} {\pard\intbl\qc {{\f3 \u81?}}\cell} {\pard\intbl\qc {{\u81?}}\cell} {\pard\intbl\qc {{\f0 \u81?}}\cell} \row} {\trowd\cellx1365\cellx2878\cellx4391\cellx5384\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '122}}\cell} {\pard\intbl\qc {R}\cell} {\pard\intbl\qc {{\f3 \u82?}}\cell} {\pard\intbl\qc {{\u82?}}\cell} {\pard\intbl\qc {{\f0 \u82?}}\cell} \row} {\trowd\cellx1365\cellx2878\cellx4391\cellx5384\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '123}}\cell} {\pard\intbl\qc {S}\cell} {\pard\intbl\qc {{\f3 \u83?}}\cell} {\pard\intbl\qc {{\u83?}}\cell} {\pard\intbl\qc {{\f0 \u83?}}\cell} \row} {\trowd\cellx1365\cellx2878\cellx4391\cellx5384\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '124}}\cell} {\pard\intbl\qc {T}\cell} {\pard\intbl\qc {{\f3 \u84?}}\cell} {\pard\intbl\qc {{\u84?}}\cell} {\pard\intbl\qc {{\f0 \u84?}}\cell} \row} {\trowd\cellx1365\cellx2878\cellx4391\cellx5384\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '125}}\cell} {\pard\intbl\qc {U}\cell} {\pard\intbl\qc {{\f3 \u85?}}\cell} {\pard\intbl\qc {{\u85?}}\cell} {\pard\intbl\qc {{\f0 \u85?}}\cell} \row} {\trowd\cellx1365\cellx2878\cellx4391\cellx5384\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '126}}\cell} {\pard\intbl\qc {V}\cell} {\pard\intbl\qc {{\f3 \u86?}}\cell} {\pard\intbl\qc {{\u86?}}\cell} {\pard\intbl\qc {{\f0 \u86?}}\cell} \row} {\trowd\cellx1365\cellx2878\cellx4391\cellx5384\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '127}}\cell} {\pard\intbl\qc {W}\cell} {\pard\intbl\qc {{\f3 \u87?}}\cell} {\pard\intbl\qc {{\u87?}}\cell} {\pard\intbl\qc {{\f0 \u87?}}\cell} \row} {\trowd\cellx1365\cellx2878\cellx4391\cellx5384\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '130}}\cell} {\pard\intbl\qc {X}\cell} {\pard\intbl\qc {{\f3 \u88?}}\cell} {\pard\intbl\qc {{\u88?}}\cell} {\pard\intbl\qc {{\f0 \u88?}}\cell} \row} {\trowd\cellx1365\cellx2878\cellx4391\cellx5384\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '131}}\cell} {\pard\intbl\qc {Y}\cell} {\pard\intbl\qc {{\f3 \u89?}}\cell} {\pard\intbl\qc {{\u89?}}\cell} {\pard\intbl\qc {{\f0 \u89?}}\cell} \row} {\trowd\cellx1365\cellx2878\cellx4391\cellx5384\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '132}}\cell} {\pard\intbl\qc {Z}\cell} {\pard\intbl\qc {{\f3 \u90?}}\cell} {\pard\intbl\qc {{\u90?}}\cell} {\pard\intbl\qc {{\f0 \u90?}}\cell} \row} {\trowd\cellx1365\cellx2878\cellx4391\cellx5384\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '133}}\cell} {\pard\intbl\qc {[}\cell} {\pard\intbl\qc {{\f3 \u91?}}\cell} {\pard\intbl\qc {{\u91?}}\cell} {\pard\intbl\qc {{\f0 \u91?}}\cell} \row} {\trowd\cellx1365\cellx2878\cellx4391\cellx5384\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '134}}\cell} {\pard\intbl\qc {{\f3 \u92?}}\cell} {\pard\intbl\qc {{\f3 \u92?}}\cell} {\pard\intbl\qc {{\u8220?}}\cell} {\pard\intbl\qc {{\f0 \u8220?}}\cell} \row} {\trowd\cellx1365\cellx2878\cellx4391\cellx5384\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '135}}\cell} {\pard\intbl\qc {]}\cell} {\pard\intbl\qc {{\f3 \u93?}}\cell} {\pard\intbl\qc {{\u93?}}\cell} {\pard\intbl\qc {{\f0 \u93?}}\cell} \row} {\trowd\cellx1365\cellx2878\cellx4391\cellx5384\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '136}}\cell} {\pard\intbl\qc {\'5e}\cell} {\pard\intbl\qc {{\f3 \u770?}}\cell} {\pard\intbl\qc {{\u770?}}\cell} {\pard\intbl\qc {{\f0 \u770?}}\cell} \row} {\trowd\cellx1365\cellx2878\cellx4391\cellx5384\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '137}}\cell} {\pard\intbl\qc {_{}}\cell} {\pard\intbl\qc {{\f3 \u818?}}\cell} {\pard\intbl\qc {{\u775?}}\cell} {\pard\intbl\qc {{\f0 \u775?}}\cell} \row} } {\par {\trowd\cellx1269\cellx2676\cellx4083\cellx5490\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '140}}\cell} {\pard\intbl\qc {\lquote }\cell} {\pard\intbl\qc {{\f3 \u8216?}}\cell} {\pard\intbl\qc {{\u8216?}}\cell} {\pard\intbl\qc {{\f0 \u8216?}}\cell} \row} {\trowd\cellx1269\cellx2676\cellx4083\cellx5490\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '141}}\cell} {\pard\intbl\qc {a}\cell} {\pard\intbl\qc {{\f3 \u97?}}\cell} {\pard\intbl\qc {{\u97?}}\cell} {\pard\intbl\qc {{\f0 \u97?}}\cell} \row} {\trowd\cellx1269\cellx2676\cellx4083\cellx5490\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '142}}\cell} {\pard\intbl\qc {b}\cell} {\pard\intbl\qc {{\f3 \u98?}}\cell} {\pard\intbl\qc {{\u98?}}\cell} {\pard\intbl\qc {{\f0 \u98?}}\cell} \row} {\trowd\cellx1269\cellx2676\cellx4083\cellx5490\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '143}}\cell} {\pard\intbl\qc {c}\cell} {\pard\intbl\qc {{\f3 \u99?}}\cell} {\pard\intbl\qc {{\u99?}}\cell} {\pard\intbl\qc {{\f0 \u99?}}\cell} \row} {\trowd\cellx1269\cellx2676\cellx4083\cellx5490\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '144}}\cell} {\pard\intbl\qc {d}\cell} {\pard\intbl\qc {{\f3 \u100?}}\cell} {\pard\intbl\qc {{\u100?}}\cell} {\pard\intbl\qc {{\f0 \u100?}}\cell} \row} {\trowd\cellx1269\cellx2676\cellx4083\cellx5490\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '145}}\cell} {\pard\intbl\qc {e}\cell} {\pard\intbl\qc {{\f3 \u101?}}\cell} {\pard\intbl\qc {{\u101?}}\cell} {\pard\intbl\qc {{\f0 \u101?}}\cell} \row} {\trowd\cellx1269\cellx2676\cellx4083\cellx5490\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '146}}\cell} {\pard\intbl\qc {f}\cell} {\pard\intbl\qc {{\f3 \u102?}}\cell} {\pard\intbl\qc {{\u102?}}\cell} {\pard\intbl\qc {{\f0 \u102?}}\cell} \row} {\trowd\cellx1269\cellx2676\cellx4083\cellx5490\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '147}}\cell} {\pard\intbl\qc {g}\cell} {\pard\intbl\qc {{\f3 \u103?}}\cell} {\pard\intbl\qc {{\u103?}}\cell} {\pard\intbl\qc {{\f0 \u103?}}\cell} \row} {\trowd\cellx1269\cellx2676\cellx4083\cellx5490\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '150}}\cell} {\pard\intbl\qc {h}\cell} {\pard\intbl\qc {{\f3 \u104?}}\cell} {\pard\intbl\qc {{\u104?}}\cell} {\pard\intbl\qc {{\f0 \u104?}}\cell} \row} {\trowd\cellx1269\cellx2676\cellx4083\cellx5490\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '151}}\cell} {\pard\intbl\qc {i}\cell} {\pard\intbl\qc {{\f3 \u105?}}\cell} {\pard\intbl\qc {{\u105?}}\cell} {\pard\intbl\qc {{\f0 \u105?}}\cell} \row} {\trowd\cellx1269\cellx2676\cellx4083\cellx5490\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '152}}\cell} {\pard\intbl\qc {j}\cell} {\pard\intbl\qc {{\f3 \u106?}}\cell} {\pard\intbl\qc {{\u106?}}\cell} {\pard\intbl\qc {{\f0 \u106?}}\cell} \row} {\trowd\cellx1269\cellx2676\cellx4083\cellx5490\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '153}}\cell} {\pard\intbl\qc {k}\cell} {\pard\intbl\qc {{\f3 \u107?}}\cell} {\pard\intbl\qc {{\u107?}}\cell} {\pard\intbl\qc {{\f0 \u107?}}\cell} \row} {\trowd\cellx1269\cellx2676\cellx4083\cellx5490\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '154}}\cell} {\pard\intbl\qc {l}\cell} {\pard\intbl\qc {{\f3 \u108?}}\cell} {\pard\intbl\qc {{\u108?}}\cell} {\pard\intbl\qc {{\f0 \u108?}}\cell} \row} {\trowd\cellx1269\cellx2676\cellx4083\cellx5490\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '155}}\cell} {\pard\intbl\qc {m}\cell} {\pard\intbl\qc {{\f3 \u109?}}\cell} {\pard\intbl\qc {{\u109?}}\cell} {\pard\intbl\qc {{\f0 \u109?}}\cell} \row} {\trowd\cellx1269\cellx2676\cellx4083\cellx5490\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '156}}\cell} {\pard\intbl\qc {n}\cell} {\pard\intbl\qc {{\f3 \u110?}}\cell} {\pard\intbl\qc {{\u110?}}\cell} {\pard\intbl\qc {{\f0 \u110?}}\cell} \row} {\trowd\cellx1269\cellx2676\cellx4083\cellx5490\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '157}}\cell} {\pard\intbl\qc {o}\cell} {\pard\intbl\qc {{\f3 \u111?}}\cell} {\pard\intbl\qc {{\u111?}}\cell} {\pard\intbl\qc {{\f0 \u111?}}\cell} \row} {\trowd\cellx1269\cellx2676\cellx4083\cellx5490\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '160}}\cell} {\pard\intbl\qc {p}\cell} {\pard\intbl\qc {{\f3 \u112?}}\cell} {\pard\intbl\qc {{\u112?}}\cell} {\pard\intbl\qc {{\f0 \u112?}}\cell} \row} {\trowd\cellx1269\cellx2676\cellx4083\cellx5490\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '161}}\cell} {\pard\intbl\qc {q}\cell} {\pard\intbl\qc {{\f3 \u113?}}\cell} {\pard\intbl\qc {{\u113?}}\cell} {\pard\intbl\qc {{\f0 \u113?}}\cell} \row} {\trowd\cellx1269\cellx2676\cellx4083\cellx5490\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '162}}\cell} {\pard\intbl\qc {r}\cell} {\pard\intbl\qc {{\f3 \u114?}}\cell} {\pard\intbl\qc {{\u114?}}\cell} {\pard\intbl\qc {{\f0 \u114?}}\cell} \row} {\trowd\cellx1269\cellx2676\cellx4083\cellx5490\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '163}}\cell} {\pard\intbl\qc {s}\cell} {\pard\intbl\qc {{\f3 \u115?}}\cell} {\pard\intbl\qc {{\u115?}}\cell} {\pard\intbl\qc {{\f0 \u115?}}\cell} \row} {\trowd\cellx1269\cellx2676\cellx4083\cellx5490\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '164}}\cell} {\pard\intbl\qc {t}\cell} {\pard\intbl\qc {{\f3 \u116?}}\cell} {\pard\intbl\qc {{\u116?}}\cell} {\pard\intbl\qc {{\f0 \u116?}}\cell} \row} {\trowd\cellx1269\cellx2676\cellx4083\cellx5490\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '165}}\cell} {\pard\intbl\qc {u}\cell} {\pard\intbl\qc {{\f3 \u117?}}\cell} {\pard\intbl\qc {{\u117?}}\cell} {\pard\intbl\qc {{\f0 \u117?}}\cell} \row} {\trowd\cellx1269\cellx2676\cellx4083\cellx5490\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '166}}\cell} {\pard\intbl\qc {v}\cell} {\pard\intbl\qc {{\f3 \u118?}}\cell} {\pard\intbl\qc {{\u118?}}\cell} {\pard\intbl\qc {{\f0 \u118?}}\cell} \row} {\trowd\cellx1269\cellx2676\cellx4083\cellx5490\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '167}}\cell} {\pard\intbl\qc {w}\cell} {\pard\intbl\qc {{\f3 \u119?}}\cell} {\pard\intbl\qc {{\u119?}}\cell} {\pard\intbl\qc {{\f0 \u119?}}\cell} \row} {\trowd\cellx1269\cellx2676\cellx4083\cellx5490\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '170}}\cell} {\pard\intbl\qc {x}\cell} {\pard\intbl\qc {{\f3 \u120?}}\cell} {\pard\intbl\qc {{\u120?}}\cell} {\pard\intbl\qc {{\f0 \u120?}}\cell} \row} {\trowd\cellx1269\cellx2676\cellx4083\cellx5490\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '171}}\cell} {\pard\intbl\qc {y}\cell} {\pard\intbl\qc {{\f3 \u121?}}\cell} {\pard\intbl\qc {{\u121?}}\cell} {\pard\intbl\qc {{\f0 \u121?}}\cell} \row} {\trowd\cellx1269\cellx2676\cellx4083\cellx5490\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '172}}\cell} {\pard\intbl\qc {z}\cell} {\pard\intbl\qc {{\f3 \u122?}}\cell} {\pard\intbl\qc {{\u122?}}\cell} {\pard\intbl\qc {{\f0 \u122?}}\cell} \row} {\trowd\cellx1269\cellx2676\cellx4083\cellx5490\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '173}}\cell} {\pard\intbl\qc {\{}\cell} {\pard\intbl\qc {{\f3 \u123?}}\cell} {\pard\intbl\qc {{\u8211?}}\cell} {\pard\intbl\qc {{\f0 \u8211?}}\cell} \row} {\trowd\cellx1269\cellx2676\cellx4083\cellx5490\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '174}}\cell} {\pard\intbl\qc {\emdash }\cell} {\pard\intbl\qc {{\f3 \u124?}}\cell} {\pard\intbl\qc {{\u8212?}}\cell} {\pard\intbl\qc {{\f0 \u8212?}}\cell} \row} {\trowd\cellx1269\cellx2676\cellx4083\cellx5490\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '175}}\cell} {\pard\intbl\qc {\}}\cell} {\pard\intbl\qc {{\f3 \u125?}}\cell} {\pard\intbl\qc {{\u779?}}\cell} {\pard\intbl\qc {{\f0 \u779?}}\cell} \row} {\trowd\cellx1269\cellx2676\cellx4083\cellx5490\cellx6897 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '176}}\cell} {\pard\intbl\qc {\'7e}\cell} {\pard\intbl\qc {{\f3 \u771?}}\cell} {\pard\intbl\qc {{\u771?}}\cell} {\pard\intbl\qc {{\f0 \u771?}}\cell} \row} {\trowd\cellx1269\cellx2676\cellx4083\cellx5490 {\pard\intbl\qc {{\b0\i0\scaps0\f3 \\char '177}}\cell} {\pard\intbl\qc {{\f3 \u776?}}\cell} {\pard\intbl\qc {{\u776?}}\cell} {\pard\intbl\qc {{\f0 \u776?}}\cell} \row} } \par }}} }}}latex2rtf-2.3.18/test/misc2.tex0000777000175000017500000003122413050672360016445 0ustar wilfriedwilfried\documentclass{article} \usepackage{amsmath} \begin{document} \subsection{Acoustic Wave Equation} The equation of acoustic wave motion for a fluid, that in the absence of sound, has uniform density $\rho$, pressure $P$, and temperature $T$ and is everywhere at rest will be derived in this section. We assume that the medium is non-viscous and has zero heat conductivity. $$ \nabla^2p-\frac{1}{c^2} {\partial^2 p \over \partial t^2} = 0 \label{eqn:lineareuler} $$ where $c$ is the phase velocity and is given by the relation $c= \sqrt{\beta/\rho_0}$, where $\beta$ is the bulk modulus. \subsection{Derivation of the Acoustic Wave Equation} Let\footnote{This follows the derivation in Landau and Lifshitz, \textit{Fluid Mechanics}.} the pressure $p$ and the density $\rho$ be expressed as small changes from a constant pressure $p_0$ and density $\rho_0$ $$ p = p_0 + p', \qquad \rho = \rho_0 + \rho' $$ where $p'$ ane $\rho'$ are the variations and $p'\ll p_0$, $\rho'\ll\rho_0$. Substituting these expressions into the equation of continuity $$ {\partial \rho\over\partial t} + \nabla(\rho \mathbf{v}) = 0, $$ Start a new paragraph just to test indentation. So that one obtains $$ {\partial \rho'\over\partial t} + \rho_0\nabla(\mathbf{v}) + \nabla(\rho'\mathbf{v}) = 0, $$ since $\rho'$, $p'$ and $\mathbf{v}$ are all of first order, the last term can be neglected to get $$ {\partial \rho'\over\partial t} + \rho_0\nabla(\mathbf{v}) = 0, $$ This is the first equation. Euler's equation is $$ {\partial\mathbf{v}\over\partial t} + (\mathbf{v} \cdot \nabla)\mathbf{v} = -{1\over\rho} \nabla p $$ when one substitutes for the density and pressure $$ {\partial\mathbf{v}\over\partial t} + (\mathbf{v} \cdot \nabla)\mathbf{v} = -{1\over\rho_0} \nabla p' $$ and using the fact that $\rho_0\gg\rho'$. Keeping only terms of first order simplifies this equation to $$ {\partial\mathbf{v}\over\partial t} + {1\over\rho_0} \nabla p'=0 $$ This is the second equation. The third equation comes from the fact that a sound wave in an ideal fluid is adiabatic. This means that the propagation does not change the entropy of the system. Thus $$ p' = \left({\partial p \over \partial \rho_0}\right)_s \rho' $$ where the $s$ denotes constant entropy. Substituting into the continuity equation yields $$ {\partial p'\over\partial t} + \rho_0\left({\partial p\over \partial \rho_0}\right)_s\nabla\mathbf{v} = 0, $$ To combine the two equations into one, then introduce a velocity potential $\psi$, which is related to the pressure by $$ p' = -\rho {\partial \psi\over\partial t} $$ The velocity potential is related to the velocity by $$ \mathbf{v}(\mathbf{r},t)=\nabla \psi(\mathbf{r},t) $$ so we obtain $$ -\rho {\partial^2 \psi\over\partial^2 t} + \rho_0\left({\partial p\over \partial \rho_0}\right)_s\nabla^2 \psi = 0, $$ Now if we define the thermal compressiblity $$ \beta = \left({\partial p\over \partial \rho_0}\right)_s $$ then $$ {\partial^2 \psi\over\partial^2 t} = {\rho_0\over \beta} \nabla^2 \psi = 0, $$ The speed of sound is $c=\sqrt{\beta/\rho_0}$. \subsection{Velocity Potential} Since the curl of a gradient vanishes, equation~\ref{eqn:lineareuler} shows that the particle velocity is irrotational, so that it can be expressed as the gradient of a scalar function, $\mathbf{v}=\nabla \phi$, where $\phi$ is the velocity potential. Substituting the velocity potential into the Euler equation, ~\ref{eqn:lineareuler}, shows that the time derivative of the velocity potential is related to the acoustic pressure by the density $$ p=-\rho_0 {\partial \phi\over \partial t} $$ Thus, the velocity potential is also a solution to the wave equation. The velocity potential can be interpreted physically as the absence or shear, turbulence, or rotational flow, since the particle velocity is the gradient of the velocity potential, and thus its curl must vanish. This is true only with the idealized derivation shown here, though this linear model does extremely well for acoustic propagation for non--shock waves. The velocity potential is useful in photoacoustics in that it can be easily obtained by integrating the pressure over time, giving a positive waveform that can be used, for example, in backprojection image reconstruction.\footnote{Viator's thesis} \subsection{Stress Confinement} The acoustic characteristic time is $$ t_c = d/c $$ where $d$ is the characteristic distance in the problem and $c$ is the speed of sound. The characteristic distance is typically the smallest dimension of interest in the problem. For example, a sphere with radius $r$ in an unbounded medium will have $d=2r$. However, if that same sphere is irradiated with light and the absorption coefficient for the sphere is sufficiently high $1/\mu_a\gg r$ then the light will be deposited as thin cap on the sphere. In this case the characteristic dimension is the thickness of that cap and so $d = 1/\mu_a$. Of course, if the absorption coefficient is lower $r < 1/\mu_a$ then the characteristic dimension becomes the radius once again. It is also convenient to define a dimensionless laser pulse duration in terms of the characteristic time as $$ \tau_p = t_p/t_c $$ \subsection{General Solution of the Acoustic Wave Equation} Since in soft tissues the optical contrast, which determines the optoacoustic sources, is generally much higher than the small variations of acoustic impedance, an acoustically homogeneous medium is assumed. The propagation of acoustic waves is based on the linear wave equation $$ \nabla^2 P(\mathbf{r},t) - {1\over c^2} {\partial^2 P(\mathbf{r},t) \over \partial t^2} = 0 $$ where $P$ denotes the pressure and $c$ the speed of sound in the medium. This equation must be supplied with apropriate boundary conditions, which we will neglect for the moment. For pulsed optoacoustic wave generation and for finite element formulations it is, however, more appropriate to work with the acoustic velocity potential $\psi$ and not with directly with the acoustic pressure $P$. These quantities and the particle velocity $\mathbf{v}$ in the acoustic medium are related by $$ P = \rho {\partial \psi(\mathbf{r},t)\over\partial t} \qquad \mathrm{and}\qquad \mathbf{v}(\mathbf{r},t)=\nabla \psi(\mathbf{r},t) $$ where $\rho$ is the density. It is easily observed, that in the linear case the acoustic velocity potential satisfies the same equation as the acoustic pressure $$ \nabla^2\psi(\mathbf{r},t) - {1\over c^2} {\partial^2 \psi(\mathbf{r},t) \over \partial t^2} = 0 $$ When there is a acoustic source then the equation becomes $$ \nabla^2\psi(\mathbf{r},t) - {1\over c^2} {\partial^2 \psi(\mathbf{r},t) \over \partial t^2} = {\beta\over \rho c_p} S(\mathbf{r},t) $$ where $c_p$ is the specific heat capacity at constant pressure, $\beta$ is the thermal expansion coefficient, and $S(\mathbf{r},t)$ is the heat generated per unit volume and time. A further assumption is that heating is instantaneous and is described by a delta function at time $t = 0$. It is advantageous to use the solution for the velocity potential, which is related to the acoustic pressure by $$ P(\mathbf{r},t)= - \rho {\partial \psi(\mathbf{r},t)\over \partial t} $$ where $\psi$ is the velocity potential, $\rho$ the density and $P$ the acoustic pressure. A solution based on a retarded Green's function is given by the integral. $$ \psi (\mathbf{r}_i ,t)=-{\beta \over 4\pi\rho c_p } {1\over t} \iint\limits_{\left| \mathbf{r}'-\mathbf{r}_i \right| =c t} W(r')\,dS $$ where $W$ the volumetric energy density caused by absorption of the laser pulse. The positions $\mathbf{r}'$ and $\mathbf{r}_i$ are points in the source volume and the position of the i$^{th}$ detector in the array, respectively. The surface element $dS$ allows integration over the surface of a sphere with radius $c t$ from the detector point. A solution for a laser pulse with finite duration is obtained by convolving $\psi$ with the temporal pulse profile $g(t)$. $$ \psi (t)=\psi_\delta (t) \otimes g(t) $$ The symbol $\otimes$ denotes convolution and $\psi_\delta$ is the solution of Eq. (2). A Gaussian function with a $1/e$ width corresponding to the pulse duration is a convenient representation for $g(t)$ $$ g(t)=e^{-(2t/t_p )^2} $$ To calculate the velocity potential for an arbitrary energy distribution $W$, a finite sum over small sources distributed over a grid with spacings $\Delta x$, $\Delta y$, and $\Delta z$ replaced the integral in Eq.(2). To avoid discretization noise, these sources had to overlap. A method to create overlapping sources is to first assume point sources and to perform the summation. The noisy result of this summation is convolved with a Gaussian function (using Eq.3) that has a $1/e$ duration equal to the average propagation time of the acoustic wave through a volume element $$ t_{prop} ={\Delta x+\Delta y+\Delta z \over 3 c} $$ Ideally, this time should be identical to the laser pulse duration. Due to computer storage limitations we had to choose a larger voxel size and $t_{prop}$ replaced $t_p$ in Eq. (3). For the sake of simplicity, the operation described in (3) that transforms information about the absorbed energy distribution W into velocity potential signals $\psi$ is symbolically written as $$ \psi =A W $$ where $A$ denotes the optoacoustic ``transform''. For the back projection first a quantity $s_i(t)$ is derived from Eq.(2) that is given by the surface integral of $W$ over a sphere around the i$^{th}$ detector, $$ s_i (t)\equiv \iint\limits_{\left| r' -r_i \right| =c t} W(r' ) dS= -{4\pi \rho C_p \over \beta } t \psi (r_i ,t) $$ $s_i$ has some similarities with the 3-D Radon transform with its value at a given time being determined by a surface integral over $W$. Where the Radon transform uses planar projections in different directions, the operation described in Eq.(7) uses integration over the surfaces of spheres and the direction of the projection is given by the detector position, $r_i$ \subsection{Acoustic Source} \subsection{Point Source Solution} The Green's function for the Wave Equation Let\footnote{Morse and Feshbach, \textit{Methods of Theoretical Physics}} $G$ be a solution of $$ \nabla^2G(\mathbf{r},t; \mathbf{r}_0,t_0)-{1\over c^2}{\partial^2\over\partial t^2}G(\mathbf{r},t; \mathbf{r}_0,t_0)= -4\pi\delta(\mathbf{r}-\mathbf{r}_0)\delta(t-t_0) $$ satisfying homogeneous boundary conditions on surface S and obeing the causality requirement that $G$ and ${\partial G\over\partial t}=0$ everywhere for $t Babel <3.18> and hyphenation patterns for 8 language(s) loaded. (/usr/share/texlive/texmf-dist/tex/latex/base/report.cls Document Class: report 2014/09/29 v1.4h Standard LaTeX document class (/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo File: size10.clo 2014/09/29 v1.4h Standard LaTeX file (size option) ) \c@part=\count79 \c@chapter=\count80 \c@section=\count81 \c@subsection=\count82 \c@subsubsection=\count83 \c@paragraph=\count84 \c@subparagraph=\count85 \c@figure=\count86 \c@table=\count87 \abovecaptionskip=\skip41 \belowcaptionskip=\skip42 \bibindent=\dimen102 ) No file report.aux. \openout1 = `report.aux'. LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 5. LaTeX Font Info: ... okay on input line 5. LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 5. LaTeX Font Info: ... okay on input line 5. LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 5. LaTeX Font Info: ... okay on input line 5. LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 5. LaTeX Font Info: ... okay on input line 5. LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 5. LaTeX Font Info: ... okay on input line 5. LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 5. LaTeX Font Info: ... okay on input line 5. LaTeX Font Info: External font `cmex10' loaded for size (Font) <12> on input line 6. LaTeX Font Info: External font `cmex10' loaded for size (Font) <8> on input line 6. LaTeX Font Info: External font `cmex10' loaded for size (Font) <6> on input line 6. LaTeX Font Info: External font `cmex10' loaded for size (Font) <9> on input line 6. LaTeX Font Info: External font `cmex10' loaded for size (Font) <5> on input line 6. [1 ] No file report.toc. \tf@toc=\write3 \openout3 = `report.toc'. [1 ] No file report.lof. \tf@lof=\write4 \openout4 = `report.lof'. [2 ] Chapter 1. LaTeX Font Info: External font `cmex10' loaded for size (Font) <7> on input line 19. LaTeX Warning: Reference `fig1' on page 3 undefined on input line 26. LaTeX Warning: Reference `fig1' on page 3 undefined on input line 40. LaTeX Warning: Reference `fig3' on page 3 undefined on input line 40. [3 ] LaTeX Warning: Reference `fig1' on page 4 undefined on input line 51. LaTeX Warning: Reference `fig3' on page 4 undefined on input line 51. LaTeX Warning: Reference `fig1' on page 4 undefined on input line 62. LaTeX Warning: Reference `fig3' on page 4 undefined on input line 62. LaTeX Warning: Reference `fig2' on page 4 undefined on input line 75. [4] Chapter 2. LaTeX Warning: Reference `fig1' on page 5 undefined on input line 92. LaTeX Warning: Reference `fig3' on page 5 undefined on input line 92. LaTeX Warning: Reference `fig2' on page 5 undefined on input line 112. LaTeX Warning: Reference `fig4' on page 5 undefined on input line 112. [5 ] [6] Appendix A. LaTeX Warning: Reference `fig1' on page 7 undefined on input line 143. LaTeX Warning: Reference `fig3' on page 7 undefined on input line 143. [7 ] Appendix B. LaTeX Warning: Reference `fig1' on page 8 undefined on input line 152. LaTeX Warning: Reference `fig3' on page 8 undefined on input line 152. [8 ] (./report.aux) LaTeX Warning: There were undefined references. LaTeX Warning: Label(s) may have changed. Rerun to get cross-references right. ) Here is how much of TeX's memory you used: 264 strings out of 494872 2804 string characters out of 6178408 51681 words of memory out of 5000000 3670 multiletter control sequences out of 15000+600000 9712 words of font info for 34 fonts, out of 8000000 for 9000 14 hyphenation exceptions out of 8191 24i,11n,17p,337b,240s stack positions out of 5000i,500n,10000p,200000b,80000s Output written on report.dvi (9 pages, 10588 bytes). latex2rtf-2.3.18/test/acronym.bib0000777000175000017500000000257613050672360017044 0ustar wilfriedwilfried@BOOK{Goralski-cisco-juniper, title = {{Juniper and Cisco Routing: Policy and Protocols for Multivendor IP Networks}}, publisher = {Wiley}, year = {2004}, editor = {Walter J. Goralski}, bibsource = {DBLP, http://dblp.uni-trier.de}, ee = {http://dx.doi.org/10.1016/j.comcom.2003.12.008}, owner = {paag}, timestamp = {2009.05.24} } @MISC{defcon16-bgp, author = {Anton Kapela and Alex Pilisov}, month = {August}, year = {2008}, title = {{Stealing the Internet}}, howpublished = {DefCon 16}, url = {https://www.defcon.org/images/defcon-16/dc16-presentations/defcon-16-pilosov-kapela.pdf}, owner = {paag}, timestamp = {2009.02.26} } @TECHREPORT{ripe-200, author = {Antony Antony and Hank Uijterwaaly}, title = {{Routing Information Service}}, institution = {RIPE}, year = {1999}, type = {Design note}, number = {RIPE-200}, month = {October}, abstract = {This document discusses the Routing Information Service (RIS), a project proposed as a new activity of the RIPE NCC in the RIPE NCC activity plan for 1999 and 2000. The document gives an overview of the project, discusses the implementation and mentions a couple of points that have to be addressed in future design documents. This document is intended to solicit input from interested parties.}, owner = {paag}, timestamp = {2009.06.13}, url = {ftp://ftp.ripe.net/ripe/docs/ripe-200.pdf} } latex2rtf-2.3.18/test/include5.tex0000777000175000017500000000143713050672360017143 0ustar wilfriedwilfried\subsubsection{This is the first subsubsection from file \texttt{include5.tex}} \label{section51} Here is a reference to the next subsubsection \ref{section52} and one in the previous input file \ref{section42}. Notice that the reference to the next subsubsection is 3.0.5 and not 3.0.1. This shows sections reset subsection counters, but not subsubsection counters. How bizarre! \subsubsection{This is the second subsubsection from file \texttt{include5.tex}} \label{section52} Furthermore, after reading the \LaTeX{} book, I see that \verb#\include# files will all start on a new page. This is not the case for \verb#\input# files. Here is a reference to the previous subsubsection \ref{section51}. Here is a reference to the first subsection from \texttt{include1.tex} \ref{section11}. latex2rtf-2.3.18/test/dblspace.rtf0000644000175000017500000003140713664476467017221 0ustar wilfriedwilfried{\rtf1\ansi\uc1\deff0\deflang1024 {\fonttbl{\f0\fnil\fcharset0 Times New Roman;} {\f1\fnil\fcharset0 Arial;} {\f2\fnil\fcharset0 Arial;} {\f3\fnil\fcharset0 Courier New;} {\f4\fnil\fcharset0 Zapf Chancery;} {\f5\fnil\fcharset0 STIXGeneral;} {\f6\fnil\fcharset0 MS Gothic;} } {\colortbl; \red0\green0\blue0; \red0\green0\blue255; \red0\green255\blue255; \red0\green255\blue0; \red255\green0\blue255; \red255\green0\blue0; \red255\green255\blue0; \red255\green255\blue255; } {\stylesheet {\s0\qj\widctlpar\f0\fs20 \snext0 Normal;} {\cs10 \additive\ssemihidden Default Paragraph Font;} {\s1\qc\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 Part;} {\s2\ql\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 heading 1;} {\s3\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 2;} {\s4\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 3;} {\s5\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 4;} {\s6\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 5;} {\s7\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 6;} {\s8\qr\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext8 rightpar;} {\s9\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext9 centerpar;} {\s10\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext10 leftpar;} {\s11\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equation;} {\s12\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationNum;} {\s13\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlign;} {\s14\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlignNum;} {\s15\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArray;} {\s16\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArrayNum;} {\s17\ql\sb120\sa120\keep\widctlpar\f0\fs20 \sbasedon0\snext0 theorem;} {\s18\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 bitmapCenter;} {\s20\qc\sb240\sa240\b\f0\fs36 \sbasedon0\snext21 Title;} {\s21\qc\sa120\f0\fs20 \sbasedon0\snext0 author;} {\s22\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext22 footer;} {\s23\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext23 header;} {\s30\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 caption;} {\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext0 Figure;} {\s32\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext32 Table;} {\s33\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext33 Tabular;} {\s34\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext34 Tabbing;} {\s35\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext35 Quote;} {\s38\ql\widctlpar\f3\fs20 \snext38 verbatim;} {\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext46 List;} {\s47\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext47 List 1;} {\s50\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 latex picture;} {\s51\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 subfigure;} {\s61\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext62 bibheading;} {\s62\ql\fi-567\li567\sb0\sa0\f0\fs20 \sbasedon0\snext62 bibitem;} {\s64\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext64 endnotes;} {\s65\ql\fi-113\li397\lin397\f0\fs20 \sbasedon0\snext65 footnote text;} {\s66\qj\fi-170\li454\lin454\f0\fs20 \sbasedon0\snext66 endnote text;} {\cs62\super \additive\sbasedon10 footnote reference;} {\cs63\super \additive\sbasedon10 endnote reference;} {\s67\ql\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext67 acronym;} {\s70\qc\sa120\b\f0\fs20 \sbasedon0\snext71 abstract title;} {\s71\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext0 abstract;} {\s80\ql\sb240\sa120\keepn\f0\b\fs20 \sbasedon0\snext0 contents_heading;} {\s81\ql\li425\tqr\tldot\tx8222\sb240\sa60\keepn\f0\fs20\b \sbasedon0\snext82 toc 1;} {\s82\ql\li512\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext83 toc 2;} {\s83\ql\li1024\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext84 toc 3;} {\s84\ql\li1536\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext85 toc 4;} {\s85\ql\li2048\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 5;} {\s86\ql\li2560\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 6;} } {\info {\title Original file was dblspace.tex} {\doccomm Created using latex2rtf 2.3.18 r1266 (released May 29, 2020) on Sat May 30 17:35:19 2020 } } {\footer\pard\plain\f0\fs20\qc\chpgn\par} \paperw12280\paperh15900\margl2680\margr2700\margt2540\margb1760\pgnstart0\widowctrl\qj\ftnbj\f0\aftnnar {\pard\plain\s80\ql\sb240\sa120\keepn\f0\b\fs20\sl480\slmult1 \fi0 Contents\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl480\slmult1 \fi0 \par {\field{\*\fldinst TOC \\o "1-3" }{\fldrslt }} \page \pard\plain\s80\ql\sb240\sa120\keepn\f0\b\fs20\sl480\slmult1 \sb60 \fi0 List of Figures\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl480\slmult1 \fi0 \par {\field{\*\fldinst TOC \\f f }{\fldrslt }} \page \pard\plain\ql\sb240\sa120\keepn\f0\b\fs40\sl480\slmult1 \sb60 \fi0 Chapter 1\par \pard\plain\s2\ql\sb240\sa120\keepn\f0\b\fs40\sl480\slmult1 \sb240 \fi0 First Chapter\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl480\slmult1 \sb480 \fi0 1.1 Intro\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl480\slmult1 \sb60 \fi0 Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed posuere, dui ut nonummy lobortis, leo dui laoreet arcu, sed blandit lectus libero sed elit. In non velit. Aenean dignissim aliquam felis. Curabitur nec velit. Donec vitae felis. Pellentesque faucibus suscipit dui. Nunc dictum, purus congue ultrices condimentum, diam enim accumsan dolor, et viverra risus odio et justo. Phasellus accumsan magna ac turpis. Nullam bibendum condimentum leo. Cras a tellus. Phasellus nulla ipsum, egestas at, tempor id, accumsan in, eros. Praesent tincidunt tellus ut risus. See Figure\~{\field{\*\fldinst{\lang1024 REF BMfig1 \\* MERGEFORMAT }}{\fldrslt{1.1}}}.\par {\pard\plain\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20\sl480\slmult1 \sb240 \fi300 {\par \pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl480\slmult1 \fi0 {\fs28 FIGURE} \par \pard\plain\s30\ql\sb120\sa120\keep\widctlpar\f0\sl480\slmult1 \fi0 {Figure {\*\bkmkstart BMfig1}1.1{\*\bkmkend BMfig1}: This is figure 1}{\field{\*\fldinst TC "1.1 This is figure 1" \\f f}{\fldrslt }}\par }}\pard\plain\s0\qj\widctlpar\f0\fs20\sl480\slmult1 \sb240 \fi300 Mauris lobortis. Pellentesque egestas nunc at ligula. Nulla ultrices magna quis neque. Aenean lobortis semper purus. In nonummy egestas urna. Nam sodales orci ac felis. Vestibulum vitae ante. Vivamus quis dui. Aenean suscipit. Sed mollis. Pellentesque erat ligula, dictum at, cursus et, accumsan fringilla, metus. Fusce ac neque id ipsum ornare sagittis. See Figure\~{\field{\*\fldinst{\lang1024 REF BMfig1 \\* MERGEFORMAT }}{\fldrslt{1.1}}} and See Figure\~{\field{\*\fldinst{\lang1024 REF BMfig3 \\* MERGEFORMAT }}{\fldrslt{2.1}}}.\par {\pard\plain\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20\sl480\slmult1 \sb240 \fi300 \par \pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl480\slmult1 \fi0 {\fs28 FIGURE2} \par }\pard\plain\s0\qj\widctlpar\f0\fs20\sl480\slmult1 \sb240 \fi300 Mauris lobortis. Pellentesque egestas nunc at ligula. Nulla ultrices magna quis neque. Aenean lobortis semper purus. In nonummy egestas urna. Nam sodales orci ac felis. Vestibulum vitae ante. Vivamus quis dui. Aenean suscipit. Sed mollis. Pellentesque erat ligula, dictum at, cursus et, accumsan fringilla, metus. Fusce ac neque id ipsum ornare sagittis. See Figure\~{\field{\*\fldinst{\lang1024 REF BMfig1 \\* MERGEFORMAT }}{\fldrslt{1.1}}} and See Figure\~{\field{\*\fldinst{\lang1024 REF BMfig3 \\* MERGEFORMAT }}{\fldrslt{2.1}}}.\par {\pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs20\sl480\slmult1 \sb240 \fi0 \par \pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl480\slmult1 \fi0 {\fs28 TABLE} \par }\pard\plain\s0\qj\widctlpar\f0\fs20\sl480\slmult1 \sb240 \fi300 Mauris lobortis. Pellentesque egestas nunc at ligula. Nulla ultrices magna quis neque. Aenean lobortis semper purus. In nonummy egestas urna. Nam sodales orci ac felis. Vestibulum vitae ante. Vivamus quis dui. Aenean suscipit. Sed mollis. Pellentesque erat ligula, dictum at, cursus et, accumsan fringilla, metus. Fusce ac neque id ipsum ornare sagittis. See Figure\~{\field{\*\fldinst{\lang1024 REF BMfig1 \\* MERGEFORMAT }}{\fldrslt{1.1}}} and See Figure\~{\field{\*\fldinst{\lang1024 REF BMfig3 \\* MERGEFORMAT }}{\fldrslt{2.1}}}.\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl480\slmult1 \sb240 \fi0 1.2 Method\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl480\slmult1 \sb60 \fi0 Mauris imperdiet. Duis scelerisque. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nulla facilisi. Vivamus sodales magna et nibh. Nulla non neque in quam mollis ornare. Vestibulum nonummy augue ut wisi. Curabitur adipiscing eros sit amet lorem. Cras auctor, tortor ut euismod iaculis, elit purus facilisis nibh, id tempus nulla libero in ipsum. Praesent vestibulum facilisis arcu. Curabitur quis augue ac mi dictum ultricies. Maecenas consectetuer. Mauris non lacus. Nunc et nisl sit amet ligula pretium dapibus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nullam ut metus in sapien mollis dignissim. Ut sem lacus, commodo nec, fermentum sit amet, porta sit amet, arcu. Nunc non eros. Vestibulum ullamcorper adipiscing risus. See Figure\~{\field{\*\fldinst{\lang1024 REF BMfig2 \\* MERGEFORMAT }}{\fldrslt{1.2}}}.\par {\pard\plain\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20\sl480\slmult1 \sb240 \fi300 {\par \pard\plain\s30\ql\sb120\sa120\keep\widctlpar\f0\sl480\slmult1 \fi0 {Figure {\*\bkmkstart BMfig2}1.2{\*\bkmkend BMfig2}: This is figure 2}{\field{\*\fldinst TC "1.2 This is figure 2" \\f f}{\fldrslt }}\par }}\page \pard\plain\ql\sb240\sa120\keepn\f0\b\fs40\sl480\slmult1 \sb240 \fi0 Chapter 2\par \pard\plain\s2\ql\sb240\sa120\keepn\f0\b\fs40\sl480\slmult1 \sb240 \fi0 Second Chapter\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl480\slmult1 \sb480 \fi0 2.1 Intro\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl480\slmult1 \sb60 \fi0 Mauris lobortis. Pellentesque egestas nunc at ligula. Nulla ultrices magna quis neque. Aenean lobortis semper purus. In nonummy egestas urna. Nam sodales orci ac felis. Vestibulum vitae ante. Vivamus quis dui. Aenean suscipit. Sed mollis. Pellentesque erat ligula, dictum at, cursus et, accumsan fringilla, metus. Fusce ac neque id ipsum ornare sagittis. See Figure\~{\field{\*\fldinst{\lang1024 REF BMfig1 \\* MERGEFORMAT }}{\fldrslt{1.1}}} and See Figure\~{\field{\*\fldinst{\lang1024 REF BMfig3 \\* MERGEFORMAT }}{\fldrslt{2.1}}}.\par {\pard\plain\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20\sl480\slmult1 \sb240 \fi300 {\par \pard\plain\s30\ql\sb120\sa120\keep\widctlpar\f0\sl480\slmult1 \fi0 {Figure {\*\bkmkstart BMfig3}2.1{\*\bkmkend BMfig3}: This is figure 3}{\field{\*\fldinst TC "2.1 This is figure 3" \\f f}{\fldrslt }}\par }}\pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl480\slmult1 \sb480 \fi0 2.2 Method\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl480\slmult1 \sb60 \fi0 Maecenas gravida, massa id interdum semper, purus ipsum vulputate nibh, vel egestas diam ante sit amet metus. Etiam rutrum augue eleifend leo. Vestibulum a leo. Duis rhoncus orci quis tortor. Pellentesque id ipsum nec est vestibulum imperdiet. Etiam volutpat. Maecenas ornare laoreet mauris. Praesent feugiat. Donec pede elit, sollicitudin ut, vulputate a, venenatis eu, dui. Praesent mollis. Aenean enim dui, commodo at, tincidunt at, luctus suscipit, leo. Aenean urna. Praesent adipiscing. Quisque id arcu at velit tincidunt consectetuer. Phasellus gravida est sed felis. Proin mi tortor, suscipit et, convallis euismod, ultrices vitae, justo. Cras leo arcu, viverra at, dignissim nec, feugiat sed, ligula. See Figure\~{\field{\*\fldinst{\lang1024 REF BMfig2 \\* MERGEFORMAT }}{\fldrslt{1.2}}} and See Figure\~{\field{\*\fldinst{\lang1024 REF BMfig4 \\* MERGEFORMAT }}{\fldrslt{2.2}}}.\par {\pard\plain\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20\sl480\slmult1 \sb240 \fi300 {\par \pard\plain\s30\ql\sb120\sa120\keep\widctlpar\f0\sl480\slmult1 \fi0 {Figure {\*\bkmkstart BMfig4}2.2{\*\bkmkend BMfig4}: This is figure 4}{\field{\*\fldinst TC "2.2 This is figure 4" \\f f}{\fldrslt }}\par }}\pard\plain\s0\qj\widctlpar\f0\fs20\sl480\slmult1 \sb240 \fi300 Nunc leo justo, egestas id, sodales id, aliquam eget, massa. Mauris posuere nibh pulvinar neque feugiat porta. Morbi tempor faucibus nibh. Donec sit amet urna. Sed dictum dui ut justo. Vestibulum imperdiet. Morbi sed risus. Praesent sollicitudin. Vivamus ut est sit amet diam semper lacinia. Donec nec tortor a lacus placerat aliquet. Vestibulum quis turpis. Curabitur auctor libero. Nam sit amet felis nec mauris tempus imperdiet. Aenean est ipsum, molestie eget, vulputate tincidunt, tempus ac, lectus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nullam molestie rhoncus metus. Nunc sollicitudin ipsum nec urna. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos hymenaeos. In hac habitasse platea dictumst. \par }} }}}latex2rtf-2.3.18/test/ignore.tex0000777000175000017500000000056113050672360016713 0ustar wilfriedwilfried\documentclass{article} \usepackage{srcltx} \usepackage{pdfsync} \usepackage{textcomp} \usepackage{fontenc} \usepackage{eurosym} \usepackage{ucs} \usepackage{alltt} \usepackage{url} \usepackage{nameref} \usepackage{amssymb} \usepackage{hyperlatex} \usepackage{latin1} \begin{document} You shouldn't have gotten any warnings about unsupported packages. \end{document} latex2rtf-2.3.18/test/report.rtf0000644000175000017500000004142013664476470016745 0ustar wilfriedwilfried{\rtf1\ansi\uc1\deff0\deflang1024 {\fonttbl{\f0\fnil\fcharset0 Times New Roman;} {\f1\fnil\fcharset0 Arial;} {\f2\fnil\fcharset0 Arial;} {\f3\fnil\fcharset0 Courier New;} {\f4\fnil\fcharset0 Zapf Chancery;} {\f5\fnil\fcharset0 STIXGeneral;} {\f6\fnil\fcharset0 MS Gothic;} } {\colortbl; \red0\green0\blue0; \red0\green0\blue255; \red0\green255\blue255; \red0\green255\blue0; \red255\green0\blue255; \red255\green0\blue0; \red255\green255\blue0; \red255\green255\blue255; } {\stylesheet {\s0\qj\widctlpar\f0\fs20 \snext0 Normal;} {\cs10 \additive\ssemihidden Default Paragraph Font;} {\s1\qc\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 Part;} {\s2\ql\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 heading 1;} {\s3\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 2;} {\s4\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 3;} {\s5\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 4;} {\s6\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 5;} {\s7\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 6;} {\s8\qr\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext8 rightpar;} {\s9\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext9 centerpar;} {\s10\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext10 leftpar;} {\s11\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equation;} {\s12\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationNum;} {\s13\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlign;} {\s14\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlignNum;} {\s15\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArray;} {\s16\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArrayNum;} {\s17\ql\sb120\sa120\keep\widctlpar\f0\fs20 \sbasedon0\snext0 theorem;} {\s18\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 bitmapCenter;} {\s20\qc\sb240\sa240\b\f0\fs36 \sbasedon0\snext21 Title;} {\s21\qc\sa120\f0\fs20 \sbasedon0\snext0 author;} {\s22\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext22 footer;} {\s23\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext23 header;} {\s30\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 caption;} {\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext0 Figure;} {\s32\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext32 Table;} {\s33\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext33 Tabular;} {\s34\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext34 Tabbing;} {\s35\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext35 Quote;} {\s38\ql\widctlpar\f3\fs20 \snext38 verbatim;} {\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext46 List;} {\s47\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext47 List 1;} {\s50\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 latex picture;} {\s51\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 subfigure;} {\s61\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext62 bibheading;} {\s62\ql\fi-567\li567\sb0\sa0\f0\fs20 \sbasedon0\snext62 bibitem;} {\s64\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext64 endnotes;} {\s65\ql\fi-113\li397\lin397\f0\fs20 \sbasedon0\snext65 footnote text;} {\s66\qj\fi-170\li454\lin454\f0\fs20 \sbasedon0\snext66 endnote text;} {\cs62\super \additive\sbasedon10 footnote reference;} {\cs63\super \additive\sbasedon10 endnote reference;} {\s67\ql\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext67 acronym;} {\s70\qc\sa120\b\f0\fs20 \sbasedon0\snext71 abstract title;} {\s71\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext0 abstract;} {\s80\ql\sb240\sa120\keepn\f0\b\fs20 \sbasedon0\snext0 contents_heading;} {\s81\ql\li425\tqr\tldot\tx8222\sb240\sa60\keepn\f0\fs20\b \sbasedon0\snext82 toc 1;} {\s82\ql\li512\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext83 toc 2;} {\s83\ql\li1024\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext84 toc 3;} {\s84\ql\li1536\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext85 toc 4;} {\s85\ql\li2048\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 5;} {\s86\ql\li2560\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 6;} } {\info {\title Original file was report.tex} {\doccomm Created using latex2rtf 2.3.18 r1266 (released May 29, 2020) on Sat May 30 17:35:20 2020 } } {\footer\pard\plain\f0\fs20\qc\chpgn\par} \paperw12280\paperh15900\margl2680\margr2700\margt2540\margb1760\pgnstart0\widowctrl\qj\ftnbj\f0\aftnnar {\pard\plain\s20\qc\sb240\sa240\b\f0\fs36\sl240\slmult1 \fi0 Test Document for Documentclass Report\par \pard\plain\s21\qc\sa120\f0\fs20\sl240\slmult1 \fi300 The LaTeX2rtf team{\cs62\super 1} {\*\footnote\pard \s65\ql\fi-113\li397\lin397\f0\fs20{\cs62\super1} Thanks to Donald Knuth for designing TeX} \par \pard\plain\s21\qc\sa120\f0\fs20\sl240\slmult1 \fi300 \chdate \par \pard\plain\s80\ql\sb240\sa120\keepn\f0\b\fs20\sl240\slmult1 \fi0 Contents\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi0 \par {\field{\*\fldinst TOC \\o "1-3" }{\fldrslt }} \page \pard\plain\s80\ql\sb240\sa120\keepn\f0\b\fs20\sl240\slmult1 \sb60 \fi0 List of Figures\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi0 \par {\field{\*\fldinst TOC \\f f }{\fldrslt }} \page \pard\plain\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \sb60 \fi0 Chapter 1\par \pard\plain\s2\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \sb240 \fi0 First Chapter\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb480 \fi0 1.1 Intro\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 Let the distance be 633{\charscalex50\~}nm or 633{\charscalex50\~}nm or 633{\charscalex50\~}nm or 633{\charscalex50\~}nm or 633{\charscalex50\~}nm or 633{\charscalex50\~}nm or 633{\charscalex50\~}nm or 633{\charscalex50\~}nm or 633{\charscalex50\~}nm or 633{\charscalex50\~}nm or 633{\charscalex50\~}nm or 633{\charscalex50\~}nm just to force a line break to test the non-breaking space.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Let the distance be 633{\charscalex50\~}{}nm or 633{\charscalex50\~}{}nm or 633{\charscalex50\~}{}nm or 633{\charscalex50\~}{}nm or 633{\charscalex50\~}{}nm or 633{\charscalex50\~}{}nm or 633{\charscalex50\~}{}nm or 633{\charscalex50\~}{}nm or 633{\charscalex50\~}{}nm or 633{\charscalex50\~}{}nm or 633{\charscalex50\~}{}nm or 633{\charscalex50\~}{}nm just to force a line break to test the non-breaking space.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Let the distance be 633{\charscalex50\~}nm or 633{\charscalex50\~}nm or 633{\charscalex50\~}nm or 633{\charscalex50\~}nm or 633{\charscalex50\~}nm or 633{\charscalex50\~}nm or 633{\charscalex50\~}nm or 633{\charscalex50\~}nm or 633{\charscalex50\~}nm or 633{\charscalex50\~}nm or 633{\charscalex50\~}nm or 633{\charscalex50\~}nm just to force a line break to test the non-breaking space.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Lorem ipsum dolor sit amet,{\cs62\super\chftn} {\*\footnote\pard \s65\ql\fi-113\li397\lin397\f0\fs20{\cs62\super\chftn} the first} consectetuer adipiscing elit. Sed posuere, dui ut nonummy lobortis, leo dui laoreet arcu, sed blandit lectus libero sed elit. In non velit. Aenean dignissim aliquam felis. Curabitur nec velit. Donec vitae felis. Pellentesque faucibus suscipit dui. Nunc dictum, purus congue ultrices condimentum, diam enim accumsan dolor, et viverra risus odio et justo. Phasellus accumsan magna ac turpis. Nullam bibendum condimentum leo. Cras a tellus. Phasellus nulla ipsum, egestas at, tempor id, accumsan in, eros. Praesent tincidunt tellus ut risus. See Figure\~{\field{\*\fldinst{\lang1024 REF BMfig1 \\* MERGEFORMAT }}{\fldrslt{1.1}}}.\par {\pard\plain\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20\sl240\slmult1 \sb240 \fi300 {\par \pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 {\fs28 FIGURE} \par \pard\plain\s30\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 {Figure {\*\bkmkstart BMfig1}1.1{\*\bkmkend BMfig1}: This is figure 1}{\field{\*\fldinst TC "1.1 This is figure 1" \\f f}{\fldrslt }}\par }}\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb240 \fi300 Mauris lobortis.{\cs62\super\chftn} {\*\footnote\pard \s65\ql\fi-113\li397\lin397\f0\fs20{\cs62\super\chftn} the second} Pellentesque egestas nunc at ligula. Nulla ultrices magna quis neque. Aenean lobortis semper purus. In nonummy egestas urna. Nam sodales orci ac felis. Vestibulum vitae ante. Vivamus quis dui. Aenean suscipit. Sed mollis. Pellentesque erat ligula, dictum at, cursus et, accumsan fringilla, metus. Fusce ac neque id ipsum ornare sagittis. See Figure\~{\field{\*\fldinst{\lang1024 REF BMfig1 \\* MERGEFORMAT }}{\fldrslt{1.1}}} and See Figure\~{\field{\*\fldinst{\lang1024 REF BMfig3 \\* MERGEFORMAT }}{\fldrslt{2.1}}}.\par {\pard\plain\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20\sl240\slmult1 \sb240 \fi300 \par \pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 {\fs28 FIGURE2} \par }\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb240 \fi300 Mauris lobortis.{\cs62\super\chftn} {\*\footnote\pard \s65\ql\fi-113\li397\lin397\f0\fs20{\cs62\super\chftn} the third} Pellentesque egestas nunc at ligula. Nulla ultrices magna quis neque. Aenean lobortis semper purus. In nonummy egestas urna. Nam sodales orci ac felis. Vestibulum vitae ante. Vivamus quis dui. Aenean suscipit. Sed mollis. Pellentesque erat ligula, dictum at, cursus et, accumsan fringilla, metus. Fusce ac neque id ipsum ornare sagittis. See Figure\~{\field{\*\fldinst{\lang1024 REF BMfig1 \\* MERGEFORMAT }}{\fldrslt{1.1}}} and See Figure\~{\field{\*\fldinst{\lang1024 REF BMfig3 \\* MERGEFORMAT }}{\fldrslt{2.1}}}.\par {\pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs20\sl240\slmult1 \sb240 \fi0 \par \pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 {\fs28 TABLE} \par }\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb240 \fi300 Mauris lobortis. Pellentesque egestas nunc at ligula.{\cs62\super\chftn} {\*\footnote\pard \s65\ql\fi-113\li397\lin397\f0\fs20{\cs62\super\chftn} the fourth} Nulla ultrices magna quis neque. Aenean lobortis semper purus. In nonummy egestas urna. Nam sodales orci ac felis. Vestibulum vitae ante. Vivamus quis dui. Aenean suscipit. Sed mollis. Pellentesque erat ligula, dictum at, cursus et, accumsan fringilla, metus. Fusce ac neque id ipsum ornare sagittis. See Figure\~{\field{\*\fldinst{\lang1024 REF BMfig1 \\* MERGEFORMAT }}{\fldrslt{1.1}}} and See Figure\~{\field{\*\fldinst{\lang1024 REF BMfig3 \\* MERGEFORMAT }}{\fldrslt{2.1}}}.\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 1.2 Method\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 Mauris imperdiet. Duis scelerisque. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nulla facilisi. Vivamus sodales magna et nibh. Nulla non neque in quam mollis ornare. Vestibulum nonummy augue ut wisi. Curabitur adipiscing eros sit amet lorem. Cras auctor, tortor ut euismod iaculis, elit purus facilisis nibh, id tempus nulla libero in ipsum. Praesent vestibulum facilisis arcu. Curabitur quis augue ac mi dictum ultricies. Maecenas consectetuer. Mauris non lacus. Nunc et nisl sit amet ligula pretium dapibus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nullam ut metus in sapien mollis dignissim. Ut sem lacus, commodo nec, fermentum sit amet, porta sit amet, arcu. Nunc non eros. Vestibulum ullamcorper adipiscing risus.{\cs62\super\chftn} {\*\footnote\pard \s65\ql\fi-113\li397\lin397\f0\fs20{\cs62\super\chftn} the fifth} See Figure\~{\field{\*\fldinst{\lang1024 REF BMfig2 \\* MERGEFORMAT }}{\fldrslt{1.2}}}.\par {\pard\plain\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20\sl240\slmult1 \sb240 \fi300 {\par \pard\plain\s30\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 {Figure {\*\bkmkstart BMfig2}1.2{\*\bkmkend BMfig2}: This is figure 2}{\field{\*\fldinst TC "1.2 This is figure 2" \\f f}{\fldrslt }}\par }}\page \pard\plain\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \sb240 \fi0 Chapter 2\par \pard\plain\s2\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \sb240 \fi0 Second Chapter\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb480 \fi0 2.1 Intro\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 Mauris lobortis. Pellentesque egestas nunc at ligula. Nulla ultrices magna quis neque. Aenean lobortis semper purus. In nonummy egestas urna. Nam sodales orci ac felis. Vestibulum vitae ante. Vivamus quis dui. Aenean suscipit. Sed mollis. Pellentesque erat ligula, dictum at, cursus et, accumsan fringilla, metus. Fusce ac neque id ipsum ornare sagittis.{\cs62\super\chftn} {\*\footnote\pard \s65\ql\fi-113\li397\lin397\f0\fs20{\cs62\super\chftn} the first in the second chapter} See Figure\~{\field{\*\fldinst{\lang1024 REF BMfig1 \\* MERGEFORMAT }}{\fldrslt{1.1}}} and See Figure\~{\field{\*\fldinst{\lang1024 REF BMfig3 \\* MERGEFORMAT }}{\fldrslt{2.1}}}.\par {\pard\plain\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20\sl240\slmult1 \sb240 \fi300 {\par \pard\plain\s30\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 {Figure {\*\bkmkstart BMfig3}2.1{\*\bkmkend BMfig3}: This is figure 3}{\field{\*\fldinst TC "2.1 This is figure 3" \\f f}{\fldrslt }}\par }}\pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb480 \fi0 2.2 Method\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 Maecenas gravida, massa id interdum semper, purus ipsum vulputate nibh, vel egestas diam ante sit amet metus. Etiam rutrum augue eleifend leo. Vestibulum a leo. Duis rhoncus orci quis tortor. Pellentesque id ipsum nec est vestibulum imperdiet. Etiam volutpat. Maecenas ornare laoreet mauris. Praesent feugiat. Donec pede elit, sollicitudin ut, vulputate a, venenatis eu, dui. Praesent mollis. Aenean enim dui, commodo at, tincidunt at, luctus suscipit, leo. Aenean urna. Praesent adipiscing. Quisque id arcu at velit tincidunt consectetuer. Phasellus gravida est sed felis. Proin mi tortor, suscipit et, convallis euismod, ultrices vitae, justo. Cras leo arcu, viverra at, dignissim nec, feugiat sed, ligula. See Figure\~{\field{\*\fldinst{\lang1024 REF BMfig2 \\* MERGEFORMAT }}{\fldrslt{1.2}}} and See Figure\~{\field{\*\fldinst{\lang1024 REF BMfig4 \\* MERGEFORMAT }}{\fldrslt{2.2}}}.\par {\pard\plain\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20\sl240\slmult1 \sb240 \fi300 {\par \pard\plain\s30\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 {Figure {\*\bkmkstart BMfig4}2.2{\*\bkmkend BMfig4}: This is figure 4}{\field{\*\fldinst TC "2.2 This is figure 4" \\f f}{\fldrslt }}\par }}\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb240 \fi300 Nunc leo justo, egestas id, sodales id, aliquam eget, massa. Mauris posuere nibh pulvinar neque feugiat porta. Morbi tempor faucibus nibh. Donec sit amet urna. Sed dictum dui ut justo. Vestibulum imperdiet. Morbi sed risus. Praesent sollicitudin. Vivamus ut est sit amet diam semper lacinia. Donec nec tortor a lacus placerat aliquet. Vestibulum quis turpis. Curabitur auctor libero. Nam sit amet felis nec mauris tempus imperdiet. Aenean est ipsum, molestie eget, vulputate tincidunt, tempus ac, lectus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nullam molestie rhoncus metus. Nunc sollicitudin ipsum nec urna. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos hymenaeos. In hac habitasse platea dictumst. \par \pard\plain\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \fi0 Appendix A\par \pard\plain\s2\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \sb240 \fi0 First Appendix\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb480 \fi0 A.1 Intro\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 Mauris lobortis. Pellentesque egestas nunc at ligula. Nulla ultrices magna quis neque. Aenean lobortis semper purus. In nonummy egestas urna. Nam sodales orci ac felis. Vestibulum vitae ante. Vivamus quis dui. Aenean suscipit. Sed mollis. Pellentesque erat ligula, dictum at, cursus et, accumsan fringilla, metus. Fusce ac neque id ipsum ornare sagittis. See Figure\~{\field{\*\fldinst{\lang1024 REF BMfig1 \\* MERGEFORMAT }}{\fldrslt{1.1}}} and See Figure\~{\field{\*\fldinst{\lang1024 REF BMfig3 \\* MERGEFORMAT }}{\fldrslt{2.1}}}.\par \page \pard\plain\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \fi0 Appendix B\par \pard\plain\s2\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \sb240 \fi0 Second Appendix\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb480 \fi0 B.1 Intro\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 Mauris lobortis. Pellentesque egestas nunc at ligula. Nulla ultrices magna quis neque. Aenean lobortis semper purus. In nonummy egestas urna. Nam sodales orci ac felis. Vestibulum vitae ante. Vivamus quis dui. Aenean suscipit. Sed mollis. Pellentesque erat ligula, dictum at, cursus et, accumsan fringilla, metus. Fusce ac neque id ipsum ornare sagittis. See Figure\~{\field{\*\fldinst{\lang1024 REF BMfig1 \\* MERGEFORMAT }}{\fldrslt{1.1}}} and See Figure\~{\field{\*\fldinst{\lang1024 REF BMfig3 \\* MERGEFORMAT }}{\fldrslt{2.1}}}.\par }} }}}latex2rtf-2.3.18/test/eqns2.tex0000777000175000017500000001056113050672360016461 0ustar wilfriedwilfried%% LyX 1.4.3 created this file. For more info, see http://www.lyx.org/. %% Do not edit unless you really know what you are doing. \documentclass[twoside,french]{report} \usepackage[T1]{fontenc} \usepackage[latin1]{inputenc} \usepackage{babel} \addto\extrasfrench{\providecommand{\og}{\leavevmode\flqq~}\providecommand{\fg}{\ifdim\lastskip>\z@\unskip\fi~\frqq}} \makeatother \AtEndDocument{\cleardoublepage} \begin{document} \chapter{Analyse de cohérence} \section{Identification dans le domaine temporel} Nous supposons le systčme ŕ identifier caractérisé par un modčle de la forme: \begin{displaymath} \left\{ \begin{array}{ccl} \dot{x}(t)&=&f[x(t),u(t),\theta]\hspace{2cm}x(t_{0})=x_{0}\\ y(t,\theta)&=&g[x(t),u(t),\theta] \end{array} \right. \end{displaymath} $x$ est l'état, $u$ l'entrée et $y$ la réponse du systčme. Les observations $z$ sont réalisées ŕ des instants discrets $t_{n}$ et décrites par: \begin{displaymath} z(t_{n})=y(t_{n},\theta) + w_{n} \end{displaymath} or as an equation \begin{equation} z(t_{n})=y(t_{n},\theta) + w_{n} \end{equation} or with \verb#\nonumber# included \begin{equation} z(t_{n})=y(t_{n},\theta) + w_{n} \nonumber \end{equation} oů $w_{n}$ désigne le bruit de mesure supposé blanc, gaussien, de moyenne nulle et de matrice de covariance $M_{1}$. Nous supposons d'autre part qu'il n'existe pas de bruit d'état (mesures des entrees non bruitées et absence de perturbations) et que les fonctions $f$ et $g$ sont connues. L'objectif est l'estimation des paramčtres inconnus $\theta$. L'estimé de $\theta$ au sens de la minimisation des erreurs de sortie est la valeur qui minimise le critčre: \begin{displaymath} J(\theta)=\frac{1}{2}\sum_{n=1}^{N}\left[z(t_{n})-y(t_{n},\theta)\right]^{T}M_{1}^{-1}\left[z(t_{n})-y(t_{n},\theta)\right] \end{displaymath} oů $y(t_{n},\theta)$ est la réponse prédite du systčme ŕ l'instant $t_{n}$ pour une valeur donnée des paramčtres inconnus $\theta$. Cet estimateur peut s'interpréter comme un estimateur du maximum de vraisemblance dans le cas particulier oů le bruit d'état est nul. Si la matrice de covariance des bruits de mesure $M_{1}$ est inconnue, elle peut ętre estimée au sens du maximum de vraisemblance ŕ partir des résidus: \begin{displaymath} \hat{M_{1}} = \sum_{n=1}^{N}\left[z(t_{n})-y(t_{n},\theta)\right]\left[z(t_{n})-y(t_{n},\theta)\right]^{T} \end{displaymath} \section{Fonction de cohérence} Considérons un systčme mono-entrée mono-sortie d'entrée $u(t)$ et de sortie $y(t)$. Soient respectivement $S_{uu}$ et $S_{yy}$ les spectres des signaux d'entrée et de sortie et $S_{uy}$ le spectre croisé. La fonction de cohérence de ce systčme est définie comme \begin{displaymath} \gamma^2_{uy}(f) = \frac{\left|S_{uy}(f)\right|^2}{S_{uu}(f) S_{yy}(f)} \end{displaymath} et satisfait pour chaque fréquence $f$ \begin{displaymath} 0 \; \le \; \gamma^2_{uy}(f) \; \le \; 1 \end{displaymath} Si nous nous plaçons dans le cas d'un systčme linéaire et supposons que l'entrée et la sortie sont parfaitement mesurées, nous pouvons montrer que la fonction de cohérence est identiquement égale ŕ 1 pour toutes les fréquences. Soit $H(p)$ la fonction de transfert du systčme; le spectre du signal de sortie et le spectre croisé entrée/sortie sont donnés par: \begin{displaymath} S_{yy}(f) = \left|H(f)\right|^2 S_{uu}(f)\\ \end{displaymath} \begin{displaymath} S_{uy}(f) = H(f) S_{uu}(f) \end{displaymath} de sorte que \begin{displaymath} \gamma^2_{uy}(f) = \frac{\left|H(f) S_{uu}(f)\right|^2 }{S_{uu}(f) \left|H(f)\right|^2 S_{uu}(f)} = 1 \end{displaymath} A l'inverse, si $u(t)$ et $y(t)$ sont totalement décorrélés, la fonction de cohérence est identiquement nulle. Une situation intermédiaire, c'est ŕ dire une fonction de cohérence positive mais inférieure ŕ l'unité, peut avoir diverses explications: \begin{itemize} \item du bruit est présent dans les mesures de l'entrée et de la sortie; \item la relation entrée/sortie n'est pas linéaire; \item la sortie $y(t)$ ne résulte pas de la seule entrée $u(t)$. \end{itemize} La fonction de cohérence peut ainsi ętre employée pour analyser un ensemble de données de vol et sélectionner la gamme de fréquences contenant de l'information utile pour l'identification. Etant indicative de la qualité de l'information, elle peut également ętre utilisée pour pondérer les données dans le critčre d'optimisation. %%% Local Variables: %%% mode: latex %%% TeX-master: "main" %%% End: \end{document} latex2rtf-2.3.18/test/acro.tex0000777000175000017500000000164613050672357016367 0ustar wilfriedwilfried\documentclass{article} \usepackage{acronym} \begin{document} \section{Test section} This is a test file for the acronyms. Each time a \ac{bgp} advertisement traverses an \ac{AS}, the \ac{aspath} attribute is modified. Additionally, \acp{AS} may introduce additional changes in the \ac{aspath} for traffic engineering purposes. Used following acronym macros \begin{verbatim} \usepackage{acronym} \acrodef{AS}{Autonomous System} \begin{acronym} \acrodef{aspath}[AS\_PATH]{AS Path} \acro{bgp}[BGP-4]{Border Gateway Protocol} \acro{isis}[IS-IS]{IS-IS Protocol} \acro{RIP}{RIPv2 Routing Protocol} \end{acronym} \end{verbatim} Only \textbf{\ac{bgp}} should appear as an acronym in the acronym section. \acrodef{AS}{Autonomous System} \begin{acronym} \acrodef{aspath}[AS\_PATH]{AS Path} \acro{bgp}[BGP-4]{Border Gateway Protocol} \acro{isis}[IS-IS]{IS-IS Protocol} \acro{RIP}{RIPv2 Routing Protocol} \end{acronym} \end{document} latex2rtf-2.3.18/test/misc3.rtf0000644000175000017500000051210513664476467016461 0ustar wilfriedwilfried{\rtf1\ansi\uc1\deff0\deflang1024 {\fonttbl{\f0\fnil\fcharset0 Times New Roman;} {\f1\fnil\fcharset0 Arial;} {\f2\fnil\fcharset0 Arial;} {\f3\fnil\fcharset0 Courier New;} {\f4\fnil\fcharset0 Zapf Chancery;} {\f5\fnil\fcharset0 STIXGeneral;} {\f6\fnil\fcharset0 MS Gothic;} } {\colortbl; \red0\green0\blue0; \red0\green0\blue255; \red0\green255\blue255; \red0\green255\blue0; \red255\green0\blue255; \red255\green0\blue0; \red255\green255\blue0; \red255\green255\blue255; } {\stylesheet {\s0\qj\widctlpar\f0\fs24 \snext0 Normal;} {\cs10 \additive\ssemihidden Default Paragraph Font;} {\s1\qc\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 Part;} {\s2\ql\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 heading 1;} {\s3\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 2;} {\s4\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 3;} {\s5\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 4;} {\s6\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 5;} {\s7\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 6;} {\s8\qr\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext8 rightpar;} {\s9\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext9 centerpar;} {\s10\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext10 leftpar;} {\s11\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equation;} {\s12\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationNum;} {\s13\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlign;} {\s14\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlignNum;} {\s15\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArray;} {\s16\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArrayNum;} {\s17\ql\sb120\sa120\keep\widctlpar\f0\fs20 \sbasedon0\snext0 theorem;} {\s18\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 bitmapCenter;} {\s20\qc\sb240\sa240\b\f0\fs36 \sbasedon0\snext21 Title;} {\s21\qc\sa120\f0\fs24 \sbasedon0\snext0 author;} {\s22\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext22 footer;} {\s23\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext23 header;} {\s30\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 caption;} {\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext0 Figure;} {\s32\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext32 Table;} {\s33\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext33 Tabular;} {\s34\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext34 Tabbing;} {\s35\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext35 Quote;} {\s38\ql\widctlpar\f3\fs24 \snext38 verbatim;} {\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext46 List;} {\s47\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext47 List 1;} {\s50\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 latex picture;} {\s51\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 subfigure;} {\s61\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext62 bibheading;} {\s62\ql\fi-567\li567\sb0\sa0\f0\fs20 \sbasedon0\snext62 bibitem;} {\s64\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext64 endnotes;} {\s65\ql\fi-113\li397\lin397\f0\fs24 \sbasedon0\snext65 footnote text;} {\s66\qj\fi-170\li454\lin454\f0\fs24 \sbasedon0\snext66 endnote text;} {\cs62\super \additive\sbasedon10 footnote reference;} {\cs63\super \additive\sbasedon10 endnote reference;} {\s67\ql\sb60\sa60\keepn\f0\fs24 \sbasedon0\snext67 acronym;} {\s70\qc\sa120\b\f0\fs24 \sbasedon0\snext71 abstract title;} {\s71\qj\li1024\ri1024\fi340\widctlpar\f0\fs24 \sbasedon0\snext0 abstract;} {\s80\ql\sb240\sa120\keepn\f0\b\fs20 \sbasedon0\snext0 contents_heading;} {\s81\ql\li425\tqr\tldot\tx8222\sb240\sa60\keepn\f0\fs24\b \sbasedon0\snext82 toc 1;} {\s82\ql\li512\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs24 \sbasedon0\snext83 toc 2;} {\s83\ql\li1024\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs24 \sbasedon0\snext84 toc 3;} {\s84\ql\li1536\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs24 \sbasedon0\snext85 toc 4;} {\s85\ql\li2048\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs24 \sbasedon0\snext86 toc 5;} {\s86\ql\li2560\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs24 \sbasedon0\snext86 toc 6;} } {\info {\title Original file was misc3.tex} {\doccomm Created using latex2rtf 2.3.18 r1266 (released May 29, 2020) on Sat May 30 17:35:19 2020 } } {\footer\pard\plain\f0\fs24\qc\chpgn\par} \paperw11960\paperh16900\margl2000\margr3060\margt2520\margb1820\pgnstart0\widowctrl\qj\ftnbj\f0\aftnnar {\pard\plain\s20\qc\sb240\sa240\b\f0\fs36\sl240\slmult1 \fi0 Getting Started with {\plain L{\up6\fs19 A}T{\dn7 E}X}\par \pard\plain\s21\qc\sa120\f0\fs24\sl240\slmult1 \fi360 David R. Wilkins\par \pard\plain\s21\qc\sa120\f0\fs24\sl240\slmult1 \fi360 2nd Edition\par \pard\plain\s21\qc\sa120\f0\fs24\sl240\slmult1 \sb60 \fi0 Copyright \'a9 David R. Wilkins 1995\par \pard\plain\s80\ql\sb240\sa120\keepn\f0\b\fs24\sl240\slmult1 \fi0 Contents\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 \par {\field{\*\fldinst TOC \\o "1-3" }{\fldrslt }} \page \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb300 \fi0 1 Introduction to {\plain L{\up6\fs19 A}T{\dn7 E}X}\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb180 \fi0 1.1 What is {\plain L{\up6\fs19 A}T{\dn7 E}X}?\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\plain L{\up6\fs19 A}T{\dn7 E}X} is a computer program for typesetting documents. It takes a computer file, prepared according to the rules of {\plain L{\up6\fs19 A}T{\dn7 E}X}{\charscalex50\~}and converts it to a form that may be printed on a high-quality printer, such as a laser writer, to produce a printed document of a quality comparable with good quality books and journals. Simple documents, which do not contain mathematical formulae or tables may be produced very easily: effectively all one has to do is to type the text straight in (though observing certain rules relating to quotation marks and punctuation dashes). Typesetting mathematics is somewhat more complicated, but even here {\plain L{\up6\fs19 A}T{\dn7 E}X} is comparatively straightforward to use when one considers the complexity of some of the formulae that it has to produce and the large number of mathematical symbols which it has to produce.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\plain L{\up6\fs19 A}T{\dn7 E}X} is one of a number of \lquote dialects\rquote of {\plain T{\dn7 E}X}, all based on the version of {\plain T{\dn7 E}X} created by D. E. Knuth which is known as Plain {\plain T{\dn7 E}X}. {\plain L{\up6\fs19 A}T{\dn7 E}X} (created by L. B. Lamport) is one of these \lquote dialects\rquote . It is particularly suited to the production of long articles and books, since it has facilities for the automatic numbering of chapters, sections, theorems, equations etc., and also has facilities for cross-referencing. It is probably one of the most suitable version of {\plain L{\up6\fs19 A}T{\dn7 E}X} for beginners to use.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 1.2 A Typical {\plain L{\up6\fs19 A}T{\dn7 E}X} Input File\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 In order to produce a document using {\plain L{\up6\fs19 A}T{\dn7 E}X}, we must first create a suitable {\i input file} on the computer. We apply the {\plain L{\up6\fs19 A}T{\dn7 E}X} program to the input file and then use the printer to print out the so-called \lquote DVI\rquote file produced by the {\plain L{\up6\fs19 A}T{\dn7 E}X} program (after first using another program to translate the \lquote DVI\rquote file into a form that the printer can understand). Here is an example of a typical {\plain L{\up6\fs19 A}T{\dn7 E}X} input file: {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\documentclass[a4paper,12pt]\{article\} \par \\begin\{document\} \par \par The foundations of the rigorous study of \\textit\{analysis\} \par were laid in the nineteenth century, notably by the \par mathematicians Cauchy and Weierstrass. Central to the \par study of this subject are the formal definitions of \par \\textit\{limits\} and \\textit\{continuity\}. \par \par Let $D$ be a subset of $\\bf R$ and let \par $f \\colon D \\to \\textbf\{R\}$ be a real-valued function on \par $D$. The function $f$ is said to be \\textit\{continuous\} on \par $D$ if, for all $\\epsilon > 0$ and for all $x \\in D$, \par there exists some $\\delta > 0$ (which may depend on $x$) \par such that if $y \\in D$ satisfies \par \\[ |y - x| < \\delta \\] \par then \par \\[ |f(y) - f(x)| < \\epsilon. \\] \par \par One may readily verify that if $f$ and $g$ are continuous \par functions on $D$ then the functions $f+g$, $f-g$ and \par $f.g$ are continuous. If in addition $g$ is everywhere \par non-zero then $f/g$ is continuous. \par \par \\end\{document\} \par \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 When we apply {\plain L{\up6\fs19 A}T{\dn7 E}X} to these paragraphs we produce the text {\par \fs24 \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi360 The foundations of the rigorous study of {\i analysis} were laid in the nineteenth century, notably by the mathematicians Cauchy and Weierstrass. Central to the study of this subject are the formal definitions of {\i limits} and {\i continuity}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \li512\ri512\fi360 Let {{\i D}} be a subset of {\i0\scaps0\b R} and let {{\i f}: {\i D}{\u8594*}{\b R}} be a real-valued function on {{\i D}}. The function {{\i f}} is said to be {\i continuous} on {{\i D}} if, for all {{\u949*}>0} and for all {{\i x}{\f5\u8712*}{\i D}}, there exists some {{\u948*}>0} (which may depend on {{\i x}}) such that if {{\i y}{\f5\u8712*}{\i D}} satisfies \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \li512\ri512\fi0 \tab |{\i y}\u8722?{\i x}|<{\u948*}\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \li512\ri512\fi0 then \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \li512\ri512\fi0 \tab |{\i f}({\i y})\u8722?{\i f}({\i x})|<{\u949*}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \li512\ri512\fi360 One may readily verify that if {{\i f}} and {{\i g}} are continuous functions on {{\i D}} then the functions {{\i f}+{\i g}}, {{\i f}\u8722?{\i g}} and {{\i f}.{\i g}} are continuous. If in addition {{\i g}} is everywhere non-zero then {{\i f}/{\i g}} is continuous. \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 This example illustrates various features of {\plain L{\up6\fs19 A}T{\dn7 E}X}. Note that the lines {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\documentclass[a4paper,12pt]\{article\} \par \\begin\{document\} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 are placed at the beginning of the input file. These are followed by the main body of the text, followed by the concluding line {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\end\{document\} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 Note also that, although most characters occurring in this file have their usual meaning, yet there are special characters such as {\b0\i0\scaps0\f3 \\}, {\b0\i0\scaps0\f3 $}, {\b0\i0\scaps0\f3 \{} and {\b0\i0\scaps0\f3 \}} which have special meanings within {\plain L{\up6\fs19 A}T{\dn7 E}X}. Note in particular that there are sequences of characters which begin with a \lquote backslash\rquote {\b0\i0\scaps0\f3 \\} which are used to produce mathematical symbols and Greek letters and to accomplish tasks such as changing fonts. These sequences of characters are known as {\i control sequences}.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 1.3 Characters and Control Sequences\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 We now describe in more detail some of the features of {\plain L{\up6\fs19 A}T{\dn7 E}X} illustrated in the above example.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Most characters on the keyboard, such as letters and numbers, have their usual meaning. However the characters {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\ \{ \} $ ^ _ % ~ # & \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 are used for special purposes within {\plain L{\up6\fs19 A}T{\dn7 E}X}. Thus typing one of these characters will not produce the corresponding character in the final document. Of course these characters are very rarely used in ordinary text, and there are methods of producing them when they are required in the final document.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 In order to typeset a mathematical document it is necessary to produce a considerable number of special mathematical symbols. One also needs to be able to change fonts. Also mathematical documents often contain arrays of numbers or symbols (matrices) and other complicated expressions. These are produced in {\plain L{\up6\fs19 A}T{\dn7 E}X} using {\i control sequences}. Most control sequences consist of a backslash {\b0\i0\scaps0\f3 \\} followed by a string of (upper or lower case) letters. For example, {\b0\i0\scaps0\f3 \\alpha}, {\b0\i0\scaps0\f3 \\textit} and {\b0\i0\scaps0\f3 \\sum} are control sequences.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 In the example above we used the control sequences {\b0\i0\scaps0\f3 \\textit} and {\b0\i0\scaps0\f3 \\textbf} to change the font to {\i italic} and {\b boldface} respectively. Also we used the control sequences {\b0\i0\scaps0\f3 \\to}, {\b0\i0\scaps0\f3 \\in}, {\b0\i0\scaps0\f3 \\delta} and {\b0\i0\scaps0\f3 \\epsilon} to produce the mathematical symbols {{\u8594*}} and {{\f5\u8712*}} and the Greek letters {{\u948*}} and {{\u949*}}\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 There is another variety of control sequence which consists of a backslash followed by a {\i single} character that is not a letter. Examples of control sequences of this sort are {\b0\i0\scaps0\f3 \\\{}, {\b0\i0\scaps0\f3 \\"} and {\b0\i0\scaps0\f3 \\$}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 The special characters {\b0\i0\scaps0\f3 \{} and {\b0\i0\scaps0\f3 \}} are used for {\i grouping} purposes. Everything enclosed within matching pair of such brackets is treated as a single unit. We have applied these brackets in the example above whenever we changed fonts. We shall see other instances where one needs to use {\b0\i0\scaps0\f3 \{} and {\b0\i0\scaps0\f3 \}} in {\plain L{\up6\fs19 A}T{\dn7 E}X} to group words and symbols together (e.g., when we need to produce superscripts and subscripts which contain more than one symbol).\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 The special character {\b0\i0\scaps0\f3 $} is used when one is changing from ordinary text to a mathematical expression and when one is changing back to ordinary text. Thus we used {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par for all $\\epsilon > 0$ and for all $x \\in D$, \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 to produce the phrase {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi360 for all {{\u949*}>0} and for all {{\i x}{\f5\u8712*}{\i D}}, \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 in the example given above. Note also that we used {\b0\i0\scaps0\f3 \\[} and {\b0\i0\scaps0\f3 \\]} in the example above to mark the beginning and end respectively of a mathematical formula that is displayed on a separate line.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 The remaining special characters {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par ^ _ % ~ # & \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 have special purposes within {\plain L{\up6\fs19 A}T{\dn7 E}X} that we shall discuss later.\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 2 Producing Simple Documents using {\plain L{\up6\fs19 A}T{\dn7 E}X}\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb180 \fi0 2.1 Producing a {\plain L{\up6\fs19 A}T{\dn7 E}X} Input File\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 We describe the structure of a typical {\plain L{\up6\fs19 A}T{\dn7 E}X} input file.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 The first line of the input file should consist of a {\b0\i0\scaps0\f3 \\documentclass} command. The recommended such {\b0\i0\scaps0\f3 \\documentclass} command for mathematical articles and similar documents has the form {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\documentclass[a4paper,12pt]\{article\} \par \par }}(\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 You do not have to worry about what this command means when first learning to use {\plain L{\up6\fs19 A}T{\dn7 E}X}: its effect is to ensure that the final document is correctly positioned on A4 size paper and that the text is of a size that is easy to read.) There are variants of this {\b0\i0\scaps0\f3 \\documentclass} command which are appropriate for letters or for books.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 The {\b0\i0\scaps0\f3 documentstyle} command may be followed by certain other optional commands, such as the {\b0\i0\scaps0\f3 \\pagestyle} command. It is not necessary to find out about these commands when first learning to use {\plain L{\up6\fs19 A}T{\dn7 E}X}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 After the {\b0\i0\scaps0\f3 \\documentclass} command and these other optional commands, we place the command {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\begin\{document\} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi360 This command is then followed by the main body of the text, in the format prescribed by the rules of {\plain L{\up6\fs19 A}T{\dn7 E}X}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Finally, we end the input file with a line containing the command {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\end\{document\} \par \par }}\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 2.2 Producing Ordinary Text using {\plain L{\up6\fs19 A}T{\dn7 E}X}\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 To produce a simple document using {\plain L{\up6\fs19 A}T{\dn7 E}X} one should create a {\plain L{\up6\fs19 A}T{\dn7 E}X} input file, beginning with a {\b0\i0\scaps0\f3 \\documentclass} command and the {\b0\i0\scaps0\f3 \\begin\{document\}} command, as described above. The input file should end with the {\b0\i0\scaps0\f3 \\end\{document\}} command, and the text of the document should be sandwiched between the {\b0\i0\scaps0\f3 \\begin\{document\}} and {\b0\i0\scaps0\f3 \\end\{document\}} commands in the manner described below.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 If one merely wishes to type in ordinary text, without complicated mathematical formulae or special effects such as font changes, then one merely has to type it in as it is, leaving a completely blank line between successive paragraphs. You do not have to worry about paragraph indentation: {\plain L{\up6\fs19 A}T{\dn7 E}X} will automatically indent all paragraphs with the exception of the first paragraph of a new section (unless you take special action to override the conventions adopted by {\plain L{\up6\fs19 A}T{\dn7 E}X}) \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 For example, suppose that we wish to create a document containing the following paragraphs: {\par \fs24 \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 If one merely wishes to type in ordinary text, without complicated mathematical formulae or special effects such as font changes, then one merely has to type it in as it is, leaving a completely blank line between successive paragraphs.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \li512\ri512\fi360 You do not have to worry about paragraph indentation: all paragraphs will be indented with the exception of the first paragraph of a new section. One must take care to distinguish between the \lquote left quote\rquote and the \lquote right quote\rquote on the computer terminal. Also, one should use two \lquote single quote\rquote characters in succession if one requires \ldblquote double quotes\rdblquote . One should never use the (undirected) \lquote double quote\rquote character on the computer terminal, since the computer is unable to tell whether it is a \lquote left quote\rquote or a \lquote right quote\rquote . One also has to take care with dashes: a single dash is used for hyphenation, whereas three dashes in succession are required to produce a dash of the sort used for punctuation\emdash such as the one used in this sentence. \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 To create this document using {\plain L{\up6\fs19 A}T{\dn7 E}X} we use the following input file: {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\documentclass[a4paper,12pt]\{article\} \par \\begin\{document\} \par \par If one merely wishes to type in ordinary text, without \par complicated mathematical formulae or special effects such \par as font changes, then one merely has to type it in as it \par is, leaving a completely blank line between successive \par paragraphs. \par \par You do not have to worry about paragraph indentation: \par all paragraphs will be indented with the exception of \par the first paragraph of a new section. \par \par One must take care to distinguish between the `left quote' \par and the `right quote' on the computer terminal. Also, one \par should use two `single quote' characters in succession if \par one requires ``double quotes''. One should never use the \par (undirected) `double quote' character on the computer \par terminal, since the computer is unable to tell whether it \par is a `left quote' or a `right quote'. One also has to \par take care with dashes: a single dash is used for \par hyphenation, whereas three dashes in succession are required \par to produce a dash of the sort used for punctuation---such as \par the one used in this sentence. \par \par \\end\{document\} \par \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi360 Having created the input file, one then has to run it through the {\plain L{\up6\fs19 A}T{\dn7 E}X} program and then print it out the resulting output file (known as a \lquote DVI\rquote file).\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 2.3 Blank Spaces and Carriage Returns in the Input File\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\plain L{\up6\fs19 A}T{\dn7 E}X} treats the carriage return at the end of a line as though it were a blank space. Similarly {\plain L{\up6\fs19 A}T{\dn7 E}X} treats tab characters as blank spaces. Moreover, {\plain L{\up6\fs19 A}T{\dn7 E}X} regards a sequence of blank spaces as though it were a single space, and similarly it will ignore blank spaces at the beginning or end of a line in the input file. Thus, for example, if we type {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par This is \par a \par silly \par example of a \par file with many spaces. \par \par \par This is the beginning \par of a new paragraph. \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 then we obtain {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi360 This is a silly example of a file with many spaces.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \li512\ri512\fi360 This is the beginning of a new paragraph. \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 It follows immediately from this that one will obtain the same results whether one types one space or two spaces after a full stop: {\plain L{\up6\fs19 A}T{\dn7 E}X} does not distinguish between the two cases.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Any spaces which follow a control sequence will be ignored by {\plain L{\up6\fs19 A}T{\dn7 E}X}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 If you really need a blank space in the final document following whatever is produced by the control sequence, then you must precede this blank by a {\i backslash} {\b0\i0\scaps0\f3 \\}. Thus in order to obtain the sentence {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi360 {\plain L{\up6\fs19 A}T{\dn7 E}X} is a very powerful computer typesetting program. \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 we must type {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\LaTeX\\ is a very powerful computer typesetting program. \par \par }}(\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 Here the control sequence {\b0\i0\scaps0\f3 TeX} is used to produce the {\plain L{\up6\fs19 A}T{\dn7 E}X} logo.)\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 In general, preceding a blank space by a backslash forces {\plain L{\up6\fs19 A}T{\dn7 E}X} to include the blank space in the final document.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 As a general rule, you should never put a blank space after a left parenthesis or before a right parenthesis. If you were to put a blank space in these places, then you run the risk that {\plain L{\up6\fs19 A}T{\dn7 E}X} might start a new line immediately after the left parenthesis or before the right parenthesis, leaving the parenthesis marooned at the beginning or end of a line.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 2.4 Quotation Marks and Dashes\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 Single quotation marks are produced in {\plain L{\up6\fs19 A}T{\dn7 E}X} using {\b0\i0\scaps0\f3 `} and {\b0\i0\scaps0\f3 '}. Double quotation marks are produced by typing {\b0\i0\scaps0\f3 ``} and {\b0\i0\scaps0\f3 ''}. (The \lquote undirected double quote character {\b0\i0\scaps0\f3 "} produces double right quotation marks: it should {\i never} be used where left quotation marks are required.)\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\plain L{\up6\fs19 A}T{\dn7 E}X} allows you to produce dashes of various length, known as \lquote hyphens\rquote , \lquote en-dashes\rquote and \lquote em-dashes\rquote . Hyphens are obtained in {\plain L{\up6\fs19 A}T{\dn7 E}X} by typing {\b0\i0\scaps0\f3 -}, en-dashes by typing {\b0\i0\scaps0\f3 --} and em-dashes by typing {\b0\i0\scaps0\f3 ---}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 One normally uses en-dashes when specifying a range of numbers. Thus for example, to specify a range of page numbers, one would type {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par on pages 155--219. \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi360 Dashes used for punctuating are often typeset as em-dashes, especially in older books. These are obtained by typing {\b0\i0\scaps0\f3 ---}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 The dialogue {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi360 \ldblquote You {\i were} a little grave,\rdblquote said Alice.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \li512\ri512\fi360 \ldblquote Well just then I was inventing a new way of getting over a gate\emdash would you like to hear it?\rdblquote \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \li512\ri512\fi360 \ldblquote Very much indeed,\rdblquote Alice said politely.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \li512\ri512\fi360 \ldblquote I\rquote ll tell you how I came to think of it,\rdblquote said the Knight. \ldblquote You see, I said to myself \lquote The only difficulty is with the feet: the {\i head} is high enough already.\rquote Now, first I put my head on the top of the gate\emdash then the head\rquote s high enough\emdash then I stand on my head\emdash then the feet are high enough, you see\emdash then I\rquote m over, you see.\rdblquote \par }(\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 taken from {\i Alice through the Looking Glass}, by Lewis Carroll) illustrates the use of quotation marks and dashes. It is obtained in {\plain L{\up6\fs19 A}T{\dn7 E}X} from the following input: {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par ``You \\emph\{were\} a little grave,'' said Alice. \par \par ``Well just then I was inventing a new way of \par getting over a gate---would you like to hear it?'' \par \par ``Very much indeed,'' Alice said politely. \par \par ``I'll tell you how I came to think of it,'' said \par the Knight. ``You see, I said to myself `The only \par difficulty is with the feet: the \\emph\{head\} is \par high enough already.' Now, first I put my head on \par the top of the gate---then the head's high \par enough---then I stand on my head---then the feet \par are high enough, you see---then I'm over, you see.'' \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi360 Sometimes you need single quotes immediately following double quotes, or vica versa, as in {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi360 \ldblquote I regard computer typesetting as being reasonably \lquote straightforward\rquote {\charscalex50\~}\rdblquote he said. \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 The way to typeset this correctly in {\plain L{\up6\fs19 A}T{\dn7 E}X} is to use the control sequence {\b0\i0\scaps0\f3 \\,} between the quotation marks, so as to obtain the necessary amount of separation. The above example is thus produced with the input {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par ``I regard computer typesetting as being reasonably \par `straightforward'\\,'' he said. \par \par }}\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 2.5 Section Headings in {\plain L{\up6\fs19 A}T{\dn7 E}X}\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 Section headings of various sizes are produced (in the {\b article} document style) using the commands {\b0\i0\scaps0\f3 \\section},{\b0\i0\scaps0\f3 \\subsection} and {\b0\i0\scaps0\f3 \\subsubsection} commands. {\plain L{\up6\fs19 A}T{\dn7 E}X} will number the sections and subsections automatically. The title of the section should be surrounded by curly brackets and placed immediately after the relevant command. Thus if we type {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\section\{Section Headings\} \par \par We explain in this section how to obtain headings \par for the various sections and subsections of our \par document. \par \par \\subsection\{Headings in the `article' Document Style\} \par \par In the `article' style, the document may be divided up \par into sections, subsections and subsubsections, and each \par can be given a title, printed in a boldface font, \par simply by issuing the appropriate command. \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 then the title of the section and that of the subsection will be printed in a large boldface font, and will be numbered accordingly.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Other document styles (such as the {\b book} and {\b letter} styles) have other \lquote sectioning\rquote commands available (for example, the {\b book} style has a {\b0\i0\scaps0\f3 \\chapter} command for beginning a new chapter).\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Sometimes one wishes to suppress the automatic numbering provided by {\plain L{\up6\fs19 A}T{\dn7 E}X}. This can be done by placing an asterisk before the title of the section or subsection. Thus, for example, the section numbers in the above example could be suppressed by typing {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\section*\{Section Headings\} \par \par We explain in this section how to obtain headings \par for the various sections and subsections of our \par document. \par \par \\subsection*\{Headings in the `article' Document Style\} \par \par In the `article' style, the document may be divided up \par into sections, subsections and subsubsections, and each \par can be given a title, printed in a boldface font, \par simply by issuing the appropriate command. \par \par }}\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 2.6 Changing Fonts in Text Mode\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\plain L{\up6\fs19 A}T{\dn7 E}X} has numerous commands for changing the typestyle. The most useful of these is {\b0\i0\scaps0\f3 \\emph\{}{\i text}{\b0\i0\scaps0\f3 \}} which {\i emphasizes} some piece of text, setting it usually in an {\i italic font} (unless the surrounding text is already italicized). Thus for example, the text {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi360 The basic results and techniques of {\i Calculus} were discovered and developed by {\i Newton} and {\i Leibniz}, though many of the basic ideas can be traced to earlier work of {\i Cavalieri}, {\i Fermat}, {\i Barrow} and others. \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 is obtained by typing {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par The basic results and techniques of \\emph\{Calculus\} \par were discovered and developed by \\emph\{Newton\} \par and \\emph\{Leibniz\}, though many of the basic ideas \par can be traced to earlier work of \\emph\{Cavalieri\}, \par \\emph\{Fermat\}, \\emph\{Barrow\} and others. \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi360 Another useful font-changing command is {\b0\i0\scaps0\f3 \\textbf\{}{\i text}{\b0\i0\scaps0\f3 \}}, which typesets the specified portion of text in {\b boldface}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 A {\i font family} or {\i typeface} in {\plain L{\up6\fs19 A}T{\dn7 E}X} consists of a collection of related fonts characterized by {\i size}, {\i shape} and {\i series}. The font families available in {\plain L{\up6\fs19 A}T{\dn7 E}X} include {\f0 roman}, {\f2 sans serif} and {\f3 typewriter}: {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab {\f0 Roman is normally the default family and includes {\i0\b0\scaps0 upright}, {\i italic}, {\i slanted}, {\scaps small caps} and {\b boldface} fonts of various sizes.} \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab {\f2 There is a sans serif family with {\i0\b0\scaps0 upright}, {\i slanted} and {\b boldface} fonts of various sizes.} \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab {\f3 There is a typewriter family with {\i0\b0\scaps0 upright}, {\i italic}, {\i slanted}\line and {\scaps small caps} fonts of various sizes.} \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 The sizes of fonts used in {\plain L{\up6\fs19 A}T{\dn7 E}X} are can be determined and changed by means of the control sequences {\b0\i0\scaps0\f3 \\tiny}, {\b0\i0\scaps0\f3 \\scriptsize}, {\b0\i0\scaps0\f3 \\footnotesize}, {\b0\i0\scaps0\f3 \\small}, {\b0\i0\scaps0\f3 \\normalsize}, {\b0\i0\scaps0\f3 \\large}, {\b0\i0\scaps0\f3 \\Large}, {\b0\i0\scaps0\f3 \\LARGE}, {\b0\i0\scaps0\f3 \\huge} and {\b0\i0\scaps0\f3 \\HUGE}: {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi360 {\fs12 This text is {\f3 tiny}}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \li512\ri512\fi360 {\fs17 This text is {\f3 scriptsize}}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \li512\ri512\fi360 {\fs19 This text is {\f3 footnotesize}}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \li512\ri512\fi360 {\fs22 This text is {\f3 small}}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \li512\ri512\fi360 {\fs24 This text is {\f3 normalsize}}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \li512\ri512\fi360 {\fs29 This text is {\f3 large}}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \li512\ri512\fi360 {\fs34 This text is {\f3 Large}}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \li512\ri512\fi360 {\fs41 This text is {\f3 LARGE}}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \li512\ri512\fi360 {\fs48 This text is {\f3 huge}}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \li512\ri512\fi360 {\fs60 This text is {\f3 Huge}}. \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb180 \fi360 The {\i shape} of a font can be {\i0\b0\scaps0 upright}, {\i italic}, {\i slanted} or {\scaps small caps}: {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab {\i0\b0\scaps0 The LaTeX command} {\b0\i0\scaps0\f3 \\textup\{}{\i text}{\b0\i0\scaps0\f3 \}} {\i0\b0\scaps0 typesets the specified text with an upright shape: this is normally the default shape.} \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab {\i The LaTeX command} {\b0\i0\scaps0\f3 \\textit\{}{\i text}{\b0\i0\scaps0\f3 \}} {\i typesets the specified text with an italic shape.} \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab {\i The LaTeX command} {\b0\i0\scaps0\f3 \\textsl\{}{\i text}{\b0\i0\scaps0\f3 \}} {\i typesets the specified text with a slanted shape: slanted text is similar to italic.} \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab {\scaps The LaTeX command} {\b0\i0\scaps0\f3 \\textsc\{}{\i text}{\b0\i0\scaps0\f3 \}} {\scaps typesets the specified text with a small caps shape in which all letters are capitals (with uppercase letters taller than lowercase letters).} \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 The {\i series} of a font can be {\b0 medium} (the default) or {\b boldface}: {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab {\i0\b0\scaps0 The LaTeX command} {\b0\i0\scaps0\f3 \\textmd\{}{\i text}{\b0\i0\scaps0\f3 \}} {\b0 typesets the specified text with a medium series font.} \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab {\b The LaTeX command} {\b0\i0\scaps0\f3 \\textbf\{}{\i text}{\b0\i0\scaps0\f3 \}} {\b typesets the specified text with a boldface series font.} \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 If the necessary fonts are available, one can combine changes to the size, shape and series of a font, for example producing {\b {\i boldface slanted text}} by typing {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\textbf\{\\textsl\{boldface slanted text\}\}. \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi360 There are in {\plain L{\up6\fs19 A}T{\dn7 E}X} font declarations corresponding to the the font-changing commands described above. When included in the {\plain L{\up6\fs19 A}T{\dn7 E}X} input such declarations determine the type-style of the subsequent text (till the next font declaration or the end of the current \lquote group\rquote delimited by curly brackets or by appropriate {\b0\i0\scaps0\f3 \\begin} and {\b0\i0\scaps0\f3 \\end} commands). Here is a list of font-changing commands and declarations in text mode: {\par {\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par {\trowd\cellx1614\cellx3661\cellx6898 {\pard\intbl\ql {{\i Command}}\cell} {\pard\intbl\ql {{\i Declaration}}\cell} {\pard\intbl\ql {}\cell} \row} {\trowd\cellx1614\cellx3661\cellx6898 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\textrm}}\cell} {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\rmfamily}}\cell} {\pard\intbl\ql {{\f0 Roman family}}\cell} \row} {\trowd\cellx1614\cellx3661\cellx6898 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\textsf}}\cell} {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\sffamily}}\cell} {\pard\intbl\ql {{\f2 Sans serif family}}\cell} \row} {\trowd\cellx1614\cellx3661\cellx6898 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\texttt}}\cell} {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\ttfamily}}\cell} {\pard\intbl\ql {{\f3 Typewriter family}}\cell} \row} {\trowd\cellx1614\cellx3661\cellx6898 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\textup}}\cell} {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\upshape}}\cell} {\pard\intbl\ql {{\i0\scaps0 Upright shape}}\cell} \row} {\trowd\cellx1614\cellx3661\cellx6898 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\textit}}\cell} {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\itshape}}\cell} {\pard\intbl\ql {{\scaps0\i Italic shape}}\cell} \row} {\trowd\cellx1614\cellx3661\cellx6898 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\textsl}}\cell} {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\slshape}}\cell} {\pard\intbl\ql {{\scaps0\i Slanted shape}}\cell} \row} {\trowd\cellx1614\cellx3661\cellx6898 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\textsc}}\cell} {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\scshape}}\cell} {\pard\intbl\ql {{\scaps Small caps shape}}\cell} \row} {\trowd\cellx1614\cellx3661\cellx6898 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\textmd}}\cell} {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\mdseries}}\cell} {\pard\intbl\ql {{\b0 Medium series}}\cell} \row} {\trowd\cellx1614\cellx3661\cellx6898 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\textbf}}\cell} {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\bfseries}}\cell} {\pard\intbl\ql {{\b Boldface series}}\cell} \row} } \par }\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb180 \fi0 2.7 Accents used in Text\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 There are a variety of control sequences for producing accents. For example, the control sequence {\b0\i0\scaps0\f3 \\'\{o\}} produces an acute accent on the letter {\b0\i0\scaps0\f3 o}. Thus typing {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par Se\\'\{a\}n \\'\{O\} Cinn\\'\{e\}ide. \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 produces {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi360 Se\'e1n \'d3 Cinn\'e9ide. \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 Similarly we use the control sequence {\b0\i0\scaps0\f3 \\`} to produce the grave accent in \lquote alg\'e8bre\rquote and we use {\b0\i0\scaps0\f3 \\"} to produce the umlaut in \lquote Universit\'e4t\rquote . The accents provided by {\plain L{\up6\fs19 A}T{\dn7 E}X} include the following: {\par {\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par {\trowd\cellx1259\cellx1894\cellx6899 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\'\{e\}}}\cell} {\pard\intbl\ql {\'e9}\cell} {\pard\intbl\ql {e.g., {\b0\i0\scaps0\f3 math\\'\{e\}matique} yields \lquote math\'e9matique\rquote }\cell} \row} {\trowd\cellx1259\cellx1894\cellx6899 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\`\{e\}}}\cell} {\pard\intbl\ql {\'e8}\cell} {\pard\intbl\ql {e.g., {\b0\i0\scaps0\f3 alg\\`\{e\}bre} yields \lquote alg\'e8bre\rquote }\cell} \row} {\trowd\cellx1259\cellx1894\cellx6899 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\^\{e\}}}\cell} {\pard\intbl\ql {\'ea}\cell} {\pard\intbl\ql {e.g., {\b0\i0\scaps0\f3 h\\^\{o\}te} yields \lquote h\'f4te\rquote }\cell} \row} {\trowd\cellx1259\cellx1894\cellx6899 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\"\{o\}}}\cell} {\pard\intbl\ql {\'f6}\cell} {\pard\intbl\ql {e.g., {\b0\i0\scaps0\f3 H\\"\{o\}lder} yields \lquote H\'f6lder\rquote }\cell} \row} {\trowd\cellx1259\cellx1894\cellx6899 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\~\{n\}}}\cell} {\pard\intbl\ql {\'f1}\cell} {\pard\intbl\ql {e.g., {\b0\i0\scaps0\f3 ma\\~\{n\}ana} yields \lquote ma\'f1ana\rquote }\cell} \row} {\trowd\cellx1259\cellx1894\cellx6899 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\=\{o\}}}\cell} {\pard\intbl\ql {\u333o}\cell} {\pard\intbl\ql {}\cell} \row} {\trowd\cellx1259\cellx1894\cellx6899 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\.\{o\}}}\cell} {\pard\intbl\ql {\u559o}\cell} {\pard\intbl\ql {}\cell} \row} {\trowd\cellx1259\cellx1894\cellx6899 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\u\{o\}}}\cell} {\pard\intbl\ql {\u335o}\cell} {\pard\intbl\ql {}\cell} \row} {\trowd\cellx1259\cellx1894\cellx6899 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\v\{c\}}}\cell} {\pard\intbl\ql {\u269c}\cell} {\pard\intbl\ql {e.g., {\b0\i0\scaps0\f3 \\v\{C\}ech} yields \lquote \u268Cech\rquote }\cell} \row} {\trowd\cellx1259\cellx1894\cellx6899 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\H\{o\}}}\cell} {\pard\intbl\ql {\u337o}\cell} {\pard\intbl\ql {}\cell} \row} {\trowd\cellx1259\cellx1894\cellx6899 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\t\{oo\}}}\cell} {\pard\intbl\ql {{oo}}\cell} {\pard\intbl\ql {}\cell} \row} {\trowd\cellx1259\cellx1894\cellx6899 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\c\{c\}}}\cell} {\pard\intbl\ql {\'e7}\cell} {\pard\intbl\ql {e.g., {\b0\i0\scaps0\f3 gar\\c\{c\}on} yields \lquote gar\'e7on\rquote }\cell} \row} {\trowd\cellx1259\cellx1894\cellx6899 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\d\{o\}}}\cell} {\pard\intbl\ql {\u7885o}\cell} {\pard\intbl\ql {}\cell} \row} {\trowd\cellx1259\cellx1894\cellx6899 {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\b\{o\}}}\cell} {\pard\intbl\ql {\u817_o}\cell} {\pard\intbl\ql {}\cell} \row} } \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 These accents are for use in ordinary text. They cannot be used within mathematical formulae, since different control sequences are used to produce accents within mathematics.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 The control sequences {\b0\i0\scaps0\f3 \\i} and {\b0\i0\scaps0\f3 \\j} produce dotless \lquote i\rquote and \lquote j\rquote . These are required when placing an accent on the letter. Thus \'ed is produced by typing {\b0\i0\scaps0\f3 \\'\{\\i\}}.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 2.8 Active Characters and Special Symbols in Text\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 The \lquote active characters\rquote {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par # $ % & \\ ^ _ \{ \} ~ \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 have special purposes within {\plain L{\up6\fs19 A}T{\dn7 E}X}. Thus they cannot be produced in the final document simply by typing them directly. On the rare occasions when one needs to use the special characters {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi360 # $ % & _ \{ \} \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 in the final document, they can be produced by typing the control sequences {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\# \\$ \\% \\& \\_ \\\{ \\\} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 respectively. However the characters {\b0\i0\scaps0\f3 \\}, {\b0\i0\scaps0\f3 ^} and {\b0\i0\scaps0\f3 ~} cannot be produced simply by preceding them with a backslash. They can however be produced using {\b0\i0\scaps0\f3 \\char92} (in the {\b0\i0\scaps0\f3 \\texttt} font only), {\b0\i0\scaps0\f3 \\char94} and {\b0\i0\scaps0\f3 \\char126} respectively. (The decimal numbers 92, 94 and 126 are the ASCII codes of these characters.)\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Other special symbols can be introduced into text using the appropriate control sequences: {\par {\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par {\trowd\clbrdrb\brdrs\clbrdrr\brdrs\cellx2744\clbrdrl\brdrs\clbrdrb\brdrs\cellx6899 {\pard\intbl\ql {{\i Symbol}}\cell} {\pard\intbl\ql {{\i Control Sequence}}\cell} \row} {\trowd\clbrdrr\brdrs\cellx2744\clbrdrl\brdrs\cellx6899 {\pard\intbl\ql { \'9c, \'8c}\cell} {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\oe, \\OE}}\cell} \row} {\trowd\clbrdrr\brdrs\cellx2744\clbrdrl\brdrs\cellx6899 {\pard\intbl\ql {\'e6, \'c6}\cell} {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\ae, \\AE}}\cell} \row} {\trowd\clbrdrr\brdrs\cellx2744\clbrdrl\brdrs\cellx6899 {\pard\intbl\ql {\'e5, \'c5}\cell} {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\aa, \\AA}}\cell} \row} {\trowd\clbrdrr\brdrs\cellx2744\clbrdrl\brdrs\cellx6899 {\pard\intbl\ql {\'f8, \'d8}\cell} {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\o, \\O}}\cell} \row} {\trowd\clbrdrr\brdrs\cellx2744\clbrdrl\brdrs\cellx6899 {\pard\intbl\ql {\u323?, \u322?}\cell} {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\l, \\L}}\cell} \row} {\trowd\clbrdrr\brdrs\cellx2744\clbrdrl\brdrs\cellx6899 {\pard\intbl\ql {\'df}\cell} {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\ss}}\cell} \row} {\trowd\clbrdrr\brdrs\cellx2744\clbrdrl\brdrs\cellx6899 {\pard\intbl\ql {\'bf }\cell} {\pard\intbl\ql {{\b0\i0\scaps0\f3 ?`}}\cell} \row} {\trowd\clbrdrr\brdrs\cellx2744\clbrdrl\brdrs\cellx6899 {\pard\intbl\ql {\'a1 }\cell} {\pard\intbl\ql {{\b0\i0\scaps0\f3 !`}}\cell} \row} {\trowd\clbrdrr\brdrs\cellx2744\clbrdrl\brdrs\cellx6899 {\pard\intbl\ql {\'86}\cell} {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\dag}}\cell} \row} {\trowd\clbrdrr\brdrs\cellx2744\clbrdrl\brdrs\cellx6899 {\pard\intbl\ql {\'87}\cell} {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\ddag}}\cell} \row} {\trowd\clbrdrr\brdrs\cellx2744\clbrdrl\brdrs\cellx6899 {\pard\intbl\ql {\'a7}\cell} {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\S}}\cell} \row} {\trowd\clbrdrr\brdrs\cellx2744\clbrdrl\brdrs\cellx6899 {\pard\intbl\ql {\'b6}\cell} {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\P}}\cell} \row} {\trowd\clbrdrr\brdrs\cellx2744\clbrdrl\brdrs\cellx6899 {\pard\intbl\ql {\'a9}\cell} {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\copyright}}\cell} \row} {\trowd\clbrdrr\brdrs\cellx2744\clbrdrl\brdrs\cellx6899 {\pard\intbl\ql {\'a3}\cell} {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\pounds}}\cell} \row} {\trowd\clbrdrr\brdrs\cellx2744\clbrdrl\brdrs\cellx6899 {\pard\intbl\ql {\u305i}\cell} {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\i}}\cell} \row} {\trowd\clbrdrr\brdrs\cellx2744\clbrdrl\brdrs\cellx6899 {\pard\intbl\ql {\u567j}\cell} {\pard\intbl\ql {{\b0\i0\scaps0\f3 \\j}}\cell} \row} } \par }\pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb300 \fi0 3 Producing Mathematical Formulae using {\plain L{\up6\fs19 A}T{\dn7 E}X}\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb180 \fi0 3.1 Mathematics Mode\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 In order to obtain a mathematical formula using {\plain L{\up6\fs19 A}T{\dn7 E}X}, one must enter {\i mathematics mode} before the formula and leave it afterwards. Mathematical formulae can occur either embedded in text or else displayed between lines of text. When a formula occurs within the text of a paragraph one should place a {\b0\i0\scaps0\f3 $} sign before and after the formula, in order to enter and leave mathematics mode. Thus to obtain a sentence like {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi360 Let {{\i f}} be the function defined by {{\i f}({\i x})=3{\i x}+7}, and let {{\i a}} be a positive real number. \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 one should type {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par Let $f$ be the function defined by $f(x) = 3x + 7$, and \par let $a$ be a positive real number. \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 In particular, note that even mathematical expressions consisting of a single character, like {{\i f}} and {{\i a}} in the example above, are placed within {\b0\i0\scaps0\f3 $} signs. This is to ensure that they are set in italic type, as is customary in mathematical typesetting.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\plain L{\up6\fs19 A}T{\dn7 E}X} also allows you to use {\b0\i0\scaps0\f3 \\(} and {\b0\i0\scaps0\f3 \\)} to mark the beginning and the end respectively of a mathematical formula embedded in text. Thus {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi360 Let {{\i f}} be the function defined by {{\i f}({\i x})=3{\i x}+7}. \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 may be produced by typing {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par Let \\( f \\) be the function defined by \\( f(x) = 3x + 7 \\). \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 However this use of {\b0\i0\scaps0\f3 \\(} ... {\b0\i0\scaps0\f3 \\)} is only permitted in {\plain L{\up6\fs19 A}T{\dn7 E}X}: other dialects of TeX such as Plain {\plain T{\dn7 E}X} and AmSTeX use {\b0\i0\scaps0\f3 $} ... {\b0\i0\scaps0\f3 $}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 In order to obtain a mathematical formula or equation which is displayed on a line by itself, one places {\b0\i0\scaps0\f3 \\[} before and {\b0\i0\scaps0\f3 \\]} after the formula. Thus to obtain {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi360 If {{\i f}({\i x})=3{\i x}+7} and {{\i g}({\i x})={\i x}+4} then \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \li512\ri512\fi0 \tab {\i f}({\i x})+{\i g}({\i x})=4{\i x}+11\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \li512\ri512\fi0 and \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \li512\ri512\fi0 \tab {\field{\*\fldinst{ EQ {\i f}({\i x}){\i g}({\i x})=3{\i x}\\s\\up6({\fs20 2})+19{\i x}+28.}}{\fldrslt }} \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 one would type {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par If $f(x) = 3x + 7$ and $g(x) = x + 4$ then \par \\[ f(x) + g(x) = 4x + 11 \\] \par and \par \\[ f(x)g(x) = 3x^2 + 19x +28. \\] \par \par }}(\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 Here the character {\b0\i0\scaps0\f3 ^} is used to obtain a superscript.)\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\plain L{\up6\fs19 A}T{\dn7 E}X} provides facilities for the automatic numbering of displayed equations. If you want an numbered equation then you use {\b0\i0\scaps0\f3 \\begin\{equation\}} and {\b0\i0\scaps0\f3 \\end\{equation\}} instead of using {\b0\i0\scaps0\f3 \\[} and {\b0\i0\scaps0\f3 \\]} . Thus {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par If $f(x) = 3x + 7$ and $g(x) = x + 4$ then \par \\begin\{equation\} \par f(x) + g(x) = 4x + 11 \par \\end\{equation\} \par and \par \\begin\{equation\} \par f(x)g(x) = 3x^2 + 19x +28. \par \\end\{equation\} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 produces {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi360 If {{\i f}({\i x})=3{\i x}+7} and {{\i g}({\i x})={\i x}+4} then {\par \pard\plain\s12\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\tqr\tx6900\sl240\slmult1 \li512\ri512\fi0 \tab {\i f}({\i x})+{\i g}({\i x})=4{\i x}+11\tab{\b0 (1)}\par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \li512\ri512\fi0 and {\par \pard\plain\s12\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\tqr\tx6900\sl240\slmult1 \li512\ri512\fi0 \tab {\field{\*\fldinst{ EQ {\i f}({\i x}){\i g}({\i x})=3{\i x}\\s\\up6({\fs20 2})+19{\i x}+28.}}{\fldrslt }} \tab{\b0 (2)}\par }}\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb180 \fi0 3.2 Characters in Mathematics Mode\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 All the characters on the keyboard have their standard meaning in mathematics mode, with the exception of the characters {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par # $ % & ~ _ ^ \\ \{ \} ' \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 Letters are set in italic type. In mathematics mode the character {\b0\i0\scaps0\f3 '} has a special meaning: typing {\b0\i0\scaps0\f3 $u' + v''$} produces {{\i u}'+{\i v}''} When in mathematics mode the spaces you type between letters and other symbols do not affect the spacing of the final result, since {\plain L{\up6\fs19 A}T{\dn7 E}X} determines the spacing of characters in formulae by its own internal rules. Thus {\b0\i0\scaps0\f3 $u v + w = x$} and {\b0\i0\scaps0\f3 $uv+w=x$} both produce {{\i u}{\i v}+{\i w}={\i x}} You can also type carriage returns where necessary in your input file (e.g., if you are typing in a complicated formula with many Greek characters and funny symbols) and this will have no effect on the final result if you are in mathematics mode.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 To obtain the characters {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par # $ % & _ \{ \} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 in mathematics mode, one should type {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\# \\$ \\% \\& \\_ \\\{ \\\} . \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 To obtain {\b0\i0\scaps0\f3 \\} in mathematics mode, one may type {\b0\i0\scaps0\f3 \\backslash}.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 3.3 Superscripts and Subscripts\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 Subscripts and superscripts are obtained using the special characters {\b0\i0\scaps0\f3 _} and {\b0\i0\scaps0\f3 ^} respectively. Thus the identity \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ {\i d}{\i s}\\s\\up6({\fs20 2})={\i d}{\i x}\\s\\up({\fs20 2,1})+{\i d}{\i x}\\s\\up({\fs20 2,2})+{\i d}{\i x}\\s\\up({\fs20 2,3})\u8722?{\i c}\\s\\up6({\fs20 2}){\i d}{\i t}\\s\\up6({\fs20 2})}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 is obtained by typing {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\[ ds^2 = dx_1^2 + dx_2^2 + dx_3^2 - c^2 dt^2 \\] \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 It can also be obtained by typing {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\[ ds^2 = dx^2_1 + dx^2_2 + dx^2_3 - c^2 dt^2 \\] \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 since, when a superscript is to appear above a subscript, it is immaterial whether the superscript or subscript is the first to be specified.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Where more than one character occurs in a superscript or subscript, the characters involved should be enclosed in curly brackets. For example, the polynomial {{\field{\*\fldinst{ EQ {\i x}\\s\\up6({\fs20 17})\u8722?1}}{\fldrslt }} } is obtained by typing {\b0\i0\scaps0\f3 $x^\{17\} - 1$}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 One may not type expressions such as {\b0\i0\scaps0\f3 $s^n^j$} since this is ambiguous and could be interpreted either as {{\field{\*\fldinst{ EQ {\i s}\\s\\up6({\fs20 {\i n}{\i j}})}}{\fldrslt }} } or as {{\field{\*\fldinst{ EQ {\i s}\\s\\up6({\fs20 {\i n}\\s\\up5({\fs16 {\i j}})})}}{\fldrslt }} } The first of these alternatives is obtained by typing {\b0\i0\scaps0\f3 $s^\{n j\}$}, the second by typing {\b0\i0\scaps0\f3 $s^\{n^j\}$}. A similar remark applies to subscripts. Note that one can obtain in this way double superscripts (where a superscript is placed on a superscript) and double subscripts.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 It is sometimes necessary to obtain expressions in which the horizontal ordering of the subscripts is significant. One can use an \lquote empty group\rquote {\b0\i0\scaps0\f3 \{\}} to separate superscripts and subscripts that must follow one another. For example, the identity \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ {\i R}\\s\\do6({\fs20 {\i i}}){}\\s\\up6({\fs20 {\i j}}){}\\s\\do6({\fs20 {\i k}{\i l}})={\i g}\\s\\up6({\fs20 {\i j}{\i m}}){\i R}\\s\\do6({\fs20 {\i i}{\i m}{\i k}{\i l}})=\u8722?{\i g}\\s\\up6({\fs20 {\i j}{\i m}}){\i R}\\s\\do6({\fs20 {\i m}{\i i}{\i k}{\i l}})=\u8722?{\i R}\\s\\up6({\fs20 {\i j}}){}\\s\\do6({\fs20 {\i i}{\i k}{\i l}})}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 can be obtained by typing {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\[ R_i\{\}^j\{\}_\{kl\} = g^\{jm\} R_\{imkl\} \par = - g^\{jm\} R_\{mikl\} = - R^j\{\}_\{ikl\} \\] \par \par }}\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 3.4 Greek Letters\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 Greek letters are produced in mathematics mode by preceding the name of the letter by a backslash {\b0\i0\scaps0\f3 \\}. Thus to obtain the formula {{\field{\*\fldinst{ EQ {\i A}={\u960*}{\i r}\\s\\up6({\fs20 2})}}{\fldrslt }} } one types {\b0\i0\scaps0\f3 A = \\pi r^2}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Here are the control sequences for the standard forms of the lowercase Greek letters:-\par {\pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \sb60 \li512\ri512\fi0 \tab \par {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\u945*}} {\f3 \u92?alpha}\cell} {\pard\intbl\ql {{\u953*}} {\f3 \u92?iota}\cell} {\pard\intbl\ql {{\u1009*}} {\f3 \u92?rho}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\u946*}} {\f3 \u92?beta}\cell} {\pard\intbl\ql {{\u954*}} {\f3 \u92?kappa}\cell} {\pard\intbl\ql {{\u963*}} {\f3 \u92?sigma}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\u947*}} {\f3 \u92?gamma}\cell} {\pard\intbl\ql {{\u955*}} {\f3 \u92?lambda}\cell} {\pard\intbl\ql {{\u964*}} {\f3 \u92?tau}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\u948*}} {\f3 \u92?delta}\cell} {\pard\intbl\ql {{\u956*}} {\f3 \u92?mu}\cell} {\pard\intbl\ql {{\u8593*}} {\f3 \u92?upsilon}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\u949*}} {\f3 \u92?epsilon}\cell} {\pard\intbl\ql {{\u957*}} {\f3 \u92?nu}\cell} {\pard\intbl\ql {{\u966*}} {\f3 \u92?phi}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\u950*}} {\f3 \u92?zeta}\cell} {\pard\intbl\ql {{\u958*}} {\f3 \u92?xi}\cell} {\pard\intbl\ql {{\u967*}} {\f3 \u92?chi}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\u951*}} {\f3 \u92?eta}\cell} {\pard\intbl\ql { }{{\i o}}{ }{\f3 o}\cell} {\pard\intbl\ql {{\u968*}} {\f3 \u92?psi}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\u920*}} {\f3 \u92?theta}\cell} {\pard\intbl\ql {{\u960*}} {\f3 \u92?pi}\cell} {\pard\intbl\ql {{\u969*}} {\f3 \u92?omega}\cell} \row} }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 There is no special command for omicron: just use {\b0\i0\scaps0\f3 o}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Some Greek letters occur in variant forms. The variant forms are obtained by preceding the name of the Greek letter by \lquote var\rquote . The following table lists the usual form of these letters and the variant forms:- {\par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \sb60 \li512\ri512\fi0 \tab \par {\trowd\cellx3450\cellx6900 {\pard\intbl\ql {{\u949*}} {\f3 \u92?epsilon}\cell} {\pard\intbl\ql {{\u949*}} {\f3 \u92?varepsilon}\cell} \row} {\trowd\cellx3450\cellx6900 {\pard\intbl\ql {{\u920*}} {\f3 \u92?theta}\cell} {\pard\intbl\ql {{\u977*}} {\f3 \u92?vartheta}\cell} \row} {\trowd\cellx3450\cellx6900 {\pard\intbl\ql {{\u960*}} {\f3 \u92?pi}\cell} {\pard\intbl\ql {{\u982*}} {\f3 \u92?varpi}\cell} \row} {\trowd\cellx3450\cellx6900 {\pard\intbl\ql {{\u1009*}} {\f3 \u92?rho}\cell} {\pard\intbl\ql {{\u1009*}} {\f3 \u92?varrho}\cell} \row} {\trowd\cellx3450\cellx6900 {\pard\intbl\ql {{\u963*}} {\f3 \u92?sigma}\cell} {\pard\intbl\ql {{\u962*}} {\f3 \u92?varsigma}\cell} \row} {\trowd\cellx3450\cellx6900 {\pard\intbl\ql {{\u966*}} {\f3 \u92?phi}\cell} {\pard\intbl\ql {{\u981*}} {\f3 \u92?varphi}\cell} \row} }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 Upper case Greek letters are obtained by making the first character of the name upper case. Here are the control sequence for the uppercase letters:\emdash \par {\pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \sb60 \li512\ri512\fi0 \tab \par {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\u915*}} {\f3 \u92?Gamma}\cell} {\pard\intbl\ql {{\u926*}} {\f3 \u92?Xi}\cell} {\pard\intbl\ql {{\u934*}} {\f3 \u92?Phi}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\u916*}} {\f3 \u92?Delta}\cell} {\pard\intbl\ql {{\u928*}} {\f3 \u92?Pi}\cell} {\pard\intbl\ql {{\u936*}} {\f3 \u92?Psi}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\u964*}} {\f3 \u92?Theta}\cell} {\pard\intbl\ql {{\u931*}} {\f3 \u92?Sigma}\cell} {\pard\intbl\ql {{\u937*}} {\f3 \u92?Omega}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\u923*}} {\f3 \u92?Lambda}\cell} {\pard\intbl\ql {{\u933*}} {\f3 \u92?Upsilon}\cell} {\pard\intbl\ql \cell} \row} }\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb180 \fi0 3.5 Mathematical Symbols\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 There are numerous mathematical symbols that can be used in mathematics mode. These are obtained by typing an appropriate control sequence.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Miscellaneous Symbols:\par {\pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \sb60 \li512\ri512\fi0 \tab \par {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\u8501*}} {\f3 \u92?aleph}\cell} {\pard\intbl\ql {'} {\f3 \u92?prime}\cell} {\pard\intbl\ql {{\f5\u8704*}} {\f3 \u92?forall}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\u295*}} {\f3 \u92?hbar}\cell} {\pard\intbl\ql {{\u8709*}} {\f3 \u92?emptyset}\cell} {\pard\intbl\ql {{\f5\u8707*}} {\f3 \u92?exists}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\u305*}} {\f3 \u92?imath}\cell} {\pard\intbl\ql {{\f5\u8711*}} {\f3 \u92?nabla}\cell} {\pard\intbl\ql {{\u8800*}} {\f3 \u92?neg}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\u567*}} {\f3 \u92?jmath}\cell} {\pard\intbl\ql {{\u8730*}} {\f3 \u92?surd}\cell} {\pard\intbl\ql {{\f5\u9837*}} {\f3 \u92?flat}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\u8467*}} {\f3 \u92?ell}\cell} {\pard\intbl\ql {{\u8890*}} {\f3 \u92?top}\cell} {\pard\intbl\ql {{\u9838*}} {\f3 \u92?natural}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\u8472*}} {\f3 \u92?wp}\cell} {\pard\intbl\ql {{\f5\u8869*}} {\f3 \u92?bot}\cell} {\pard\intbl\ql {{\u9839*}} {\f3 \u92?sharp}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\u8476*}} {\f3 \u92?Re}\cell} {\pard\intbl\ql {|} {\f3 \u92?\emdash }\cell} {\pard\intbl\ql {{\u9827*}} {\f3 \u92?clubsuit}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\u8465*}} {\f3 \u92?Im}\cell} {\pard\intbl\ql {{\f5\u8736*}} {\f3 \u92?angle}\cell} {\pard\intbl\ql {{\u9830*}} {\f3 \u92?diamondsuit}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\u8706*}} {\f3 \u92?partial}\cell} {\pard\intbl\ql {{\u9653*}} {\f3 \u92?triangle}\cell} {\pard\intbl\ql {{\u9829*}} {\f3 \u92?heartsuit}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\u8734*}} {\f3 \u92?infty}\cell} {\pard\intbl\ql {\\} {\f3 \u92?backslash}\cell} {\pard\intbl\ql {{\u9824*}} {\f3 \u92?spadesuit}\cell} \row} }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 \ldblquote Large\rdblquote Operators:\par {\pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \sb60 \li512\ri512\fi0 \tab \par {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\field{\*\fldinst{ EQ \\i \\su(,, )}}{\fldrslt }} } {\f3 \u92?sum}\cell} {\pard\intbl\ql {{\u8899*}} {\f3 \u92?bigcap}\cell} {\pard\intbl\ql {{\f5\u10752*}} {\f3 \u92?bigodot}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\field{\*\fldinst{ EQ \\i \\pr(,, )}}{\fldrslt }} } {\f3 \u92?prod}\cell} {\pard\intbl\ql {{\u8898*}} {\f3 \u92?bigcup}\cell} {\pard\intbl\ql {{\f5\u10754*}} {\f3 \u92?bigotimes}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\f5\u8720*}} {\f3 \u92?coprod}\cell} {\pard\intbl\ql {{\f5\u10758*}} {\f3 \u92?bigsqcup}\cell} {\pard\intbl\ql {{\f5\u10753*}} {\f3 \u92?bigoplus}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\field{\*\fldinst{ EQ \\i \\in(,, )}}{\fldrslt }} } {\f3 \u92?int}\cell} {\pard\intbl\ql {{\u8897*}} {\f3 \u92?bigvee}\cell} {\pard\intbl\ql {{\f5\u10756*}} {\f3 \u92?biguplus}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\f5\u8750*}} {\f3 \u92?oint}\cell} {\pard\intbl\ql {{\u8896*}} {\f3 \u92?bigwedge}\cell} {\pard\intbl\ql \cell} \row} }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 Binary Operations:\par {\pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \sb60 \li512\ri512\fi0 \tab \par {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\u177*}} {\f3 \u92?pm}\cell} {\pard\intbl\ql {{\u8745*}} {\f3 \u92?cap}\cell} {\pard\intbl\ql {{\f5\u8744*}} {\f3 \u92?vee}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\f5\u8723*}} {\f3 \u92?mp}\cell} {\pard\intbl\ql {{\f5\u8746*}} {\f3 \u92?cup}\cell} {\pard\intbl\ql {{\f5\u8743*}} {\f3 \u92?wedge}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\u8726*}} {\f3 \u92?setminus}\cell} {\pard\intbl\ql {{\u8846*}} {\f3 \u92?uplus}\cell} {\pard\intbl\ql {{\f5\u8853*}} {\f3 \u92?oplus}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\u8901*}} {\f3 \u92?cdot}\cell} {\pard\intbl\ql {{\u8851*}} {\f3 \u92?sqcap}\cell} {\pard\intbl\ql {{\f5\u8854*}} {\f3 \u92?ominus}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\u215*}} {\f3 \u92?times}\cell} {\pard\intbl\ql {{\u8852*}} {\f3 \u92?sqcup}\cell} {\pard\intbl\ql {{\f5\u8855*}} {\f3 \u92?otimes}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\u8727*}} {\f3 \u92?ast}\cell} {\pard\intbl\ql {{\u9667*}} {\f3 \u92?triangleleft}\cell} {\pard\intbl\ql {{\f5\u8856*}} {\f3 \u92?oslash}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\u8902*}} {\f3 \u92?star}\cell} {\pard\intbl\ql {{\u9657*}} {\f3 \u92?triangleright}\cell} {\pard\intbl\ql {{\f5\u8857*}} {\f3 \u92?odot}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\u8900*}} {\f3 \u92?diamond}\cell} {\pard\intbl\ql {{\u8768*}} {\f3 \u92?wr}\cell} {\pard\intbl\ql {\'86} {\f3 \u92?dagger}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\u8728*}} {\f3 \u92?circ}\cell} {\pard\intbl\ql {{\u9675*}} {\f3 \u92?bigcirc}\cell} {\pard\intbl\ql {\'87} {\f3 \u92?ddagger}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\u8226*}} {\f3 \u92?bullet}\cell} {\pard\intbl\ql {{\f5\u9651*}} {\f3 \u92?bigtriangleup}\cell} {\pard\intbl\ql {{\f5\u8720*}} {\f3 \u92?amalg}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\u247*}} {\f3 \u92?div}\cell} {\pard\intbl\ql {{\f5\u9661*}} {\f3 \u92?bigtriangledown}\cell} {\pard\intbl\ql \cell} \row} }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 Relations:\par {\pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \sb60 \li512\ri512\fi0 \tab \par {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\u8804*}} {\f3 \u92?leq}\cell} {\pard\intbl\ql {{\u8805*}} {\f3 \u92?geq}\cell} {\pard\intbl\ql {{\u8801*}} {\f3 \u92?equiv}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\u8826*}} {\f3 \u92?prec}\cell} {\pard\intbl\ql {{\u8827*}} {\f3 \u92?succ}\cell} {\pard\intbl\ql {{\f5\u8764*}} {\f3 \u92?sim}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\f5\u10927*}} {\f3 \u92?preceq}\cell} {\pard\intbl\ql {{\f5\u10928*}} {\f3 \u92?succeq}\cell} {\pard\intbl\ql {{\u8771*}} {\f3 \u92?simeq}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\f5\u8810*}} {\f3 \u92?ll}\cell} {\pard\intbl\ql {{\f5\u8811*}} {\f3 \u92?gg}\cell} {\pard\intbl\ql {{\u8781*}} {\f3 \u92?asymp}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\f5\u8834*}} {\f3 \u92?subset}\cell} {\pard\intbl\ql {{\f5\u8835*}} {\f3 \u92?supset}\cell} {\pard\intbl\ql {{\u8776*}} {\f3 \u92?approx}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\f5\u8838*}} {\f3 \u92?subseteq}\cell} {\pard\intbl\ql {{\f5\u8839*}} {\f3 \u92?supseteq}\cell} {\pard\intbl\ql {{\u8773*}} {\f3 \u92?cong}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\u8849*}} {\f3 \u92?sqsubseteq}\cell} {\pard\intbl\ql {{\u8850*}} {\f3 \u92?sqsupseteq}\cell} {\pard\intbl\ql {{\u8904*}} {\f3 \u92?bowtie}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\f5\u8712*}} {\f3 \u92?in}\cell} {\pard\intbl\ql {{\f5\u8715*}} {\f3 \u92?ni}\cell} {\pard\intbl\ql {{\f5\u8733*}} {\f3 \u92?propto}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\u8866*}} {\f3 \u92?vdash}\cell} {\pard\intbl\ql {{\u8867*}} {\f3 \u92?dashv}\cell} {\pard\intbl\ql {{\u8871*}} {\f3 \u92?models}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\f5\u8995*}} {\f3 \u92?smile}\cell} {\pard\intbl\ql {|} {\f3 \u92?mid}\cell} {\pard\intbl\ql {{\u8784*}} {\f3 \u92?doteq}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {{\f5\u8994*}} {\f3 \u92?frown}\cell} {\pard\intbl\ql {{\f5\u8741*}} {\f3 \u92?parallel}\cell} {\pard\intbl\ql {{\f5\u8869*}} {\f3 \u92?perp}\cell} \row} }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 Negated Relations:\par {\pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \sb60 \li512\ri512\fi0 \tab \par {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {\u8814?}{ }{\f3 \u92?not<}\cell} {\pard\intbl\ql { }{\u8815?}{ }{\f3 \u92?not>}\cell} {\pard\intbl\ql { }{\u8800?}{ }{\f3 \u92?not=}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {\u8816?} {\f3 \u92?not\u92?leq}\cell} {\pard\intbl\ql {\u8817?} {\f3 \u92?not\u92?geq}\cell} {\pard\intbl\ql {\u8802?} {\f3 \u92?not\u92?equiv}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {\u8832?} {\f3 \u92?not\u92?prec}\cell} {\pard\intbl\ql {\u8833?} {\f3 \u92?not\u92?succ}\cell} {\pard\intbl\ql {\u8769?} {\f3 \u92?not\u92?sim}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {\u8928?} {\f3 \u92?not\u92?preceq}\cell} {\pard\intbl\ql {\u8929?} {\f3 \u92?not\u92?succeq}\cell} {\pard\intbl\ql {\u8772?} {\f3 \u92?not\u92?simeq}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {\u8836?} {\f3 \u92?not\u92?subset}\cell} {\pard\intbl\ql {\u8837?} {\f3 \u92?not\u92?supset}\cell} {\pard\intbl\ql {\u8777?} {\f3 \u92?not\u92?approx}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {\u8840?} {\f3 \u92?not\u92?subseteq}\cell} {\pard\intbl\ql {\u8841?} {\f3 \u92?not\u92?supseteq}\cell} {\pard\intbl\ql {\u8775?} {\f3 \u92?not\u92?cong}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {\u8930?} {\f3 \u92?not\u92?sqsubseteq}\cell} {\pard\intbl\ql {\u8931?} {\f3 \u92?not\u92?sqsupseteq}\cell} {\pard\intbl\ql {\u8813?} {\f3 \u92?not\u92?asymp}\cell} \row} }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 Arrows:\par {\pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \sb60 \li512\ri512\fi0 \tab \par {\trowd\cellx3450\cellx6900 {\pard\intbl\ql {{\field{\*\fldinst{ EQ {\u8592*}}}{\fldrslt }} } {\f3 \u92?leftarrow}\cell} {\pard\intbl\ql {{\field{\*\fldinst{ EQ {\u8594*}}}{\fldrslt }} } {\f3 \u92?rightarrow}\cell} \row} {\trowd\cellx3450\cellx6900 {\pard\intbl\ql {{\f5\u10229*}} {\f3 \u92?longleftarrow}\cell} {\pard\intbl\ql {{\f5\u10230*}} {\f3 \u92?longrightarrow}\cell} \row} {\trowd\cellx3450\cellx6900 {\pard\intbl\ql {{\u8656*}} {\f3 \u92?Leftarrow}\cell} {\pard\intbl\ql {{\f5\u8658*}} {\f3 \u92?Rightarrow}\cell} \row} {\trowd\cellx3450\cellx6900 {\pard\intbl\ql {{\f5\u10232*}} {\f3 \u92?Longleftarrow}\cell} {\pard\intbl\ql {{\f5\u10233*}} {\f3 \u92?Longrightarrow}\cell} \row} {\trowd\cellx3450\cellx6900 {\pard\intbl\ql {{\field{\*\fldinst{ EQ {\u8596*}}}{\fldrslt }} } {\f3 \u92?leftrightarrow}\cell} {\pard\intbl\ql {{\f5\u8660*}} {\f3 \u92?Leftrightarrow}\cell} \row} {\trowd\cellx3450\cellx6900 {\pard\intbl\ql {{\f5\u10231*}} {\f3 \u92?longleftrightarrow}\cell} {\pard\intbl\ql {{\f5\u10234*}} {\f3 \u92?Longleftrightarrow}\cell} \row} {\trowd\cellx3450\cellx6900 {\pard\intbl\ql {{\u8617*}} {\f3 \u92?hookleftarrow}\cell} {\pard\intbl\ql {{\u8618*}} {\f3 \u92?hookrightarrow}\cell} \row} {\trowd\cellx3450\cellx6900 {\pard\intbl\ql {{\field{\*\fldinst{ EQ {\u8636*}}}{\fldrslt }} } {\f3 \u92?leftharpoonup}\cell} {\pard\intbl\ql {{\field{\*\fldinst{ EQ {\u8640*}}}{\fldrslt }} } {\f3 \u92?rightharpoonup}\cell} \row} {\trowd\cellx3450\cellx6900 {\pard\intbl\ql {{\field{\*\fldinst{ EQ {\u8637*}}}{\fldrslt }} } {\f3 \u92?leftharpoondown}\cell} {\pard\intbl\ql {{\field{\*\fldinst{ EQ {\u8641*}}}{\fldrslt }} } {\f3 \u92?rightharpoondown}\cell} \row} {\trowd\cellx3450\cellx6900 {\pard\intbl\ql {{\u8593*}} {\f3 \u92?uparrow}\cell} {\pard\intbl\ql {{\u8595*}} {\f3 \u92?downarrow}\cell} \row} {\trowd\cellx3450\cellx6900 {\pard\intbl\ql {{\u8657*}} {\f3 \u92?Uparrow}\cell} {\pard\intbl\ql {{\u8659*}} {\f3 \u92?Downarrow}\cell} \row} {\trowd\cellx3450\cellx6900 {\pard\intbl\ql {{\u8597*}} {\f3 \u92?updownarrow}\cell} {\pard\intbl\ql {{\u8661*}} {\f3 \u92?Updownarrow}\cell} \row} {\trowd\cellx3450\cellx6900 {\pard\intbl\ql {{\f5\u8599*}} {\f3 \u92?nearrow}\cell} {\pard\intbl\ql {{\f5\u8598*}} {\f3 \u92?nwarrow}\cell} \row} {\trowd\cellx3450\cellx6900 {\pard\intbl\ql {{\f5\u8600*}} {\f3 \u92?searrow}\cell} {\pard\intbl\ql {{\f5\u8601*}} {\f3 \u92?swarrow}\cell} \row} {\trowd\cellx3450\cellx6900 {\pard\intbl\ql {{\u8614*}} {\f3 \u92?mapsto}\cell} {\pard\intbl\ql {{\f5\u10236*}} {\f3 \u92?longmapsto}\cell} \row} {\trowd\cellx3450\cellx6900 {\pard\intbl\ql {{\field{\*\fldinst{ EQ \\o ({\up5 {\u8636*}},{\dn5 {\u8641*}}) }}{\fldrslt }} } {\f3 \u92?rightleftharpoons}\cell} {\pard\intbl\ql \cell} \row} }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 Openings:\par {\pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \sb60 \li512\ri512\fi0 \tab \par {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {[} {\f3 \u92?lbrack}\cell} {\pard\intbl\ql {{\f5\u8970*}} {\f3 \u92?lfloor}\cell} {\pard\intbl\ql {{\f5\u8968*}} {\f3 \u92?lceil}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {\{} {\f3 \u92?lbrace}\cell} {\pard\intbl\ql {{\f5\u9001*}} {\f3 \u92?langle}\cell} {\pard\intbl\ql \cell} \row} }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 Closings:\par {\pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \sb60 \li512\ri512\fi0 \tab \par {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {]} {\f3 \u92?rbrack}\cell} {\pard\intbl\ql {{\f5\u8971*}} {\f3 \u92?rfloor}\cell} {\pard\intbl\ql {{\f5\u8969*}} {\f3 \u92?rceil}\cell} \row} {\trowd\cellx2300\cellx4600\cellx6900 {\pard\intbl\ql {\}} {\f3 \u92?rbrace}\cell} {\pard\intbl\ql {{\f5\u9002*}} {\f3 \u92?rangle}\cell} {\pard\intbl\ql \cell} \row} }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 Alternative Names:\par {\pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \sb60 \li512\ri512\fi0 \tab \par {\trowd\cellx3450\cellx6900 {\pard\intbl\ql {\u8800?}{ }{ } {\f3 \u92?ne} or {\f3 \u92?neq}\cell} {\pard\intbl\ql (same as {\f3 \u92?not=})\cell} \row} {\trowd\cellx3450\cellx6900 {\pard\intbl\ql {{\u8804*}} {\f3 \u92?le}\cell} {\pard\intbl\ql (same as {\f3 \u92?leq})\cell} \row} {\trowd\cellx3450\cellx6900 {\pard\intbl\ql {{\u8805*}} {\f3 \u92?ge}\cell} {\pard\intbl\ql (same as {\f3 \u92?geq})\cell} \row} {\trowd\cellx3450\cellx6900 {\pard\intbl\ql {\{}{ }{ }{\f3 \u92?\u123?}\cell} {\pard\intbl\ql (same as {\f3 \u92?lbrace})\cell} \row} {\trowd\cellx3450\cellx6900 {\pard\intbl\ql {\}}{ }{ }{\f3 \u92?\u125?}\cell} {\pard\intbl\ql (same as {\f3 \u92?lbrace})\cell} \row} {\trowd\cellx3450\cellx6900 {\pard\intbl\ql {{\u8594*}} {\f3 \u92?to}\cell} {\pard\intbl\ql (same as {\f3 \u92?rightarrow})\cell} \row} {\trowd\cellx3450\cellx6900 {\pard\intbl\ql {{\u8592*}} {\f3 \u92?gets}\cell} {\pard\intbl\ql (same as {\f3 \u92?leftarrow})\cell} \row} {\trowd\cellx3450\cellx6900 {\pard\intbl\ql {{\f5\u8715*}} {\f3 \u92?owns}\cell} {\pard\intbl\ql (same as {\f3 \u92?ni})\cell} \row} {\trowd\cellx3450\cellx6900 {\pard\intbl\ql {{\f5\u8743*}} {\f3 \u92?land}\cell} {\pard\intbl\ql (same as {\f3 \u92?wedge})\cell} \row} {\trowd\cellx3450\cellx6900 {\pard\intbl\ql {{\f5\u8744*}} {\f3 \u92?lor}\cell} {\pard\intbl\ql (same as {\f3 \u92?vee})\cell} \row} {\trowd\cellx3450\cellx6900 {\pard\intbl\ql {{\u172*}} {\f3 \u92?lnot}\cell} {\pard\intbl\ql (same as {\f3 \u92?neg})\cell} \row} {\trowd\cellx3450\cellx6900 {\pard\intbl\ql {|} {\f3 \u92?vert}\cell} {\pard\intbl\ql { }(same as {\f3 \emdash })\cell} \row} {\trowd\cellx3450\cellx6900 {\pard\intbl\ql {{\f5\u8741*}} {\f3 \u92?Vert}\cell} {\pard\intbl\ql { }(same as {\f3 \u92?\emdash })\cell} \row} {\trowd\cellx3450\cellx6900 {\pard\intbl\ql {{\f5\u10234* }} {\f3 \u92?iff}\cell} {\pard\intbl\ql { }(same as {\f3 \u92?Longleftrightarrow}, but with\cell} \row} {\trowd\cellx3450\cellx6900 {\pard\intbl\ql \cell} {\pard\intbl\ql { } extra space at each end)\cell} \row} {\trowd\cellx3450\cellx6900 {\pard\intbl\ql {: } {\f3 \u92?colon}\cell} {\pard\intbl\ql { }(same as {\f3 :}, but with less space around it and\cell} \row} {\trowd\cellx3450\cellx6900 {\pard\intbl\ql \cell} {\pard\intbl\ql { } less likelihood of a line break after it)\cell} \row} }\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb180 \fi0 3.6 Changing Fonts in Mathematics Mode\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\i (The following applies to {\plain L{\up6\fs19 A}T{\dn7 E}X}2{{\u949*}}, a recent version of {\plain L{\up6\fs19 A}T{\dn7 E}X}. It does not apply to older versions of {\plain L{\up6\fs19 A}T{\dn7 E}X}.)}\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 The \lquote math italic\rquote font is automatically used in mathematics mode unless you explicitly change the font. The rules for changing the font in mathematics mode are rather different to those applying when typesetting ordinary text. In mathematics mode any change only applies to the single character or symbol that follows (or to any text enclosed within curly brackets immediately following the control sequence). Also, to change a character to the roman or boldface font, the control sequences {\b0\i0\scaps0\f3 \\mathrm} and {\b0\i0\scaps0\f3 \\mathbf} must be used (rather than {\b0\i0\scaps0\f3 \\textrm} and {\b0\i0\scaps0\f3 \\textbf}).\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 The following example illustrates the use of boldface in mathematical formulae. To obtain {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi360 Let {{\b u}},{{\b v}} and {{\b w}} be three vectors in {{\field{\*\fldinst{ EQ {{\b R}}\\s\\up6({\fs20 3})}}{\fldrslt }} }. The volume\~{{\i V}} of the parallelepiped with corners at the points {{\b 0}}, {{\b u}}, {{\b v}}, {{\b w}}, {{\b u}+{\b v}}, {{\b u}+{\b w}}, {{\b v}+{\b w}} and {{\b u}+{\b v}+{\b w}} is given by the formula \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \li512\ri512\fi0 \tab {\i V}=({\b u}{\u215*}{\b v}){\u8901*}{\b w}.\par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 one could type {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par Let $\\mathbf\{u\}$,$\\mathbf\{v\}$ and $\\mathbf\{w\}$ be three \par vectors in $\{\\mathbf R\}^3$. The volume~$V$ of the \par parallelepiped with corners at the points \par $\\mathbf\{0\}$, $\\mathbf\{u\}$, $\\mathbf\{v\}$, \par $\\mathbf\{w\}$, $\\mathbf\{u\}+\\mathbf\{v\}$, \par $\\mathbf\{u\}+\\mathbf\{w\}$, $\\mathbf\{v\}+\\mathbf\{w\}$ \par and $\\mathbf\{u\}+\\mathbf\{v\}+\\mathbf\{w\}$ \par is given by the formula \par \\[ V = (\\mathbf\{u\} \\times \\mathbf\{v\}) \\cdot \\mathbf\{w\}.\\] \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi360 There is also a \lquote calligraphic\rquote font available in mathematics mode. This is obtained using the control sequence {\b0\i0\scaps0\f3 \\cal}. {\i This font can only be used for uppercase letters.} These calligraphic letters have the form \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {{\i A}}{{\i B}}{{\i C}}{{\i D}}{{\i E}}{{\i F}}{{\i G}}{{\i H}}{{\i I}}{{\i J}}{{\i K}}{{\i L}}{{\i M}}{{\i N}}{{\i O}}{{\i P}}{{\i Q}}{{\i R}}{{\i S}}{{\i T}}{{\i U}}{{\i V}}{{\i W}}{{\i X}}{{\i Y}}{{\i Z}}.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 3.7 Standard Functions (sin, cos etc.)\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 The names of certain standard functions and abbreviations are obtained by typing a backlash {\b0\i0\scaps0\f3 \\} before the name. For example, one obtains \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\plain cos}({\u920*}+{\u966*})={\plain cos}{\u920*}{\plain cos}{\u966*}\u8722?{\plain sin}{\u920*}{\plain sin}{\u966*}\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 by typing {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\[ \\cos(\\theta + \\phi) = \\cos \\theta \\cos \\phi \par - \\sin \\theta \\sin \\phi \\] \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi360 The following standard functions are represented by control sequences defined in {\plain L{\up6\fs19 A}T{\dn7 E}X}: \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab \par {\trowd\cellx862\cellx1725\cellx2587\cellx3450\cellx4312\cellx5175\cellx6037\cellx6900 {\pard\intbl\ql {\\}{\f3 arccos}\cell} {\pard\intbl\ql {\\}{\f3 cos}\cell} {\pard\intbl\ql {\\}{\f3 csc}\cell} {\pard\intbl\ql {\\}{\f3 exp}\cell} {\pard\intbl\ql {\\}{\f3 ker}\cell} {\pard\intbl\ql {\\}{\f3 limsup}\cell} {\pard\intbl\ql {\\}{\f3 min}\cell} {\pard\intbl\ql {\\}{\f3 sinh}\cell} \row} {\trowd\cellx862\cellx1725\cellx2587\cellx3450\cellx4312\cellx5175\cellx6037\cellx6900 {\pard\intbl\ql {\\}{\f3 arcsin}\cell} {\pard\intbl\ql {\\}{\f3 cosh}\cell} {\pard\intbl\ql {\\}{\f3 deg}\cell} {\pard\intbl\ql {\\}{\f3 gcd}\cell} {\pard\intbl\ql {\\}{\f3 lg}\cell} {\pard\intbl\ql {\\}{\f3 ln}\cell} {\pard\intbl\ql {\\}{\f3 Pr}\cell} {\pard\intbl\ql {\\}{\f3 sup}\cell} \row} {\trowd\cellx862\cellx1725\cellx2587\cellx3450\cellx4312\cellx5175\cellx6037\cellx6900 {\pard\intbl\ql {\\}{\f3 arctan}\cell} {\pard\intbl\ql {\\}{\f3 cot}\cell} {\pard\intbl\ql {\\}{\f3 det}\cell} {\pard\intbl\ql {\\}{\f3 hom}\cell} {\pard\intbl\ql {\\}{\f3 lim}\cell} {\pard\intbl\ql {\\}{\f3 log}\cell} {\pard\intbl\ql {\\}{\f3 sec}\cell} {\pard\intbl\ql {\\}{\f3 tan}\cell} \row} {\trowd\cellx862\cellx1725\cellx2587\cellx3450\cellx4312\cellx5175\cellx6037\cellx6900 {\pard\intbl\ql {\\}{\f3 arg}\cell} {\pard\intbl\ql {\\}{\f3 coth}\cell} {\pard\intbl\ql {\\}{\f3 dim}\cell} {\pard\intbl\ql {\\}{\f3 inf}\cell} {\pard\intbl\ql {\\}{\f3 liminf}\cell} {\pard\intbl\ql {\\}{\f3 max}\cell} {\pard\intbl\ql {\\}{\f3 sin}\cell} {\pard\intbl\ql {\\}{\f3 tanh}\cell} \row} \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Names of functions and other abbreviations not in this list can be obtained by converting to the roman font. Thus one obtains {{\f0 {\i c}{\i o}{\i s}{\i e}{\i c}}{\i A}} by typing {\b0\i0\scaps0\f3 $\\mathrm\{cosec\} A$}. Note that if one were to type simply {\b0\i0\scaps0\f3 $cosec A$} one would obtain {{\i c}{\i o}{\i s}{\i e}{\i c}{\i A}}, because {\plain L{\up6\fs19 A}T{\dn7 E}X} has treated {\b0\i0\scaps0\f3 cosec A} as the product of six quantities {{\i c}}, {{\i o}}, {{\i s}}, {{\i e}}, {{\i c}} and {{\i A}} and typeset the formula accordingly.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 3.8 Text Embedded in Displayed Equations\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 Text can be embedded in displayed equations (in {\plain L{\up6\fs19 A}T{\dn7 E}X}) by using {\b0\i0\scaps0\f3 \\mbox\{}{\i embedded text}{\b0\i0\scaps0\f3 \}}. For example, one obtains \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ {\i M}\\s\\up6({\fs20 {\f5\u8869*}})=\{{\i f}{\f5\u8712*}{\i V}':{\i f}({\i m})=0{\~for\~all\~}{\i m}{\f5\u8712*}{\i M}\}.}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 by typing {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\[ M^\\bot = \\\{ f \\in V' : f(m) = 0 \\mbox\{ for all \} m \\in M \\\}.\\] \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 Note the blank spaces before and after the words \lquote for all\rquote in the above example. Had we typed {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\[ M^\\bot = \\\{ f \\in V' : f(m) = 0 \\mbox\{for all\} m \\in M \\\}.\\] \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 we would have obtained \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ {\i M}\\s\\up6({\fs20 {\f5\u8869*}})=\{{\i f}{\f5\u8712*}{\i V}':{\i f}({\i m})=0{for\~all}{\i m}{\f5\u8712*}{\i M}\}.}}{\fldrslt }} \par (\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 In Plain {\plain T{\dn7 E}X} one should use {\b0\i0\scaps0\f3 \\hbox} in place of {\b0\i0\scaps0\f3 \\mbox}.)\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 3.9 Fractions and Roots\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 Fractions of the form \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ \\F({{\i numerator}},{{\i denominator}})}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 are obtained in {\plain L{\up6\fs19 A}T{\dn7 E}X} using the construction {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi360 {\b0\i0\scaps0\f3 \\frac\{}{\i numerator}{\b0\i0\scaps0\f3 \}\{}{\i denominator}{\b0\i0\scaps0\f3 \}}. \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 For example, to obtain {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi360 The function {{\i f}} is given by \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \li512\ri512\fi0 \tab {\field{\*\fldinst{ EQ {\i f}({\i x})=2{\i x}+ \\F({\i x}\u8722?7,{\i x}\\s\\up6({\fs20 2})+4)}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \li512\ri512\fi0 for all real numbers {{\i x}}. \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 one would type {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par The function $f$ is given by \par \\[ f(x) = 2x + \\frac\{x - 7\}\{x^2 + 4\}\\] \par for all real numbers $x$. \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi360 To obtain square roots one uses the control sequence {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi360 {\b0\i0\scaps0\f3 \\sqrt\{}{\i expression}{\b0\i0\scaps0\f3 \}}. \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 For example, to obtain {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi360 The roots of a quadratic polynomial {{\field{\*\fldinst{ EQ {\i a}{\i x}\\s\\up6({\fs20 2})+{\i b}{\i x}+{\i c}}}{\fldrslt }} } with {{\i a}{\u8800*}0} are given by the formula \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \li512\ri512\fi0 \tab {\field{\*\fldinst{ EQ \\F(\u8722?{\i b}{\u177*} \\R(,{\i b}\\s\\up6({\fs20 2})\u8722?4{\i a}{\i c}),2{\i a})}}{\fldrslt }} \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 one would type {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par The roots of a quadratic polynomial $a x^2 + bx + c$ with \par $a \\neq 0$ are given by the formula \par \\[ \\frac\{-b \\pm \\sqrt\{b^2 - 4ac\}\}\{2a\} \\] \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi360 In {\plain L{\up6\fs19 A}T{\dn7 E}X}, an {{\i n}}th root is produced using {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi360 {\b0\i0\scaps0\f3 \\sqrt[n]\{}{\i expression}{\b0\i0\scaps0\f3 \}}. \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 For example, to obtain {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi360 The roots of a cubic polynomial of the form {{\field{\*\fldinst{ EQ {\i x}\\s\\up6({\fs20 3})\u8722?3{\i p}{\i x}\u8722?2{\i q}}}{\fldrslt }} } are given by the formula \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \li512\ri512\fi0 \tab {\field{\*\fldinst{ EQ \\R(3,{\i q}+ \\R(,{\i q}\\s\\up6({\fs20 2})\u8722?{\i p}\\s\\up6({\fs20 3})))+ \\R(3,{\i q}\u8722? \\R(,{\i q}\\s\\up6({\fs20 2})\u8722?{\i p}\\s\\up6({\fs20 3})))}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \li512\ri512\fi0 where the values of the two cube roots must are chosen so as to ensure that their product is equal to {{\i p}}. \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 in {\plain L{\up6\fs19 A}T{\dn7 E}X}, one would type {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par The roots of a cubic polynomial of the form $x^3 - 3px - 2q$ \par are given by the formula \par \\[ \\sqrt[3]\{q + \\sqrt\{ q^2 - p^3 \}\} \par + \\sqrt[3]\{q - \\sqrt\{ q^2 - p^3 \}\} \\] \par where the values of the two cube roots must are chosen \par so as to ensure that their product is equal to $p$. \par \par }}\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 3.10 Ellipsis (i.e., \lquote three dots\rquote )\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 Ellipsis (three dots) is produced in mathematics mode using the control sequences {\b0\i0\scaps0\f3 \\ldots} (for dots aligned with tbe baseline of text), and {\b0\i0\scaps0\f3 \\cdots} (for dots aligned with the centreline of mathematical formulae). Thus the formula \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ {\i f}({\i x}\\s\\do6({\fs20 1})\\,{\i x}\\s\\do6({\fs20 2})\\,\u8230?\\,{\i x}\\s\\do6({\fs20 {\i n}}))={\i x}\\s\\up({\fs20 2,1})+{\i x}\\s\\up({\fs20 2,2})+{\u8943*}+{\i x}\\s\\up({\fs20 2,{\i n}})}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 is obtained by typing {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\[ f(x_1, x_2,\\ldots, x_n) = x_1^2 + x_2^2 + \\cdots + x_n^2 \\] \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 Similarly the formula \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ \\F(1\u8722?{\i x}\\s\\up6({\fs20 {\i n}+1}),1\u8722?{\i x})=1+{\i x}+{\i x}\\s\\up6({\fs20 2})+{\u8943*}+{\i x}\\s\\up6({\fs20 {\i n}})}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 is produced using {\b0\i0\scaps0\f3 \\cdots}, by typing {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\[ \\frac\{1 - x^\{n+1\}\}\{1 - x\} = 1 + x + x^2 + \\cdots + x^n \\] \par \par }}\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 3.11 Accents in Mathematics Mode\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 There are various control sequences for producing underlining, overlining and various accents in mathematics mode. The following table lists these control sequences, applying them to the letter\~{{\i a}}: {\par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \sb60 \li512\ri512\fi0 \tab {\field{\*\fldinst{ EQ }}{\fldrslt }} \par {\trowd\cellx6900 {\pard\intbl\ql {{\ul {\i a}}} { }{\f3 \u92?underline\u123?a\u125?}\cell} \row} {\trowd\cellx6900 {\pard\intbl\ql {{\field{\*\fldinst{ EQ \\x\\to( {\i a}) }}{\fldrslt }} } { }{\f3 \u92?overline\u123?a\u125?}\cell} \row} {\trowd\cellx6900 {\pard\intbl\ql {\'e2} { }{\f3 \u92?hat\u123?a\u125?}\cell} \row} {\trowd\cellx6900 {\pard\intbl\ql {\u462a} { }{\f3 \u92?check\u123?a\u125?}\cell} \row} {\trowd\cellx6900 {\pard\intbl\ql {\'e3} { }{\f3 \u92?tilde\u123?a\u125?}\cell} \row} {\trowd\cellx6900 {\pard\intbl\ql {\'e1} { }{\f3 \u92?acute\u123?a\u125?}\cell} \row} {\trowd\cellx6900 {\pard\intbl\ql {\'e0} { }{\f3 \u92?grave\u123?a\u125?}\cell} \row} {\trowd\cellx6900 {\pard\intbl\ql {\u551a} { }{\f3 \u92?dot\u123?a\u125?}\cell} \row} {\trowd\cellx6900 {\pard\intbl\ql {\'e4} { }{\f3 \u92?ddot\u123?a\u125?}\cell} \row} {\trowd\cellx6900 {\pard\intbl\ql {\u259a} { }{\f3 \u92?breve\u123?a\u125?}\cell} \row} {\trowd\cellx6900 {\pard\intbl\ql {\u257a} { }{\f3 \u92?bar\u123?a\u125?}\cell} \row} {\trowd\cellx6900 {\pard\intbl\ql {{\f5 \u8407-}{\i a}} { }{\f3 \u92?vec\u123?a\u125?}\cell} \row} {\field{\*\fldinst{ EQ }}{\fldrslt }} }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 It should be borne in mind that when a character is underlined in a mathematical manuscript then it is normally typeset in bold face without any underlining. Underlining is used very rarely in print.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 The control sequences such as {\b0\i0\scaps0\f3 \\'} and {\b0\i0\scaps0\f3 \\"}, used to produce accents in ordinary text, may not be used in mathematics mode.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 3.12 Brackets and Norms\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 The frequently used left delimiters include (, [ and \{, which are obtained by typing {\b0\i0\scaps0\f3 (}, {\b0\i0\scaps0\f3 [} and {\b0\i0\scaps0\f3 \\\{} respectively. The corresponding right delimiters are of course obtained by typing {\b0\i0\scaps0\f3 )}, {\b0\i0\scaps0\f3 ]} and {\b0\i0\scaps0\f3 \\\}}. In addition {|} and {|} are used as both left and right delimiters, and are obtained by typing {\b0\i0\scaps0\f3 |} and {\b0\i0\scaps0\f3 \\|} respectively. For example, we obtain {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi360 Let {{\i X}} be a Banach space and let {{\i f}: {\i B}{\u8594*}{\b R}} be a bounded linear functional on {{\i X}}. The {\i norm} of {{\i f}}, denoted by {|{\i f}|}, is defined by \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \li512\ri512\fi0 \tab |{\i f}|={\plain inf}\{{\i K}{\f5\u8712*}[0,+{\u8734*}):|{\i f}({\i x})|{\u8804*}{\i K}|{\i x}|{\~for\~all\~}{\i x}{\f5\u8712*}{\i X}\}.\par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 by typing {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par Let $X$ be a Banach space and let $f \\colon B \\to \\textbf\{R\}$ \par be a bounded linear functional on $X$. The \\textit\{norm\} of \par $f$, denoted by $\\|f\\|$, is defined by \par \\[ \\|f\\| = \\inf \\\{ K \\in [0,+\\infty) : \par |f(x)| \\leq K \\|x\\| \\mbox\{ for all \} x \\in X \\\}.\\] \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi360 Larger delimiters are sometimes required which have the appropriate height to match the size of the subformula which they enclose. Consider, for instance, the problem of typesetting the following formula: \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ {\i f}({\i x}\\,{\i y}\\,{\i z})=3{\i y}\\s\\up6({\fs20 2}){\i z} \\b (3+ \\F(7{\i x}+5,1+{\i y}\\s\\up6({\fs20 2}))).}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 The way to type the large parentheses is to type {\b0\i0\scaps0\f3 \\left(} for the left parenthesis and {\b0\i0\scaps0\f3 \\right)} for the right parenthesis, and let {\plain L{\up6\fs19 A}T{\dn7 E}X} do the rest of the work for you. Thus the above formula was obtained by typing {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\[ f(x,y,z) = 3y^2 z \\left( 3 + \\frac\{7x+5\}\{1 + y^2\} \\right).\\] \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 If you type a delimiter which is preceded by {\b0\i0\scaps0\f3 \\left} then {\plain L{\up6\fs19 A}T{\dn7 E}X} will search for a corresponding delimiter preceded by {\b0\i0\scaps0\f3 \\right} and calculate the size of the delimiters required to enclose the intervening subformula. One is allowed to balance a {\b0\i0\scaps0\f3 \\left(} with a {\b0\i0\scaps0\f3 \\right]} (say) if one desires: there is no reason why the enclosing delimiters have to have the same shape. One may also nest pairs of delimiters within one another: by typing {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\[ \\left| 4 x^3 + \\left( x + \\frac\{42\}\{1+x^4\} \\right) \\right|.\\] \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 we obtain \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ \\b \\lc\\|\\rc\\| (4{\i x}\\s\\up6({\fs20 3})+ \\b ({\i x}+ \\F(42,1+{\i x}\\s\\up6({\fs20 4})))).}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 By typing {\b0\i0\scaps0\f3 \\left.} and {\b0\i0\scaps0\f3 \\right.} one obtains {\i null delimiters} which are completely invisible. Consider, for example, the problem of typesetting \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ \\b \\rc\\| ( \\F({\i d}{\i u},{\i d}{\i x}))\\s\\do17({\fs20 {\i x}=0}).}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 We wish to make the vertical bar big enough to match the derivative preceding it. To do this, we suppose that the derivative is enclosed by delimiters, where the left delimiter is invisible and the right delimiter is the vertical line. The invisible delimiter is produced using {\b0\i0\scaps0\f3 \\left.} and thus the whole formula is produced by typing \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ \\b \\rc\\| ( \\F({\i d}{\i u},{\i d}{\i x}))\\s\\do17({\fs20 {\i x}=0}).}}{\fldrslt }} \par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 3.13 Multiline Formulae in {\plain L{\up6\fs19 A}T{\dn7 E}X}\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 Consider the problem of typesetting the formula {\par {\pard\plain\s15\ql\sb120\sa120\keep\widctlpar\f0\tqr\tx3105\tqc\tx3450\tql\tx3795\sl240\slmult1 \sb60 \li512\ri512\fi0 \tab {\field{\*\fldinst{ EQ {\plain cos}2{\u920*}}}{\fldrslt }} \tab {\field{\*\fldinst{ EQ =}}{\fldrslt }} \tab {\field{\*\fldinst{ EQ {\plain cos}\\s\\up6({\fs20 2}){\u920*}\u8722?{\plain sin}\\s\\up6({\fs20 2}){\u920*}}}{\fldrslt }} \par \pard\plain\s15\ql\sb120\sa120\keep\widctlpar\f0\tqr\tx3105\tqc\tx3450\tql\tx3795\sl240\slmult1 \li512\ri512\fi0 \tab {\field{\*\fldinst{ EQ }}{\fldrslt }} \tab {\field{\*\fldinst{ EQ =}}{\fldrslt }} \tab {\field{\*\fldinst{ EQ 2{\plain cos}\\s\\up6({\fs20 2}){\u920*}\u8722?1.}}{\fldrslt }} \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 It is necessary to ensure that the = signs are aligned with one another. In {\plain L{\up6\fs19 A}T{\dn7 E}X}, such a formula is typeset using the {\b0\i0\scaps0\f3 eqnarray*} environment. The above example was obtained by typing the lines {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\begin\{eqnarray*\} \par \\cos 2\\theta & = & \\cos^2 \\theta - \\sin^2 \\theta \\\\ \par & = & 2 \\cos^2 \\theta - 1. \par \\end\{eqnarray*\} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 Note the use of the special character {\b0\i0\scaps0\f3 &} as an {\i alignment tab}. When the formula is typeset, the part of the second line of the formula beginning with an occurrence of {\b0\i0\scaps0\f3 &} will be placed immediately beneath that part of the first line of the formula which begins with the corresponding occurrence of {\b0\i0\scaps0\f3 &}. Also {\b0\i0\scaps0\f3 \\\\} is used to separate the lines of the formula.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Although we have placed corresponding occurrences of {\b0\i0\scaps0\f3 &} beneath one another in the above example, it is not necessary to do this in the input file. It was done in the above example merely to improve the appearance (and readability) of the input file.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 The more complicated example {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi360 If {{\field{\*\fldinst{ EQ {\i h}{\u8804*} \\F(1,2)|{\u950*}\u8722?{\i z}|}}{\fldrslt }} } then \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \li512\ri512\fi0 \tab {\field{\*\fldinst{ EQ |{\u950*}\u8722?{\i z}\u8722?{\i h}|{\u8805*} \\F(1,2)|{\u950*}\u8722?{\i z}|}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \li512\ri512\fi0 and hence {\par \pard\plain\s15\ql\sb120\sa120\keep\widctlpar\f0\tqr\tx3105\tqc\tx3450\tql\tx3795\sl240\slmult1 \li512\ri512\fi0 \tab {\field{\*\fldinst{ EQ \\b \\lc\\|\\rc\\| ( \\F(1,{\u950*}\u8722?{\i z}\u8722?{\i h})\u8722? \\F(1,{\u950*}\u8722?{\i z}))}}{\fldrslt }} \tab {\field{\*\fldinst{ EQ =}}{\fldrslt }} \tab {\field{\*\fldinst{ EQ \\b \\lc\\|\\rc\\| ( \\F(({\u950*}\u8722?{\i z})\u8722?({\u950*}\u8722?{\i z}\u8722?{\i h}),({\u950*}\u8722?{\i z}\u8722?{\i h})({\u950*}\u8722?{\i z})))}}{\fldrslt }} \par \pard\plain\s15\ql\sb120\sa120\keep\widctlpar\f0\tqr\tx3105\tqc\tx3450\tql\tx3795\sl240\slmult1 \li512\ri512\fi0 \tab {\field{\*\fldinst{ EQ }}{\fldrslt }} \tab {\field{\*\fldinst{ EQ =}}{\fldrslt }} \tab {\field{\*\fldinst{ EQ \\b \\lc\\|\\rc\\| ( \\F({\i h},({\u950*}\u8722?{\i z}\u8722?{\i h})({\u950*}\u8722?{\i z})))}}{\fldrslt }} \par \pard\plain\s15\ql\sb120\sa120\keep\widctlpar\f0\tqr\tx3105\tqc\tx3450\tql\tx3795\sl240\slmult1 \li512\ri512\fi0 \tab {\field{\*\fldinst{ EQ }}{\fldrslt }} \tab {\field{\*\fldinst{ EQ {\u8804*}}}{\fldrslt }} \tab {\field{\*\fldinst{ EQ \\F(2|{\i h}|,|{\u950*}\u8722?{\i z}|\\s\\up6({\fs20 2})).}}{\fldrslt }} \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 was obtained by typing {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par If $h \\leq \\frac\{1\}\{2\} |\\zeta - z|$ then \par \\[ |\\zeta - z - h| \\geq \\frac\{1\}\{2\} |\\zeta - z|\\] \par and hence \par \\begin\{eqnarray*\} \par \\left| \\frac\{1\}\{\\zeta - z - h\} - \\frac\{1\}\{\\zeta - z\} \\right| \par & = & \\left| \par \\frac\{(\\zeta - z) - (\\zeta - z - h)\}\{(\\zeta - z - h)(\\zeta - z)\} \par \\right| \\\\ & = & \par \\left| \\frac\{h\}\{(\\zeta - z - h)(\\zeta - z)\} \\right| \\\\ \par & \\leq & \\frac\{2 |h|\}\{|\\zeta - z|^2\}. \par \\end\{eqnarray*\} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi360 The asterisk in {\b0\i0\scaps0\f3 eqnarray*} is put there to suppress the automatic equation numbering produced by {\plain L{\up6\fs19 A}T{\dn7 E}X}. If you wish for an automatically numbered multiline formula, you should use {\b0\i0\scaps0\f3 \\begin\{eqnarray\}} and {\b0\i0\scaps0\f3 \\end\{eqnarray\}}.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 3.14 Matrices and other arrays in {\plain L{\up6\fs19 A}T{\dn7 E}X}\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 Matrices and other arrays are produced in {\plain L{\up6\fs19 A}T{\dn7 E}X} using the {\b array} environment. For example, suppose that we wish to typeset the following passage: {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi360 The {\i characteristic polynomial} {{\u967*}({\u955*})} of the {3{\u215*}3}\~matrix \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \li512\ri512\fi0 \tab {\field{\*\fldinst{ EQ \\b ({ \\a \\ac \\co3 ({\i a},{\i b},{\i c},{\i d},{\i e},{\i f},{\i g},{\i h},{\i i})})}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \li512\ri512\fi0 is given by the formula \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \li512\ri512\fi0 \tab {\field{\*\fldinst{ EQ {\u967*}({\u955*})= \\b \\lc\\|\\rc\\| ({ \\a \\ac \\co3 ({\u955*}\u8722?{\i a},\u8722?{\i b},\u8722?{\i c},\u8722?{\i d},{\u955*}\u8722?{\i e},\u8722?{\i f},\u8722?{\i g},\u8722?{\i h},{\u955*}\u8722?{\i i})}).}}{\fldrslt }} \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 This passage is produced by the following input: {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par The \\emph\{characteristic polynomial\} $\\chi(\\lambda)$ of the \par $3 \\times 3$~matrix \par \\[ \\left( \\begin\{array\}\{ccc\} \par a & b & c \\\\ \par d & e & f \\\\ \par g & h & i \\end\{array\} \\right)\\] \par is given by the formula \par \\[ \\chi(\\lambda) = \\left| \\begin\{array\}\{ccc\} \par \\lambda - a & -b & -c \\\\ \par -d & \\lambda - e & -f \\\\ \par -g & -h & \\lambda - i \\end\{array\} \\right|.\\] \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 First of all, note the use of {\b0\i0\scaps0\f3 \\left} and {\b0\i0\scaps0\f3 \\right} to produce the large delimiters around the arrays. As we have already seen, if we use {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi360 {\b0\i0\scaps0\f3 \\left)} ... {\b0\i0\scaps0\f3 \\right)} \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 then the size of the parentheses is chosen to match the subformula that they enclose. Next note the use of the alignment tab character {\b0\i0\scaps0\f3 &} to separate the entries of the matrix and the use of {\b0\i0\scaps0\f3 \\\\} to separate the rows of the matrix, exactly as in the construction of multiline formulae described above. We begin the array with {\b0\i0\scaps0\f3 \\begin\{array\}} and end it with {\b0\i0\scaps0\f3 \\end\{array\}}. The only thing left to explain, therefore, is the mysterious {\b0\i0\scaps0\f3 \{ccc\}} which occurs immediately after {\b0\i0\scaps0\f3 \\begin\{array\}}. Now each of the {\b0\i0\scaps0\f3 c}\rquote s in {\b0\i0\scaps0\f3 \{ccc\}} represents a column of the matrix and indicates that the entries of the column should be {\i centred}. If the {\b0\i0\scaps0\f3 c} were replaced by {\b0\i0\scaps0\f3 l} then the corresponding column would be typeset with all the entries flush {\i left}, and {\b0\i0\scaps0\f3 r} would produce a column with all entries flush {\i right}. Thus {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\[ \\begin\{array\}\{lcr\} \par \\mbox\{First number\} & x & 8 \\\\ \par \\mbox\{Second number\} & y & 15 \\\\ \par \\mbox\{Sum\} & x + y & 23 \\\\ \par \\mbox\{Difference\} & x - y & -7 \\\\ \par \\mbox\{Product\} & xy & 120 \\end\{array\}\\] \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 produces \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ { \\a \\al \\co3 ({First\~number}\~,\~x\~,\~8\~,{Second\~number}\~,\~y\~,\~15\~,{Sum}\~,\~x\~+\~y\~,\~23\~,{Difference}\~,\~x\~- y , -7 ,{Product} , xy , 120 )}}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 We can use the array environment to produce formulae such as \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ |{\i x}|= \\b \\lc\\\{ ({ \\a \\al \\co2 ({\i x},{if\~{{\i x}{\u8805*}0}};,-x , {if\~{{\i x}<0}}.)})}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 Note that both columns of this array are set flush left. Thus we use {\b0\i0\scaps0\f3 \{ll\}} immediately after {\b0\i0\scaps0\f3 \\begin\{array\}}. The large curly bracket is produced using {\b0\i0\scaps0\f3 \\left\\\{}. However this requires a corresponding {\b0\i0\scaps0\f3 \\right} delimiter to match it. We therefore use the {\i null delimiter} {\b0\i0\scaps0\f3 \\right.} discussed earlier. This delimiter is invisible. We can therefore obtain the above formula by typing {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\[ |x| = \\left\\\{ \\begin\{array\}\{ll\} \par x & \\mbox\{if $x \\geq 0$\};\\\\ \par -x & \\mbox\{if $x < 0$\}.\\end\{array\} \\right. \\] \par \par }}\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 3.15 Derivatives, Limits, Sums and Integrals\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 The expressions \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ \\F({\i d}{\i u},{\i d}{\i t}){\~and\~} \\F({\i d}\\s\\up6({\fs20 2}){\i u},{\i d}{\i x}\\s\\up6({\fs20 2}))}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 are obtained in {\plain L{\up6\fs19 A}T{\dn7 E}X} by typing {\b0\i0\scaps0\f3 \\frac\{du\}\{dt\}} and {\b0\i0\scaps0\f3 \\frac\{d^2 u\}\{dx^2\}} respectively. The mathematical symbol {{\u8706*}} is produced using {\b0\i0\scaps0\f3 \\partial}. Thus the Heat Equation \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ \\F({\u8706*}{\i u},{\u8706*}{\i t})= \\F({\u8706*}\\s\\up6({\fs20 2}){\i u},{\u8706*}{\i x}\\s\\up6({\fs20 2}))+ \\F({\u8706*}\\s\\up6({\fs20 2}){\i u},{\u8706*}{\i y}\\s\\up6({\fs20 2}))+ \\F({\u8706*}\\s\\up6({\fs20 2}){\i u},{\u8706*}{\i z}\\s\\up6({\fs20 2}))}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 is obtained in {\plain L{\up6\fs19 A}T{\dn7 E}X} by typing {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\[\\frac\{\\partial u\}\{\\partial t\} \par = \\frac\{\\partial^2 u\}\{\\partial x^2\} \par + \\frac\{\\partial^2 u\}\{\\partial y^2\} \par + \\frac\{\\partial^2 u\}\{\\partial z^2\} \\] \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi360 To obtain mathematical expressions such as \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ \\a\\ac(lim,{\i x}{\u8594*}+{\u8734*}){\\,\~}{\plain inf}\\s\\do6({\fs20 {\i x}>{\i s}}){\~and\~}{\plain sup}\\s\\do6({\fs20 {\i K}})}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 in displayed equations we type {\b0\i0\scaps0\f3 \\lim_\{x \\to +\\infty\}}, {\b0\i0\scaps0\f3 \\inf_\{x > s\}} and {\b0\i0\scaps0\f3 \\sup_K} respectively. Thus to obtain \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ \\a\\ac(lim,{\i x}{\u8594*}0) \\F(3{\i x}\\s\\up6({\fs20 2})+7,{\i x}\\s\\up6({\fs20 2})+1)=3.}}{\fldrslt }} \par (\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 in {\plain L{\up6\fs19 A}T{\dn7 E}X}) we type {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\[ \\lim_\{x \\to 0\} \\frac\{3x^2 +7x^3\}\{x^2 +5x^4\} = 3.\\] \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi360 To obtain a summation sign such as \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ \\i \\su({\i i}=1,2{\i n}, )}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 we type {\b0\i0\scaps0\f3 sum_\{i=1\}^\{2n\}}. Thus \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ \\i \\su({\i k}=1,{\i n}, ){\i k}\\s\\up6({\fs20 2})= \\F(1,2){\i n}({\i n}+1).}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 is obtained by typing {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\[ \\sum_\{k=1\}^n k^2 = \\frac\{1\}\{2\} n (n+1).\\] \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi360 We now discuss how to obtain {\i integrals} in mathematical documents. A typical integral is the following: \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ \\i ({\i a},{\i b}, ){\i f}({\i x}){\charscalex50\~}{\i d}{\i x}.}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 This is typeset using {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\[ \\int_a^b f(x)\\,dx.\\] \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 The integral sign {{\field{\*\fldinst{ EQ \\i \\in(,, )}}{\fldrslt }} } is typeset using the control sequence {\b0\i0\scaps0\f3 \\int}, and the {\i limits of integration} (in this case {{\i a}} and {{\i b}} are treated as a subscript and a superscript on the integral sign.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Most integrals occurring in mathematical documents begin with an integral sign and contain one or more instances of\~{{\i d}} followed by another (Latin or Greek) letter, as in {{\i d}{\i x}}, {{\i d}{\i y}} and {{\i d}{\i t}}. To obtain the correct appearance one should put extra space before the\~{{\i d}}, using {\b0\i0\scaps0\f3 \\,}. Thus \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ \\i (0,+{\u8734*}, ){\i x}\\s\\up6({\fs20 {\i n}}){\i e}\\s\\up6({\fs20 \u8722?{\i x}}){\charscalex50\~}{\i d}{\i x}={\i n}!.}}{\fldrslt }} \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ \\i \\in(,, ){\plain cos}{\u920*}{\charscalex50\~}{\i d}{\u920*}={\plain sin}{\u920*}.}}{\fldrslt }} \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ \\i ({\i x}\\s\\up6({\fs20 2})+{\i y}\\s\\up6({\fs20 2}){\u8804*}{\i R}\\s\\up6({\fs20 2}),, ){\i f}({\i x}\\,{\i y}){\charscalex50\~}{\i d}{\i x}{\charscalex50\~}{\i d}{\i y}= \\i ({\u920*}=0,2{\u960*}, ) \\i ({\i r}=0,{\i R}, ){\i f}({\i r}{\plain cos}{\u920*}\\,{\i r}{\plain sin}{\u920*}){\i r}{\charscalex50\~}{\i d}{\i r}{\charscalex50\~}{\i d}{\u920*}.}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 and \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ \\i (0,{\i R}, ) \\F(2{\i x}{\charscalex50\~}{\i d}{\i x},1+{\i x}\\s\\up6({\fs20 2}))={\plain log}(1+{\i R}\\s\\up6({\fs20 2})).}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 are obtained by typing {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\[ \\int_0^\{+\\infty\} x^n e^\{-x\} \\,dx = n!.\\] \par \par }}{{\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb180 \li512\ri512\fi0 \par \\[ \\int \\cos \\theta \\,d\\theta = \\sin \\theta.\\] \par \par }}{{\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb180 \li512\ri512\fi0 \par \\[ \\int_\{x^2 + y^2 \\leq R^2\} f(x,y)\\,dx\\,dy \par = \\int_\{\\theta=0\}^\{2\\pi\} \\int_\{r=0\}^R \par f(r\\cos\\theta,r\\sin\\theta) r\\,dr\\,d\\theta.\\] \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 and {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\[ \\int_0^R \\frac\{2x\\,dx\}\{1+x^2\} = \\log(1+R^2).\\] \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 respectively.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 In some multiple integrals (i.e., integrals containing more than one integral sign) one finds that {\plain L{\up6\fs19 A}T{\dn7 E}X} puts too much space between the integral signs. The way to improve the appearance of of the integral is to use the control sequence {\b0\i0\scaps0\f3 \\!} to remove a thin strip of unwanted space. Thus, for example, the multiple integral \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ \\i (0,1, ) \\i (0,1, ){\i x}\\s\\up6({\fs20 2}){\i y}\\s\\up6({\fs20 2}){\charscalex50\~}{\i d}{\i x}{\charscalex50\~}{\i d}{\i y}.}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 is obtained by typing {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\[ \\int_0^1 \\! \\int_0^1 x^2 y^2\\,dx\\,dy.\\] \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 Had we typed {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\[ \\int_0^1 \\int_0^1 x^2 y^2\\,dx\\,dy.\\] \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 we would have obtained \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ \\i (0,1, ) \\i (0,1, ){\i x}\\s\\up6({\fs20 2}){\i y}\\s\\up6({\fs20 2}){\charscalex50\~}{\i d}{\i x}{\charscalex50\~}{\i d}{\i y}.}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 A particularly noteworthy example comes when we are typesetting a multiple integral such as \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ \\i \\in(,, ) \\i ({\i D},, ){\i f}({\i x}\\,{\i y}){\charscalex50\~}{\i d}{\i x}{\charscalex50\~}{\i d}{\i y}.}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 Here we use {\b0\i0\scaps0\f3 \\!} three times to obtain suitable spacing between the integral signs. We typeset this integral using {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\[ \\int \\!\\!\\! \\int_D f(x,y)\\,dx\\,dy.\\] \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 Had we typed {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\[ \\int \\int_D f(x,y)\\,dx\\,dy.\\] \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 we would have obtained \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ \\i \\in(,, ) \\i \\in(,, )\\s\\do6({\fs20 {\i D}}){\i f}({\i x}\\,{\i y}){\charscalex50\~}{\i d}{\i x}{\charscalex50\~}{\i d}{\i y}.}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 The following (reasonably complicated) passage exhibits a number of the features which we have been discussing: {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi360 In non-relativistic wave mechanics, the wave function {{\u968*}({\b r},{\i t})} of a particle satisfies the {\i Schr\'f6dinger Wave Equation} \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \li512\ri512\fi0 \tab {\field{\*\fldinst{ EQ {\i i}{\u295*} \\F({\u8706*}{\u968*},{\u8706*}{\i t})= \\F(\u8722?{\u295*}\\s\\up6({\fs20 2}),2{\i m}) \\b ( \\F({\u8706*}\\s\\up6({\fs20 2}),{\u8706*}{\i x}\\s\\up6({\fs20 2}))+ \\F({\u8706*}\\s\\up6({\fs20 2}),{\u8706*}{\i y}\\s\\up6({\fs20 2}))+ \\F({\u8706*}\\s\\up6({\fs20 2}),{\u8706*}{\i z}\\s\\up6({\fs20 2}))){\u968*}+{\i V}{\u968*}.}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \li512\ri512\fi0 It is customary to normalize the wave equation by demanding that \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \li512\ri512\fi0 \tab {\field{\*\fldinst{ EQ \\i \\in(,, ) \\i \\in(,, ) \\i ({\b R}\\s\\up6({\fs20 3}),, ) \\b \\lc\\|\\rc\\| ({\u968*}({\b r}\\,0))\\s\\up17({\fs20 2}){\charscalex50\~}{\i d}{\i x}{\charscalex50\~}{\i d}{\i y}{\charscalex50\~}{\i d}{\i z}=1.}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \li512\ri512\fi0 A simple calculation using the Schr\'f6dinger wave equation shows that \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \li512\ri512\fi0 \tab {\field{\*\fldinst{ EQ \\F({\i d},{\i d}{\i t}) \\i \\in(,, ) \\i \\in(,, ) \\i ({\b R}\\s\\up6({\fs20 3}),, ) \\b \\lc\\|\\rc\\| ({\u968*}({\b r}\\,{\i t}))\\s\\up17({\fs20 2}){\charscalex50\~}{\i d}{\i x}{\charscalex50\~}{\i d}{\i y}{\charscalex50\~}{\i d}{\i z}=0\\,}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \li512\ri512\fi0 and hence \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \li512\ri512\fi0 \tab {\field{\*\fldinst{ EQ \\i \\in(,, ) \\i \\in(,, ) \\i ({\b R}\\s\\up6({\fs20 3}),, ) \\b \\lc\\|\\rc\\| ({\u968*}({\b r}\\,{\i t}))\\s\\up17({\fs20 2}){\charscalex50\~}{\i d}{\i x}{\charscalex50\~}{\i d}{\i y}{\charscalex50\~}{\i d}{\i z}=1}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \li512\ri512\fi0 for all times\~{{\i t}}. If we normalize the wave function in this way then, for any (measurable) subset\~{{\i V}} of {{\field{\*\fldinst{ EQ {\b R}\\s\\up6({\fs20 3})}}{\fldrslt }} } and time\~{{\i t}}, \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \li512\ri512\fi0 \tab {\field{\*\fldinst{ EQ \\i \\in(,, ) \\i \\in(,, ) \\i ({\i V},, ) \\b \\lc\\|\\rc\\| ({\u968*}({\b r}\\,{\i t}))\\s\\up17({\fs20 2}){\charscalex50\~}{\i d}{\i x}{\charscalex50\~}{\i d}{\i y}{\charscalex50\~}{\i d}{\i z}}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \li512\ri512\fi0 represents the probability that the particle is to be found within the region\~{{\i V}} at time\~{{\i t}}. \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 One would typeset this in {\plain L{\up6\fs19 A}T{\dn7 E}X} by typing {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par In non-relativistic wave mechanics, the wave function \par $\\psi(\\mathbf\{r\},t)$ of a particle satisfies the \par \\textit\{Schr\\"\{o\}dinger Wave Equation\} \par \\[ i\\hbar\\frac\{\\partial \\psi\}\{\\partial t\} \par = \\frac\{-\\hbar^2\}\{2m\} \\left( \par \\frac\{\\partial^2\}\{\\partial x^2\} \par + \\frac\{\\partial^2\}\{\\partial y^2\} \par + \\frac\{\\partial^2\}\{\\partial z^2\} \par \\right) \\psi + V \\psi.\\] \par It is customary to normalize the wave equation by \par demanding that \par \\[ \\int \\!\\!\\! \\int \\!\\!\\! \\int_\{\\textbf\{R\}^3\} \par \\left| \\psi(\\mathbf\{r\},0) \\right|^2\\,dx\\,dy\\,dz = 1.\\] \par A simple calculation using the Schr\\"\{o\}dinger wave \par equation shows that \par \\[ \\frac\{d\}\{dt\} \\int \\!\\!\\! \\int \\!\\!\\! \\int_\{\\textbf\{R\}^3\} \par \\left| \\psi(\\mathbf\{r\},t) \\right|^2\\,dx\\,dy\\,dz = 0,\\] \par and hence \par \\[ \\int \\!\\!\\! \\int \\!\\!\\! \\int_\{\\textbf\{R\}^3\} \par \\left| \\psi(\\mathbf\{r\},t) \\right|^2\\,dx\\,dy\\,dz = 1\\] \par for all times~$t$. If we normalize the wave function in this \par way then, for any (measurable) subset~$V$ of $\\textbf\{R\}^3$ \par and time~$t$, \par \\[ \\int \\!\\!\\! \\int \\!\\!\\! \\int_V \par \\left| \\psi(\\mathbf\{r\},t) \\right|^2\\,dx\\,dy\\,dz\\] \par represents the probability that the particle is to be found \par within the region~$V$ at time~$t$. \par \par }}\pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb360 \fi0 4 Further Features of {\plain L{\up6\fs19 A}T{\dn7 E}X}\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb180 \fi0 4.1 Producing White Space in {\plain L{\up6\fs19 A}T{\dn7 E}X}\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 To produce (horizontal) blank space within a paragraph, use {\b0\i0\scaps0\f3 \\hspace}, followed by the length of the blank space enclosed within curly brackets. The length of the skip should be expressed in a unit recognized by {\plain L{\up6\fs19 A}T{\dn7 E}X}. These recognized units are given in the following table: {\par {\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par {\trowd\cellx1828\cellx3813\cellx6898 {\pard\intbl\ql {{\f3 pt}}\cell} {\pard\intbl\ql {point}\cell} {\pard\intbl\ql {(1 in = 72.27 pt)}\cell} \row} {\trowd\cellx1828\cellx3813\cellx6898 {\pard\intbl\ql {{\f3 pc}}\cell} {\pard\intbl\ql {pica}\cell} {\pard\intbl\ql {(1 pc = 12 pt)}\cell} \row} {\trowd\cellx1828\cellx3813\cellx6898 {\pard\intbl\ql {{\f3 in}}\cell} {\pard\intbl\ql {inch}\cell} {\pard\intbl\ql {(1 in = 25.4 mm)}\cell} \row} {\trowd\cellx1828\cellx3813\cellx6898 {\pard\intbl\ql {{\f3 bp}}\cell} {\pard\intbl\ql {big point}\cell} {\pard\intbl\ql {(1 in = 72 bp)}\cell} \row} {\trowd\cellx1828\cellx3813\cellx6898 {\pard\intbl\ql {{\f3 cm}}\cell} {\pard\intbl\ql {centimetre}\cell} {\pard\intbl\ql {(1 cm = 10 mm)}\cell} \row} {\trowd\cellx1828\cellx3813\cellx6898 {\pard\intbl\ql {{\f3 mm}}\cell} {\pard\intbl\ql {millimetre}\cell} {\pard\intbl\ql {}\cell} \row} {\trowd\cellx1828\cellx3813\cellx6898 {\pard\intbl\ql {{\f3 dd}}\cell} {\pard\intbl\ql {didot point}\cell} {\pard\intbl\ql {(1157 dd = 1238 pt)}\cell} \row} {\trowd\cellx1828\cellx3813\cellx6898 {\pard\intbl\ql {{\f3 cc}}\cell} {\pard\intbl\ql {cicero}\cell} {\pard\intbl\ql {(1 cc = 12 dd)}\cell} \row} {\trowd\cellx1828\cellx3813\cellx6898 {\pard\intbl\ql {{\f3 sp}}\cell} {\pard\intbl\ql {scaled point}\cell} {\pard\intbl\ql {(65536 sp = 1 pt)}\cell} \row} } \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 Thus to produce a horizontal blank space of 20 mm in the middle of a paragraph one would type {\b0\i0\scaps0\f3 \\hspace\{20 mm\}}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 If {\plain L{\up6\fs19 A}T{\dn7 E}X} decides to break between lines at a point in the document where an {\b0\i0\scaps0\f3 \\hspace} is specified, then no white space is produced. To ensure that white space is produced even at points in the document where line breaking takes place, one should replace {\b0\i0\scaps0\f3 \\hspace} by {\b0\i0\scaps0\f3 \\hspace*}\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 To produce (vertical) blank space between paragraphs, use {\b0\i0\scaps0\f3 \\vspace}, followed by the length of the blank space enclosed within curly brackets. Thus to obtain {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi360 This is the first paragraph of some text. It is separated from the second paragraph by a vertical skip of 10 millimetres.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb569 \li512\ri512\fi360 This is the second paragraph. \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 one should type {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par This is the first paragraph of some text. It is \par separated from the second paragraph by a vertical skip of \par 10 millimetres. \par \par \\vspace\{10 mm\} \par This is the second paragraph. \par \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 If {\plain L{\up6\fs19 A}T{\dn7 E}X} decides to introduce at a point in the document where a {\b0\i0\scaps0\f3 \\vspace} is specified, then no white space is produced. To ensure that white space is produced even at points in the document where page breaking takes place, one should replace {\b0\i0\scaps0\f3 \\vspace} by {\b0\i0\scaps0\f3 \\vspace*}\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 We now describe certain features of {\plain L{\up6\fs19 A}T{\dn7 E}X} relating to blank spaces and paragraph indentation which will improve the appearance of the final document. Experienced users of {\plain L{\up6\fs19 A}T{\dn7 E}X} will improve the appearance of their documents if they bear these remarks in mind.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 First note that, as a general rule, you should never put a blank space after a left parenthesis or before a right parenthesis. If you were to put a blank space in these places, then you run the risk that {\plain L{\up6\fs19 A}T{\dn7 E}X} might start a new line immediately after the left parenthesis or before the right parenthesis, leaving the parenthesis marooned at the beginning or end of a line.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\plain L{\up6\fs19 A}T{\dn7 E}X} has its own rules for deciding the lengths of blank spaces. For instance, {\plain L{\up6\fs19 A}T{\dn7 E}X} will put an extra amount of space after a full stop if it considers that the full stop marks the end of a sentence.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 The rule adopted by {\plain L{\up6\fs19 A}T{\dn7 E}X} is to regard a period (full stop) as the end of a sentence if it is preceded by a lowercase letter. If the period is preceded by an uppercase letter then {\plain L{\up6\fs19 A}T{\dn7 E}X} assumes that it is not a full stop but follows the initials of somebody\rquote s name.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 This works very well in most cases. However {\plain L{\up6\fs19 A}T{\dn7 E}X} occasionally gets things wrong. This happens with a number of common abbreviations (as in \lquote Mr. Smith\rquote or in \lquote etc.\rquote ), and, in particular, in the names of journals given in abbreviated form (e.g., \lquote Proc. Amer. Math. Soc.\rquote ). The way to overcome this problem is to put a backslash before the blank space in question. Thus we should type {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par Mr.\\ Smith \par etc.\\ and \par Proc.\\ Amer.\\ Math.\\ Soc. \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi360 {\plain L{\up6\fs19 A}T{\dn7 E}X} determines itself how to break up a paragraph into lines, and will occasionally hyphenate long words where this is desirable. However it is sometimes necessary to tell {\plain L{\up6\fs19 A}T{\dn7 E}X} not to break at a particular blank space. The special character used for this purpose is {\b0\i0\scaps0\f3 ~}. It represents a blank space at which {\plain L{\up6\fs19 A}T{\dn7 E}X} is not allowed to break between lines. It is often desirable to use {\b0\i0\scaps0\f3 ~} in names where the forenames are represented by initials. Thus to obtain \lquote W. R. Hamilton\rquote it is best to type {\b0\i0\scaps0\f3 W.~R.~Hamilton}. It is also desirable in phrases like \lquote Example 7\rquote and \lquote the length\~{{\i l}} of the rod\rquote , obtained by typing {\b0\i0\scaps0\f3 Example~7} and {\b0\i0\scaps0\f3 the length~$l$ of the rod.}\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 {\plain L{\up6\fs19 A}T{\dn7 E}X} will automatically indent paragraphs (with the exception of the first paragraph of a new section). One can prevent {\plain L{\up6\fs19 A}T{\dn7 E}X} from indenting a paragraph though by beginning the paragraph with the control sequence {\b0\i0\scaps0\f3 \\noindent}. Thus one obtains {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 This is the beginning of a paragraph which is not indented in the usual way. This has been achieved by placing an appropriate control sequence at the beginning of the paragraph. \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 by typing {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\noindent \par This is the beginning of a paragraph which is not \par indented in the usual way. This has been achieved \par by placing an appropriate control sequence at the \par beginning of the paragraph. \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi360 Conversely, the control sequence {\b0\i0\scaps0\f3 \\indent} forces {\plain L{\up6\fs19 A}T{\dn7 E}X} to indent the paragraph.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 4.2 Lists\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 {\plain L{\up6\fs19 A}T{\dn7 E}X} provides the following list environments: {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab {\b0\i0\scaps0\f3 enumerate} for numbered lists, \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab {\b0\i0\scaps0\f3 itemize} for un-numbered lists, \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab {\b0\i0\scaps0\f3 description} for description lists \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 Numbered lists are produced using {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\begin\{enumerate\} ... \\end\{enumerate\} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 The items in the list should be enclosed between {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi360 {\b0\i0\scaps0\f3 \\begin\{enumerate\}} and {\b0\i0\scaps0\f3 \\end\{enumerate\}} \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 and should each be preceded by the control sequence {\b0\i0\scaps0\f3 \\item} (which will automatically generate the number labelling the item). For example, the text {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi360 A {\i metric space} {({\i X},{\i d})} consists of a set\~{{\i X}} on which is defined a {\i distance function} which assigns to each pair of points of {{\i X}} a distance between them, and which satisfies the following four axioms: {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li1112\ri512\fi-300 1.\tab {{\i d}({\i x},{\i y}){\u8805*}0} for all points {{\i x}} and {{\i y}} of {{\i X}}; \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li1112\ri512\fi-300 2.\tab {{\i d}({\i x},{\i y})={\i d}({\i y},{\i x})} for all points {{\i x}} and {{\i y}} of {{\i X}}; \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li1112\ri512\fi-300 3.\tab {{\i d}({\i x},{\i z}){\u8804*}{\i d}({\i x},{\i y})+{\i d}({\i y},{\i z})} for all points {{\i x}}, {{\i y}} and {{\i z}} of {{\i X}}; \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li1112\ri512\fi-300 4.\tab {{\i d}({\i x},{\i y})=0} if and only if the points {{\i x}} and {{\i y}} coincide. \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 is generated by {\plain L{\up6\fs19 A}T{\dn7 E}X} from the following input: {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par A \\emph\{metric space\} $(X,d)$ consists of a set~$X$ on \par which is defined a \\emph\{distance function\} which assigns \par to each pair of points of $X$ a distance between them, \par and which satisfies the following four axioms: \par \\begin\{enumerate\} \par \\item \par $d(x,y) \\geq 0$ for all points $x$ and $y$ of $X$; \par \\item \par $d(x,y) = d(y,x)$ for all points $x$ and $y$ of $X$; \par \\item \par $d(x,z) \\leq d(x,y) + d(y,z)$ for all points $x$, $y$ \par and $z$ of $X$; \par \\item \par $d(x,y) = 0$ if and only if the points $x$ and $y$ \par coincide. \par \\end\{enumerate\} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi360 Un-numbered lists are produced using {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\begin\{itemize\} ... \\end\{itemize\} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 If we replace {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi360 {\b0\i0\scaps0\f3 \\begin\{enumerate\}} and {\b0\i0\scaps0\f3 \\end\{enumerate\}} \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 in the above input by {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi360 {\b0\i0\scaps0\f3 \\begin\{itemize\}} and {\b0\i0\scaps0\f3 \\end\{itemize\}} \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 respectively, {\plain L{\up6\fs19 A}T{\dn7 E}X} generates an itemized list in which each item is preceeded by a \lquote bullet\rquote : {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi360 A {\i metric space} {({\i X},{\i d})} consists of a set\~{{\i X}} on which is defined a {\i distance function} which assigns to each pair of points of {{\i X}} a distance between them, and which satisfies the following four axioms: {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li1112\ri512\fi-300 \bullet\tab {{\i d}({\i x},{\i y}){\u8805*}0} for all points {{\i x}} and {{\i y}} of {{\i X}}; \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li1112\ri512\fi-300 \bullet\tab {{\i d}({\i x},{\i y})={\i d}({\i y},{\i x})} for all points {{\i x}} and {{\i y}} of {{\i X}}; \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li1112\ri512\fi-300 \bullet\tab {{\i d}({\i x},{\i z}){\u8804*}{\i d}({\i x},{\i y})+{\i d}({\i y},{\i z})} for all points {{\i x}}, {{\i y}} and {{\i z}} of {{\i X}}; \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li1112\ri512\fi-300 \bullet\tab {{\i d}({\i x},{\i y})=0} if and only if the points {{\i x}} and {{\i y}} coincide. \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi360 Description lists (for glossaries etc.) are produced using {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\begin\{description\} ... \\end\{description\} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 The items in the list should be enclosed between {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi360 {\b0\i0\scaps0\f3 \\begin\{description\}} and {\b0\i0\scaps0\f3 \\end\{description\}} \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 and should each be preceded by {\b0\i0\scaps0\f3 \\item[}{\i label}{\b0\i0\scaps0\f3 ]}, where {\i label} is the label to be assigned to each item. For example, the text {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi360 We now list the definitions of {\i open ball}, {\i open set} and {\i closed set} in a metric space. {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li1112\ri512\fi-300 {\b open ball} The {\i open ball} of radius\~{{\i r}} about any point\~{{\i x}} is the set of all points of the metric space whose distance from {{\i x}} is strictly less than {{\i r}}; \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li1112\ri512\fi-300 {\b open set} A subset of a metric space is an {\i open set} if, given any point of the set, some open ball of sufficiently small radius about that point is contained wholly within the set; \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li1112\ri512\fi-300 {\b closed set} A subset of a metric space is a {\i closed set} if its complement is an open set. \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 is generated by {\plain L{\up6\fs19 A}T{\dn7 E}X} from the following input: {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par We now list the definitions of \\emph\{open ball\}, \par \\emph\{open set\} and \\emph\{closed set\} in a metric space. \par \\begin\{description\} \par \\item[open ball] \par The \\emph\{open ball\} of radius~$r$ about any point~$x$ \par is the set of all points of the metric space whose \par distance from $x$ is strictly less than $r$; \par \\item[open set] \par A subset of a metric space is an \\emph\{open set\} if, \par given any point of the set, some open ball of \par sufficiently small radius about that point is contained \par wholly within the set; \par \\item[closed set] \par A subset of a metric space is a \\emph\{closed set\} if its \par complement is an open set. \par \\end\{description\} \par \par }}\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 4.3 Displayed Quotations\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 Displayed quotations can be embedded in text using the {\b quote} and {\b quotation} environments {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\begin\{quote\} ... \\end\{quote\} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 and {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\begin\{quotation\} ... \\end\{quotation\}. \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 The {\b quote} environment is recommended for short quotations: the whole quotation is indended in the {\b quote} environment, but the first lines of individual paragraphs are not further indented. The input file {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par Isaac Newton discovered the basic techiques of \par the differential and integral calculus, and \par applied them in the study of many problems \par in mathematical physics. His main mathematical \par works are the \\emph\{Principia\} and the \\emph\{Optics\}. \par He summed up his own estimate of his work as follows: \par \\begin\{quote\} \par I do not know what I may appear to the world; but to \par myself I seem to have been only like a boy, playing \par on the sea-shore, and diverting myself, in now and \par then finding a smoother pebble, or a prettier shell \par than ordinary, whilst the great ocean of truth lay \par all undiscovered before me. \par \\end\{quote\} \par In later years Newton became embroiled in a bitter \par priority dispute with Leibniz over the discovery \par of the basic techniques of calculus. \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 is typeset by {\plain L{\up6\fs19 A}T{\dn7 E}X} as follows: {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi360 Isaac Newton discovered the basic techiques of the differential and integral calculus, and applied them in the study of many problems in mathematical physics. His main mathematical works are the {\i Principia} and the {\i Optics}. He summed up his own estimate of his work as follows: {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li1024\ri1024\fi360 I do not know what I may appear to the world; but to myself I seem to have been only like a boy, playing on the sea-shore, and diverting myself, in now and then finding a smoother pebble, or a prettier shell than ordinary, whilst the great ocean of truth lay all undiscovered before me. \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 In later years Newton became embroiled in a bitter priority dispute with Leibniz over the discovery of the basic techniques of calculus. \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 For longer quotations one may use the {\b quotation} environment: the whole quotation is indented, and the openings of paragraphs are then further indented in the normal fashion.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 4.4 Tables\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 Tables can be produced in {\plain L{\up6\fs19 A}T{\dn7 E}X} using the {\b tabular} environment. For example, the text {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi360 The first five International Congresses of Mathematicians were held in the following cities: {\par {\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li1024\ri1024\fi0 \par {\trowd\cellx2740\cellx5744\cellx6900 {\pard\intbl\ql {Chicago}\cell} {\pard\intbl\ql {U.S.A.}\cell} {\pard\intbl\ql {1893}\cell} \row} {\trowd\cellx2740\cellx5744\cellx6900 {\pard\intbl\ql {Z\'fcrich}\cell} {\pard\intbl\ql {Switzerland}\cell} {\pard\intbl\ql {1897}\cell} \row} {\trowd\cellx2740\cellx5744\cellx6900 {\pard\intbl\ql {Paris}\cell} {\pard\intbl\ql {France}\cell} {\pard\intbl\ql {1900}\cell} \row} {\trowd\cellx2740\cellx5744\cellx6900 {\pard\intbl\ql {Heidelberg}\cell} {\pard\intbl\ql {Germany}\cell} {\pard\intbl\ql {1904}\cell} \row} {\trowd\cellx2740\cellx5744\cellx6900 {\pard\intbl\ql {Rome}\cell} {\pard\intbl\ql {Italy}\cell} {\pard\intbl\ql {1908}\cell} \row} } \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 is produced in {\plain L{\up6\fs19 A}T{\dn7 E}X}using the following input file: {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par The first five International Congresses of Mathematicians \par were held in the following cities: \par \\begin\{quote\} \par \\begin\{tabular\}\{lll\} \par Chicago&U.S.A.&1893\\\\ \par Z\\"\{u\}rich&Switzerland&1897\\\\ \par Paris&France&1900\\\\ \par Heidelberg&Germany&1904\\\\ \par Rome&Italy&1908 \par \\end\{tabular\} \par \\end\{quote\} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 The {\b0\i0\scaps0\f3 \\begin\{tabular\}} command must be followed by a string of characters enclosed within braces which specifies the format of the table. In the above example, the string {\b0\i0\scaps0\f3 \{lll\}} is a format specification for a table with three columns of left-justified text. Within the body of the table the ampersand character\~{\b0\i0\scaps0\f3 &} is used to separate columns of text within each row, and the double backslash\~{\b0\i0\scaps0\f3 \\\\} is used to separate the rows of the table.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 The next example shows how to obtain a table with vertical and horizontal lines. The text {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi360 The group of permutations of a set of {{\i n}}\~elements has order {{\i n}!}, where {{\i n}!}, the factorial of {{\i n}}, is the product of all integers between {1} and {{\i n}}. The following table lists the values of the factorial of each integer\~{{\i n}} between 1 and 10: {\par {\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li1024\ri1024\fi0 \par {\trowd\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx4041\clbrdrl\brdrs\clbrdrt\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6899 {\pard\intbl\qr { {{\i n}}}\cell} {\pard\intbl\qr {{{\i n}!}}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrr\brdrs\cellx4041\clbrdrl\brdrs\clbrdrr\brdrs\cellx6899 {\pard\intbl\qr { 1}\cell} {\pard\intbl\qr {1}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrr\brdrs\cellx4041\clbrdrl\brdrs\clbrdrr\brdrs\cellx6899 {\pard\intbl\qr {2}\cell} {\pard\intbl\qr {2}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrr\brdrs\cellx4041\clbrdrl\brdrs\clbrdrr\brdrs\cellx6899 {\pard\intbl\qr {3}\cell} {\pard\intbl\qr {6}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrr\brdrs\cellx4041\clbrdrl\brdrs\clbrdrr\brdrs\cellx6899 {\pard\intbl\qr {4}\cell} {\pard\intbl\qr {24}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrr\brdrs\cellx4041\clbrdrl\brdrs\clbrdrr\brdrs\cellx6899 {\pard\intbl\qr {5}\cell} {\pard\intbl\qr {120}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrr\brdrs\cellx4041\clbrdrl\brdrs\clbrdrr\brdrs\cellx6899 {\pard\intbl\qr {6}\cell} {\pard\intbl\qr {720}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrr\brdrs\cellx4041\clbrdrl\brdrs\clbrdrr\brdrs\cellx6899 {\pard\intbl\qr {7}\cell} {\pard\intbl\qr {5040}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrr\brdrs\cellx4041\clbrdrl\brdrs\clbrdrr\brdrs\cellx6899 {\pard\intbl\qr {8}\cell} {\pard\intbl\qr {40320}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrr\brdrs\cellx4041\clbrdrl\brdrs\clbrdrr\brdrs\cellx6899 {\pard\intbl\qr {9}\cell} {\pard\intbl\qr {362880}\cell} \row} {\trowd\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx4041\clbrdrl\brdrs\clbrdrb\brdrs\clbrdrr\brdrs\cellx6899 {\pard\intbl\qr {10}\cell} {\pard\intbl\qr {3628800}\cell} \row} } \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 Note how rapidly the value of {{\i n}!} increases with {{\i n}}. \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 is produced in {\plain L{\up6\fs19 A}T{\dn7 E}X}using the following input file: {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par The group of permutations of a set of $n$~elements has \par order $n!$, where $n!$, the factorial of $n$, is the \par product of all integers between $1$ and $n$. The \par following table lists the values of the factorial of each \par integer~$n$ between 1 and 10: \par \\begin\{quote\} \par \\begin\{tabular\}\{|r|r|\} \par \\hline \par $n$&$n!$\\\\ \par \\hline \par 1&1\\\\ \par 2&2\\\\ \par 3&6\\\\ \par 4&24\\\\ \par 5&120\\\\ \par 6&720\\\\ \par 7&5040\\\\ \par 8&40320\\\\ \par 9&362880\\\\ \par 10&3628800\\\\ \par \\hline \par \\end\{tabular\} \par \\end\{quote\} \par Note how rapidly the value of $n!$ increases with $n$. \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 In this example the format specification {\b0\i0\scaps0\f3 \{|r|r|\}} after {\b0\i0\scaps0\f3 \\begin\{tabular\}} specifies that the table should consist of two columns of right-justified text, with vertical lines to the left and to the right of the table, and between columns.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Within the body of the table, the command {\b0\i0\scaps0\f3 \\hline} produces a horizontal line; this command can only be placed between the format specification and the body of the table (to produce a line along the top of the table) or immediately after a row separator (to produce a horizontal line between rows or at the bottom of the table).\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 In a {\b tabular} environment, the format specification after {\b0\i0\scaps0\f3 \\begin\{tabular\}} should consist of one or more of the following, enclosed within braces {\b0\i0\scaps0\f3 \{} and {\b0\i0\scaps0\f3 \}}: {\par {\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par {\trowd\cellx2413\cellx6899 {\pard\intbl\ql {{\b0\i0\scaps0\f3 l}}\cell} {\pard\intbl\ql {specifies a column of left-justified text}\cell} \row} {\trowd\cellx2413\cellx6899 {\pard\intbl\ql {{\b0\i0\scaps0\f3 c}}\cell} {\pard\intbl\ql {specifies a column of centred text}\cell} \row} {\trowd\cellx2413\cellx6899 {\pard\intbl\ql {{\b0\i0\scaps0\f3 r}}\cell} {\pard\intbl\ql {specifies a column of right-justified text}\cell} \row} {\trowd\cellx2413\cellx6899 {\pard\intbl\ql {{\b0\i0\scaps0\f3 p\{}{\i width}{\b0\i0\scaps0\f3 \}}}\cell} {\pard\intbl\ql {specifies a left-justified column of the given width}\cell} \row} {\trowd\cellx2413\cellx6899 {\pard\intbl\ql {{\b0\i0\scaps0\f3 |}}\cell} {\pard\intbl\ql {inserts a vertical line between columns}\cell} \row} {\trowd\cellx2413\cellx6899 {\pard\intbl\ql {{\b0\i0\scaps0\f3 @\{}{\i text}{\b0\i0\scaps0\f3 \}}}\cell} {\pard\intbl\ql {inserts the given {\i text} between columns}\cell} \row} } \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 A string {\i str} of characters in the format specification can be repeated {\i num} times using the construction {\b0\i0\scaps0\f3 *\{}{\i num}{\b0\i0\scaps0\f3 \}\{}{\i str}{\b0\i0\scaps0\f3 \}}. For example, a table with 15 columns of right-justified text enclosed within vertical lines can be produced using the format specification {\b0\i0\scaps0\f3 \{|*\{15\}\{r|\}\}}.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 If additional vertical space is required between rows of the table, then this can be produced by specifying the amount of space within square brackets after {\b0\i0\scaps0\f3 \\\\}. For example, on would use {\b0\i0\scaps0\f3 \\\\[6pt]} to separate two rows of the table by 6\~points of blank space.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 A horizontal line in a table from column\~{{\i i}} to column\~{{\i j}} inclusive can be produced using {\b0\i0\scaps0\f3 \\cline\{}{{\i i}}{\b0\i0\scaps0\f3 -}{{\i j}}{\b0\i0\scaps0\f3 \}}. For example {\b0\i0\scaps0\f3 \\cline\{3-5\}} produces a horizontal line spanning columns 3, 4 and 5 of some table.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 A command of the form {\b0\i0\scaps0\f3 \\multicolumn\{}{\i num}{\b0\i0\scaps0\f3 \}\{}{\i fmt}{\b0\i0\scaps0\f3 \}\{}{\i text}{\b0\i0\scaps0\f3 \}} can be used within the body of a table to produce an entry spanning several columns. Here {\i num} specifies the number of columns to be spanned, {\i fmt} specifies the format for the entry (e.g., {\b0\i0\scaps0\f3 l} if the entry is to be left-justified entry, or {\b0\i0\scaps0\f3 c} if the entry is to be centred), and {\i text} is the text of the entry. For example, to span three columns of a table with the words \lquote Year of Entry\rquote (centred with respect to the three columns), one would use {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\multicolumn\{3\}\{c\}\{Year of entry\} \par \par }}\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 4.5 The Preamble of the {\plain L{\up6\fs19 A}T{\dn7 E}X} Input file\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 We describe the options available in {\plain L{\up6\fs19 A}T{\dn7 E}X} for specifying the overall style of a document.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 A {\plain L{\up6\fs19 A}T{\dn7 E}X} document should begin with a {\b0\i0\scaps0\f3 \\documentclass} command and any text to be printed must be included between {\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \li512\ri512\fi360 {\b0\i0\scaps0\f3 \\begin\{document\}} and {\b0\i0\scaps0\f3 \\end\{document\}} \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 commands. The {\b0\i0\scaps0\f3 \\begin\{document\}} command is sometimes preceded by commands that set the page-style and set up user-defined control sequences.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Here is a typical {\plain L{\up6\fs19 A}T{\dn7 E}X} input file: {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\documentclass[a4paper,12pt]\{article\} \par \\begin\{document\} \par \par This is the first paragraph of a typical document. It is \par produced in a `12~point' size. A \\textit\{point\} is a unit \par of length used by printers. One point is approximately \par $1/72$~inch. In a `12~point' font the height of the \par parentheses is 12~points (i.e. about $1/6$~inch) and the \par letter~`m' is about 12 points long. \par \par This is the second paragraph of the document. There are \par also `10 point' and `11 point' styles available in \\LaTeX. \par The required size is specified in the `documentstyle' \par command. If no such size is specified then the 10~point \par size is assumed. \par \par \\end\{document\} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi360 The syntax of the {\b0\i0\scaps0\f3 \\documentclass} command is as follows. The command begins with {\b0\i0\scaps0\f3 \\documentclass} and ends with the names of one of the available styles, enclosed in curly brackets. The available styles are {\b0\i0\scaps0\f3 article}, {\b0\i0\scaps0\f3 report}, {\b0\i0\scaps0\f3 book} and {\b0\i0\scaps0\f3 letter}. Between the \ldblquote {\b0\i0\scaps0\f3 \\documentclass}\rdblquote and the name of the document style, one may place a list of {\i options}. These options are separated by commas and the list of options is enclosed in square brackets (as in the above example). The options available (which are usually the names of certain \lquote style files\rquote ) include the following: {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 {\b 11pt} Specifies a size of type known as {\i eleven-point}, which is ten percent larger than the ten-point type normally used. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 {\b 12pt} Specifies a twelve-point type size, which is twenty percent larger than ten-point. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 {\b twocolumn} Produces two-column output. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 {\b a4paper} This ensures that the page is appropriately positioned on A4 size paper. \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi360 Typing simply {\b0\i0\scaps0\f3 \\documentclass\{article\}} will produce a document in ten-point type size. However the printed output will not be nicely positioned on A4 paper, since the default size is intended for a different (American) paper size.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 Pages will be automatically numbered at the bottom of the page, unless you specify otherwise. This can be done using the {\b0\i0\scaps0\f3 \\pagestyle} command. This command should come after the {\b0\i0\scaps0\f3 \\documentclass} command and before the {\b0\i0\scaps0\f3 \\begin\{document\}} command. This command has the syntax {\b0\i0\scaps0\f3 \\pagestyle\{}{\i option}{\b0\i0\scaps0\f3 \}}, where the {\i option} is one of the following: {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 {\b plain} The page number is at the foot of the page. This is the default page style for the {\b0\i0\scaps0\f3 article} and {\b0\i0\scaps0\f3 report} document styles. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 {\b empty} No page number is printed. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 {\b headings} The page number (and any other information determined by the document style) is put at the top of the page. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs24\sl240\slmult1 \sb50 \li600\fi-300 {\b myheadings} Similar to the {\b headings} pagestyle, except that the material to go at the top of the page is determined by {\b0\i0\scaps0\f3 \\markboth} and {\b0\i0\scaps0\f3 \\markright} commands (see the {\plain L{\up6\fs19 A}T{\dn7 E}X} manual). \par }\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 For example, the input file {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\documentclass[a4paper]\{article\} \par \\pagestyle\{empty\} \par \\begin\{document\} \par The main body of the document is placed here. \par \\end\{document\} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 produces a document without page numbers, using the standard ten-point type size.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 4.6 Defining your own Control Sequences in {\plain L{\up6\fs19 A}T{\dn7 E}X}\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb60 \fi0 Suppose that we are producing a paper that makes frequent use of some mathematical expression. For example, suppose that integrals like \par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ \\i (\u8722?{\u8734*},+{\u8734*}, ){\i f}({\i x}){\charscalex50\~}{\i d}{\i x}.}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 occur frequently throughout the text. This formula is obtained by typing {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\[ \\int_\{-\\infty\}^\{+\\infty\} f(x)\\,dx.\\] \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 It would be nice if we could type {\b0\i0\scaps0\f3 \\inftyint} (say) to obtain the integral sign at the beginning. This can be done using {\b0\i0\scaps0\f3 \\newcommand}. What we do is to place a line with the command {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\newcommand\{\\inftyint\}\{\\int_\{-\\infty\}^\{+\\infty\}\} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 near the beginning of the input file (e.g., after the {\b0\i0\scaps0\f3 \\documentclass} command but before the {\b0\i0\scaps0\f3 \\begin\{document\}} command). Then we only have to type {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\[ \\inftyint f(x)\\,dx.\\] \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 to obtain the above formula.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 We can modify this procedure slightly. Suppose that we we defined a new control sequence {\b0\i0\scaps0\f3 \\intwrtx} by putting the line {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\newcommand\{\\intwrtx\}[1]\{\\int_\{-\\infty\}^\{+\\infty\} #1 \\,dx\} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 at the beginning of the input file. If we then type the line {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\[ \\intwrtx\{f(x)\}.\\] \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 then we obtain\par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ \\i (\u8722?{\u8734*},+{\u8734*}, ){\i f}({\i x}){\charscalex50\~}{\i d}{\i x}.}}{\fldrslt }} \par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi0 What has happened is that the expression in curly brackets after {\b0\i0\scaps0\f3 \\intwrtx} has been substituted in the expression defining {\b0\i0\scaps0\f3 \\intwrtx}, replacing the {\b0\i0\scaps0\f3 #1} in that expression.\par \pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \fi360 The number 1 inside square brackets in the {\b0\i0\scaps0\f3 \\newcommand} line defining {\b0\i0\scaps0\f3 \\intwrtx} indicates to {\plain L{\up6\fs19 A}T{\dn7 E}X} that it is to expect one expression (in curly brackets) after {\b0\i0\scaps0\f3 \\intwrtx} to substitute for {\b0\i0\scaps0\f3 #1} in the definition of {\b0\i0\scaps0\f3 \\intwrtx}. If we defined a control sequence {\b0\i0\scaps0\f3 \\intwrt} by {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\newcommand\{\\intwrt\}[2]\{\\int_\{-\\infty\}^\{+\\infty\} #2 \\,d #1\} \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 then it would expect two expressions to substitute in for {\b0\i0\scaps0\f3 #1} and {\b0\i0\scaps0\f3 #2} in the definition of {\b0\i0\scaps0\f3 \\intwrt}. Thus if we then type {\par {\pard\plain\s38\ql\widctlpar\f3\fs24\sl240\slmult1 \sb60 \li512\ri512\fi0 \par \\[ \\intwrt\{y\}\{f(y)\}.\\] \par \par }}\pard\plain\s0\qj\widctlpar\f0\fs24\sl240\slmult1 \sb120 \fi0 we obtain\par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ \\i (\u8722?{\u8734*},+{\u8734*}, ){\i f}({\i y}){\charscalex50\~}{\i d}{\i y}.}}{\fldrslt }} \par }} }}}latex2rtf-2.3.18/test/bib_apacite2.bib0000777000175000017500000005144413050672360017676 0ustar wilfriedwilfried@preamble{ {\newcommand{\Speaker}{(Speaker)}} # {\newcommand{\Director}{(Director)}} # {\newcommand{\Producer}{(Producer)}} } @article{1, author = {Paivio, A.}, year = {1975}, title = {Perceptual Comparisons Through the Mind's Eye}, journal = {Memory \& Cognition}, volume = {3}, pages = {635--647} } @article{2, author = {Becker, L. J. and Seligman, C.}, year = {1981}, title = {Welcome to the Energy Crisis}, journal = {Journal of Social Issues}, volume = {37}, number = {2}, pages = {1--7} } @article{3, author = {Horowitz, L. M. and Post, D. L. and French, R. S. and Wallis, K. D. and Siegelman, E. Y.}, year = {1981}, title = {The Prototype as a Construct in Abnormal Psychology: 2. {C}larifying Disagreement in Psychiatric Judgments}, journal = {Journal of Abnormal Psychology}, volume = {90}, pages = {575--585} } @article{4, author = {Winston, B. L. and Reinhart, M. L. and Sacker, J. R. and Gottlieb, W. and Oscar, B. B. and Harris, D. P.}, year = {1983}, title = {Effect of Intertrial Delays on Retardation of Learning}, journal = {Journal of Experimental Psychology: Animal Behavior Processes}, volume = {9}, pages = {581--593} } @article{5, author = {Corcoran, D. L. and Williamson, E. M.}, year = {in press}, title = {Unlearning Learned Helplessness}, journal = {Journal of Personality and Social Psychology} } @magazine{6, author = {Gardner, H.}, year = {1981}, month = dec, title = {Do Babies Sing a Universal Song?}, journal = {Psychology Today}, pages = {70--76} } @magazine{7, author = {Staff}, year = {1980}, month = sep, day = {1}, title = {Professionals Face Tax Rises as {IRS} Targets Personal-Service Corporations}, journal = {Behavior Today}, pages = {5} } @magazine{8, key = {``Study Finds''}, title = {Study Finds Free Care Used More}, year = {1982}, month = apr, journal = {{APA} Monitor}, pages = {14} } @magazine{9, author = {Lublin, J. S.}, year = {1980}, month = dec, day = {5}, title = {On Idle: The Unemployed Shun Much Mundane Work, At Least for a While}, journal = {The Wall Street Journal}, pages = {1, 25} } @magazine{10, author = {O'Neill, G. W.}, year = {1982}, month = jan, title = {In Support of {DSM-III}}, type = {Letter to the editor}, journal = {{APA} Monitor}, pages = {4} } @article{11, editor = {Glaser, R. and Bond, L.}, year = {1981}, title = {Testing: Concepts, Policy, Practice, and Research}, type = {Special issue}, journal = {American Psychologist}, volume = {36}, number = {10} } @article{12, author = {Hood, L. and Bloom, L.}, year = {1979}, title = {What, When, and How About Why: A Longitudinal Study of Early Expressions of Causality}, journal = {Monographs of the Society for Research in Child Development}, volume = {44}, number = {6, Serial No. 181} } @article{13, author = {Battig, W. F. and Montague, W. E.}, year = {1969}, title = {Category Norms of Verbal Items in 56 Categories: A Replication and Extension of the {C}onnecticut Category Norms}, journal = {Journal of Experimental Psychology Monographs}, volume = {80}, number = {3, Pt. 2} } @article{14, author = {Corrigan, J. D. and Dell, D. M. and Lewis, K. N. and Schmidt, L. D.}, year = {1980}, title = {Counseling as a Social Influence Process: A Review}, type = {Monograph}, journal = {Journal of Counseling Psychology}, volume = {27}, pages = {395--441} } @article{15, author = {Misumi, J. and Fujita, M.}, year = {1982}, title = {Effects of {PM} Organizational Development in Supermarket Organization}, journal = {Japanese Journal of Experimental Social Psychology}, volume = {21}, pages = {93--111}, note = {From \emph{Psychological Abstracts}, 1982, \emph{68}, Abstract No. 11474} } @article{16, author = {Koczkas, S. and Holmberg, G. and Wedin, L.}, year = {1981}, title = {A Pilot Study of the Effect of the 5-{HT} Uptake Inhibitor, Zimelidine, on Phobic Anxiety}, journal = {Acta Psychiatrica Scandinavica}, volume = {63}, number = {Suppl. 290}, pages = {328--341} } @article{17, author = {Cialdini, R. B. and Petty, R. E. and Cacioppo, J. T.}, year = {1981}, title = {Attitude and Attitude Change}, journal = {Annual Review of Psychology}, volume = {32}, pages = {357--404} } @article{18, author = {Assink, E. M. H. and Verloop, N.}, year = {1977}, title = {Het Aanleren van Deel-Geheel Relaties in het Aanvankelijk Rekenonderwijs}, englishtitle = {Teaching Part-Whole Relations in Elementary Mathematics Instruction}, journal = {Pedagogische Studi{\"e}n}, volume = {54}, pages = {130--142} } @article{19, author = {Stutte, H.}, year = {1972}, title = {Transcultural Child Psychiatry}, journal = {Acta Paedopsychiatrica}, volume = {38}, number = {9}, pages = {229--231} } @article{20, author = {Beatty, J.}, year = {1982}, title = {Task-Evoked Pupillary Responses, Processing Load, and the Structure of Processing Resources}, journal = {Psychological Bulletin}, volume = {91}, pages = {276--292} } @article{21, author = {Ree, M. J. and Mullins, C. J. and Mathews, J. J. and Massey, R. H.}, year = {1983}, title = {Vocational Aptitude Battery: Item and Factor Analyses}, journal = {Psychological Documents}, volume = {13}, pages = {3}, note = {Ms. No. 2469} } @book{22, author = {Strunk, Jr., W. and White, E. B.}, year = {1979}, title = {The Elements of Style}, edition = {3rd}, address = {New York}, publisher = {Macmillan} } @book{23, author = {{American Psychiatric Association}}, year = {1980}, title = {Diagnostic and Statistical Manual of Mental Disorders}, edition = {3rd}, address = {Washington, DC}, publisher = {Author} } @book{24, editor = {Letheridge, S. and Cannon, C. R.}, year = {1980}, title = {Bilingual Education: Teaching {E}nglish as a Second Language}, address = {New York}, publisher = {Praeger} } @book{25, year = {1979}, title = {College Bound Seniors}, key = {``College Bound Seniors''}, address = {Princeton, NJ}, publisher = {College Board Publications} } @book{26, author = {Cohen, J.}, year = {1977}, title = {Statistical Power Analysis for the Behavioral Sciences}, edition = {rev.}, address = {New York}, publisher = {Academic Press} } @book{27, editor = {Wilson, J. G. and Fraser, F. C.}, year = {1977--1978}, title = {Handbook of Teratology}, volume = {1--4}, address = {New York}, publisher = {Plenum Press} } @book{28, author = {Piaget, J. and Inhelder, B.}, year = {1951}, title = {La Gen{\`e}se de l'Id{\'e}e de Hasard chez l'Enfant}, englishtitle = {The Origin of the Idea of Danger in the Child}, address = {Paris}, publisher = {Presses Universitaires de France} } @book{29, author = {Luria, A. R.}, year = {1969}, title = {The Mind of a Mnemonist}, translator = {Solotaroff, L.}, address = {New York}, publisher = {Avon Books}, originalyear = {1965} } @incollection{30, author = {Gurman, A. S. and Kniskern, D. P.}, year = {1981}, title = {Family Therapy Outcome Research: Knowns and Unknowns}, editor = {Gurman, A. S. and Kniskern, D. P.}, booktitle = {Handbook of Family Therapy}, pages = {742--775}, address = {New York}, publisher = {Brunner/Mazel} } @incollection{31, author = {Woodward, J. T.}, year = {in press}, title = {Children's Learning Systems}, editor = {Woodward, J. T. and Pimm, A. and Keenan, S. S. and Blum, M. N. and Hamner, H. A. and Sellzner, P.}, booktitle = {Research in Cognitive Development: Vol.~1. {L}ocal Cognition in Children}, address = {New York}, publisher = {Springer} } @incollection{32, author = {Epstein, A. N.}, year = {1967}, title = {Oropharyngeal Factors in Feeding and Drinking}, editor = {Code, C. F.}, booktitle = {Handbook of Physiology: Sec.~6. {A}limentary Canal: Vol.~1. {C}ontrol of Food and Water Intake}, pages = {197--218}, address = {Bethesda, MD}, publisher = {American Physiological Society} } @incollection{33, author = {Davydov, V. V.}, year = {1972}, title = {De Introductie vam het Begrip Grootheid in de Eerste Klas van de Basisschool: Een Experimenteel Onderzoek}, englishtitle = {The Introduction of the Concept of Quantity in the First Grade of the Primary School: An Experimental Study}, editor = {Van Parreren, C. F. and Carpay, J. A. M.}, booktitle = {Sovjetpsychologen aan het Woord}, pages = {227--289}, address = {Groningen, The Netherlands}, publisher = {Wolters-Noordhoff} } @incollection{34, author = {Freud, Sigmund}, year = {1961}, title = {The Ego and the Id}, editor = {Strachey, J.}, translator = {Strachey, J.}, booktitle = {The Standard Edition of the Complete Psychological Works of {S}igmund {F}reud}, volume = {19}, pages = {3--66}, address = {London}, publisher = {Hogarth Press}, originalyear = {1923} } @incollection{35, author = {Sluzki, C. E. and Beavin, J.}, year = {1977}, title = {Symmetry and Complementarity: An Operational Definition and a Typology of Dyads}, editor = {Watzlawick, P. and Weakland, J. H.}, translator = {Watzlawick, P. and Weakland, J. H.}, booktitle = {The Interactional View}, pages = {71--87}, address = {New York}, publisher = {Norton}, originaljournal = {Acta Psiqui{\'a}trica y Psicol{\'o}gica de America Latina}, originalyear = {1965}, originalvolume = {11}, originalpages = {321--330} } @techreport{36, author = {{National Institute of Mental Health}}, firstkey = {{National Institute of Mental Health [NIMH]}}, key = {{NIMH}}, year = {1982}, title = {Television and Behavior: Ten Years of Scientific Progress and Implications for the Eighties}, type = {{DHHS} Publication}, number = {ADM 82-1195}, address = {Washington, DC}, institution = {U.S. Government Printing Office} } @techreport{37, author = {Tandy, S.}, year = {1980}, title = {Development of Behavioral Techniques to Control Hyperaggressiveness in Young Children}, type = {{CYC} Report}, number = {80-3562}, address = {Washington, DC}, institution = {Council on Young Children}, note = {NTIS No. P880-143282} } @techreport{38, author = {Gottfredson, L. S.}, year = {1980}, title = {How Valid are Occupational Reinforcer Pattern Scores?}, type = {Report}, number = {CSOS-R-292}, address = {Baltimore, MD}, institution = {Johns Hopkins University, Center for Social Organization of Schools}, note = {ERIC Document Reproduction Service No. ED 182 465} } @techreport{39, author = {Brush, L.}, year = {1979}, title = {Why Women Avoid the Study of Mathematics: A Longitudinal Study}, type = {Contract}, number = {400-77-0099}, address = {Washington, DC}, institution = {National Institute of Education} } @intechreport{40, author = {Kandel, D.}, year = {1976}, title = {Study of High School Students: Student Questionnaire, {W}ave~1, {F}all~1971}, editor = {Nehemkis, A. and Macari, M. A. and Lettieri, D. J.}, booktitle = {Drug Abuse Instrument Handbook}, type = {Research Issues}, number = {12}, pages = {259--260}, address = {Rockville, MD}, institution = {National Institute of Education} } @techreport{41, author = {Newport, E. L.}, year = {1975}, title = {Motherese: The Speech of Mothers to Young Children}, number = {52}, address = {San Diego}, institution = {University of California, Center for Human Information Processing} } @techreport{42, editor = {Ben-Yishay, Y.}, year = {1981}, title = {Working Approaches to Remediation of Cognitive Deficits in Brain Damaged Persons}, type = {Rehabilitation Monograph}, number = {62}, address = {New York}, institution = {New York University Medical Center, Institute of Rehabilitation Medicine} } @techreport{43, author = {{Life Insurance Marketing and Research Association}}, firstkey = {{Life Insurance Marketing and Research Association [LIMRA]}}, key = {{LIMRA}}, year = {1978}, title = {Profits and the {AIB} in {U}nited {S}tates Ordinary Companies}, type = {Research Rep.}, number = {1978-6}, address = {Hartford, CT}, institution = {Author} } @incollection{44, author = {Chaddock, T. E. and Carlson, G. M. and Hamilton, C. L.}, year = {1974}, title = {Gastric Emptying of a Nutritionally Balanced Liquid Diet in the Rhesus Monkey}, editor = {Daniel, E. E.}, booktitle = {Proceedings of the {F}ourth {I}nternational {S}ymposium on {G}astrointestinal {M}otility}, pages = {83--92}, address = {Vancouver, British Columbia, Canada}, publisher = {Mitchell Press} } @article{45, author = {Thumin, F. J. and Craddick, R. A. and Barclay, A. G.}, year = {1973}, title = {Meaning and Compatibility of a Proposed Corporate Name and Symbol}, type = {Summary}, journal = {Proceedings of the 81st Annual Convention of the American Psychological Association}, volume = {8}, pages = {835--836} } @lecture{46, author = {Singh, R.}, year = {1980}, month = feb, title = {Multiplying Versus Differential-Weight Averaging as Integration Rule in Attribution of Gift Size}, chair = {Bhatia, C. M.}, symposium = {Dimensions of Information Processing}, howpublished = {Symposium conducted at the meeting of the {I}ndian {S}cience {C}ongress {A}ssociation, {C}alcutta} } @lecture{47, author = {Brener, J.}, year = {1979}, month = oct, title = {Energy, Information, and the Control of Heart Rate}, howpublished = {Paper presented at the meeting of the Society for Psychophysiological Research, Cincinnati, OH} } @phdthesis{48, author = {Pendar, J. E.}, year = {1982}, title = {Undergraduate Psychology Majors: Factors Influencing Decisions About College, Curriculum and Career}, journal = {Dissertation Abstracts International}, volume = {42}, pages = {4370A--4371A}, note = {University Microfilms No. 82-06, 181} } @phdthesis{49, author = {Foster-Havercamp, M. E.}, year = {1982}, title = {An Analysis of the Relationship Between Preservice Teacher Training and Directed Teaching Performance}, type = {Doctoral Dissertation}, school = {{U}niversity of {C}hicago}, originalyear = {1981}, journal = {Dissertation Abstracts International}, volume = {42}, pages = {4409A} } @phdthesis{50, author = {Devins, G. M.}, year = {1981}, title = {Helplessness, Depression, and Mood in Endstage Renal Disease}, type = {Unpublished Doctoral Dissertation}, school = {McGill University}, address = {Montreal} } @mastersthesis{51, author = {Ryerson, J. F.}, year = {1983}, title = {Effective Management Training: Two Models}, school = {Clarkson College of Technology}, address = {Potsdam, NY} } @unpublished{52, author = {Cameron, S. E.}, year = {1981}, title = {Educational Level as a Predictor of Success}, howpublished = {Unpublished manuscript} } @unpublished{53, author = {Gottfredson, G. D.}, year = {1978}, title = {Why Don't Vocational Interests Predict Job Satisfaction Better Than They Do?}, howpublished = {Unpublished manuscript}, organization = {Johns Hopkins University, Center for Social Organization of Schools}, address = {Baltimore}, } @unpublished{54, author = {Palm, E. J.}, year = {1981}, title = {Associative Learning and Recognition}, howpublished = {Manuscript submitted for publication} } @unpublished{55, author = {Herbert, C. A.}, year = {1983}, type = {Facilitating Learning Efficiency: Assessment Scores}, howpublished = {Unpublished raw data} } @unpublished{56, editor = {Bailey, A. C.}, year = {1980}, month = may, title = {Newsletter of the {C}ommittee on {W}omen in {A}thletics}, note = {Available from [name and address]} } @article{57, author = {Carmody, T. P.}, year = {1982}, title = {A New Look at Medicine from the Social Perspective}, type = {Review of \emph{Social contexts of health, illness, and patient care}}, journal = {Contemporary Psychology}, volume = {27}, pages = {208--209} } @article{58, author = {Bowers, K. S.}, year = {1982}, title = {Deeper into ``{D}eeper into Hypnosis''}, type = {Review of \emph{Deeper into hypnosis}}, journal = {Contemporary Psychology}, volume = {27}, pages = {223--224} } @magazine{59, author = {Newman, P.}, year = {1982}, month = jan, type = {Interview with William Epstein, editor of \emph{JEP: Human Perception and Performance}}, journal = {{APA} Monitor}, pages = {7, 39} } @misc{60, author = {{Maas, J. B. {\Producer}} and Gluck, D. H. {\Director}}, key = {Maas \BBA\ Gluck}, year = {1979}, title = {Deeper into Hypnosis}, type = {Film}, address = {Englewood Cliffs, NJ}, publisher = {Prentice-Hall} } @misc{61, author = {Clark, K. B. {\Speaker}}, year = {1976}, title = {Problems of Freedom and Behavior Modification}, type = {Cassette Recording}, number = {7612}, address = {Washington, DC}, publisher = {American Psychological Association} } @misc{62, author = {Miller, W. and Miller, A. and Kline, G.}, year = {1975}, title = {The {CPS} 1974 {A}merican National Election Study}, type = {Machine-readable data file}, howpublished = {Ann Arbor: University of Michigan, Center for Political Studies (Producer)}, address = {Ann Arbor}, publisher = {Inter-University Consortium for Political and Social Research (Distributor)} } @misc{63, author = {Fernandes, F. D.}, year = {1972}, title = {Theoretical Prediction of Interference Loading on Aircraft Stores: Part 1. {S}ubsonic Speeds}, type = {Computer program}, address = {Pomona, CA}, publisher = {General Dynamics, Electro Dynamics Division}, note = {National Aeronautics and Space Administration Report No. NASA CR-112065-1; Acquisition No. LAR-11249} } latex2rtf-2.3.18/test/enc_cp852.tex0000777000175000017500000001311213050672360017112 0ustar wilfriedwilfried\documentclass[10pt]{article} \usepackage[T1]{fontenc} \usepackage[cp852]{inputenc} \usepackage{times} \usepackage{textcomp} \begin{document} \begin{tabular}{ccrl} 80&€&199&LATIN CAPITAL LETTER C WITH CEDILLA\\ 81&&252&LATIN SMALL LETTER U WITH DIAERESIS\\ 82&‚&233&LATIN SMALL LETTER E WITH ACUTE\\ 83&ƒ&226&LATIN SMALL LETTER A WITH CIRCUMFLEX\\ 84&„&228&LATIN SMALL LETTER A WITH DIAERESIS\\ 85&…&367&LATIN SMALL LETTER U WITH RING ABOVE\\ 86&†&263&LATIN SMALL LETTER C WITH ACUTE\\ 87&‡&231&LATIN SMALL LETTER C WITH CEDILLA\\ 88&ˆ&322&LATIN SMALL LETTER L WITH STROKE\\ 89&‰&235&LATIN SMALL LETTER E WITH DIAERESIS\\ 8A&Š&336&LATIN CAPITAL LETTER O WITH DOUBLE ACUTE\\ 8B&‹&337&LATIN SMALL LETTER O WITH DOUBLE ACUTE\\ 8C&Œ&238&LATIN SMALL LETTER I WITH CIRCUMFLEX\\ 8D&&377&LATIN CAPITAL LETTER Z WITH ACUTE\\ 8E&Ž&196&LATIN CAPITAL LETTER A WITH DIAERESIS\\ 8F&&262&LATIN CAPITAL LETTER C WITH ACUTE\\ 90&&201&LATIN CAPITAL LETTER E WITH ACUTE\\ 91&‘&313&LATIN CAPITAL LETTER L WITH ACUTE\\ 92&’&314&LATIN SMALL LETTER L WITH ACUTE\\ 93&“&244&LATIN SMALL LETTER O WITH CIRCUMFLEX\\ 94&”&246&LATIN SMALL LETTER O WITH DIAERESIS\\ 95&•&317&LATIN CAPITAL LETTER L WITH CARON\\ 96&–&318&LATIN SMALL LETTER L WITH CARON\\ 97&—&346&LATIN CAPITAL LETTER S WITH ACUTE\\ 98&˜&347&LATIN SMALL LETTER S WITH ACUTE\\ 99&™&214&LATIN CAPITAL LETTER O WITH DIAERESIS\\ 9A&š&220&LATIN CAPITAL LETTER U WITH DIAERESIS\\ 9B&›&356&LATIN CAPITAL LETTER T WITH CARON\\ 9C&œ&357&LATIN SMALL LETTER T WITH CARON\\ 9D&&321&LATIN CAPITAL LETTER L WITH STROKE\\ 9E&$ž$&215&MULTIPLICATION SIGN\\ 9F&Ÿ&269&LATIN SMALL LETTER C WITH CARON\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} A0& &225&LATIN SMALL LETTER A WITH ACUTE\\ A1&Ą&237&LATIN SMALL LETTER I WITH ACUTE\\ A2&˘&243&LATIN SMALL LETTER O WITH ACUTE\\ A3&Ł&250&LATIN SMALL LETTER U WITH ACUTE\\ A4&¤&260&LATIN CAPITAL LETTER A WITH OGONEK\\ A5&Ľ&261&LATIN SMALL LETTER A WITH OGONEK\\ A6&Ś&381&LATIN CAPITAL LETTER Z WITH CARON\\ A7&§&382&LATIN SMALL LETTER Z WITH CARON\\ A8&¨&280&LATIN CAPITAL LETTER E WITH OGONEK\\ A9&Š&281&LATIN SMALL LETTER E WITH OGONEK\\ AA& &65535&unknown\\ AB&Ť&378&LATIN SMALL LETTER Z WITH ACUTE\\ AC&Ź&268&LATIN CAPITAL LETTER C WITH CARON\\ AD&­&351&LATIN SMALL LETTER S WITH CEDILLA\\ AE&Ž&171&LEFT-POINTING DOUBLE ANGLE QUOTATION MARK\\ AF&Ż&187&RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK\\ B0& &9617&LIGHT SHADE\\ B1& &9618&MEDIUM SHADE\\ B2& &9619&DARK SHADE\\ B3& &9474&BOX DRAWINGS LIGHT VERTICAL\\ B4& &9508&BOX DRAWINGS LIGHT VERTICAL AND LEFT\\ B5&ľ&193&LATIN CAPITAL LETTER A WITH ACUTE\\ B6&ś&194&LATIN CAPITAL LETTER A WITH CIRCUMFLEX\\ B7&ˇ&282&LATIN CAPITAL LETTER E WITH CARON\\ B8&¸&350&LATIN CAPITAL LETTER S WITH CEDILLA\\ B9& &9515&BOX DRAWINGS HEAVY VERTICAL AND LEFT\\ BA& &9475&BOX DRAWINGS HEAVY VERTICAL\\ BB& &9491&BOX DRAWINGS HEAVY DOWN AND LEFT\\ BC& &9499&BOX DRAWINGS HEAVY UP AND LEFT\\ BD&˝&379&LATIN CAPITAL LETTER Z WITH DOT ABOVE\\ BE&ž&380&LATIN SMALL LETTER Z WITH DOT ABOVE\\ BF& &9488&BOX DRAWINGS LIGHT DOWN AND LEFT\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} C0& &9492&BOX DRAWINGS LIGHT UP AND RIGHT\\ C1& &9524&BOX DRAWINGS LIGHT UP AND HORIZONTAL\\ C2& &9516&BOX DRAWINGS LIGHT DOWN AND HORIZONTAL\\ C3& &9500&BOX DRAWINGS LIGHT VERTICAL AND RIGHT\\ C4& &9472&BOX DRAWINGS LIGHT HORIZONTAL\\ C5& &9532&BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL\\ C6&Ć&258&LATIN CAPITAL LETTER A WITH BREVE\\ C7&Ç&259&LATIN SMALL LETTER A WITH BREVE\\ C8& &9495&BOX DRAWINGS HEAVY UP AND RIGHT\\ C9& &9487&BOX DRAWINGS HEAVY DOWN AND RIGHT\\ CA& &9531&BOX DRAWINGS HEAVY UP AND HORIZONTAL\\ CB& &9523&BOX DRAWINGS HEAVY DOWN AND HORIZONTAL\\ CC& &9507&BOX DRAWINGS HEAVY VERTICAL AND RIGHT\\ CD& &9473&BOX DRAWINGS HEAVY HORIZONTAL\\ CE& &9547&BOX DRAWINGS HEAVY VERTICAL AND HORIZONTAL\\ CF&Ď&164&CURRENCY SIGN\\ D0&Đ&273&LATIN SMALL LETTER D WITH STROKE\\ D1&Ń&272&LATIN CAPITAL LETTER D WITH STROKE\\ D2&Ň&270&LATIN CAPITAL LETTER D WITH CARON\\ D3&Ó&203&LATIN CAPITAL LETTER E WITH DIAERESIS\\ D4&Ô&271&LATIN SMALL LETTER D WITH CARON\\ D5&Ő&327&LATIN CAPITAL LETTER N WITH CARON\\ D6&Ö&205&LATIN CAPITAL LETTER I WITH ACUTE\\ D7&×&219&LATIN CAPITAL LETTER U WITH CIRCUMFLEX\\ D8&Ř&283&LATIN SMALL LETTER E WITH CARON\\ D9& &9496&BOX DRAWINGS LIGHT UP AND LEFT\\ DA& &9484&BOX DRAWINGS LIGHT DOWN AND RIGHT\\ DB& &9608&FULL BLOCK\\ DC& &9604&LOWER HALF BLOCK\\ DD&Ý&354&LATIN CAPITAL LETTER T WITH CEDILLA\\ DE&Ţ&366&LATIN CAPITAL LETTER U WITH RING ABOVE\\ DF& &9600&UPPER HALF BLOCK\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} E0&ŕ&211&LATIN CAPITAL LETTER O WITH ACUTE\\ E1&á&223&LATIN SMALL LETTER SHARP S\\ E2&â&212&LATIN CAPITAL LETTER O WITH CIRCUMFLEX\\ E3&ă&323&LATIN CAPITAL LETTER N WITH ACUTE\\ E4&ä&324&LATIN SMALL LETTER N WITH ACUTE\\ E5&ĺ&328&LATIN SMALL LETTER N WITH CARON\\ E6&ć&352&LATIN CAPITAL LETTER S WITH CARON\\ E7&ç&353&LATIN SMALL LETTER S WITH CARON\\ E8&č&340&LATIN CAPITAL LETTER R WITH ACUTE\\ E9&é&218&LATIN CAPITAL LETTER U WITH ACUTE\\ EA&ę&341&LATIN SMALL LETTER R WITH ACUTE\\ EB&ë&368&LATIN CAPITAL LETTER U WITH DOUBLE ACUTE\\ EC&ě&253&LATIN SMALL LETTER Y WITH ACUTE\\ ED&í&221&LATIN CAPITAL LETTER Y WITH ACUTE\\ EE&î&355&LATIN SMALL LETTER T WITH CEDILLA\\ EF&ď&180&ACUTE ACCENT\\ F0&đ&173&SOFT HYPHEN\\ F1&ń&733&DOUBLE ACUTE ACCENT\\ F2&ň&184&CEDILLA\\ F3&ó&711&CARON\\ F4&ô&728&BREVE\\ F5&ő&167&SECTION SIGN\\ F6&$ö$&247&DIVISION SIGN\\ F7&÷&731&OGONEK\\ F8&ř&176&DEGREE SIGN\\ F9&ů&168&DIAERESIS\\ FA&ú&729&DOT ABOVE\\ FB&ű&369&LATIN SMALL LETTER U WITH DOUBLE ACUTE\\ FC&ü&344&LATIN CAPITAL LETTER R WITH CARON\\ FD&ý&345&LATIN SMALL LETTER R WITH CARON\\ FE&ţ&9632&BLACK SQUARE\\ FF&˙&160&NO-BREAK SPACE\\ \end{tabular} \end{document} latex2rtf-2.3.18/test/head_article.rtf0000644000175000017500000001243013664476467020043 0ustar wilfriedwilfried{\rtf1\ansi\uc1\deff0\deflang1024 {\fonttbl{\f0\fnil\fcharset0 Times New Roman;} {\f1\fnil\fcharset0 Arial;} {\f2\fnil\fcharset0 Arial;} {\f3\fnil\fcharset0 Courier New;} {\f4\fnil\fcharset0 Zapf Chancery;} {\f5\fnil\fcharset0 STIXGeneral;} {\f6\fnil\fcharset0 MS Gothic;} } {\colortbl; \red0\green0\blue0; \red0\green0\blue255; \red0\green255\blue255; \red0\green255\blue0; \red255\green0\blue255; \red255\green0\blue0; \red255\green255\blue0; \red255\green255\blue255; } {\stylesheet {\s0\qj\widctlpar\f0\fs20 \snext0 Normal;} {\cs10 \additive\ssemihidden Default Paragraph Font;} {\s1\qc\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 Part;} {\s2\ql\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 heading 1;} {\s3\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 2;} {\s4\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 3;} {\s5\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 4;} {\s6\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 5;} {\s7\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 6;} {\s8\qr\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext8 rightpar;} {\s9\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext9 centerpar;} {\s10\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext10 leftpar;} {\s11\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equation;} {\s12\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationNum;} {\s13\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlign;} {\s14\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlignNum;} {\s15\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArray;} {\s16\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArrayNum;} {\s17\ql\sb120\sa120\keep\widctlpar\f0\fs20 \sbasedon0\snext0 theorem;} {\s18\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 bitmapCenter;} {\s20\qc\sb240\sa240\b\f0\fs36 \sbasedon0\snext21 Title;} {\s21\qc\sa120\f0\fs20 \sbasedon0\snext0 author;} {\s22\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext22 footer;} {\s23\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext23 header;} {\s30\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 caption;} {\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext0 Figure;} {\s32\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext32 Table;} {\s33\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext33 Tabular;} {\s34\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext34 Tabbing;} {\s35\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext35 Quote;} {\s38\ql\widctlpar\f3\fs20 \snext38 verbatim;} {\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext46 List;} {\s47\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext47 List 1;} {\s50\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 latex picture;} {\s51\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 subfigure;} {\s61\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext62 bibheading;} {\s62\ql\fi-567\li567\sb0\sa0\f0\fs20 \sbasedon0\snext62 bibitem;} {\s64\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext64 endnotes;} {\s65\ql\fi-113\li397\lin397\f0\fs20 \sbasedon0\snext65 footnote text;} {\s66\qj\fi-170\li454\lin454\f0\fs20 \sbasedon0\snext66 endnote text;} {\cs62\super \additive\sbasedon10 footnote reference;} {\cs63\super \additive\sbasedon10 endnote reference;} {\s67\ql\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext67 acronym;} {\s70\qc\sa120\b\f0\fs20 \sbasedon0\snext71 abstract title;} {\s71\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext0 abstract;} {\s80\ql\sb240\sa120\keepn\f0\b\fs20 \sbasedon0\snext0 contents_heading;} {\s81\ql\li425\tqr\tldot\tx8222\sb240\sa60\keepn\f0\fs20\b \sbasedon0\snext82 toc 1;} {\s82\ql\li512\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext83 toc 2;} {\s83\ql\li1024\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext84 toc 3;} {\s84\ql\li1536\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext85 toc 4;} {\s85\ql\li2048\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 5;} {\s86\ql\li2560\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 6;} } {\info {\title Original file was head_article.tex} {\doccomm Created using latex2rtf 2.3.18 r1266 (released May 29, 2020) on Sat May 30 17:35:19 2020 } } {\footer\pard\plain\f0\fs20\qc\chpgn\par} \paperw12280\paperh15900\margl2680\margr2700\margt2540\margb1760\pgnstart0\widowctrl\qj\ftnbj\f0\aftnnar {\pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 1 First Section\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb180 \fi0 1.1 First Subsection\par \pard\plain\s5\ql\sb240\sa120\keepn\f0\b\fs24\sl240\slmult1 \sb180 \fi0 1.1.1 First Subsubsection\par \pard\plain\s6\ql\sb240\sa120\keepn\f0\b\fs24\sl240\slmult1 \sb180 \fi0 First Paragraph\par \pard\plain\s7\ql\sb240\sa120\keepn\f0\b\fs24\sl240\slmult1 \sb180 \fi0 First SubParagraph\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb300 \fi0 2 First Section\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb300 \fi0 3 Second Section\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb180 \fi0 3.1 First Subsection\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb180 \fi0 3.2 Second Subsection\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb180 \fi0 3.3 Third Subsection\par }} }}}latex2rtf-2.3.18/test/head_article.tex0000777000175000017500000000053413050672360020034 0ustar wilfriedwilfried\documentclass{article} \begin{document} \section{First Section} \subsection{First Subsection} \subsubsection{First Subsubsection} \paragraph{First Paragraph} \subparagraph{First SubParagraph} \section{First Section} \section{Second Section} \subsection{First Subsection} \subsection{Second Subsection} \subsection{Third Subsection} \end{document} latex2rtf-2.3.18/test/bracecheck0000777000175000017500000000131113664476461016714 0ustar wilfriedwilfried#!/usr/bin/perl -w # # Counts open and close braces in all the RTF files that reside # in the directory that the script is run in. # Sept 2001, Scott Prahl use strict; my $level; my $bad=0; my $good = 0; my @files = glob("*.rtf"); for (@files) { my $file = $_; open IN, $_ or die "could not open $_"; $level = 0; while (){ my $before = $level; s/(\\\\)+//g; s/\\}//g; s/\\\{//g; $level += tr/{/{/; $level -= tr/}/}/; # print "braces becomes $level after line $.\n" if ($level<=0 && $before!=$level); } close IN; if ($level != -3) {$bad++} else {$good++} print "brace level = $level for $file\n" if $level != -3; } print "Braces are ok in $good/", $good+$bad, " files\n"; latex2rtf-2.3.18/test/spago1.tex0000777000175000017500000000215213050672360016620 0ustar wilfriedwilfried\documentclass{article} \def\d{{\rm d}} \def\be{\begin{equation}} \def\ee{\end{equation}} \def\bc#1#2{#1 oder #2} \def\ac #1 #2{#1 und #2} \def\bea{\begin{eqnarray}} \def\eea{\end{eqnarray}} \newenvironment{mathegs}% {\medskip\footnotesize\begin{center}% \renewcommand{\arraystretch}{1.3} \begin{tabular}{ll}% \it \makebox[190pt][l]{Type} & \it To produce\\} {\end{tabular}\end{center}\medskip} \begin{document} \ac {abc} {bde} \bc {ace} {gda} \bea \nabla \times \vec H &=& \vec J_c + {\partial \vec D \over \partial t} \label{M1} \\ \nabla \times \vec E &=& - {\partial \vec B \over \partial t} \label{M2} \\ \nabla \,\cdot\,\vec D &=& \varrho_e \label{M3} \\ \nabla \,\cdot\,\vec B &=& 0 \label{M4} \eea this is another test \begin{mathegs} \verb@$a^2b^3$@ & $a^2b^3$\\ \verb@$2^{21}$@ & $2^{21}$\\ \verb@$2^21$@ & $2^21$\\ \verb@$a^{x+1}$@ & $a^{x+1}$\\ \verb@$a^{x^2+1}$@ & $a^{x^2+1}$\\ \verb@$(x+1)^3$@ & $(x+1)^3$\\ \verb@$\Gamma_{\alpha\beta\gamma}$@ & $\Gamma_{\alpha\beta\gamma}$\\ \verb@${}_1A_2$@ & ${}_1A_2$\\ \end{mathegs} \end{document} latex2rtf-2.3.18/test/fig_oval.pict0000777000175000017500000000772613050672360017367 0ustar wilfriedwilfriedÖUt˙ ˙ţHHUt Ut˜€tUtHH˙  !!!!!!!"""""""#######$$$$$$$%%%%%%%&&&&&&&'''''''((((((()))))))*******+++++++,,,,,,,-------.......///////0000000111111122222223333333444444455555556666666777777788888889999999:::::::;;;;;;;<<<<<<<=======>>>>>>>???????@@@@@@@AAAAAAABBBBBBBCCCCCCCDDDDDDDEEEEEEEFFFFFFFGGGGGGGHHHHHHHIIIIIIIJJJJJJJKKKKKKKLLLLLLLMMMMMMMNNNNNNNOOOOOOOPPPPPPPQQQQQQQRRRRRRRSSSSSSSTTTTTTTUUUUUUUVVVVVVVWWWWWWWXXXXXXXYYYYYYYZZZZZZZ[[[[[[[\\\\\\\]]]]]]]^^^^^^^_______```````aaaaaaabbbbbbbcccccccdddddddeeeeeeefffffffggggggghhhhhhhiiiiiiijjjjjjjkkkkkkklllllllmmmmmmmnnnnnnnooooooopppppppqqqqqqqrrrrrrrssssssstttttttuuuuuuuvvvvvvvwwwwwwwxxxxxxxyyyyyyyzzzzzzz{{{{{{{|||||||}}}}}}}~~~~~~~€€€€€€€‚‚‚‚‚‚‚ƒƒƒƒƒƒƒ„„„„„„„…………………†††††††‡‡‡‡‡‡‡ˆˆˆˆˆˆˆ‰‰‰‰‰‰‰ŠŠŠŠŠŠŠ‹‹‹‹‹‹‹ŒŒŒŒŒŒŒŽŽŽŽŽŽŽ‘‘‘‘‘‘‘’’’’’’’“““““““”””””””•••••••–––––––———————˜˜˜˜˜˜˜™™™™™™™ššššššš›››››››œœœœœœœžžžžžžžŸŸŸŸŸŸŸ       ĄĄĄĄĄĄĄ˘˘˘˘˘˘˘ŁŁŁŁŁŁŁ¤¤¤¤¤¤¤ĽĽĽĽĽĽĽŚŚŚŚŚŚŚ§§§§§§§¨¨¨¨¨¨¨ŠŠŠŠŠŠŠŞŞŞŞŞŞŞŤŤŤŤŤŤŤŹŹŹŹŹŹŹ­­­­­­­ŽŽŽŽŽŽŽŻŻŻŻŻŻŻ°°°°°°°ąąąąąąą˛˛˛˛˛˛˛łłłłłłł´´´´´´´ľľľľľľľśśśśśśśˇˇˇˇˇˇˇ¸¸¸¸¸¸¸šššššššşşşşşşşťťťťťťťźźźźźźź˝˝˝˝˝˝˝žžžžžžžżżżżżżżŔŔŔŔŔŔŔÁÁÁÁÁÁÁÂÂÂÂÂÂÂĂĂĂĂĂĂĂÄÄÄÄÄÄÄĹĹĹĹĹĹĹĆĆĆĆĆĆĆÇÇÇÇÇÇÇČČČČČČČÉÉÉÉÉÉÉĘĘĘĘĘĘĘËËËËËËËĚĚĚĚĚĚĚÍÍÍÍÍÍÍÎÎÎÎÎÎÎĎĎĎĎĎĎĎĐĐĐĐĐĐĐŃŃŃŃŃŃŃŇŇŇŇŇŇŇÓÓÓÓÓÓÓÔÔÔÔÔÔÔŐŐŐŐŐŐŐÖÖÖÖÖÖÖ×××××××ŘŘŘŘŘŘŘŮŮŮŮŮŮŮÚÚÚÚÚÚÚŰŰŰŰŰŰŰÜÜÜÜÜÜÜÝÝÝÝÝÝÝŢŢŢŢŢŢŢßßßßßßßŕŕŕŕŕŕŕáááááááâââââââăăăăăăăäääääääĺĺĺĺĺĺĺćććććććçççççççčččččččéééééééęęęęęęęëëëëëëëěěěěěěěíííííííîîîîîîîďďďďďďďđđđđđđđńńńńńńńňňňňňňňóóóóóóóôôôôôôôőőőőőőőööööööö÷÷÷÷÷÷÷řřřřřřřůůůůůůůúúúúúúúűűűűűűűüüüüüüüýýýýýýýţţţţţţţ˙˙˙˙˙˙˙UtUtžDwń˙  ťˆDń˙  ˙ťDń˙  ˙ťDń˙  ˙ťDń˙  ˙ťDń˙  ˙ťDń˙  ˙ťDń˙  ˙ťDń˙  ˙ťDń˙  ˙ťDń˙  ˙ťDń˙  ˙ťDń˙  ˙ťDń˙  ˙ťDń˙  ˙ťDń˙  ˙ťDń˙  ˙ťDń˙  ˙ťDń˙  ˙ťDń˙  ˙ťDń˙  ˙ťDń˙Ă˙îřťĚé˙ťDń˙"Ě˙wDű3ýDű3UwŞĚň˙ťDń˙(Ń˙ ݈fDDwˆťťÝó˙ ťťŞwU33DwŞ÷˙ťDń˙!Ô˙Şw"3w™ťîĺ˙ÝťwfUˆÝű˙ťDń˙Ř˙݈Uf™îŰ˙Ěw3"wŞţ˙ťDń˙Ú˙Ěf3wĚÔ˙î™f"ˆîťDń˙Ü˙™DfĚÎ˙î™"\;ń˙ß˙îw"wîÉ˙ťUUťó˙ŕ˙ť""™Ä˙Ýwfîő˙â˙îUwŔ˙ÝDŞö˙ă˙™DÝ˝˙ˆDÝř˙ĺ˙îD™ş˙îU™ů˙ć˙î33îˇ˙™™ú˙ç˙î33îľ˙™™ű˙č˙î33îł˙™™ü˙é˙î3Uîą˙Ě™ý˙é˙w3Ž˙ťÝţ˙ę˙Ýť­˙UUţ˙ę˙DfŹ˙Ýť˙˙ë˙ŞîŤ˙w3˙˙ë˙DwŞ˙î"Ş˙ ë˙ĚŠ˙Uw˙ ě˙̨˙wU˙ ě˙™3¨˙ť"˙ ě˙wf¨˙îî ě˙Uw§˙Ě ě˙wU¨˙Ě˙ ě˙ť"¨˙™3˙ě˙îîŠ˙wf˙ ë˙"ťŠ˙Dˆ˙ë˙fUŞ˙ĚÝ˙ë˙ÝťŤ˙Df˙˙ę˙w"Ź˙™î˙˙é˙"wŽ˙î"ˆţ˙é˙ťĚŻ˙f3ý˙č˙fĚą˙fĚý˙ç˙™Ěł˙f"Ěü˙ć˙™ťľ˙f3îű˙ĺ˙™ˆ¸˙ÝD3îú˙ä˙ŞDĚť˙ˆUîů˙ă˙îwwž˙Ě3"Ş÷˙á˙ť""ťÂ˙îwwîö˙ß˙wD™Ć˙Ýw3ťô˙Ţ˙îw""wîË˙ťf Şň˙Ű˙™3fĚĐ˙î™3fŁDń˙Ů˙ťff™î×˙ ̈D"ˆî˙ťDń˙Ö˙Şw"3wĚŢ˙îŞf"UˆÝý˙ťDń˙"Ó˙ ݈UDfwťĚé˙ť™wD""wŞů˙ťDń˙'Ď˙ť™wU33Dýw™ůťüwDDfwťÝö˙ťDń˙!É˙ĚŞţwýD3ţýDfwwˆťîđ˙ťDń˙  ˙ťDń˙  ˙ťDń˙  ˙ťDń˙  ˙ťDń˙  ˙ťDń˙  ˙ťDń˙  ˙ťDń˙  ˙ťDń˙  ˙ťDń˙  ˙ťDń˙  ˙ťDń˙  ťˆDń˙žDwń˙˙latex2rtf-2.3.18/test/include.dvi0000644000175000017500000002414413664476467017056 0ustar wilfriedwilfried÷ƒ’Ŕ;č TeX output 2020.05.30:1735‹˙˙˙˙ y ýŁ ? ý䍍‘>óÂÖN ff cmbx12ş1Ž‘VLËThis–ffis“the“ rst“section“in“ le“ó߆ľTff cmtt12ťinclude.texŽŸç‘>óKń`y cmr10˛Here–MĚis“some›MËtext“to“create“a˜paragraph“or“t•¸ăw“o–MĚso˜that“w¸ăe“can“see˜if“this“w¸ăorksޤ ‘>or–öMnot.‘RIt“will“bGe›öLin¸ăteresting“to“see“if˜the“labGels“w¸ăork˜propGerly‘˙*Ş.‘RAs“I‘ö4create“theseŽĄ‘>testing–b“ les›b”I‘bVrealize“that˜I‘bVneed“to“add˜parsing“suppGort˜for“óßę˛in–*3the›*4getSection“function.‘đbF‘˙*Şurthermore,‘_kafter“reading“the˜LŸýó5‘üffóٓ Rcmr7ąAŽŽ‘͉˛T‘ţU>Ÿ'EŽ‘ăxX“b•Go“ok,‘_kI‘)üseeŽĄ‘>that–lź\include›m˛ les“will“all˜start“on“a˜new“page.‘WĎThis“is˜not“the“case˜for“ź\inputŽĄ‘>˛ les.‘ć Here–|is›|a“reference˜to˜the“next˜section“óň"V cmbx10˝??Ž‘ÔŠ˛in˜this“ le,‘…Ďand“one˜to“the˜ rstŽĄ‘>subsection–íÇin›íČthe“ rst˜include“ le“źinclude1˜˝??Ž‘Ę6˛.‘;This“is˜a“reference“˝??Ž‘ˇý˛to“theŽĄ‘> rst–UUsubsubsection“in“the“ le“źinclude3“˛that“is“included“b¸ăy‘xâźinclude2˛.ŽŽŸ’č1ŽŽŒ‹* y ýŁ ? ý䍍‘>óÂÖN  cmbx12ż1.1Ž‘\ŔThis–€is“the“ rst“subsection“from“ le“ó߆ľT cmtt12Ŕinclude1.texŽŠuT‘>˛Here–MĚis“some›MËtext“to“create“a˜paragraph“or“t•¸ăw“o–MĚso˜that“w¸ăe“can“see˜if“this“w¸ăorksޤ ‘>or–öMnot.‘RIt“will“bGe›öLin¸ăteresting“to“see“if˜the“labGels“w¸ăork˜propGerly‘˙*Ş.‘RAs“I‘ö4create“theseŽĄ‘>testing–b“ les›b”I‘bVrealize“that˜I‘bVneed“to“add˜parsing“suppGort˜for“ź\input˜˛and“ź\includeŽĄ‘>˛in–*3the›*4getSection“function.‘đbF‘˙*Şurthermore,‘_kafter“reading“the˜LŸýó5‘üffąAŽŽ‘͉˛T‘ţU>Ÿ'EŽ‘ăxX“b•Go“ok,‘_kI‘)üseeŽĄ‘>that–lź\include›m˛ les“will“all˜start“on“a˜new“page.‘WĎThis“is˜not“the“case˜for“ź\inputŽĄ‘>˛ les.‘qÇHere–UUis“a“reference“to“the“next“subsection“˝??Ž‘1ò.ŽŸţ6‘>ż1.2Ž‘\ŔThis–€is“the“second“subsection“from“ le“Ŕinclude1.texŽŚ‘>˛Here–MĚis“some›MËtext“to“create“a˜paragraph“or“t•¸ăw“o–MĚso˜that“w¸ăe“can“see˜if“this“w¸ăorksŽĄ‘>or–öMnot.‘RIt“will“bGe›öLin¸ăteresting“to“see“if˜the“labGels“w¸ăork˜propGerly‘˙*Ş.‘RAs“I‘ö4create“theseŽĄ‘>testing–b“ les›b”I‘bVrealize“that˜I‘bVneed“to“add˜parsing“suppGort˜for“ź\input˜˛and“ź\includeŽĄ‘>˛in–*3the›*4getSection“function.‘đbF‘˙*Şurthermore,‘_kafter“reading“the˜LŸýó5‘üffąAŽŽ‘͉˛T‘ţU>Ÿ'EŽ‘ăxX“b•Go“ok,‘_kI‘)üseeŽĄ‘>that–lź\include›m˛ les“will“all˜start“on“a˜new“page.‘WĎThis“is˜not“the“case˜for“ź\inputŽĄ‘>˛ les.‘qÇHere–UUis“a“reference“to“the“previous“subsection“˝??Ž‘1ò.ŽŽŸ’č2ŽŽŒ‹ł y ýŁ ? ý䍍‘>ż1.3Ž‘\ŔThis–€is“the“ rst“subsection“in“ le“Ŕinclude2.texŽŠuT‘>˛Here–MĚis“some›MËtext“to“create“a˜paragraph“or“t•¸ăw“o–MĚso˜that“w¸ăe“can“see˜if“this“w¸ăorksޤ ‘>or–öMnot.‘RIt“will“bGe›öLin¸ăteresting“to“see“if˜the“labGels“w¸ăork˜propGerly‘˙*Ş.‘RAs“I‘ö4create“theseŽĄ‘>testing–b“ les›b”I‘bVrealize“that˜I‘bVneed“to“add˜parsing“suppGort˜for“ź\input˜˛and“ź\includeŽĄ‘>˛in–*3the›*4getSection“function.‘đbF‘˙*Şurthermore,‘_kafter“reading“the˜LŸýó5‘üffąAŽŽ‘͉˛T‘ţU>Ÿ'EŽ‘ăxX“b•Go“ok,‘_kI‘)üseeŽĄ‘>that–lź\include›m˛ les“will“all˜start“on“a˜new“page.‘WĎThis“is˜not“the“case˜for“ź\inputŽĄ‘>˛ les.‘qÇHere–UUis“a“reference“to“the“next“subsection“˝??Ž‘1ò.ŽŸţ6‘>ż1.4Ž‘\ŔThis–€is“the“second“subsection“in“ le“Ŕinclude2.texŽŚ‘>˛Here–MĚis“some›MËtext“to“create“a˜paragraph“or“t•¸ăw“o–MĚso˜that“w¸ăe“can“see˜if“this“w¸ăorksŽĄ‘>or–öMnot.‘RIt“will“bGe›öLin¸ăteresting“to“see“if˜the“labGels“w¸ăork˜propGerly‘˙*Ş.‘RAs“I‘ö4create“theseŽĄ‘>testing–b“ les›b”I‘bVrealize“that˜I‘bVneed“to“add˜parsing“suppGort˜for“ź\input˜˛and“ź\includeŽĄ‘>˛in–*3the›*4getSection“function.‘đbF‘˙*Şurthermore,‘_kafter“reading“the˜LŸýó5‘üffąAŽŽ‘͉˛T‘ţU>Ÿ'EŽ‘ăxX“b•Go“ok,‘_kI‘)üseeŽĄ‘>that–lź\include›m˛ les“will“all˜start“on“a˜new“page.‘WĎThis“is˜not“the“case˜for“ź\inputŽĄ‘>˛ les.‘ŐRHere›ËŘis–ËŮa“reference˜to“the“previous˜subsection“˝??Ž‘¨G˛.‘ŐRHere˜is“a˜reference“toŽĄ‘>the–UU rst“section“in“źinclude1.tex“˝??Ž‘1ò.ŽĄ‘MNo•¸ăw›UUw“e˜include˜another˜ le˜from˜within˜an˜included˜ leŽŸ!荑>ş2Ž‘VLËT‘ţŚfesting–ffhoŒĚw“including“ les“within“other“ lesŽŸç‘>˛The–źtric¸ăk“here›˝is“to“test“the˜v‘˙qÇarious“w•¸ăa“ys–źthat“ les“migh¸ăt˜bGe“included“withinŽĄ‘>another‘UU le.ŽŸţ6‘>˝2.0.1Ž‘a#‚This–ŐTis“the“ rst“subsubsection“from“ le“źinclude3.texŽŚ‘>˛Here–MĚis“some›MËtext“to“create“a˜paragraph“or“t•¸ăw“o–MĚso˜that“w¸ăe“can“see˜if“this“w¸ăorksŽĄ‘>or–öMnot.‘RIt“will“bGe›öLin¸ăteresting“to“see“if˜the“labGels“w¸ăork˜propGerly‘˙*Ş.‘RAs“I‘ö4create“theseŽĄ‘>testing–b“ les›b”I‘bVrealize“that˜I‘bVneed“to“add˜parsing“suppGort˜for“ź\input˜˛and“ź\includeŽĄ‘>˛in–*3the›*4getSection“function.‘đbF‘˙*Şurthermore,‘_kafter“reading“the˜LŸýó5‘üffąAŽŽ‘͉˛T‘ţU>Ÿ'EŽ‘ăxX“b•Go“ok,‘_kI‘)üseeŽĄ‘>that–lź\include›m˛ les“will“all˜start“on“a˜new“page.‘WĎThis“is˜not“the“case˜for“ź\inputŽĄ‘>˛ les.‘qÇHere–UUis“a“reference“to“the“next“subsubsection“˝??Ž‘1ò.ŽŸţ6‘>˝2.0.2Ž‘a#‚This–ŐTis“the“second“subsubsection“from“ le“źinclude3.texŽŚ‘>˛Here–MĚis“some›MËtext“to“create“a˜paragraph“or“t•¸ăw“o–MĚso˜that“w¸ăe“can“see˜if“this“w¸ăorksŽĄ‘>or–öMnot.‘RIt“will“bGe›öLin¸ăteresting“to“see“if˜the“labGels“w¸ăork˜propGerly‘˙*Ş.‘RAs“I‘ö4create“theseŽĄ‘>testing–b“ les›b”I‘bVrealize“that˜I‘bVneed“to“add˜parsing“suppGort˜for“ź\input˜˛and“ź\includeŽĄ‘>˛in–*3the›*4getSection“function.‘đbF‘˙*Şurthermore,‘_kafter“reading“the˜LŸýó5‘üffąAŽŽ‘͉˛T‘ţU>Ÿ'EŽ‘ăxX“b•Go“ok,‘_kI‘)üseeŽĄ‘>that–lź\include›m˛ les“will“all˜start“on“a˜new“page.‘WĎThis“is˜not“the“case˜for“ź\inputŽĄ‘>˛ les.‘jto–ěthe›ě rst“subsection˜from“źinclude1.tex˜˝??Ž‘Čn˛.‘ k“This“is˜the“con•¸ăten“t˜follo“wingŽĄ‘>ź\input{include3}˛.‘qÇThere–UUshould“bGe“no“pagebreak.ŽŽŸ’č3ŽŽŒ‹ ă y ýŁ ? ý䍍‘>˝2.0.3Ž‘a#‚This–ŐTis“the“ rst“subsubsection“from“ le“źinclude4.texŽŠuT‘>˛Here–MĚis“some›MËtext“to“create“a˜paragraph“or“t•¸ăw“o–MĚso˜that“w¸ăe“can“see˜if“this“w¸ăorksޤ ‘>or–öMnot.‘RIt“will“bGe›öLin¸ăteresting“to“see“if˜the“labGels“w¸ăork˜propGerly‘˙*Ş.‘RAs“I‘ö4create“theseŽĄ‘>testing–b“ les›b”I‘bVrealize“that˜I‘bVneed“to“add˜parsing“suppGort˜for“ź\input˜˛and“ź\includeŽĄ‘>˛in–*3the›*4getSection“function.‘đbF‘˙*Şurthermore,‘_kafter“reading“the˜LŸýó5‘üffąAŽŽ‘͉˛T‘ţU>Ÿ'EŽ‘ăxX“b•Go“ok,‘_kI‘)üseeŽĄ‘>that–lź\include›m˛ les“will“all˜start“on“a˜new“page.‘WĎThis“is˜not“the“case˜for“ź\inputŽĄ‘>˛ les.‘SYHere–ú is›ú a“reference˜to“the˜next“subsubsection˜˝??Ž‘Ё˛and˜one“in˜the“next˜inputŽĄ‘> le‘UU˝??Ž‘1ò.ŽŸţ6‘>˝2.0.4Ž‘a#‚This–ŐTis“the“second“subsubsection“from“ le“źinclude4.texŽŚ‘>˛Here–MĚis“some›MËtext“to“create“a˜paragraph“or“t•¸ăw“o–MĚso˜that“w¸ăe“can“see˜if“this“w¸ăorksŽĄ‘>or–öMnot.‘RIt“will“bGe›öLin¸ăteresting“to“see“if˜the“labGels“w¸ăork˜propGerly‘˙*Ş.‘RAs“I‘ö4create“theseŽĄ‘>testing–b“ les›b”I‘bVrealize“that˜I‘bVneed“to“add˜parsing“suppGort˜for“ź\input˜˛and“ź\includeŽĄ‘>˛in–*3the›*4getSection“function.‘đbF‘˙*Şurthermore,‘_kafter“reading“the˜LŸýó5‘üffąAŽŽ‘͉˛T‘ţU>Ÿ'EŽ‘ăxX“b•Go“ok,‘_kI‘)üseeŽĄ‘>that–lź\include›m˛ les“will“all˜start“on“a˜new“page.‘WĎThis“is˜not“the“case˜for“ź\inputŽĄ‘>˛ les.‘jto–fKthe“ rst“subsection“from“źinclude1.tex“˝??Ž‘Bš˛.‘¤ŞThis“is“the“con•¸ăten“t‘fKfollo“wingŽĄ‘>ź\input–?ýinclude4“˛.‘qÇThere–UUshould“bGe“no“pagebreak.ŽŽŸ’č4ŽŽŒ‹Πy ýŁ ? ý䍍‘>ş3Ž‘VLËThis–ffis“the“second“section“in“ le“ťinclude.texŽŸç‘>˛Here–MĚis“some›MËtext“to“create“a˜paragraph“or“t•¸ăw“o–MĚso˜that“w¸ăe“can“see˜if“this“w¸ăorksޤ ‘>or–öMnot.‘RIt“will“bGe›öLin¸ăteresting“to“see“if˜the“labGels“w¸ăork˜propGerly‘˙*Ş.‘RAs“I‘ö4create“theseŽĄ‘>testing–b“ les›b”I‘bVrealize“that˜I‘bVneed“to“add˜parsing“suppGort˜for“ź\input˜˛and“ź\includeŽĄ‘>˛in–*3the›*4getSection“function.‘đbF‘˙*Şurthermore,‘_kafter“reading“the˜LŸýó5‘üffąAŽŽ‘͉˛T‘ţU>Ÿ'EŽ‘ăxX“b•Go“ok,‘_kI‘)üseeŽĄ‘>that–lź\include›m˛ les“will“all˜start“on“a˜new“page.‘WĎThis“is˜not“the“case˜for“ź\inputŽĄ‘>˛ les.›’lHere– áis“a“reference“to“the‘ â rst“subsection“in“źinclude2.tex“˝??Ž‘çO˛.˜Here“isŽĄ‘>a–,reference“to“the›- rst“subsection“in“źinclude1.tex“˝??Ž‘kš˛.‘LAnd˜ nally“one“to“theŽĄ‘> rst–UUsection“of“this“ le“˝??Ž‘1ò.ŽŠţ6‘>˝3.0.1Ž‘a#‚This–ŐTis“the“ rst“subsubsection“from“ le“źinclude5.texŽŸuT‘>˛Here–qCis›qBa“reference“to˜the“next“subsubsection˜˝??Ž‘žó˛and˜one“in“the˜previous“inputŽĄ‘> le‘z˝??Ž‘ V˛.‘(śNotice–zthat“the“reference›z to“the“next“subsubsection“is“3.0.5˜and“not“3.0.1.ŽĄ‘>This–“—shoš¸ăws“sections“reset‘“–subsection“coun˜ters,‘Ł'but“not“subsubsection“coun˜ters.ŽĄ‘>Ho¸ăw‘UUbizarre!ŽŚ‘>˝3.0.2Ž‘a#‚This–ŐTis“the“second“subsubsection“from“ le“źinclude5.texŽŸuT‘>˛F‘˙*Şurthermore,›€after–DXreading“the“LŸýó5‘üffąAŽŽ‘͉˛T‘ţU>Ÿ'EŽ‘ăxX“b•Go“ok,˜I‘Dsee–DXthat‘DYź\include“˛ les“will“allŽĄ‘>start–-on›,a“new˜page.‘VeThis˜is“not“the˜case“for“ź\input˜˛ les.‘VeHere˜is“a˜reference“toŽĄ‘>the–•Őprevious“subsubsection“˝??Ž‘rC˛.‘3GHere‘•Öis“a“reference“to“the“ rst“subsection“fromŽĄ‘>źinclude1.tex‘XR˝??Ž‘4Ŕ˛.‘zżThis›XSis–XRthe“con•¸ăten“t˜follo“wing‘XRź\input‘?ýinclude5.tex˛.‘zżThereŽĄ‘>should–UUbGe“no“pagebreak.ŽŽŸ’č5ŽŽŒř܃’Ŕ;čy—ó߆ľT cmtt12óÂÖN  cmbx12óň"V cmbx10óßęďWZffF§„§‚Ńňx66-3–Çëďhpk ˘Ó"+(ňČx$¸ô€§ŁŻŰ1ரŚĂđ8‹?\2é 0ęýýměTœš"óUawr w9\œ›ăQNQ0%ŞŤż”yd![‚™n-݆Ľ=şT4œƒ†öŕٞ˜ć áäW,ŐpҖ{§Hˇ›ýčw?ţüßľ•<×Pl7Şbg× §DÚu6čĺK!ő~~ÚxTłÚ‹“Ĺb–ąuƒf÷ŻzˆŹt085ôFë÷ŽS\cQ–úDo|˙—&<ž}3żů.[öŮld ÓôÝýýŸü-UťĺůŔŮŤ3d˘R\ö§žöÓţ…0Ř$ŁÜS Ńę\ߒ-;­˘YxnpZgśę˛’TÂ;cśůľ°ŠRzţŠeš˙Đr9Ü­krvpepâŞn†ÝL|˙–n}Ťű§R-áȰŃ 9Č9´ ŮVKI€›ĘáU§Óą.pj ­Ÿ.łŞýář†ÇϤËI÷ŇmWvRqîŠ5ź"%"GœÄ‘}IzeŸş“2%# ë‘˝–Ŕä§éâjęT‰Š(Ëékü)9ň”UŽ˜š¤`šŒş‰3­L u´­U '/I ŔŠ14uŔÁŢŃńĘ_ŕŚYÓ’Z-Tf7-´2€ą¸čĆ]NÄ;kô+GľÉ9_¨ŽÜ Ť í˘/ś„Qţ_Ž‚ œ_SÝîÎEח´ ÍJ}D‚œr`;E 0˜}f)Pˇˇ%8JřŰ-˝ ĂüxM‰(Ł ůMîLňŽ']* ĚÁ)ËľćYŰ^đńŕ˜DńŰÜůf4LCB„žEÔU‚Zˇ‰ Tl7›Ďł+Xß­Aü,Ňfcޚ‰^6żď€N4rŠČcNc˝WEH˙Öƛ ŞŠ„CÎVąŘGsÖĺÉąńgž[”Žź\:"v‹Şöä,$ľ*(ŔYCNşś°Ç’GS€WâX.QztÁÝôœ†Ú§ŽQÔJJČRZĂ,¨`Ě2ŔŔ2Ň.-ăŘ Ž„×ˆĐč-gRąq __‰ƒBZsÍwćźň ľŢ¸čzK‹Šžé3ŃLŽę°¤m'…ÜÁäŐ)T>ŞŹę…v&%ĹîTŽŔE],šVsÍ Đ%ę;ÝŘ8;čL‚Äeڍ|˘3Ň;|Âňc8Q­8íaă[›–߁ńfšJ]Ú}ç˘ëĎJz@ZΈˆě 7 ˆ’Öâ Ô [&ŔŮaÇúˇn'zľŘŠ˝ćjˇR%Ĺcť7/śĘ™Ö+F!ý}Ę 9œnüäö"ß2Ȃ„$h†9źŠĹ4)%l˜S+2ac¸M~’” ŠÁ\*Ń[%łÔliłHMĎ4SQĺƒ,š†6S("˙LŕאáŐđjδŒćšŢ+A3Mwoç ' Ňa5X?•‹3kxŔUm pśtO2ĹłxAr1ljAŞś¤b1GľđiŽçŃĄšK”/| ąÁ ;!b@eŻ$áf=yK{şń8H#BůąËôiΑ”^Ś$¸HU”?Ts<:(˘ľŮ|vi4Wüf‚ŻĄDčz1É´$Ň,c:‡š6GxË=o„QŤúőŰV;ĘąhĄłÂˇŸSŇĄ¤Ĺ^11408çŞqĹđaJ•ˆú “8W+RÝxŔ3Ľ§gˇÔhNԚ%C–ˆ$ŽUÎQ7ÓΤș|Đőg,SfÇ q8űÎí€)™°ŤČ™ŕdX¨ŃáWu.ČQşOsţIDʈĽž%Iˆ@ɰ)Ź :p–´žUAůÁŽ °jÄ,—Ú™äšĂI‰ˆ1‡2ĎoՃKÜŹdýIŮŁŔ™ˆ˛p3ÍrRgÉÜ4 Ó˝]œw‚1wiŽŽ]‘‡Öˆˆďךß~ôúvD3Ç4<šŁÁą˘.;ŢđÚNţ_lůá'ćh]ꗗ‘ü)ŽFOśPĹnJôúppcľsS=Šă˘Ń€KŐÍűxGŸ‰$Ŕ́.¸ńŃŕ¨sŒCs°ë0ŐÍÔhĚĽ*źś~p'–›ŁR{Ë8žÉQpéöM…&ďPŚTwűYCpŕ†\äœ.„“…ńž ˘…-ĺŒĽ8ň„5Y˘ö”§_4—ßJ]:TĐ—XÔ¤öU•ŕ˝ÓCAœ˛K0 ëŕćc÷é9ŹćÍMđxsúFíźŘ<ü9†V‘2ĺJô!č_@ÄwBßš#žđ4ÔäË~ŐőďŸđŞWŠsßӐő$¸ůŻ7ŠŻiEŃ'ś Š <é˛wj/+íÜĽËo•˜vdŻ2úf“6ă2 ˘íŠyîŘWO;Ť5°ÍČqň ŘÝÉqŐ%v{ŻřŘpŘ2şŽˇŰlVýrîĄĹĂjÓyńjŽVŢćéáŽäx÷nőźŮůTžëlž‡Ťˇs/Ý˝{Ül=ŕćÍé>­K§›9t{=9ďĚŕŇęü]ŐÍ&ŕœËbJŻîͲÎ,AW€{ĂÜb•Ž÷Ż=Ľ>>4’ą%Ë9ÖízĂ!óhťęö8Ç…{tKœ}ń… ÎÑkýúŕöLĘ6G{•ł(鎼I3¸şm3)™3ńŢí=ýH?5—šÝÄ'ΧšÚżéĎV)AĎ(;\*Ű#ʡäX„G„]ŠÚ͞0Đ\şaĚścVÍa‰†5Ôq6|Ęcpů˘ÔވDšlřďIl>}Ěöçрň'DăV>pdô&÷yćĹ~Â×"˜Uńp5°ź'euÍ*baJťŐj5ź!ˇűčâńâç§žě8îrŮz.mî÷N†ýÍ& d5ôź+q[ˆpJÔ]­ƒěúÝz¤˙ůŔ—1¤>püšÍs5_g“:iy‡˝Œá2ŻŃh¨šZšŞT¤"{(jĘKŻö Eĺ P¸×">4ԍĎ`Sýɉ€ńl†¨FkŘ&‹Cm“F_ܧ^"+Ô[pŐ;+¨6ę]ŔŮĎ?űMŐLŐ8ĺË#Onë`SÔ÷ůë‹ˇŕś‹÷ĺĘň¸ĺë'ńwßÂfÁą}998´ŘŁĆ\ţâćŘ~PčvTŽŸ¸ü!€C[JӋzž/î3őTěuŇžu(dú÷'űـ€ś›ÇŐ=ąC§–;'}őç Ŕů~-î]şă+ˇN<䎡{ŞŮćlNS!öImÜvóźň)b_˛–;ďÜŠ —;˙wŕDÓ‰˙ƒŕäɇÜQEîľ؄Nü˘ű Üią}XŕęßvłýéTă÷Ls=tEXtcomment Image generated by AFPL Ghostscript (device=pnmraw) ď4“öIENDŽB`‚latex2rtf-2.3.18/test/fig_endfloat.tex0000777000175000017500000002224213050672357020057 0ustar wilfriedwilfried\documentclass{article} \usepackage{graphicx} \usepackage[nomarkers]{endfloat} \begin{document} \begin{figure} \includegraphics{fig_test} \caption{Figure test using includegraphics.} \label{figure1} \end{figure} Figure \ref{figure1} tests \verb#\epsffile{fig_test.eps}#. filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler \begin{figure*} \includegraphics[width=4in]{fig_testa} \caption{Figure* test (width=4in) using includegraphics.} \label{figure1a} \end{figure*} \begin{table} \begin{center} \begin{tabular}{llr} \multicolumn{2}{c}{Item} & \multicolumn{1}{c}{Price} \\ gnat & (dozen) & 3.24\\ gnu & (each) & 24,985.47 \end{tabular} \caption{Simple example from the \LaTeX{} manual exhibiting multicolumn.} \end{center} \end{table} Figure \ref{figure1} tests \verb#\epsffile{fig_test.eps}#. filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler \begin{figure} \includegraphics[height=4in]{fig_testb} \caption{Another Figure (height 4in) test using includegraphics.} \label{figure2} \end{figure} Figure \ref{figure2} tests \verb#\includegraphic{fig_test.eps}#. filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler \begin{figure} \includegraphics[width=5in]{fig_testc} \caption{Another Figure test (width 5in) using includegraphics.} \label{figure3} \end{figure} \begin{table} \begin{center} \begin{tabular}{||l|lr||} \hline gnats & gram & \$13.65 \\ \hline & each & .01 \\ \hline gnu & stuffed & 92.50 \\ \cline{1-1} \cline{3-3} emur & & 33.33 \\ armadillo & frozen & 8.99 \\ \hline \end{tabular} \caption{Simple example from the \LaTeX{} manual exhibiting horizontal and vertical lines.} \end{center} \end{table} Figure \ref{figure3} tests \verb#\psfig{figure=fig_test.eps}#. filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler \begin{figure} \includegraphics{fig_testd} \caption{Yet another Figure test using includegraphics.} \label{figure4} \end{figure} Figure \ref{figure4} tests \verb#\includegraphic{fig_testc.ps}#. \end{document} latex2rtf-2.3.18/test/fancy.rtf0000644000175000017500000001245313664476467016544 0ustar wilfriedwilfried{\rtf1\ansi\uc1\deff0\deflang1024 {\fonttbl{\f0\fnil\fcharset0 Times New Roman;} {\f1\fnil\fcharset0 Arial;} {\f2\fnil\fcharset0 Arial;} {\f3\fnil\fcharset0 Courier New;} {\f4\fnil\fcharset0 Zapf Chancery;} {\f5\fnil\fcharset0 STIXGeneral;} {\f6\fnil\fcharset0 MS Gothic;} } {\colortbl; \red0\green0\blue0; \red0\green0\blue255; \red0\green255\blue255; \red0\green255\blue0; \red255\green0\blue255; \red255\green0\blue0; \red255\green255\blue0; \red255\green255\blue255; } {\stylesheet {\s0\qj\widctlpar\f0\fs20 \snext0 Normal;} {\cs10 \additive\ssemihidden Default Paragraph Font;} {\s1\qc\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 Part;} {\s2\ql\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 heading 1;} {\s3\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 2;} {\s4\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 3;} {\s5\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 4;} {\s6\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 5;} {\s7\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 6;} {\s8\qr\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext8 rightpar;} {\s9\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext9 centerpar;} {\s10\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext10 leftpar;} {\s11\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equation;} {\s12\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationNum;} {\s13\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlign;} {\s14\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlignNum;} {\s15\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArray;} {\s16\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArrayNum;} {\s17\ql\sb120\sa120\keep\widctlpar\f0\fs20 \sbasedon0\snext0 theorem;} {\s18\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 bitmapCenter;} {\s20\qc\sb240\sa240\b\f0\fs36 \sbasedon0\snext21 Title;} {\s21\qc\sa120\f0\fs20 \sbasedon0\snext0 author;} {\s22\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext22 footer;} {\s23\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext23 header;} {\s30\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 caption;} {\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext0 Figure;} {\s32\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext32 Table;} {\s33\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext33 Tabular;} {\s34\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext34 Tabbing;} {\s35\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext35 Quote;} {\s38\ql\widctlpar\f3\fs20 \snext38 verbatim;} {\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext46 List;} {\s47\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext47 List 1;} {\s50\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 latex picture;} {\s51\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 subfigure;} {\s61\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext62 bibheading;} {\s62\ql\fi-567\li567\sb0\sa0\f0\fs20 \sbasedon0\snext62 bibitem;} {\s64\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext64 endnotes;} {\s65\ql\fi-113\li397\lin397\f0\fs20 \sbasedon0\snext65 footnote text;} {\s66\qj\fi-170\li454\lin454\f0\fs20 \sbasedon0\snext66 endnote text;} {\cs62\super \additive\sbasedon10 footnote reference;} {\cs63\super \additive\sbasedon10 endnote reference;} {\s67\ql\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext67 acronym;} {\s70\qc\sa120\b\f0\fs20 \sbasedon0\snext71 abstract title;} {\s71\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext0 abstract;} {\s80\ql\sb240\sa120\keepn\f0\b\fs20 \sbasedon0\snext0 contents_heading;} {\s81\ql\li425\tqr\tldot\tx8222\sb240\sa60\keepn\f0\fs20\b \sbasedon0\snext82 toc 1;} {\s82\ql\li512\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext83 toc 2;} {\s83\ql\li1024\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext84 toc 3;} {\s84\ql\li1536\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext85 toc 4;} {\s85\ql\li2048\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 5;} {\s86\ql\li2560\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 6;} } {\info {\title Original file was fancy.tex} {\doccomm Created using latex2rtf 2.3.18 r1266 (released May 29, 2020) on Sat May 30 17:35:19 2020 } } {\footer\pard\plain\tqc\tx3450\tqr\tx6900 left\tab center\tab right\par} {\header\pard\plain\tqc\tx3450\tqr\tx6900 left\tab center\tab right \emdash {\scaps Page} \chpgn \par} \paperw12280\paperh15900\margl2680\margr2700\margt2540\margb1760\pgnstart0\widowctrl\qj\ftnbj\f0\aftnnar {{\i0\scaps0\b0\f2 \pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \f2 \b F\'c9D\'c9RATION FRAN\'c7AISE DE LA MONTAGNE ET DE L\rquote ESCALADE \par }\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah\par }} }}}latex2rtf-2.3.18/test/enc_moroz_koi8.tex0000777000175000017500000000264613050672355020367 0ustar wilfriedwilfried%%%%%%%%%%%%%%%%%%%%%%%%%%%% -*- mode: LaTeX; coding: koi8-r; -*- %%% Moroz_koi koi.tex %%% %%%%%%%%%%%%%%%%%%%%%%%%%%%% %% %% Date: 9-Aug-2002 %% Author: wd (Wolfgang.Dobler@ncl.ac.uk) % \documentclass[a4paper,12pt]{article} \usepackage[T2A]{fontenc} \usepackage[koi8-r]{inputenc} \usepackage[russian]{babel} \sloppy % Hyphenation is a problem.. \author{A. S. Pushkin} \title{úÉÍÎĹĹ ŐÔŇĎ (winter morning)} \begin{document} \maketitle \section{A section} \noindent íĎŇĎÚ É ÓĎĚÎĂĹ, ÄĹÎŘ ŢŐÄĹÓÎŮĘ!\\ ĺÝ\"Ĺ ÔŮ ÄŇĹÍĚĹŰŘ, ÄŇŐÇ ĐŇĹĚĹÓÔÎŮĘ?\\ đĎŇÁ, ËŇÁÓÁ×ÉĂÁ, ĐŇĎÓÎÉÓŘ! \subsection{Accented characters} You can still use accents and diacritica as usual: \begin{quote} \"Uberm\"a{\ss}iger Lik\"orgenuss in der \"Offentlichkeit f\"uhrt zu \"Arger \end{quote} \begin{quote} \^Etre ou ne pas \^etre --- c'est une question tr\`es int\'eressante en Fran\c{c}ais \end{quote} \subsection{űŇÉĆÔŮ} {\sc ëĎÎĹŢÎĎ} {\bf ×ÓĹ} {\em ×ÁŇÉÁÎÔŮ} {\TeX}Ď×ÓËÉČ {\sl ŰŇÉĆÔĎ×} ÄĎÓÔŐĐÎŮ É Ó {\sf ËÉŇÉĚĚÉĂĹĘ}. \end{document} %% Emacs-Mule quick reference: %% C-\ toggles input methods (cyrillic/ascii) %% C-x RET C-\ switches to (yet) another input method %% C-x RET f changes the buffer-coding system % Make Emacs switch to russian keyboard layout % %% [Better not to use this 1] Local Variables: %% [Better not to use this 2] eval: (set-input-method 'cyrillic-jcuken) %% [Better not to use this 3] End: latex2rtf-2.3.18/test/apanat1b.sty0000777000175000017500000001241613050672355017144 0ustar wilfriedwilfried% % apanat1b.sty : a quick hack of apacite.sty % intended to work with natbib.sty and apanat1b.bst % apacite.sty : citation according to APA manual % EXPERIMENTAL! % % author: Erik Meijer (E.Meijer@eco.rug.nl) % date: 2003/03/27 % % originally inspired by theapa.bst by Young U. Ryu % % documentation: not really available, but see apacite.tex, update.tex, % the readme file, and the natbib documentation % % NO GUARANTEES! % % If you change anything to this file, you must rename it. % \NeedsTeXFormat{LaTeX2e}[1996/12/01] \ProvidesPackage{apanat1b}[2003/03/27 % natbib citation with apacite bibliography] %%% declare four parameters \newskip{\bibleftmargin} \newskip{\bibindent} \newskip{\bibparsep} \newskip{\bibitemsep} %%% There are 4th and 5th editions of the APA Publication Manual. %%% Since I don't have the 5th edition (yet), this package is probably not %%% consistent with it. Known differences between the 3rd and 4th %%% edition are stored in the options 3rded (3rd edition style) %%% and 4thed (4th edition style). %%% if 4th edition then \DeclareOption{4thed}{% \bibleftmargin=0pt% \bibindent=2.5em% } %%% if 3rd edition then \DeclareOption{3rded}{% \bibleftmargin=2.5em \bibindent=-\bibleftmargin } %%% use 3rd edition as default \ExecuteOptions{3rded} \ProcessOptions %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % some punctuation and other options % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \newcommand{\BBOP}{(} % open parenthesis in bibliography \newcommand{\BBAA}{\&} % "and" between authors in bibliography and citation \newcommand{\BBCP}{)} % closing parenthesis in bibliography \newcommand{\BBOQ}{} % open quote for article title \newcommand{\BBCQ}{} % closing quote for article title % \newcommand{\BBA}{\BBAA} % "and" between authors in bibliography and citation % % \newcommand{\BCBT}{,} % comma between authors in bibliography % when no. of authors = 2 \newcommand{\BCBL}{,} % comma before last author % \let\Bem\emph %%%%%%%%%%%%%%% % cite labels % %%%%%%%%%%%%%%% \newcommand{\BOthers}{et~al.} % ``others'' \newcommand{\BIP}{in press} % used as year for in-press citations \newcommand{\BAnd}{and} % for ``Ed. and Trans.'' \newcommand{\BED}{Ed.} % editor \newcommand{\BEDS}{Eds.} % editors \newcommand{\BTRANS}{Trans.} % translator \newcommand{\BTRANSS}{Trans.} % translators \newcommand{\BCHAIR}{Chair} % chair of symposium \newcommand{\BCHAIRS}{Chairs} % chairs \newcommand{\BVOL}{Vol.} % volume \newcommand{\BVOLS}{Vols.} % volumes \newcommand{\BNUM}{No.} % number \newcommand{\BNUMS}{Nos.} % numbers \newcommand{\BEd}{ed.} % edition \newcommand{\BPG}{p.} % page \newcommand{\BPGS}{pp.} % pages \newcommand{\BTR}{Tech.\ Rep.} % (default) technical report type name \newcommand{\BPhD}{Doctoral dissertation} % (default) PhD thesis type name \newcommand{\BUPhD}{Unpublished doctoral dissertation} % (default) unpublished PhD thesis % type name \newcommand{\BMTh}{Master's thesis} % (default) master's thesis type name \newcommand{\BUMTh}% {Unpublished master's thesis} % (default) unpublished % master's thesis type name \newcommand{\BOWP}{Original work published } \newcommand{\BREPR}{Reprinted from } % % for multiple citations with same author-year % (Kruskal, 1964a, 1964b) % \newcounter{BibCnt} \newcommand{\BCnt}[1]{\setcounter{BibCnt}{#1}\alph{BibCnt}} % % in press % \newcommand{\BCntIP}[1]{\setcounter{BibCnt}{#1}{}-\alph{BibCnt}} % % to force another order (in Part 1, Part 2 cases) \newcommand{\bibphant}[1]{} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % bibliography style parameters % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % No labels in the bibliography. % \def\@biblabel#1{} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % \def\refname{References} \def\bibname{References} \bibparsep=0pt% \bibitemsep\z@ \@plus .3\p@\relax %\bibitemsep=0pt% \let\bibliographytypesize\normalsize % \def\thebibliography#1{% \@ifundefined{chapter}% {\section*{\refname}% \@mkboth{{\refname}}{{\refname}}% \addcontentsline{toc}{section}{\refname}% }% {\chapter*{\bibname}% \@mkboth{{\bibname}}{{\bibname}}% \addcontentsline{toc}{chapter}{\bibname}% }% \bibliographytypesize \list{\relax}{\labelsep=0em% % \parskip\z@ \@plus .3\p@\relax \parsep=\bibparsep% \itemsep=\bibitemsep% \leftmargin=\bibleftmargin% \itemindent=\bibindent}% changed to cope with 4th ed. \def\newblock{\hskip .11em plus .33em minus .07em} \sloppy\clubpenalty4000\widowpenalty4000 \sfcode`\.=1000\relax } \def\endthebibliography{\endlist\normalsize} % % EOF apanat1b.sty % latex2rtf-2.3.18/test/subsup.tex0000777000175000017500000000172713050672355016762 0ustar wilfriedwilfried\documentclass{article} \newif\iflatextortf \latextortffalse %ignored by latex2rtf \iflatextortf \else \makeatletter \DeclareRobustCommand*\textsubscript[1]{% \@textsubscript{\selectfont#1}} \newcommand{\@textsubscript}[1]{% {\m@th\ensuremath{_{\mbox{\fontsize\sf@size\z@#1}}}}} \makeatother \fi \begin{document} This text is nonsense but only written to make the use of \verb#\textsuperscript{-17}# visible. Here it comes: 10 to -17 should be 10\textsuperscript{-17}. And this is what mathmode would display: $10^{-17}$ The same for subscript. \verb#\textsubscript{x}# isn't (yet) implemented in standard \LaTeX\ or \LaTeXe, but it is easy to add. The definition in the preamble of this document was suggested in the newsgroup comp.text.tex and works similar as \verb#\textsuperscript{x}# which is fully supported part of \LaTeXe. Does \verb#\textsubscript{8}# work? Here it is: 10 index 8 should be 10\textsubscript{8}. And the same in mathmode: $10_{8}$ \end{document} latex2rtf-2.3.18/test/fig_tex.eps0000777000175000017500000000106113050672360017040 0ustar wilfriedwilfried%!PS-Adobe-3.0 EPSF-3.0 %%BoundingBox: 29 25 249 178 gsave /helvetica findfont 10 scalefont setfont /ps{(PostScript ) show} def /rad {ps ps ps ps ps} def gsave 30 30 translate 1 .7 scale newpath 110 110 100 0 360 arc gsave stroke grestore clip 1 1.43 scale 45 rotate -70 70 moveto {10 -10 rmoveto gsave rad grestore currentpoint pop 100 ge{exit}if} loop grestore /Times-Roman findfont 150 scalefont setfont .7 setgray /tex {(T) show -35 -35 rmoveto (E) show -35 35 rmoveto (X) show} def 30 60 moveto 0 setgray tex 27 63 moveto .7 setgray tex grestore showpage latex2rtf-2.3.18/test/bib_simple.tex0000777000175000017500000000156013050672360017535 0ustar wilfriedwilfried\documentclass{article} \renewcommand{\refname}{Literature Cited} \renewcommand{\deg}{\ensuremath{^\circ}} % degrees \begin{document} This is a citation for the 5\deg. The citation should be known \cite{known}. We follow this with an unknown citation \cite{unknown}. To test various combinations we need to cite more than one author. To this end, I cite two known authors \cite{known,known2}. This might include one known and one unknown \cite{unknown,known}. Another bizarre case might be one known, one unknown and another known \cite{known,unknown,known2}. Need to have a test for \verb#\cite# commands that span multiple lines \cite{ known,% % very long comment that has some utility known2} (which has two comment lines in a row!) and one final test \cite{% known, % known2% some jabbering }. \bibliography{bib_simple} \bibliographystyle{unsrt} \end{document} latex2rtf-2.3.18/test/longstack.tex0000777000175000017500000074421113050672360017424 0ustar wilfriedwilfried\documentclass{article} \begin{document} \textbf{\textsc{Carex aestivalis}}. U. S. A. Connecticut: Litchfield Co., Sage's Ravine, Salisbury, \textit{A. E. Blewitt s.n.} 1908 (GH); New Haven Co., New Haven, \textit{R. W. Woodward s.n.} 21 Jun 1914 (NEBC); New London Co., Franklin, \textit{R. W. Woodward s.n.} 16 Jul 1904 (NEBC); New London Co., Town of Franklin, \textit{R. W. Woodward s.n.} 27 Jul 1904 (NEBC). Georgia: Rabun Co., Rabun Bald, \textit{J. A. Churchill 86129} 4 Jul 1986 (MSC, BRIT); Rabun Co., Rabun Bald, \textit{Robert Kral 60305} 31 May 1977 (KANU); Rabun Co., Rabin Bald, \textit{Milsted 1032} 14 Jul 1996 (GA); Towns Co., Hightower Bald, \textit{W. H. Duncan 6933} 4 Aug 1946 (MARY); Towns Co., Tray Mountain, \textit{L. G. Chafin 699} 12 Jul 1987 (CLEMS); Union Co., Coosa Bald, \textit{L. Chafin 632-A} 7 Jun 1987 (NYS); Union Co., Coosa Bald, \textit{L. Chaffin 569B} 18 May 1987 (GA). Kentucky: Harlan Co., Big Black Mountain, \textit{L. E. McKinney 6479} 27 Jun 1995 (MICH); Harlan Co., Black Mountain, \textit{T. F. Wieboldt 10479} 6 Jul 2000 (VPI); Letcher Co., Stonega Gap, \textit{R. Hannan s.n.} 4 Oct 1998 (EKY); McReary Co., Sheltowee Trace, \textit{G. W. Libby 476} 30 Jun 1994 (EKY); Wayne Co., Marcum Branch Hollow, \textit{G. W. Libby 1004} 12 Jul 1995 (EKY). Maryland: Garrett Co., Big Savage River, \textit{D. D. Boone 840808-SN} 8 Aug 1984 (TAWES). Massachusetts: New Ashford, \textit{J. R. Churchill s.n.} 11 Aug 1915 (WIS); Franklin Co., Ashfield, \textit{J. R. Churchill s.n.} 19 Jun 1921 (KANU); Hampshire Co., Middlefield, \textit{M. L. Fernald 9050} 26 Jun 1913 (KANU); Norfolk Co., Blue Hills Reservation, \textit{N. T. Kidder s.n.} 21 Jun 1921 (KANU); Suffolk Co., Arnold Arboretum, \textit{E. J. Palmer 45966} 28 May 1942 (KANU); Suffolk Co., Revere, \textit{C. E. Faxon s.n.} 16 Jul 1880 (NEBC). New Hampshire: Cheshire Co., Surry, \textit{M. L. Fernald 242} 23 Jul 1899 (NEBC). New York: East Jewett Twp., \textit{C. L. Shear s.n.} 14 Jul 1893 (MSC); Allegany Co., Alma Hill, \textit{R. T. Clausen 3917} 18 Jun 1939 (NYS); Cattaraugus Co., Allegany SP, \textit{H. D. House 12766} 29 Jul 1926 (NYS); Cattaraugus Co., Allegany SP, \textit{H. D. House 12319} 17 Jul 1926 (NYS); Cayuga Co., Dresserville Gulf, Town of Sempronius, \textit{Charles Atwood s.n.} 12 Sep 1896 (CAN); Cayuga Co., Moravia, \textit{C. Atwood s.n.} 11 Jul 1882 (NYS); Cayuga Co., Sempronius, \textit{Charles Atwood s.n.} 27 Sep 1914 (WIS); Cortland Co., NW of Homes, \textit{S. J. Smith 2633} 27 Jun 1946 (NYS); Delaware Co., Middletown, \textit{K.L. Brooks 4890} 21 Jun 1969 (NYS); Delaware Co., Town of Kortright, \textit{K. L. Brooks 1781} 19 Jul 1952 (NYS); Delaware Co., West Harpersfield, \textit{K. L. Brooks 1673} 11 Jul 1952 (NYS); Erie Co., Hamburg, \textit{F. W. Johnson s.n.} 7 Jul 1918 (NYS); Erie Co., South Wales, \textit{F. W. Johnson s.n.} 2 Jul 1927 (NYS); Greene Co., Windham High Peak, \textit{H. K. Svenson 6476} 28 Aug 1934 (VDB); Greene Co., Kaaterskill Clove, \textit{S. J. Smith 33978} 28 Jul 1962 (NYS); Greene Co., Spruceton, \textit{R. Naczi 7478} 4 Jul 1998 (MICH); Greene Co., Windham, \textit{H. K. Svenson 7852} 12 Jun 1936 (SMU); Greene Co., Windham High Peak, \textit{H. K. Stevenson 6476} 28 Aug 1934 (NY); Madison Co., Erieville, \textit{S. J. Smith 19718} 14 Jun 1955 (NYS); Rensselaer Co., Town of Grafton, Grafton Lakes SP, \textit{P. Weatherbee 4437} 23 Jun 1997 (NYS); Sullivan Co., Claryville, \textit{W. H. Jones 50} 25 Jun 1934 (NYS); Tompkins Co., Caroline, \textit{A. J. Eames 11594} 13 Jul 1919 (NYS); Ulster Co., Denning, \textit{W. H. Jones 48} 27 Jun 1934 (NYS); Ulster Co., Hardenburg, Mongaup Mt., \textit{W. H. Jones 47} 28 Jun 1934 (NYS); Ulster Co., Mt. Pleasant/Olive townline, \textit{J. Bierhorst 7} 6 Jun 1996 (NYS); Ulster Co., Oliversea, \textit{S. J. Smith 20221} 15 Jun 1956 (NYS); Ulster Co., Town of Olive, \textit{K. L. Brooks 7051} 15 Jul 1987 (NYS); Ulster Co., Woodland, \textit{S. J. Smith 6833} 16 Jun 1950 (NYS). North Carolina: Mts. Of North Carolina, \textit{Wm. M. Canby 30.669} 1 Jun 1868 (CAN); Alleghany Co., Alligator Back, \textit{P. D. McMillan 2469} 8 Jun 1997 (USCH); Alleghany Co., Sparta, \textit{J. A. Churchill s.n.} 15 Jun 1957 (MSC); Ashe Co., Bluff Mountain, \textit{A. E. Radford 44058} 24 Jun 1961 (WIS); Avery Co., Crevices on Hanging Rock Mt., \textit{A. E. Radford 44091} 24 Jun 1961 (WV); Buncombe Co., Mount Pisgah, \textit{C. K. Dodge 5178} 2 Jul 1897 (MICH); Buncombe Co., Snow Bald Mt., J. E. Benedict, \textit{Jr. 2641} 28 Jul 1933 (VPI); Buncumbe Co., Asheville, \textit{J. A. Churchill 85212} 19 Aug 1985 (WIS); Clay Co., W. side of Little Bald, \textit{A. Cronquist 5556} 25 Jul 1948 (MICH); Clay Co., 12 miles E of Murphy, \textit{ A. A. Reznicek 7462} 16 May 1985 (MICH); Graham Co., Robbinsville, \textit{F. J. Hermann 19378} 11 Jun 1964 (MICH); Haywood Co., Blue Ridge Parkway, \textit{Phillip E. Hyatt 8811} 29 Jul 1999 (MICH); Haywood Co., Sandymush Bald, \textit{A. F. Mark s.n.} 2 Jul 1956 (DUKE); Jackson Co., Pisgah National Forest, SSE of Waynesville, \textit{ Charles T. Bryson 6721} 26 Jul 1987 (WIS); Jackson Co., Wesner Bald, \textit{A. F. Mark s.n.} 20 Jun 1956 (DUKE); Jackson Co., White Water Falls, \textit{A. E. Hodge 441} 11 Sep 1983 (CLEMS); Jackson Co., Whiteside Mt., \textit{R. K. Godfrey 51739} 5 Aug 1951 (MICH); Macon Co., SE of Reynolds Gap, \textit{Phillip E. Hyatt 8209} 6 Jul 1998 (MICH); Macon Co., Coweeta Hydrologic Lab, \textit{Phillip E. Hyatt 6098} 2 Jul 1994 (MICH); Macon Co., Coweeta Hydrologic Laboratory, \textit{J. R. Manhart 55} 9 Jun 1980 (MICH); Macon Co., Cowetta Hydrological Lab, \textit{Phillip E. Hyatt 6101} 2 Jul 1994 (NKY); Macon Co., Franklin vicinity, \textit{Phillip E. Hyatt 6106} 17 Jul 1994 (MICH); Macon Co., Highlands, Glenn Falls, \textit{J. A. Churchill 87527} 5 Jul 1987 (WIS); Macon Co., Scaley Mounatin vicinity, \textit{Phillip E. Hyatt 7802} 4 Oct 1997 (MICH); Mitchell Co., near summit of Roan Mt., \textit{A. H. Curtis 3192} (SMU); Mitchell Co., Mt. Mitchell, \textit{Rev. John Davis s.n.} 26 Jul 1917 (UC); Mitchell Co., Roan Mountain, near summit, \textit{A. H. Curtiss 17887} (WIS); Mitchell Co., Roan Mt., J. W. Chickering, \textit{Jr. s.n.} 12 Jul 1880 (WIS); Swain Co., Andrew's Bald Trail, \textit{William B. Fox s.n.} 24 Aug 1940 (WV); Watauga Co., W of Blowing Rock, \textit{H. E. ahles 43759} 18 Jun 1958 (VDB); Watauga Co., Boone, Rich Mountain, \textit{D. E. Boufford 16344} 12 Jun 1975 (WIS); Watauga Co., Long Hope Valley, 4 mi NW of Todd, \textit{T. F. Wieboldt 7014} 20 Sep 1989 (VPI); Watauga Co., Rich Mountain, NW of Boone, \textit{ D. E. Boufford 16344} 12 Jun 1975 (VDB); Yancey Co., below summit of Mt. Mitchell, \textit{R. Kral 64311} 29 Aug 1979 (VDB); Yancey Co., S slopes of Mt. Mitchell, \textit{C. T. Bryson 6788} 29 Jul 1987 (MICH). Pennsylvania: Bradford Co., ENE of Laquin, \textit{R. Naczi 2640} 18 Jun 1990 (MICH); Bradford Co., Sylvania, \textit{R. Naczi 4172} 15 Jun 1994 (NKY); Bradford Co., West Franklin, \textit{R. Naczi 2636} 17 Jun 1990 (MICH); Fayette Co., Ohiopyle, \textit{Brown 51} 3 Jul 1905 (KANU); Jefferson Co., ENE of Desire, \textit{H. A. Wahl 2808} 24 Jun 1947 (SMU); Lackawanna Co., E of Maple Lake, \textit{S. L. Glowenke 6497} 20 Jun 1946 (GH); Lackawanna Co., NNE of Chinchilla, \textit{S. L. Glowenke 6931} 1 Jul 1946 (GH); Lycoming Co., S of Ralston, \textit{H. A. Wahl 112} 4 Jun 1938 (GH); McKean Co., \textit{John Bright s.n.} 3 Jul 1921 (WV); McKean Co., S. of Kane, \textit{R. H. True 22} 23 Jun 1932 (MICH); Sullivan Co., E of Hillsgrove, \textit{W. A. Wahl 18200} 16 Jun 1957 (GH); Tioga Co., N of Williamsport, \textit{D. Castaner 8502} 6 Jun 1985 (MICH); Warren Co., Hansen Tract, Columbus Township, \textit{J. K. Bissell JKB:1994:123} 3 Aug 1994 (MICH). South Carolina: Greenville Co., Rainbow Falls, \textit{L. L. Gaddy 173} 6 Jun 1981 (CLEMS); McCormick Co., Cuffeytown Creek, NE of McCormick, \textit{A. E. Radford 22310} 11 May 1957 (NY); Oconee Co., East Fork of the Chattoga River trail, \textit{L. L. Gaddy s.n.} 2 Jun 1986 (CLEMS); Oconee Co., Sumter National Forest, N of Walhalla, \textit{A. A. Reznicek 8981} 23 May 1992 (VDB); Tennessee: Blount Co., Great Smoky Mt. NP Park Headquarters, Metcalf Bottoms, \textit{K. E. Rogers s.n.} 20 May 1966 (SMU); Blount Co., Metcalf Bottoms, Great Smoky Mt. NP, \textit{K. Rogers 41228} 24 May 1966 (SMU); Blount Co., Great Smoky Mt. NP, Running Fork Auto Tour, \textit{S. \& G. Jones 4930} 22 May 1990 (WIS); Carter Co., \textit{Summit Roan Mt. R. Kral 60731} 3 Aug 1977 (VDB); Carter Co., Roan Mt. SP, summit of Roan Mtn., \textit{R. Carter 3183} 14 Jul 1982 (VDB); Cocke Co., Great Smoky Mt. NP, summit of `Old Black', \textit{V. E. McNeilus s.n.} 3 Aug 1980 (WIS); Cocke Co., Great Smokey Mt. National Park, Maddron Bald Trail, \textit{ V. E. McNeilus s.n.} 22 Jun 1980 (WIS); Grundy Co., Savage Gulf Natural Area, \textit{T. S. Patrick 379} 21 Aug 1977 (BRIT); Grundy Co., Savage Gulf Natural Area, \textit{T. S. Patrick 267} 8 Jun 1977 (VDB); Monroe Co., Rt. 129, \textit{V. E. McNeilus 89-349} 3 Jun 1989 (WIS); Monroe Co., Tellico Plains, \textit{J. A. Churchill 93457} 8 May 1993 (MICH); Morgan Co., Wartburg, Potter Falls, \textit{V. E. McNeilus s.n.} 2 Jun 1985 (WIS); Putnam Co., Monterey, \textit{R. Kral 63862} 16 Jun 1979 (VDB); Sevier Co., Great Smoky Mt. NP, Chimney Tops, \textit{K. E. Rogers 43641} 29 Jun 1969 (SMU); Sevier Co., Alum Cave trail, Mt. LeConte, \textit{J. K. Underwood 121} 24 Jun 1933 (MICH); Sevier Co., Great Smoky Mountains NP, Brushy Mountain, \textit{F. R. Fosberg 18674} 13 Jun 1942 (SMU); Sevier Co., Great Smoky Mountains NP, Chimney Tops, \textit{C. T. Bryson 3686} 19 Jul 1984 (MICH); Sevier Co., Mt. LeConte, Rainbow Falls, \textit{William B. Fox s.n.} 21 Aug 1940 (WV); Sevier Co., Great Smoky Mt. NP, Mt. LeConte, \textit{V. E. McNeilus s.n.} 11 Jul 1981 (WIS); Sevier Co., Great Smoky Mt. NP, Mt. LeConte, \textit{V. E. McNeilus s.n.} 26 Jul 1980 (WIS); Sevier Co., Great Smoky Mt. NP, Clingman's Dome, \textit{V. E. McNeilus s.n.} 16 Aug 1980 (WIS); Sevier Co., Great Smoky Mt. NP, Elkmont, \textit{V. E. McNeilus s.n.} 22 May 1982 (WIS); Unicoi Co., Flag Pond, N of Big Bald, \textit{J. A. Churchill 85290} 20 Jul 1985 (MSC); Unicoi Co., Unaka Mt., \textit{V. E. McNeilus s.n.} 5 Aug 1982 (WIS); Vermont: Bennington Co., Mt. Equinox, \textit{P. F. Zika 3867} 3 Jul 1981 (GH); Bennington Co., Pownal, \textit{J. R. Churchill s.n.} 13 Jun 1903 (GH); Virginia: Bedford Co., Blue Ridge Parkway, between Apple Orchard and Thunder Ridge, \textit{J. B. Nelson 15987} 29 Jul 1994 (USCH); Botetonot Co., Apple Orchard Mt., \textit{C. E. Stevens 16721} 13 Aug 1978 (VPI); Craig Co., Hanging Rock, Potts Mt., \textit{C. E. Stevens 15541} 1 Jul 1978 (VPI); Floyd Co., Buffalo Mt., \textit{C. E. Stevens 12967} 18 Jun 1976 (VPI); Giles Co., Kire, \textit{H. H. Iltis 1900} 25 Jul 1943 (SMU); Giles Co., Allegheny Mountains, Salt Pond Rattlesnake Mountain, \textit{H. H. Iltis 19.747} 27 Jul 1958 (SMU); Giles Co., Beanfield Mt., W of Mountain Lake, \textit{John M. Fogg Jr. 17057} 1 Jul 1949 (MICH); Giles Co., Salt Pond Mountain, Allegheny Mountains, \textit{Hugh H. Iltis s.n.} 27 Jul 1958 (WIS); Grayson Co., Buck Mt., \textit{C. E. Stevens 2114} 17 Jun 1970 (VPI); Grayson Co., Mt. Rogers, \textit{J. K. Small s.n.} 29 Jun 1892 (MSC); Grayson Co., Point Lookout Mountain, \textit{N of Independence. T. F. Wieboldt 7234} 4 Jun 1990 (VPI); Grayson Co., Point Lookout Mountain, \textit{N of Independence. T. F Wieboldt 7316} 31 Jul 1990 (MICH); Highland Co., Allegheny Mt., NW of Blue Grass, \textit{G. P. Fleming 9297} 23 Jun 1994 (VPI); Madison Co., Stony Man Mt., \textit{S. J. Smith 4770} 13 Sep 1948 (NYS); Madison Co., Stony Man, Shenandoah NP, \textit{C. E. Stevens 10951} 5 Jul 1975 (VPI); Marion Co., Mt. Rogers, \textit{J. A. Churchill 70517} 16 May 1970 (MSC); Nelson Co., Three Ridges Mountain, \textit{F. Watson 816} 30 Aug 1976 (CLEMS); Page Co., Shenandoah NP, Appalachian Trail, \textit{SW SKYLAND F. J. Hermann 10752} 27 Oct 1940 (MICH); Patrick Co., Twelve O'Clock Knob, SE side of Rock Castle Gorge, \textit{T. F. Wieboldt 9264} 27 Jul 1995 (VPI); Russell Co., Beartown Mt./Clinch Mt. WMA, \textit{J. F. Townsend 3099} 18 Jun 2003 (VPI); Smyth Co., Iron Mt., \textit{C. E. Stevens 2160} 19 Jun 1970 (VPI); Smyth Co., Troutdale, Mt. Rogers, \textit{J. A. Churchill s.n.} 6 Jun 1970 (MSC); Tazewell Co., Morris Knob, \textit{C. E. Stevens 7399} 20 Jul 1973 (VPI); Washington Co., Brumley Mt., \textit{W of The Butt. C. E. Stevens 7448} 21 Jul 1973 (VPI); West Virginia: Randolph Co., Monangahela National Forest, Spruce Knob Lake, \textit{Bev Walters 612} 8 Jul 1997 (MICH); Randolph Co., Monongahela National Forest, Wymer, \textit{A. W. Cusick 29,609} 30 May 1991 (MICH). \textbf{\textsc{Carex bushii}}. U. S. A. Alabama: Colbert Co., Colbert Co. Rd 101, \textit{J. H. Wiersma 1725} 6 May 1980 (GA); Sumter Co., S of Boyd, \textit{S. McDaniel 10545} 28 Apr 1968 (GA). Arkansas: Ashley Co., Hamburg, \textit{Larry J. Harms 2274} 3 May 1965 (KANU); Baxter Co., Mountain Home, \textit{Phillip E. Hyatt 2797.03} 5 May 1990 (MICH); Columbia Co., Taylor, \textit{Phillip E. Hyatt 6388} 6 May 1995 (MICH); Crawford Co., Natural Dam, \textit{Phillip E. Hyatt 9311} 18 May 2000 (MICH); Hot Springs Co., Brawley Cemetery, \textit{Phillip E. Hyatt 5384} 17 May 1993 (MICH); Izard Co., sandstone glade, \textit{Phillip E. Hyatt 5601} 4 Jun 1993 (MICH); Izard Co., Calico Rock, \textit{B. L. Lipscomb 1576} 30 May 1976 (NCU); Izard Co., Calico Rock, \textit{Phillip E. Hyatt 4399.33} 27 May 1992 (MICH); Johnson Co., Clarksville, \textit{R. Naczi 3895} 19 May 1994 (MICH); LaFayette Co., Bradley, \textit{Phillip E. Hyatt 6261} 22 Apr 1995 (MICH); Lincoln Co., Star City, \textit{Phillip E. Hyatt 7539} 20 May 1997 (MICH); Lonoke Co., Carlisle, \textit{A. A. Reznicek 9263} 17 May 1993 (MICH); Lonoke Co., Little Rock, \textit{S. D. Jones 2565} 28 Apr 1989 (MICH); Miller Co., Foulk, \textit{Phillip E. Hyatt 6340} 23 Apr 1995 (MICH); Monroe Co., Fargo, \textit{R. Naczi 2454} 21 May 1990 (MICH); Perry Co., Fourche Mt., \textit{Phillip E. Hyatt 8046} 3 May 1998 (MICH); Polk Co., Highway 270, \textit{D. Castaner 9668} 13 May 1987 (TAES); Polk Co., Queen Wilhelmina SP, \textit{C. T. Bryson 4315} 10 May 1986 (MICH); Pope Co., Atkins, Crow Mt., \textit{G. E. Tucker 4412} 10 May 1967 (NCU); Prairie Co., Hazen, \textit{C. T. Bryson 12325} 17 May 1993 (MICH); Scott Co., Haw Creek, \textit{Phillip E. Hyatt 7456} 17 May 1997 (MICH); Scott Co., Ouchita NF, Poteau Mt., \textit{Phillip E. Hyatt 7464} 18 May 1997 (MICH); Scott Co., Waldron, \textit{Phillip E. Hyatt 4043.64} 2 Jun 1991 (MICH); Stone Co., Ashe's Juniper Glade, Ozark NF, \textit{Phillip E. Hyatt 5527} 26 May 1993 (MICH); Van Buren Co., Hwy 9, \textit{Phillip E. Hyatt 5418} 18 May 1993 (MICH); Washington Co., Fayetteville, \textit{D. Sadler 109} 20 Jun 1990 (OKL); White Co., Steprock Community, \textit{Phillip E. Hyatt 6015} 11 May 1994 (MICH). Delaware: New Castle Co., Talleyville, \textit{R. Naczi 2563} 12 Jun 1990 (MICH). Georgia: Clarke Co., Athens, \textit{J. H. Pyron 1798} 18 May 1937 (GA); Clarke Co., Athens, \textit{J. R. Manhart 46} 29 May 1980 (MICH); Cook Co., Rt. 37, \textit{V. E. McNeilus 92-289} 22 May 1992 (TAES). Illinois: Jackson Co., Desoto Railroad Prairie, \textit{D. Ladd 4003} 3 Jun 1979 (MO); Perry Co., Pyramid SP, \textit{J. Raveill 165} 21 May 1981 (MO); Randolph Co., Sparta, \textit{W. M. Bailey 1454} 25 Jun 1951 (NCU). Indiana: Davies Co., Washington, \textit{N. C. Henderson 67-593} 22 May 1967 (NCU); Posey Co., SW Mt. Vernon, \textit{F. J. Hermann 6662} 15 Jun 1935 (GH); Posey Co., SW of Mt. Vernon, \textit{C. C. Deam 42929} 25 May 1926 (GH); Spencer Co., Bloomfield, \textit{C. C. Deam 55020} 4 Jun 1934 (MICH). Iowa: Page Co., Tarkio Township, \textit{B. Wilson 3884} 3 Jul 1990 (MICH); Washington Co., Washington, \textit{T. Cady s.n.} 14 Jun 1997 (MICH); Washington Co., Washington, \textit{T. Cady s.n.} 14 Jun 1997 (MICH). Kansas: Allen Co., Carlyle, \textit{Caleb A. Morse 3005} 1 May 1999 (KANU); Allen Co., Humboldt, \textit{Ole A. Kolstad 1336} 8 Jun 1964 (KANU); Allen Co., Moran, \textit{Ole A. Kolstad 1391} 9 Jun 1964 (KANU); Anderson Co., Garnett, \textit{Ole A. Kolstad 2168} 2 Jun 1964 (KANU); Anderson Co., Harris, \textit{Ole A. Kolstad 1318} 8 Jun 1964 (KANU); Anderson Co., Welda, \textit{Craig C. Freeman 9101} 7 Jun 1997 (KANU); Anderson Co., Westphalia, \textit{Caleb A. Morse 8409} 1 Jul 2002 (KANU); Anderson Co., Westphalia, \textit{Caleb A. Morse 9526} 13 Jun 2003 (KANU); Anderson Co., Westphalia, \textit{Craig C Freeman 17013} 16 May 2001 (KANU); Atchison Co., Lancaster, \textit{Ralph Brooks 4651} 21 Jun 1973 (KANU); Bourbon Co., Crawford Co. line, \textit{Ole A. Kolstad 2181} 2 Jun 1964 (KANU); Bourbon Co., Hiattville, \textit{Steve Stephens 47602} 27 May 1971 (KANU); Bourbon Co., KS 7, \textit{Craig C. Freeman 2386} 15 Jun 1987 (KANU); Bourbon Co., Uniontown, \textit{Ole A. Kolstad 1400} 9 Jun 1964 (KANU); Brown Co., Brown Co State Lake, \textit{Ole A. Kolstad 2607} 23 Jun 1964 (KANU); Brown Co., \textit{Ronald L. McGregor 38891} 25 May 1988 (KANU); Butler Co., Augusta, \textit{William T. Barker 2446} 16 Jun 1966 (KANU); Butler Co., Beaumont, \textit{Steve Stephens 85770} 26 Jun 1975 (KANU); Butler Co., Butler Co. State Lake, \textit{Steve Stephens 4463} 7 Jun 1966 (KANU); Butler Co., Keighley, \textit{Steve Stephens 3115} 13 May 1966 (KANU); Butler Co., Latham, \textit{Steve Stephens 3110} 13 May 1966 (KANU); Chase Co., Bazaar, \textit{Steve Stephens 4573} 8 Jun 1966 (KANU); Cherokee Co., \textit{A. S. Hitchcock 1020} 7 May 1897 (MICH); Cherokee Co., Baxter Springs, \textit{Ole A. Kolstad 2202} 2 Jun 1964 (KANU); Cherokee Co., Baxter Springs, \textit{Ronald L. McGregor 38209} 28 May 1987 (KANU); Cherokee Co., Crestline, \textit{Steve Stephens 4117} 2 Jun 1966 (KANU); Cherokee Co., Galena, \textit{Ronald L. McGregor 38218} 28 May 1987 (KANU); Cherokee Co., KS 7, \textit{Ole A. Kolstad 2193} 2 Jun 1964 (KANU); Cherokee Co., Pittsburg, \textit{A. A. Reznicek 9828} 29 May 1994 (MICH); Cherokee Co., Riverton, \textit{Ralph E. Brooks 15949} 10 Jun 1982 (KANU); Cherokee Co., Scammon, \textit{Ole A. Kolstad 2243} 3 Jun 1964 (KANU); Cherokee Co., Skidmore, \textit{Ole A Kolstad 2240} 3 Jun 1964 (KANU); Cloud Co., Miltonvale, \textit{S. V. Fraser 28} 5 Jun 1936 (NCU); Coffey Co., Burlington, \textit{Ole A. Kolstad 2504} 20 Jun 1964 (KANU); Coffey Co., Halls Summit, \textit{Craig C. Freeman 14812} 14 Jun 2000 (KANU); Coffey Co., Lebo, \textit{C. A. Morse 3048} 19 May 1999 (MICH); Coffey Co., Waverly, \textit{Craig C Freeman 17060} 16 May 2001 (KANU); Coffey Co., Woodson Co. line, \textit{William T Barker 2337} 14 Jun 1966 (KANU); Crawford Co., Farlington, \textit{Steve Stephens 4015} 1 Jun 1966 (KANU); Crawford Co., Farlington, \textit{Steve Stephens 3998} 1 Jun 1966 (KANU); Crawford Co., Farlington, \textit{Ole A. Kolstad 2185} 2 Jun 1964 (KANU); Crawford Co., Frontenac, \textit{Ronald L. McGregor 38199} 27 May 1987 (KANU); Crawford Co., Girard, \textit{Ole A. Kolstad 2276} 4 Jun 1964 (KANU); Crawford Co., Cherokee, \textit{Caleb A. Morse 9592} 17 Jun 2003 (KANU); Crawford Co., Pittsburg, \textit{Ole A. Kolstad 2262} 4 Jun 1964 (KANU); Douglas Co., Lawrence, \textit{Ole A. Kolstad 2149} 25 May 1964 (KANU); Douglas Co., Baldwin City, \textit{Ole A. Kolstad 2139} 22 May 1964 (KANU); Douglas Co., Baldwin City, \textit{Craig C. Freeman 3456} 27 May 1991 (KANU); Douglas Co., Baldwin Creek, \textit{R. L. McGregor 40484} 18 May 1992 (OKL); Douglas Co., Clinton Reservoir, \textit{C. Morse 272} 4 Jun 1995 (MICH); Douglas Co., Clinton Reservoir, \textit{C. Morse 741} 21 Jun 1996 (MICH); Douglas Co., Haskell Bottoms, \textit{Wayne Robuck 251} 30 May 1968 (KANU); Douglas Co., Baldwin City, \textit{Caleb A. Morse 5603} 6 May 2001 (KANU); Douglas Co., Lawrence, \textit{Hetzer 536} 2 Jun 1950 (KANU); Douglas Co., Lawrence, \textit{Ronald L. McGregor 36213} 20 May 1985 (KANU); Douglas Co., Lawrence, \textit{Ole A. Kolstad 2161} 29 May 1964 (KANU); Douglas Co., Lawrence, \textit{Ronald L. McGregor 4471} 15 Aug 1950 (KANU); Douglas Co., Lawrence, \textit{Hetzer 541} 7 Jun 1950 (KANU); Douglas Co., Lecompton, \textit{Ronald L. McGregor 17469} 18 May 1963 (KANU); Douglas Co., Stull, \textit{Caleb A. Morse 4384} 3 May 2000 (KANU); Douglas Co., Stull, \textit{Caleb A. Morse 9425} 26 May 2003 (KANU); Douglas Co., Baldwin Creek, \textit{Ronald L. McGregor 40484} 18 May 1992 (KANU); Douglas Co., \textit{Ronald L. McGregor 39988} 9 Jun 1989 (KANU); Douglas Co., \textit{Caleb A. Morse 237} 18 May 1995 (KANU); Douglas Co., Dorothy Akin Memorial Prairie, \textit{Ronald L. McGregor 40181} 11 Jun 1990 (KANU); Douglas Co., Dorothy Akin Memorial Prairie, \textit{Caleb A. Morse 237} 18 May 1995 (KANU); Elk Co., Busby, \textit{Caleb A. Morse 5717} 10 May 2001 (KANU); Elk Co., Busby, \textit{Caleb A. Morse 5740} 10 May 2001 (KANU); Elk Co., Fall River, \textit{Caleb A. Morse 5634} 10 May 2001 (KANU); Franklin Co., Douglas-Franklin line, \textit{Hetzer 556} 8 Jun 1950 (KANU); Franklin Co., Ottawa, \textit{Ralph Brooks 4456} 19 Jun 1973 (KANU); Franklin Co., Ottawa, \textit{William T. Barker 2280} 6 Jun 1966 (KANU); Franklin Co., Ottawa, \textit{Hetzer 206} 6 Jun 1949 (KANU); Franklin Co., Ottawa, \textit{Hetzer 550} 8 Jun 1950 (KANU); Franklin Co., Ottawa, \textit{Hetzer 200} 6 Jun 1949 (KANU); Franklin Co., Richmond, \textit{Ole A. Kolstad 1370} 8 Jun 1964 (KANU); Franklin Co., Richmond, \textit{Craig C. Freeman 17002} 16 May 2001 (KANU); Franklin Co., Richmond, \textit{Ronald L. McGregor 10099} 14 May 1955 (KANU); Franklin Co., \textit{Ronald L. McGregor 38146} 22 May 1987 (KANU); Franklin Co., Williamsburg, \textit{Craig C. Freeman 14817} 14 Jun 2000 (KANU); Greenwood Co., Eureka, \textit{Craig C. Freeman 14795} 14 Jun 2000 (KANU); Greenwood Co., Fall River SP, \textit{William T. Barker 3711} 7 Jun 1967 (KANU); Greenwood Co., Fall River, \textit{Craig C. Freeman 8066} 29 Jun 1996 (KANU); Greenwood Co., Madison, \textit{Craig C. Freeman 14805} 14 Jun 2000 (KANU); Greenwood Co., Neal, \textit{Steve Stephens 89639} 21 Jun 1978 (KANU); Greenwood Co., Severy, \textit{Craig C. Freeman 14784} 14 Jun 2000 (KANU); Jefferson Co., Kansas Ecological Reserves Site \#5001, \textit{Kelly Kindscher H0403} 6 Jun 1989 (KANU); Jefferson Co., Williamstown, \textit{Ole A. Kolstad 2580} 23 Jun 1964 (KANU); Johnson Co., Aubry, \textit{Caleb A. Morse 4697} 30 May 2000 (KANU); Johnson Co., Clearview City, \textit{C. A. Morse 4568} 19 May 2000 (MICH); Johnson Co., DeSoto, \textit{Craig C. Freeman 14746} 1 Jun 2000 (KANU); Johnson Co., DeSoto, \textit{Craig C. Freeman 5013} 25 Jun 1993 (KANU); Johnson Co., Gardner, \textit{Craig C. Freeman 4925} 21 May 1993 (KANU); Johnson Co., Kill Creek Rd \textit{Caleb A. Morse 1232} 20 May 1997 (KANU); Johnson Co., Sunflower Army Ammunition Plant, \textit{C. C. Freeman 5013} 25 Jun 1992 (OKL); Labette Co., Oswego, \textit{Ole A. Kolstad 2297} 4 Jun 1964 (KANU); Labette Co., Parsons, \textit{Craig C. Freeman 6180} 21 Jun 1994 (KANU); Leavenworth Co., Eudora, \textit{Caleb A. Morse 5769} 17 May 2001 (KANU); Linn Co., Blue Mound City Lake, \textit{C. A. Morse 4661} 24 May 2000 (NEB); Linn Co., Boicourt, \textit{Caleb A. Morse 8090} 10 Jun 2002 (KANU); Linn Co., La Cygne, \textit{Caleb A. Morse 7964} 23 May 2002 (KANU); Linn Co., Pleasanton, \textit{Craig C. Freeman 14881} 19 Jun 2000 (KANU); Linn Co., Trading Post, \textit{Caleb A. Morse 8142} 10 Jun 2002 (KANU); Linn Co., Trading Post, \textit{Caleb A. Morse 10426} 14 May 2004 (KANU); Lyon Co., Allen, \textit{Ronald L. McGregor 15622} 3 Jun 1960 (KANU); Lyon Co., Reading, \textit{Ralph Brooks 3509} 15 May 1972 (KANU); Lyon Co., Saffordville, \textit{Caleb A. Morse 3443} 9 Jun 1999 (KANU); Miami Co., Johnson Co. line, \textit{Jennifer Milburn 1028} 11 Jun 1994 (KANU); Miami Co., Johnson Co. line, \textit{Jennifer Milburn 1010} 11 Jun 1994 (KANU); Miami Co., MO state line, \textit{Jennifer Milburn 921a} 6 Jun 1994 (KANU); Miami Co., Beagle, \textit{Caleb A. Morse 6565} 15 Jun 2001 (KANU); Miami Co., Franklin Co. line, \textit{Craig C. Freeman 2474} 14 May 1988 (KANU); Miami Co., Jingo, \textit{Caleb A. Morse 10488} 20 May 2004 (KANU); Miami Co., Miami Co. State Lake, \textit{Ole A. Kolstad 2050} 16 May 1964 (KANU); Miami Co., Paola, \textit{Craig C. Freeman 14899} 19 Jun 2000 (KANU); Miami Co., Paola, \textit{Ralph Brooks 4845} 28 Jun 1973 (KANU); Miami Co., Somerset, \textit{C. A. Morse 4733} 30 May 2000 (MICH); Montgomery Co., Cherryvale, \textit{William T Barker 2174} 3 Jun 1966 (KANU); Montgomery Co., Montgomery Co. State Lake, \textit{Ronald L. McGregor 40401} 30 May 1991 (KANU); Montgomery Co., Montgomery Co. State Lake, \textit{Ronald L. McGregor 40384} 30 May 1991 (KANU); Montgomery Co., Montgomery Co. State Lake, \textit{Ronald L. McGregor 38275} 4 Sep 1987 (KANU); Montgomery Co., \textit{Ronald L. McGregor 38870} 12 May 1988 (KANU); Neosho Co., St. Paul, \textit{W. W. Holland 948} 23 May 1965 (KANU); Neosho Co., St. Paul, \textit{W. W. Holland 895} 10 May 1965 (KANU); Neosho Co., Thayer, \textit{W. W. Holland 5470} 26 May 1986 (KANU); Neosho Co., Walnut Grove, \textit{W. W. Holland 455} 28 May 1964 (NCU); Osage Co., U.S. 56, \textit{Ralph E. Brooks 18717} 27 May 1987 (KANU); Osage Co., Osage City Cemetery, \textit{C. C. Freeman 12585} 12 Jun 1999 (NEB); Osage Co., Osage City, \textit{Craig C. Freeman 18841} 14 Jun 2002 (KANU); Osage Co., Osage City, \textit{Ralph E. Brooks 16636} 1 Jun 1983 (KANU); Osage Co., Overbrook, \textit{Ralph E. Brooks 18704} 27 May 1987 (KANU); Ottawa Co., Minneapolis, \textit{Ronald L. McGregor 37030} 19 May 1986 (KANU); Republic Co., Agenda, \textit{Ralph E. Brooks 16741} 12 Jul 1983 (KANU); Republic Co., \textit{Gordon E. Morley 393} 28 Jun 1960 (KANU); Republic Co., Talmo, \textit{Jeff Elliott 888} 1 Jul 1995 (KANU); Riley Co., Ogden, \textit{Craig C. Freeman 18780} 21 May 2002 (KANU); Saline Co., Brookville, \textit{Jeff Elliott 1532} 21 May 2003 (KANU); Saline Co., Brookville, \textit{Craig C. Freeman 19807} 20 May 2003 (KANU); Saline Co., \textit{John C. Hancin 2268} 28 May 1939 (KANU); Shawnee Co., Wakarusa, \textit{Craig C. Freeman 14865} 17 Jun 2000 (KANU); Sumner Co., Gueda Springs, \textit{Craig C. Freeman 14778} 13 Jun 2000 (KANU); Sumner Co., Mulvane, \textit{Dick W. Birkholz 2040a} 9 Jun 1967 (KANU); Sumner Co., Slate Creek Wetland, \textit{M. D. Proctor 604} 6 Jun 1993 (OKL); Wabaunsee Co., Chalk, \textit{Steve Stephens 3496} 19 May 1966 (KANU); Wabaunsee Co., Maple Hill, \textit{Robert E. Russell 588} 21 May 1997 (KANU); Washington Co., Washington Co. State Lake, \textit{Ronald L. McGregor 39067} 6 Jun 1988 (KANU); Washington Co., Washington, \textit{Ralph Brooks 16658} 15 Jun 1983 (KANU); Washington Co., Washington Co. State Lake, \textit{Steve Stephens 55384} 21 Jun 1972 (KANU); Wilson Co., Buffalo, \textit{Steve Stephens 85302} 19 Jun 1975 (KANU); Wilson Co., Neodesha, \textit{Ole A. Kolstad 3098} 9 Jun 1965 (KANU); Wilson Co., \textit{Ronald L. McGregor 38351} 27 Jun 1987 (KANU); Woodson Co., Yates Center, \textit{Caleb A. Morse 8237} 18 Jun 2002 (KANU); Woodson Co., Lake Fegan, \textit{Ole A. Kolstad 201} 11 May 1963 (KANU); Woodson Co., Rose, \textit{Caleb A. Morse 8220} 18 Jun 2002 (KANU); Woodson Co., Cross Timbers SP, Toronto, \textit{Gary Weisenberger s.n.} 4 Jun 2004 (KANU); Woodson Co., Toronto, \textit{Caleb A. Morse 8283} 19 Jun 2002 (KANU); Woodson Co., Woodson State Fishing Lake, Toronto, \textit{Caleb A. Morse 5610} 10 May 2001 (KANU); Woodson Co., Woodson Co. State Lake, \textit{Ole A. Kolstad 230} 11 May 1963 (KANU); Woodson Co., Woodson Co. State Lake, \textit{Ronald L. McGregor 40340} 29 May 1991 (KANU); Woodson Co., Woodson Co. State Lake \textit{Ralph Brooks 12109} 8 Jun 1976 (KANU); Woodson Co., Woodson Co. State Lake, \textit{Ronald L. McGregor 40355} 29 May 1991 (KANU); Woodson Co., Yates Center City Lake, \textit{Ole A. Kolstad 2514} 20 Jun 1964 (KANU); Woodson Co., Yates Center, \textit{Kermit L. Johnson 1289} 17 Jun 1968 (KANU). Kentucky: Bulitt Co., Bernheim Forest, \textit{A. Hotchkiss s.n.} 27 May 1951 (NYS); Hickman Co., Jackson Purchase Area, \textit{L. E. McKinney 4187} 5 May 1990 (EKY); Hickman Co., Murphy's Pond, \textit{L. E. McKinney 4187} 7 May 1990 (TAES); Madison Co., Igloo 1509, \textit{G. Libby OB-348} 2 Jun 1993 (MICH). Louisiana: Morehouse Co., Bayou Bartholomew, \textit{C. T. Bryson 11456} 30 Apr 1992 (MICH); Rapides Co., Kisatchie Forest, \textit{D. A. Duncan 57026} 11 May 1957 (TAES); Union Co., La 143, \textit{D. C. Moore 625} 14 Apr 1983 (cb); Vernon Co., Ft. Polk Army Post, \textit{C. M. Allen PLK1120} 11 Apr 1992 (OKL). Maryland: Carroll Co., Eldersburg, \textit{W. D. Longbottom 3138} 16 Jun 1992 (MARY); Cecil Co., Pilot, \textit{D. D. Boone 830607-SN} 7 Jun 1983 (TAWES); Cecil Co., Rising Sun, \textit{C. Lea 1878} 3 Jun 2000 (MARY); Frederick Co., Flat Run, \textit{E. Baltass 306} 16 Jun 1951 (MARY); Montgomery Co., Falls Island at Great Falls, \textit{C. Lea 1932} 5 Jun 2000 (MARY). Massachusetts: Hampshire Co., Northampton, \textit{H. E. Ahles 81791} 3 Jul 1976 (NCU). Michigan: Charlevoix Co., Beaver Island, \textit{F. Menapace 16} 11 Jul 1985 (MICH). Mississippi: Chickasaw Co., Buena Vista, \textit{C. T. Bryson 11569} 14 May 1992 (CLEMS); Chickasaw Co., Trebloc, \textit{C. T. Bryson 11556} 14 May 1992 (MICH); Franklin Co., Sullivan, \textit{E J Palmer 67330} 11 Jun 1958 (KANU); Grenada Co., Camp McCain, \textit{C. T. Bryson 15192} 20 May 1996 (MICH); Grenada Co., Holcomb, \textit{C. T. Bryson 11538} 14 May 1992 (CLEMS); Kemper Co., \textit{C. T. Bryson 8569} 15 May 1989 (MICH); Lee Co., Tupelo, \textit{C. T. Bryson 3225} 1 May 1982 (MICH); Lee Co., Tupelo, \textit{C. T. Bryson 3389} 29 May 1982 (MICH); Lee Co., Tupelo, \textit{C. T. Bryson 9905} 18 May 1990 (TAES); Lowndes Co., Artesia, \textit{C. T. Bryson 8562} 15 May 1989 (MICH); Lowndes Co., Mayhew, \textit{C. T. Bryson 9868} 17 May 1990 (MICH); Panola Co., Batesville, \textit{C. T. Bryson 12441} 1 Jun 1993 (MICH); Pontotoc Co., Natchez Trace Parkway, \textit{C. T. Bryson 3782} 27 Apr 1985 (MICH); Rankin Co., Richland, \textit{C. T. Bryson 15069} 30 Apr 1996 (MICH); Tate Co., Senitobia, \textit{C. T. Bryson 10021} 18 May 1990 (TAES); Missouri: Barry Co., Wheaton, \textit{D. Castaner 7499} 26 May 1983 (MICH); Benton Co., \textit{D. Castaner 6285} 16 May 1981 (MICH); Benton Co., Lake Creek Town, \textit{D. Castaner 6286} 16 May 1981 (VPI); Boone Co., Grindstone Park, \textit{P. M. McKenzie 1572} 25 May 1995 (MO); Calloway Co., Dixie State Rec. Area, \textit{V. E. McNeilus 92-562} 8 Jul 1992 (MICH); Calloway Co., Kingdom City, \textit{V. E. McNeilus 94-534} 5 Jun 1994 (MSC); Clark Co., Little Rollins Creek, \textit{B. Summers 8724} 22 Jun 1998 (MO); Dade Co., Greenfield, \textit{E. J. Palmer 52187} 10 Jun 1951 (KANU); Henry Co., Clinton, \textit{W. Folsted 12812} 5 Jun 1953 (NEB); Jasper Co., Joplin, \textit{E. J. Palmer 49155} 8 Jun 1949 (KANU); Jasper Co., Webb City, \textit{E. J. Palmer 17411} 8 May 1920 (KANU); Johnson Co., Knob Noster SP, \textit{R. Mullikin 567} 8 Jun 1972 (NEB); Marion Co., Hunnewell, \textit{A. A. Reznicek 9874} 31 May 1994 (MICH); Montgomery Co., High Hill, \textit{A. E. Brant 580} 26 May 1985 (TAES); Montgomery Co., Montgomery City, \textit{R. E. Gereau 1129} 19 May 1984 (TAES); Pettis Co., Greenridge, \textit{D. Castaner 6250} 16 May 1981 (MICH); Pulaski Co., Ft. Leonard Wood Army Base, \textit{R. T. Ovrebo W0132} 5 May 1989 (OKL); Pulaski Co., Happy Hollow Picnic Area, \textit{R. T. Ovrebo W0132} 5 May 1989 (KANU); Randolph Co., \textit{D. Castaner 7590} 3 Jun 1983 (MICH); Scott Co., Hwy H off Benton Rd, \textit{Travis Brooks 7755} 18 May 1975 (KANU); Shelby Co., Clarence, \textit{P. M. McKenzie 1413} 11 Jun 1994 (MICH); St. Francois Co., \textit{J. Kessler 7196} 16 Jun 1983 (TAES); St. Francois Co., Knob Lick, \textit{D. Castaner 6571} 14 Jun 1981 (MICH); St. Louis Co., St. Louis, \textit{H. Eggert s.n.} 21 Jun 1887 (MICH); Stoddard Co., Dudley, \textit{R. Naczi 1960} 22 May 1988 (MICH); Texas Co., Slabtown, \textit{B. Summers 5831} 22 Jun 1993 (MO); Vernon Co., Nevada, \textit{W. D. Longbottom 3530} 24 May 1993 (MARY); Webster Co., \textit{R. E. Gereau 1765} 28 Apr 1985 (TAES). Nebraska: Burt Co., Tekamah, \textit{S. B. Rolfsmeier 16227} 29 May 2001 (NEB); Gage Co., Diamond Lake Wildlife Management Area, \textit{R. F. Steinauer s.n.} 21 May 1999 (NEB); Gage Co., Odell, \textit{Steven B Rolfsmeier 8744} 2 Jun 1991 (KANU); Jefferson Co., DeBoer Prairie, \textit{R. F. Steinhauer 299} 9 Jun 1998 (NEB); Jefferson Co., Endicot, \textit{S. P. Churchill 3562} 13 Jun 1974 (NEB); Jefferson Co., Fairbury, \textit{S. P. Churchill 3538A} 13 Jun 1974 (NEB); Jefferson Co., Fairbury, \textit{Steven B. Rolfsmeier 6246} 2 Jun 1990 (KANU); Jefferson Co., Rock Creek State Historical Park, Fairbury, \textit{S. Rolfsmeier 6246} 2 Jun 1990 (NEB); Jefferson Co., Rock Glen WMA, \textit{G. Steinhauer 228} 12 Jun 1997 (NEB); Pawnee Co., Elk Creek, \textit{R. F. Steinhauer 1537} 24 May 2001 (NEB); Pawnee Co., Joe Gyhra Prairie, \textit{R. Steinhauer 72} 7 Jul 1997 (NEB); Pawnee Co., Steinauer Catholic cemetery, \textit{Robert F. Steinauer 1541} 31 May 2001 (KANU); Pawnee Co., Steinauer, \textit{Steven B. Rolfsmeier 13310} 20 Jun 1997 (KANU); New Jersey: Hunterdon Co., Delaware Township, \textit{J. D. Mitchell 641} 22 Jun 1993 (MICH). New York: Albany Co., Alcove, \textit{W. J. Crins 7641} 3 Jul 1989 (NYS); Albany Co., New Scotland, \textit{H. D. House 20376} 19 Jun 1933 (NYS); Albany Co., South Westerlo, \textit{G. C. Tucker 6038} 4 Jun 1991 (NYS); Columbia Co., German Town, \textit{R. McVaugh 3318} 17 Jul 1935 (NYS); Columbia Co., Livingston, \textit{H. D. House 22696} 26 Jun 1935 (NYS); Dutchess Co., Rhinecliff, \textit{H. D. House 19282} 23 Jun 1932 (NYS); Dutchess Co., Stanford, \textit{R. E. Zaremba 4260} 6 Jul 1987 (NYS); Oneida Co., Yorkville, \textit{J. V. Haberer 1125} 1 Jun 1902 (NYS); Onondaga Co., Tully, \textit{S. M. Young 1086} 27 Jun 1991 (NYS); Orange Co., Harriman SP, \textit{J. G. Barbour 787} 9 Jun 1993 (NYS); Orange Co., Lake Frederick, \textit{J. G. Barbour 862} 16 Jun 1993 (NYS); Orange Co., West Point, \textit{J. G. Barbour 2165} 9 Jul 1994 (NYS); Putnam Co., Town of Patterson, \textit{G. C. Tucker 4448} 1 Jul 1989 (NYS); Rensselaer Co., Brainerd, \textit{H. D. House 21370} 8 Jun 1934 (NYS); Rensselaer Co., Town of Schaghticoke, \textit{W. Broderick 2002:16} 13 Jun 2002 (NYS); Rensselaer Co., West Sand Lake, \textit{H. D. House 20354} 18 Jun 1933 (NYS); Rockland Co., Bear Mt. SP: Doodletown, \textit{G. C. Tucker 9698} 8 Jun 1994 (NYS); Rockland Co., Bear Mt. SP: Iona Island, \textit{R. S. Mitchell 8364} 2 Jul 1993 (NYS); Rockland Co., Harriman SP, \textit{J. G. Barbour 2112} 30 Jun 1994 (NYS); Rockland Co., Orangetown, \textit{R. E. Zaremba 4221} 15 Jul 1987 (NYS); Rockland Co., Stony Point, Iona Island, \textit{R. E. Zaremba 4220} 15 Jul 1987 (NYS); Schenectady Co., Mariaville Lake, \textit{T. C. Baim 3375} 13 Jul 1950 (NYS); St. Lawrence Co., Town of Waddington, \textit{A. M. Johnson 2850} 17 Jun 2005 (NYS); Ulster Co., Township of Olive, \textit{J. Bierhorst s.n.} 30 Jun 1993 (NYS); Ulster Co., Wawarsing; Shawangunk Mts., \textit{R. E. Zaremba 9800} 16 Jun 1992 (NYS); Washington Co., Lake George Region, \textit{S. H. Burnham s.n.} 8 Jul 1898 (NYS); Westchester Co., Bedford, \textit{Francis W. Pennell 7145} 24 Jun 1916 (KANU); Westchester Co., Mount Kisco, \textit{Francis W Pennell 7181} 25 Jun 1916 (KANU); Westchester Co., Mount Pleasant, \textit{R. E. Zaremba 2603} 10 Jul 1986 (NYS). North Carolina: Durham Co., \textit{S. W. Leonard 1522} 29 May 1968 (MICH); Rowan Co., Spencer, \textit{A. E. Radford 11540} 26 May 1956 (NCU). Ohio: Jackson Co., \textit{J. S. McCormac 5559} 6 Jun 1994 (MICH). Oklahoma: \textit{R. Bebb 2756} 29 Apr 1905 (OKL); Adair Co., Sequoyah Co. line, \textit{M. Huft 1178} 14 May 1980 (OKL); Atoka Co., McGee Creek Wildlife Management Area, \textit{B. Hoagland AB-19} 24 May 2000 (OKL); Atoka Co., Stringtown, \textit{P. Folley 2631} 27 May 2001 (OKL); Bryan Co., Durant, \textit{J. Taylor 1426} 18 Apr 1963 (OKL); Bryan Co., Hendrix, \textit{Phillip E. Hyatt 7970} 20 Apr 1998 (MICH); Bryan Co., Mead, \textit{J. Taylor 1519} 30 Apr 1963 (OKL); Cherokee Co., Ft. Gibson, \textit{C. S. Wallis 7083-1} 2 Jun 1958 (OKL); Cherokee Co., Talequah, \textit{S. F. Glassman 1466} 24 Apr 1948 (OKL); Choctaw Co., Hugo, \textit{B. Hoagland HUGO279} 16 May 2001 (OKL); Choctaw Co., Jeter Prairie, \textit{S. Carpenter 1382} 8 Jun 1997 (OKL); Cleveland Co., Lexington WMA, \textit{P. Folley 2181} 1 May 1998 (OKL); Cleveland Co., Lexington WMA, \textit{M. D. Proctor 596} 4 May 1993 (OKL); Cleveland Co., Lexington WMA, \textit{P. Folley 2180} 1 May 1998 (OKL); Coal Co., Coalgate, \textit{A. Buthod AB-2179} 1 May 2001 (OKL); Craig Co., Welch, \textit{B. Hoagland 1314} 7 Jun 1999 (OKL); Craig Co., Welch, \textit{B. Hoagland 1333} 7 Jun 1999 (OKL); Craig Co., White Oak Prairie, \textit{P. Folley 2482} 22 May 2000 (OKL); Creek Co., Deep Fork WMA, \textit{D. Benesh DFX257} 23 Jun 1998 (OKL); Creek Co., Old Mannford, \textit{B. Hoagland Key-091} 15 May 2002 (OKL); Delaware Co., Dripping Springs, \textit{M. Hopkins 3211} 7 May 1938 (OKL); Delaware Co., Grove, \textit{U. T. Waterfall 9963} 30 May 1951 (OKL); Delaware Co., Jay, \textit{D. Castaner 7472} 26 May 1983 (MICH); Delaware Co., Oklahoma Ozarks, \textit{C. S. Wallis 1597} 23 May 1954 (OKL); Haskell Co., Stigler, \textit{D. Benesh e054} 5 May 1998 (OKL); Johnston Co., Blue River, \textit{S. D. Jones 10228} 20 May 1993 (VPI); Johnston Co., Ravia, \textit{L. K. Magrath 12678} 25 Apr 1982 (OKL); Johnston Co., Troy, \textit{G. J. Goodman 7922} 4 May 1969 (OKL); Latimer Co., Bengal, \textit{F. H. Means Jr. 3421} 28 May 1968 (OKL); Latimer Co., Robbers Cave SP, \textit{G. J. Goodman 7113} 6 May 1961 (OKL); Latimer Co., Wilburton, \textit{M. Hopkins 1695} 7 May 1937 (MICH); LeFlore Co., State Line Historical Site, \textit{C. T. Bryson 4314} 10 May 1986 (MICH); LeFlore Co., Walnut Mt., \textit{P Folley 2752} 14 May 2003 (OKL); LeFlore Co., Cameron, \textit{A. A. Reznicek 9333} 19 May 1993 (MICH); LeFlore Co., Fanshawe, \textit{G. J. Goodman 2551} 5 May 1935 (OKL); LeFlore Co., Howe, \textit{M. Nee 27251} 9 May 1983 (MICH); LeFlore Co., Winding Stair Mountains, \textit{S. D. Jones 10163} 19 May 1993 (MICH); Mayes Co., Locust Grove, \textit{U. T. Waterfall 6946} 7 Jun 1947 (OKL); Mayes Co., Pryor, \textit{J. K. Small 12225} 2 May 1925 (OKL); Mayes Co., Pryor Creek, \textit{R. Bebb 2750} 13 May 1905 (OKL); McIntosh Co., \textit{B. Hoagland m9.074} 5 May 1999 (OKL); McIntosh Co., E of Henryetta, \textit{S. R. Hill 11172} 17 May 1982 (MARY); Murray Co., Davis, \textit{Caleb A. Morse 5567} 30 Apr 2001 (KANU); Murray Co., Davis, \textit{Caleb A. Morse 5567} 30 Apr 2001 (KANU); Murray Co., Sulphur, \textit{U. T. Waterfall 6462} 23 Apr 1946 (OKL); Murray Co., Sulphur, \textit{G. J. Goodman 7910} 3 May 1969 (OKL); Murray Co., Sulphur, \textit{U. T. Waterfall 6484} 24 May 1946 (OKL); Muskogee Co., \textit{R. Bebb 5119} 2 May 1940 (OKL); Muskogee Co., \textit{R. Bebb 5306} 24 May 1940 (OKL); Muskogee Co., Braggs Hill, \textit{R. Bebb 3748} 28 Apr 1939 (OKL); Muskogee Co., Camp Gruber, \textit{M. D. Proctor GRU0374} 13 May 1993 (OKL); Nowata Co., Nowata, \textit{B. Hoagland OOL089} 25 Apr 2000 (OKL); Nowata Co., Oolagah Wildlife Management Area, \textit{B. Hoagland OOL109} 25 Apr 2000 (OKL); Nowata Co., Oolagah Wildlife Management Area, \textit{B. Hoagland OOL348} 31 May 2000 (OKL); Okfuskee Co., \textit{D. Benesh e039} 5 May 1998 (OKL); Osage Co., \textit{P. Folley 1826} 1 Jun 1996 (OKL); Osage Co., Pawhuska, \textit{Steve Stephens 76912} 28 May 1974 (KANU); Osage Co., Western Wall WA, \textit{P. Folley 2314} 1 May 1999 (OKL); Payne Co., Cushing, \textit{L. K. Magrath 20529} 22 May 1999 (OKL); Payne Co., Cushing City Park, \textit{P. Folley 2330} 22 May 1999 (OKL); Payne Co., Manning Prairie, \textit{P. Folley 2331} 22 May 1999 (OKL); Payne Co., Schlegel, \textit{P. Folley 1429} 27 May 1995 (OKL); Payne Co., Schlegel, \textit{L. K. Magrath 20517} 22 May 1999 (OKL); Payne Co., Stillwater, \textit{L. E. McKinney 2586} 12 May 1987 (MICH); Payne Co., Stillwater, \textit{C A Taylor 11950} 25 May 1983 (KANU); Payne Co., Stillwater, \textit{U. T. Waterfall 10803} 12 Jun 1952 (OKL); Pittsburg Co., \textit{B. Hoagland m9.167} 14 Jun 1999 (OKL); Pushmataha Co., Clayton, \textit{F. H. Means Jr. 3311} 11 May 1968 (OKL); Wagoner Co., \textit{R. Bebb 5427} 1 Jun 1940 (OKL); Wagoner Co., \textit{R. Bebb 3871} 3 May 1939 (OKL); Wagoner Co., \textit{R. Bebb 3869} 3 May 1939 (OKL); Wagoner Co., Wagoner, \textit{R. Bebb 3956} 15 May 1939 (OKL); Washington Co., Copan, \textit{Steve Stephens 76959} 28 May 1974 (KANU). Pennsylvania: Adams Co., Gettysburg Nat.~Mil.~Park, \textit{D. Brunton 10266} 18 May 1991 (MICH); Bedford Co., Breezewood, \textit{D. Berkheimer 8901} 22 Jun 1947 (VPI); Bedford Co., Alum Bank, \textit{D. Berkheimer 3177} 19 Jun 1942 (MICH); Berks Co., Morgantown, \textit{W. C. Brumbach 5457} 24 Jun 1966 (MSC); Bucks Co., Upper Black Eddy, \textit{R. Hine s.n.} 15 Jul 1925 (WV); Bucks Co., Beaver Creek, \textit{F. J. Hermann 4285} 4 Jun 1933 (NCU); Bucks Co., Tinicum Creek, \textit{F. J. Hermann 3438} 12 Jul 1932 (MICH); Butler Co., Moraine SP, \textit{J. K. Bissell 1995:049} 14 Jun 1995 (MICH); Centre Co., Coburn, \textit{H. A. Wahl 2589} 17 Jun 1938 (NCU); Centre Co., Potter's Mills, \textit{H. A. Wahl 1006} 16 Jun 1941 (NEB); Chester Co., Nottingham Barrens, \textit{F. W. Pennell 3694} 22 Jun 1912 (NEB); Chester Co., Phoenixville, \textit{H. A. Stone s.n.} 5 Jun 1927 (GH); Lehigh Co., Powder Valley, \textit{H. W. Pretz 8149} 11 Jun 1916 (MSC); Montgomery Co., Frederick, \textit{E. T. Wherry s.n.} 21 Jun 1958 (VPI); Montgomery Co., Baederwood District, Abington Township, \textit{J. Bright 19833} 30 May 1945 (WV); Northampton Co., Wydnor, \textit{R. L. Schaeffer 13866} 9 Jul 1941 (GH). South Carolina: Oconee Co., Sumter National Forest, \textit{A. A. Reznicek 8983} 23 May 1992 (MICH); Oconee Co., Walhalla, \textit{A. A. Reznicek 8983} 23 May 1992 (TAES). Tennessee: Cumberland Co., Rockwood Airport, \textit{V. E. McNeilus 94-161} 13 May 1994 (MSC); Cumberland Co., Rockwood Airport, \textit{V. E. McNeilus 94-154} 13 May 1994 (MICH); Knox Co., Powell Station, \textit{K. Rogers 41123} 28 May 1966 (NCU); Rutherford Co., La Vergne, \textit{E. Quarterman 2032} 11 May 1947 (KANU). Texas: Brazos Co., \textit{J. S. Carter 15} 7 Apr 1997 (TAES); Brazos Co., \textit{H. Ness s.n.} 10 Apr 1901 (TAES); Brazos Co., \textit{S. D. Jones 1106} 3 Apr 1988 (TAES); Brazos Co., College Station, \textit{L. E. Brown 566} 9 May 1966 (WV); Brazos Co., Bryan, \textit{S. D. Jones 4089} 24 Mar 1990 (MICH); Brazos Co., Bryan, \textit{O. Brown 67} 7 Apr 1967 (TAES); Brazos Co., Bryan-College station, \textit{D. McCasland 44} 11 Apr 1995 (TAES); Brazos Co., College, \textit{H. Jennings s.n.} 8 Apr 1890 (MICH); Brazos Co., College Station, \textit{S. D. Jones 2407} 7 Apr 1989 (TAES); Brazos Co., College Station, \textit{M. Eaglesham 020} 27 Mar 1986 (TAMU); Brazos Co., College Station, \textit{G. A. Engling 317} 22 Apr 1950 (TAMU); Brazos Co., College Station, \textit{F. Gould 12509} 13 May 1968 (TAES); Brazos Co., College Station, \textit{R. Lonard s.n.} 19 Apr 1967 (TAES); Brazos Co., College Station, \textit{J. E. Smith Jr. 297} 17 Apr 1993 (MICH); Brazos Co., College Station, \textit{S. D. Jones 9965} 27 Apr 1993 (MICH); Brazos Co., College Station, \textit{S. L. Hatch 6220} 27 Apr 1993 (TAES); Brazos Co., College Station, \textit{P. Fryxell 2613} 4 Apr 1976 (MICH); Brazos Co., College Station, \textit{R. Lonard 2278} 15 Apr 1969 (TAES); Brazos Co., North Oakwood, \textit{R. G. Reeves 45} 17 Apr 1940 (TAES); Brazos Co., Plainsman, \textit{S. D. Jones 1075} 27 Apr 1988 (TAES); Burleson Co., Clay, \textit{G. Ajilvsgi 8379} 14 Apr 1983 (TAMU); Burleson Co., Snook, \textit{J. Bridgforth 67} 7 Apr 2001 (TAMU); Burleson Co., Somerville, \textit{J. Bridgforth 66} 7 Apr 2001 (TAMU); Colorado Co., Sealy, \textit{S. L. Orzell 13166} 21 Apr 1990 (MICH); Dallas Co., Dallas, \textit{E. S. Nixon 1327} 26 Apr 1969 (TAES); Dallas Co., Seagoville, \textit{C. L. Lundell 10631} 16 May 1941 (MICH); Franklin Co., Mt. Vernon, \textit{S. D. Jones 2853} 15 May 1989 (TAES); Grayson Co., Denison, \textit{R. Bebb 2702} 12 May 1905 (OKL); Grimes Co., Carlos, \textit{S. D. Jones 2503} 21 Apr 1989 (MICH); Grimes Co., Navasota, \textit{L. C. Higgins 3939} 31 Mar 1971 (MICH); Jasper Co., Angelina NF, \textit{S. L. Orzell 6309} 15 Apr 1988 (MICH); Madison Co., FM 247, \textit{A. K. Neill 2629} 17 May 1999 (TAMU); Madison Co., Navasota River, \textit{A. K. Neill 407} 29 Mar 1997 (TAMU); Madison Co., Madisonville, \textit{F. Gould 8562} 10 Apr 1959 (TAES); Newton Co., \textit{J. Kessler 6275} 23 Jun 1982 (TAES); Red River Co., FR 2825, \textit{S. D. Jones 2872} 15 May 1989 (TAES); Red River Co., Hwy 37, \textit{S. D. Jones 2872} 15 May 1989 (MICH); Robertson Co., Easterly, \textit{S. D. Jones 6335} 10 Apr 1991 (MICH); Robertson Co., Benchley, \textit{T. Hightower 115} 21 Apr 1983 (TAMU); Robertson Co., Benchley, \textit{T. Hightower 120} 21 Apr 1983 (TAMU); Robertson Co., Benchley, \textit{J. E. Wood 263} 2 Apr 1950 (TAMU); Robertson Co., Hearne, \textit{S. D. Jones 8275} 18 Apr 1992 (MICH); Robertson Co., New Baden, \textit{T. Starbuck 1717} 16 Apr 1982 (TAES); Robertson Co., Wheelock, \textit{T. Starbuck 1757} 18 Apr 1982 (TAMU); San Jacinto Co., Big Creek, \textit{J. Kessler 2872} 1 Apr 1979 (TAES); San Jacinto Co., Sam Houston NF, \textit{J. Kessler 3347} 28 Apr 1979 (TAES); Trinity Co., Applesprings, \textit{E. S. Nixon 17440} 17 Apr 1990 (TAES); Van Zandt Co., Ben Wheeler, \textit{D. S. Correll 16207} 3 May 1957 (NCU); Walker Co., Huntsville, \textit{H. B. Parks 7823} 11 May 1934 (TAES); Walker Co., Pontsville, \textit{S. E. Wolff 4966} 12 Apr 1934 (TAES); Walker Co., Riverside, \textit{S. Orzell 6472} 21 Apr 1988 (MICH); Waller Co., Waller, \textit{S. D. Jones 2414} 15 Apr 1989 (TAES); Washington Co., Peaceable Kingdom, \textit{J. Kessler 5513} 13 Apr 1982 (TAES). Virginia: Fairfax Co., Gainesville, \textit{F. R. Fosberg 54197} 28 May 1972 (VPI); Fauquier Co., Marshall, \textit{G. P. Fleming 1715} 4 Jun 1985 (VPI); Fauquier Co., The Plains, \textit{G. P. Fleming 3080} 28 May 1988 (VPI); Fauquier Co., Archwood Meadow, \textit{J. B. Nelson 13188} 8 Jul 1992 (MICH); Fauquier Co., Buck Mt., \textit{H. A. Allard 3063} 20 Jun 1937 (VPI); Fauquier Co., Western slope of Bull Run Mts., \textit{H. A. Allard 4916} 5 Jun 1938 (VPI); Montgomery Co., Blacksburg, \textit{T. F. Wieboldt 5075} 6 Jun 1984 (VPI); Montgomery Co., Pilot, \textit{D. W. Ogle 4720} 22 Jun 1981 (VPI); Prince William Co., SW of Nokesville, \textit{G. P. Fleming 6618} 10 Jun 1992 (VPI); Prince William Co., Manassas National Battlefield Park, \textit{G. P. Fleming 13101} 27 May 1997 (VPI); Washington Co., Cedarville, \textit{D. W. Ogle 1395} 18 May 1975 (VPI). West Virginia: Doddridge Co., Morgans Run Road, \textit{W. N. Grafton s.n.} 26 May 2005 (WV); Grant Co., Cabins, \textit{H. A. Davis 4385} 25 Jun 1941 (WV); Grant Co., Petersburg, \textit{J. F. Clovis 1961} 30 May 1973 (WV); Hardy Co., South Branch WMA, \textit{W. N. Grafton s.n.} 25 May 2005 (WV); Lewis Co., Jacksonville, \textit{W. N. Grafton s.n.} 6 Jun 1980 (WV); Monongalia Co., Crooked Run, \textit{J. L. Dawson 21342} 5 Jun 1979 (WV). Wisconsin: Iowa Co., Barneveld, \textit{E. H. Zimmerman 307} 18 Jul 1996 (MICH); \textbf{\textsc{Carex caroliniana}} U. S. A. Alabama: Maddison Co., Ardmore, \textit{R. Kral 84668} 19 May 1995 (MICH); Morgan Co., Decatur, \textit{D. Isley 3391} 25 May 1944 (MSC); Morgan Co., Florette, \textit{R. Naczi 1084} 9 May 1986 (MICH); Pickens Co., Pickensville, \textit{C. T. Bryson 3164} 16 May 1981 (GA); Pickens Co., Reform, \textit{R. Kral 55516} 19 May 1975 (MICH). Arkansas: Stuttgart Co., Stuttgart, \textit{Phillip E. Hyatt 7301} 5 Apr 1997 (MICH); Bradley Co., Warren, \textit{C. T. Bryson 4262} 9 May 1986 (MICH); Chicot Co., Eudora, \textit{R. D. Thomas 128214} 30 Apr 1992 (USCH); Chicot Co., Eudora, \textit{C. T. Bryson 11503} 30 Apr 1992 (CLEMS); Clark Co., Whelen Springs, \textit{Phillip E. Hyatt 8498} 1 May 1999 (MICH); Clay Co., Pollard, \textit{Phillip E. Hyatt 4377.11} 22 May 1992 (MICH); Cleveland Co., Fordyce, \textit{S. D. Jones 8490} 14 May 1992 (MICH); Columbia Co., Plainfield, \textit{Phillip E. Hyatt 8550} 8 May 1999 (MICH); Dallas Co., Saline River, \textit{Phillip E. Hyatt 6514} 28 May 1995 (MICH); Faulkner Co., \textit{Phillip E. Hyatt 6476} 28 May 1995 (MICH); Grant Co., U. S. Hwy 167, \textit{Phillip E. Hyatt 6497} 28 May 1995 (MICH); Greene Co., Halliday, \textit{Phillip E. Hyatt 5946} 9 May 1994 (MICH); Hempstead Co., Fulton, \textit{S. D. Jones 2580} 28 Apr 1989 (MICH); Independence Co., Newark, \textit{Phillip E. Hyatt 5563} 29 May 1993 (MICH); Jefferson Co., Pine Bluff, \textit{Phillip E. Hyatt 7293} 5 Apr 1997 (MICH); Lafayette Co., Ark Hwy 29, \textit{Phillip E. Hyatt 6362} 6 May 1995 (MICH); Lawrence Co., Hoxie, \textit{Larry J. Harms 2231} 2 May 1965 (KANU); Lonoke Co., Kerr, \textit{A. A. Reznicek 9277} 17 May 1993 (MICH); Miller Co., Texarkana, \textit{B. F. Bush s.n.} 28 Apr 1905 (WV); Monroe Co., Blackton, \textit{Phillip E. Hyatt 7135} 24 May 1996 (MICH); Nevada Co., Reader, \textit{Phillip E. Hyatt 8484} 1 May 1999 (MICH); Ouachita Co., Ouachita River, \textit{Phillip E. Hyatt 8531} 1 May 1999 (MICH); Perry Co., South Fourche Recreation Area, \textit{Phillip E. Hyatt 8041} 3 May 1998 (MICH); Phillips Co., Marvell, \textit{Larry J. Harms 2243} 3 May 1965 (KANU); Sevier Co., DeQueen, \textit{Phillip E. Hyatt 6317} 23 Apr 1995 (MICH); Union Co., El Dorado, ca 1 mi N, \textit{Andrew Grammer s.n.} 30 Apr 2001 (KANU); Union Co., Louisiana Border, \textit{Phillip E. Hyatt 6404} 13 May 1995 (MICH); White Co., Henry Gray WMA, \textit{Phillip E. Hyatt 5993} 11 May 1994 (MICH); Woodruff Co., Gray's vicinity, \textit{Phillip E. Hyatt 7104} 24 May 1996 (MICH); Woodruff Co., McCrory, \textit{Phillip E. Hyatt 7096} 24 May 1996 (MICH); Yell Co., Rover, \textit{Phillip E. Hyatt 8072} 3 May 1998 (MICH); Yell Co., Plainview, \textit{D. Demaree 52414} 24 May 1965 (NCU). Delaware: Wilmington, \textit{Anonymous} 1897 (NCU); New Castle, Talleyville, \textit{R. Naczi 2564} 12 Jun 1990 (MICH). District of Columbia: Along Potomac River, \textit{C. Lea 1691} 27 May 2000 (MARY); Along Potomac River, \textit{C. Lea 1693} 27 May 2000 (TAWES). Florida: Jackson Co., Buena Vista Landing, \textit{A. K. Gholson Jr. 11295} 23 Apr 1985 (MICH). Georgia: Baker Co., Jones Ecological Research Center, Flora of Ichauway, \textit{L. K. Kirkman 3246} 25 Mar 1994 (GA); Baker Co., SW of Newton, \textit{L. C. Anderson 16420} 18 May 1996 (GA); Clarke Co., Athens, \textit{J. R. Manhart 31} 3 May 1980 (MICH); Elbert Co., McCalla Island, \textit{W. C. Credle 2812} 29 Apr 1980 (CLEMS); Elbert Co., Savannah River Project, \textit{W. C. Credle 2871} 2 Jun 1980 (CLEMS); Gordon Co., New Echota State Historic Site, \textit{C. H. Gomez 2351} 5 May 2000 (GA); Greene Co., Apalachee River, \textit{J. E. Seward 1132} 9 May 1992 (GA); Hart Co., Savannah River, \textit{J. R. Manhart 303} 23 May 1981 (MICH); McDuffie Co., Thompson, \textit{Phillip E. Hyatt 10171} 28 Apr 2001 (MICH); Montgomery Co., Mount Vernon, \textit{R. Naczi 5248} 5 May 1996 (MICH); Wilcox Co., Oscewichee Spring, \textit{W. K. George s.n.} 22 Apr 1989 (MICH); Wilkes Co., Tignal, \textit{C. H. Fitzgerald 269} 24 May 1970 (GA). Illinois: Alexander Co., Tamms, \textit{S. R. Hill 31849} 23 Jun 1999 (MICH); Clinton Co., Eldon Hazlett SP, \textit{A. Brant 1802} 3 Jun 1988 (MO); Jackson Co., Murphysboro, \textit{S. R. Hill 30252} 19 May 1998 (MICH); Johnson Co., Bell Pond Natural Area, \textit{L. R. Phillippe 13956} 22 May 1990 (MICH); Lawrence Co., Lawrenceville, \textit{N. C. Henderson 72-11} 3 Jun 1972 (MO); Saline Co., Harrisburg, \textit{S. Hill 26426} 4 May 1995 (TAES); Saline Co., Shawnee NF, \textit{Phillip E. Hyatt 4354} 20 May 1992 (MICH). Indiana: Crawford Co., Leavenworth, \textit{F. J. Hermann 6687} 16 Jun 1935 (MICH); Gibson Co., Petoka, \textit{C. C. Deam 13313} 9 Jun 1913 (WV); Jefferson Co., Chelsea, \textit{E. Banta 7} 19 Jun 1935 (MICH); Lawrence Co., Springville, \textit{R. M. Kriebel 1792} 6 Jun 1934 (MICH); Sullivan Co., Oaktown, \textit{A. A. Reznicek 10846} 8 Jun 1999 (MICH). Kansas: Cherokee Co., Baxter Springs, \textit{Ronald L. McGregor 36189} 16 May 1985 (KANU); Cherokee Co., Baxter Springs, \textit{Ronald L. McGregor 40314} 1 May 1991 (KANU); Cherokee Co., Chetopa, \textit{Ole A. Kolstad 2233} 3 Jun 1964 (KANU); Cherokee Co., \textit{Ronald L. McGregor 38796} 5 May 1988 (KANU); Linn Co., Marais De Cygne Wildlife Refuge, \textit{Ole A. Kolstad 2313} 10 Jun 1964 (KANU); Linn Co., Trading Post, \textit{Caleb A. Morse 10475} 20 May 2004 (KANU); Linn Co., Trading Post, \textit{Caleb A. Morse 10413} 14 May 2004 (KANU); Neosho Co., St. Paul, \textit{W. W. Holland 5467} 25 May 1986 (KANU); Neosho Co., St. Paul, \textit{Ralph Brooks 5582} 17 May 1974 (KANU); Neosho Co., St. Paul, \textit{W. W. Holland 418} 24 May 1964 (KANU). Kentucky: Caldwell Co., Dawson Springs, \textit{L. E. McKinney 5060} 28 May 1998 (EKY); Calloway Co., Backusburg, \textit{R. Athey 5098} 27 May 1985 (EKY); Campbell Co., Silver Grove, \textit{A. A. Reznicek 9988} 27 May 1995 (MICH); Campbell Co., Silver Grove, \textit{G. F. Buddell II s.n. 31 May 1980} (NCU); Christian Co., Patton Road, \textit{L. E. McKinney 5457} 18 May 1993 (MICH); Fleming Co., Plummers Landing, \textit{R. Hannan 6645} 29 May 1981 (EKY); Franklin Co., Twilight Dr. Swamp Twilight Dr. Swamp, wet meadow. \textit{S. Rice s.n.} 9 Jul 1984 (EKY); Hardin Co., Rolling Fork River, \textit{R. Cranfill 780} 30 May 1978 (MICH); Hickman Co., Murphy's Pond, \textit{J. T. Grubbs 143} 12 May 1987 (NYS); Jefferson Co., Louisville, \textit{M. E. Wharton 44598} 20 Jun 1939 (MICH); Knox Co., Gray, \textit{L. E. McKinney 5386} 10 May 1993 (MICH); Laurel Co., Charlie Cheeks Swamp, \textit{R. Jones 6357} 16 Jun 1990 (EKY); Lincoln Co., Green River, \textit{B. Hoagland s.n.} 13 Jun 1988 (EKY); Lyon Co., SR 274, \textit{L. E. McKinney 4972} 5 May 1992 (EKY); Madison Co., Muddy Creek, \textit{G. W. Libby OB-332} 31 May 1993 (EKY); Madison Co., Richmond, \textit{G. W. Libby GB-332} 31 May 1993 (MICH); Menifee Co., Rt. 460, \textit{C. Hanley 14} 29 Jun 1988 (EKY); Powell Co., Clay City Swamps, \textit{J. MacGregor s.n.} 2 Jun 1974 (EKY); Trigg Co., Barkley Lake SP, \textit{L. E. McKinney 4985} 4 May 1992 (EKY). Louisiana: Catahoula Co., Rosefield, \textit{R. D. Thomas 2849} 8 Apr 1967 (NCU); Franklin Co., , \textit{R. D. Thomas 2258} 6 Apr 1967 (NCU); Grant Co., Catahoula Ranger Dist., Baghdad, \textit{Phillip E. Hyatt 7399} 7 May 1997 (MICH); Grant Co., Catahoula Ranger District of Kisatchie NF, Iatt Creek, \textit{Phillip E. Hyatt 6960} 18 Apr 1996 (MICH); Grant Co., Packton, \textit{Phillip E. Hyatt 10215} 2 May 2001 (MICH); Natchitoches Co., Kisatchie NF, \textit{Phillip E. Hyatt 8106} 6 May 1998 (MICH); Ouachita Co., Monroe, \textit{R. D. Thomas 99598} 20 May 1987 (TAES); Ouachita Co., Monroe, \textit{R. Kral 8421} 5 Apr 1959 (NCU); Rapides Co., Alexandria, \textit{Phillip E. Hyatt 7385} 7 May 1997 (MICH); Vernon Co., Leesville, \textit{Cooley 3873} 27 Apr 1955 (NCU); Webster Co., Shreveport, \textit{Larry J. Harms 2288} 4 May 1965 (KANU). Maryland: Riverdale, \textit{A. Chase 2380} 22 Jun 1904 (OKL); Allegany Co., Sideling Hill Bioreserve, \textit{C. T. Frye 2012} 18 May 1999 (TAWES); Allegany Co., Town creek, \textit{C. T. Frye 2017} 19 May 1999 (TAWES); Charles Co., Pomonkey, \textit{C. Lea 2539} 30 May 2001 (TAWES); Charles Co., Pomonkey, \textit{C. Lea 2055} 16 Jun 2000 (MARY); Montgomery Co., Bear Island, \textit{C. Lea 1581} 14 May 2000 (MARY); Montgomery Co., Great Falls, \textit{J. A. Churchill s.n.} 2 Jun 1967 (MSC). Mississippi: Bolivar Co., Benoit, \textit{C. T. Bryson 10050} 22 May 1990 (TAES); Bolivar Co., Boyle, \textit{C. T. Bryson 5486} 27 Apr 1987 (MICH); Carroll Co., US 82, \textit{C. T. Bryson 13418} 25 Apr 1994 (MICH); Choctaw Co., French Camp, \textit{C. T. Bryson 13753} 20 May 1994 (MICH); Clay Co., \textit{R. Webster 1527} 18 May 1978 (TAES); Clay Co., West Point, \textit{C. T. Bryson 3314} 18 May 1982 (MICH); Coahoma Co., Tutwiler, \textit{C. T. Bryson 7475} 4 May 1988 (MICH); Grenada Co., Hunt Lake, \textit{C. T. Bryson 15189} 20 May 1996 (MICH); Holmes Co., Coxburg, \textit{C. T. Bryson 11235} 14 Apr 1992 (TAES); Holmes Co., Tchula, \textit{C. T. Bryson 8945} 2 May 1990 (TAES); Holmes Co., Tchula, \textit{C. T. Bryson 8936} 2 May 1990 (MICH); Humphreys Co., Belzoni, \textit{C. T. Bryson 8956} 2 May 1990 (TAES); Issaquena Co., Mayersville, \textit{C. T. Bryson 15159} 15 May 1996 (MICH); Kemper Co., Wahalak Creek, \textit{C. T. Bryson 8573} 15 May 1989 (MICH); Leake Co., Thomastown, \textit{C. T. Bryson 13776} 20 May 1994 (MICH); Leflore Co., Yazoo River Run, \textit{C. T. Bryson 3752} 27 Apr 1985 (MICH); LeFlore Co., Grenwood, \textit{C. T. Bryson 13399} 23 Apr 1994 (MICH); Leflore Co., Minter, \textit{C. T. Bryson 7258} 21 Apr 1988 (MICH); LeFlore Co., Minter, \textit{C. T. Bryson 7256} 21 Apr 1988 (MICH); Lowndes Co., Mayhew, \textit{C. T. Bryson 3286} 10 May 1982 (MICH); Newton Co., Newton, \textit{C. T. Bryson 3257} 8 May 1982 (MICH); Newton Co., Newton, \textit{C. T. Bryson 8842} 13 Apr 1990 (MICH); Oktibbeha Co., Starkville, \textit{C. T. Bryson 3192} 24 Apr 1982 (MICH); Panola Co., Batesville, \textit{C. T. Bryson 7549} 4 May 1988 (MICH); Quitman Co., Marks, \textit{C. T. Bryson 7529} 4 May 1988 (MICH); Sunflower Co., Indianola, \textit{C. T. Bryson 7391} 29 Apr 1988 (MICH); Sunflower Co., Indianola, \textit{C. T. Bryson 7380} 29 Apr 1988 (USCH); Sunflower Co., Ruleville, \textit{C. T. Bryson 11514} 8 May 1992 (CLEMS); Tunica Co., Tunica, \textit{C. T. Bryson 11406} 24 Apr 1992 (CLEMS); Washington Co., Helm, \textit{C. T. Bryson 4232} 22 Apr 1986 (MICH); Washington Co., Helm, \textit{C. T. Bryson 3611} 24 Apr 1984 (MICH); Washington Co., Hollandale, \textit{C. T. Bryson 3471} 1 May 1983 (MICH); Washington Co., Leroy Percy SP, \textit{C. T. Bryson 19169} 29 Apr 2002 (USCH); Washington Co., Stoneville, \textit{C. T. Bryson 3465} 24 Apr 1983 (MICH); Webster Co., Cumberland, \textit{C. T. Bryson 3772} 27 Apr 1985 (MICH). Missouri: Barton Co., Hwy 126, \textit{D. Castaner 7411} 25 May 1983 (MICH); Barton Co., Nashville, \textit{E. J. Palmer 53843} 20 May 1952 (NCU); Bollinger Co., Castor River Conservation Area, \textit{A. E. Brant 4233} 18 May 1999 (MO); Bollinger Co., Dongola, \textit{B. Jacobs 00-30} 8 Jun 2000 (MO); Jasper Co., \textit{D. Castaner 7422} 25 May 1983 (MICH); Jasper Co., Jasper, \textit{J. F. Breuckle 40-103} 27 May 1940 (OKL); New Madrid, East Prairie, \textit{S. D. Jones 8612} 18 May 1992 (MICH); Reynolds Co., Johnson Shut-Ins SP, \textit{P. M. McKenzie 2009} 13 May 2002 (MO); St. Louis, St. Louis, \textit{H. Eggert s.n.} 10 Jun 1887 (MICH); Stoddard Co., Dudley, \textit{R. Naczi 1275} 23 May 1986 (MICH); Stoddard Co., Otter Slough Conservation Area, \textit{A. E. Brant 4390} 31 May 2000 (MO); Vernon Co., Washington Township, \textit{D. Castaner 6827} 19 May 1982 (TAES). New Jersey: Burlington Co., Delaware River, \textit{F. J. Hermann 4248} 1 Jun 1933 (MICH); Burlington Co., Riverton, \textit{F. J. Hermann 4248} 1 Jun 1933 (OKL); Gloucester Co., Repaupo, \textit{F. J. Hermann 4435} 16 Jun 1933 (OKL); North Carolina: Anson Co., Lilesville, \textit{A. E. Radford 43629} 20 May 1961 (NCU); Bladen Co., Elizabethtown, \textit{A. E. Radford 4089} 20 May 1949 (NCU); Chatham Co., Old Mill site above Mason Place, \textit{Anonymous} 28 Apr 1957 (NCU); Chatham Co., Mt. Carmel, \textit{A. E. Radford 4061} 7 May 1949 (NCU); Chatham Co., Farrington, \textit{A. E. Radford 42709} 31 May 1959 (NCU); Chatham Co., Seaforth, \textit{A. E. Radford 43794} 31 May 1961 (NCU); Davidson Co., Beaverdam Creek headwaters, \textit{P. D. McMillan 2944} 7 May 1998 (CLEMS); Davidson Co., Denton, \textit{A. E. Radford 12851} 16 Jun 1956 (NCU); Durham Co., Bland, \textit{A. E. Radford 43113} 31 May 1960 (NCU); Durham Co., Duke Forest, \textit{M. Palmer 1130} 26 May 1987 (MICH); Durham Co., Durham, \textit{R. K. Godfrey 3835} 4 May 1938 (NCU); Durham Co., Morrisville, \textit{R. K. Godfrey 3645} 21 Apr 1938 (NCU); Durham Co., Orange County Line, \textit{S. W. Leonard 1480} 23 May 1968 (NCU); Forsyth Co., Stanleyville, \textit{H. E. Ahles 40856} 17 May 1958 (NCU); Granville Co., Creedmor, \textit{A. E. Radford 43920} 16 Jun 1961 (NCU); Guilford Co., Rockingham-Guilford line, \textit{L. Melvin 3471} 24 May 1956 (NCU); Johnston Co., Clayton, \textit{A. E. Radford 21673} 29 Apr 1957 (NCU); Johnston Co., Smithfield, \textit{A. E. Radford 4035} 30 Apr 1949 (NCU); Lee Co., Lockville Dam, \textit{L. S. Beard 380} 25 Apr 1955 (NCU); Moore Co., Glendon, \textit{A. E. Radford 43376} 11 Jun 1960 (NCU); Person Co., McGhees Mill, \textit{A. E. Radford 43164} 2 Jun 1960 (NCU); Randolph Co., Farmer, \textit{A. E. Radford 43006} 24 May 1960 (NCU); Richmond Co., Ellerbe, \textit{A. E. Radford 11488} 19 May 1956 (NCU); Rockingham Co., Foushee, \textit{A. E. Radford 43832} 8 Jun 1961 (NCU); Rowan Co., E. Spencer, \textit{A. E. Radford 11538} 26 May 1956 (NCU); Stanly Co., Albermarle, \textit{A. E. Radford 10594} 4 May 1956 (NCU); Wake Co., Rolesville, \textit{A. E. Radford 42944} 22 May 1960 (NCU); Warren Co., Elberon, \textit{A. E. Radford 43754} 29 May 1961 (NCU). Ohio: Scioto Co., Green Township, \textit{A. Cusick 21546} 12 May 1982 (MICH); Summit Co., Twinsburg, \textit{G. Wilder 9728} 9 Jun 1998 (MICH); Tuscarawas Co., New Philadelphia, \textit{A. W. Cusick 10885} 13 Jun 1970 (NCU). Oklahoma: Bryan Co., Oberlin, \textit{J. Taylor 1389B} 16 Apr 1963 (OKL); Creek Co., Keystone WMA, \textit{B. Hoagland KEY-074} 15 May 2002 (OKL); McCurtain Co., Red Slough WMA, \textit{B. Hoagland RSGS074} 12 Apr 1999 (OKL); McCurtain Co., Tom, \textit{U. T. Waterfall 11338} 18 Apr 1953 (OKL); Okfuskee Co., Deep Fork WMA, \textit{D. Benesh DFX096} 1 May 1998 (OKL); Okmulgee Co., Eufaula WMA, \textit{B. Hoagland DF0051} 23 May 1996 (OKL). Pennsylvania: South Philadelphis, \textit{A. MacElwee 1748} 19 Jun 1900 (NCU); Bedford Co., Ryot, \textit{D. Berkheimer 3210} 19 Jun 1942 (GH); Bedford Co., Bedford, \textit{S. P. Grund 1905} 11 Jun 1997 (USCH); Berks Co., French Creek SP, \textit{L. A. Standley 1502} 20 Jun 1987 (MICH); Bucks Co., Bristol, \textit{R. R. Dreisbach 2170} 7 Jun 1924 (MICH); Fulton Co., Harrisonville, \textit{H. A. Wahl 2019} 1 Jun 1947 (GH); Fulton Co., Warfordsburg, \textit{J. A. Churchill s.n.} 13 Jun 1966 (MSC); Perry Co., Liverpool, \textit{J. M. Fogg Jr. 15839} 20 Jun 1939 (GH); Philadelphia Co., Cobb's Creek, \textit{F. J. Hermann 3079} 28 May 1932 (MICH); York Co., McCalls Ferry, \textit{Joseph Crawford s.n.} 1 Jul 1904 (KANU). South Carolina: Abbeville Co., Calhoun Falls, \textit{A. E. Radford 22722} 13 May 1957 (NCU); Abbeville Co., Savannah River Project, \textit{M. G. Douglass 1449} 7 Jun 1978 (CLEMS); Anderson Co., Fair Play, \textit{H. E. Ahles 13428} 31 May 1956 (NCU); Barnwell Co., Savannah River Operations Area, \textit{W. T. Batson s.n.} 4 May 1953 (NCU); Berkeley Co., Cross, \textit{W. T. Batson s.n.} 30 Apr 1956 (USCH); Berkeley Co., Mulberry Plantation, \textit{P. D. McMillan 5188} 2 Jun 2001 (CLEMS); Berkeley Co., Cross, \textit{W. T. Batson 1244} 8 Apr 1956 (USCH); Berkeley Co., Berekeley Country Club, \textit{P. D. McMillan 5183} 2 Jun 2001 (CLEMS); Berkeley Co., Lewisfield Plantation, \textit{P. D. McMillan 5041} 29 Apr 2001 (CLEMS); Chesterfield Co., Cheraw, \textit{A. E. Radford 12239} 5 Jun 1956 (NCU); Edgefield Co., Sumter NF, Forks Analysis Area, \textit{J. B. Nelson 17160} 25 Apr 1996 (USCH); Fairfield Co., Winnsboro, \textit{C. N. Horn 8002} 21 May 1994 (MICH); Fairfield Co., Winnsboro, \textit{C. N. Horn 7960} 6 May 1994 (MICH); Greenwood Co., Gaines, \textit{J. B. Nelson 22543} 26 Apr 2002 (USCH); Greenwood Co., Gaines, \textit{J. B. Nelson 22543} 26 Apr 2002 (USCH); Hampton Co., Belmont Plantation, \textit{R. D. Porcher Jr. 289} 5 Sep 1971 (USCH); Jasper Co., Tillman, \textit{A. E. Radford 44530} 20 Apr 1962 (NCU); Lexington Co., Old Saluda Mill Site, \textit{J. B. Nelson 14054} 7 May 1993 (USCH); Newberry Co., Maybinton, \textit{J. B. Nelson 20368} 23 Apr 1999 (USCH); Oconee Co., Lake Hartwell, \textit{L. L. Gaddy s.n.} 28 May 1986 (CLEMS); Orangeburg Co., Santee Cooper Widlife Management Area, \textit{A. B. Pittman 04270102} 27 Apr 2001 (USCH); Pickens Co., Jocassee Gorges, \textit{P. D. McMillan 6329} 5 May 2002 (CLEMS); Pickens Co., Pendleton, \textit{J. F. Townsend 1501} 20 May 1997 (CLEMS); Sumter Co., Sumter, \textit{A. E. Radford 23803} 4 Jun 1957 (NCU). Tennessee: Blount Co., Great Smoky Mountain NP, Abram's Creek, \textit{V. E. McNeilus 89-339} 3 Jun 1989 (MSC); Coffee Co., Arnold Center, \textit{R. Kral 55318} 9 May 1975 (MICH); Coffee Co., Arnold Village, \textit{K. E. Rogers 44784} 18 May 1966 (NCU); Coffee Co., Double Pond, \textit{V. E. McNeilus 92-408} 1 Jun 1992 (MICH); Coffee Co., Manchester, \textit{K. E. Rogers 44752} 18 May 1966 (NCU); Dickson Co., White Bluff, \textit{R. Kral 55411} 13 May 1975 (MICH); Hamilton Co., Chicamauga Creek, \textit{V. E. McNeilus 91-292} 23 May 1991 (MICH); Tipton Co., Hatchie River, \textit{L. E. McKinney 2493} 8 May 1987 (MICH). Texas: Mineola, \textit{J. Reverchon 2451} 24 Apr 1907 (WV); Angelina Co., Angelina River, \textit{E. S. Nixon 17479} 12 Apr 1990 (TAES); Bowie Co., Texarkana Lake, \textit{Larry J. Harms 2319} 4 May 1965 (KANU); Brazos Co., College Station, \textit{W. S. Jennings 259} 11 Apr 1949 (TAMU); Brazos Co., College Station, \textit{S. D. Jones 6351} 11 Apr 1991 (MICH); Brazos Co., College Station, \textit{E. L. Usrey 57} 30 Mar 1950 (TAES); Burleson Co., Davidson Creek, \textit{S. D. Jones 1199} 29 Apr 1988 (TAES); Galveston Co., Dickinson, \textit{F. R. Waller 3611} 5 May 1975 (TAES); Galveston Co., League City, \textit{F. R. Waller 3443} 31 Mar 1975 (TAES); Gregg Co., Longview, \textit{R. R. Haynes 4779} 24 Apr 1975 (NCU); Grimes Co., Hwy 105, \textit{J. Kessler 4250} 28 Apr 1980 (TAES); Harris Co., Langham Creek, \textit{L. E. Brown 21914b} 21 Mar 1998 (TAES); Harris Co., Nimitz High School, \textit{J. Kessler 2885} 5 Apr 1979 (TAMU); Harris Co., Tomball, \textit{L. Brown 15889} 29 Mar 1992 (TAES); Harris Co., Tomball, \textit{S. D. Jones 2523} 15 Apr 1989 (OKL); Houston Co., Davy Crocket NF, Neches Bluff Overlook, \textit{S. L. Orzell 6420} 20 Apr 1988 (MICH); Jasper Co., Angelina NF, Bouton Lake, \textit{S. L. Orzell 5078} 18 Apr 1987 (MICH); Jefferson Co., Beaumont, \textit{C. L. Lundell 11238} 16 Apr 1942 (MICH); Jefferson Co., Voth, \textit{S. L. Orzell 8968} 4 Apr 1989 (MICH); Leon Co., Keechi Creek WMA, \textit{A.Neill 3021} 21 Apr 2000 (TAMU); Liberty Co., Trinity River, \textit{E. S. Nixon 4259} 28 Apr 1972 (NCU); Madison Co., Navasota River, \textit{A. K. Neill 1337} 2 Apr 1998 (TAMU); Robertson Co., Ridge, \textit{T. Starbuck 1849} 27 Apr 1982 (TAMU); Robertson Co., Ridge, \textit{T. Starbuck 1854} 27 Apr 1982 (TAMU). Virginia: Arlington Co., 4 Mile Run Area, \textit{E. H. Walker 728} 1 Jun 1930 (MARY); Bath Co., Nimrod Hall, \textit{G. P. Fleming 13393} 25 Jun 1997 (VPI); Culpeper Co.,Culpeper, \textit{G. P. Fleming 4014} 27 May 1989 (VPI); Cumberland Co., 14 mi NE of Farmville (Prince Edward Co.), \textit{T. F. Wieboldt 5509} 17 May 1985 (VPI); Fairfax Co., Pleasant Valley Rd, \textit{T. Bradley 23205} 14 May 1990 (CLEMS); Fairfax Co., Elklick Run, \textit{T. Bradley s.n.} 23 May 1976 (VPI); Greensville Co., Jarratt, \textit{J. C. Ludwig 89039} 30 Apr 1989 (VPI); Hanover Co., Vontay, \textit{J. C. Ludwig 2087} 24 May 1993 (VPI); King George, Chotank Swamp, \textit{ D. M. E. Ware 8259} 18 Jun 1983 (CLEMS); King William, Zoar SF, Aylett, \textit{G. P. Fleming 13093} 23 May 1997 (VPI); Loudoun Co., Broad Run, \textit{H. A. Allard 20315} 1 Jun 1952 (WV); Loudoun Co., Elklick Run, \textit{M. T. Strong 87-097} 14 Jun 1987 (USCH); Lunenburg Co., Lunenburg, \textit{T. F. Wieboldt 5991} 3 Jun 1986 (VPI); Mecklenburg Co., Kerr Reservoir/Bluestone WMA, Clarksville, \textit{G. P. Fleming 13227} 4 Jun 1997 (VPI); Orange Co., Palmyra Church, \textit{T. Bradley 23253} 21 May 1990 (CLEMS); Orange Co., VA 20, \textit{T. Bradley 20453} 21 Jun 1984 (NCU); Powhatan Co., Fine Creek Mill, \textit{C. Corcoran 695} 18 Jun 1976 (NCU); Prince William, Occoquan Bay National Wildlife Refuge, Woodbridge, \textit{M. T. Strong 1602} 30 May 1998 (MICH); Prince William, Camp Upshur, \textit{B. W. Hoagland QUN0366} 18 Jun 1994 (OKL); Prince William County, Combat Village, \textit{M. D. Proctor QUN0255} 18 May 1994 (OKL); Pulaski Co., Pulaski, \textit{T. F. Wieboldt 6347} 29 May 1987 (VPI); Roanoke Co., Wabun, \textit{T. F. Wieboldt 6368} 3 Jun 1987 (VPI). West Virginia: Berkeley Co., Sleepy Creek Lake dam, \textit{W. N. Grafton s.n.} 27 Jun 2004 (WV); Berks Co., Gibraltar, \textit{W. C. Brumbach 3515} 6 Jun 1943 (WV); Mason Co., McClintic WMA, \textit{N. Grafton} 21 Jun 2005 (WV); Raleigh Co., Sandstone Falls SP, \textit{T. F. Wieboldt 5540} 21 May 1985 (VPI); Summers Co., Pipestem SP, \textit{T. F. Wieboldt 6380} 7 Jun 1987 (WV); Tyler Co., Little, \textit{W. N. Grafton s.n.} 1 Jun 1980 (WV); Upshur Co., Buckhannon, \textit{G. B. Rossbach 4620} 30 May 1963 (WV); Wirt Co., Palestine, \textit{E. A. Bartholomew W-4127} 25 Jun 1956 (WV). \textbf{\textsc{Carex complanata}}. Mexico. Chiapas: Jitotol, \textit{P. H. Raven 20059} 25 Jan 1965 (MICH); Colonia el Laurel, \textit{G. Davidse 29623} 13 Nov 1984 (MICH); Jitotol, \textit{W. Anderson 13243} 20 Oct 1983 (MICH); Pueblo Nuevo Solistahuacan, \textit{P. H. Raven 19879} 23 Jan 1965 (MICH); Tenejapa, \textit{D. E. Breedlove 12943} 10 Oct 1965 (MICH); Colinia Ach'lum, \textit{S. Gonzalez 10493} 11 Jul 1997 (MICH); Paraje Matsab, \textit{A. S. Ton 943} 12 May 1966 (MICH); Tenejapa, \textit{S. Gonzalez 10469} 10 Jul 1997 (MICH). Guatemala. Baja Verapaz Co., Sierra de las Minas, \textit{L. O. Williams 43413} 6 Jan 1974 (MICH). U. S. A. Alabama: Bibb Co., Centreville, \textit{C. T. Bryson 8524} 3 May 1988 (MICH); Butler Co., Oaky Streak, \textit{R. Naczi 4691} 17 May 1995 (MICH); Clay Co., Talladega NF, \textit{A. A. Reznicek 7449} 14 May 1985 (MICH); Dallas Co., Selma, \textit{R. Kral 82493} 23 May 1993 (MICH); DeKalb Co., Ft. Payne, \textit{R. Naczi 7267} 25 May 1998 (VPI); Escambie Co., Little Rock, \textit{S. D. Jones 8942} 28 May 1992 (MICH); Marion Co., Hamilton, \textit{C. T. Bryson 7619} 8 May 1988 (TAES); Mobile Co., Mobile Municipal Park, \textit{M. G. Lelong 5698} 12 May 1971 (NCU); Monroe Co., Midway, \textit{R. Naczi 4002} 24 May 1994 (MICH); Montgomery Co., Montgomery, \textit{R. Kral 55858} 24 May 1975 (MICH); Sumter Co., York, \textit{R. Kral 26402} 7 May 1966 (GA); Tuscaloosa Co., Eight-acre Rock, \textit{Roland M Harper 3652} 28 Apr 1938 (KANU); Tuscaloosa Co., Tuscaloosa, \textit{R. McVaugh 8568} 30 May 1947 (MICH). Arkansas: Calhoun Co., Harrell, \textit{R. D. Thomas 133946} 19 May 1993 (MICH); Clark Co., S of Hot Springs Co., \textit{J. Kessler 4390} 25 May 1981 (TAES); Clark Co., Whelen Springs, \textit{Phillip E. Hyatt 8502} 1 May 1999 (MICH); Cleveland Co., Marks Mill Battleground, \textit{C. T. Bryson 4266} 9 May 1986 (MICH); Columbia Co., Bussey, \textit{Phillip E. Hyatt 6378} 6 May 1995 (MICH); Dallas Co., US 167, \textit{Phillip E. Hyatt 6512} 28 May 1995 (MICH); Dallas Co., Fordyce, \textit{L. H. Shinners 19905} 1 May 1955 (NCU); Desha Co., McGhee, \textit{Phillip E. Hyatt 6604} 8 Jun 1995 (MICH); Hot Springs Co., Oak Grove, \textit{Phillip E. Hyatt 10288} 20 May 2001 (MICH); Jefferson Co., Pine Bluff Arsenal, \textit{S. A. Walker 96.20} 30 May 1996 (OKL); Lafayette Co., Hwy 29, \textit{Phillip E. Hyatt 6358} 6 May 1995 (MICH); Lincoln Co., Star City, \textit{Phillip E. Hyatt 7533} 20 May 1997 (MICH); Miller Co., Foulk, \textit{Phillip E. Hyatt 6348} 23 Apr 1995 (MICH); Miller Co., Three States, \textit{Phillip E. Hyatt 8567} 23 May 1999 (MICH); Ouachita Co., Ouachita Co. Rd 67, \textit{Phillip E. Hyatt 6412} 13 May 1995 (MICH); Perry Co., Ozark Highland Trail, \textit{Phillip E. Hyatt 8032} 3 May 1998 (MICH); Perry Co., Alpin, \textit{Phillip E. Hyatt 5434} 18 May 1993 (MICH); Pike Co., Delight, \textit{Phillip E. Hyatt 6280} 22 Apr 1995 (MICH); Polk Co., Rich Mountain, \textit{S. D. Jones 4667} 14 May 1990 (MICH); Pulaski Co., US 65, \textit{C. T. Bryson 12224} 16 May 1993 (MICH); Saline Co., AR 167, \textit{C. T. Bryson 12229} 16 May 1993 (MICH); Saline Co., Ark 367, \textit{Phillip E. Hyatt 6487} 28 May 1995 (MICH); Saline Co., Hensley, \textit{D. Sadler 254} 9 Jun 1990 (OKL); Sevier Co., DeQueen, \textit{Phillip E. Hyatt 7449} 17 May 1997 (MICH); Union Co., Junction City, \textit{Phillip E. Hyatt 6392} 13 May 1995 (MICH); Union Co., Lockhart, \textit{R. D. Thomas 110149} 24 May 1989 (VPI); Yell Co., Aly, \textit{Phillip E. Hyatt 8079} 3 May 1998 (MICH). Delaware: Kent Co., Dinahs Corner, \textit{R. Naczi 9368} 12 Jun 2002 (MICH); New Castle Co., New Castle, \textit{F. J. Hermann 3382} 7 Jul 1932 (MICH). Florida: Calhoun Co., Blountstown, \textit{L. C. Anderson 11929} 9 May 1989 (USCH); Gadsden Co., Tallahassee, \textit{R. K. Godfrey 59523} 17 May 1960 (MSC); Gadsden Co., Tallahassee, \textit{R. K. Godfrey 63568} 28 Apr 1964 (NCU); Jefferson Co., Monticello, \textit{R. Kral 6373} 19 Apr 1958 (NCU); Jefferson Co., Monticello Agricultural Research Center, \textit{J. B. Nelson 2425} 29 Apr 1983 (USCH); Leon Co., Lake Iamonia, \textit{R. K. Godfrey 73490} 4 May 1974 (NCU); Liberty Co., Telogia, \textit{L. C. Anderson 19768} 22 May 2001 (USCH); Tallahassee Co., Tallahassee, \textit{R. K. Godfrey 59523} 17 May 1960 (NCU). Georgia: Baker Co., Ivy Mill Pond, \textit{R. F. Thorne 4048} 20 May 1947 (GA); Baker Co., Jones Ecological Research Center, \textit{L. K. Kirkman 2105} 6 May 1992 (GA); Baldwin Co., GA 49, \textit{D. E. Boufford 18463} 18 May 1976 (NCU); Barton Co., Allatoona, \textit{W. H. Duncan 8310} 13 Jun 1948 (GA); Bartow Co., Adairsville, \textit{W. H. Duncan 12566} 18 Jun 1951 (GA); Bartow Co., Adairsville, \textit{W. H. Duncan 12319} 6 May 1951 (CLEMS); Bartow Co., Adairsville, \textit{W. H. Duncan 12402} 18 May 1951 (MARY); Bartow Co., Big Pelfrey Pond, Cassville Mt., \textit{P. F-C Greear 64294} 1 Jul 1964 (GA); Brooks Co., Quitman, \textit{W. R. Faircloth 4252} 21 Apr 1967 (NCU); Bryan Co., Fort Stewart Military Reservation, \textit{M. O. Moore 1824} 30 Apr 1993 (USCH); Bryan Co., Fort Stewart Military Reservation, \textit{T. M. Zebryk 0358} 10 Jun 1992 (GA); Butts Co., Jackson, \textit{W. J. Crins 9799} 2 May 1994 (MICH); Chatham Co., Port Wentworth, \textit{W. H. Duncan 21030} 15 Jun 1958 (GA); Cook Co., Rt. 37, \textit{V. E. McNeilus 92-289} 22 May 1992 (MICH); Dade Co., Lookout Mt., \textit{A. Cronquist 5411} 27 Jun 1948 (MICH); Decatur Co., Chattahoochee, \textit{S. J. Smith 3096} 14 Apr 1947 (MICH); Decatur Co., Lake Seminole, \textit{J. R. Manhart 402} 13 Mar 1982 (MICH); DeKalb Co., Stone Mt., \textit{J. M. Reade E8053} 25 May 1929 (GA); Early Co., Columbia Dam, \textit{G. E. Gibbs 109} 4 Jun 1970 (GA); Early Co., Gilberts Landing, \textit{G. E. Gibbs 114} 4 Jun 1970 (GA); Emanuel Co., Swainsboro, \textit{G. E. Gibbs 52} 7 May 1970 (GA); Emanuel Co., Oak Park, \textit{D. E. Boufford 20592} 30 Apr 1979 (GA); Floyd Co., Mount Berry, \textit{H. C. Jones s.n.} 2 Jun 1939 (GA); Gwinnett Co., Apalachee River, \textit{J. E. Seward 1197} 23 May 1992 (GA); Harris Co., Flora of Callaway Gardens, \textit{Sweeney 425} 21 Apr 1999 (GA); Harris Co., Pine Mountain, \textit{S. B. Jones 20796} 18 May 1971 (NCU); Heard Co., Franklin, \textit{J. H. Pyron 2832} 30 Apr 1938 (MARY); Jefferson Co., Louisville, \textit{G. E. Gibbs 95} 15 May 1970 (GA); Long Co., Beards Bluff, \textit{J. R. Bozeman 10291} 23 Jun 1967 (NCU); Marion Co., \textit{G. E. Gibbs 117} 4 Jun 1970 (GA); Pike Co., Concord, \textit{A. Cronquist 5232} 21 May 1948 (MICH); Rockdale Co., Conyers, \textit{A. Cronquist 5179} 14 May 1948 (MICH); Rockdale Co., Conyers, \textit{Phillip E. Hyatt 11465} 15 May 2003 (GA); Screven Co., Blackwater Creek, \textit{G. E. Gibbs 6} 21 Apr 1970 (GA); Walker Co., Lafayette, \textit{W. H. Duncan 12634} 20 Jun 1951 (GA); Wilcox Co., Abbeville, \textit{R. L. Lane Jr. 2241} 21 Apr 1968 (GA); Wilcox Co., Abbeville, \textit{R. L. Lane, Jr. 2245} 21 Apr 1968 (GA). Kentucky: Adair Co., Pellyton, \textit{R. Naczi 7446} 18 Jun 1998 (MICH); Laural Co., Lily Surface-Mine Experimental Area, \textit{R. L. Thompson 583} 23 Jun 1981 (BRIT); Laurel Co., Charlie Creek Swamp, \textit{S. Walker 616} 13 Jun 1993 (EKY); Laurel Co., Rock Creek Gorge, \textit{R. L. Thompson 89-1112} 23 Jun 1989 (EKY); Letcher Co., Lilley Cornett Woods Research Station, \textit{J. D. Sole 772} 25 May 1979 (EKY); McCreary Co., Al Nolin Farm, \textit{R. Jones 6467} 22 Jun 1990 (EKY); Montgomery Co., Jeffersonville, \textit{M. E. Wharton 27890} 23 Jun 1938 (MICH); Pulaski Co., Woodstock, \textit{J. R. Abbott 673} 21 Jun 1991 (EKY); Whitley Co., Grove Powerline, \textit{S. Walker 635} 21 Jun 1993 (EKY). Louisiana: Slidell, \textit{K. Rogers 2248} 21 Apr 1969 (NCU); Acadia Co., Midland, \textit{C. M. Allen 14944} 17 Apr 1987 (cb); Bienville Co., Saline, \textit{C. H. Allen s.n.} 14 May 1977 (WV); Caldwell Co., Hwy 165, \textit{J. Kessler 7066} 23 May 1983 (TAES); Caldwell Co., Copenhagen, \textit{S. Hill 29928} 15 Apr 1998 (MICH); Claiborne Co., Kisatchie NF, \textit{Phillip E. Hyatt 8013} 27 Apr 1998 (MICH); Grant Co., Georgetown, \textit{R. D. Thomas 109884} 17 May 1989 (NCU); Grant Co., Packton, \textit{Phillip E. Hyatt 7987} 29 Apr 1998 (MICH); Jefferson Davis Co., Elton, \textit{C. M. Allen 14924} 17 Apr 1987 (cb); Jefferson Davis Co., Panchoville, \textit{J. W. Thieret 30797} 26 Apr 1969 (NCU); LaSalle Co., Chickasaw Creek, \textit{P. Laird 392} 27 Apr 1974 (MICH); Lasalle Co., Olla, \textit{J. Kessler 7063} 23 May 1983 (TAES); Morehouse Co., Perryville, \textit{R. Kral 8653} 24 Apr 1959 (VPI); Morehouse Co., Jones, \textit{R. D. Thomas 128306} 30 Apr 1992 (USCH); Natchitoches Co., Creston, \textit{R. D. Thomas 110531} 30 May 1989 (NCU); Natchitoches Co., Kisatchie Bayou, \textit{Phillip E. Hyatt 10930} 10 May 2002 (MICH); Natchitoches Co., Kisatchie NF, \textit{R. D. Thomas 103896} 19 Apr 1988 (cb); Ouachita Co., Schwartz, \textit{R. Kral 8628} 24 Apr 1959 (VPI); Ouachita Co., Luna, \textit{R. D. Thomas 159189} 30 Apr 1999 (KANU); Ouachita Co., West Monroe, \textit{R. D. Thomas 13708} 16 May 1969 (KANU); Rapides Co., LA 167, \textit{H. H. Iltis 21656} 19 Apr 1963 (NCU); Rapides Co., Alexandria, \textit{C. R. Ball 470} 27 May 1899 (NEB); Rapides Co., Kisatchie, \textit{D. A. Duncan 57026} 11 May 1957 (MICH); Rapides Co., Pineville, \textit{C. T. Bryson 13456} 16 May 1994 (MICH); St. Martin Co., St. Martinville, \textit{J. Hunt 32} 20 Apr 1976 (NCU); St. Tammany Co., Madisonville, \textit{R. D. Thomas 83507} 17 May 1983 (MSC); Tangipahoa Co., Bedico, \textit{R. D. Thomas 83456} 17 May 1983 (MSC); Vernon Co., Fort Polk, \textit{C. Allen 18704} 24 Apr 2002 (USCH); Vernon Co., Fort Polk, \textit{C. Allen 18715} 30 Apr 2002 (USCH); Washington Co., , \textit{C. M. Allen 8280} 13 Jun 1978 (NCU); Washington Co., Franklinton, \textit{K. Rogers 8030} 13 May 1972 (NCU); Washington Co., Sheridan, \textit{K. Rogers 8046} 13 May 1972 (NCU); West Caroll Co., Kilbourne, \textit{C. T. Bryson 11486} 30 Apr 1992 (CLEMS); West Carroll Co., Kilbourne, \textit{R. D. Thomas 128255} 30 Apr 1992 (USCH). Maryland: Calvert Co., Cove Point, \textit{B. Steury 980513.25} 13 May 1998 (MICH); Charles Co., Kerrick Swamp, \textit{M. T. Strong 2730} 24 Jun 2001 (MICH); Charles Co., Zekiah Swamp, \textit{G. Marlowe 791} 18 Jun 1950 (MARY); Lasalle Co., LA 124, \textit{P. Laird 554} 27 May 1974 (MARY); Montgomery Co., Bear Island, \textit{C. Lea 1585} 14 May 2000 (MARY); Prince Georges Co., Cheltenham Wetland Park, \textit{W. D. Longbottom 2106} 3 Jun 1991 (MARY); Prince Georges Co., Beltsville, \textit{B. Swanton 1618} 7 Jul 1939 (MARY); Somerset Co., Town of Princess Anne, \textit{W. D. Longbottom 2998} 27 May 1992 (MARY); St. Mary's Co., Tall Timbers, \textit{J. E. Bennedict Jr. 6254} 13 Jul 1958 (VPI); St. Mary's Co., Tall Timbers, \textit{J. E. Benedict Jr 2803} 3 Jun 1934 (NCU); Talbot Co., Wittman, \textit{C. Lea 1970} 10 Jun 2000 (MARY); Talbot Co., Easton, \textit{E. C. Earle 2513} 2 Jun 1940 (WV); Wicomico Co., Green Hill, \textit{C. Lea 1655} 20 May 2000 (MARY); Worcester Co., Berlin, \textit{C. Lea 1860A} 31 May 2000 (MARY); Worchester Co., Snow Hill, \textit{H. O'Neill 7521} 8 Jun 1931 (MICH). Mississippi: Attala Co., Kosciusko, \textit{C. T. Bryson 8929} 2 May 1990 (MICH); Chickasaw Co., Davis Lake, \textit{C. T. Bryson 15241} 20 May 1996 (MICH); Choctaw Co., Jeff Busby Park, \textit{C. T. Bryson 13742} 20 May 1994 (MICH); Clarke Co., Quitman, \textit{C. T. Bryson 13635} 18 May 1994 (MICH); Clay Co., West Point, \textit{C. T. Bryson 3306} 18 May 1982 (MICH); Forrest Co., Geiger Lake, \textit{K. E. Rogers 6248-c} 15 May 1971 (NCU); Forrest Co., Paul B. Johnson SP, \textit{C. T. Bryson 5542} 29 Apr 1987 (MICH); Greene Co., Hwy 8, \textit{S. B. Jones Jr 2817} 23 Apr 1965 (NCU); Greene Co., Sand Hill, \textit{C. T. Bryson 13640} 18 May 1994 (MICH); Hancock Co., Bay St. Louis, \textit{A. B. Langlois s.n.} 28 Apr 1885 (MICH); Harrison Co., Coopolis, \textit{S. M. Tracy 4120} 24 Apr 1898 (KANU); Harrison Co., Mill Creek Bog, \textit{C. T. Bryson 10670} 12 Apr 1991 (TAES); Hinds Co., Jackson, \textit{C. T. Bryson 15132} 9 May 1996 (MICH); Itawamba Co., Dorsey, \textit{C. T. Bryson 13804} 24 May 1994 (MICH); Itawamba Co., Fulton, \textit{C. T. Bryson 12397} 26 May 1993 (MICH); Jackson Co., Hurley, \textit{C. T. Bryson 4171} 15 Apr 1986 (MICH); Lamar Co., Lake Serene, \textit{K. E. Rogers 1175} 14 May 1969 (NCU); Lowndes Co., Mayhew, \textit{C. T. Bryson 9869} 17 May 1990 (MICH); Madison Co., Jackson, \textit{R. Webster 1524} 8 May 1978 (TAES); Montgomery Co., Wenard, \textit{S. D. Jones 4741} 16 May 1990 (MICH); Oktibbeha Co., Sturgis, \textit{C. T. Bryson 3831} 8 May 1985 (MICH); Oktibbeha Co., Sturgis, \textit{C. T. Bryson 8612} 16 May 1989 (MICH); Pearl River Co., Picayune, \textit{F. H. Sargent 8128} 21 Apr 1964 (NCU); Pearl River Co., Picayune, \textit{C. T. Bryson 13555} 17 May 1994 (MICH); Pearl River Co., Poplarville, \textit{C. T. Bryson 10689} 12 Apr 1991 (TAES); Perry Co., Beaumont, \textit{C. T. Bryson 15047} 30 Apr 1996 (MICH); Perry Co., Janice, \textit{R. Naczi 5124} 30 Apr 1996 (MICH); Perry Co., Runnelstown, \textit{C. T. Bryson 13598} 18 May 1994 (MICH); Rankin Co., Pelahatchie, \textit{C. T. Bryson 3244} 8 May 1982 (MICH); Scott Co., Bienville NF, \textit{C. T. Bryson 10803} 10 May 1991 (TAES); Stone Co., Stone/Harrison Co. Line, \textit{C. T. Bryson 10671} 12 Apr 1991 (TAES); Walthall Co., McGee Creek, \textit{C. T. Bryson 10702} 12 Apr 1991 (TAES); Warren Co., Redwood, \textit{C. T. Bryson 11253} 14 Apr 1992 (USCH); Wayne Co., Wayne/Greene Co. Line, \textit{C. T. Bryson 13643} 18 May 1994 (MICH); Webster Co., Tomnolen, \textit{C. T. Bryson 7780} 25 May 1988 (MICH); Winston Co., Louisville, \textit{C. T. Bryson 3340} 22 May 1982 (MICH); Yalobusha Co., Gums, \textit{C. T. Bryson 15228} 20 May 1996 (MICH). North Carolina: Anson Co., Lilesville, \textit{A. E. Radford 43647} 20 May 1961 (NCU); Beaufort Co., Chocowinity, \textit{A. E. Radford 33417} 17 May 1958 (NCU); Bertie Co., Windsor, \textit{H. E. Ahles 41353} 29 May 1958 (NCU); Brunswick Co., Wilmington, \textit{A. E. Radford 269} 4 May 1940 (NCU); Caswell Co., Frogsboro, \textit{D. F. Brunton 12609} 5 Jul 1996 (MICH); Catawba Co., Long Island, \textit{J. A. McNeely 1415} 11 May 1960 (NCU); Chatham Co., Merry Oaks, \textit{A. E. Radford 42863} 18 May 1960 (NCU); Chowan Co., Albermarle Sound, \textit{H. E. Ahles 44135} 24 Jun 1958 (USCH); Chowan Co., St. Johns, \textit{H. E. Ahles 44161} 24 Jun 1958 (NCU); Chowan Co., Yeopim, \textit{H. E. Ahles 39857} 9 May 1957 (NCU); Craven Co., Croatan NF, \textit{J. R. Snyder 821} 17 May 1976 (NCU); Cumberland Co., Linden, \textit{H. E. Ahles 24376} 4 May 1957 (NCU); Davidson Co., Silver Valley, \textit{A. E. Radford 12748} 16 Jun 1956 (NCU); Davie Co., Cooleemee, \textit{A. E. Radford 10943} 11 May 1956 (NCU); Durham Co., Durham, \textit{H. L. Blomquist 14511} 20 May 1949 (NY); Durham Co., Durham, \textit{H L Blomquist 13455} 23 May 1944 (KANU); Edgecombe Co., Rocky Mount, \textit{A. E. Radford 33983} 27 May 1958 (NCU); Franklin Co., Mapleville, \textit{W. B. Fox 4847} 23 Jun 1951 (MICH); Gaston Co., Spencer Mt., \textit{H. E. Ahles 15020} 21 Jun 1956 (NCU); Gates Co., White Oak Pocosin, \textit{J. A. Duke 831} 30 May 1958 (NCU); Granville Co., Tar River, \textit{B. R. Dayton 1677} 21 May 1964 (NCU); Granville Co., Creedmoor, \textit{A. E. Radford 45470} 12 Jun 1968 (NCU); Guilford Co., Gibsonville, \textit{C. R. Bell 12463} 3 Jun 1958 (NCU); Halifax Co., Halifax, \textit{H. E. Ahles 14851} 19 Jun 1956 (NCU); Hartford Co., Winton, \textit{H. E. Ahles 41569} 30 May 1958 (NCU); Hertford Co., Como, \textit{H. E. Ahles 41643} 30 May 1958 (NCU); Hoke Co., Antioch, \textit{H. E. Ahles 25088} 12 May 1957 (NCU); Hyde Co., Scranton, \textit{A. E. Radford 33682} 18 May 1958 (NCU); Johnston Co., Smithfield, \textit{A. E. Radford 1079} 22 May 1941 (NCU); Johnston Co., Wendell, \textit{A. E. Radford 25190} 19 Jun 1957 (NCU); Jones Co., Hargetts Store, \textit{A. E. Radford 37144} 18 Jul 1958 (NCU); Lee Co., Sanford, \textit{A. E. Radford 2013} 18 May 1946 (NCU); Lenoir Co., Seven Springs, \textit{A. E. Radford 22170} 6 May 1957 (NCU); Martin Co., Smithwick, \textit{A. E. Radford 35475} 16 Jun 1958 (NCU); Moore Co., Eastwood, \textit{A. E. Radford 43347} 11 Jun 1960 (NCU); Northampton Co., US 158, \textit{H. E. Ahles 41767} 31 May 1958 (NCU); Pamlico Co., Olympia, \textit{A. E. Radford 35829} 5 Jul 1958 (NCU); Pasquotank Co., Weeksville, \textit{H. E. Ahles 40038} 10 May 1958 (NCU); Perquimans Co., Snug Harbor, \textit{L. J. Uttal 9774} 12 Jun 1973 (VPI); Pitt Co., Bethel, \textit{A. E. Radford 34791} 14 Jun 1958 (NCU); Pitt Co., Staton, \textit{A. E. Radford 34949} 14 Jun 1958 (MICH); Randolph Co., Sawyer mine site, \textit{D. E. Wickland 972} 19 May 1976 (NCU); Richmond Co., Hoffman, \textit{A. E. Radford 11285} 19 May 1956 (NCU); Scotland Co., Silver Hill, \textit{H. E. Ahles 24784} 8 May 1957 (NCU); Stanly Co., Albermarle, \textit{H. E. Ahles 11863} 3 May 1956 (NCU); Stokes Co., Walnut Cove, \textit{A. E. Radford 34610} 4 Jun 1958 (NCU); Stokes Co., Walnut Cove, \textit{A. E. Radford 34706} 4 Jun 1958 (NCU); Tyrell Co., St. Rd. 1200 \& St. Rd. 1308, \textit{C. B. McDonald 1722} 17 May 1980 (WV); Tyrrell Co., Newfoundland, \textit{A. E. Radford 33862} 18 May 1958 (NCU); Union Co., Monroe, \textit{H. E. Ahles 27558} 7 Jun 1957 (NCU); Wake Co., Morrisville, \textit{A. E. Radford 42702} 17 May 1959 (NCU); Warren Co., Oine, \textit{H. E. Ahles 12806} 24 May 1956 (NCU); Washington Co., Hoke, \textit{A. E. Radford 35071} 15 Jun 1958 (NCU); Wayne Co., Princeton, \textit{A. E. Radford 25613} 21 Jun 1957 (NCU); Wayne Co., Princeton, \textit{A. E. Radford 21939} 3 May 1957 (NCU); Wilson Co., Sims, \textit{A. E. Radford 38036} 28 Jul 1958 (NCU). Oklahoma: Choctaw Co., Sawyer, \textit{B. W. Hoagland HUGO187} 15 May 2001 (OKL); Choctaw Co., Schooler Lake, \textit{S. Carpenter s.n.} 18 May 1995 (OKL); Latimer Co., Robbers' Cave SP, \textit{P. Folley 2278} 24 Apr 1999 (OKL); McCurtain Co., Red Slough WMA, \textit{F. Johnson RSGS344} 24 Jun 1999 (OKL). Pennsylvania: Philadelphia, \textit{J. B. Bristow 22} 20 Jun 1880 (MSC). South Carolina: Abbeville Co., Abbeville, \textit{C. N. Horn 9063} 13 May 1995 (CLEMS); Abbeville Co., Calhoun Falls, \textit{A. E. Radford 22677} 13 May 1957 (NCU); Abbeville Co., Lowndesville, \textit{W. C. Credle 725} 21 May 1979 (NCU); Abbeville Co., Lowndesville, \textit{C. C. Douglass 1773} 23 May 1984 (NCU); Abbeville Co., Richard Russell Dam and Lake Area, \textit{W. C. Creadle 2914} 12 Jun 1980 (CLEMS); Aiken Co., Savannah River Plant, \textit{J. B. Nelson 3255} 1 May 1984 (USCH); Aiken Co., Savannah River Project, \textit{A. E. Hodge 837} 8 May 1984 (CLEMS); Aiken Co., Savannah River Site, \textit{Phillip E. Hyatt 5935} 4 May 1994 (USCH); Aiken Co., Savannah River Site, \textit{T. Govus 88} 18 May 1993 (USCH); Aiken Co., SRP, \textit{F. Gabrielson 232} 3 Jun 1966 (NCU); Allendale Co., Barton, \textit{C. R. Bell 2644} 13 May 1956 (NCU); Bamberg Co., Bamberg, \textit{C. N. Horn 4424} 28 May 1991 (USCH); Bamberg Co., Denmark, \textit{J. B. Nelson 15475} 27 May 1994 (USCH); Barnwell Co., Savannah River Operations Area, \textit{W. T. Batson s.n.} 2 Jul 1952 (USCH); Barnwell Co., Carolina Bays, \textit{A. E. Hodge 942} 23 May 1984 (CLEMS); Barnwell Co., Savannah River Operations, \textit{W. T. Batson s.n.} 28 Apr 1952 (NCU); Barnwell Co., Savannah River Plant, \textit{A. E. Hodge 942} 23 May 1984 (USCH); Barnwell Co., Savannah River Site, \textit{Phillip E. Hyatt 5883} 22 Apr 1994 (USCH); Barnwell Co., Sister Lake, \textit{A. E. Hodge 823} 8 May 1984 (CLEMS); Beaufort Co., Callawassie Island, \textit{C. A. Aulbach-Smith 2094} 27 Apr 1982 (CLEMS); Beaufort Co., Combahee River, \textit{P. D. McMillan 2181} 11 Apr 1997 (USCH); Beaufort Co., Yemassee, \textit{H. E. Ahles 12317} 10 May 1956 (NCU); Berkeley Co., Francis Marion NF, \textit{S. R. Hill 18007} 15 May 1987 (CLEMS); Berkeley Co., Huger, \textit{J. B. Nelson 14096} 14 May 1993 (USCH); Berkeley Co., Moncks Corner, \textit{J. B. Nelson 7630} 18 May 1989 (USCH); Berkeley Co., Moncks Corner, \textit{H. E. Ahles 26472} 27 May 1957 (NCU); Berkeley Co., Oakley, \textit{H. E. Ahles 26529} 27 May 1957 (NCU); Berkeley Co., Santee Experimental Forest, \textit{S. R. Hill 22987} 25 Apr 1992 (CLEMS); Charleston Co., Palmetto Islands Co. Park, \textit{M. M. Smith 815} 7 Aug 1985 (CLEMS); Charleston Co., Colleton-Charelston Co. Line, \textit{H. E. Ahles 25735} 20 May 1957 (NCU); Cherokee Co., Blacksburg, \textit{R. Kral 60153} 26 May 1977 (USCH); Chester Co., Lowrys, \textit{C. R. Bell 7395} 13 May 1957 (NCU); Chesterfield Co., Carolina Sandhills National Wildlife Refuge, \textit{J. Castrale 107} 8 May 1977 (USCH); Clarendon Co., Manning, \textit{J. B. Nelson 14031} 30 Apr 1993 (USCH); Clarendon Co., St. Paul, \textit{A. E. Radford 24356} 11 Jun 1957 (NCU); Clarendon Co., St. Paul, \textit{A. E. Radford 24372} 11 Jun 1957 (NCU); Colleton Co., Bells, \textit{C. R. Bell 2311} 7 May 1956 (NCU); Colleton Co., Edisto, \textit{D. Soblo 496} 15 May 1987 (USCH); Darlington Co., Hartsville, \textit{J. B. Norton s.n.} 26 Apr 1921 (NCU); Dillon Co., Dillon, \textit{H. E. Ahles 27806} 12 Jun 1957 (NCU); Dillon Co., Little Pee Dee SP, \textit{M. T. Strong 2327} 19 May 2000 (MICH); Edgefield Co., Edgefield, \textit{J. B. Nelson 18128} 24 Apr 1997 (USCH); Edgefield Co., Sumter NF, \textit{J. B. Nelson 17208} 8 May 1996 (USCH); Edgefield Co., Trenton, \textit{A. E. Radford 22569} 12 May 1957 (NCU); Fairfield Co., Lake Wateree, \textit{J. R. Clonts s.n.} 24 Apr 1976 (MICH); Fairfield Co., Monticello, \textit{J. B. Nelson 2571} 22 Jun 1983 (USCH); Fairfield Co., Winnsboro, \textit{C. N. Horn 2694} 4 Jun 1988 (TAES); Florence Co., Cowards, \textit{C. R. Bell 13396} 30 Jun 1958 (NCU); Florence Co., Lake City, \textit{C. R. Bell 6125} 19 Apr 1957 (NCU); Georgetown Co., Rhems, \textit{A. E. Radford 21484} 22 Apr 1957 (NCU); Greenwood Co., Hodges, \textit{A. E. Radford 23001} 25 May 1957 (NCU); Hampton Co., Belmont Plantation, \textit{R. D. Porcher Jr. 282} 20 May 1971 (USCH); Hampton Co., Yemassee, \textit{C. R. Bell 2593} 12 May 1956 (WV); Horry Co., Conway, \textit{C. N. Horn 3356} 25 May 1989 (USCH); Jasper Co., Hazzard's Creek, \textit{C. A. Aulbach-Smith 2133} 28 Apr 1982 (USCH); Jasper Co., SC 170, \textit{C. R. Bell 2413} 9 May 1956 (NCU); Jasper Co., Hardeeville, \textit{J. B. Nelson 15384} 26 Apr 1994 (USCH); Jasper Co., Hardeeville, \textit{C. A. Aulbach-Smith 3098} 9 May 1984 (USCH); Jasper Co., Hardeeville, \textit{J. A. Churchill s.n.} 10 May 1969 (MSC); Jasper Co., Hardeeville, \textit{J. B. Nelson 15384} 26 Apr 1994 (USCH); Kershaw Co., Westville, \textit{A. E. Radford 23784} 4 Jun 1957 (NCU); Lancaster Co., Lancaster, \textit{H. E. Ahles 27287} 6 Jun 1957 (NCU); Laurens Co., Clinton, \textit{C. N. Horn 6585} 8 May 1993 (USCH); Laurens Co., Mountville, \textit{C. R. Bell 8058} 3 Jun 1957 (NCU); Lee Co., Bishopville, \textit{A. E. Radford 24146} 6 Jun 1957 (NCU); Lexington Co., Cayce, \textit{W. T. Batson s.n.} 2 Jun 1963 (USCH); Marion Co., SC 908, \textit{J. Nelson 10566} 3 May 1991 (MICH); Marlboro Co., Blenheim, \textit{A. E. Radford 12662} 10 Jun 1956 (NCU); McCormick Co., Clarks Hill, \textit{A. E. Radford 22368} 11 May 1957 (NCU); McCormick Co., Sumter NF, \textit{J. B. Nelson 17177} 8 May 1996 (USCH); Newberry Co., Newberry, \textit{C. N. Horn 2159} 11 Jul 1987 (USCH); Newberry Co., Newberry, \textit{J. B. Nelson 22649} 23 May 2002 (USCH); Newberry Co., Pomaria, \textit{J. B. Nelson 22636} 23 May 2002 (USCH); Oconee Co., Chauga River, \textit{J. D. Tobe 847} 5 Jun 1986 (CLEMS); Orangeburg Co., Orangeburg, \textit{H. E. Ahles 25237} 18 May 1957 (NCU); Orangeburg Co., Sixteen Island in Lake Marion, \textit{A. B. Pittman 04180102} 18 Apr 2001 (USCH); Pickens Co., Pendleton, \textit{J. F. Townsend 1501} 20 May 1997 (CLEMS); Richland Co., Columbia Country Club, \textit{J. B. Nelson 7521} 15 May 1989 (USCH); Richland Co., Eau Clair, \textit{A. B. Pittman 05109724} 10 May 1997 (USCH); Richland Co., Ballentine, \textit{J. B. Nelson 15571} 10 Jun 1994 (MICH); Richland Co., Columbia, \textit{C. N. Horn 5465} 21 Jul 1992 (MICH); Richland Co., Congaree Swamp National Monument, \textit{L. L. Gaddy 052998} 29 May 1998 (USCH); Richland Co., Fort Jackson, \textit{J. B. Nelson 10297} 22 Apr 1991 (USCH); Saluda Co., Saluda River, \textit{C. A. Aulbach-Smith 2626} 23 Jun 1983 (USCH); Saluda Co., Sumter NF, \textit{J. B. Nelson 5438} 15 May 1987 (USCH); Saluda Co., Ridge Spring, \textit{A. E. Radford 23069} 26 May 1957 (NCU); Union Co., Padgets Creek, \textit{C. N. Horn 5532} 1 Aug 1992 (MICH); Union Co., Sumter NF, \textit{C. N. Horn 6802} 5 Jun 1993 (MICH); Williamsburg Co., Black River, \textit{J. B. Nelson 7589} 18 May 1989 (USCH); Williamsburg Co., Cades, \textit{J. B. Nelson 17304} 7 Jun 1996 (USCH); Williamsburg Co., Cades Savannah, \textit{J. F. Townsend 1005} 7 Jun 1996 (CLEMS); Williamsburg Co., Coopers, \textit{A. E. Radford 24784} 12 Jun 1957 (NCU); York Co., Clover, \textit{D. F. Brunton 12200} 27 May 1995 (MICH); York Co., Kings Mountain SP, \textit{D. E. Kennemore Jr. 436} 20 May 1993 (USCH). Tennessee: Bledsoe Co., Mt. Zion School, \textit{R. Jones 4767b} 22 May 1987 (EKY); Coffee Co., Double Pond, \textit{V. E. McNeilus 92-411} 1 Jun 1992 (MICH); Cumberland Co., Crossville Memorial Airport, \textit{V. E. McNeilus 89-410} 17 Jun 1989 (MSC); Cumberland Co., Mayland, \textit{V. E. McNeilus 89-424} 17 Jun 1989 (MICH); Fentress Co., Hwy 154, \textit{R. Jones 4803} 31 May 1987 (EKY); Franklin Co., Tullahoma, \textit{H. R. DeSelm s.n.} 31 May 1962 (NCU); Hardin Co., Cravan Rd., \textit{H. R. DeSelm s.n.} 10 Jun 1993 (EKY); Loudon Co., Sweet Water, \textit{H. DeSelm 242} 26 May 1979 (EKY); Morgan Co., Lilly Bridge, \textit{V. E. McNeilus 90-360} 19 Jun 1990 (TAES); Putnam Co., Baxter, \textit{V. E. McNeilus 95-291} 3 Jun 1995 (MICH); Scott Co., US 27, \textit{R. Jones 6449} 22 Jun 1990 (EKY); Van Buren Co., Bledsoe Co. Line, \textit{V. E. McNeilus 92-521} 27 Jun 1992 (MICH). Texas: Jefferson, \textit{R. Bebb 2625} 11 May 1905 (OKL); Jefferson, \textit{R. Bebb 2562} 10 May 1905 (OKL); Anderson Co., Engeling WMA, \textit{E. Bridges 13723} 21 May 1990 (MICH); Angelina Co., Angelina NF, \textit{S. L. Orzell 9075} 10 Apr 1989 (MICH); Hardin Co., Kountze, \textit{S. D. Jones 2608} 29 Apr 1989 (TAES); Hardin Co., Lumberton, \textit{R. Jordan 5} 17 Apr 1993 (TAES); Hardin Co., Lumberton, \textit{R. Jordan 1} 17 Apr 1993 (TAES); Hardin Co., Silsbee, \textit{H. B. Parks 22297?} 15 May 1937 (TAES); Harris Co., Nimitz High School Outdoor Learning Center, \textit{J. Kessler 3332} 17 Apr 1980 (TAES); Henderson Co., Slaughter Lakes, \textit{S. L. Orzell 6563} 4 May 1988 (MICH); Houston Co., Hwy 21, \textit{S. D. Jones 1041} 6 Apr 1988 (TAES); Houston Co., Houston, \textit{R. Bebb 1204} 20 May 1900 (OKL); Jasper Co., FM 105, \textit{S. D. Jones 1659} 22 May 1988 (TAES); Jasper Co., Angelina NF, \textit{S. Orzell 6239} 13 Apr 1988 (MICH); Leon Co., Eunice, \textit{S. Orzell 6507} 3 May 1988 (MICH); Madison Co., Lenz Property, \textit{A. K. Neill 1338} 2 Apr 1998 (TAMU); Milam Co., Milano, \textit{S. E. Wolff 3975} 22 May 1933 (TAES); Montgomery Co., Sam Houston NF, \textit{L. E. Brown 21786} 8 Mar 1998 (TAES); Nacagdoches Co., Nacagdoches, \textit{J. A. Churchill s.n.} 27 Apr 1955 (MSC); Nacagdoches Co., Nacogdoches, \textit{E. S. Nixon 2425} 18 May 1971 (TAES); Orange Co., FM 105, \textit{S. D. Jones 1638} 22 May 1988 (TAES); Panola Co., Carthage, \textit{C. L. Lundell 10493} 7 May 1941 (MICH); Polk Co., Hwy 190, \textit{S. D. Jones 1459} 11 May 1988 (TAES); Robertson Co., Mill Creek Bog, \textit{H. D. Wilson 3706} 9 May 1981 (TAMU); Robertson Co., Mill Creek Bog, \textit{S. D. Jones 1090} 30 Apr 1988 (TAES); San Jacinto Co., Big Creek, \textit{S. L. Orzell 6452} 21 Apr 1988 (MICH); Shelby Co., FM 139, \textit{S. D. Jones 1331} 17 May 1988 (TAES); Shelby Co., Chambers Creek Bayou, \textit{S. D. Jones 1363} 17 May 1988 (TAES); Smith Co., Bier Creek, \textit{D. Wilkinson 787} 14 Apr 1972 (MARY); Tyler Co., Big Thicket National Preserve, \textit{R. Jordan 6} 4 May 1993 (TAES); Walker Co., Hwy 75, \textit{J. Kessler 5678} 7 May 1982 (TAES); Walker Co., Hunstville, \textit{S. E. Wolff 4973} 13 Apr 1934 (TAES); Walker Co., Huntsville, \textit{D. S. Correll 27360} 11 May 1963 (NCU); Walker Co., Huntsville, \textit{B. L. Lipscomb 1705} 2 Jun 1976 (NCU); Wood Co., Hwy 49, \textit{S. D. Jones 2835} 13 May 1989 (TAES); Wood Co., Wood Co. Rd 3990, \textit{S. D. Jones 2918} 16 May 1989 (TAES); Wood Co., Crow, \textit{C. L. Lundell 9472} 14 Jun 1940 (MICH). Virginia: City of Hampton, \textit{P. Baldwin 786} 17 May 1993 (VPI); Accomack Co., New Church, \textit{T. Bradley 23590} 17 Jun 1990 (CLEMS); Chesapeake Co., Dismal Swamp, \textit{Emery C Leonard; Ellsworth P Killip 371} 2 Jun 1921 (KANU); Fairfax Co., Ft. Hunt, \textit{S. F. Blake s.n.} 17 Jun 1933 (NCU); Greensville Co., Quarrell's Creek, \textit{Merritt L Fernald; J B Lewis 14581} 22 Jun 1944 (KANU); James City Co., Jamestown Island, \textit{L. E. Loetterle 823} 24 May 1970 (NCU); King George Co., \textit{D. M. E. Ware 8238} 18 Jun 1983 (CLEMS); Madison Co., Aroda, \textit{T. Bradley 23364} 10 Jun 1990 (USCH); Nansemond Co., Blackwater River, \textit{H. E. Ahles 58176} 22 Jun 1963 (NCU); Norfolk Co., Portsmouth, \textit{N. L. Britton s.n.} 25 May 1893 (NEB); Pittsylvania Co., Co. Rd 630, \textit{W. R. Ruska s.n.} 20 Jul 1968 (NCU); Prince George Co., Petersburg, \textit{R. Kral 13202} 6 Jul 1961 (VPI); Richmond Co., Ivandale, \textit{T. Bradley 22377} 11 Jun 1988 (CLEMS); Suffolk Co., South Quay, \textit{R. H. Simmons s.n.} 20 May 2000 (MICH); Surry Co., Vepco Surry Nuclear Power Station, \textit{D. M. E. Ware 4849} 6 Jun 1973 (NCU); Surry Co., VEPCO Surry Nuclear Power Station, \textit{D. M. E. Ware 5337} 23 May 1974 (NCU). \textbf{\textsc{Carex hirsutella}}. Canada. Quebec: Brome-Missisquoi Co., Cowansville, \textit{W. G. Dore 1026} 24 Jun 1934 (CAN); Brome-Missisquoi Co., Bedford, \textit{J-P. Bernard 5093} 28 Jul 1955 (CAN); Brome-Missisquoi Co., Frelighsburg, \textit{M. Raymond 47} 21 Jun 1952 (CAN). Ontario: Elgin Co., West Lorne, \textit{M. J. Oldham 15913} 7 Oct 1993 (MICH); Essex Co., Cedar Creek, \textit{W. Botham 1650} 17 Jun 1974 (CAN); Essex Co., Essex, \textit{A. A. Reznicek 7752} 9 Jul 1986 (MICH); Essex Co., Gosfield, \textit{M. J. Oldham 2901} 26 Jun 1982 (MICH); Essex Co., Gosfield, \textit{M. J. Oldham 2892} 26 Jun 1982 (MICH); Essex Co., Harrow, \textit{M. J. Oldham 11052} 11 Jun 1990 (MICH); Essex Co., Kingsville, \textit{M. J. Oldham 2901} 26 Jun 1982 (CAN); Haldimand-Norfolk Co., Cayuga, \textit{M. J. Oldham 17283} 17 Jun 1995 (MICH); Haldimand-Norfolk Co., Dunville, \textit{M. J. Oldham 6391} 22 Jun 1986 (MICH); Haldimand-Norfolk Co., Port Dover, \textit{D. A. Sutherland 7046} 10 Jun 1986 (CAN); Kent Co., Bothwell, \textit{R. Klinkenburg 198} 2 Aug 1982 (MICH); Kent Co., Clearville, \textit{V. R. Brownell 83-105} 13 Jun 1983 (CAN); Middlesex Co., Parkhill, \textit{M. J. Oldham 14158} 13 Aug 1992 (MICH); Niagara Co., Niagara Falls, \textit{Macoun 16545} 25 Jun 1892 (CAN); Niagara Co., Niagara River Whirlpool, \textit{Macoun 33748} 9 Jul 1901 (CAN); Niagara Co., Queenston Heights, \textit{Macoun 16661} 7 Jun 1882 (CAN). U. S. A. Western Reserve, \textit{G. B. Ashcroft s.n.} 1 Jun 1897 (TAES). \begin{sloppypar} Alabama: Lauderdale Co., Florian, \textit{D. Isely 3554} 25 Jun 1944 (MSC); Lawrence Co., Bankhead NF, \textit{C. T. Bryson 7587} 8 May 1988 (MSC); Madison Co., Huntsville, \textit{C. T. Bryson 3539} 23 May 1983 (MICH); Madison Co., Monte Sano Mt., \textit{J. R. Manhart 263} 9 May 1981 (MICH); Madison Co., Monte Sano Mt., \textit{C. T. Bryson 4394} 25 May 1986 (MICH); Madison Co., Monte Sano Mt., \textit{C. T. Bryson 2889} 8 May 1980 (GA); Madison Co., Monte Sano Mt., \textit{C. T. Bryson 2047} 27 May 1978 (GA). \end{sloppypar} Arkansas: \textit{R. Bebb 4024} 21 May 1939 (OKL); Baxter Co., Henderson, \textit{D. Castaner 8409} 22 May 1985 (MICH); Baxter Co., Henderson, \textit{D. Castaner 8418} 22 May 1985 (VPI); Clay Co., Pollard, \textit{Phillip E. Hyatt 4381.11} 22 May 1992 (MICH); Crawford Co., Figure Five Community, \textit{Phillip E. Hyatt 9301} 18 May 2000 (MICH); Fulton Co., Salem Quad., \textit{S. Orzell 1947} 23 May 1985 (MICH); Fulton Co., Hwy 87, \textit{D. Castaner 8428} 22 May 1985 (MICH); Fulton Co., Salem, \textit{Larry J. Harms 2219} 2 May 1965 (KANU); Garland Co., Iron Springs Rec. Area, \textit{A. A. Reznicek 8496} 5 Jun 1989 (MICH); Greene Co., U. S. Hwy. 412, \textit{Phillip E. Hyatt 4622.38} 7 Jun 1992 (MICH); Greene Co., Crowley's Ridge SP, \textit{Phillip E. Hyatt 4070.28} 16 Jun 1991 (MICH); Jackson Co., Heffington, \textit{Phillip E. Hyatt 10361} 26 May 2001 (MICH); Lee Co., St. Francis NF, \textit{Phillip E. Hyatt 4637.39} 9 Jun 1992 (MICH); Madison Co., Combs, \textit{E. B. Smith 3835} 19 Jun 1984 (WV); Marion Co., Bull Shoals Lake, \textit{Phillip E. Hyatt 4054.45} 8 Jul 1991 (MICH); Marion Co., Hand Valley, \textit{Phillip E. Hyatt 4823.45} 1 May 1992 (MICH); Monroe Co., Fargo, \textit{R. Naczi 2455} 21 May 1990 (MICH); Montgomery Co., Albert Pike Campground, \textit{Phillip E. Hyatt 9277} 18 May 2000 (MICH); Montgomery Co., Cox Springs, \textit{C. T. Bryson 4275} 10 May 1986 (MICH); Montgomery Co., Little Missouri River Falls Rec. Area, \textit{C. T. Bryson 4350} 10 May 1986 (MICH); Montgomery Co., Mena, \textit{D. E. Boufford 25489} 8 May 1991 (MICH); Phillips Co., St. Francis NF, \textit{Phillip E. Hyatt 4657.54} 11 Jun 1992 (MICH); Polk Co., Cossatot River Rec. Area, \textit{S. D. Jones 10146} 18 May 1993 (MICH); Polk Co., Mena, \textit{D. E. Boufford 25511} 9 May 1991 (MICH); Polk Co., Mena, \textit{C. T. Bryson 4318} 10 May 1986 (MSC); Polk Co., Mena, \textit{D. E. Boufford 25604} 13 May 1991 (MICH); Polk Co., Rich Mt., \textit{C. T. Bryson 4294} 10 May 1986 (MICH); Pulaski Co., North Little Rock, \textit{J. Kessler 7093} 23 Jun 1983 (TAES); Randolph Co., Sutton Freewill Baptist Church, \textit{Phillip E. Hyatt 5964} 9 May 1994 (MICH); Saline Co., Congo Rd., \textit{L. E. McKinney 2536} 9 May 1987 (MICH); Scott Co., Y City, \textit{D. E. Boufford 25571} 11 May 1991 (MICH); Searcy Co., Buffalo National River, \textit{Phillip E. Hyatt 5679} 17 Jun 1993 (MICH); Sebastain Co., New Hartford, \textit{Phillip E. Hyatt 7461} 18 May 1997 (MICH); Sharp Co., Hwy 230, \textit{D. Castaner} 9097 9 May 1986 (MICH); Sharp Co., Cherokee Village, \textit{Phillip E. Hyatt 4327.68} 12 May 1992 (MICH); Sharp Co., Poughkeepsie, \textit{Phillip E. Hyatt 7167} 25 May 1996 (MICH); Stone Co., Ozark NF, \textit{Phillip E. Hyatt 5543} 27 May 1993 (MICH); Stone Co., Sylamore Ranger District, \textit{Phillip E. Hyatt 5324} 13 May 1993 (MICH); Van Buren Co., Fairfield Bay, \textit{Phillip E. Hyatt 5293} 8 May 1993 (MICH); White Co., Sunnydale, \textit{Phillip E. Hyatt 4031.73} 26 May 1991 (MICH); Yell Co., Rover, \textit{Phillip E. Hyatt 8074} 3 May 1998 (MICH). Connecticut: Hartford Co., Berlin, \textit{G. B. Rossbach 992} 8 Jun 1956 (NCU); Hartford Co., Cedar Mt., \textit{C. A. Weatherby 3077} 24 Jun 1913 (GH); Hartford Co., Noyes Brook Region, \textit{A. W. Drigg s.n.} 27 Jun 1902 (GH); Hartford Co., Short Mt., \textit{L. J. Mehrhoff 12131} 17 Jun 1987 (MICH); Hartford Co., Southington, \textit{L. Andrews s.n.} 19 Jun 1898 (GH); Hartford Co., Simsbury, \textit{W. H. Moorhead III 3223} 22 Jul 1996 (GH); Hartford Co., Wethersfield, \textit{V. Marttala 3141} 20 Jul 1973 (MICH); Litchfield Co., Salisbury, \textit{L. J. Mehrhoff 15765} 10 Jul 1992 (MICH); Litchfield Co., Woodbury. Rag Land, \textit{W. H. Moorehead III 3228} 25 Jul 1996 (GH); Middlesex Co., Middletown, \textit{C. A. Weatherby 4492} 4 Jul 1919 (GH); New Haven Co., Hamden, \textit{A. E. Blewitt 1670} 19 Jun 1913 (GH); New Haven Co., New Haven, \textit{L. Mehrhoff 16259} 16 Sep 1992 (MICH); New Haven Co., Southbury, \textit{L. J. Mehrhoff 15644} 15 Jun 1992 (MICH). District of Columbia: Potomac, \textit{Agnes Chase 2392} 25 Jun 1904 (MICH); Potomac Valley, Mt. Rainier, \textit{A. Chase 2415} 2 Jul 1904 (MICH); Washington, D. C., \textit{E. S. Stute s.n.} 1896 (MICH). Georgia: Bartow Co., Allatoona Station, \textit{G. W. McDowell 613} 13 Jun 1948 (CLEMS); Elbert Co., Savannah River, \textit{W. H. Duncan 9419} 25 Apr 1949 (GA); Elbert Co., Richard Russell Dam and Lake Area, \textit{W. C. Credle 731} 21 May 1979 (CLEMS); Elbert Co., Richard Russell Dam and Lake Area, \textit{M. G. Douglass 1438} 31 May 1978 (CLEMS); Elbert Co., Russell Dam and Lake area, \textit{C. C. Douglass 1438} 31 May 1978 (USCH); Elbert Co., Savannah River Site, \textit{W. C. Credle 731} 21 May 1979 (NCU); Elbert Co., Savannah River Site, \textit{C. C. Douglass 1438} 31 May 1978 (NCU); Lincoln Co., Graves Mt., \textit{W. H. Duncan 11142} 24 Jun 1950 (GA); Stephens Co., Lake Russell WMA, \textit{J. Cruse 752} 18 May 1995 (GA). Illinois: Alexander Co., Shawnee NF, \textit{L. R. Phillipe 24299} 25 May 1994 (MICH); Champaign Co., Urbana, \textit{H. A. Gleason s.n.} 26 May 1902 (GH); Champaign Co., Urbana, \textit{A. S. Pease 13079} 30 May 1911 (GH); Christian Co., Taylorville, \textit{R. A. Evers 86923} 1 Jun 1966 (NCU); Cook Co., Hickory Hills, \textit{S. Hill 29331} 11 Jun 1997 (MICH); Cook/Lake Co., Deer Park, \textit{H. Haleuman s.n.} 1 Jun 1895 (NEB); Franklin Co., Rend Lake, \textit{T. G. Lammers 9472} 25 Jun 1995 (MICH); Jackson Co., Makanda, \textit{H. A. Gleason s.n.} 12 Jun 1903 (GH); Jackson Co., Makanda, \textit{H. A. Gleason 1058} 23 Jun 1903 (GH); Jackson Co., Murphysboro SP, \textit{D. Castaner 2298} 1 Jun 1972 (MO); Johnson Co., Bell Pond Natural Area, \textit{L. R. Phillipe 14086} 21 Jun 1990 (MICH); Johnson Co., Shawnee NF, \textit{A. S. Biagi 2885} 30 Jul 1994 (MSC); Macon Co., Timbered Hill, \textit{I. W. Clokey 2279} 18 Jun 1915 (NEB); Marshall Co., Steuben Twp., \textit{V. H. Chase 1811} 7 Jun 1908 (GH); McDonough Co., Emmet, \textit{S. Hill 29261} 5 Jun 1997 (MICH); Peoria Co., Bellevue, \textit{V. H. Chase 8901} 10 Jul 1947 (MICH); Peoria Co., Bellevue, near, \textit{Virginius H Chase 8722} 7 Jun 1947 (KANU); Peoria Co., Glen Oak Park, \textit{V. H. Chase 3583} 22 Jun 1921 (MICH); Peoria Co., Medina Tp., \textit{V. H. Chase 7839} 4 Jul 1941 (MO); Peoria Co., Peoria, \textit{R. Bebb 2771} 5 Jun 1905 (OKL); Peoria Co., Peoria, \textit{F. E. McDonald s.n.} 1 Jul 1912 (MSC); Peoria Co., Peoria, \textit{F. E. McDonald s.n.} 1 Jun 1904 (OKL); Peoria Co., Peoria, \textit{F. E. McDonald s.n.} 1 Jul 1895 (MSC); Peoria Co., Peoria, \textit{R. Bebb 2771} 5 Jun 1905 (OKL); Peoria Co., Peoria Heights, \textit{V. H. Chase 13735} 27 Jun 1954 (USCH); Perry Co., Pyramid SP, \textit{J. Raveill 109} 21 May 1981 (MO); Piatt Co., Monticello, \textit{G. N. Jones 43083} 19 Jun 1966 (WV); St. Clair Co., Imbs Station, \textit{J. O. Neill 16004} 14 Jul 1962 (NCU); Tazewell Co., East Peoria, \textit{Virginius H Chase 13432} 23 Jun 1953 (KANU); Tazewell Co., Morton, \textit{S. Hill 29691} 7 Aug 1997 (MICH); Union Co., Atwood Ridge Research Natural Area, \textit{L. R. Phillipe 19085} 5 Jun 1991 (MICH); Vermilion Co., Hillery, \textit{H. A. Gleason s.n.} 1 Jun 1907 (NYS); Washington Co., Posen Woods, \textit{L. R. Phillipe 14224} 16 Jul 1990 (MICH); White Co., Enfield, \textit{R. A. Evers 33105} 21 May 1952 (NCU); Will Co., Mokina, \textit{A. Chase 160} 22 Jun 1897 (MSC); Will/Kendal Co., Joliet, \textit{C. F. Wheeler 258} 15 Jun 1904 (GH). Indiana: Chesterton, \textit{L. M. Umbach s.n.} 16 Jun 1900 (OKL); Marengo, \textit{C. C. Deam 13450} 21 Jun 1913 (MICH); Brown Co., Mt. Zion, \textit{C. C. Deam 48399} 24 May 1930 (MICH); Clark Co., Jeffersonville, \textit{C. C. Deam 27617} 25 May 1919 (GH); Clarke Co., \textit{C. C. Deam 6465} 25 May 1910 (MICH); Crawford Co., Fredonia, \textit{F. J. Hermann 6682} 16 Jun 1935 (MICH); Crawford Co., Leavenworth, \textit{C. C. Deam 23464} 5 Jun 1917 (WV); Floyd Co., New Albany, \textit{C. C. Deam 27935} 13 Jun 1919 (WV); Floyd Co., New Albany, \textit{C. C. Deam 13257} 8 Jun 1913 (MICH); Fountain Co., Portland Arch, \textit{F. B. Buser 6510} 2 Jun 1956 (NCU); Franklin Co., Androsonville, \textit{R. C. Friesner 4436} 16 Jul 1932 (MICH); Harrison Co., Palmyra, \textit{F. J. Hermann 6711} 17 Jun 1935 (GH); Harrison Co., Elisabeth, \textit{C. C. Deam 27864} 11 Jun 1919 (GH); Jefferson Co., Wirt, \textit{E. Banta 6} 22 Jun 1935 (MICH); Jennings Co., Muscatatuck SP, \textit{R. C. Friesner 16708} 23 May 1942 (GH); Lawrence Co., Bryantsville, \textit{R. M. Kriebel 2174} 10 Jun 1934 (MICH); Lawrence Co., Williams, \textit{R. M. Kriebel 1763} 3 Jun 1934 (MO); Owen Co., Hubble, \textit{C. C. Deam 46882} 13 Jun 1929 (GH); Perry Co., Tell City, \textit{C. C. Deam 25111} 4 Jun 1918 (MICH); Ripley Co., Batesville, \textit{C. C. Deam 6824} 27 Jun 1910 (WV); Scott Co., Lexington, \textit{C. C. Deam 16291} 22 Jun 1915 (WV); Spencer Co., Gentryville, \textit{C. C. Deam 25163} 6 Jun 1918 (MICH); St. Joseph Co., Notre Dame, \textit{P E Hebert s.n.} 27 Jun 1952 (KANU); Tippecanoe Co., Soldiers Home, \textit{F. J. Hermann 6066} 3 Jun 1934 (MICH); Wayne Co., Centerville, \textit{C. C. Deam 13116} 3 Jun 1913 (WV). Iowa: Lee Co., Donellson, \textit{B. Shimek s.n.} 15 Jul 1928 (OKL); Lee Co., Warren, \textit{B. Shimek s.n.} 31 May 1933 (NEB); Wapello Co., Cliffland, \textit{R. A. Davidson 272} 9 Jul 1953 (NCU); Wapello Co., Cliftland, \textit{A. Hayden 9210} (MICH); Washington Co., Ainsworth, \textit{T. Cady s.n.} 7 Jun 1998 (MICH); Washington Co., Ainsworth, \textit{T. Cady s.n.} 7 Jun 1998 (MICH). Kansas: Cherokee Co., Baxter Springs, \textit{R. L. McGregor 15686} 18 Jun 1960 (NCU); Cherokee Co., Baxter Springs, \textit{Ralph Brooks 16252} 2 Aug 1982 (KANU); Cherokee Co., Baxter Springs, \textit{Ronald L. McGregor 1656} 3 Jul 1948 (KANU); Cherokee Co., Crestline, \textit{Ole A. Kolstad 2252} 3 Jun 1964 (KANU); Cherokee Co., Crestline, \textit{Ronald L. McGregor 38229} 28 May 1987 (KANU); Cherokee Co., Galena, \textit{William T. Barker 2122} 3 Jun 1966 (KANU); Cherokee Co., Crestline, \textit{Caleb A. Morse 9674} 17 Jun 2003 (KANU); Douglas Co., Baldwin City, \textit{Craig C. Freeman 2517} 5 Jun 1988 (KANU); Douglas Co., Big Springs, \textit{Craig C. Freeman 19063} 25 Jun 2002 (KANU); Douglas Co., Lawrence, University of Kansas Campus West, \textit{Ronald L. McGregor 40489} 26 May 1992 (KANU); Douglas Co., Univ. of Kansas Campus West, \textit{R. L. McGregor 40537} 15 Jun 1992 (OKL); Greenwood Co., Severy, \textit{C. C. Freeman 14786} 14 Jun 2000 (MSC); Jackson Co., Mayetta, \textit{Frank J Norman 15} 19 May 2001 (KANU); Jefferson Co., McClouth, \textit{Craig C. Freeman 20045A} 30 Jun 2004 (KANU); Jefferson Co., Perry, \textit{Erin Questad s.n.} 2 Jun 2004 (KANU); Jefferson Co., Perry, \textit{Suneeti Jog s.n.} 2 Jun 2004 (KANU); Jefferson Co., Williamstown, \textit{Caleb A. Morse 9436} 27 May 2003 (KANU); Labette Co., Mound Valley, \textit{Ronald L. McGregor 37228} 17 Jun 1986 (KANU); Linn Co., La Cygne, \textit{Caleb A. Morse 7958} 23 May 2002 (KANU); Linn Co., La Cygne, \textit{Caleb A. Morse 8356} 24 Jun 2002 (KANU); Linn Co., La Cygne, \textit{Caleb A. Morse 8018} 23 May 2002 (KANU); Linn Co., Trading Post, \textit{Caleb A. Morse 10429} 14 May 2004 (KANU); Miami Co., Jingo, \textit{Caleb A. Morse 10489} 20 May 2004 (KANU); Miami Co., Somerset, \textit{C. A. Morse 4744} 30 May 2000 (NEB); Miami Co., Somerset, \textit{Caleb A. Morse 8032} 29 May 2002 (KANU); Neosho Co., Thayer, \textit{W. W. Holland 5470} 26 May 1986 (KANU); Wilson Co., Neodesha, \textit{Ole A. Kolstad 3099} 9 Jun 1965 (KANU). Kentucky: Barren Co., Scottsville Rd., \textit{C. Lapham 36} 23 May 1993 (EKY); Bath Co., Olympian Springs, \textit{F. T. McFarland 4386} 11 Jun 1938 (MICH); Bath Co., Peeled Oak, \textit{M. E. Wharton 2448a} 2 Jun 1938 (MICH); Bell Co., Cumberland Gap NP, \textit{D. F. Brunton 10350} 24 May 1991 (MICH); Boyle Co., Central Kentucky Wildlife Refuge, \textit{L. E. McKinney 4992} 13 May 1992 (EKY); Boyle Co., Junction City, \textit{M. E. Wharton 667} 3 Jul 1937 (MICH); Bullitt Co., Lake Nevin, \textit{C. R. Gunn 347} 16 Jun 1955 (NCU); Bullitt Co., Phelps Knob, \textit{R. Hannan 6423} 13 May 1981 (EKY); Caldwell Co., Bald Knob, \textit{R. Hannan 03709} 20 May 1980 (EKY); Calloway Co., Ft. Heiman, \textit{L. E. McKinney 4167} 30 May 1990 (EKY); Campbell Co., Silver Grove, \textit{R. Naczi 4768A} 3 Jun 1995 (MICH); Carlisle Co., Arlington, \textit{L. G. Hickok 8} 6 Jun 1969 (NCU); Carlisle Co., Arlington, \textit{D. O'Dell s.n.} 18 Jul 1962 (NCU); Carter Co., Carter Caves SP, \textit{D. F. Brunton 10292} 20 May 1991 (MICH); Casey Co., Liberty, \textit{M. Wharton 4334} 14 Jun 1939 (MICH); Clinton Co., Seventy-Six Falls, \textit{L. E. McKinney 6457} 31 May 1995 (MICH); Edmonson Co., Mammoth Cave, \textit{Davies s.n.} 17 Jun 1950 (NCU); Estill Co., Red River, \textit{M. Wharton 2268} 19 May 1938 (MICH); Estill Co., Burnham Woods, \textit{R. G. Guetig 637} 13 Jun 1988 (EKY); Estill Co., Burnham Woods, \textit{R. G. Gueting 298} 24 Jun 1987 (EKY); Estill Co., White Oak Cliff, \textit{R. G. Guetig 912} 24 Aug 1988 (EKY); Fleming Co., Sprulock Gap, \textit{R. Hannan 6775} 3 Jun 1981 (EKY); Franklin Co., Echo Spring Swamp, \textit{Steve Rice s.n.} 12 Jul 1984 (EKY); Franklin Co., Fault Hill, \textit{Steve Rice s.n.} 24 May 1983 (EKY); Fulton Co., Cayce, \textit{D. O'Dell 1133} 24 Jul 1962 (NCU); Garrard Co., Maywoods Environmental and Educational Laboratory, \textit{D. A. Godbey 132} 26 May 1983 (EKY); Grant Co., Crittenden, \textit{R. Naczi 7887} 17 May 1999 (MICH); Greenup Co., Jesse Stuart State Nature Preserve, \textit{L. E. McKinney 6243} 8 Jun 1994 (MICH); Hardin Co., Alexander Seep, \textit{R. Cranfill 319} 2 Jul 1977 (MICH); Hardin Co., Cap Hollow, \textit{R. Cranfill 664} 24 May 1978 (MICH); Hardin Co., Elizabethtown, \textit{Landon E. McKinney 4640} 11 May 1991 (VDB); Hardin Co., Ft. Knox Army Post, \textit{R. A. Thompson K0334} 6 Aug 1990 (OKL); Hardin Co., Vernon Douglas State Nature Preserve, \textit{L. E. McKinney 4640} 11 May 1991 (EKY); Knott Co., Breeding Creek area, \textit{L. E. McKinney 6197} 20 May 1994 (MICH); Laurel Co., Rock Creek Gorge, \textit{R. L. Thompson 89-814} 29 May 1989 (EKY); Laurel Co., Rock Creek Gorge, \textit{R. L. Thompson 86-151} 31 May 1986 (EKY); Laurel Co., Rock Creek Gorge, \textit{R. L. Thompson 89-676} 24 May 1989 (EKY); Lawrence Co., Fallsburg, \textit{A. W. Cusick 30913} 24 May 1993 (MICH); Lawrence Co., Summit, \textit{A. W. Cusick 30972} 1 Jun 1993 (VPI); Lewis Co., Hymes Knob, \textit{L. E. McKinney 6390} 16 May 1995 (MICH); Lincoln Co., Crab Orchard, \textit{M. Wharton 2103} 10 May 1938 (MICH); Lyon Co., Lyon/Trigg County Line, \textit{L. E. McKinney 4975} 5 May 1992 (EKY); Madison Co., Berea, \textit{D. D. Taylor 1479} 30 May 1982 (NCU); Madison Co., Bluegrass Army Depot, \textit{G. W. Libby OB-675} 28 Jul 1993 (MICH); Madison Co., Bluegrass Army Depot, \textit{G. W. Libby OB-296} 26 May 1993 (MICH); Madison Co., Kentucky River Palisades, \textit{J. S. Lassetter 2991} 23 Jun 1978 (EKY); Madison Co., Pilot Knob, \textit{M. Wharton 712} 6 Jul 1937 (MICH); Marion Co., Jessietown, \textit{R. Hannan 7275} 22 Jun 1981 (EKY); Meade Co., Battletown, \textit{R. C.H. 109} 10 Jun 1949 (NCU); Metcalfe Co., US 68, \textit{W. Meijer s.n.} 24 May 1969 (NCU); Muhlenberg Co., Sector 1, \textit{L. E. McKinney 5674} 1 Jun 1993 (EKY); Pike Co., Brushy Creek, \textit{F. Levy s.n.} 10 Jun 1983 (NCU); Rockcastle Co., Anglin Falls Hollow, \textit{N. Denton 0426} 8 Jun 1989 (EKY); Rockcastle Co., Livingstone, \textit{H. E. Ahles 54431} 17 Jun 1961 (NCU); Rowan Co., Cave Run Lake, Daniel Boone NF, \textit{W. D. Longbottom 3564} 25 May 1993 (MARY); Trigg Co., Fort Campbell Military Reservation, \textit{L. E. McKinney 5448} 18 May 1993 (MICH); Trigg Co., Ft. Campbell Army Post, \textit{F. L. Johnson CAM0135} 7 Jun 1991 (OKL); Trigg Co., Land Between The Lakes, \textit{W. H. Ellis 1084} 7 Jun 1966 (NCU); Union Co., Sullivan, \textit{J. Conrad 1019} 27 May 1970 (NCU); Warren Co., Woodburn, \textit{D. F. Brunton 10304} 21 May 1991 (MICH); Wayne Co., Monticello, \textit{R. Naczi 7967} 20 May 1999 (MICH); Whitley Co., Hwy 1277, \textit{L. E. McKinney 5428} 14 May 1993 (MICH); Whitley Co., Grove Road, \textit{L. E. McKinney 5428} 14 May 1993 (EKY). Maine: Clinton Co., Maple Rapids, \textit{G. W. Parmelee 96} 19 Jun 1952 (MICH). Maryland: Beltonvale, \textit{A. Chase 876} 4 Jul 1907 (MICH); Potomac Valley, Chevy Chase, \textit{A. Chase 2461} 13 Jul 1904 (OKL); Allegany Co., La Valle, \textit{D. D. Boone 840605-SN} 5 Jun 1984 (TAWES); Allegany Co., Martin Mt., \textit{C. T. Frye 2084} 11 Aug 1999 (TAWES); Allegany Co., Selinger Marsh, Flintstone, \textit{C. Lea 2137} 28 Jun 2000 (MARY); Anne Arundel Co., Broad Creek Park, \textit{W. D. Longbottom 2963} 23 May 1992 (MARY); Carroll Co., Westminster, \textit{R. S. Thompson 31} 1 Jul 1943 (MARY); Cecil Co., Rising Sun, \textit{C. Lea 1879} 3 Jun 2000 (MARY); Frederick Co., Catoctin Mt., \textit{S. S. Tepfer 1324} 8 Jun 1941 (MARY); Frederick Co., Catoctin Range, \textit{E. Baltass 271} 30 May 1951 (MARY); Frederick Co., Cunningham Falls, \textit{R. Wiegand 880601-SN} 1 Jun 1988 (TAWES); Montgomery Co., Along Travailan Road, \textit{W. D. Longbottom 3595} 10 Jun 1993 (MARY); Montgomery Co., Bear Island, \textit{C. Lea 1584} 14 May 2000 (MARY); Montgomery Co., Blockhouse Point Park, Darnestown, \textit{C. Lea 2067} 17 Jun 2000 (MARY); Montgomery Co., Great Falls NP, Bear Island, \textit{C. Lea 881} 16 May 1998 (TAWES); Prince Georges Co., Dillum, \textit{B. Swanton 1619} 14 Jun 1989 (MARY); Prince George's Co., Beltsville, \textit{B. Swanton 1586} 20 Jun 1939 (MARY); Washington Co., US 40, \textit{D. D. Boone 850704-SN} 4 Jul 1985 (TAWES); Washington Co., Shupoburg, \textit{B. Swanton 1621} 7 Jun 1939 (MARY); Washington Co., Elk Ridge, \textit{R. E. Riefner, Jr. 80-206} 5 Jul 1980 (MICH). Massachusetts: Hampden Co., Holyoke, \textit{H. E. Ahles 86665} 1 Jun 1979 (WV). Michigan: Grand Rapids, \textit{E. J. Cole s.n.} 18 Jun 1898 (MICH); Clinton Co., Maple Rapids, \textit{G. W. Parmelee 46} 17 Jun 1952 (MICH); Clinton Co., Maple Rapids, \textit{G. W. Parmelee 133} 20 Jun 1952 (MSC); Clinton Co., Maple Rapids, \textit{G. W. Parmelee 74} 18 Jun 1952 (MSC); Ionia Co., North Plains, \textit{C. F. Wheeler s.n.} 26 Jun 1889 (MICH); Ionia Co., North Plains, \textit{C. F. Wheeler s.n.} 19 Jun 1890 (MICH); Kalamazoo Co., Goose Lake, \textit{C. R. Hanes 117} 25 Jun 1934 (MICH); Kalamazoo Co., Schoolcraft Twp., \textit{C. R. Hanes s.n.} 25 Jun 1934 (MICH); Lenawee Co., Madison Twp., \textit{R. W. Smith 2548} 18 Jun 1988 (MICH); Washtenaw Co., Whitmore Lake, \textit{F. J. Hermann 9470} 1 Jun 1938 (MICH); Wayne Co., Detroit, \textit{E. C. Almendinger s.n.} 14 Jul 1877 (MICH). Mississippi: Attala Co., Kosciusko, \textit{C. T. Bryson 4144} 12 Apr 1986 (MICH); Benton Co., US Hwy 78, \textit{C. T. Bryson 9974} 18 May 1990 (MICH); Benton Co., Ashland, \textit{C. T. Bryson 14797} 21 Apr 1995 (MICH); Carroll Co., Carrollton, \textit{C. T. Bryson 5426} 22 Apr 1987 (MICH); Grenada Co., Camp McCain, \textit{C. T. Bryson 15214} 20 May 1996 (MICH); Grenada Co., Gore Springs, \textit{C. T. Bryson 3360} 25 May 1982 (MICH); Lafayette Co., Oxford, \textit{C. T. Bryson 5617} 5 May 1987 (MICH); Lee Co., Tupelo, \textit{C. T. Bryson 3221} 1 May 1982 (MICH); Lee Co., Tupelo, \textit{C. T. Bryson 3386} 29 May 1982 (MICH); Lowndes Co., Mayhew, \textit{C. T. Bryson 9869} 17 May 1990 (MSC); Lowndes Co., Mayhew, \textit{C. T. Bryson 3272} 10 May 1982 (MICH); Marshall Co., Holly Springs, \textit{C. T. Bryson 994} 18 May 1990 (MICH); Pontotoc Co., Sherman, \textit{C. T. Bryson 9935} 18 May 1990 (MICH); Tishomingo Co., Mingo, \textit{C. T. Bryson 11687} 17 May 1992 (TAES); Yalobusha Co., Holly Springs NF, \textit{C. T. Bryson 12469} 2 Jul 1993 (MICH). Missouri: Benton Co., Lake Creek, \textit{D. Castaner 6297} 16 May 1981 (TAES); Boone Co., Bradford Farms, \textit{P. M. McKenzie 1448} 23 Jun 1994 (MICH); Boone Co., Columbia, \textit{Norlan C Henderson 66-559} 1 Jul 1966 (KANU); Butler Co., Hwy 67, \textit{J. Kessler 7234} 15 Jun 1981 (TAES); Calloway Co., Dixie State Rec. Area, \textit{V. E. McNeilus 92-557} 8 Jul 1992 (MICH); Calloway Co., Kingdom City, \textit{V. E. McNeilus 94-525} 5 Jun 1994 (MSC); Camden Co., Lake of the Ozarks SP, \textit{T. B. Croat 17099} 13 May 1972 (NCU); Cape Girardeau Co., Cape Girardeau, \textit{Travis E Brooks 6363} 8 Jun 1972 (KANU); Cape Girardeau Co., Cape Girardeau, \textit{Travis Brooks 6921} 24 May 1973 (KANU); Cape Girardeau Co., Cape Girardeau, \textit{Travis Brooks 6917} 24 May 1973 (KANU); Cape Girardeau Co., Cape Girardeau, \textit{Travis Brooks 6942} 24 May 1973 (KANU); Christian Co., Busiek State Forest, \textit{D. Castaner 9224} 22 May 1986 (MICH); Christian Co., Nixa, \textit{R. W. Sanders 75005} 30 Jun 1975 (MICH); Dent Co., State Hwy 19, \textit{T. G. Lammers 9437} 24 Jun 1995 (MICH); Douglas Co., State Hwy 181, \textit{T. G. Lammers 9419} 23 Jun 1995 (MICH); Douglas Co., Hwy 14, \textit{D. Castaner 8365} 21 May 1985 (MICH); Dunklin Co., Malden, \textit{P. M. McKenzie 1856} 3 Jun 1999 (MO); Greene Co., Springfield, \textit{D. Sutherland 1609} 31 May 1968 (NEB); Howell Co., White Ranch Conservation Area, \textit{B. Summers 9706} 9 May 2001 (MO); Iron Co., Taum Sauk Mt., \textit{P. M. McKenzie 1400} 8 Jun 1994 (MICH); Jefferson Co., DeSoto, \textit{P. H. Raven 26978} 11 May 1986 (NCU); Jefferson Co., Goldman, \textit{G. Davidse 3355} 3 Jun 1973 (MSC); Johnson Co., Knob Noster SP, \textit{K. Campbell 105} 10 Jun 1976 (MICH); Laclede Co., Bennett Springs SP, \textit{K. Campbell 177} 2 Jul 1977 (MICH); Miller Co., Brumley, \textit{Steve Stephens 56368} 6 Jul 1972 (KANU); Miller Co., Iberia, \textit{J. A. Steyermark 13046} 4 Jul 1934 (MICH); Miller Co., Lake Ozark SP, \textit{K. Campbell 166} 4 Jun 1977 (MICH); Morgan Co., Hwy CC, \textit{D. Castaner 6312} 16 May 1981 (MICH); Ozark Co., Route O, \textit{D. Castaner 8432} 22 May 1985 (VPI); Perry Co., State route V, \textit{R. Carter 7902} 16 Jul 1989 (TAES); Perry Co., McBride, \textit{D. Castaner 7078} 13 Jun 1982 (MICH); Phelps Co., Rolla, \textit{T. G. Lammers 9401} 23 Jun 1995 (MICH); Pike Co., Eolia, \textit{John Davis s.n.} 26 May 1918 (KANU); Pulaski Co., Ft. Leonard Wood Army Base, \textit{R. T. Ovrebo W0253} 4 Jun 1989 (OKL); Pulaski Co., Ft. Leonard Wood Army Base, \textit{R. T. Ovrebo W0306} 6 Jun 1989 (OKL); Pulaski Co., Ft. Leonard Wood Army Base, \textit{R. T. Ovrebo W0344} 8 Jun 1989 (OKL); Pulaski Co., Ft. Leonard Wood Army Base, \textit{R. T. Ovrebo W0189} 2 Jun 1989 (OKL); Pulaski Co., St. Robert, \textit{J. A. Raveill 3056} 15 Jun 1992 (EKY); Pulaski Co., \textit{R. T. Ovrebo W0253} 4 Jun 1989 (KANU); Reynolds Co., Ellington, \textit{Ronald L. McGregor 17198} 14 Jun 1962 (KANU); Reynolds Co., Lesterville, \textit{D. M. E. Ware 3670} 8 Jun 1971 (CLEMS); Saint Genevieve Co., Hawn SP, \textit{R. Randrianaivo 420} 18 May 1999 (MICH); Scott Co., Morley Quad, \textit{P. M. McKenzie 1998} 13 May 2002 (MO); Scott Co., Morly, \textit{S. D. Jones 8555} 16 May 1992 (MICH); Scott Co., unknown, \textit{Travis E. Brooks 6394} 14 Jun 1972 (KANU); Shannon Co., Mark Twain NF, \textit{D. Castaner 9774} 3 Jun 1987 (MICH); Shannon Co., Round Springs, \textit{D. M. Eggers 608} 18 May 1963 (NCU); St. Clair Co., Roscoe, \textit{D. Castaner 6493} 6 Jun 1981 (MICH); St. Francois Co., St. Francois SP, \textit{P. M. McKenzie 1426} 18 Jun 1994 (MICH); St. Louis Co., Missouri Baptist College, \textit{J. Lang 4006} 14 Jun 1969 (NCU); St. Louis Co., Allenton, \textit{Ralph E. Brooks 16724} 27 Jun 1983 (KANU); St. Louis Co., Babler SP, \textit{S. P. Churchill 2929} 22 May 1974 (NEB); St. Louis Co., Clayton, \textit{J. A. Steyermark 9202} 13 May 1930 (MICH); Stone Co., Galena, \textit{E. J. Palmer 5742} 25 May 1914 (MICH); Taney Co., Swan, \textit{B. F. Bush 4498} 17 May 1907 (WV); Texas Co., Highway 17, \textit{D. Castaner 11238} 3 Jun 1994 (MO); Texas Co., Mt. Grove, \textit{G. L. Pyrah s.n.} 26 May 1978 (NCU); Washington Co., Hwy 57, \textit{D. Castaner 6580} 14 Jun 1981 (MICH); Wayne Co., Route D, \textit{D. Castaner 9824} 4 Jun 1987 (MICH); Wright Co., State Rt. 95, \textit{M. A. Vincent 7024} 23 Jun 1995 (MICH). Nebraska: Lancaster Co., Olive Creek Wildlife Management Area, \textit{G. Steinauer 296} 19 Jun 1999 (NEB). New Jersey: Hunterdon Co., Delaware Township, \textit{J. D. Mitchell 644} 22 Jun 1993 (MICH); Morris Co., Morristown, \textit{R. H. True 438} 6 Jul 1935 (VPI); Somerset Co., Watchung, \textit{Harold N. Moldenke 1783} 21 Jun 1931 (WV). New York: Albany Co., Alcove, \textit{W. J. Crins 7629} 3 Jul 1989 (NYS); Albany Co., South Westerlo, \textit{G. C. Tucker 7270} 28 Jun 1992 (NYS); Albany Co., Westerlo, \textit{G. C. Tucker 6077} 17 Jun 1991 (NYS); Broome Co., Tracy Creek, \textit{R. T. Clausen 7278} 1 Aug 1948 (NYS); Cayuga Co., Springport, \textit{A. J. Eames 11586} 19 Jun 1919 (MICH); Chemung Co., Chemung, \textit{R. E. Zaremba 8713} 2 Jun 1991 (NYS); Columbia Co., Blue Stores, \textit{R. McVaugh 3214} 12 Jul 1935 (NYS); Columbia Co., Kinderhook, \textit{R. McVaugh 1836} 30 Jul 1933 (NYS); Columbia Co., Green River, \textit{R. McVaugh 3530} 30 Jul 1935 (NYS); Columbia Co., Elizaville, \textit{R. McVaugh 3198} 11 Jul 1935 (NYS); Columbia Co., Germantown, \textit{R. McVaugh 3312} 17 Jul 1935 (NYS); Columbia Co., Livingston, \textit{H. D. House 22663} 26 Jun 1935 (NYS); Columbia Co., New Forge, \textit{R. McVaugh 3472} 27 Jul 1935 (NYS); Columbia Co., Town of Cofake, \textit{R. McVaugh 3573} 31 Jul 1935 (NYS); Dutchess Co., Astor Point, \textit{T. Weldy 1875} 2 Jul 1997 (NYS); Dutchess Co., Clinton, \textit{R. E. Zaremba 3022} 1986 (NYS); Dutchess Co., Hyde Park, \textit{H. E. Ahles 71463} 18 Jun 1971 (MICH); Dutchess Co., Hyde Park, \textit{H E Ahles 71445} 18 Jun 1971 (KANU); Dutchess Co., Hyde Park, \textit{H. E. Ahles 71451} 18 Jun 1971 (NEB); Dutchess Co., Hyde Park, \textit{H. E. Ahles 71463} 18 Jun 1971 (NCU); Dutchess Co., Rhine Cliff, \textit{H. D. House 19280} 23 Jun 1932 (NYS); Dutchess Co., Stissing Mt., \textit{C. H. Peck s.n.} (NYS); Dutchess Co., Town of Dover, \textit{G. C. Tucker 4518} 8 Jul 1989 (NYS); Erie Co., Hamburg, \textit{G. C. Hicks s.n.} 30 Jun 1928 (MSC); Greene Co., Rudowitz Farm, \textit{G. C. Tucker 5334} 16 Jun 1990 (MICH); Greene Co., Catskill, \textit{H. D. House 32340} 1 Jun 1949 (NYS); Greene Co., Greenville, \textit{G. C. Tucker 6067} 16 Jun 1991 (NYS); Greene Co., Greenville, \textit{G. C. Tucker 7659} 8 Aug 1992 (NYS); Greene Co., Palenville, \textit{S. J. Smith 20227} 15 Jun 1956 (NYS); Oneida Co., Deerfield Ravine, \textit{J. V. Haberer 3893} 13 Jul 1912 (NYS); Onondaga Co., Bare Mt., \textit{D. DeLaubenfels s.n.} 25 Jul 1996 (NYS); Onondaga Co., Highland Forest County Park near Tully, \textit{S. M. Young s.n.} 5 Jul 1992 (NYS); Onondaga Co., Township of Clay, \textit{D. J. DeLaubenfels s.n.} 8 Jul 1997 (NYS); Onondaga Co., Township of Fabius, Apulia, \textit{D. Delaubenfels s.n.} 2 Jul 1996 (NYS); Orange Co., U. S. military academy reservation, \textit{J. G. Barbour 38} 12 Jun 1992 (MICH); Orange Co., Camp Buckner Rifle Range, \textit{J. G. Barbour 816} 13 Jun 1994 (MICH); Orange Co., Harriman SP, \textit{J. G. Barbour 788} 9 Jun 1993 (MICH); Orange Co., US Military Academy Reservation, \textit{J. G. Barbour 858} 16 Jun 1993 (NYS); Orange Co., Vail's Gate, \textit{H. D. House 25755} 14 Jun 1938 (NYS); Rensselaer Co., Grafton Lakes SP, \textit{P. Weatherbee 4369} 16 Jun 1997 (NYS); Rensselaer Co., Pittstown, \textit{H. D. House 19417} 2 Jul 1932 (NYS); Rensslauer Co., SE of West Sandlake, \textit{H. D. House 20354a} 18 Jun 1933 (NYS); Richmond Co., New York City, \textit{R. E. Zaremba 3529} 19 Jan 1986 (NYS); Richmond Co., New York City, \textit{R. E. Zaremba 2650} 19 Jul 1985 (NYS); Richmond Co., Staten Island, \textit{S. H. Burnham 917a} 29 May 1902 (OKL); Rockland Co., Harriman SP, \textit{J. G. Barbour 936} 30 Jun 1993 (NYS); Rockland Co., Iona Island, \textit{S. Young 1954} 17 Jun 1998 (NYS); Saratoga Co., Ballston Springs, \textit{H. D. House 19127} 10 Jun 1932 (NYS); Saratoga Co., Clifton Park, \textit{H. D. House 22803} 1 Aug 1935 (NYS); Saratoga Co., Saratoga Lake, \textit{H. D. House 24582} 9 Jun 1937 (NYS); Schenectady Co., Plotterkill Preserve, \textit{S. M. Young 1691} 25 Jun 1995 (NYS); Schuyler Co., Park Station, \textit{S. J. Smith 2445} 1 Jun 1945 (NYS); Suffolk Co., Greenport, \textit{R. Latham 23752} 1 Jun 1945 (NYS); Tompkins Co., Newfield Township, \textit{W. C. Wilson s.n.} 11 Jun 1936 (NYS); Tompkins Co., Ithaca, \textit{A. J. Eames s.n.} 28 Jun 1915 (NYS); Ulster Co., Lake Katrine, \textit{H. D. House 25651} 30 Jun 1938 (NYS); Ulster Co., Marbletown, \textit{H. F. Dunbar 1146} 13 Jun 1958 (NYS); Ulster Co., Saugerties, \textit{G. B. Rossbach 4048} 12 Jun 1962 (WV); Ulster Co., Town of Olive, \textit{J. Bierhorst 35} 20 Jun 1996 (NYS); Ulster Co., Town of Olive, Boiceville, \textit{J. Bierhorst s.n.} 19 Jun 1998 (NYS); Ulster Co., Town of Olive, West Shokan, \textit{J. Bierhorst s.n.} 9 Aug 1997 (NYS); Warren Co., Brayton, \textit{H. D. House 28674} 20 Jun 1942 (OKL); Warren Co., Lake George, \textit{H. D. House 26761} 18 Jul 1939 (NYS); Warren Co., Queensbury, \textit{H. D. House 27978} 15 Jul 1941 (NYS); Washington Co., Lake George, \textit{S. H. Burnham s.n.} 29 Jun 1915 (NYS); Washington Co., Lake George, \textit{R. E. Zaremba 4635} 17 Jul 1987 (NYS); Westchester Co., Anthony's Nose, \textit{T. Weldy 2045} 9 Jun 1998 (NYS). North Carolina: Ashe Co., Bluff Mt., \textit{G. E. Tucker 2599} 4 Jun 1965 (NCU); Ashe Co., The Peak, \textit{S. W. Leonard 3275} 31 May 1970 (NCU); Buncombe Co., Biltmore, \textit{W. W. Ashe s.n.} 12 Jun 1897 (NCU); Buncombe Co., Biltmore, \textit{W. W. Ashe 235c} 12 Jun 1897 (NCU); Buncombe Co., Reynolds, \textit{J. A. Churchill 86044} 25 May 1986 (MSC); Caswell Co., Anderson, \textit{C. R. Bell 11872} 22 May 1958 (NCU); Caswell Co., Hightower, \textit{C. R. Bell 11855} 22 May 1958 (NCU); Chatham Co., Mt. Carmel Church, \textit{A. E. Radford 4056} 7 May 1949 (NCU); Cherokee Co., Patrick, \textit{K. E. Rogers 41623} 18 Jun 1968 (NCU); Davidson Co., Beaverdam Creek headwaters, \textit{P. D. McMillan 2945} 7 May 1998 (CLEMS); Davidson Co., Silver Valley, \textit{A. E. Radford 12755} 16 Jun 1956 (NCU); Durham Co., Bland, \textit{A. E. Radford 43119} 31 May 1960 (NCU); Durham Co., Bland, \textit{A. E. Radford 43127} 31 May 1960 (NCU); Durham Co., Weaver, \textit{H. E. Ahles 57944} 15 May 1963 (NCU); Forsyth Co., Kernersville, \textit{H. E. Ahles 40695} 17 May 1958 (NCU); Forsyth Co., Kernersville, \textit{H. E. Ahles 40714} 17 May 1958 (NCU); Granville Co., Dickerson, \textit{H. E. Ahles 12671} 22 May 1956 (NCU); Harnett Co., Lillington, \textit{H. Laing 1276} 15 May 1957 (NCU); Haywood Co., Crabtree, \textit{H. E. Ahles 42194} 5 Jun 1958 (NCU); Iredell Co., US 21, \textit{H. E. Ahles 41059} 18 May 1958 (NCU); Lee Co., Salem Church, \textit{S. Stewart 522} 9 Jun 1958 (NCU); Macon Co., Ellijay, \textit{A. E. Radford s.n.} 24 Jun 1946 (NCU); Macon Co., Ellijay, \textit{A. E. Radford 22646} (NCU); Macon Co., Ellijay PO, \textit{A E Radford 31547} (KANU); Madison Co., Marshall, \textit{H. E. Ahles 42428} 6 Jun 1958 (NCU); Mecklenburg Co., Stephens Rd., \textit{J. F. Matthews s.n.} 27 May 1993 (MICH); Montgomery Co., Mt. Gilead, \textit{A. E. Radford 13210} 24 Jun 1956 (NCU); Montgomery Co., Uwharrie, \textit{E. F. Wells 3012} 18 May 1970 (NCU); Montgomery Co., Uwharrie, \textit{A. E. Radford 2984} 18 May 1970 (OKL); Montgomery Co., Uwharrie Wildlife Management Area, \textit{E. F. Wells 1131} 15 Jun 1969 (NCU); Orange Co., Chapel Hill, \textit{A. E. Radford 587a} 10 May 1940 (NCU); Orange Co., Chapel Hill, \textit{W. C. Coker s.n.} 14 May 1910 (NCU); Orange Co., Hillsboro, \textit{A. E. Radford 42905} 20 May 1960 (NCU); Person Co., Woodsdale, \textit{C. R. Bell 12265} 2 Jun 1958 (NCU); Person Co., Woodsdale, \textit{A. E. Radford 43177} 2 Jun 1960 (NCU); Randolph Co., Liberty, \textit{C. R. Bell 11979} 27 May 1958 (NCU); Randolph Co., New Hope, \textit{A. E. Radford 43014} 24 May 1960 (NCU); Rockingham Co., Thompsonville, \textit{A. E. Radford 13543} 7 Jul 1956 (NCU); Rowan Co., Cleveland, \textit{A. E. Radford 11571} 26 May 1956 (NCU); Rowan Co., Spencer, \textit{A. E. Radford 11511} 26 May 1956 (NCU); Stokes Co., Belews Creek, \textit{A. E. Radford 34494} 4 Jun 1958 (NCU); Vance Co., Townsville, \textit{H. E. Ahles 12753} 22 May 1956 (NCU); Wake Co., William B. Umstead SP, \textit{G. P. Sawyer Jr. 1114} 20 Jun 1964 (TAES). Ohio: Holiday Inn, Turnpike exit 11, \textit{C. B. Stott 1789} 16 Jun 1969 (MSC); Vermillion, \textit{C. L. Mosley s.n.} 3 Sep 1896 (MSC); Champaign Co., Urbana, \textit{J. Samples s.n.} 5 Jun 1840 (MICH); Coshocton Co., Coshocton, \textit{H. N. Moldenke 12545} 17 May 1942 (WV); Cuyahoga Co., Independence, \textit{S. A. Reznicek 52} 10 Jun 1982 (MICH); Cuyahoga Co., Independence, \textit{S. A. Reznicek 58} 10 Jun 1982 (MICH); Franklin Co., Pickerington Pond, \textit{J. S. McCormac 4710} 12 Jun 1992 (MICH); Jackson Co., Jackson, \textit{J. A. Churchill s.n.} 25 Jun 1956 (MSC); Jefferson Co., Annapolis, \textit{A. W. Cusick 458} 29 May 1965 (NCU); Lawrence Co., Co. Rt. 6, \textit{A. Cusick 22702} 6 Jul 1983 (MICH); Lorain Co., Chance Creek, \textit{F. O. Grover s.n.} 31 Jul 1912 (MICH); Lorain Co., Oak Point, \textit{F. O. Grover s.n.} 3 Jun 1922 (MICH); Mahoning Co., Berlin Twp., \textit{A. W. Cusick 10874} 8 Jun 1970 (NCU); Monroe Co., St. Rt. 26, \textit{A. W. Cusick 9970} 21 Aug 1969 (NCU); Monroe Co., Monroe Lake, \textit{A. W. Cusick 7505} 14 Jun 1968 (NCU); Muskingum Co., White Eyes Creek, \textit{A. Cusick 22749} 19 Jul 1983 (MICH); Ross Co., Betsch Fen, \textit{D. Minney 07-1} 15 Jul 1992 (MICH); Scioto Co., Shawnee State Forest, \textit{D. Demaree 10668} 24 May 1934 (MO); Tuscarawas Co., Sandy Twp., \textit{A. W. Cusick 5021} 3 Jul 1967 (NCU). Oklahoma: Adair Co., Kansas, \textit{U. T. Waterfall 9579} 7 Jul 1950 (OKL); Atoka Co., Sandhills Nature Preserve, \textit{P. Folley 1514} 4 Aug 1995 (OKL); Bryan Co., Bennington, \textit{J. Taylor 1675} 17 May 1963 (OKL); Cherokee Co., White Oak Branch, \textit{M. D. Proctor GRU0329} 12 May 1993 (OKL); Cherokee Co., Quallis Rd., \textit{M. D. Proctor GRU0517} 15 Jun 1993 (OKL); Cherokee Co., Tahlequah, \textit{G. J. Goodman 4717} 1 May 1948 (OKL); Cherokee Co., Eldon, \textit{P. Folley 2044} 6 Jun 1997 (OKL); Cherokee Co., Tahlequah, \textit{U. T. Waterfall 10059} 25 Jun 1951 (TAES); Cherokee Co., US 62, \textit{S. D. Jones 11132} 26 May 1994 (MICH); Delaware Co., Dripping Springs, \textit{C. S. Wallis 4444} 30 Jun 1957 (OKL); Delaware Co., Little Kansas, \textit{C. S. Wallis 7351} 12 Jul 1958 (NCU); Delaware Co., Siloam Springs, \textit{U. T. Waterfall 8211} 8 Jul 1948 (OKL); Haskell Co., Hancock Mt., \textit{D. Benesh e087} 6 May 1998 (OKL); Latimer Co., \textit{R. Bebb 5504} 30 May 1940 (OKL); LeFlore Co., US 259, \textit{L. K. Magrath 17823} 10 May 1990 (OKL); LeFlore Co., Smithville, \textit{L. K. Magrath 17895} 16 May 1990 (OKL); Mayes Co., Oklahoma Ozarks, \textit{C. S. Wallis 3204} 27 May 1956 (OKL); McCurtain Co., Broken Bow, \textit{M. Fisher s.n.} 6 Jun 1978 (OKL); McCurtain Co., Eagletown, \textit{E. L. Little, Jr. 1481} 4 Jun 1930 (OKL); McCurtain Co., Weston, \textit{D. Castaner 9693} 14 May 1987 (MICH); McIntosh Co., Canadian River, \textit{A. Buthod AB-4181} 10 May 2002 (OKL); Muskogee Co., Braggs Mt., \textit{M. D. Procher GRU0366} 13 May 1993 (OKL); Muskogee Co., Greenleaf Lake, \textit{U. T. Waterfall 9496} 17 Jun 1950 (OKL); Nowata Co., Oolagah Wildlife Management Area, \textit{B. Hoagland OOL475} 5 Jul 2000 (OKL); Pontotoc Co., \textit{P. Folley 1427} 13 May 1995 (OKL); Sequoyah Co., Marble City, \textit{G. J. Goodman 7440} 4 May 1963 (OKL). Pennsylvania: Adams Co., Gettysburg Nat. Military Park, \textit{D. F. Brunton 10270} 18 May 1991 (MICH); Alleghany Co., Pittsburgh, \textit{A. E. Jennings s.n.} 17 Jun 1908 (NCU); Bedford Co., Bedford, \textit{D. Berkheimer 2679} 22 Jun 1941 (GH); Bedford Co., Bedford, \textit{J. A. Churchill s.n.} 15 Jun 1958 (MSC); Bedford Co., West End, \textit{H. Duppstadt s.n.} 15 Jun 1969 (WV); Bedford Co., West End, \textit{Homer Duppstadt s.n.} 19 Jun 1969 (KANU); Berks Co., Moselem Station, \textit{H. Wilkens 5533-x} 26 Jun 1938 (GH); Berks Co., Lobachsville, \textit{D. Berkheimer 3711} 10 Jun 1943 (MICH); Berks Co., Friedensburg, \textit{H. Wilkens 5844} 10 Jun 1939 (GH); Bradford Co., Bentley Creek, \textit{H. A. Wahl 17384} 16 Jun 1956 (NCU); Bradford Co., Franklindale, \textit{R. Naczi 2609} 15 Jun 1990 (TAES); Bradford Co., Franklindale, \textit{R. Naczi 2586} 15 Jun 1990 (MICH); Bucks Co., Beaver Creek, \textit{F. J. Hermann 4286} 4 Jun 1933 (MICH); Bucks Co., Argus, \textit{C. D. Fretz s.n.} 19 Jun 1923 (GH); Bucks Co., Ottsville, \textit{F. J. Hermann 4286} 4 Jun 1933 (OKL); Bucks Co., Plumbsteadville, \textit{R. R. Dresbach 1666} 29 Jul 1923 (MICH); Bucks Co., Telford, \textit{W. M. Benner 1606} 5 Jun 1921 (MICH); Bucks Co., Upper Black Eddy, \textit{R. H. Time s.n.} 10 Jun 1925 (WV); Bucks Co., Upper Black Eddy, \textit{R. H. Time s.n.} 30 Jun 1931 (WV); Butler Co., Rt. 528, \textit{L. K. Henry s.n.} 15 Jul 1946 (NCU); Butler Co., Epworth League Woods, \textit{L. K. Henry s.n.} 5 Jun 1952 (NCU); Centre Co., State College, \textit{P. E. Rothrock 654} 17 Jul 1975 (MICH); Centre Co., Unionville, \textit{H. A. Wahl 990} 2 Jun 1941 (NEB); Chester Co., Paoli, \textit{F. W. Pennell 3908} 26 Jun 1912 (NEB); Chester Co., Struct Road Station, \textit{H. E. Stone 296} 30 May 1925 (GH); Clearfield Co., Ansonville, \textit{E. B. Ehrle 2348} 13 Jun 1957 (NYS); Clearfield Co., Clearfield, \textit{E. B. Ehrle 1901} 10 Jun 1956 (NCU); Delaware Co., Addingham, \textit{R. R. Dreisbach 1492} 16 Jun 1923 (MICH); Delaware Co., Swarthmore, \textit{F. J. Hermann 3098} 29 May 1932 (MICH); Delaware Co., Williamson School, \textit{R. R. Dresibach 2253} 29 Jun 1924 (MICH); Delaware Co., Williamson School, \textit{F. J. Hermann 4340} 10 Jun 1933 (GH); Elk Co., Caledonia, \textit{H. A. Wahl 18928} 10 Jun 1959 (NCU); Huntingdon Co., Barree, \textit{H. A. Wahl 1020} 17 Jun 1941 (NEB); Lebanon Co., Newmanstown, \textit{C. S. Keener 237} 16 Jun 1959 (WV); Lehigh Co., Hosensack, \textit{H. W. Pretz 12578} 21 Jun 1925 (MSC); Lehigh Co., Mosserville, 1 N, \textit{R. L. Schaeffer, Jr 35721} 28 Jun 1951 (KANU); Mifflin Co., Bald Eagle State Forest, \textit{A. W. Cusick 31045} 17 Jun 1993 (MICH); Monroe Co., Poplar Valley, \textit{F. B. Buser 11637} 12 Jun 1978 (GH); Montgomery Co., Glasgow, \textit{David Berkheimer 4822} 8 Jun 1944 (KANU); Montgomery Co., Schwenksville, \textit{E. T. Wherry s.n.} 5 Jun 1960 (VPI); Northampton Co., Chapman Quarries, \textit{R. L. Schaeffer 13012} 23 Jun 1941 (GH); Northampton Co., Stouts, \textit{R. L. Schaeffer 26324} 3 Jul 1947 (GH); Northampton Co., Slate Valley, \textit{R. L. Schaeffer 7366} 11 Jul 1940 (GH); Northampton Co., Portland, \textit{L. F. Randolph 72} 5 Jun 1922 (GH); Northampton Co., Point Phillip, \textit{B. Long 43946} 28 Jun 1934 (GH); Schuylkill Co., St. Clair, \textit{J. A. Churchill s.n.} 14 Aug 1969 (MSC); Snyder Co., Meiserville, \textit{P. E. Rothrock 512} 13 Jun 1975 (NCU); Union Co., Glen Iron, \textit{P. E. Rothrock 505} 13 Jun 1975 (NCU). South Carolina: Abbeville Co., Abbeville, \textit{C. N. Horn 9058} 13 May 1995 (USCH); Abbeville Co., Cedar Springs, \textit{J. B. Nelson 21099} 21 Apr 2000 (USCH); Abbeville Co., Richard Russell Dam and Lake Area, \textit{W. C. Credle 843} 6 Jun 1979 (CLEMS); Abbeville Co., Richard Russell Dam and Lake Area, \textit{W. C. Credle 725} 21 May 1979 (CLEMS); Abbeville Co., Sumter NF, \textit{J. B. Nelson 17265} 31 May 1996 (MICH); Cherokee Co., Gaffney, \textit{H. E. Ahles 26970} 4 Jun 1957 (NCU); Cherokee Co., Kings Mt. National Military Park, \textit{D. E. Kennemore Jr. 310} 17 May 1993 (USCH); Chester Co., Big Sky Prairie, \textit{A. Darr 1713} 6 Jun 2003 (USCH); Edgefield Co., Mt. Creek, \textit{A. E. Hodge 861} 9 May 1984 (CLEMS); Edgefield Co., Horn Creek Analysis Area, \textit{J. B. Nelson 18045} 2 Apr 1997 (USCH); Edgefield Co., Horn Creek Analysis Area, \textit{J. B. Nelson 18166} 4 May 1997 (USCH); Edgefield Co., Sumter NF, \textit{J. B. Nelson 17265} 31 May 1996 (USCH); Edgefield Co., Sumter NF, \textit{J. B. Nelson 17438} 8 Jul 1996 (USCH); Edgefield Co., Trenton, \textit{A. E. Radford 22535} 12 May 1957 (NCU); Fairfield Co., Ridgeway, \textit{J. B. Nelson 18303} 24 May 1997 (USCH); Fairfield Co., Winnsboro, \textit{J. B. Nelson 19069} 19 Apr 1998 (USCH); Lancaster Co., Forty Acre Rock, \textit{J. C. Coffey 23} 4 Apr 1963 (USCH); Lancaster Co., Kershaw, \textit{B. F. Williamson 957} 3 Jun 1961 (NCU); Newberry Co., Pomaria, \textit{J. B. Nelson 22628} 23 May 2002 (USCH); Oconee Co., Earle's Ford Campground, \textit{R. W. Gettman 337} 29 Jun 1973 (CLEMS); Oconee Co., Station Cove, \textit{L. L. Gaddy s.n.} 22 Apr 1986 (CLEMS); Spartanburg Co., Cross Anchor, \textit{J. B. Nelson 22469} 17 Apr 2002 (USCH); Union Co., Sumter Nat Forest, \textit{C. N. Horn 6643} 14 May 1993 (MICH); Union Co., Tinker's Creek, \textit{O. M. Freeman 56148} 14 May 1956 (NCU); York Co., Kings Mt. National Military Park, \textit{D. E. Kennemore Jr. 491} 7 Jun 1993 (USCH); York Co., Kings Mt. SP, \textit{D. E. Kennemore Jr. 681} 6 Jul 1993 (USCH); York Co., Kings Mt. SP, \textit{D. E. Kennemore Jr. 642} 8 Jun 1993 (USCH); York Co., Kings Mt. SP, \textit{D. E. Kennemore Jr. 1379} 5 Jun 1994 (USCH); York Co., Rock Hill, \textit{J. B. Nelson 4630} 30 Apr 1986 (USCH). Tennessee: Benton Co., Rt 191, \textit{Hal R. DeSelm s.n.} 10 May 1993 (EKY); Bradley Co., Cleveland, \textit{L. R. Hesler 1087} 26 May 1934 (NCU); Carroll Co., Thompson School Road, \textit{Hal R. DeSelm s.n.} 21 Jun 1993 (EKY); Cheatham Co., Henrietta, \textit{E. W. Chester 81-289} 31 May 1981 (NCU); Cheatham Co., Pegram, \textit{H. K. Svenson 10339} 12 Jul 1939 (NYS); Clay Co., Celina, \textit{V. E. McNeilus 91-313} 13 May 1991 (NEB); Coffee Co., A. E. D. C. Wildland Management area. \textit{K. E. Rogers 44794} 19 May 1966 (NCU); Davidson Co., Bordeaux, \textit{R. Kral 42638} 16 May 1971 (VPI); Davidson Co., Couchville Barrens, \textit{V. E. McNeilus 88-520} 10 Jun 1988 (TAES); Davidson Co., Pearcy Priest Lake, \textit{G. Gonsoulin 3072} 12 May 1973 (WV); Dickson Co., White Bluff, \textit{R. Kral 55382} 13 May 1975 (VDB); Fayette Co., Amour Rd., \textit{Hal R. DeSelm s.n.} 18 Aug 1993 (EKY); Humphreys Co., Cuba Landing, \textit{R. Kral 80415B} 10 May 1992 (VDB); Knox Co., Northshore Drive, \textit{V. E. McNeilus 88-336} 16 May 1988 (TAES); Knox Co., Knoxville, \textit{V. E. McNeilus 88336} 16 May 1988 (MSC); Knox Co., Knoxville, \textit{A. Ruth s.n.} 1 May 1894 (MICH); Knox Co., Knoxville, \textit{A. Ruth s.n.} 1 May 1895 (MSC); Knox Co., Mascot, \textit{A. J. Sharp 734} 2 Jun 1946 (NCU); Lawrence Co., Laurel Hill Lake, \textit{R Kral 55485} 18 May 1975 (MICH); Loudon Co., Centerville, \textit{V. E. McNeilus 90-164} 30 Apr 1990 (TAES); Marion Co., Fiery Gizzard Gorges, \textit{R. C. Clark 1814a} 16 May 1965 (NCU); McNairy Co., Henderson, \textit{S. M. Bain 251} 5 May 1893 (MSC); Meigs Co., Fezzell Road, \textit{H. R. DeSelm 197} 3 Jun 1974 (EKY); Monroe Co., Tellico Plains, \textit{J. A. Churchill 93456} 2 Jul 1993 (MICH); Montgomery Co., Clarksville, \textit{A. Clebsch s.n.} 4 Jun 1950 (NCU); Roane Co., Fairview: Spiers Trailer, \textit{H. R. DeSelm 197} 3 Jun 1974 (EKY); Rutherford Co., Smyrna, \textit{R. Kral 55369} 9 May 1975 (MICH); Stewart Co., Land Between the Lakes, \textit{W. H. Wllis s.n.} 21 May 1966 (NCU); Sumner Co., Taylor Hollow, \textit{R. Carter 1806} 17 May 1979 (VDB); Unicoi Co., Unicoi, \textit{J. A. Churchill 90-1512} 22 May 1990 (MSC); Williamson Co., Fernvale, \textit{R. Kral 85884} 19 May 1996 (MICH). Vermont: Bennington Co., Barbera's Pond Road, \textit{D. E. Boufford 17906} 12 Aug 1975 (NCU); Rutland Co., Benson, \textit{Clarence H. Knowlton s.n.} 19 Jul 1917 (KANU); Rutland Co., Brandon, \textit{D. L. Dutton 973} 3 Jul 1918 (GH); Rutland Co., Hubbardton, \textit{W. W. Eggleston s.n.} 17 Jul 1898 (KANU); Rutland Co., Ira, \textit{G. L. Kirk s.n.} 10 Jun 1911 (GH); Rutland Co., Sudbury, \textit{E. H. Eames 9160} 5 Aug 1915 (GH); Windham Co., Brattleboro, \textit{L. A. Wheeler 84803} 14 Jun 1922 (GH). Virginia: City of Newport News, Fort Eustis, \textit{P. K. Appler 576} 16 May 1973 (NCU); Albermarle Co., Bucks Elbow Mt., \textit{C. E. Stevens 7066} 24 Jun 1973 (VPI); Alleghany Co., Natural Well, \textit{G. P. Fleming 13065} 21 May 1997 (VPI); Arlington Co., Washington-Lee Highschool, \textit{A. Higginson 129} 25 May 1946 (MARY); Augusta Co., Sherando, \textit{E. P. Killip 32570} 7 Jun 1938 (MICH); Augusta Co., Elliott Knob, \textit{H. A. Allard 668} 23 Jun 1935 (VPI); Bath Co., Millboro, \textit{J. F. Townsend 2866} 7 Aug 2002 (VPI); Bedford Co., \textit{A. H. Curtiss s.n.} (KANU); Botetourt Co., Craig Co. Line, \textit{T. F. Wieboldt 4751} 18 Jul 1983 (VPI); Charles City Co., Wayside, \textit{D. M. E. Ware 4706} 11 May 1973 (NCU); City of Norfolk Co., Norfolk Botanical Gardens, \textit{G. P. Frank 242} 16 Jun 1980 (VPI); Clarke Co., Ashby Gap, \textit{T. Bradley 23421} 12 Jun 1990 (CLEMS); Craig Co., New Castle, \textit{T. F. Wieboldt 5683} 17 Jul 1985 (MICH); Culpeper Co., Buzzard Mt., \textit{H. A. Allard 20686} 6 Jun 1953 (WV); Culpeper Co., Buzzard Mt., \textit{H. A. Allard 21470} 6 Jun 1963 (KANU); Culpeper Co., Mt. Pony, \textit{H. A. Allard 2689} 16 May 1937 (VPI); Culpeper Co., Winston, \textit{J. A. Churchill s.n.} 28 Jul 1970 (MSC); Culpepper Co., Culpepper, \textit{H. A. Allard 1453} 15 May 1936 (VPI); Cumberland Co., Duncan's Store, \textit{T. F. Wieboldt 7143} 11 May 1990 (VPI); Dickenson Co., Cluichco, \textit{D. W. Ogle s.n.} 14 Jul 1987 (VPI); Fairfax Co., Fairfax, \textit{F. H. Sargent s.n.} 12 Jun 1949 (KANU); Fairfax Co., Ft. Hunt, \textit{S. F. Blake s.n.} 17 Jun 1933 (MSC); Fauguier Co., Beverly Mills, \textit{J. A. Churchill s.n.} 26 May 1968 (MSC); Fauquier Co., High Point, \textit{H. A. Allard 4926} 5 Jun 1938 (VPI); Fauquier Co., Hopewell Gap, \textit{H. A. Allard 498} 2 Jun 1935 (KANU); Fauquier Co., Pond Mt., \textit{H. A. Allard 11258} 20 May 1945 (WV); Fauquier Co., Western slope of Bull Run Mts, \textit{H. A. Allard 4734} 15 May 1938 (VPI); Fauquier Co., Western slope of Bull Run Mts, \textit{H. A. Allard 11239} 13 May 1945 (VPI); Fauquier Co., White Rocks, \textit{H. A. Allard 8710} 25 May 1941 (VPI); Fluvanna Co., Rt. 629, \textit{G. M. Diggs Jr. 264} 17 Jun 1975 (NCU); Fluvanna Co., Hardware, \textit{C. E. Stevens 4872} 18 May 1972 (VPI); Franklin Co., Ferrum, \textit{T. F. Wieboldt 9213} 11 May 1995 (VPI); Greene Co., McMullen, \textit{T. F. Wieboldt 2511} 3 Jul 1976 (NCU); Henry Co., VA 87, \textit{G. B. Straley 69103} 15 May 1969 (VPI); Highland Co., Bear Mt., \textit{A. B. Davenport s.n.} 25 Jun 1988 (VPI); Lee Co., Jonesville, \textit{L. J. Uttal 13184} 7 Jun 1984 (VPI); Lee Co., Thomas Cemetery, \textit{J. C. Ludwig 2726} 22 May 1996 (VPI); Lee Co., Jonesville, \textit{T. F. Wieboldt 5043} 30 May 1984 (VPI); Lee Co., N Tyler, \textit{D. W. Ogle s.n.} 21 May 1990 (VPI); Lee Co., The Cedars, \textit{D. W. Ogle 1393} 20 May 1979 (VPI); Lee Co., Jonesville, \textit{L. U. Uttal 7186} 5 Jun 1970 (VPI); Loudoun Co., Headwaters of Elklick Run, \textit{M. T. Strong 87-098} 14 Jun 1987 (USCH); Loudoun Co., Goose Creek, \textit{H. A. Allard 21436} 24 May 1953 (WV); Loudoun Co., Centerville, \textit{E. H. Walker 5604} 24 Jun 1950 (MARY); Loudoun Co., Goose Greek, \textit{H. A. Allard 20252} 30 May 1952 (WV); Madison Co., Aroda, \textit{T. Bradley 23363} 10 Jun 1990 (CLEMS); Montgomery Co., Ellett Creek bridge, \textit{L. J. Uttal 9723} 21 May 1973 (CLEMS); Montgomery Co., Blacksburg, \textit{M. L. Smyth 4526} 2 Jun 1978 (VPI); Montgomery Co., Ironto, \textit{R. Kral 10724} 6 Jul 1960 (NCU); Montgomery Co., Poverty Creek, \textit{L. J. Uttal 8113} 22 Jun 1971 (VPI); Montgomery Co., Roanoke Valley, \textit{W. B. McIntosh s.n.} 24 Jun 1947 (VPI); Orange Co., Burr Hill, \textit{T. Bradley 23292} 21 May 1990 (CLEMS); Orange Co., Burr Hill, \textit{T. Bradley 23280} 21 May 1990 (CLEMS); Page Co., Jollett, \textit{T. Bradley 19084} 24 May 1983 (NCU); Powhatan Co., Fine Creek, \textit{C. M. Corcoran 326} 10 May 1976 (NCU); Prince Edward Co., Farmville, \textit{A. M. Harvill 21313} 23 May 1969 (NCU); Prince Edward Co., Twin Lakes SP, \textit{J. F. Townsend 3241} 30 Jun 2004 (VPI); Prince William Co., Bull Run Mts, \textit{H. A. Allard 7716} 9 Jun 1940 (NY); Prince William Co., Eastern slope of Bull Run Mts, \textit{H. A. Allard 7715} 9 Jun 1940 (VPI); Prince William Co., Quantico Marine Base, \textit{B. W. Hoagland QUN0395} 19 Jun 1994 (OKL); Pulaski Co., Big Reed Island Creek Rd, \textit{L. J. Uttal 7177} 4 Jun 1970 (VPI); Roanoke Co., Bennett Springs, \textit{L. J. Uttal 8715} 22 May 1972 (VPI); Russell Co., Clinch Mt., \textit{D. W. Ogle 5950} 25 Jun 1985 (VPI); Russell Co., N Clinch River, \textit{D. W. Ogle 5644} 19 Jun 1983 (VPI); Russell Co., Russell Co. Park, \textit{D. W. Ogle 6026} 26 May 1986 (VPI); Scott Co., Gate City, \textit{T. F. Wieboldt 8625} 21 Jun 1993 (VPI); Shenandoah Co., Short Mt., \textit{H. A. Allard 8827} 6 Jun 1941 (VPI); Shenandoah Co., Hudson Crossroads, \textit{A. W. Cusick 23542} 13 Jun 1984 (NCU); Shenandoah Co., Mill Mt., \textit{H. A. Allard 4855} 28 May 1938 (VPI); Smyth Co., Hungry Hollow, \textit{J. K. Small s.n.} 7 Jun 1892 (MSC); Smyth Co., Marion, \textit{R. Leedy 1401} 30 May 1978 (VPI); Spotsylvania Co., Massaponax, \textit{T. Bradley 19131} 28 May 1983 (NCU); Westmoreland Co., Westmoreland SP, \textit{J. Dodge 1395} 4 Jun 1999 (VPI); Wise Co., Powell Mt., \textit{T. F. Wieboldt 6678} 2 Jun 1988 (MICH); Wythe Co., Wytheville, \textit{T. F. Wieboldt 5639} 27 Jun 1985 (VPI). West Virginia: Barbour Co., Tygart Valley River, \textit{G. B. Rossbach 9779} 26 Jun 1986 (WV); Barbour Co., Pediddle Road, \textit{W. N. Grafton s.n.} 3 Jul 1997 (WV); Berkeley Co., Sleepy Creek Lake Dam, \textit{W. N. Grafton s.n.} 27 Jun 2004 (WV); Berkeley Co., Tomahawk, \textit{E. L. Core 5881} 10 Jul 1937 (WV); Braxton Co., Gassaway, \textit{F. J. Boggs Jr. s.n.} 5 Jun 1953 (WV); Cabell Co., Roland Park, \textit{F. A. Gilbert 473} 21 Jun 1936 (WV); Doddridge Co., Ashley, \textit{E. L. Core 5595} 8 Jul 1937 (WV); Fayette Co., Ames Heights, \textit{D. W. Suiter 1580} 20 Jun 1993 (WV); Fayette Co., New River Gorge, \textit{W. N. Grafton s.n.} 4 Jul 1972 (WV); Gilmer Co., Tanner Creek, \textit{E. A. Bartholomew s.n.} 31 Jul 1965 (WV); Grant Co., Bayard, \textit{A. W. Cusick 24286} 28 May 1985 (WV); Grant Co., Cabins, \textit{G. B. Rossbach s.n.} 30 May 1953 (WV); Grant Co., Day Park at Arthur, \textit{W. N. Grafton s.n.} 22 Jun 2000 (WV); Grant Co., Monongahela NF, \textit{A. Cusick 23523} 12 Jun 1984 (MICH); Hancock Co., Orchard Run, Hillcrest Wildlife Management Area, \textit{W. N. Grafton s.n.} 7 Jul 2005 (WV); Hardy Co., Alleghenies, \textit{H. A. Allard 6732} 8 Jun 1939 (WV); Harrison Co., Dog Run Lake, \textit{W. N. Grafton s.n.} 1 Jun 1997 (WV); Jackson Co., Ripley, \textit{R. Guthrie s.n.} 16 May 1953 (WV); Kanawha Co., Camp Carlisle on Blue Creek., \textit{W. N. Grafton s.n.} 25 May 1980 (WV); Kanawha Co., Nitro, Redinour Park, \textit{G. C. Tucker 7108} 11 Jun 1992 (NYS); Lewis Co., Jackson's Mill Camp Reservoir, \textit{W. N. Grafton s.n.} 9 Jun 1995 (WV); Lincoln Co., Fez School, \textit{William N. Grafton s.n.} 28 May 1980 (WV); Lincoln Co., Fez, \textit{William N. Grafton s.n.} 28 May 1980 (WV); Marion Co., Fairview, \textit{E. L. Core 5211} 5 Jul 1937 (WV); Mason Co., Pt. Pleasant, \textit{H. C. Dahl s.n.} 1 Apr 1951 (WV); Mason Co., Arbuckle Twp., \textit{M. A. Vincent 4701} 22 May 1991 (WV); Mercer Co., Eads Mill, \textit{W. N. Grafton s.n.} 7 Jun 1987 (WV); Mercer Co., Pipestem SP, \textit{W. N. Grafton s.n.} 28 Jun 1997 (WV); Monongalia Co., Morgantown, \textit{W. N. Grafton s.n.} 26 May 1997 (WV); Monongalia Co., White Park in Morgantown, \textit{W. N. Grafton s.n.} 24 May 1995 (WV); Pendleton Co., Thorn Creek Rd, \textit{W. N. Grafton s.n.} 2 Jun 1998 (WV); Pocahontas Co., Frost, \textit{W. N. Grafton s.n.} 11 Jun 1996 (WV); Preston Co., Arthurdale, \textit{H. A. Davis 6386} 16 Jun 1944 (WV); Preston Co., US Rt. 50, \textit{A. W. Cusick 23471} 10 Jun 1984 (WV); Raleigh Co., Batoff Mt., \textit{J. P. Tosh 1126} 31 May 1941 (WV); Randolph Co., Huttonsville, \textit{E. E. Hutton s.n.} 29 May 1959 (WV); Ritchie Co., Pennsboro, \textit{E. L. Core 5657} 8 Jul 1937 (WV); Roane Co., Charles Fark Lake, \textit{W. N. Grafton s.n.} 26 Jun 2001 (WV); Roane Co., Hungry Beech Preserve, \textit{W. N. Grafton s.n.} 21 Jun 1979 (WV); Summers Co., Bluestone SP, \textit{W. N. Grafton s.n.} 14 Jul 1996 (WV); Summers Co., Pipestem SP, \textit{W. N. Grafton s.n.} 27 Jun 1997 (WV); Summers Co., Stony Creek, \textit{W. N. Grafton s.n.} 22 Jun 1976 (WV); Tucker Co., Canaan Valley, \textit{H. A. Allard 12295} 21 Jun 1947 (WV); Upshur Co., Buckhannon, \textit{G. B. Rossbach 2640} 16 Jun 1961 (WV); Upshur Co., Buckhannon, \textit{G. B. Rossbach s.n.} 23 Jun 1954 (WV); Wayne Co., Buffalo Creek, \textit{L. Plymale 405} 3 Jun 1938 (WV); Wayne Co., Doane Hollow, Cabwaylingo State Forest, \textit{W. N. Grafton s.n.} 27 Jun 1998 (WV); Wayne Co., Nestlow, \textit{A. W. Cusick 33182} 26 Jun 1996 (WV); Wayne Co., Prichard, \textit{J. B. Nelson 19535} 17 Jul 1998 (WV); Wirt Co., Palestine Bass Hatchery, \textit{E. A. Bartholomew W-4123} 5 Jun 1956 (NCU); Wirt Co., Elizabeth, \textit{E. A. Bartholomew W-4124} 24 Jun 1956 (WV); Wirt Co., Elizabeth, \textit{E. A. Bartholomew W 4110} (WV); Wirt Co., Palestine, \textit{E. A. Bartholomew s.n.} 27 May 1942 (NCU); Wirt Co., Palestine, \textit{E. A. Bartholomew W1941-1054} 24 May 1941 (WV); Wirt Co., Reedy Creek, \textit{E. A. Bartholomew W-4123} 5 Jun 1956 (WV). \textbf{\textsc{Carex roanensis}}. U. S. A. South Carolina: Oconee Co., Burrell's Ford, Chattooga River, \textit{M. G. Douglass 467} 16 May 1981 (CLEMS). West Virginia: Preston Co., Aurora, \textit{E.S. Steele 17 Aug 1898} (NY). \textbf{\textsc{Carex swanii}}. Canada. British Columbia: Southern Hernando Island, \textit{G. B. Stratley 8510} 11 Jun 1995 (MICH). Nova Scotia: Annapolis Co., Granville, \textit{M. L. Fernald 23487} 18 Jul 1921 (CAN); Shelburne Co., Islands Provincial Park, \textit{M. J. Oldham 13880} 26 Jun 1992 (MICH); Yarmouth Co., Lake George, \textit{M. L. Fernald 23486} 16 Jul 1921 (CAN); Yarmouth Co., Yarmouth, \textit{A. S. Pease} 4 Jul 1920 (KANU). Ontario: Elgin Co., Bayham Township, \textit{M. J. Oldham 12778} 16 Jun 1991 (WIS); Elgin Co., Port Burwell Provincial Park, \textit{M. J. Oldham 15213} 23 Jul 1993 (MICH); Essex Co., Ruscom River, \textit{M. J. Oldham 3000} 6 Jul 1982 (MICH); Essex Co., Anderson Tp., \textit{M. J. Oldham 2761} 14 Jun 1982 (MICH); Essex Co., Arner, \textit{Macoun 33750} 2 Aug 1901 (CAN); Essex Co., Cedar Creek, \textit{M. J. Oldham 6699} 12 Aug 1986 (MICH); Essex Co., Essex Centre, \textit{Macoun 32085} 1 Jul 1882 (CAN); Essex Co., Harrow, \textit{M. J. Oldham 2686} 6 Jun 1982 (CAN); Essex Co., Hillman Creek Marsh, \textit{S. J. Darbyshire 2606} 24 Jun 1985 (CAN); Essex Co., Hillman Sand Hills, \textit{M. J. Oldham 1648} 13 Jul 1981 (MICH); Essex Co., Kingsville, \textit{M. J. Oldham 2916} 26 Jun 1982 (CAN); Essex Co., Leamington \textit{Anonymous s.n.} 30 Jun 1882 (MTMG); Essex Co., Leamington, \textit{T. J. W. Burgess s.n.} 30 Jun 1882 (MICH); Essex Co., Leamington, \textit{T. Burgess s.n.} 1 Jul 1882 (CAN); Essex Co., Leamington, \textit{M. J. Oldham 1648} 13 Jul 1981 (CAN); Essex Co., Leamington, \textit{T. J. W. Burgess s.n.} 1 Jul 1882 (MTMG); Essex Co., Harrow, \textit{A. A. Reznicek 7159} 19 Jun 1983 (MICH); Essex Co., Oxley Poison Oak Swamp, \textit{M. J. Oldham 2686} 6 Jun 1982 (TAES); Essex Co., Reaume Prairie, \textit{M. J. Oldham 11056} 12 Jun 1990 (CAN); Essex Co., Ruscom River, \textit{M. J. Oldham 3000} 6 Jul 1982 (CAN); Essex Co., Tilbury West Conservation Area, \textit{M. J. Oldham 16410} 18 Jul 1994 (MICH); Essex Co., Kingsville, \textit{M. J. Oldham 2916} 26 Jun 1982 (MICH); Haldimand-Norfolk Co., Deer Creek, \textit{D. A. Sutherland 7191} 25 Jun 1986 (CAN); Kent Co., Wheatley Provincial Park, \textit{A. A. Reznicek s.n.} 3 Sep 1979 (MICH); Kent Co., Wheatley Provincial Park, \textit{M. J. Oldham 2835} 21 Jun 1982 (MICH); Lambton Co., Walpole Island, \textit{P. F. Maycock 7504} 18 Jun 1985 (MICH); Middlesex Co., Meadowlily Woods, London, \textit{M. J. Oldham 8565} 30 Aug 1988 (MICH); Middlesex Co., Sydenham River valley, \textit{M. J. Oldham 15135} 13 Jul 1993 (MICH); Perth Co., Ellice Swamp, \textit{M. J. Oldham 15257} 27 Jul 1993 (MICH). Quebec: Brome Co., Glen Sutton, \textit{Marie-Victorin 56374} 28 Jun 1941 (CAN); Brome Co., Sutton, \textit{Marie-Victorin 55268} 22 Jun 1941 (CAN); Missisquoi Co., Frelighsburg, \textit{L. Cinq-Mars 67-90} 29 Jun 1967 (CAN); Missisquoi Co., Frelighsburg, \textit{M. J. Oldham 7408} 18 Jun 1987 (TAES); Missisquoi Co., Frelighsburg, \textit{Marcel Raymond s.n.} 24 Jun 1953 (WIS). U. S. A. \textit{D. Clark s.n.} 1 Jul 1899 (MSC); \textit{H. C. Cowles s.n.} 24 Jun 1892 (MICH); Flora of the Western Reserve, \textit{G. B. Ashcroft 7441} 1 Jun 1897 (WIS). Alabama: Jackson Co., Pleasant Grove, \textit{R. Jones 7149} 8 Jul 1992 (VDB). Arkansas: Garland Co., Hot Springs NP, \textit{C. T. Bryson 5763} 24 May 1987 (MICH); Garland Co., Iron Springs Recreation Area, \textit{A. A. Reznicek 8494} 5 Jun 1989 (MICH); Garland Co., Ouachita National Forest, \textit{R. Naczi 3930} 19 May 1994 (NKY); Independence Co., McHue vicinity, \textit{Phillip E. Hyatt 5578.32} 30 May 1993 (MICH); Montgomery Co., Norman, \textit{R. Kral 77536} 12 May 1990 (VDB); Montgomery Co., Camp Albert Pike Rec. Area, \textit{J. Rettig 554} 20 May 1982 (VDB); Montgomery Co., Caddo Gap, \textit{R. Kral 77563} 12 May 1990 (VDB); Montgomery Co., Cox Springs, \textit{C. T. Bryson 4272} 10 May 1986 (MICH); Montgomery Co., Little Missouri River Falls Rec. Area, \textit{C. T. Bryson 4349} 10 May 1986 (MICH); Montgomery Co., Newton, \textit{R. Kral 76434} 26 May 1989 (VDB); Montgomery Co., Ouchita NF: Caney Creek WMA, \textit{S. D. Jones 10102} 18 May 1993 (VPI); Polk Co., Shady Lake Campground, \textit{Charles T. Bryson 4340} 10 May 1986 (VDB); Polk Co., McKinley Mt., \textit{R. Kral 76412} 23 May 1989 (VDB); Polk Co., Cossatat River, \textit{S. Jones 4638} 13 May 1990 (VDB); Polk Co., Rich Mountain, \textit{S. Jones 4668} 14 May 1990 (VDB); Polk Co., Big Fork State Natural Area, \textit{R. Kral 76335} 22 May 1989 (VDB); Stone Co., Ozark National Forest, \textit{Phillip E. Hyatt 4108.69} 26 Jun 1991 (BRIT); Stone Co., St. Martin's River Access point, \textit{David Castaner 9092} 9 May 1986 (MICH); Stone Co., Sylamore District of the Ozark National Forest, \textit{Phillip E. Hyatt 4115.69} 10 Jul 1991 (MICH); Van Buren Co., Conway Co., \textit{Phillip E. Hyatt 5429} 18 May 1993 (MICH). Connecticut: East Lyme, \textit{E. J. Alexander s.n.} 19 Jun 1936 (NY); Portland, \textit{S. W. Starmer s.n.} 21 Jun 1896 (SMU); Windham, \textit{C. A. Weatherby s.n.} 16 Jul 1932 (WIS); Fairfield Co., Fairfield, \textit{E. H. Eames s.n} 18 Jun 1901 (MSC); Fairfield Co., New Fairfield, \textit{F. C. Seymour 19,909} 14 Jul 1962 (SMU); Fairfield Co., Winnipauk, \textit{F. C. Seymour 20528} 21 Jun 1963 (GH); Hartford Co., Hartford, \textit{A. W. Driggs 3} 15 Jun 1901 (GH); Hartford Co., Hartford, \textit{Charles Wright s.n.} 16 Jun 1875 (WIS); Litchfield Co., Colebrook, \textit{L. J. Mehroff 19484} 27 Jun 1997 (MICH); Litchfield Co., Housatonic State Forest, \textit{L. J. Mehrhoff 8034} 23 Jun 1983 (MICH); Middlesex Co., Durham, \textit{C. A. Weatherby 3061} 22 Jun 1913 (GH); Middlesex Co., Old Saybrook, \textit{S. R. Hill 16812} 9 Jun 1986 (TAES); Middlesex Co., Portland, \textit{F. W. Starmer s.n.} 21 Jun 1896 (GH); New Haven Co., Wallingford, \textit{L. J. Mehroff 20873} 6 Jul 2000 (MICH); New Haven Co., Waterbury, \textit{A. E. Blewitt 238} 28 Jul 1910 (GH); New London Co., Bishops Cove development, \textit{S. R. Hill 21744} 22 Jul 1990 (MICH); New London Co., Salem, \textit{G. C. Tucker 4214} 13 Sep 1988 (NYS); New London Co., Town of Franklin, \textit{R. W. Woodward s.n.} 21 Jun 1906 (GH); New London Co., Town of Franklin, \textit{R. W. Woodward s.n.} 10 Oct 1909 (GH); Tolland Co., Mansfield, \textit{L. J. Mehrhoff 6377} 25 Jun 1982 (MICH); Tolland Co., Tolland, \textit{L. J. Mehrhoff 15782} 11 Jul 1992 (MICH); Windham Co., Thompson, \textit{C. A. Weatherby 4644} 27 Jun 1920 (GH); Windham Co., Woodstock, \textit{C. Schweinfurth s.n.} 16 Jun 1934 (GH). Delaware: New Castle Co., State Rd. Station, \textit{R. R. Dreisbach 4323} 27 Jun 1926 (MICH). District of Columbia: \textit{G. Vasey s.n.} 1880 (MSC); Briar Ditch Valley, \textit{E. C. Leonard 21137} 20 Jun 1960 (KANU); Washington, D. C., \textit{George Versey s.n.} 1884 (WIS). Georgia: Rabun Co., Pine Mountain, \textit{J. A. Churchill 91-267} 14 Jun 1991 (MSC); Rabun Co., Warwoman Dell Creek, \textit{Phillip E. Hyatt 6064} 29 May 1994 (MICH). Illinois: Cook Co., Palos Hills, \textit{S. R. Hill 29307} 11 Jun 1997 (MICH); Cook Co., Thornton, \textit{A. Chase s.n.} 13 Jun 1898 (MSC); Iroquois Co., Indiana State Line, \textit{A. A. Reznicek 10838} 6 Jun 1999 (MICH); McDonough Co., Macomb, \textit{S. R. Hill 31499} 18 May 1999 (MICH); Perry Co., Pyramid SP, \textit{J. Reveill 1354} 11 Jun 1982 (MO); Winnebago Co., Rock Cut Forest Preserve, \textit{Egbert W. Fell 55-489} 18 Jun 1955 (WIS); Winnebago Co., Rock River Valley, \textit{E. W. Fell 56-243} 24 Jun 1956 (GH). Indiana: Chesterton, \textit{L. M. Umbach s.n.} 16 Jun 1900 (WIS); Chesterton, \textit{L. M. Umbach 12329} 16 Jun 1900 (WIS); Allen Co., Godfrey Indian Reserve, \textit{C. C. Deam 1154} 24 Jun 1906 (MICH); Bartholomew Co., Columbus, \textit{C. C. Deam 23,165} 27 May 1917 (MICH); Cass Co., Hoover, \textit{C. C. Deam 45,811} 2 Jul 1928 (MICH); Elkhart Co., Simonton Lake, \textit{C. C. Deam 55,036} 15 Jun 1934 (MICH); Laporte Co., Michigan City, \textit{D. Castaner 8521} 8 Jun 1985 (MO); Lawrence Co., Heltonville, \textit{R. M. Kriebel 2176} 17 Jun 1934 (MICH); Lawrence Co., Springville, \textit{R. M. Kriebel 1783} 6 Jun 1934 (MICH); Lawrence Co., Springville, \textit{R. M. Kriebel 1790} 6 Jun 1934 (WIS); Porter Co., Furnessville, \textit{M. W. Lyon Jr. s.n.} 13 Jul 1924 (MICH); Porter Co., Tremont, \textit{M. W. Lyon Jr. s.n.} 2 Aug 1925 (MICH); Porter Co., Tremont, \textit{H. R. Bennett 7032} 11 Jun 1960 (SMU); Putnam Co., Greencastle, \textit{E. J. Grimes 683} 8 Aug 1911 (GH); St. Joseph Co., Granger, \textit{Chas. C. Deam 55086} 15 Jun 1934 (WIS). Kansas: Douglas Co., Baldwin City, \textit{Caleb A Morse 8383} 27 Jun 2002 (KANU). Kentucky: Barren Co., Haywood, \textit{R. Naczi 6465} 14 Jun 1997 (NKY); Bath Co., Black Shale Region, \textit{M. E. Wharton 2448b} 2 Jun 1938 (MICH); Bell Co., Henderson Fork Road Surface-Mined Area, \textit{Ralph L. Thompson 93-161} 19 Jun 1993 (NKY); Bell Co., Cumberland Gap NP, \textit{D. F. Brunton 10355} 24 May 1991 (MICH); Bell Co., Pineville, \textit{R. Naczi 6714} 25 Jun 1997 (NKY); Boone Co., Petersburg, \textit{R. Naczi 4104} 12 Jun 1994 (NKY); Boyle Co., Black Shale Region, \textit{M. E. Wharton 952} 21 Jul 1937 (MICH); Calloway Co., Ky 614, \textit{R. Athey 2826} 25 Jun 1974 (VDB); Calloway Co., Croppie Hollow Shores Subdivision, \textit{R. Athey 2291} 21 May 1973 (VDB); Campbell Co., Silver Grove, \textit{R. Naczi 226} 12 Jun 1996 (NKY); Campbell Co., Silver Grove, \textit{R. Naczi 129} 12 Jun 1996 (NKY); Clinton Co., Lakewood Estates, \textit{L. E. McKinney 6454} 31 May 1995 (MICH); Edmonson Co., Mammoth Cave NP, \textit{Landon E. McKinney 2869-2} 25 May 1988 (VDB); Franklin Co., Echo Springs Swamp, \textit{S. Rice s.n.} 12 Jul 1984 (EKY); Graves Co., Mayfield, \textit{R. Athey 2356} 19 Jun 1973 (VDB); Hardin Co., Ribbon Snake Lake, \textit{R. Cranfill 265} 18 May 1977 (MICH); Hopkins Co., St. Charles, \textit{L. E. McKinney 4274} 2 Jun 1990 (EKY); Larue Co., Magnolia, \textit{Landon McKinney 5083} 5 Jun 1992 (NKY); Laurel Co., Chalie Cheek Swamp, \textit{R. Naczi 7385} 15 Jun 1998 (MICH); Laurel Co., Lily, \textit{David D. Taylor 511} 1 Jun 1981 (WV); Laurel Co., Rock Creek Gorge, \textit{R. L. Thompson 89-770} 29 May 1989 (EKY); Letcher Co., Lilley Cornett Woods Research Station, \textit{J. D. Sole 161} 2 Jun 1978 (EKY); Letcher Co., Whitesburg, \textit{John W. Thieret 60618} 16 Jul 1999 (NKY); Lewis Co., Thackers Chapel, \textit{Cusick 25365} 14 Jun 1986 (NCU); Madison Co., Dunncannon Lane, \textit{D. A. Miller 22} 26 Jun 1990 (EKY); Madison Co., Moberly Quadrangle, \textit{G. W. Libby OB-329} 31 May 1993 (MICH); Madison Co., Richmond, \textit{R. Peter 781} 1 Jun 1834 (MICH); McCracken Co., Metropolis Lake State Nature Preserve, \textit{L. E. McKinney 6290} 16 Jun 1994 (MICH); McCreary Co., Daniel Boon NF, \textit{S. Jones 4982} 24 May 1990 (VDB); McCreary Co., Honeybee, \textit{R. Naczi 6555} 19 Jun 1997 (NKY); McCreary Co., Whitley City, \textit{John W. Thieret 57424} 16 May 1994 (NKY); McCreary Co., Whitley City, \textit{John W. Thieret 55284} 24 Jun 1984 (NKY); Mulhenberg Co., Lake Malone SP, \textit{J. Conrad s.n.} 25 May 1969 (NCU); Nelson Co., Howardstown, \textit{Landon McKinney 5097} 3 Jun 1992 (NKY); Owlsey Co., Sturgeon Creek, \textit{L. E. McKinney 4687} 18 May 1991 (EKY); Owsley Co., Sturgeon Creek, \textit{Landon E. McKinney 4687} 18 May 1991 (VDB); Pike Co., Pine Mt., \textit{F. Levy s.n.} 18 Aug 1982 (NCU); Pulaski Co., Woodstock, \textit{J. R. Abbott 375} 1 Jun 1991 (EKY); Rockcastle Co., Morning View Church, \textit{R. Hannan 2004} 30 May 1979 (EKY); Rockcastle Co., Rigsby's Swamp, \textit{R. R. Hannan 160} 10 Jun 1977 (EKY); Wolfe Co., Natural Bridge SP, \textit{K. Feeman 240} 19 May 1998 (EKY). Maine: Cumberland Co., Casco Bay, \textit{R. H. True 262} 25 Aug 1923 (GH); Cumberland Co., Casco Bay, Great Chegeague Island, \textit{M. L. Fernald 1519} 2 Jul 1909 (GH); Cumberland Co., Oxford, \textit{E. B. Chamberlain s.n.} 1 Jul 1907 (GH); Cumberland Co., York Hill, Town of North Yarmouth, \textit{E. B. Chamberlain 839} 20 Jul 1905 (GH); Kennebec Co., Litchfield, \textit{Fellows 4732} 7 Aug 1912 (GH); Knox Co., Camden, \textit{G. B. Rossbach 3847} 7 Aug 1956 (NCU); Knox Co., Camden, \textit{G. G. Kennedy s.n.} 12 Jul 1902 (GH); Oxford Co., Dixfield, \textit{J. C. Parlin 2135} 3 Jul 1907 (GH); Waldo Co., Lincolnville, \textit{G. B. Rossbach 4586} 22 Jul 1958 (NCU). Maryland: Allegany Co., Selinger Marsh, \textit{C. Lea 2141} 28 Jun 2000 (MARY); Anne Arundel Co., Annapolis, \textit{F. R. Fosberg 43642} 12 May 1963 (VDB); Anne Arundel Co., Davidsonville, \textit{F. H. Sargent 6070} 8 Jun 1952 (WIS); Anne Arundel Co., Patuxent River Park, \textit{W. D. Longbottom 3040} 3 Jun 1992 (MARY); Anne Arundel Co., Town of Pasadena, \textit{W. D. Longbottom 3032} 2 Jun 1992 (MARY); Calvert Co., Cove Point, \textit{B. W. Steury 960615.43} 15 Jun 1996 (MICH); Calvert Co., Scientist's Cliffs, \textit{F. R. Fosberg 43738} 5 Jun 1963 (MICH); Caroline Co., Lentz Road, \textit{C. T. Frye 960613-578} 13 Jun 1996 (TAWES); Carroll Co., Morgan Run, \textit{C. Lea 2079} 17 Jun 2000 (MARY); Cecil Co., Elk Neck SP, \textit{O. H. Thompson 511} 24 May 1973 (MARY); Charles Co., Nanjemoy, \textit{S. R. Hill 9208} 7 Jun 1980 (MARY); Dorchester Co., Chicone Woods, \textit{C. Lea 1899} 4 Jun 2000 (MARY); Frederick Co., Catoctin Mt. Highway, \textit{C. Lea 1718} 28 May 2000 (MARY); Frederick Co., Catoctin Mt. Park, \textit{C. J. Hickey II 398} 30 Jun 1973 (NCU); Frederick Co., Catoctin Mt., \textit{S. S. Tepfer 1351} 8 Jun 1941 (MARY); Frederick Co., Catoctin Mt., \textit{S. S. Tepfer 1324a} 8 Jun 1941 (MARY); Garrett Co., Mineral Spring, \textit{C. Lea 2217} 30 Jun 2000 (MARY); Garrett Co., New Germany, \textit{C. Lea 2152} 29 Jun 2000 (MARY); Garrett Co., Mt. Nebo Wildlife Management Area, \textit{C. Lea 2186} 29 Jun 2000 (MARY); Harford Co., Aberdeen Proving Grounds, \textit{B. W. Hoagland ABR0230} 9 Jun 1994 (OKL); Harford Co., Rocks SP, \textit{C. Lea 1855} 29 May 2000 (MARY); Kent Co., Millington Wildlife Management Area, \textit{W. D. Longbottom 3090} 9 Jun 1992 (MARY); Montgomery Co., Burtonsville, \textit{J. C. Ludwig 86102} 17 Jun 1986 (VPI); Montgomery Co., Great Falls, \textit{F. H. Sargent s.n.} 19 Jun 1949 (KANU); Montgomery Co., Linden, \textit{J. E. Benedict Jr. 5865} 19 Jun 1951 (VPI); Montgomery Co., Marsden Tract, \textit{C. Lea 1233} 19 Jun 1999 (MARY); Montgomery Co., Great Falls NP, Bear Island, \textit{C. Lea 882} 16 May 1998 (TAWES); Montgomery Co., Great Falls, \textit{E. L. Morris s.n.} 28 May 1899 (NEB); Prince Georges Co., Accokeek, \textit{S. R. Hill 14193} 14 Jun 1984 (TAES); Prince Georges Co., Fort Washington, \textit{J. E. Benedict Jr. 5957} 21 May 1953 (VPI); Prince George's Co., BARC, \textit{R. F. Whitcomb s.n.} 13 Jun 1995 (MARY); Prince George's Co., Beltsville Agricultural Research Center (BARC), \textit{R. F. Whitcomb s.n.} 19 Jun 1995 (MARY); Prince George's Co., College Park, \textit{Anonymous s.n.} 17 Jun 1929 (MARY); Prince George's Co., Chillum, \textit{B. Swanton 1590} 14 Jun 1939 (MARY); Prince George's Co., Potomac Valley, \textit{A. Chase 3766} 4 Jul 1907 (MICH); Prince George's Co., Laurel, \textit{B. Swanton 1588} 14 Jul 1939 (MARY); Prince George's Co., University of Maryland, College, \textit{G. Tanaka 17} 24 May 1962 (MARY); Somerset Co., Venton, \textit{C. Lea 1643} 20 May 2000 (MARY); St. Marys Co., Clements, \textit{L. B. Smith 5415} 7 Jul 1951 (MARY); St. Mary's Co., California, \textit{C. Lea 2042} 16 Jun 2000 (MARY); Talbot Co., Wittman, \textit{C. Lea 1969} 10 Jun 2000 (MARY); Washington Co., Greenbrier SP, \textit{C. Lea 1767} 28 May 2000 (MARY); Washington Co., Washington Monument SP, \textit{C. Lea 1757} 28 May 2000 (MARY); Wicomico Co., Martins Corner, \textit{Wicomico 2994} 27 May 1992 (MARY); Worcester Co., Pocomoke State Forest, \textit{C. Lea 1610} 20 May 2000 (MARY); Worcester Co., Rte. 611, \textit{C. Lea 1277} 2 Jul 1999 (MARY). Massachusetts: Amherst, \textit{T. Delevoryas s.n.} 10 Jun 1949 (NCU); Arlington, \textit{Clarence H. Knowlton 28338} 22 Jun 1907 (WIS); Bradford Clearing, \textit{J. R. Churchill s.n} 17 Jun 1914 (VDB); Cheshire, \textit{J. R. Churchill s.n.} 20 Jul 1915 (WIS); Greenwich, Flora of the Swift River Watershed, \textit{A. S. Goodale s.n.} 13 Jul 1931 (OKL); Lexington Woods, \textit{F. C. Seymour s.n.} 2 Aug 1913 (WIS); Martha's Vineyard Farm Pond, \textit{A. B. Seymour s.n.} 1 Jul 1911 (WIS); South Deerfield, \textit{R. B. Livingston s.n.} 9 Jun 1960 (NCU); Wellesley Simpson, \textit{K. M. Wiegand s.n.} 25 Jun 1909 (NY); Winchester, \textit{H. H. Bartlett 185} 4 Jul 1905 (MICH); Woods Hole, Falmouth, \textit{D. F. Brunton 8680} 29 Sep 1988 (MICH); Berkshire Co., Lanesboro, \textit{J. R. Churchill 82} 25 Jul 1916 (WIS); Bristol Co., \textit{J. A. Cushman 1013} 2 Jul 1907 (NCU); Bristol Co., Rehoboth, \textit{F. C. Seymour 7495} 22 Jun 1947 (WIS); Essex Co., Hamilton-Essex, \textit{A. B. Seymour s.n.} 27 Jun 1908 (KANU); Essex Co., Handover, \textit{J. Blake 3355} 21 Jun 1880 (MICH); Hampden Co., Granville, \textit{F. C. Seymour 177} 20 Jun 1914 (WIS); Hampshire Co., Hatfield, \textit{H. E. Ahles 75633} 30 Jun 1972 (KANU); Hampshire Co., Northampton, \textit{H. E. Ahles 86956} 25 Jun 1979 (BRIT); Hampshire Co., Northampton, \textit{H. E. Ahles 81777} 3 Jul 1976 (TAES); Nantucket Co., Nantucket Island, \textit{R. F. Steinauer 807} 25 Sep 1999 (NEB); Norfolk Co., Blue Hills Reservation, \textit{Nathaniel T. Kidder s.n.} 15 Jul 1919 (KANU); Norfolk Co., Dedbam, \textit{H. H. Bartlett 788} 4 Jul 1907 (MICH); Norfolk Co., Milton, \textit{Nathaniel T. Kidder s.n.} 28 Jun 1886 (KANU); Norfolk Co., Neponsed Reservation, \textit{H. H. Bartlett 843} 14 Jul 1907 (MICH); Norfolk Co., Norfolk, \textit{R. A. Ware s.n.} 18 Jun 1911 (NCU); Norfolk Co., Sharon, \textit{J. Blake s.n.} (KANU); Plymouth Co., Manomet, \textit{H. E. Ahles 80259} 22 Jun 1975 (WIS); Worcester Co., Douglas, \textit{B. N. Gates s.n.} 14 Jun 1954 (WIS); Worcester Co., Lancaster, \textit{F. C. Seymour s.n.} 7 Jul 1943 (WIS); Worcester Co., Lancaster, \textit{F. C. Seymour 24816} 7 Jul 1943 (SMU); Worcester Co., Oxford, \textit{B. N. Gates 17707} 9 Sep 1957 (WIS); Worcester Co., Spencer, \textit{Doris Audette s.n.} 5 Jul 1948 (WIS); Worcester Co., Warren, \textit{Winnifred C. Gates 31791} 18 Jun 1954 (WIS). Michigan: Hein Lakes Woods, \textit{J. Cole 7988} 1 Jul 1897 (MICH); Magician Lake Woods, \textit{L. M. Umbach 7095} 19 Jul 1915 (WIS); Alcona Co., Harrisville Village, \textit{R. Garlitz 1533} 4 Jul 1986 (MSC); Alger Co., Munising, \textit{M. R. Panskar 84242} 24 Jul 1984 (MICH); Allegan Co., Allegan, \textit{C. W. Bazuin 4681} 28 Jun 1942 (MSC); Allegan Co., Bear Creek, \textit{C. W. Bazun 7453} 18 Jul 1947 (MSC); Allegan Co., Crooked Lake, \textit{C. W. Bazun 8873} 21 Jun 1952 (MSC); Allegan Co., Heath Twp., \textit{G. W. Parmelee s.n.} 30 Jul 1950 (MSC); Barry Co., Gun Lake, \textit{G. W. Parmelee 83} 15 Jun 1954 (MSC); Berrien Co., Harbert, \textit{H. T. D. s.n.} 22 Aug 1917 (MSC); Berrien Co., Love Creek Nature Center, \textit{M. Hamodie 754} 7 Aug 1980 (MICH); Berrien Co., Niles, \textit{J. Ng 223} 17 Jun 1981 (MTMG); Berrien Co., Niles, \textit{James Ng 326} 1 Jul 1981 (MSC); Berrien Co., Paw Paw Lake, \textit{H. T. D. s.n.} 15 Aug 1917 (MSC); Calhoun Co., East Fulton, \textit{C. R. Hanes 3813} 20 Jun 1938 (MICH); Cass Co., Howard Twp., \textit{G. W. Parmelee 1603} 24 Jul 1950 (MICH); Cass Co., Jefferson Twp, \textit{G. W. Parmelee s.n.} 25 Jul 1950 (MSC); Cass Co., Magician Lake, \textit{F. C. Gates 1318} 4 Aug 1906 (MICH); Cass Co., Jones, \textit{B. M. Robertson 213} 15 Jun 1939 (MICH); Hillsdale Co., Wayside Memorial Roadside Park, \textit{P. Fritsch 402} 14 Jun 1987 (MICH); Jackson Co., Leoni Twp., \textit{G. W. Parmelee 1346} 8 Jul 1950 (MSC); Kalamazoo Co., \textit{S. R. Crispin 697} 6 Aug 1980 (MSC); Kalamazoo Co., Beard, \textit{C. R. Hanes s.n.} 17 Jul 1940 (MICH); Kalamazoo Co., Fulton, \textit{C. R. Hanes 569} 1 Aug 1939 (MICH); Kalamazoo Co., Whitman Lake, \textit{P. J. Higman 611} 15 Jun 1994 (MICH); Kent Co., City of Walker, \textit{Edward M Smith 3971} 16 Jun 1996 (KANU); Kent Co., Courtland Twp., \textit{G. W. Parmelee 1295} 27 Jun 1950 (MSC); Kent Co., Mud Lake, \textit{C. W. Bazuin 11244} 17 Jun 1940 (MSC); Kent Co., Oakfield Twp., \textit{C. W. Bazuin 1522} 5 Jul 1940 (MSC); Kent Co., Wabasis Lake Rd., \textit{C. W. Bazuin 1484} 4 Jul 1940 (MSC); Lenawee Co., Dover Twp., \textit{R. W. Smith 3981} 13 Jun 1998 (MICH); Lenawee Co., Madison Twp., \textit{R. W. Smith 2552} 18 Jun 1988 (MICH); Lenawee Co., Madison Twp., \textit{R. W. Smith 2170} 4 Jun 1987 (MICH); Lenawee Co., Madison Twp., \textit{R. W. Smith 2353} 12 Jul 1987 (MICH); Lenawee Co., Raisin Twp., \textit{R. W. Smith 1652} 26 Jun 1986 (MICH); Lenawee Co., Whaley Rd, \textit{R. W. Smith 3968} 13 Jun 1998 (MSC); Monroe Co., Lulu, \textit{J. A. Churchill s.n.} 16 Jun 1964 (MSC); Montcalm Co., Crystal Lake, \textit{C. F. Wheeler 291} 10 Jul 1900 (MSC); Muskegon Co., Lake Harbor, \textit{C. D. McLouth s.n.} 20 Jul 1899 (MSC); Oakland Co., Royal Oak, \textit{C. Billington s.n.} 22 Jun 1918 (MICH); Ottawa Co., Blodgett Camp, \textit{C. W. Bazun 1343} 26 Jun 1940 (MSC); Ottawa Co., Campbell Site, \textit{F. G. Goff 385} 10 Jul 1979 (MSC); Ottawa Co., Campbell Site, \textit{F. G. Goff 1180} 9 Aug 1979 (MSC); Ottawa Co., Grand Haven Twp., \textit{C. W. Bazuin 1343} 26 Jun 1940 (MSC); Ottawa Co., Grand Haven Twp., \textit{C. W. Bazuin 1607} 12 Jul 1940 (MSC); Ottawa Co., Grand Haven Twp., \textit{C. W. Bazun 511} 28 Jun 1939 (MSC); Ottawa Co., Sand Creek, \textit{C. W. Bazuin 1556} 10 Jul 1940 (MSC); Ottawa Co., Spring Lake, \textit{C. W. Bazuin 7812} 5 Jul 1948 (MICH); Saginaw Co., Birch Run, \textit{R. Garlitz 3591} 11 Jun 1992 (MICH); Saginaw Co., Frankenmuth Twp., \textit{J. A. Churchill s.n.} 9 Jul 1965 (MSC); Schoolcraft Co., Hiawatha National Forest, \textit{L. B. Gerdes 963} 10 Jul 1995 (MICH); St. Clair Co., Port Huron, \textit{C. K. Dodge s.n.} 5 Jul 1898 (MICH); St. Joseph Co., Constantine Twp., \textit{G. W. Parmelee 1510} 18 Jul 1950 (MSC); St. Joseph Co., Three Rvers, \textit{A. A. Reznicek 8692} 26 Aug 1990 (MICH); St. Joseph Co., Minf School, \textit{C. R. Hanes 3921} 13 Jul 1939 (MICH); St.Clair Co., Port Huron, \textit{C. K. Dodge s.n.} 7 Jul 1910 (MICH); Van Buren Co., \textit{H. S. Pepoon s.n.} 1 Jul 1904 (MSC); Washtenaw Co., Whitmore Lake, \textit{C. A. Davis s.n.} 16 Jun 1900 (MICH); Wayne Co., Livonia Twp., \textit{Steere Schmidt s.n.} 1936 (WIS); Wayne Co., Detroit, \textit{E. C. Almendinger s.n.} 24 Aug 1111 (MICH); Wayne Co., Detroit \textit{L. Holzer} (MICH); Wayne Co., Detroit, \textit{ Sister Vincent de Paul s.n.} 19 Jul 1948 (KANU); Wayne Co., Detroit, \textit{E. C. Aldmendinger s.n.} 14 Jul 1877 (MICH); Wayne Co., Sumpter twp., \textit{W. W. Brodowicz 945} 26 Jun 1991 (MICH). Mississippi: Chickasaw Co., Van Vleet, \textit{C. T. Bryson 19155} 27 Apr 2002 (USCH); Grenada Co., Gore Springs, \textit{C. T. Bryson 4000} 5 Jun 1985 (VDB); Grenada Co., Gore Springs, \textit{M. W. Morris 2929} 15 Jul 1987 (VDB); Itawamba Co., Fulton, \textit{V. E. McNeilus s.n.} 4 Jul 1982 (WIS); LaFayette Co., Oxford, \textit{Phillip E. Hyatt 6641} 9 Jun 1995 (MICH); Lafayette Co., Presbyterian Camp Hopewell, \textit{C. T. Bryson 12410} 1 Jun 1993 (MICH); Marshall Co., Wall Doxey SP, \textit{C. T. Bryson 10006} 18 May 1990 (CLEMS); Tishomingo Co., Tennesse Tombigbee Waterway and Natchez Trace Park, \textit{C. T. Bryson 13841} 25 May 1994 (MICH). Missouri: Bollinger Co., Dark Cypress Swamp Conservation Area, \textit{A. E. Brant 4757} 23 Aug 2001 (MO); Butler Co., \textit{H. Eggert s.n.} 11 Jun 1893 (NCU); Cape Girardeau Co., Cape Girardeau, \textit{Travis Brooks 6923} 24 May 1973 (WV); Dunklin Co., Wilhemina State Forest, \textit{A. A. Reznicek 9430} 22 May 1993 (MICH); New Madrid Co., Des Cyprie Slough, \textit{P. M. McKenzie 1468} 2 Aug 1994 (MICH); Schuyler Co., Pleasant Grove, \textit{B. F. Bush 339} 20 May 1900 (NCU); Scott Co., Hwy H, \textit{Travis Brooks 7751} 18 May 1975 (WV); Scott Co., Blodgett, \textit{S. Jones 8532} 16 May 1992 (BRIT); Scott Co., General Watkins Conservation Area, \textit{P. M. McKenzie 1704} 4 Jun 1996 (MICH); Scott Co., Morley Quad, \textit{P. M. McKenzie 1995} 13 May 2002 (MO); Scott Co., Petite Isle sand prairie, \textit{P. M. McKenzie 1482} 3 Aug 1994 (MICH); Shannon Co., Angeline Conservation Area, \textit{B. Summers 9736} 29 May 2001 (MO); Stoddard Co., Holly Ridge Natural Area, \textit{J. A. Raveill 2314} 10 May 1985 (MICH). New Hampshire: \textit{B. L. Robinson 312} 15 Jul 1897 (MSC); Carroll Co., Tomworth, \textit{F. L. Steele s.n.} 15 Jul 1950 (GH); Cheshire Co., Alstead, \textit{E. F. Williams s.n.} 28 Jul 1901 (GH); Cheshire Co., Hinsdale, \textit{D. E. Boufford 6465} 29 Jun 1972 (VPI); Cheshire Co., Keene, \textit{C. H. Knowlton s.n.} 23 Aug 1922 (GH); Cheshire Co., Rindge, \textit{C. F Batchelder s.n.} 11 Aug 1925 (GH); Cheshire Co., Walpole, \textit{H. E. Ahles 75362} 21 Jun 1972 (NCU); Grafton Co., Hanover, \textit{E. F. Williams s.n.} 18 Jul 1910 (GH); Hillsboro Co., Pelham, \textit{C. A. Weatherby s.n.} 6 Jul 1946 (GH); Hillsboro Co., Temple \textit{F. C. Seymour s.n.} 9 Aug 1928 (WIS); Hillsborough Co., Hancock, \textit{L. Griscom 14575} 21 Jun 1931 (GH); Hillsborough Co., Hillsborough, \textit{C. F. Batchelder s.n.} 28 Jul 1920 (GH); Hillsborough Co., Mason, \textit{C. F. Batchelder s.n.} 12 Jul 1916 (GH); Hillsborough Co., Peterborough, \textit{W. Deane s.n.} 3 Aug 1909 (GH); Merrimack Co., Shaker Village, \textit{V. E. McNeilus s.n.} 25 Aug 1983 (WIS); Rockingham Co., Derry, \textit{C. F. Batchelder s.n.} 21 Aug 1918 (GH); Rockingham Co., Exeter, \textit{A. S. Pease 30466} 24 Jul 1943 (GH); Rockingham Co., Raymond, \textit{A. S. Pease 30447} 14 Aug 1943 (GH); Rockingham Co., South Hampton, \textit{S. K. Harris 25395} 20 Oct 1962 (GH); Rockingham Co., Windham, \textit{S. K. Harris 26873} 13 Sep 1964 (GH); Strafford Co., Barrington, \textit{A. R. Hodgdon 3760} 28 Jun 1941 (GH); Strafford Co., Modburn, \textit{A. R. Hodgden 14049} 7 Jul 1964 (MTMG). New Jersey: Atlantic Co., Estell Manor, \textit{G. Moore 1518} 6 Jun 1993 (VDB); Cape May Co., Cape May, \textit{Earl L. Core 5139} 20 Jun 1937 (WV); Cumberland Co., Maurice River Twp., \textit{G. Moore 1512} 6 Jun 1993 (VDB); Cumberland Co., Fairton, \textit{R. R. Dreisbach 4274} 19 Jun 1926 (MICH); Morris Co., Budd Lake, \textit{L. Bowes 1785} 23 Jun 1935 (NYS); Morris Co., Green Village, \textit{R. H. True 663} 4 Jul 1935 (VPI). New York: Albany Co., Karner, \textit{W. J. Crins 8109} 24 Jun 1990 (NYS); Albany Co., Westerlo, \textit{G. C. Tucker 6629} 22 Aug 1991 (NYS); Cattaraugua Co., Alleghany SP, \textit{W. P. Alexander s.n.} 2 Aug 1930 (NYS); Cattaraugus Co., Conewango, \textit{S. J. Smith 22651} 18 Jun 1957 (NYS); Cayuga Co., New Hope, \textit{N. Hotchkiss 2927} 9 Jul 1928 (NYS); Cayuga Co., Lickville, \textit{C. Atwood s.n.} 26 Jun 1897 (NYS); Chautauqua Co., French Creek, \textit{D. Goldman 682} 16 Jun 1993 (NYS); Chenango Co., Pharsalia, \textit{E. E. Davis 991} 19 Jul 1931 (NYS); Columbia Co., Clanerack, \textit{R. McVaugh 3990} 22 Sep 1935 (NYS); Delaware Co., Delhi, \textit{K. L. Brooks 391} 27 Jun 1951 (NYS); Delaware Co., Kortright, \textit{K. L. Brooks 1568} 15 Jun 1952 (NYS); Delaware Co., Town of Kortright, \textit{K. L. Brooks 3040} 6 Jul 1954 (NYS); Dutchess Co., Stissing Mt. \textit{C. H. Peck s.n.} (NYS); Franklin Co., Brayton Hollow, \textit{S. J. Smith 10337} 11 Jul 1951 (NYS); Greene Co., Tannersville Pond, \textit{G. R. Proctor 1922} 25 Jun 1946 (SMU); Greene Co., Hunter, \textit{R. Naczi 8584} 3 Jul 2000 (NKY); Hamilton Co., West Stony Creek, \textit{S. J. Smith 4469} 10 Jul 1948 (NYS); Herkimer Co., \textit{J. V. Haberer 1440} 15 Jun 1911 (NYS); Herkinns Co., Frankfurt, \textit{J. V. H. 3755} 21 Jul 1885 (MICH); Jefferson Co., Lorraine, \textit{N. Hotchkiss 2503} 29 Jun 1927 (NYS); Jefferson Co., Pleasant Lake, \textit{N. Hotchkiss 2747} 26 Jul 1927 (NYS); Lewis Co., Castorland, \textit{N. Hotchkiss 2663} 24 Jul 1927 (NYS); Lewis Co., Fort Drum, \textit{C. Popolizio 799} 20 Jul 1992 (NYS); Madison Co., Lenox, \textit{R. L. Crockett s.n.} 5 Aug 1939 (NYS); Madison Co., North Brookfield, \textit{H. D. House 17611} 24 Jun 1930 (NYS); Madison Co., North Wanluis, \textit{H. D. House 23141} 30 Aug 1935 (NYS); Madison Co., Oneida, \textit{H. D. House 16298} 4 Jul 1929 (NYS); Myoming Co., Hermitage-Java Center Road, \textit{W. A. Matthews 5335} 19 Jul 1951 (SMU); Oneida Co., McConnellsville, \textit{H. D. House 16275} 2 Jul 1929 (NYS); Oneida Co., New London, \textit{R. L. Crockett s.n.} 12 Jun 1939 (NYS); Oneida Co., Seymour, \textit{J. V. Haberer 3899} (NYS); Oneida Co., Taburg, \textit{William Rhoades s.n.} 18 Jul 1922 (WIS); Oneida Co., Verona, \textit{H. D. House A-6072} 22 Jun 1918 (NYS); Onondaga Co., Jamesville, \textit{H. D. House 31649} 7 Aug 1948 (NYS); Orange Co., Black Rock Forest, \textit{S. Clemants 3782} 1 Aug 1990 (NYS); Orange Co., Harriman SP, \textit{J. G. Barbour 983} 8 Jul 1993 (NYS); Orange Co., Harriman SP: N of Lake Askoti on 7 Lakes Drive, \textit{J. G. Barbour 2304} 25 Aug 1994 (NYS); Orange Co., Harriman SP: Southern ridge top of Black Mountain, \textit{R. S. Mitchell 9084} 21 Jun 1995 (NYS); Oswego Co., Oswego, \textit{Baim 5757} 19 Jul 1963 (NYS); Oswego Co., Cleveland, \textit{H. D. House 15939} 26 Jun 1928 (NYS); Oswego Co., Hastings, \textit{R. H. True 127} 8 Jul 1931 (NYS); Oswego Co., Sandy Creek, \textit{N. Hotchkiss 3020} 17 Jul 1928 (OKL); Otsego Co., Wharton, \textit{S. J. Smith 20478} 28 Jun 1956 (NYS); Putnam Co., Town of SE Brewster, \textit{K. L. Brooks 2881} 12 Jun 1954 (NYS); Rensselaer Co., Berlin, \textit{H. D. House 19331} 29 Jun 1932 (NYS); Rensselaer Co., Grafton Lakes SP, \textit{P. Weatherbee 4527} 2 Jul 1997 (NYS); Rensselaer Co., Hoosick, \textit{H. E. Ahles 66975} 23 Jun 1967 (NCU); Rensselaer Co., Town of Schaghticoke, \textit{W. Broderick s.n.} 13 Jun 2002 (NYS); Richmond Co., Staten Island, \textit{P. Dowell 5909} 7 Aug 1909 (VDB); Rockland Co., Bear Mountain SP, \textit{J. G. Barbour 907} 25 Jun 1994 (NYS); Rockland Co., Harriman SP, \textit{J. G. Barbour 2135} 30 Jun 1994 (NYS); Rockland Co., Harriman SP, \textit{R. S. Mitchell 8806} 15 Jun 1994 (NYS); Rockland Co., Nanuet, \textit{E. G. Whitney 4092} 17 Jun 1935 (NYS); Schenectady Co., Mariaville Lake, \textit{T. C. Baim 3366} 13 Jul 1950 (NYS); Schenectady Co., Schenectady, \textit{T. Baim s.n.} 3 Sep 1947 (NYS); Schenectady Co., Schenectady, \textit{T. C. Baim s.n.} 18 Jun 1941 (NYS); St. Lawrence Co., Potsdam, \textit{N. C. Eldblom 2798} 5 Sep 1993 (NYS); St. Lawrence Co., Sodom State Forest/Madrid, \textit{A. M. Johnson 606} 3 Jul 1988 (NYS); Suffolk Co., Brookhaven, \textit{R. E. Zaremba 2648} 1985 (NYS); Suffolk Co., East Hampton, \textit{R. E. Zaremba 2207} 30 May 1985 (NYS); Suffolk Co., Fishers Island, \textit{G. C. Tucker 6123} 26 Jun 1991 (NYS); Suffolk Co., Greenport, Long Island, \textit{R. Latham 36289} 6 Jun 1959 (NYS); Suffolk Co., Huntington, \textit{R. E. Zaremba 2651} 1985 (NYS); Suffolk Co., Montauk, \textit{R. Latham 5638} 2 Jul 1927 (NYS); Suffolk Co., Orient, \textit{R. Latham 28237} 1 Aug 1938 (NYS); Suffolk Co., Sag Harbour, \textit{R. Latham 33255} 30 Jun 1955 (NYS); Suffolk Co., West Hills County Park, \textit{A Greller s.n.} 13 Jun 1992 (NYS); Sullivan Co., Eldred, \textit{S. J. Smith 21458} 7 Aug 1956 (NYS); Sullivan Co., Long Eddy, \textit{S. J. Smith 20313} 22 Jun 1956 (NYS); Sullivan Co., Rondout Reservoir, \textit{S. J. Smith 20425} 23 Jun 1956 (NYS); Sullivan Co., Town of Callicoon, \textit{K. L. Brooks 6130} 21 Jun 1975 (NYS); Tompkins Co., Townley Swamp, \textit{A. Gershoy 7723} 7 Aug 1917 (MICH); Tompkins Co., Besemer, \textit{R. T. Clausen 7122} 5 Aug 1947 (NYS); Tompkins Co., Dryden, \textit{K. M. Wiegand X19667} 20 Jun 1937 (WIS); Ulster Co., Town of Olive, \textit{J. Bierhorst 149} 21 Jun 1996 (NYS); Ulster Co., Warwarsing, \textit{H. F. Dunbar 1124} 16 Jul 1958 (NYS); Ulster Co., Woodland, \textit{S. J. Smith 6835} 16 Jun 1950 (NYS); Warren Co., Brayton, \textit{H. D. House 29250} 23 Jun 1943 (OKL); Warren Co., Warrensburg, \textit{E. G. Whitney 4168} 26 Jun 1935 (NYS); Washington Co., Lake George, \textit{H. D. House 28608} 9 Jun 1942 (NYS); Westchester Co., Mount Kisco, \textit{Francis W. Pennell 7179} 25 Jun 1916 (KANU); Westchester Co., North Castle, Cranberry Lake County Park, \textit{R. E. Zaremba 3020} 9 Jun 1986 (NYS). North Carolina: Alleghany Co., Little Glade Branch, \textit{P. D. McMillan 2445} 8 Jun 1997 (USCH); Avery Co., Banners Elk, \textit{H. E. Ahles 43588} 17 Jun 1958 (NCU); Avery Co., Hanging Rock, \textit{A. E. Radford 44088} 1 Jul 1961 (USCH); Bertie Co., Windsor, \textit{H. E. Ahles 41219} 29 May 1958 (NCU); Cherokee Co., Patrick, \textit{K. E. Rogers 41622} 18 Jun 1968 (SMU); Chowan Co., Valhalla, \textit{H. E. Ahles 39880} 9 May 1958 (NCU); Edgecombe Co., Sharpsburg, \textit{A. A. Reznicek 34009} 27 May 1958 (NCU); Gates Co., White Oak Pocosin \textit{J. A. Duke 830} 30 May 1958 (NCU); Graham Co., Joyce Kilmer Memorial Forest, \textit{B. A. Ford 8929} 17 May 1989 (NYS); Halifax Co., Halifax, \textit{H. E. Ahles 17151} 19 Jul 1956 (NCU); Henderson Co., Flat Rock, \textit{F. R. Fosberg 18827} 17 Jun 1942 (NCU); Hertford Co., Harrelsville, \textit{H. E. Ahles 41706} 30 May 1958 (NCU); Macon Co., Coweeta Hydrologic Lab, \textit{Phillip E. Hyatt 8635} 28 May 1999 (MICH); Macon Co., Wayah Bald, \textit{D. E. Boufford 16576} 20 Jun 1975 (NCU); Madison Co., Fairview Methodist Church, \textit{J. B. Nelson 16,618} 16 Jun 1995 (MICH); Madison Co., Hot Springs, \textit{J. B. Nelson 16618} 16 Jun 1995 (USCH); Mitchell Co., Spruce Pine, \textit{H. E. Ahles 43190} 16 Jun 1958 (NCU); Northampton Co., US 158, \textit{H. E. Ahles 41768} 31 May 1958 (NCU); Pasquotank Co., US 17-158, \textit{H. E. Ahles 44412} 25 Jun 1958 (NCU); Surry Co., Low Gap, \textit{A. E. Radford 13149} 23 Jun 1956 (NCU); Transylvania Co., Fork River Bridge, \textit{A. E. Radford 44592} 10 Jun 1962 (WV). Ohio: Brown Co., Sardinia, \textit{Michael A. Vincent 4683} 22 May 1991 (WV); Cuyahoga Co., Westlake, \textit{A. W. Cusick 31060A} 23 Jun 1993 (GH); Cuyahoga Co., Highland Heights, \textit{Suneeti Jog 483} 18 Jun 2001 (KANU); Erie Co., Plum Brook Station, \textit{A. W. Cusick 21,723} 22 Jun 1982 (MICH); Erie Co., Sandusky, \textit{A. W. Cusick 31851} 14 Jul 1994 (VPI); Lake Co., Little Mountain, \textit{J. M. Greenman 147} 2 Aug 1897 (GH); Lucas Co., Whitehouse Quad., \textit{A. W. Cusick 31,090} 12 Jul 1993 (MICH); Portage Co., Gott Fen Preserve, \textit{A. W. Cusick 23,563} 19 Jun 1984 (MICH); Portage Co., Nelson, \textit{T. S. Cooperrider 5951} 27 Jun 1960 (NCU); Portage Co., Nelson-Kennedy Ledges SP, \textit{A. W. Cusick 25,567} 21 Jul 1986 (MICH); Summit Co., Singer \textit{A. W. Cusick 10090} 4 Jul 1969 (NCU); Wood Co., Steidtmann Sanctuary, \textit{A. W. Cusick 21,780} 7 Jul 1982 (MICH). Oklahoma: Atoka Co., Boehler Community, \textit{B. L. Lipscomb 1483} 15 May 1976 (MICH); Atoka Co., Sand Hills, \textit{J. Taylor 33133} 28 May 1985 (BRIT); LeFlore Co., State Line Historical Site, C. T. Bryson 4306 10 May 1986 (VDB); Leflore Co., Honobia, \textit{A. A. Reznicek 9352} 19 May 1993 (MICH); McCurtain Co., Battiest site, \textit{L. K. Mcgrath 17845} 11 May 1990 (OKL); McCurtain Co., Battiest, \textit{J. Taylor 26357} 4 Jun 1978 (SMU); McCurtain Co., Battiest site, \textit{L. K. Magrath 17845} 11 May 1990 (MICH). Pennsylvania: West Plula, \textit{A. MacElwee s.n.} 5 Jun 1892 (GH); Adams Co., Michaux SP, \textit{J. E. Benedict 2854} 4 Jul 1934 (VPI); Bedford Co., Wolf Swamp Watershed, \textit{Homer Duppstadt s.n.} 12 Jun 1970 (WV); Bedford Co., Robinsonville, \textit{David Berkheimer 9787} 16 Jun 1948 (KANU); Berks Co., McKnights Gap, \textit{D. Berkheimer 2555} 12 Jun 1941 (GH); Berks Co., Fleetwood, \textit{W. C. Brumbach 433-33} 13 Jul 1933 (GH); Berks Co., Olney Furnace, \textit{H. Wilkens 5843-a} 10 Jun 1939 (GH); Berks Co., Reading, \textit{W. C. Brumbach 293-32} 9 Jun 1932 (GH); Berks Co., Reading, \textit{H. Wilkens 115} 15 Jun 1929 (GH); Bradford Co., Albany \textit{R. Naczi 4129} 14 Jun 1994 (MICH); Bradford Co., Burlington, \textit{H. A. Wahl 19083} 18 Jun 1959 (NCU); Bradford Co., Le Roy, \textit{H. A. Wahl 1057} 22 Jun 1941 (NEB); Bradford Co., New Albany, \textit{R. Naczi 4129} 14 Jun 1994 (NKY); Bradford Co., Franklindale, \textit{R. Naczi 2605} 15 Jun 1990 (MICH); Center Co., Coburn, \textit{H. A. Wahl s.n.} 13 Jun 1934 (WIS); Centre Co., Ingleby, \textit{H. A. Wahl 25166} 17 Jun 1936 (NCU); Centre Co., State Game Lands \#176, \textit{P. E. Rothrock 564} 19 Jun 1975 (MICH); Chester Co., Strafford, \textit{J. W. Adams 765} 4 Jun 1927 (VPI); Chester Co., Kemblesville, \textit{George R Proctor 1840} 15 Jun 1946 (KANU); Chester Co., Landenberg, \textit{E. C. Earle 5109} 27 Jun 1958 (SMU); Clearfield Co., Ansonville, \textit{E. B. Erle 2347} 13 Jun 1957 (NYS); Clinton Co., Rosecrans Bog Natural Area, \textit{R. Naczi 7904} 4 Jul 1995 (MICH); Columbia Co., West Branch Fishing Creek, \textit{F. R. Fosberg 16004} 5 Sep 1938 (GH); Delaware Co., Darby Creek, \textit{F. J. Hermann 3182} 7 Jun 1932 (MICH); Delaware Co., Ringham, \textit{R. R. Dreisbach 14929} 16 Jun 1923 (MICH); Delaware Co., Havenford, \textit{H. E. Stone s.n.} 3 Jul 1926 (SMU); Delaware Co., Eagle Road, \textit{J. M. Fogg Jr. 2192} 11 Jun 1927 (GH); Fayette Co., Ohiopyle, \textit{J. Bright 8407} 26 Jun 1934 (SMU); Forest Co., Greene Township, \textit{D. E. Boufford 21102} 17 Jun 1979 (NCU); Jefferson Co., Heath Twp., \textit{A. W. Cusick 31,027} 14 Jun 1993 (MICH); Lackawanna Co., Old Forge, \textit{P. E. Rothrock 572} 21 Jun 1975 (NCU); Lancaster Co., Blainsport, \textit{C. S. Keener 3575} 26 Jun 1979 (MICH); Lancaster Co., Jenkins Corner, \textit{G. L. Miller 7-46} 19 Oct 1963 (NCU); Lawrence Co., Portersville, \textit{F. J. Hermann 9518} 29 Jun 1938 (GH); Lebanon Co., Twin Grove Park, \textit{Carl S. Keener 131} 11 Jun 1959 (WV); Lehigh Co., Kuhn's Woods, \textit{H. W. Pretz 12873} 18 Jul 1926 (MICH); Luzerne Co., Nuangola, \textit{P. E. Rothrock 597} 22 Jun 1975 (NCU); Maercer Co., West Salem Twp., \textit{A. W. Cusick 23,657} 11 Jul 1984 (MICH); Monroe Co., Pocono Plateau, \textit{R. R. Tatnall 4266} 29 Jun 1939 (GH); Philadelphia Co., Fox Chase, \textit{F. J. Hermann 3155} 4 Jun 1932 (OKL); Philadelphia Co., West Philadelphia, \textit{F. J. Hermann 3147} 2 Jun 1932 (GH); Pike Co., Delaware State Forest, \textit{R. Naczi 4873} 1 Jul 1995 (MICH); Pike Co., Greentown, \textit{R. Naczi 4873} 1 Jul 1995 (NKY); Snyder Co., Meiserville, \textit{P. E. Rothrock 513} 13 Jun 1975 (MICH); Somerset Co., Berlin. \textit{L. E. McKinney 2201} 13 Jun 1986 (VDB); Sullivan Co., Eaglesmere, \textit{T. S. Githens s.n.} 4 Aug 1945 (WV); Susquehanna Co., Susquehanna, \textit{J. A. Graves s.n.} 1 Jul 1897 (NEB); Wayne Co., Cold Spring, \textit{H. A. Wahl 14409} 24 Jul 1954 (SMU). Rhode Island: Newport Co., Tiverton, \textit{S. N. F. Sanford s.n.} 11 Jun 1912 (GH); Providence Co., Glocester, \textit{F. C. Seymour 19,216} 14 Jun 1961 (SMU); Providence Co., North Smithfield, \textit{F. W. Hunnewell 18680} 10 Jul 1947 (GH); Providence Co., Providence, \textit{J. F. Collins s.n.} 19 Jun 1892 (GH); Washington Co., North of Ashaway, Hopkinton, \textit{M. L. Fernald s.n.} 1 Sep 1919 (GH); Washington Co., Wyoming, \textit{H. E. Ahles 79151} 19 Aug 1974 (WIS). \begin{sloppypar} South Carolina: Greenville Co., Table Rock Reservoir, \textit{S. R. Hill 23492`} 22 Jun 1992 (CLEMS); Oconee Co., Big Bend Road, \textit{L. L. Gaddy s.n.} 30 May 1986 (CLEMS); Oconee Co., Whitewater Falls, \textit{L. L. Gaddy s.n.} 13 Jun 1987 (CLEMS); Pickens Co., Cane Creek Watershed, \textit{L. Waldrop W-277} 19 May 1998 (MICH); Pickens Co., NC-SC State line, \textit{H. E. Ahles 14269} 6 Jun 1956 (KANU); Pickens Co., Wadakoe Mountain, \textit{P. D. McMillan 6327} 30 Apr 2002 (CLEMS); Pickens Co., Wadakoe Mountain, \textit{P. D. McMillan 6315} 30 Apr 2002 (CLEMS). \end{sloppypar} Tennessee: Bledsoe Co., Fall Creek Falls SP, \textit{C. T. Bryson 11826} 27 Jun 1992 (VDB); Blount Co., Cades Cove, \textit{R. D. Thomas s.n.} 24 Jul 1965 (NCU); Blount Co., Great Smoky Mountains NP, \textit{R. E. Shanks 2301} 27 Jun 1943 (VDB); Blount Co., Great Smoky Mountains NP, \textit{D. E. Boufford 22891} 28 May 1982 (BRIT); Blount Co., Great Smoky Mt. NP, \textit{V. E. McNeilus s.n.} 21 Jun 1980 (WIS); Blount Co., Great Smoky Mt. NP, \textit{V. E. McNeilus s.n.} 19 May 1984 (WIS); Blount Co., Great Smoky Mt. NP, \textit{V. E. McNeilus s.n.} 15 Jun 1982 (WIS); Blount Co., Great Smoky Mt. NP, \textit{V. E. McNeilus s.n.} 14 Jun 1981 (WIS); Blount Co., Great Smoky Mt. NP, \textit{V. E. McNeilus s.n.} 12 Jul 1981 (WIS); Blount Co., Great Smokey Mt. NP, \textit{V. E. McNeilus s.n.} 2 Aug 1980 (WIS); Blount Co., Great Smoky Mt. NP, \textit{V. E. McNeilus s.n.} 21 Jun 1980 (WIS); Cannon Co., Short Mt., \textit{L. E. McKinney 322} 15 Jun 1981 (VDB); Carroll Co., New Hope Church, \textit{H. R. DeSelm s.n.} 22 Jun 1993 (EKY); Carter Co., Ripshin Bog, \textit{P. Somers s.n.} 15 Jul 1982 (VDB); Cocke Co., Del Rio, \textit{J. A. Churchill 88037} 8 Jul 1988 (MSC); Cocke Co., Great Smoky Mt. NP, \textit{V. E. McNeilus s.n.} 22 Jun 1980 (WIS); Coffee Co., Manchester, \textit{R. Kral 76194} 10 May 1989 (VDB); Cumberland Co., Cressville Airport, \textit{R. Kral 42762} 21 May 1971 (VDB); Cumberland Co., Fairfield Glades, \textit{R. Kral 82539} 29 May 1993 (VDB); Cumberland Co., Catoosa Game Refuge, \textit{L. J. Uttal 8053} 12 Jun 1971 (VPI); Cumberland Co., Cressville Airport, \textit{R. Kral 42762} 21 May 1971 (EKY); Fentress/Morgan Co., Clear Fork River, \textit{D. D. Horn 336} 27 May 1979 (VDB); Franklin Co., Sewanee, \textit{Anonymous s.n.} 4 Jul 1942 (VDB); Grainger Co., Hwy 25E, \textit{A. A. Reznicek 9540} 22 Jun 1993 (MICH); Grundy Co., Monteagle, \textit{R. Kral 46503} 17 May 1972 (VDB); Grundy Co., Collins Quad, \textit{W. R. Jones 4785} 22 May 1987 (EKY); Grundy Co., Savage Gulf Natural Area, \textit{T. S. Patrick 253} 11 Jul 1977 (VDB); Hickman Co., Bondswitch, \textit{R. Kral 73999} 6 Jun 1987 (VDB); Humphreys Co., Cuba Landing, \textit{R. Kral 80423} 10 May 1992 (VDB); Jackson Co., Gainsboro, \textit{V. E. McNeilus 94-225} 19 May 1994 (WIS); Marion Co., Fiery Gizzard Gorges, \textit{R. C. Clark 1873} 16 May 1965 (NCU); Monroe Co., Exit 62 along I-75, \textit{V. E. McNeilus 92-445} 13 Jun 1992 (WIS); Monroe Co., Tellico, \textit{V. E. McNeilus s.n.} 16 May 1982 (WIS); Monroe Co., Tellico Plains, \textit{J. A. Churchill 93321} 11 May 1993 (MICH); Montgomery Co., Guthrie, \textit{R. Kral 76639} 21 Jun 1989 (VDB); Montgomery Co., Guthrie, \textit{R. Kral 52696} 16 May 1974 (VDB); Montgomery Co., Clarksville, \textit{E. W. Chester 81-296} 2 Jun 1981 (NCU); Montgomery Co., Smith Branch Recreation Area, \textit{E. W. Chester 81-296} 2 Jun 1981 (VDB); Morgan Co., Brewstertown Rd., \textit{R. Kral 84766} 23 May 1995 (VDB); Morgan Co., Wartburg, \textit{R. Kral 83487} 12 May 1994 (VDB); Morgan Co., Wartburg, \textit{S. Jones 4971} 24 May 1990 (MICH); Morgan Co., Gatewood bridge area, \textit{V. E. McNeilus s.n.} 20 Jun 1982 (WIS); Morgan Co., Rt. 27, \textit{V. E. McNeilus 89-375} 10 Jun 1989 (WIS); Morgan Co., Lansing, \textit{V. E. McNeilus 90-363} 19 Jun 1990 (WIS); Morgan Co., Rockwood, \textit{V. E. McNeilus 94-288} 29 May 1994 (WIS); Morgan Co., Rugby, \textit{J. K. U. 843} 28 May 1934 (MICH); Morgan Co., Cookeville, \textit{R. Kral 82542} 29 May 1993 (MICH); Morgan Co., Vicinity of Lilly Bridge, \textit{V. E. McNeilus 90-363} 19 Jun 1990 (VDB); Overton Co., East Branch of Obey River, \textit{V. E. McNeilus 93-1131} 22 Jun 1993 (WIS); Overton Co., Livingston, \textit{V. E. McNeilus 94-277} 31 May 1994 (WIS); Putnam Co., Monerey, \textit{V. E. McNeilus 89-370} 10 Jun 1989 (WIS); Rhea Co., Whites Creek, \textit{V. E. McNeilus 88-152} 9 Jun 1988 (WIS); Rhea Co., Dayton, \textit{V. E. McNeilus s.n.} 23 May 1982 (WIS); Sequatchie Co., Dunlap, \textit{R. Kral 77728} 29 May 1990 (VDB); Sevier Co., Chilhowee Mt., \textit{R. D. Thomas s.n.} 9 Jun 1965 (SMU); Sevier Co., Elkmont Campground, GSMNP, \textit{B. A. Ford 8942} 18 May 1989 (NYS); Sevier Co., Gatlinburg, \textit{Ken E Rogers 34018} 22 May 1965 (KANU); Sevier Co., Great Smoky Mt. NP, \textit{V. E. McNeilus 90-270} 6 Jun 1990 (VDB); Sevier Co., Great Smoky Mt. NP, \textit{V. E. McNeilus s.n.} 24 May 1981 (WIS); Sevier Co., Great Smoky Mt. NP, \textit{V. E. McNeilus s.n.} 26 Jul 1980 (WIS); Sevier Co., Great Smoky Mt. NP, \textit{V. E. McNeilus s.n.} 22 May 1983 (WIS); Sevier Co., Great Smoky Mt. NP, \textit{V. E. McNeilus s.n.} 24 May 1981 (WIS); Unicoi Co., Beauty Spot Mt., \textit{A. J. Sharp 43469} 21 Jun 1969 (SMU); Unicoi Co., Ernestville, \textit{J. A. Churchill 92-189} 10 Aug 1992 (MSC); Wayne Co., Natchez Trace, \textit{R. Kral 55470} 18 May 1975 (VDB); White Co., Sparta, \textit{V. E. McNeilus s.n.} 1 Jun 1980 (WIS). Vermont: Bennington Co., Rupert, \textit{M. P. Marshall 1219} 17 Jul 1976 (NCU); Burlington Co., North Pownal, \textit{M. P. Marshall 1048} 12 Aug 1975 (NCU); Burlington Co., Rupert, \textit{M. P. Marshall 1205} 17 Jul 1976 (NCU); Chittenden Co., Williston, \textit{C. H. Knowlton s.n.} 12 Jul 1945 (GH); Rutland Co., Middleton Springs, \textit{C. H. Knowlton s.n.} 13 Jun 1918 (GH); Windham Co., Brookline, \textit{L. A. Wheeler 84401} 17 Jun 1911 (GH); Windham Co., Jamaica, \textit{L. A. Wheeler 18} 11 Jul 1913 (GH); Windham Co., Marlboro, \textit{R. J. Eaton 5849} 9 Sep 1965 (GH); Windham Co., Brookline, \textit{L. A. Wheeler s.n.} 17 Jun 1911 (GH); Windham Co., Townshand, \textit{L. A. Wheeler s.n.} 23 Jun 1912 (GH); Windsor Co., Woodstock, \textit{E. M. Kittredge B1056} 18 Jul 1928 (GH). Virginia: City of Newport News, \textit{P. K. Appler 552} 10 May 1973 (NCU); Albermarle Co., Keene, \textit{C. E. Stevens 1132} 22 Jun 1969 (NCU); Albermarle Co., Keene, \textit{C. E. Stevens 2225} 25 Jun 1970 (VPI); Albermarle Co., Scottsville, \textit{C. E. Stevens 1899} 23 May 1970 (VPI); Alleghany Co., McGraw's Gap., \textit{R. Kral 9329} 6 Aug 1959 (VDB); Arlington Co., Washington-Lee High School, \textit{J. Higginson} 125 25 May 1946 (MARY); Bath Co., Armstrong, \textit{C. E. Stevens 4018} 7 Aug 1971 (VPI); Bath Co., Armstrong, \textit{C. E. Stevens 3663} 3 Jul 1971 (VPI); Caroline Co., Golansville, \textit{T. Bradley 19122} 28 May 1983 (NCU); Carroll Co., Mt. Airy, \textit{J. R. Manhart 311} 30 Apr 1981 (MICH); Charles City Co., Ruthville, \textit{D. M. E. Ware 2340} 20 Jun 1969 (VDB); Craig Co., New Castle, \textit{T. F. Wieboldt 5684} 17 Jul 1985 (MICH); Dickenson Co., Breaks SP, \textit{R. Kral 12700} 14 Jun 1961 (VDB); Fauquier Co., Pond Mt., \textit{H. A. Allard} (WV); Fauquier Co., Western slope of Bull Run Mountains, \textit{H. A. Allard 1581} 24 May 1936 (VPI); Fauquier Co., Western slope of Bull Run Mountains, \textit{H. A. Allard 5035} 12 Jun 1938 (VPI); Fauquier Co., Western slope of Bull Run Mountains, \textit{H. A. Allard 744} 30 Jun 1935 (VPI); Floyd Co., Check, \textit{G. P. Frank 615} 17 Jul 1981 (VPI); Giles Co., Mt. Lake, \textit{R. Kral 10682} 29 Jun 1960 (VDB); Giles Co., Mt. Lake, \textit{R. Kral 10657} 29 Jun 1960 (VDB); Giles Co., White Pine Lodge, \textit{R. E. Shanks 15254} 13 Jun 1950 (VDB); Giles Co., Big Stoney Creek and Applachian Trail, \textit{G. P. Frank 578} 24 Jun 1981 (VPI); Giles Co., Fork Mountain, \textit{L. J. Uttal 10436} 11 Jun 1974 (NCU); Giles Co., Mt. Lake Biological Station, \textit{L. J. Mussleman 4307} 21 Jun 1971 (NCU); Giles Co., Mt. Lake, \textit{R Kral 10682} 29 Jun 1960 (NCU); Giles Co., Mt. Lake, \textit{R Kral 10657} 29 Jun 1960 (NCU); Grayson Co., Whitetop, \textit{T. F. Wieboldt 8925} 22 Jun 1994 (VPI); James City Co., College of William and Mary, \textit{A. C. Barans 814} 14 May 1969 (NCU); King and Queen Co., Helmet, \textit{T. Bradley 23645} 24 Jun 1990 (CLEMS); King and Queen Co., Salvia, \textit{T. Bradley 23686} 24 Jun 1990 (CLEMS); King George Co., Caledon SP, \textit{D. M. E. Ware 8175} 8 Jun 1983 (CLEMS); Lancaster Co., Devil's Bottom, \textit{T. Weldy 376} 17 May 1994 (BRIT); Loudoun Co., Diabase, \textit{H. A. Allard 21457} 24 May 1953 (WV); Mathews Co., North, \textit{M. van Montfrans 321} 24 May 1979 (BRIT); Montgomery Co., Blacksburg, \textit{T. F. Wieboldt 10283} 28 Jul 1999 (VPI); Nansemond Co., Blackwater River, \textit{H. E. Ahles 58154} 22 Jun 1963 (NCU); Nansemond Co., Blackwater River, \textit{H. E. Ahles 58178} 22 Jun 1963 (NCU); New Kent Co., Ware Creek, \textit{M. S. Gillespie 709} 29 May 1970 (NCU); Orange Co., Rhoadesville, \textit{T. Bradley 19216} 4 Jun 1983 (NCU); Orange Co., Steets Shop, \textit{T. Bradley 23236} 21 May 1990 (CLEMS); Powhatan Co., Rt. 671, \textit{C. M. Corcoran 612} 4 Jun 1976 (NCU); Pulaski Co., Radford Army Munitions Plant, New River, \textit{T. F. Wieboldt 10009} 9 Jul 1998 (VPI); Roanoke Co., Haven's WMA, Ft. Lewis Mt., \textit{N. A. Mason s.n.} 28 May 1991 (VPI); Shenandoah Co., Peters Run, \textit{A. M. Harvill 21745} 24 Jun 1969 (NCU); Spotsylvania Co., Fredericksburg, \textit{Hugh H. Iltis 2803} 16 Jun 1947 (WIS); Spottsylvania Co., Fredericksburg, \textit{Hugh H. Iltis 2814} 16 Jun 1947 (WIS); Stafford Co., Mt. Joy, \textit{C. L. Kelloff 550} 29 May 1988 (USCH); Tazewell Co., Cedar Bluff, \textit{R. Kral 12919} 29 Jun 1961 (VDB); William Co., Occoquan Bay National Wildlife Refuge, \textit{M. T. Strong 1608} 30 May 1998 (MICH); Wythe Co., Little Walker Mt., \textit{T. F. Wieboldt 6385} 10 Jun 1987 (MICH). West Virginia: Barbour Co., Nestorville, \textit{Earl L. Core 5921} 14 Jul 1937 (WV); Fayette Co., Manns Creek, \textit{William N. Grafton s.n.} 4 Jun 1995 (WV); Fayette Co., Stonecliff, \textit{Violet S. Phillips s.n.} 6 Jul 1968 (WV); Fayette Co., Cunard, \textit{Dale W. Suiter DWS 662} 18 Jun 1993 (WV); Grant Co., Gormania, \textit{William N. Grafton s.n.} 16 Jun 1995 (WV); Grant Co., Mt. Storm, \textit{Earl L. Core 6036} 15 Jul 1937 (WV); Kanawha Co., Camp Camelot, \textit{Emily Williams s.n.} 25 May 1980 (WV); Kanawha Co., Kanawha State Forest, \textit{Margaret E. Denison 68-161} 25 May 1968 (WV); Kanawha Co., Kanawha State Forest, \textit{Margaret E. Denison 67-92} 19 Jul 1967 (WV); Kanawha Co., Kanawha State Forest, \textit{Margaret E. Denison 67-87} 14 Jul 1967 (WV); Monongalia Co., SRC II site, \textit{Forest L. Oserow 21342} 28 Jun 1979 (WV); Monongalia Co., Greer, \textit{William N. Grafton s.n.} 4 Jul 1995 (WV); Monongalia Co., Cheat View, \textit{Gene M. Silberhorn 1395} 29 May 1965 (WV); Morgan Co., Cacapon SP, \textit{Wm. Homer Duppstadt s.n.} 1 Jun 1977 (WV); Morgan Co., Brosius, \textit{R. M. Downs 2737} 1 Jul 1968 (NCU); Morgan Co., Cacapon Mt. SP, \textit{T. F. Wieboldt 6212} 13 Aug 1986 (WIS); Nicholas Co., Meadow River, \textit{William N. Grafton s.n.} 13 Jun 1992 (WV); Preston Co., Allbright, \textit{William N. Grafton s.n.} 27 Jun 1988 (WV); Preston Co., WVU Forest, \textit{William N. Grafton s.n.} 11 Jul 1997 (WV); Raleigh Co., Fairdale, \textit{William N. Grafton s.n.} 30 Jun 1974 (WV); Randolph Co., Dolly Sods Mt., \textit{H. A. Davis 4383} 25 Jun 1941 (WV); Randolph Co., Huttonsville, \textit{Eugene E. Hutton s.n.} 1 Jun 1941 (WV); Randolph Co., Huttonville, \textit{E. E. Hutton s.n.} 30 Jun 1960 (VPI); Randolph Co., Monangahela National Forest, \textit{B. Walters 611} 8 Jul 1997 (MICH); Tucker Co., Clover Run, \textit{William N. Grafton s.n.} 9 Jun 1995 (WV); Tucker Co., Camp Kidd near St. George, \textit{William N. Grafton s.n.} 16 Jun 1997 (WV); Tucker Co., Canaan Valley, \textit{H. A. Allard 11439} 30 Jul 1945 (WV); Tucker Co., Canaan Valley \textit{Earl L. Core 2875} 29 Jun 1931 (WV); Upshur Co., Buckhannon, \textit{G. B. Rossbach 1374} 21 Jun 1959 (WV); Upshur Co., Little Kanwha River, \textit{H. A. Davis 6991} 8 Jun 1945 (WV); Webster Co., Cowen, \textit{William N. Grafton s.n.} 11 Jun 1998 (WV); Webster Co., Curtin, \textit{A. W. Cusick 28888} 31 May 1990 (WV). Wisconsin: Kenosha Co., Berryville, \textit{S. C. Wadmond 3088} 14 Jul 1900 (WIS); Waukesha Co., Upper Martins Woods, \textit{Theodore S. Cochrane 10035} 19 Jun 1982 (WIS); Waushara Co., Little Silver Creek, \textit{Katherine D. Rill 6091} 13 Aug 1983 (WIS). \textbf{\textsc{Carex virescens}}. Canada. Ontario: Elgin Co., Aldborough Township, \textit{M. J. Oldham 15367} 9 Aug 1993 (MICH); Elgin Co., Straffordville, \textit{M. J. Oldham 12782} 16 Jun 1991 (MICH); Elgin Co., Reive Bog, \textit{M. J. Oldham 14910} 14 Jun 1993 (MICH); Elgin Co., Rodney, \textit{M. J. Oldham 15300} 29 Jul 1993 (MICH); Elgin Co., Eagle, \textit{M. J. Oldham 15914} 7 Oct 1993 (MICH); Elgin Co., Bayham Township, \textit{M. J. Oldham 12782} 16 Jun 1991 (WIS); Elgin Co., Clearville, \textit{V. R. Brownell 83-401} 10 Jul 1983 (CAN); Elgin Co., Goldie's Fern Woods, \textit{I. D. Macdonald 17941} 9 Sep 1986 (MICH); Elgin Co., Port Butwell Provincial Park, \textit{M. J. Oldham 10947} 6 Jun 1990 (MICH); Elgin Co., West Lorne, \textit{M. J. Oldham 9480} 26 Jun 1989 (MICH); Elgin Co., West Lorne, \textit{Jane M. Bowles KE861399} 3 Jul 1986 (MICH); Essex Co., Leamington, \textit{M. J. Oldham 4036} 2 Aug 1983 (MICH); Haldimand-Norfolk Co., Deer Creek Conservation Area, \textit{D. A. Sutherland 7123} 18 Jun 1986 (CAN); Kent Co., Clearville, \textit{V. R. Brownell 83-462} 11 Jul 1983 (CAN); Middlesex Co., Skunk's Misery, \textit{M. J. Oldham 14870} 7 Jun 1993 (MICH). U. S. A. \textit{F. F. Forbes 744} 29 Jul 1900 (OKL). Alabama: Lauderdale Co., Zip City, \textit{R. Kral 82304} 19 May 1993 (VDB); Lawrence Co., Bankhead National Forest, \textit{C. T. Bryson 7589} 8 May 1988 (VDB); Madison Co., Monte Sano SP, \textit{C. T. Bryson 2050} 27 May 1978 (VDB); Madison Co., Huntsville, \textit{C. T. Bryson 3538} 23 May 1983 (MICH); Madison Co., Huntsville, \textit{C. T. Bryson 3528} 22 May 1983 (MICH); Madison Co., Huntsville, \textit{C. T. Bryson 3540} 23 May 1983 (MICH); Madison Co., Huntsville, \textit{Charles T. Bryson 3897} 11 May 1985 (WIS); Madison Co., Huntsville, \textit{C. T. Bryson 2039} 27 May 1978 (VDB); Madison Co., Monte Sano Mt., \textit{J. R. Manhart 264} 9 May 1981 (MICH); Madison Co., Monte Sano Mt., \textit{James R. Manhart 264} 9 May 1981 (WIS); Madison Co., Monte Sano Mt., \textit{C. T. Bryson 2890} 8 May 1980 (GA); Madison Co., Monte Sano SP, \textit{C. T. Bryson 3897} 11 May 1985 (VDB); Winston Co., Lawrence County Rd, \textit{S. Jones 4855} 18 May 1990 (WIS); Winston Co., Sipsey River Rec. Area, \textit{C. T. Bryson 4380} 23 May 1986 (VDB). Connecticut: Fairfield Co., Danbury , \textit{L. J. Mehrhoff 12644} 31 May 1989 (MICH); Fairfield Co., Easton, \textit{E. H. Eames s.n.} 30 Jun 1901 (WIS); Fairfield Co., Huntington, \textit{E. H. Eames s.n.} 25 Jun 1902 (GH); Fairfield Co., North Stamford, \textit{P. S. Green 138/63} 23 Jun 1963 (GH); Hartford Co., Hartland, \textit{C. A. Weatherby 5326} 9 Jul 1934 (GH); Hartford Co., New Britain - Plainsville, \textit{C. Wright s.n.} 7 Jul 1882 (GH); Hartford Co., Southington, \textit{L. Andrews 558} 27 Jun 1898 (GH); Hartford Co., Southington, \textit{A. R. Hodgdan s.n.} 14 Jul 1964 (MTMG); Litchfield Co., Watertown, \textit{A. E. Blewitt 543} 7 Jun 1910 (GH); Middlesex Co., East Haddaw, \textit{C. A. Weatherby 2185} 23 Jun 1907 (GH); New Haven Co., Derby, \textit{C. A. Weatherby D2037} 4 Jul 1920 (GH); New Haven Co., Guilford, \textit{W. R. Dudley s.n.} 9 Jul 1904 (GH); New Haven Co., Oxford, \textit{E. B. Harger 6945} 19 Jul 1917 (GH); New London Co., Voluntown, \textit{L. J. Mehrhoff 15620} 12 Jun 1992 (MICH); Tolland Co., Bolton, \textit{C. A. Weatherby s.n.} 12 Jul 1913 (GH); Windham Co., Pomfret, \textit{C. A. Weatherby 5188} 24 Jun 1923 (GH); Windham Co., Windham, \textit{C. A. Weatherby 534} 16 Jul 1932 (SMU); Windham Co., Windham, \textit{C. A. Weatherby s.n.} 16 Jul 1932 (NCU). Delaware: New Castle Co., Brandywine woods, \textit{W. M. Canby s.n.} 18 Jun 1896 (NCU); New Castle Co., Mt Cuba, \textit{A. C. s.n.} 22 Jun 1876 (MARY). District of Columbia: Fairfax Co., Dead Run Area, \textit{E. H. Walker 538} 11 May 1930 (MARY). Georgia: Dade Co., Cloudalnd Canyon SP, \textit{J. R. Manhart 363} 12 Jun 1981 (MICH); Dade Co., Cloudland Canyon, \textit{A. Cronquist 5160} 8 May 1948 (GA); Dawson Co., Etowah River Basin, \textit{L. Kruse 02-131} 8 May 2002 (GA); Dawson Co., Etowah River Basin, \textit{L. Kruse 02-131} 8 May 2002 (GA); Fannin Co., Cooper Creek Recreation Area, \textit{E. W. Wood 17326} 15 Jul 1975 (NCU); Gilmer Co., Frosty Mt., \textit{Phillip E. Hyatt 11476} 12 Jul 2003 (GA); Lumpkine Co., Etowah River Basin, \textit{L. Kruse 01-595} 8 Aug 2001 (GA); Murray Co., Chattahoochee National Forest, \textit{D. E. Boufford 22857} 17 May 1982 (VDB); Murray Co., Grassy Mt., \textit{J. A. Moore 1035} 11 Aug 2001 (GA); Murray Co., Grassy Mt., \textit{J. A. Moore 685} 11 May 2001 (GA); Murray Co., Grassy Mt., \textit{J. A. Moore 1148} 22 Sep 2001 (GA); Rabun Co., Burton, \textit{A. Cronquist 5533} 24 Jul 1948 (VDB); Rabun Co., Ellicott Rock, \textit{D. M. DuMond 1084} 31 May 1968 (GA); Rabun Co., Black Rock Mt. SP, \textit{A. A. Reznicek 9002} 25 May 1992 (MICH); Rabun Co., Pine Mt., \textit{J. A. Churchill 91-268} 14 Jun 1991 (MSC); Rabun Co., Warwoman WMA, \textit{Milsted 744} 22 May 1996 (GA); Rabun Co., Warwoman WMA, \textit{Milsted 845} 12 Jun 1996 (GA); Rabun Co., Warwoman WMA, \textit{Milsted 829} 12 Jun 1996 (GA); Stephens Co., Toccoa, \textit{D. E. Boufford 16846} 30 Jun 1975 (NCU); Union Co., Wolfpen Gap, \textit{A. Cronquist 4519} 1 Jun 1947 (SMU); Union Co., Coosa Bald, Cooper Creek WMA, \textit{L. Chaffin 569B} 18 May 1987 (GA). Illinois: Alexander Co., Gale, \textit{R. A. Evers 90439} 16 May 1967 (NCU). Indiana: Crawford Co., Grantsburg, \textit{C. C. Deam 27,825} 8 Jun 1919 (MICH); Fountain Co., Portland Arch Nature Preserve, \textit{A. W. Cusick 25,321} 3 Jun 1986 (MICH); Marion Co., Harrison, \textit{H. H. Bartlett s.n.} 9 Jun 1903 (MICH); Montgomery Co., Shades, \textit{D. Beal s.n.} 25 Aug 1890 (MSC). Kentucky: Bath Co., Pergram Creek, \textit{R. Hannan 6527} 26 May 1981 (EKY); Bell Co., Pineville, \textit{R. Naczi 6700} 25 Jun 1997 (NKY); Carter Co., Grahn, \textit{A. W. Cusick 26,526} 10 Jun 1987 (VDB); Clay Co., Bush, \textit{A. A. Reznicek 9479} 28 May 1993 (MICH); Clay Co., Manchester, \textit{John W. Thieret 55266} 23 Jun 1984 (NKY); Cumberland Co., Burkesville, \textit{R. Naczi 7413} 17 Jun 1998 (MICH); Elliott Co., Bruin, \textit{A. W. Cusick 30211} 15 May 1992 (VPI); Estill Co., Lily Mountain, \textit{R. Hannan 6993} 10 Jun 1981 (EKY); Estill Co., Irvine, \textit{R. Naczi 7816} 12 May 1999 (MICH); Fulton Co., Wilson Hill, \textit{R. Athey 2306} 24 May 1973 (VDB); Garrard Co., Maywoods Environmental and Educational Laboratory, \textit{D. A. Godbey 161} 26 May 1983 (EKY); Hardin Co., Summit, \textit{R. Cranfill 717} 26 May 1978 (MICH); Hardin Co., Elizabethtown, \textit{R. Naczi 6514} 15 Jun 1997 (NKY); Hardin Co., Muldraught's Hill, \textit{R. Cranfill 689} 26 May 1978 (MICH); Harlan Co., Big Black Mt., \textit{T. H. Kearney, Jr. s.n.} (MTMG); Harlan Co., Harlan, \textit{Landon E. McKinney 5003} 20 May 1992 (NKY); Harlan Co., Harlan, \textit{R. Naczi 6735} 26 Jun 1997 (NKY); Harlan Co., Pine Mt., \textit{L. E. McKinney 5003} 20 May 1992 (EKY); Laurel Co., Boone National Forest, \textit{L. E. McKinney 2192} 31 May 1986 (VDB); Laurel Co., Rock Creek Gorge and Uplands, \textit{R. L. Thompson 89-1410} 4 Jul 1989 (EKY); Lawrence Co., Webbville, \textit{John W. Thieret 53343} 23 May 1993 (NKY); Lee Co., Hwy 11, \textit{Landon E. McKinney 5054} 23 May 1992 (NKY); Lee Co., Cathedral Domain, \textit{T. J. Weckman 322} 28 May 1993 (EKY); Letcher Co., Cornett Woods Appalachian Ecological Research Station, \textit{J. D. Sole 750} 12 May 1979 (EKY); Letcher Co., Lilley Cornett Woods Appalachian Ecological Research Station, \textit{J. D. Sole 286} 7 Jun 1978 (EKY); Lewis Co., \textit{M. E. Wharton 5482} 2 Jul 1940 (MICH); McCreary Co., Honeybee, \textit{R. Naczi 6568} 19 Jun 1997 (NKY); Meade Co., Brandenburg, \textit{R. C. Hoskinson 108} 10 Jul 1950 (NCU); Pike Co., Marrowbone Creek, \textit{F. Levy s.n.} 3 Oct 1982 (NCU); Pike Co., Couper Mt., \textit{F. Levy s.n.} 13 Sep 1982 (NCU); Pike Co., Varney, \textit{F. Levy s.n.} 14 Aug 1982 (NCU); Powell Co., Clay City, \textit{R. Naczi 7670} 19 Sep 1998 (NKY); Powell Co., Natural Bridge State Nature Preserve, \textit{R. Naczi 6657} 22 Jun 1997 (NKY); Powell Co., Red River Gorge, \textit{P. D. Higgins 1451} 11 Jun 1969 (NCU); Powell Co., Clay City, \textit{M. E. Wharton 2041} 6 May 1938 (MICH); Pulaski Co., Hwy 80, \textit{L. E. McKinney 2189} 31 May 1986 (VDB); Rowan Co., Morehead, \textit{John W. Thieret 51149} 4 Aug 1979 (NKY); Taylor Co., Campbellsville, \textit{R. Naczi 7432} 18 Jun 1998 (USCH); Wolfe Co., Pine Ridge, \textit{J. Conrad 548} 23 Jul 1969 (NCU). Maine: Cumberland Co., Falmouth, \textit{E. B. Chamberlain 412} 7 Jul 1902 (GH); Knox Co., Mt. Megunticook, \textit{R. C. Bean 13542} 13 Aug 1913 (GH); Knox Co., Mt. Megunticook, Camden, \textit{M. L. Fernald 9042} 13 Aug 1913 (GH); York Co., Cornish, \textit{M. L. Fernald s.n.} 21 Jul 1891 (GH); York Co., Seabury, \textit{F. T. Hubbard s.n.} 5 Aug 1901 (GH); York Co., Tatnic, \textit{J. Parlin s.n.} 11 Jul 1891 (GH); York Co., York River, \textit{M. L. Fernald 13052} 9 Aug 1916 (GH). Maryland: Baltimore Co., Perry Hall, \textit{C. Lea 1803} 29 May 2000 (MARY); Carroll Co., Patapsco River, \textit{C. Lea 1544} 13 May 2000 (MARY); Frederick Co., Point of Rocks, \textit{C. Lea 1716} 28 May 2000 (MARY); Frederick Co., Catoctin Mt., \textit{F. J. Hermann 13753} 13 Jul 1957 (MICH); Frederick Co., Catoctin Mt. Park, \textit{C. J. Hickey II 69} 22 Jul 1972 (NCU); Frederick Co., Foxville Tower, \textit{E. Bolton 678} 28 Aug 1955 (MARY); Garrett Co., Allegheny Plateau, \textit{C. T. Frye 1076} 23 Jun 1998 (TAWES); Garrett Co., Kelso Gap, \textit{Earl L. Core s.n.} 24 Jun 1931 (WV); Harford Co., Rocks SP, \textit{C. Lea 1854} 29 May 2000 (MARY); Harford Co., Winter's Run, \textit{W. D. Longbottom 3128} 15 Jun 1992 (MARY); Howard Co., Burtonville, \textit{W. H. Wagner Jr. 1071} 17 Jun 1942 (MARY); Howard Co., Savage Mills, \textit{W. D. Longbottom 3067} 4 Jun 1992 (MARY); Montgomery Co., Burtonsville, \textit{J. E. Benedict 4944} 30 Jun 1940 (MARY); Montgomery Co., Forest Glen, \textit{Agnes Chase s.n.} 4 Jul 1904 (WIS); Montgomery Co., Forest Glenn, \textit{Agnes Chase 19502} 4 Jul 1904 (WIS); Montgomery Co., Potomac Gorge, Vaso Island, \textit{C. Lea 434} 7 May 1995 (TAWES); Montgomery Co., Potomac Valley, \textit{A. Chase 2434} 4 Jul 1904 (MICH); Washington Co., Washington Monument SP, \textit{C. Lea 1756} 28 May 2000 (MARY). Massachusetts: Berkshire Co., North Cedars, \textit{H. D. House 25881} 16 Jul 1938 (NYS); Franklin Co., Conway, \textit{H. E. Ahles 64641} 14 Sep 1966 (NCU); Franklin Co., North Sugarloaf, \textit{Anonymous s.n.} 1 Jul 1817 (MSC); Hampshire Co., Hatfield, \textit{H. E. Ahles 77713} 7 Jul 1973 (TAES); Hampshire Co., Middlefield, \textit{Merritt L. Fernald 9040} 26 Jun 1913 (KANU); Norfolk Co., Blue Hills Reservation, \textit{Nathaniel T Kidder s.n.} 11 Aug 1919 (KANU); Norfolk Co., Blue Hills Reservation, \textit{Nathaniel T Kidder s.n.} 30 Jun 1920 (KANU); Norfolk Co., Blue Hills Reservation, \textit{Nathaniel T Kidder s.n.} 30 Jun 1920 (KANU); Norfolk Co., Milton, \textit{F. F. Forbes s.n.} 22 Jun 1902 (WIS); Norfolk Co., Milton, \textit{Geo. G. Kennedy s.n.} 9 Jun 1908 (WIS); Worcester Co., Auburn, \textit{T. J. Rawinski 4401} 31 Jul 1986 (VPI). Michigan: Berrien Co., Bridgeman, \textit{J. Guidinger 7544} 23 Jul 1985 (MICH); Berrien Co., Bridgeman, \textit{A. A. Reznicek 7120} 16 Oct 1982 (MICH); Berrien Co., Chikaming Twp., \textit{G. W. Parmelee 1738} 18 Aug 1950 (MSC); Berrien Co., Harbert, \textit{H. T. Darlington 1650} 22 Aug 1917 (MSC); Berrien Co., Paw Paw, \textit{H. J. Darlington 1639} 15 Aug 1917 (MSC); Kent Co., Grand Rapids, \textit{E. J. Cole s.n.} 15 Jul 1899 (MICH); Ottawa Co., Lake Shore Ave., \textit{M. R. Penskar 1006} 14 Jun 1985 (MICH); Ottawa Co., Grand Haven, \textit{C. W. Bazuin 1432} 30 Jun 1940 (MSC). Mississippi: Tishomingo Co., Cave Spring, \textit{C. T. Bryson 4401} 27 May 1986 (VDB). Missouri: Cape Girardeau Co., Trail of Tears SP, \textit{A. A. Reznicek 10162} 5 Jun 1996 (MICH); Iron Co., Dry Hollow Branch, \textit{A. E. Brant 3714} 27 May 1997 (MO); Iron Co., Tom Sauk Mt. SP, \textit{P. M. McKenzie 1492} 11 Aug 1994 (MICH); Iron Co., Tom Sauk Mt. SP, \textit{P. M. McKenzie 1495} 11 Aug 1994 (MICH); Reynolds Co., Clark National Forest, \textit{D. Castaner 2415} 24 Jun 1972 (NEB); Ste. Genevieve Co., Hickory Canyons Natural Area, \textit{B. Summers 10029} 27 May 2003 (MO). New Hampshire: Belknap Co., Center Harbor, \textit{A. R. Hodgdon 18119} 19 Jun 1969 (GH); Carroll Co., Bald Mt., Albany, \textit{F. L. Steele s.n.} 18 Aug 1948 (GH); Carroll Co., Tuftonboro, \textit{A. R. Hodgden 19471} 9 Aug 1972 (GH); Carroll Co., White's Ledge, Bartlett, \textit{A. S. Pease 16631} 8 Sep 1915 (GH); Cheshire Co., Surry, \textit{M. L. Fernald 243} 23 Jul 1899 (GH); Cheshire Co., Surry, \textit{H. E. Ahles 75456} 22 Jun 1972 (NCU); Cheshire Co., Walpole, \textit{R. G. Eaton 17159} 19 Jun 1932 (GH); Cheshire Co., Westmoreland, \textit{R. J. Eaton s.n.} 18 Jun 1932 (GH); Rockingham Co., Nottingham, \textit{A. R. Hodgdon 10446} 22 Jul 1958 (GH); Strafford Co., Barrington, \textit{A. R. Hodgdon 3092} 13 Sep 1936 (OKL); Strafford Co., Rollinsford, \textit{A. R. Hodgdon 11657} 29 Jun 1960 (GH); Sullican Co., across from Hartland Vt., \textit{M. C. Cowden 1223} 9 Aug 1962 (GH). New Jersey: Burlington Co., Pemberton, \textit{B. Long 16212} 14 Jun 1917 (VPI); Monmouth? Co., Hornerstown, \textit{R. R. Dreissbach 942} 29 May 1922 (MICH); Morris Co., Parsippany, \textit{L. J. Mehrhoff 15740} 1 Jul 1992 (MICH); Warren Co., Coopersville, \textit{R. L. Schaeffer 44310} 27 Jul 1953 (KANU). New York: Albany Co., Alcove, \textit{C. L. Shear s.n.} 22 Jun 1892 (MSC); Albany Co., Town of Westerlo, \textit{G. C. Tucker 6075} 17 Jun 1991 (NYS); Allegany Co., Alma Hill, \textit{R. T. Clausen 3921} 18 Jun 1939 (NYS); Cattaraugus Co., Allegany SP, \textit{W. P. Alexander 13138} 6 Aug 1926 (NYS); Cayuga Co., Chestnut Ridge, Moravia, \textit{C. Atwood s.n.} 14 Aug 1881 (NYS); Chemung Co., Erin, \textit{R. T. Clausen 2626} 27 Jun 1937 (NYS); Chemung Co., Far Rockaway, \textit{S. J. Smith 4173} 18 Jun 1948 (NYS); Chemung Co., Ven Etten Jct., \textit{S. J. Smith 3241} 21 Jun 1947 (NYS); Columbia Co., Hollowville, \textit{R. McVaugh 3764} 29 Aug 1935 (NYS); Dutchess Co., Taconic SP, \textit{W. J. Crins 7616} 10 Jun 1989 (NYS); Essex Co., Boxford, \textit{S. K. Harris 18543} 11 Aug 1958 (NYS); Essex Co., Keene Valley, \textit{H. D. House 28060} 5 Aug 1941 (NYS); Greene Co., Platte Cove, \textit{L. J. Mehrhoff 13435} 22 Jun 1990 (MICH); Jefferson Co., Woodville, \textit{H. D. House 19882} 14 Aug 1932 (NYS); Monroe Co., Greece, \textit{R. E. Shanks 766} 3 Aug 1941 (VDB); Orange Co., Black Forest, \textit{H. M. Raup 7444} 1 Jul 1936 (MICH); Orange Co., Black Forest, \textit{H. M. Raup 7339} 26 Jun 1936 (MICH); Orange Co., Black Rock Forest, \textit{K. Barringer 5511} 4 Aug 1992 (NYS); Orange Co., Harriman SP, \textit{J. G. Barbour 1383} 13 Sep 1993 (NYS); Orange Co., Storm King Park, \textit{J. G. Barbour 3159} 29 Jun 1996 (NYS); Oswego Co., Sandy Creek Township, \textit{N. Hotchkiss 3031} 17 Jul 1928 (NYS); Putnam Co., East Mountain Trail, \textit{T. Weldy 1895} 10 Jul 1997 (NYS); Putnam Co., McKeel Corners, \textit{T. Weldy 1886} 9 Jul 1997 (NYS); Putnam Co., Philipstown, \textit{R. E. Zaremba 2649} 22 Oct 1985 (NYS); Putnam Co., U. S. Military Academy Reservation: Constitution Island, \textit{J. G. Barbour 732} 27 May 1993 (NYS); Rennsselaer Co., Petersburg, \textit{H. D. House 19544} 19 Jul 1932 (NYS); Rensselaer Co., Town of Grafton, \textit{P. Weatherbee 4525} 2 Jul 1997 (NYS); Rockland Co., Bear Mt. SP, \textit{J. G. Barbour 2071} 22 Jun 1994 (NYS); Rockland Co., Harriman SP: Welch Pkwy., \textit{R. S. Mitchell 8806} 15 Jun 1994 (NYS); Sullivan Co., Claryville, \textit{R. H. True 4494} 9 Aug 1937 (NYS); Tompkins Co., Etna, \textit{A. J. Eames 9473} 25 Jun 1918 (MICH); Ulster Co., Town of Olive, \textit{J. Bierhorst 176} 14 Jun 1996 (NYS); Ulster Co., Town of Olive, \textit{J. Bierhorst 177} 29 Jun 1996 (NYS); Warren Co., Lake George, \textit{H. D. House 26756} 18 Jul 1939 (NYS); Washington Co., Lake George, \textit{H. D. House 28615} 10 Jul 1943 (OKL); Washington Co., Lake George Region, \textit{S. H. Burnham s.n.} 21 Jun 1897 (OKL); Washington Co., Putnam Mt., \textit{W. J. Crins 7995} 16 Sep 1989 (NYS); Westchester Co., Cortlandt, \textit{R. E. Zaremba 2619} 26 May 1986 (NYS). \begin{sloppypar} North Carolina: Alleghany Co., Air Bellows Rd, \textit{P. D. McMillan 1865-b} 30 Jun 1996 (CLEMS); Alleghany Co., Roaring Gap, \textit{J. R. Manhart 341} 31 May 1981 (MICH); Alleghany Co., Blue Ridge Parkway, \textit{M. Denton 1417} 24 May 1968 (MSC); Avery Co., Pyatte, \textit{H. E. Ahles 43668} 17 Jun 1958 (NCU); Avery Co., Senia, \textit{H. E. Ahles 43537} 17 Jun 1958 (NCU); Buncombe Co., Hickory Gap, \textit{W. W. Ashe 111} (NCU); Buncombe Co., Asheville, \textit{Charles T. Bryson 6776} 27 Jul 1987 (WIS); Buncombe Co., Asheville, \textit{Phillip E. Hyatt 8808} 28 Jul 1999 (NKY); Buncombe Co., Asheville vicinity, \textit{Phillip E. Hyatt 8810} 28 Jul 1999 (MICH); Buncombe Co., Biltmore, \textit{W. W. Ashe 5241a} 28 Jun 1897 (NCU); Buncombe Co., Blue Ridge, \textit{H. K. Svenson 13,024} 4 Aug 1949 (SMU); Buncombe Co., Cedar Cliff, \textit{D. E. Boufford 14404} 19 Jun 1974 (NCU); Caldwell Co., Blowing Rock, \textit{H. A. Ahles 43977} 18 Jun 1958 (WV); Caldwell Co., Draco, \textit{A. E. Radford 15108} 4 Aug 1956 (NCU); Clay Co., Buck Creek, \textit{H. E. Ahles 13663} 2 Jun 1956 (NCU); Clay Co., Clay-Macon Co line, \textit{Harry E. Ahles 13663} 2 Jun 1956 (KANU); Clay Co., Fires Creek, \textit{A. E. Radford 6161} 5 Jun 1952 (NCU); Clay Co., Perry Gap, \textit{D. E. Boufford 14156} 11 Jun 1974 (NCU); Clay Co., Perry Gap, \textit{D. E. Boufford 14210} 11 Jun 1974 (NCU); Forsyth Co., Yadkin River Bridge, \textit{J. R. Manhart 352} 30 May 1981 (MICH); Graham Co., Stecoach Gap, \textit{C. T. Bryson 6832} 30 Jul 1987 (VDB); Graham Co., Round Top Mt., \textit{H. E. Ahles 13189} 29 May 1956 (MICH); Graham Co., Round Top Mt., \textit{A. E. Radford 11842} 29 May 1956 (SMU); Graham Co., Appalachian Trail, \textit{C. T. Bryson 6832} 30 Jul 1987 (WIS); Graham Co., Robbinsville, \textit{J. A. Churchill 86232} 5 Jul 1986 (WIS); Graham Co., Round Top Mt., \textit{H. E. Ahles 13189} 29 May 1956 (NCU); Haywood Co., Crabtree, \textit{H. E. Ahles 46656} 15 Jul 1958 (NCU); Haywood Co., Mt. Pisgah, \textit{G. S. Ramseur 4552} 26 Jun 1958 (NCU); Haywood Co., Sunburst, \textit{D. E. Boufford 15049} 23 May 1974 (NCU); Henderson Co., Fletcher Academy, \textit{V. E. McNeilus s.n.} 19 Jul 1981 (WIS); Macon Co., Highlands, \textit{R. K. Godfrey 51430} 21 Jul 1951 (MICH); Macon Co., Buck Creek, \textit{D. E. Boufford 13759} 27 May 1974 (NCU); Macon Co., Coweeta, \textit{J. R. Manhart 297} 16 May 1981 (MICH); Macon Co., Coweeta, \textit{J. R. Manhart 58} 9 Jun 1980 (MICH); Macon Co., Coweeta Hydrologic Lab, \textit{Phillip E. Hyatt 6643} 11 Jun 1995 (MICH); Macon Co., Coweeta Hydrologic Lab, \textit{Phillip E. Hyatt 6096} 2 Jul 1994 (MICH); Macon Co., Coweeta Hydrologic Lab, \textit{James R. Manhart 297} 16 May 1981 (WIS); Macon Co., Coweeta Hydrologic Lab, \textit{Phillip E. Hyatt 8622} 28 May 1999 (USCH); Macon Co., Gneiss, \textit{A. E. Radford s.n.} 31 May 1947 (NCU); Macon Co., Highlands, \textit{D. E. Boufford 16129} 6 Jun 1975 (NCU); Macon Co., Hogback Gap, \textit{A. E. Radford 6116} 3 Jun 1952 (NCU); Macon Co., Moore Knob, \textit{P. D. McMillan 4540} 6 May 2000 (CLEMS); Macon Co., Nantahala, \textit{A. E. Radford 5253} 7 Jun 1950 (NCU); Macon Co., Otto, \textit{Phillip E. Hyatt 8196} 3 Jul 1998 (MICH); Madison Co., Big Laurel, \textit{H. E. Ahles 42615} 6 Jun 1958 (VDB); McDowell Co., Mill Creek, \textit{C. R. Bell 3487} 11 Jun 1956 (NCU); Mitchell Co., Spruce Pine, \textit{H. E. Ahles 43158} 16 Jun 1958 (NCU); Polk Co., Melrose, \textit{D. C. Peattie 656} 24 Jun 1921 (NCU); Polk Co., Tryon, \textit{F. R. Fosberg 18898} 19 Jun 1942 (NCU); Polk Co., Tryon, \textit{D. C. Peattie 2207} 20 May 1926 (NCU); Rutherford Co., Bat Cave Nature Preserve, \textit{H. McIver 28} 16 Jul 1981 (NCU); Stokes Co., Hanging Rock SP, \textit{H. E. Ahles 59485} 6 Jun 1965 (NCU); Surry Co., Low Gap, \textit{A. E. Radford 13148} 23 Jun 1956 (NCU); Swain Co., Alarka, \textit{C. R. Bell 3265} 6 Jun 1956 (NCU); Swain Co., Nantahala Gorge, \textit{D. E. Boufford 13667} 26 May 1974 (NCU); Swain Co., Nantahala Gorge, \textit{D. E. Boufford 13688} 26 May 1974 (NCU); Swain Co., Great Smoky Mt. NP, \textit{V. E. McNeilus s.n.} 27 Jun 1982 (WIS); Transylvania Co., Horsepasture Gorge, \textit{C. L. Rodgers 61397a} 9 Jul 1961 (NCU); Transylvania Co., Pilot Cove, \textit{D. E. Boufford 16690} 23 Jun 1975 (NCU); Transylvania Co., Pink Beds, \textit{D. E. Boufford 13487} 21 May 1974 (NCU); Transylvania Co., Thompson River Gorge, \textit{D. M. E. Ware 3087} 10 Jul 1970 (VDB); Transylvania Co., Thompson River Gorge, \textit{D. M. E. Ware 3142} 13 Jul 1970 (VDB); Watauga Co., Bethel, \textit{H. E. Ahles 43871} 18 Jun 1958 (NCU); Watauga Co., Blowing Rock, \textit{M. L. Smith 5861} 7 Aug 1981 (VPI); Watauga Co., Hanging Rock, \textit{J. Rohrer 1934} 10 Jun 1978 (NCU); Yadkin Co., Yadkin River Bridge, \textit{J. R. Manhart 320} 30 May 1981 (MICH); Yancey Co., Celo, \textit{H. E. Ahles 46939} 16 Jul 1958 (NCU); Yancey Co., Huntdale, \textit{H. E. Ahles 42818} 7 Jun 1958 (NCU). \end{sloppypar} Ohio: Belmont Co., Rock Run, \textit{A. W. Cusick 22616} 23 Jun 1983 (MICH); Belmont Co., Wayne twp., \textit{A. W. Cusick 9992} 21 Jun 1969 (NCU); Erie Co., Cedar Point, \textit{G. B. Ashcroft s.n.} 1 Jul 1997 (WIS); Holmes Co., Killbuck, \textit{A. W. Cusick 29,624} 5 Jun 1991 (VDB); Jefferson Co., Yellow Creek, \textit{A. W. cusick 25,456} 1 Jul 1986 (MICH); Lake Co., Painesville, \textit{H. C. Beardlee s.n.} (MSC); Lawrence Co., Lake Vesuvius Recreation Area, \textit{G. M. Silberhorn 2258} 7 Jul 1968 (NCU). Pennsylvania: Beaver Co., Moucea, \textit{J. Bright 6341} 4 Jun 1932 (SMU); Beaver Co., Monaco, \textit{John Bright 6338} 4 Jun 1932 (WIS); Bedford Co., Wolf Swamp Watershed, \textit{Homer Duppstadt s.n.} 15 Jul 1970 (WV); Bedford Co., Bakers Summit, \textit{D. Berkheimer 5900} 27 May 1945 (NCU); Bedford Co., Centerville, \textit{David Berkheimer 5927} 28 May 1945 (KANU); Berks Co., Esterly, \textit{W. C. Brumbach 3550} 27 Jun 1943 (VPI); Centre Co., Unionville, \textit{H. A. Wahl 988} 2 Jun 1941 (NEB); Chester Co., Lenape, \textit{L. A. Standley 1526} 21 Jun 1987 (MICH); Chester Co., Frazer, \textit{H. E. Stone s.n.} 28 Jun 1925 (SMU); Chester Co., Landenberg, \textit{E. C. Earle 5110} 27 Jun 1958 (SMU); Clarion Co., Driftwood, \textit{H. A. Wahl. s.n.} 19 Jun 1934 (WIS); Clearfield Co., Penfield, \textit{E. B. Ehrle 1562} 18 Sep 1955 (NYS); Delaware Co., Crum, \textit{F. J. Hermann 3090} 29 May 1932 (MICH); Erie Co., Erie, \textit{John Bright s.n.} 16 Jul 1927 (WV); Franklin Co., Tuscarora Summit, \textit{J. E. Benedict, Jr. 2859} 5 Jul 1934 (VPI); Lackawanna Co., Ransom, \textit{P. E. Rothrock 350} 3 Jun 1975 (NCU); Lancaster Co., Geiger's Quarry, \textit{Earl L. Core 6745} 18 Jun 1938 (WV); Lehigh Co., Lehigh River, \textit{H. W. Pretz 8948} 22 Jul 1917 (VDB); Lehigh Co., Emmaus, \textit{Harold W. Pretz 13772} 22 Jun 1947 (KANU); Lehigh Co., Hosensack, \textit{W. M. Benner s.n.} 17 Jun 1922 (GH); Lehigh Co., South Mountains, \textit{H. W. Pretz 6655} 13 Jun 1914 (VDB); Northampton Co., Lower Saucon, \textit{R. L. Schaeffer, Jr. 14398} 21 Jul 1941 (VPI); Northampton Co., 1.25 mi N of Lower Saucon, \textit{R. L. Schaeffer 14267} 16 Jul 1941 (GH); Northampton Co., Wassergass, \textit{R. L. Schaeffer 9564} 5 Aug 1940 (GH); Northampton Co., Easton, \textit{J. K. Small s.n.} 4 Jul 1890 (NCU); Northampton Co., Easton, \textit{N. L. Britton s.n.} 5 Jul 1889 (NEB); Northampton Co., Lower Saucon, \textit{R L Schaeffer 12460} 11 Jun 1941 (KANU); Susquehanna Co., Susquehanna, \textit{J. A. Graves s.n.} 1 Jul 1898 (NEB). Rhode Island: Providence Co., Diamond Hill, Town of Cumberland, \textit{E. J. Palmer 45584} 24 Aug 1941 (GH). South Carolina: \textit{W. W. Ashe 152} 16 Jul 1700 (NCU); Greenville Co., North Saluda Reservoir, \textit{John B. Nelson 16527} 15 May 1995 (NKY); Greenville Co., North Saluda Reservoir, \textit{J. B. Nelson 16,527} 15 May 1995 (MICH); Greenville Co., Bryant Mt., \textit{J. B. Nelson 16,522} 15 May 1995 (MICH); Greenville Co., Table Rock Reservoir Watershed, \textit{S. R. Hill 23617} 30 Jun 1992 (MICH); Greenville Co., Callahan/Hyde Mt., \textit{J. F. Townsend 2151} 13 Jun 2000 (CLEMS); Greenville Co., Glassy Mt., \textit{C. N. Horn 5251} 25 Jun 1992 (USCH); Greenville Co., Old Indian Mt., \textit{J. B. Nelson 16512} 15 May 1995 (USCH); Greenville Co., Table Rock Reservoir, \textit{S. R. Hill 23492} 22 Jun 1992 (CLEMS); Greenville Co., Table Rock Reservoir, \textit{S. R. Hill 23617} 30 Jun 1992 (CLEMS); Oconee Co., Wright Creek, \textit{D. M. E. Ware 2942} 8 May 1970 (VDB); Oconee Co., Chattooga Trail, \textit{L. L. Gaddy s.n.} 26 May 1986 (CLEMS); Oconee Co., Oconee SP, \textit{A. Darr 1927} 12 Jun 2003 (USCH); Oconee Co., Sumter National Forest, \textit{S. R. Hill 25048} 22 May 1993 (MICH); Oconee Co., Sumter National Forest, \textit{A. A. Reznicek 8982} 23 May 1992 (MICH); Oconee Co., Walhalla, \textit{A. E. Hodge 226} 2 May 1982 (NCU); Pickens Co., Rt. 11, \textit{S. R. Hill 19275} 9 May 1988 (VDB); Pickens Co., U. S. 178, \textit{C. R. Bell 3317} 8 Jun 1956 (NCU); Pickens Co., U. S. 178 , \textit{D. E. Boufford 20902} 14 May 1979 (VDB); Pickens Co., U. S. 178, \textit{C. Horn 19275} 9 May 1988 (MICH); Pickens Co., Rt. 178, \textit{S. R. Hill 19275} 9 May 1988 (CLEMS); Pickens Co., Chimneytop Gap, \textit{A. Darr 1930} 18 May 2004 (USCH); Pickens Co., Eastatoe Creek Gorge, \textit{D. E. Boufford 17371} 18 Jul 1975 (NCU); Pickens Co., Howell Mt., \textit{P. D. McMillan 6345} 12 May 2002 (CLEMS); Pickens Co., Pinnacle Mt., \textit{P. D. McMillan 7069} 19 Jun 2003 (CLEMS); Pickens Co., Sassafras Mt., \textit{J. F. Townsend 2073} 4 May 2000 (CLEMS); Pickens Co., Sassafras Mt., \textit{R. T. Clausen 3642} 16 Sep 1938 (NYS); Pickens Co., Table Rock Reservoir, \textit{S. R. Hill 23692} 10 Jul 1992 (CLEMS); Pickens Co., Wadakoe Mt., \textit{P. D. McMillan 6315} 30 Apr 2002 (CLEMS); Pickens Co., Wadakoe Mt., \textit{P. D. McMillan 6392} 11 May 2002 (CLEMS). Tennessee: Thompson's, \textit{Anonymous 1002} 1 May 1896 (NCU); Great Smoky Mts \textit{F. Rugel 107} 1 May 1844 (VDB); Anderson Co., Norris Dam, \textit{V. E. McNeilus 90346} 13 Jun 1990 (WIS); Anderson Co., Norris Dam, \textit{V. E. McNeilus 89-358} 13 Jun 1989 (MICH); Anderson Co., Norris Dam, \textit{A. J. Sharp 2744} 24 Jul 1934 (NCU); Anderson Co., Norris Dam SP, \textit{V. E. McNeilus 87-726} 12 May 1987 (BRIT); Blount Co., Cades Cove, \textit{C. T. Bryson 10820} 30 Jun 1991 (CLEMS); Blount Co., Cherokee NF, \textit{B. A. Ford 88926} 17 May 1989 (NYS); Blount Co., Great Smoky Mt. NP, \textit{C. T. Bryson 10820} 30 Jun 1991 (MICH); Blount Co., Great Smoky Mt. NP, \textit{S. Jones 4937} 22 May 1990 (WIS); Blount Co., Great Smoky Mt. NP, \textit{R. Athey s.n.} 15 May 1973 (VDB); Blount Co., Great Smoky Mt. NP, \textit{V. E. McNeilus s.n.} 6 Apr 1983 (WIS); Blount Co., Great Smokey Mt. NP, \textit{V. E. McNeilus s.n.} 19 May 1984 (WIS); Carter Co., Watuga Lake, \textit{J. R. Manhart 328} 31 May 1981 (MICH); Cheatham Co., Ashland City, \textit{R. Kral 26782} 6 Jun 1966 (MICH); Cheatham Co., Ashland City, \textit{T. Smith s.n.} 9 Jul 1982 (VDB); Clay Co., Celina, \textit{V. E. McNeilus 91-755} 5 Aug 1991 (MICH); Clay Co., Celina, \textit{V. E. McNeilus 91-340} 13 May 1991 (WIS); Coffee Co., Old Stone Fort SP, \textit{D. F. Brunton 10338} 22 May 1991 (MICH); Cumberland Co., Brady Mt., \textit{R. Kral 83559} 20 May 1994 (VDB); Cumberland Co., Brady Mt., \textit{R. Kral 83558} 20 May 1994 (MICH); Davidson Co., TN 12, \textit{R. Kral 77671} 22 May 1990 (VDB); Davidson Co., Joelton, \textit{J. M. Shaver 2475} 9 May 1942 (VDB); Davidson Co., Vicinity of Long Hollow, \textit{B. Bowen BB95-016} 1995 (VDB); Fentress Co., Clarkrange, \textit{A. W. Cusick 11,778} 26 Jun 1971 (VDB); Franklin Co., Carter Mt., \textit{P. Somers 1132} 21 May 1978 (VDB); Franklin Co., Wolf Cove, \textit{R. K. Clements 479} 14 Aug 1985 (VDB); Greene Co., Carmel, \textit{J. A. Churchill 93163} 13 Jun 1993 (WIS); Greene Co., Greene Mt., \textit{B. Boom 556} 11 Jun 1980 (EKY); Grundy Co., Beershaba Springs, \textit{K. Rogers 43586} 5 Jul 1969 (VDB); Grundy Co., Savage Creek Bridge, \textit{T. S. Patrick 380} 21 Aug 1977 (EKY); Grundy Co., Monteagle Mt., \textit{R. Kral 65036} 14 May 1980 (VDB); Grundy Co., Mt. View, \textit{R. Kral 68636} 31 May 1982 (VDB); Grundy Co., Altamont, \textit{R. Kral 77744} 29 May 1990 (VDB); Grundy Co., Monteagle, \textit{R. Kral 46503} 17 May 1972 (WIS); Grundy Co., Savage Gulf Natural Area, \textit{T. S. Patrick 379} 21 Aug 1977 (EKY); Grundy Co., Savage Gulf Natural Area, \textit{T. S. Patrick 202} 8 Jun 1977 (VDB); Grundy Co., The Fiery Gizzard Gorges, \textit{R. C. Clark 964} 26 Jun 1964 (NCU); Hamilton Co., Falling Water Falls State Natural Area, \textit{P. Somers 2095} 21 Aug 1981 (VDB); Hawkins Co., Kyles Ford, \textit{P. Somers 1789} 28 Jun 1979 (VDB); Jackson Co., Brimstone Creek Bridge, \textit{R. Kral 80520} 14 May 1992 (VDB); Lawrence Co., Lawrenceburg, \textit{R. Kral 77463} 5 May 1990 (VDB); Macon Co., \textit{K. E. Blum 3446} 13 May 1969 (VDB); Monroe Co., Cherokee National Forest, \textit{D. E. Boufford 23607} 18 May 1985 (VDB); Morgan Co., Stephen's, \textit{K. E. Rogers 44696} 14 May 1966 (SMU); Morgan Co., Frozen Head SP, \textit{V. E. McNeilus s.n.} 13 May 1984 (WIS); Morgan Co., Gatewood Bridge, \textit{V. E. McNeilus s.n.} 20 Jun 1982 (WIS); Overton Co., Allred, \textit{V. E. McNeilus 93-1112} 22 Jun 1993 (WIS); Polk Co., Hiawassee River, \textit{V. E. McNeilus s.n.} 10 Apr 1984 (WIS); Polk Co., Wolf Creek, \textit{J. K. Underwood 41183} 28 May 1966 (SMU); Putnam Co., I40, \textit{L. E. McKinney 2132} 10 May 1986 (VDB); Rhea Co., Dayton, \textit{V. E. McNeilus 88-328} 18 May 1988 (WIS); Rhea Co., Dayton, \textit{V. E. McNeilus s.n.} 23 May 1982 (WIS); Roane Co., Clifty Creek, \textit{V. E. McNeilus 87727} 13 May 1987 (WIS); Scott Co., Big South Fork Nat. Rec. area, \textit{V. E. McNeilus 87-728} 6 May 1987 (MICH); Scott Co., Big South Fork National Recreation Area, \textit{V. E. McNeilus 87530} 27 Jun 1987 (WIS); Scott Co., Big South Fork National River and Recreation Area, \textit{A. A. Reznicek 9556} 22 Jun 1993 (MICH); Sequatchie Co., Dunlap, \textit{R. Kral 77730} 29 May 1990 (VDB); Sevier Co., Gatlinburg, \textit{S. Jones 4933} 22 May 1990 (VDB); Sevier Co., Great Smoky Mt. NP, \textit{V. E. McNeilus s.n.} 23 May 1983 (WIS); Sevier Co., Great Smoky Mt. NP, \textit{D. F. Brunton 7840} 9 May 1988 (MICH); Sevier Co., Greenbrier, \textit{A. J. Sharp 1981} 5 Jul 1934 (NCU); Sevier Co., Great Smoky Mt. NP, Greenbriar School, \textit{V. E. McNeilus s.n.} 24 May 1981 (WIS); Sevier Co., Great Smoky Mt. NP, Laurel Falls, \textit{V. E. McNeilus s.n.} 24 May 1981 (WIS); Sevier Co., Great Smoky Mt. NP, \textit{V. E. McNeilus s.n.} 29 Jun 1980 (WIS); Sevier Co., Great Smoky Mt. NP, \textit{V. E. McNeilus s.n.} 22 May 1982 (WIS); Sevier Co., Sugarland, \textit{Ken Rogers 43617} 29 Jun 1969 (WIS); Sumner Co., Westmoreland, \textit{J. Alcorn 437} 19 May 1975 (VDB); Sumner Co., Taylor Hollow, \textit{R. Carter 1830} 18 May 1979 (VDB); Unicoi Co., Devil's Creek, \textit{B. Boom 543} 10 Jun 1980 (EKY); Unicoi Co., Unicoi, \textit{H. E. Ahles 54696} 16 Jun 1961 (NCU); Van Buren Co., Spenser, \textit{R. Kral 80571} 19 May 1992 (VDB); Williamson Co., Inman Branch , \textit{R. Kral 88609} 2 Jun 1999 (VDB). Vermont: Bennington Co., North Pownal, \textit{D. E. Boufford 17829} 11 Aug 1975 (NCU); Bennington Co., North Pownal, \textit{E. W. Wood 2319} 11 Aug 1975 (GH). Virginia: Albermarle Co., Shenandoah NP, \textit{C. E. Stevens 3780} 10 Jul 1971 (NCU); Alleghany Co., Peters Mt., \textit{T. F. Wieboldt 6433} 14 Jul 1987 (VPI); Appoxattox Co., Stonewall, \textit{A. M. Harvill 16845} 8 Jul 1967 (NCU); Bath Co., Nimrod Hall, \textit{G. P. Fleming 13381} 25 Jun 1997 (VPI); Buchanan Co., Slate, \textit{T. F. Wieboldt 8559} 20 May 1993 (VPI); Buchanon Co., Prater, \textit{J. A. Churchill 8284} 16 Jun 1982 (WIS); Carroll Co., Burks Fork, \textit{D. W. Ogle 6383} 30 May 1987 (VPI); Carroll Co., Galax, \textit{G. B. Rossbach 2646} 18 Jun 1961 (WV); Carroll Co., Va 694, \textit{L. J. Uttal 7168} 4 Jun 1970 (VPI); Clarke Co., Buzzard Hill; Bluemont, \textit{G. P. Fleming 5465} 25 May 1991 (VPI); Craig Co., Potts Mt., \textit{T. L. Sharik SM77-5389} 13 May 1977 (VPI); Dickinson Co., Bartlick, \textit{T. F. Wieboldt 4512} 26 Aug 1982 (VPI); Fauquier Co., Bull Run Mountain, \textit{H. A. Allard 11909} 15 Jun 1946 (WIS); Fauquier Co., Bull Run Mountains, \textit{H. A. Allard 19604} 4 Jun 1950 (WV); Fauquier Co., Marshall, \textit{G. P. Fleming 2290} 15 Jun 1986 (CLEMS); Fauquier Co., Western slope of Bull Run Mountains, \textit{H. A. Allard 5317} 31 Jul 1938 (VPI); Fauquier Co., Hopewell Gap, \textit{H. A. Allard 406} 26 May 1936 (VPI); Floyd Co., Rt. 648, \textit{G. P. Frank 616} 17 Jul 1981 (VPI); Grayson Co., Bald Rock, \textit{D. W. Ogle 1291} 28 Jul 1978 (VPI); Grayson Co., Bridle Creek, \textit{T. F. Wieboldt 6159} 25 Jun 1986 (WIS); King George Co., Caledon Marsh, \textit{D. M. E. Ware 8520} 6 Aug 1983 (VDB); King George Co., Caledon Swamp, \textit{D. M. E. Ware 8186} 8 Jun 1983 (CLEMS); Lee Co., Stone Mt., \textit{D. W. Ogle 5258} 2 Jun 1984 (VPI); Madison Co., Stony Man Mt., \textit{H. D. House 4769} 13 Sep 1948 (NYS); Montgomery Co., McCoy, \textit{R. Kral 10611} 22 Jun 1960 (VDB); Morgan Co., Cacapon Mt. SP, \textit{T. F. Wieboldt 6211} 13 Aug 1986 (WIS); Page Co., Big Meadows, \textit{J. A. Churchill s.n.} 20 Jun 1957 (MSC); Page Co., Blue Ridge Mts, \textit{F. J. Hermann 11405} 15 Oct 1944 (MICH); Page Co., Knob Mt., \textit{F. W. Hunnewell 19133} 24 Jun 1949 (VPI); Patrick Co., Dodson, \textit{T. F. Wieboldt 9504} 25 Jul 1996 (VPI); Patrick Co., Philpott Reservoir, \textit{T. F. Wieboldt 9504} 25 Jul 1996 (MICH); Pulaski Co., Big Walker Mt., \textit{T. F. Wieboldt 9987} 2 Jul 1998 (VPI); Pulaski Co., Rt. 606, \textit{J. A. Smith s.n.} 8 Aug 1975 (VPI); Rappahannock Co., Shenandoah NP, \textit{F. R. Fosberg 41122} 3 Aug 1960 (SMU); Rappahannock Co., Shenandoah NP, \textit{F. H. Sargent s.n.} 16 Jun 1951 (WIS); Rappahannock Co., Shenandoah NP, \textit{F. R. Fosberg 48510} 4 Jun 1967 (MICH); Rappahannock Co., Shenandoah NP, \textit{F. R. Fosberg 31000} 17 Jul 1949 (VDB); Rappahannock Co., Shenandoah NP, \textit{F. R. Fosberg 45460} 6 Jun 1964 (MICH); Rappahannock Co., Shenandoah NP, \textit{F. H. Sargent s.n.} 16 Jun 1951 (SMU); Roanoke Co., Haven's WMA, Ft. Lewis Mt., \textit{N. A. Mason s.n.} 15 Jun 1991 (VPI); Roanoke Co., Poor Mt., \textit{C. E. Stevens 2672} 7 Sep 1970 (VPI); Scott Co., Fort Blackmore, \textit{R. Naczi 6889} 15 Aug 1997 (NKY); Shenandoah Co., Big Schloss, \textit{C. E. Stevens 1231} 21 Jul 1969 (VPI); Smyth Co., Marion, \textit{R. Kral 10900} 2 Aug 1960 (SMU); Tazewell Co., Flattop Mt., \textit{L. J. Uttal 7130} 28 May 1970 (VPI); Wise Co., Guest River Gorge, \textit{D. W. Ogle 5605} 14 Sep 1984 (VPI). West Virginia: Mamonon, \textit{John L. Sheldon s.n.} 20 Jul 1918 (WV); Braxton Co., Strange Creek, \textit{W. V. University Biological Expedition s.n.} 17 Jun 1941 (WV); Fayette Co., New River Gorge, \textit{Rodney L. Bartgis s.n.} 5 Jun 1983 (WV); Fayette Co., Beckwith, \textit{Earl L. Core 4232} 8 Jul 1932 (WV); Fayette Co., Clifftop, \textit{William N. Grafton s.n.} 4 Jun 1995 (WV); Fayette Co., Short, \textit{Rodney L. Bartgis s.n.} 5 Jun 1983 (WV); Grant Co., Dolly Sods, \textit{William N. Grafton s.n.} 3 Jun 1999 (WV); Hampshire Co., Nathaniel Mt., \textit{Homer Duppstadtq s.n.} 30 Jun 1977 (WV); Hancock Co., Tomlinson Run SP, \textit{J. Sumpstine s.n.} 1 Jul 1939 (WV); Hardy Co., Lost River, \textit{H. A. Allard 6736} 8 Jun 1939 (WV); Harrison Co., Turtletree Fork , \textit{William N. Grafton s.n.} 5 Jun 1980 (WV); Jefferson Co., Avon Bend, \textit{Rodney Bartgis 1287} 26 May 1989 (WV); Lewis Co., Camden, \textit{W. V. U. Botanical Expedition s.n.} 15 Jun 1928 (WV); McDowell Co., Payton, \textit{William N. Grafton s.n.} 22 Jun 1996 (WV); Mercer Co., Camp Creek, \textit{William N. Grafton s.n.} 9 Jun 1987 (WV); Monongalia Co., Chestnut Ridge Regional Park, \textit{William N. Grafton s.n.} 28 Aug 1996 (WV); Monongalia Co., Dellslow, \textit{John L. Sheldon s.n.} 10 Jun 1918 (WV); Morgan Co., Cacapon Mt. SP., \textit{T. F. Wieboldt 6211} 13 Aug 1986 (VPI); Nicholas Co., Nettie, \textit{William Basil Fox s.n.} 21 Jun 1940 (WV); Pendleton Co., Seneca Rocks, \textit{H. A. Allard 20631} 3 Jul 1952 (WV); Pendleton Co., Seneca Rocks Trail, \textit{William N. Grafton s.n.} 10 Aug 1997 (WV); Pendleton Co., Seneca, \textit{Earl L. Core 6135} 16 Jul 1937 (WV); Raleigh Co., Ivy Knob, \textit{William N. Grafton s.n.} 30 Jun 1974 (WV); Ritchie Co., U. S. 50, \textit{William N. Grafton s.n.} 8 Jun 1999 (WV); Roane Co., Hungry Beech Preserve, \textit{Emily Grafton s.n.} 23 Jun 1979 (WV); Tucker Co., Canaan Valley, \textit{H. A. Allard 19539} 24 Jul 1949 (WV); Tyler Co., Sistersville, \textit{Earl L. Core 4133} 24 Jun 1932 (WV); Upshur Co., Middle Fork River, \textit{William N. Grafton s.n.} 3 Aug 1995 (WV); Wayne Co., Buffalo Creek, \textit{Lewis Plymale 379} 7 May 1938 (WV); Wetzel Co., Littleton, \textit{Oscar Haught 374} 11 Jun 1931 (WV); Wood Co., U. S. 50, \textit{William N. Grafton s.n.} 8 Jun 1999 (WV). \end{document} latex2rtf-2.3.18/test/bib_apalike2.tex0000777000175000017500000002303613050672360017736 0ustar wilfriedwilfried\documentclass[12pt,titlepage]{article} %Esser's rules: 10-12pt \title{Article Review of:\\Big Brother and the Bookie} \author{Justin Gombos} \date{11/4/2002} \begin{document} \maketitle \baselineskip=19pt \section{Societal impact of the Scarfo case} The government has once again over-stepped their power. Fourth Amendment rights are conveniently tossed out the door as usual, and George Anastasia covers it in his article \textit{Big Brother and the Bookie}. He does a decent job of informing the public that there is a real concern for privacy issues today. He illustrates a current threat to the privacy of citizens, and his article is effective. The main weakness is oversight of details. Emphasis in this paper will be on the lacking details. \section{Anastasia claims the feds bugged Scarfo's phone} The biggest flaw in Anastasia's article comes from his statement that the FBI did not have a wiretap warrant, yet they recorded conversations at the beginning of the investigation in 1999, the same time they seized his computer data and implanted the keyboard logger system (KLS). The greatest weakness in the prosecutions case stemmed from not having a warrant permitting the FBI to wiretap Scarfo. Yet Anastasia fails to explain how the FBI justified recording phone conversations of Scarfo \cite{ANASTASIA}. An explanation is important here. While the FBI can always argue a strong point that keyboard monitoring is not covered in the wiretapping regulations, phone conversation monitoring is covered in great detail. If the FBI illegally monitored Scarfo's phone line, then the defense can suppress all evidence collected in connection to that illegal wiretapping activity. This also serves as an indicator that the FBI was clearly conducting an illegitimate investigation, thus supporting the defenses motion to suppress evidence connected with monitoring Scarfo's keyboard. \section{Technical details on the KLS overlooked} Anastasia simply describes the KLS as a sugar cube sized device that is planted in the keyboard and transmits keystrokes to a remote listening station. An explanation like this will suffice for a typical non-technical reader, however, it's insufficient for critical analysis. With Anastasia's explanation, the reader concludes that the feds were collecting every keystroke. This includes keystrokes transmitted off the premises. This leads the reader to conclude without doubt that the target was wire-tapped. There are a couple reasons why Anastasia would mislead the reader in this way. It could be to generate hype, or simply out of carelessness. Maybe this was done to keep the article simple and non-technical. The KLS actually turns out to be multiple components concealed in different places, such as the keyboard and within the computer case. This is an important distinction. According to an affidavit submitted by Randall Murch, one of the components monitors the communications ports and is also in communication with the keyboard implant \cite{RANDALL}. When a key is pressed, the keyboard device queries the port monitor as to whether the character made it through the port. If the answer is no, the character is not considered a transmitted character and is recorded. Otherwise, it's ignored. This is the basis for which the government denies the claim to be intercepting transmissions. \section{Sneaky FBI tricks} The FBI plotted specifically to circumvent wiretap restrictions in the creation of the KLS. This motive is absent in Anastasia's report. The key logger was designed such that the only messages exempt from eavesdropping are those sent in real-time character for character. Effectively, the FBI has claimed that only instant messaging oriented transmissions are protected from the KLS by the Title III wiretapping regulations. Email is vulnerable to eavesdropping, and no wiretap warrant is necessary if the interception occurs on the data before or after the data is transmitted. In the prosecutions rebuttal to the motion to suppress evidence, they stated that they only need a search warrant to obtain documents from a particular location. If such documents are faxed before or after interception, it's immaterial and no wiretap warrant is necessary. The prosecution concluded without sound reasoning that they could apply this same philosophy to email. If an email intercepted before or after transmission, it does not fall under the Title III wiretapping regulation \cite{CLEARY}. It's an absolute outrage that the judge accepted this reasoning. Almost equally appalling is Anastasia's failure to bring this to light. The FBI made an indirect assertion that because there is some lag time between data entry and data transmission, eavesdropping does not constitute wiretapping \cite{CLEARY}. The prosecutions case hinged significantly on this silly technicality, and this point should be one of the major points discussed in any report regarding the Scarfo case. \section{Setting the standard} Using technology, the feds have conceived a method for circumventing their responsibility in obtaining proper warrants for wiretaps. They can now intercept email messages without the burden of seeking wiretapping approval and without regard to the Fourth Amendment. \section{General warrant} When the defense motioned for suppression of evidence, another strong point relates to general warrants. Investigators cannot simply rummage through someone's property looking for something that can be used against them. A search must be focused with an expectation of finding a specific piece of evidence. Anything else discovered must be ignored. ``A general warrant is described as one that authorizes 'a general, exploratory rummaging in a person's belongings,''' \cite{GELMAN}. Cleary argued that investigators recorded a minimal number of keystrokes to obtain Scarfo's password \cite[p.20]{CLEARY}. He sited cases where it has been generally accepted to look through items that are not part of the search if necessary to uncover an item that is targeted in a search. For example, if they are searching for a document that is at the bottom of a drawer, it's acceptable to look at other documents in the drawer long enough to determine if they are the document in question. Both the defense and Anastasia failed to mention that the investigators had alternative options available for capturing the password without capturing unnecessary information. The KLS captured all keystrokes. The FBI was aware that it was a PGP pass-phrase that needed to be captured. They could have easily installed a software or hardware device that detects a PGP pass-phrase prompt, and only record the keystrokes that followed before enter was pressed. Instead, the FBI captured everything, and because they captured more information than necessary, the defense could have made a case against them. The defense did not address the prosecutions statement disclaiming the existence of a general warrant, and weakened their case. \section{Anastasia's article--- adequate for casual non-technical readers only} George Anastasia's article \textit{Big Brother and the Bookie} provides a decent summary of the U.S. governments case against Nicodemo Scarfo, but overlooks some important key points in the interest of entertaining the casual reader. He supplies irrelevant details such as Scarfo's illegal video poker machines, details about his father and other mobster activity, and discusses how Scarfo dealt with rodents in his house. If Anastasia's goal was ``infotainment,'' he achieved it. If his goal was to make the general public aware of the governments Orwellian domestic spying activities, he achieved it. However, critical readers were left at a loss for details about how the government got away with violating Scarfo's Fourth Amendment rights. As a Fourth Amendment advocate, I became tired of hearing Anastasia go on about what happened, with little explanation as to how it happened. Reading the court documents was necessary in filling in the blanks as to how the government got away with disposing of Scarfo's Fourth Amendment right. While misuse of the latest FBI gadget cost Scarfo 33 months of incarceration, we all pay the price of reduced civil liberties. \begin{thebibliography}{} \bibitem[Anastasia, 2002]{ANASTASIA} Anastasia, G. (2002). \newblock Big brother and the bookie: how the feds turned top-secret spy technology against the son of a mafia don--and made a low-level wiseguy into a poster boy for the fourth amendment. \newblock {\em Mother Jones}. \newblock http://www.motherjones.com/magazine/JF02/mafia.html. \bibitem[Cleary, 2001]{CLEARY} Cleary, R.~J. (2001). \newblock Brief of the united states in opposition to defendant scarfo's pretrial motions. \newblock http://www2.epic.org/crypto/scarfo/gov\_brief.pdf. \newblock Retrieved November 3, 2002. \bibitem[Gelman and Scoca, 2001]{GELMAN} Gelman, N.~E. and Scoca, V.~C. (2001). \newblock Defense motion to suppress evidence seized by the government through the use of a keystroke recorder. \newblock http://www2.epic.org/crypto/scarfo/def\_supp\_mot.pdf. \newblock Retrieved November 3, 2002. \bibitem[Murch, 2001]{RANDALL} Murch, R.~S. (2001). \newblock Affidavit of randall s. murch. \newblock http://www2.epic.org/crypto/scarfo/murch\_aff.pdf. \newblock Received on November 3, 2002. \end{thebibliography} \end{document} latex2rtf-2.3.18/test/hyperref.tex0000777000175000017500000000356413050672357017270 0ustar wilfriedwilfried\documentclass{article} \usepackage{hyperref} \usepackage{nameref} \newif\iflatextortf \begin{document} \newcommand{\myref}[1]{`\nameref{#1}' (see p.\pageref{#1})} \iflatextortf \newcommand{\myurl}[1]{\nolinkurl{#1}} \let\letequalurl=\nolinkurl \let\leturl\nolinkurl \else \let\myurl\url \let\letequalurl=\url \let\leturl\url \fi \section{The first section} hello a \href{http://www-fourier.ujf-grenoble.fr:80/cgi-bin/zbfr/ZB/math-fr.html?AU=Taylor,+R&format=complete&type=html&maxdocs=10}{weird} reference a second reference \href{http://www.tug.org/}{tug} to the \TeX{} website which when applied as follows: \section{Random Stuff}\label{randomlabel} This is very dependent on \myref{randomlabel}. \subsection{url} We can use the \verb#\url# command to do this as well like so: \url{http://www.tug.org}. The \verb#\nolinkurl{}# is similar but non-functional: \nolinkurl{http://www.tug.org}. Now this link \myurl{http://latex2rtf.sourceforge.net/some%20link.html} does not really exist, but it should show up in the RTF document without a hyperlink. It should still have a link in the PDF file created using \texttt{pdflatex}. \section{About paragraph breaks} There should be a paragraph break between these two urls. \url{http://www.tug.org/one}. \url{http://www.tug.org/two}. %\hypertarget{TestTarget}{goodbye} \end{document} \section{Testing the let command} These don't work yet, that is why there is an \verb#\end{document}# above. \iflatextortf \let\letequalurl=\nolinkurl \let\leturl\nolinkurl \else \let\letequalurl=\url \let\leturl\url \fi Here is a test of the \verb#\let\letequalurl=\nolinkurl# implementation. The following shouls be a simple url without a link. \letequalurl{http://simple} Here is a test of the \verb#\let\leturl\nolinkurl# implementation. The following shouls be a simple url without a link. \leturl{http://just.as.simple.com} \end{document}latex2rtf-2.3.18/test/fig_testc.ps0000777000175000017500000000315513050672360017223 0ustar wilfriedwilfried%!PS-Adobe-2.0 EPSF-2.0 %%Title: version = 1.02 of testprinter.ps 2003 Feb 20 %%Creator: Tom Schneider, toms@ncifcrf.gov %%BoundingBox: 100 300 500 700 %%Pages: atend %%DocumentFonts: %%EndComments %%EndProlog %%Page: 1 1 % history: % 2003 Feb 20, 1.02: add bounding box and mk eps % 1996 Feb 8, 1.01: origin was before this date. % This is a small file for testing color and other PostScript printers % It produces the word "printer" several times in a circle, % changing color each time. % Dr. Thomas D. Schneider % National Cancer Institute % Laboratory of Experimental and Computational Biology % Frederick, Maryland 21702-1201 % toms@ncifcrf.gov % permanent email: toms@alum.mit.edu (use only if first address fails) % http://www.lecb.ncifcrf.gov/~toms/ % source: % PostScript Language Tutorial and Cookbook, p. 49 /Times-Roman findfont 30 scalefont setfont /steps 16 def /hue 0 def /huestep 1 steps div def % rate of hue change (0.01 is nice) /angle 360 steps div def /changecolor { % change the color /hue hue huestep add dup 1 gt {pop 0} if def % modify the hue hue % this is the hue 1.0 % this is the saturation 1.0 % this is the brightness sethsbcolor % reset the color } def /square {newpath angle rotate changecolor 0 0 moveto 90 0 lineto 90 90 lineto 0 90 lineto closepath stroke 6 92 moveto % label the box (printer) show } def /circlesymbol { % x y radius circlesymbol - (path) newpath 0 360 arc closepath} bind def 300 500 translate /size 15 def 15 { /size size 1 sub def size 15 div setgray 0 0 size 10 mul circlesymbol stroke } repeat steps {square} repeat showpage %%Trailer %%Pages: 1 latex2rtf-2.3.18/test/geotest.rtf0000644000175000017500000002505213664476467017115 0ustar wilfriedwilfried{\rtf1\ansi\uc1\deff0\deflang1024 {\fonttbl{\f0\fnil\fcharset0 Times New Roman;} {\f1\fnil\fcharset0 Arial;} {\f2\fnil\fcharset0 Arial;} {\f3\fnil\fcharset0 Courier New;} {\f4\fnil\fcharset0 Zapf Chancery;} {\f5\fnil\fcharset0 STIXGeneral;} {\f6\fnil\fcharset0 MS Gothic;} } {\colortbl; \red0\green0\blue0; \red0\green0\blue255; \red0\green255\blue255; \red0\green255\blue0; \red255\green0\blue255; \red255\green0\blue0; \red255\green255\blue0; \red255\green255\blue255; } {\stylesheet {\s0\qj\widctlpar\f0\fs20 \snext0 Normal;} {\cs10 \additive\ssemihidden Default Paragraph Font;} {\s1\qc\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 Part;} {\s2\ql\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 heading 1;} {\s3\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 2;} {\s4\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 3;} {\s5\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 4;} {\s6\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 5;} {\s7\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 6;} {\s8\qr\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext8 rightpar;} {\s9\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext9 centerpar;} {\s10\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext10 leftpar;} {\s11\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equation;} {\s12\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationNum;} {\s13\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlign;} {\s14\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlignNum;} {\s15\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArray;} {\s16\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArrayNum;} {\s17\ql\sb120\sa120\keep\widctlpar\f0\fs20 \sbasedon0\snext0 theorem;} {\s18\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 bitmapCenter;} {\s20\qc\sb240\sa240\b\f0\fs36 \sbasedon0\snext21 Title;} {\s21\qc\sa120\f0\fs20 \sbasedon0\snext0 author;} {\s22\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext22 footer;} {\s23\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext23 header;} {\s30\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 caption;} {\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext0 Figure;} {\s32\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext32 Table;} {\s33\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext33 Tabular;} {\s34\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext34 Tabbing;} {\s35\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext35 Quote;} {\s38\ql\widctlpar\f3\fs20 \snext38 verbatim;} {\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext46 List;} {\s47\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext47 List 1;} {\s50\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 latex picture;} {\s51\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 subfigure;} {\s61\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext62 bibheading;} {\s62\ql\fi-567\li567\sb0\sa0\f0\fs20 \sbasedon0\snext62 bibitem;} {\s64\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext64 endnotes;} {\s65\ql\fi-113\li397\lin397\f0\fs20 \sbasedon0\snext65 footnote text;} {\s66\qj\fi-170\li454\lin454\f0\fs20 \sbasedon0\snext66 endnote text;} {\cs62\super \additive\sbasedon10 footnote reference;} {\cs63\super \additive\sbasedon10 endnote reference;} {\s67\ql\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext67 acronym;} {\s70\qc\sa120\b\f0\fs20 \sbasedon0\snext71 abstract title;} {\s71\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext0 abstract;} {\s80\ql\sb240\sa120\keepn\f0\b\fs20 \sbasedon0\snext0 contents_heading;} {\s81\ql\li425\tqr\tldot\tx8222\sb240\sa60\keepn\f0\fs20\b \sbasedon0\snext82 toc 1;} {\s82\ql\li512\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext83 toc 2;} {\s83\ql\li1024\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext84 toc 3;} {\s84\ql\li1536\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext85 toc 4;} {\s85\ql\li2048\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 5;} {\s86\ql\li2560\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 6;} } {\info {\title Original file was geotest.tex} {\doccomm Created using latex2rtf 2.3.18 r1266 (released May 29, 2020) on Sat May 30 17:35:19 2020 } } {\footer\pard\plain\f0\fs20\qc\chpgn\par} \paperw12280\paperh15900\margl1841\margr1841\margt3816\margb954\pgnstart0\widowctrl\qj\ftnbj\f0\aftnnar {\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi0 When I drew nigh the nameless city I knew it was accursed. I was traveling in a parched and terrible valley under the moon, and afar I saw it protruding uncannily above the sands as parts of a corpse may protrude from an ill-made grave. Fear spoke from the age-worn stones of this hoary survivor of the deluge, this great-grandfather of the eldest pyramid; and a viewless aura repelled me and bade me retreat from antique and sinister secrets that no man should see, and no man else had dared to see..\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Remote in the desert of Araby lies the nameless city, crumbling and inarticulate, its low walls nearly hidden by the sands of uncounted ages. It must have been thus before the first stones of Memphis were laid, and while the bricks of Babylon were yet unbaked. There is no legend so old as to give it a name, or to recall that it was ever alive; but it is told of in whispers around campfires and muttered about by grandams in the tents of sheiks so that all the tribes shun it without wholly knowing why. It was of this place that Abdul Alhazred the mad poet dreamed of the night before he sang his unexplained couplet:\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 That is not dead which can eternal lie, And with strange aeons death may die. I should have known that the Arabs had good reason for shunning the nameless city, the city told of in strange tales but seen by no living man, yet I defied them and went into the untrodden waste with my camel. I alone have seen it, and that is why no other face bears such hideous lines of fear as mine; why no other man shivers so horribly when the night wind rattles the windows. When I came upon it in the ghastly stillness of unending sleep it looked at me, chilly from the rays of a cold moon amidst the desert\rquote s heat. And as I returned its look I forgot my triumph at finding it, and stopped still with my camel to wait for the dawn.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 For hours I waited, till the east grew grey and the stars faded, and the grey turned to roseate light edged with gold. I heard a moaning and saw a storm of sand stirring among the antique stones though the sky was clear and the vast reaches of desert still. Then suddenly above the desert\rquote s far rim came the blazing edge of the sun, seen through the tiny sandstorm which was passing away, and in my fevered state I fancied that form some remote depth there came a crash of musical metal to hail the fiery disc as Memnon hails it from the banks of the Nile. My ears rang and my imagination seethed as I led my camel slowly across the sand to that unvocal place; that place which I alone of living men had seen.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 In and out amongst the shapeless foundations of houses and places I wandered, finding never a carving or inscription to tell of these men, if men they were, who built this city and dwelt therein so long ago. The antiquity of the spot was unwholesome, and I longed to encounter some sign or device to prove that the city was indeed fashioned by mankind. There were certain proportions and dimensions in the ruins which I did not like. I had with me many tools, and dug much within the walls of the obliterated edifices; but progress was slow, and nothing significant was revealed. When night and the moon returned I felt a chill wind which brought new fear, so that I did not dare to remain in the city. And as I went outside the antique walls to sleep, a small sighing sandstorm gathered behind me, blowing over the grey stones though the moon was bright and most of the desert still.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 I awakened just at dawn from a pageant of horrible dreams, my ears ringing as from some metallic peal. I saw the sun peering redly through the last gusts of a little sandstorm that hovered over the nameless city, and marked the quietness of the rest of the landscape. Once more I ventured within those brooding ruins that swelled beneath the sand like an ogre under a coverlet, and again dug vainly for relics of the forgotten race. At noon I rested, and in the afternoon I spent much time tracing the walls and bygone streets, and the outlines of the nearly vanished buildings. I saw that the city had been mighty indeed, and wondered at the sources of its greatness. To myself I pictured all the spendours of an age so distant that Chaldaea could not recall it, and thought of Sarnath the Doomed, that stood in the land of Mnar when mankind was young, and of Ib, that was carven of grey stone before mankind existed.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 All at once I came upon a place where the bed rock rose stark through the sand and formed a low cliff; and here I saw with joy what seemed to promise further traces of the antediluvian people. Hewn rudely on the face of the cliff were the unmistakable facades of several small, squat rock houses or temples; whose interiors might preserve many secrets of ages too remote for calculation, though sandstorms had long effaced any carvings which may have been outside.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Very low and sand-choked were all the dark apertures near me, but I cleared on with my spade and crawled through it, carrying a torch to reveal whatever mysteries it might hold. When I was inside I saw that the cavern was indeed a temple, and beheld plain signs of the race that had lived and worshipped before the desert was a desert. Primitive altars, pillars, and niches, all curiously low, were not absent; and though I saw no sculptures or frescoes, there were many singular stones clearly shaped into symbols by artificial means. The lowness of the chiselled chamber was very strange, for I could hardly kneel upright; but the area was so great that my torch showed only part of it at a time. I shuddered oddly in some of the far corners; for certain altars and stones suggested forgotten rites of terrible, revolting and inexplicable nature and made me wonder what manner of men could have made and frequented such a temple. When I had seen all that the place contained, I crawled out again, avid to find what the temples might yield.\par }} }}}latex2rtf-2.3.18/test/setspace.tex0000777000175000017500000001311413050672355017241 0ustar wilfriedwilfried\documentclass{article} \usepackage{setspace} \begin{document} %\linespread{factor} To change line spacing within the document, the setspace package provides the environments singlespace, onehalfspace, doublespace and spacing: This paragraph has \\ default \\ line spacing. \begin{doublespace} This paragraph has \\ double \\ line spacing. \end{doublespace} Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. \begin{doublespace} This paragraph has \\ double \\ line spacing. \end{doublespace} Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. \begin{spacing}{1.25} This paragraph has \\ one and a quarter spacing \\ between lines. \end{spacing} Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. \begin{spacing}{2} This paragraph has \\ double spacing \\ between lines. \end{spacing} Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. \begin{spacing}{2.5} This paragraph has \\ huge gaps \\ between lines. \end{spacing} Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. \singlespacing [singlespacing] Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius. Claritas est etiam processus dynamicus, qui sequitur mutationem consuetudium lectorum. Mirum est notare quam littera gothica, quam nunc putamus parum claram, anteposuerit litterarum formas humanitatis per seacula quarta decima et quinta decima. Eodem modo typi, qui nunc nobis videntur parum clari, fiant sollemnes in futurum. \onehalfspacing [1.5 spacing] Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius. Claritas est etiam processus dynamicus, qui sequitur mutationem consuetudium lectorum. Mirum est notare quam littera gothica, quam nunc putamus parum claram, anteposuerit litterarum formas humanitatis per seacula quarta decima et quinta decima. Eodem modo typi, qui nunc nobis videntur parum clari, fiant sollemnes in futurum. \doublespacing [doublespacing] Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius. Claritas est etiam processus dynamicus, qui sequitur mutationem consuetudium lectorum. Mirum est notare quam littera gothica, quam nunc putamus parum claram, anteposuerit litterarum formas humanitatis per seacula quarta decima et quinta decima. Eodem modo typi, qui nunc nobis videntur parum clari, fiant sollemnes in futurum. \end{document}latex2rtf-2.3.18/test/bib_super.tex0000777000175000017500000000163713050672355017413 0ustar wilfriedwilfried\documentclass{article} \usepackage[super,sort&compress,comma]{natbib} \renewcommand{\refname}{Literature Cited} \renewcommand{\deg}{\ensuremath{^\circ}} % degrees \begin{document} This is a citation for which 5\deg the citation should be known \cite{known}. We follow this with an unknown citation \cite{unknown}. To test various combinations we need to cite more than one author. To this end, I cite two known authors \cite{known,known2}. This might include one known and one unknown \cite{unknown,known}. Another bizarre case might be one known, one unknown and another known \cite{known,unknown,known2}. Need to have a test for \verb#\cite# commands that span multiple lines \cite{ known,% % very long comment that has some utility known2} (which has two comment lines in a row!) and one final test \cite{% known, % known2% some jabbering }. \bibliography{bib_super} \bibliographystyle{unsrt} \end{document} latex2rtf-2.3.18/test/align.rtf0000644000175000017500000001702713664476467016540 0ustar wilfriedwilfried{\rtf1\ansi\uc1\deff0\deflang1024 {\fonttbl{\f0\fnil\fcharset0 Times New Roman;} {\f1\fnil\fcharset0 Arial;} {\f2\fnil\fcharset0 Arial;} {\f3\fnil\fcharset0 Courier New;} {\f4\fnil\fcharset0 Zapf Chancery;} {\f5\fnil\fcharset0 STIXGeneral;} {\f6\fnil\fcharset0 MS Gothic;} } {\colortbl; \red0\green0\blue0; \red0\green0\blue255; \red0\green255\blue255; \red0\green255\blue0; \red255\green0\blue255; \red255\green0\blue0; \red255\green255\blue0; \red255\green255\blue255; } {\stylesheet {\s0\qj\widctlpar\f0\fs20 \snext0 Normal;} {\cs10 \additive\ssemihidden Default Paragraph Font;} {\s1\qc\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 Part;} {\s2\ql\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 heading 1;} {\s3\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 2;} {\s4\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 3;} {\s5\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 4;} {\s6\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 5;} {\s7\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 6;} {\s8\qr\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext8 rightpar;} {\s9\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext9 centerpar;} {\s10\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext10 leftpar;} {\s11\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equation;} {\s12\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationNum;} {\s13\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlign;} {\s14\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlignNum;} {\s15\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArray;} {\s16\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArrayNum;} {\s17\ql\sb120\sa120\keep\widctlpar\f0\fs20 \sbasedon0\snext0 theorem;} {\s18\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 bitmapCenter;} {\s20\qc\sb240\sa240\b\f0\fs36 \sbasedon0\snext21 Title;} {\s21\qc\sa120\f0\fs20 \sbasedon0\snext0 author;} {\s22\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext22 footer;} {\s23\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext23 header;} {\s30\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 caption;} {\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext0 Figure;} {\s32\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext32 Table;} {\s33\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext33 Tabular;} {\s34\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext34 Tabbing;} {\s35\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext35 Quote;} {\s38\ql\widctlpar\f3\fs20 \snext38 verbatim;} {\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext46 List;} {\s47\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext47 List 1;} {\s50\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 latex picture;} {\s51\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 subfigure;} {\s61\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext62 bibheading;} {\s62\ql\fi-567\li567\sb0\sa0\f0\fs20 \sbasedon0\snext62 bibitem;} {\s64\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext64 endnotes;} {\s65\ql\fi-113\li397\lin397\f0\fs20 \sbasedon0\snext65 footnote text;} {\s66\qj\fi-170\li454\lin454\f0\fs20 \sbasedon0\snext66 endnote text;} {\cs62\super \additive\sbasedon10 footnote reference;} {\cs63\super \additive\sbasedon10 endnote reference;} {\s67\ql\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext67 acronym;} {\s70\qc\sa120\b\f0\fs20 \sbasedon0\snext71 abstract title;} {\s71\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext0 abstract;} {\s80\ql\sb240\sa120\keepn\f0\b\fs20 \sbasedon0\snext0 contents_heading;} {\s81\ql\li425\tqr\tldot\tx8222\sb240\sa60\keepn\f0\fs20\b \sbasedon0\snext82 toc 1;} {\s82\ql\li512\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext83 toc 2;} {\s83\ql\li1024\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext84 toc 3;} {\s84\ql\li1536\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext85 toc 4;} {\s85\ql\li2048\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 5;} {\s86\ql\li2560\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 6;} } {\info {\title Original file was align.tex} {\doccomm Created using latex2rtf 2.3.18 r1266 (released May 29, 2020) on Sat May 30 17:35:19 2020 } } {\footer\pard\plain\f0\fs20\qc\chpgn\par} \paperw12280\paperh15900\margl2680\margr2700\margt2540\margb1760\pgnstart0\widowctrl\qj\ftnbj\f0\aftnnar {\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi0 Here we test the center environment. The {\b0\i0\scaps0\f3 \\begin\{center\}...\\end\{center\}} sequence should allow the sans serif font to leak out into the text that follows the centered environment. {\par \i0\scaps0\b0\f2 \pard\plain\s9\qc\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \f2 \b Some {\b0\i0\scaps0\f3 \\sf\\bfseries} centered text \emdash voil\'e1 \par }\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi0 This should now be in plain roman font with the paragraph justified. We need a lot of text to test the justification. A short sentence would not really be enough. A couple of short sentences should do the trick. {\par \i0\b0\scaps \pard\plain\s10\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \scaps Small caps flush left on line 1 \par \pard\plain\s10\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \scaps Small caps flush left on line 2 \par \pard\plain\s10\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \scaps .\par \pard\plain\s10\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \scaps .\par \pard\plain\s10\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \scaps .\par \pard\plain\s10\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \scaps \par }\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi0 Now we only have the {\b0\i0\scaps0\f3 \\begin\{flushright\}...\\end\{flushright\}} environment to deal with. This paragraph should be justified on both margins. The next should be flush with the right margin.\par {\scaps0\i \pard\plain\s8\qr\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \scaps0\i Italics text flush right on line 1 \par \pard\plain\s8\qr\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \scaps0\i Italics text flush right on line 2 \par \pard\plain\s8\qr\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \scaps0\i .\par \pard\plain\s8\qr\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \scaps0\i .\par \pard\plain\s8\qr\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \scaps0\i .\par \pard\plain\s8\qr\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 \scaps0\i \par }\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 More roman text at the end. More roman text at the end. More roman text at the end. More roman text at the end. More roman text at the end. More roman text at the end. More roman text at the end. More roman text at the end. More roman text at the end. More roman text at the end. More roman text at the end. More roman text at the end.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 {\par \pard\plain\s10\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi300 Ragged right text ragged right text Ragged right text ragged right text Ragged right text ragged right text Ragged right text ragged right text Ragged right text ragged right text Ragged right text ragged right text\par }\pard\plain\s10\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi300 More roman text at the end. More roman text at the end. More roman text at the end. More roman text at the end. More roman text at the end. More roman text at the end. More roman text at the end. More roman text at the end. More roman text at the end. More roman text at the end. More roman text at the end. More roman text at the end.\par }} }}}latex2rtf-2.3.18/test/babel_german_article.tex0000777000175000017500000000667113050672357021547 0ustar wilfriedwilfried\documentclass[11pt]{article} % ergaenze `twoside', wenn gewuenscht! \usepackage{ngerman} \title{Test-Dokument f"ur "`german.sty"'} \author{Wilfried Hennings} \date{2001-09-10} \begin{document} \maketitle \tableofcontents \section{Einleitung} Dies ist ein nicht besonders intelligenter Text zum Testen von Dokumenten, die die Besonderheiten des Pakets "`german.sty"' verwenden. Das Paket muss mit folgender Syntax in der Preambel des Dokuments eingebunden werden:\\ \verb|\usepackage{german}|\\ f"ur die "`alte"' Rechtschreibung oder \\ \verb|\usepackage{ngerman}|\\ f"ur die "`neue"' Rechtschreibung \section{Die Besonderheiten deutscher Texte} \subsection{Umlaute} Wichtig in deutschen Texten sind vor allem die Umlaute. \subsubsection{Umlaute ohne das Paket "`german.sty"'} Ohne das Paket "`german.sty"' m"ussen Umlaute so kodiert werden, wie in Tabelle~\ref{T1} auf Seite \pageref{T1} dargestellt. \begin{table}[ht] \"A = \verb|\"A|\\ \"O = \verb|\"O|\\ \"U = \verb|\"U|\\ \"a = \verb|\"a|\\ \"o = \verb|\"o|\\ \"u = \verb|\"u|\\ \ss{} = \verb|\ss{}| \caption{Tabelle der Umlaute in Standard-LaTeX} \label{T1} \end{table} \subsubsection{Umlaute mit dem Paket "`german.sty"'} Mit dem Paket "`german.sty"' k"onnen Umlaute auch so kodiert werden, wie in Tabelle~\ref{T2} auf Seite \pageref{T2} dargestellt. \begin{table}[ht] "A = \verb|"A|\\ "O = \verb|"O|\\ "U = \verb|"U|\\ "a = \verb|"a|\\ "o = \verb|"o|\\ "u = \verb|"u|\\ "s = \verb|"s|\\ \caption{Tabelle der Umlaute mit dem Paket "`german.sty"'} \label{T2} \end{table} \subsection{Beschriftungen} Eine weitere Anpassung ist f"ur Beschriftungen der Elemente eines Dokuments erforderlich. Zum Beispiel soll aus dem englischen "`page"' das deutsche "`Seite"' werden, aus dem englischen "`bibliography"' das deutsche "`Literatur"'. Um dies zu testen, sind in diesem Dokument verschiedene "Uberschriften, eine Abbildung (Abbildung~\ref{A1} auf Seite \pageref{A1}), zwei Tabellen (Tabelle~\ref{T1} auf Seite \pageref{T1} und Tabelle~\ref{T2} auf Seite \pageref{T2}) sowie eine Bibliographie eingef"ugt. Einige Beispiele sind der "`LaTeX2e-Kurzbeschreibung"' \cite{l2kurz} entnommen. \begin{figure}[tb] \vspace{4cm} \caption{Landschaft im Nebel} \label{A1} \end{figure} \subsection{Anf"uhrungszeichen} Schlie"slich sehen in deutschen Texten die Anf"uhrungszeichen anders aus. W"ahrend im Englischen die doppelten Anf"uhrungszeichen ``so'' aussehen, sollen sie im Deutschen "`so"' aussehen. \begin{thebibliography}{9} \bibitem{l2kurz} Walter Schmidt, J"org Knappen, Hubert Partl, Irene Hyna:\\ \textit{LaTeX2e-Kurzbeschreibung} \section{Another Chapter} Schlie"slich sehen in deutschen Texten die Anf"uhrungszeichen anders aus. W"ahrend im Englischen die doppelten Anf"uhrungszeichen ``so'' aussehen, sollen sie im Deutschen "`so"' aussehen. \appendix \section{this should be labelled ``A''} Schlie"slich sehen in deutschen Texten die Anf"uhrungszeichen anders aus. W"ahrend im Englischen die doppelten Anf"uhrungszeichen ``so'' aussehen, sollen sie im Deutschen "`so"' aussehen. \subsection{first subsection in ``A.1''} \subsubsection{here is a subsubsection ``A.1.1''} \subsection{second subsection in ``A.2''} \subsubsection{here is a subsubsection} \section{this should be labelled ``B''} Schlie"slich sehen in deutschen Texten die Anf"uhrungszeichen anders aus. W"ahrend im Englischen die doppelten Anf"uhrungszeichen ``so'' aussehen, sollen sie im Deutschen "`so"' aussehen. \end{thebibliography} \end{document} latex2rtf-2.3.18/test/array.rtf0000644000175000017500000001256613664476467016567 0ustar wilfriedwilfried{\rtf1\ansi\uc1\deff0\deflang1024 {\fonttbl{\f0\fnil\fcharset0 Times New Roman;} {\f1\fnil\fcharset0 Arial;} {\f2\fnil\fcharset0 Arial;} {\f3\fnil\fcharset0 Courier New;} {\f4\fnil\fcharset0 Zapf Chancery;} {\f5\fnil\fcharset0 STIXGeneral;} {\f6\fnil\fcharset0 MS Gothic;} } {\colortbl; \red0\green0\blue0; \red0\green0\blue255; \red0\green255\blue255; \red0\green255\blue0; \red255\green0\blue255; \red255\green0\blue0; \red255\green255\blue0; \red255\green255\blue255; } {\stylesheet {\s0\qj\widctlpar\f0\fs20 \snext0 Normal;} {\cs10 \additive\ssemihidden Default Paragraph Font;} {\s1\qc\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 Part;} {\s2\ql\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 heading 1;} {\s3\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 2;} {\s4\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 3;} {\s5\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 4;} {\s6\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 5;} {\s7\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 6;} {\s8\qr\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext8 rightpar;} {\s9\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext9 centerpar;} {\s10\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext10 leftpar;} {\s11\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equation;} {\s12\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationNum;} {\s13\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlign;} {\s14\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlignNum;} {\s15\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArray;} {\s16\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArrayNum;} {\s17\ql\sb120\sa120\keep\widctlpar\f0\fs20 \sbasedon0\snext0 theorem;} {\s18\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 bitmapCenter;} {\s20\qc\sb240\sa240\b\f0\fs36 \sbasedon0\snext21 Title;} {\s21\qc\sa120\f0\fs20 \sbasedon0\snext0 author;} {\s22\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext22 footer;} {\s23\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext23 header;} {\s30\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 caption;} {\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext0 Figure;} {\s32\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext32 Table;} {\s33\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext33 Tabular;} {\s34\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext34 Tabbing;} {\s35\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext35 Quote;} {\s38\ql\widctlpar\f3\fs20 \snext38 verbatim;} {\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext46 List;} {\s47\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext47 List 1;} {\s50\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 latex picture;} {\s51\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 subfigure;} {\s61\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext62 bibheading;} {\s62\ql\fi-567\li567\sb0\sa0\f0\fs20 \sbasedon0\snext62 bibitem;} {\s64\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext64 endnotes;} {\s65\ql\fi-113\li397\lin397\f0\fs20 \sbasedon0\snext65 footnote text;} {\s66\qj\fi-170\li454\lin454\f0\fs20 \sbasedon0\snext66 endnote text;} {\cs62\super \additive\sbasedon10 footnote reference;} {\cs63\super \additive\sbasedon10 endnote reference;} {\s67\ql\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext67 acronym;} {\s70\qc\sa120\b\f0\fs20 \sbasedon0\snext71 abstract title;} {\s71\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext0 abstract;} {\s80\ql\sb240\sa120\keepn\f0\b\fs20 \sbasedon0\snext0 contents_heading;} {\s81\ql\li425\tqr\tldot\tx8222\sb240\sa60\keepn\f0\fs20\b \sbasedon0\snext82 toc 1;} {\s82\ql\li512\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext83 toc 2;} {\s83\ql\li1024\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext84 toc 3;} {\s84\ql\li1536\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext85 toc 4;} {\s85\ql\li2048\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 5;} {\s86\ql\li2560\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 6;} } {\info {\title Original file was array.tex} {\doccomm Created using latex2rtf 2.3.18 r1266 (released May 29, 2020) on Sat May 30 17:35:19 2020 } } {\footer\pard\plain\f0\fs20\qc\chpgn\par} \paperw12280\paperh15900\margl2680\margr2700\margt2540\margb1760\pgnstart0\widowctrl\qj\ftnbj\f0\aftnnar {\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi0 This is an equation environment in which there is an array environment. The equation below is just a simple matrix equation without delimeters. The three types of alignment are tested. {\par \pard\plain\s11\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ {\i w}={ \\a \\al \\co3 ({\i x}+{\i y},{\i y}+2{\i c},{\i z}*{\i x}\\s\\up5({\fs16 2}),{\i x},{\i y},{\i z},{\i x},{\i y},{\i z},{\i x},{\i y},{\i z})}}}{\fldrslt }} \par }\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 This is an equation environment in which there is an array environment. The equation below is just a simple matrix equation. The three types of alignment are tested. {\par \pard\plain\s12\ql\sb120\sa120\keep\widctlpar\f0\tqc\tx3450\tqr\tx6900\sl240\slmult1 \fi0 \tab {\field{\*\fldinst{ EQ {\i w}= \\b ({ \\a \\al \\co3 ({\i x}+{\i y},{\i y}+2{\i c},{\i z}*{\i x}\\s\\up5({\fs16 2}),{\i x},{\i y},{\i z},{\i x},{\i y},{\i z},{\i x},{\i y},{\i z})})}}{\fldrslt }} \tab{\b0 (1)}\par }}} }}}latex2rtf-2.3.18/test/fig_oval.eps0000777000175000017500000000626513050672360017214 0ustar wilfriedwilfried%!PS-Adobe-3.0 EPSF-3.0 %%BoundingBox: 0 0 306 610 %%HiResBoundingBox: 0.000000 0.000000 305.149292 609.676270 %......................................... %%Creator: AFPL Ghostscript 704 (epswrite) %%CreationDate: 2002/05/06 21:43:18 %%DocumentData: Clean7Bit %%LanguageLevel: 2 %%EndComments %%BeginProlog % This copyright applies to everything between here and the %%EndProlog: % Copyright (C) 2001 artofcode LLC, Benicia, CA. All rights reserved. %%BeginResource: procset GS_epswrite_2_0_1001 /GS_epswrite_2_0_1001 80 dict dup begin /PageSize 2 array def/setpagesize{ PageSize aload pop 3 index eq exch 4 index eq and{ pop pop pop}{ PageSize dup 1 5 -1 roll put 0 4 -1 roll put dup where{ exch get exec} { pop/setpagedevice where { pop 1 dict dup /PageSize PageSize put setpagedevice} { /setpage where{ pop PageSize aload pop pageparams 3 {exch pop} repeat setpage}if}ifelse}ifelse}ifelse} bind def /!{bind def}bind def/#{load def}!/N/counttomark # /rG{3{3 -1 roll 255 div}repeat setrgbcolor}!/G{255 div setgray}!/K{0 G}! /r6{dup 3 -1 roll rG}!/r5{dup 3 1 roll rG}!/r3{dup rG}! /w/setlinewidth #/J/setlinecap # /j/setlinejoin #/M/setmiterlimit #/d/setdash #/i/setflat # /m/moveto #/l/lineto #/c/rcurveto # /p{N 2 idiv{N -2 roll rlineto}repeat}! /P{N 0 gt{N -2 roll moveto p}if}! /h{p closepath}!/H{P closepath}! /lx{0 rlineto}!/ly{0 exch rlineto}!/v{0 0 6 2 roll c}!/y{2 copy c}! /re{4 -2 roll m exch dup lx exch ly neg lx h}! /^{3 index neg 3 index neg}! /f{P fill}!/f*{P eofill}!/s{H stroke}!/S{P stroke}! /q/gsave #/Q/grestore #/rf{re fill}! /Y{P clip newpath}!/Y*{P eoclip newpath}!/rY{re Y}! /|={pop exch 4 1 roll 3 array astore cvx exch 1 index def exec}! /|{exch string readstring |=}! /+{dup type/nametype eq{2 index 7 add -3 bitshift 2 index mul}if}! /@/currentfile #/${+ @ |}! /B{{2 copy string{readstring pop}aload pop 4 array astore cvx 3 1 roll}repeat pop pop true}! /Ix{[1 0 0 1 11 -2 roll exch neg exch neg]exch}! /,{true exch Ix imagemask}!/If{false exch Ix imagemask}!/I{exch Ix image}! /Ic{exch Ix false 3 colorimage}! /F{/Columns counttomark 3 add -2 roll/Rows exch/K -1/BlackIs1 true>> /CCITTFaxDecode filter}!/FX{<óÂÖN áH cmbx12şCon–˙8őten“tsŽŽŸ’čóKń`y cmr10˛1ŽŽŒ‹* y ýŁ ? ţHž‘>şList– T{of“FiguresŽŽŸ’č˛2ŽŽŒ‹ź y ýŁ ? ţ?ŹŮ‘>óÂÖN ˝q cmbx12źChapter‘Ç 1ŽŸFž‘>şFirst‘ T{ChapterŽŸF’‘>óÂÖN ff cmbx12ž1.1Ž‘bćcInŒĚtroŽŸč'‘>˛Lorem–ىipsum“dolor“sit“amet,›ú–consectetuer“adipiscing‘وelit.‘ţcSed“pGosuere,˜dui“utޤ ‘>non•¸ăumm“y–ËlobGortis,‘ć¸leo“dui›Ëlaoreet“arcu,‘ćšsed˜blandit“lectus“libGero˜sed“elit.‘C°In“nonŽĄ‘>v¸ăelit.›ŔAenean– Rdignissim‘ Saliquam“felis.˜Curabitur“nec– Sv¸ăelit.‘żDonec“vitae‘ Rfelis.ŽĄ‘>P•¸ăellen“tesque–Î faucibus“suscipit“dui.‘ŰîNunc“dictum,‘ě:purus“congue“ultrices“condi-ŽĄ‘>menš¸ătum,‘ diam‘čIenim–čHaccumsan“dolor,‘ et“viv˜erra“risus›čIoGdio“et˜justo.‘*ĄPhasellusŽĄ‘>accumsan–!ƒmagna›!‚ac“turpis.‘ÖPNullam“bibGendum“condimen¸ătum˜leo.‘ÖQCras˜a“tel-ŽĄ‘>lus.‘+Phasellus–“n¸ăulla“ipsum,–˘‹egestas‘“at,“tempGor›“id,“accumsan˜in,“eros.‘+Praesen¸ătŽĄ‘>tincidun¸ăt–UUtellus“ut“risus.‘qÇSee“Figure“óň"V cmbx10ż??Ž‘1ò.ŽŸ9ş˜ŸŢ9’ĚăFóXŤQ ff cmr12˝FIGUREŽŸ’Żßú˛Figure–UU1.1:‘qÇThis“is“ gure“1ŽŽŽŸE‘MMauris›Ó"lobGortis.‘ë.P•¸ăellen“tesque˜egestas˜n“unc˜at˜ligula.‘ë.Nulla˜ultrices˜magnaŽĄ‘>quis–¨neque.‘ÁŔAenean‘§lobšGortis“semp˜er“purus.›ÁŔIn“non•¸ăumm“y‘¨egestas‘§urna.˜NamŽĄ‘>soGdales–đřorci“ac“felis.›PSV‘˙*Şestibulum“vitae“an•¸ăte.˜Viv‘˙qÇam“us–đřquis“dui.˜Aenean“suscipit.ŽŽŸ’č3ŽŽŒ‹( y ýŁ ? ý䍑>˛Sed›mollis.‘­úP•¸ăellen“tesque˜erat‘ligula,‘CŔdictum˜at,–Cżcursus˜et,“accumsan˜fringilla,ޤ ‘>metus.‘F‘˙*Şusce–<ac›<neque“id˜ipsum“ornare“sagittis.‘See˜Figure“ż??Ž‘T˛and“See˜Figure“ż??Ž‘ }˛.ŽŠČэ’ˍ˝FIGURE2ŽŽŸE‘M˛Mauris›Ó"lobGortis.‘ë.P•¸ăellen“tesque˜egestas˜n“unc˜at˜ligula.‘ë.Nulla˜ultrices˜magnaŽĄ‘>quis–¨neque.‘ÁŔAenean‘§lobšGortis“semp˜er“purus.›ÁŔIn“non•¸ăumm“y‘¨egestas‘§urna.˜NamŽĄ‘>soGdales–đřorci“ac“felis.›PSV‘˙*Şestibulum“vitae“an•¸ăte.˜Viv‘˙qÇam“us–đřquis“dui.˜Aenean“suscipit.ŽĄ‘>Sed›mollis.‘­úP•¸ăellen“tesque˜erat‘ligula,‘CŔdictum˜at,–Cżcursus˜et,“accumsan˜fringilla,ŽĄ‘>metus.‘F‘˙*Şusce–<ac›<neque“id˜ipsum“ornare“sagittis.‘See˜Figure“ż??Ž‘T˛and“See˜Figure“ż??Ž‘ }˛.ŽŚ’Ň„U˝T‘ţÓ4ABLEŽŽŸE‘M˛Mauris›Ó"lobGortis.‘ë.P•¸ăellen“tesque˜egestas˜n“unc˜at˜ligula.‘ë.Nulla˜ultrices˜magnaŽĄ‘>quis–¨neque.‘ÁŔAenean‘§lobšGortis“semp˜er“purus.›ÁŔIn“non•¸ăumm“y‘¨egestas‘§urna.˜NamŽĄ‘>soGdales–đřorci“ac“felis.›PSV‘˙*Şestibulum“vitae“an•¸ăte.˜Viv‘˙qÇam“us–đřquis“dui.˜Aenean“suscipit.ŽĄ‘>Sed›mollis.‘­úP•¸ăellen“tesque˜erat‘ligula,‘CŔdictum˜at,–Cżcursus˜et,“accumsan˜fringilla,ŽĄ‘>metus.‘F‘˙*Şusce–<ac›<neque“id˜ipsum“ornare“sagittis.‘See˜Figure“ż??Ž‘T˛and“See˜Figure“ż??Ž‘ }˛.ŽŸ-V‘>ž1.2Ž‘bćcMethos3dŽŸč'‘>˛Mauris–VaimpGerdiet.›ËDuis“scelerisque.˜P•¸ăellen“tesque›Vahabitan“t˜morbi‘V`tristique˜senec-ŽĄ‘>tus–Ńet›Ńnetus“et“malesuada˜fames“ac“turpis˜egestas.›äóNulla“facilisi.˜Viv‘˙qÇam¸ăusŽĄ‘>soGdales–*§magna›*¨et“nibh.‘ńżNulla“non˜neque“in˜quam“mollis˜ornare.‘ńžV‘˙*ŞestibulumŽĄ‘>non•¸ăumm“y–Äťaugue›Äşut“wisi.‘żřCurabitur“adipiscing˜eros“sit“amet˜lorem.‘żřCras“auc-ŽĄ‘>tor,›;,tortor–4Ąut“euismoGd–4˘iaculis,‘;+elit“purus–4Ąfacilisis“nibh,˜id“tempus“n¸ăulla‘4˘libGero“inŽĄ‘>ipsum.‘TĘPraesen•¸ăt›Ąv“estibulum˜facilisis˜arcu.‘TĘCurabitur˜quis˜augue‘Ąac˜mi˜dictumŽĄ‘>ultricies.–EĘMaecenas›Ń^consectetuer.“Mauris‘Ń]non˜lacus.“Nunc˜et–Ń]nisl˜sit“amet˜ligulaŽĄ‘>pretium›’dapibus.‘( P•¸ăellen“tesque˜habitan“t–’morbi˜tristique˜senectus˜et“netus˜etŽĄ‘>malesuada–ôIfames›ôHac“turpis˜egestas.‘QnNullam“ut“metus˜in“sapien˜mollis“dignissim.ŽŽŸ’č4ŽŽŒ‹ y ýŁ ? ý䍑>˛Ut‘Áăsem–Áâlacus,›ÝcommoGdo“nec,˜fermen¸ătum“sit‘Áăamet,˜pGorta“sit‘Áăamet,‘Ýarcu.‘ˇpNuncŽŸ ‘>non–UUeros.›qÇV‘˙*Şestibulum“ullamcorpGer“adipiscing“risus.˜See“Figure“ż??Ž‘1ò.ŽŸmË]Ÿę’ŻßúFigure–UU1.2:‘qÇThis“is“ gure“2ŽŽŸ ŽŽŸ’č5ŽŽŒ‹˙ y ýŁ ? ţ?ŹŮ‘>źChapter‘Ç 2ŽŸFž‘>şSecond‘ T{ChapterŽŸF’‘>ž2.1Ž‘bćcInŒĚtroŽŸč'‘>˛Mauris›^wlobGortis.‘,P•¸ăellen“tesque˜egestas˜n“unc˜at–^vligula.‘-Nulla“ultrices˜magna˜quisޤ ‘>neque.‘fƒAenean›3‰lob•Gortis‘3ˆsemp“er˜purus.‘fƒIn˜non•¸ăumm“y˜egestas‘3ˆurna.‘fƒNam˜soGdalesŽĄ‘>orci›ć+ac–ć*felis.‘$HV‘˙*Şestibulum“vitae˜an•¸ăte.‘$HViv‘˙qÇam“us–ć*quis˜dui.›$HAenean“suscipit.˜SedŽĄ‘>mollis.‘JâP•¸ăellen“tesque‘ŕŚerat–ŕĽligula,›÷üdictum“at,˜cursus‘ŕŚet,˜accumsan“fringilla,˜metus.ŽĄ‘>F‘˙*Şusce–UUac“neque“id“ipsum“ornare“sagittis.‘qÇSee“Figure“ż??Ž‘‡˛and“See“Figure“ż??Ž‘1ò.ŽŸmË]Ÿę’ŻßúFigure–UU2.1:‘qÇThis“is“ gure“3ŽŽŸ ŽŽŸ’č6ŽŽŒ‹W y ýŁ ? ý䍍‘>ž2.2Ž‘bćcMethos3dŽŸč'‘>˛Maecenas–I6graš¸ăvida,‘K˘massa“id‘I5in˜terdum“sempGer,‘KŁpurus‘I5ipsum“vulputate“nibh,‘K˘v˜elޤ ‘>egestas–˜Bdiam“an¸ăte“sit‘˜Aamet“metus.›2ÁEtiam“rutrum“augue“eleifend“leo.˜V‘˙*ŞestibulumŽĄ‘>a–”oleo.‘/Duis›”prhoncus“orci“quis˜tortor.‘/P•¸ăellen“tesque˜id–”oipsum“nec˜est“v¸ăestibulumŽĄ‘>impGerdiet.›č™Etiam–|đv¸ăolutpat.‘čšMaecenas“ornare“laoreet‘|ńmauris.˜Praesen¸ăt“feugiat.ŽĄ‘>Donec– xpGede“elit,›>sollicitudin“ut,‘=vulputate“a,˜v¸ăenenatis“eu,˜dui.‘Y(Praesen¸ăt“mollis.ŽĄ‘>Aenean–Penim‘Pdui,›Q$commoGdo“at,˜tincidun¸ăt“at,˜luctus‘Psuscipit,˜leo.‘pAenean“urna.ŽĄ‘>Praesenš¸ăt–mđadipiscing.‘ť–Quisque“id“arcu‘mďat“v˜elit“tincidun˜t‘mďconsectetuer.‘ť—PhasellusŽĄ‘>graš¸ăvida–_&est“sed“felis.‘9Proin“mi“tortor,‘Ąšsuscipit“et,‘Ą™con˜v‘˙qÇallis“euismoGd,‘ĄšultricesŽĄ‘>vitae,›Esjusto.‘˛Cras–mleo“arcu,˜viv¸ăerra“at,˜dignissim“nec,˜feugiat“sed,˜ligula.‘˛SeeŽĄ‘>Figure‘UUż??Ž‘‡˛and–UUSee“Figure“ż??Ž‘1ò.ŽŸmË]Ÿę’ŻßúFigure–UU2.2:‘qÇThis“is“ gure“4ŽŽŸ ŽŸE‘MNunc‘i¤leo–iŁjusto,›n¸egestas“id,˜soGdales“id,–nˇaliquam›i¤eget,“massa.‘ŽłMauris˜pGosuereŽĄ‘>nibh–Šépulvinar“neque“feugiat“pšGorta.‘8ŁMorbi“temp˜or“faucibus“nibh.‘8ŁDonec“sit“ametŽĄ‘>urna.›!Sed–dŹdictum“dui‘dŤut“justo.˜V‘˙*Şestibulum“impGerdiet.˜Morbi“sed“risus.˜Praesen¸ătŽĄ‘>sollicitudin.‘WViv‘˙qÇam¸ăus–ĄÄut›ĄĹest“sit“amet˜diam“sempGer“lacinia.‘WDonec“nec˜tortor“aŽĄ‘>lacus›Ómplacerat–Ólaliquet.‘ěV‘˙*Şestibulum“quis˜turpis.–ěCurabitur˜auctor˜libGero.“NamŽĄ‘>sit–č`amet›č_felis“nec“mauris“tempus˜impGerdiet.‘*čAenean˜est“ipsum,‘ "molestie“eget,ŽĄ‘>vulputate–tincidun¸ăt,›O tempus“ac,˜lectus.‘ÉP•¸ăellen“tesque›habitan“t˜morbi˜tristiqueŽĄ‘>senectus–i÷et›iönetus“et˜malesuada“fames“ac˜turpis“egestas.‘#SNullam˜molestie“rhoncusŽĄ‘>metus.›hňNunc–:Ősollicitudin“ipsum“nec“urna.˜Class“apten¸ăt‘:Ötaciti“soGciosqu“ad“litoraŽĄ‘>torquen•¸ăt›ľŻpGer‘ľŽcon“ubia˜nostra,‘ÍĹpGer˜inceptos‘ľŽh“ymenaeos.‘’ÔIn˜hac‘ľŽhabitasse˜plateaŽŽŸ’č7ŽŽŒ‹P y ýŁ ? ý䍑>˛dictumst.ŽŽŸ’č8ŽŽŒřńƒ’Ŕ;čy—óň"V cmbx10óÂÖN ff cmbx12óXŤQ ff cmr12óÂÖN ˝q cmbx12óÂÖN áH cmbx12óKń`y cmr10ůSßßßßlatex2rtf-2.3.18/test/misc4.dvi0000644000175000017500000065266413664476470016462 0ustar wilfriedwilfried÷ƒ’Ŕ;č TeX output 2020.05.30:1735‹˙˙˙˙ ° ý\ † ţ{Ţύ‘QŇ&óDÓít˝qGŽcmr17şAn–BÚin‘˙uNtro‘Šąduction“to“T‘üÔ)ŸvŐEŽ‘zÚX“and“friendsŽŸ5?荍’ťm…óXŤQ ff cmr12ťGa•›źvin‘ł/Maltb“yŽŽŽŽŽŸ#Ÿô’śřŘNo•›źv“em“bdCer‘ł/1992ŽŽŽŒ‹* ° ý\ † ýďó)ÂÖN áH cmbx12ÔCon–˙8őten“tsŽŸB?řó*ÂÖN  cmbx12Ő1Ž‘ŸôGetting–€acquain ted“with“T‘ýżáŸŞŞEŽ‘ěSX’HŃ1ŽŽ¤€‘ŸôóXŤQ cmr12š1.1Ž‘,ŚJThe–ę¨spirit“of“T‘ţ ‘Ÿ•UEŽ‘‘!X‘*v‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘ś“1ŽŽĄ‘,ŚJ1.1.1Ž‘R?ÇT‘ţ ‘Ÿ•UEŽ‘‘!X–ę¨is“a“tšŹrypSŽesetter,“not“a“w˜ord-proSŽcessor‘"-‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘ś“1ŽŽĄ‘,ŚJ1.1.2Ž‘R?ÇTšŹrypical–ę¨T‘ţ ‘Ÿ•UEŽ‘‘!X“in˜terfaces‘ůľ‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘ś“3ŽŽŸ?řŐ2Ž‘ŸôGetting–€started“with“LŸýAl‘ű#×ó32Ç@Écmbx8ŢAŽŽ~/ŐT‘ýżáŸŞŞEŽ‘ěSX’§m6ŽŽĄ‘Ÿôš2.1Ž‘,ŚJWhŹry–ę¨start“with“LŸýDD‘űĹ"ó+|{Ycmr8ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X?‘ŽŰ‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘ś“6ŽŽĄ‘Ÿô2.2Ž‘,ŚJLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X–ę¨formats,“and“wŹre“compSŽose‘7´‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘ś“7ŽŽĄ‘Ÿô2.3Ž‘,ŚJDoSŽcumen•Źrt‘ę¨st“yles7ľ‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘ś“8ŽŽĄ‘Ÿô2.4Ž‘,ŚJPreparing–ę¨a“non-mathematical“doSŽcumenŹrt‘şË‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘ś“9ŽŽĄ‘,ŚJ2.4.1Ž‘R?ÇSenŹrtences–ę¨and“paragraphs‘›‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘ś“9ŽŽĄ‘,ŚJ2.4.2Ž‘R?ÇPunctuation‘}ž‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗11ŽŽĄ‘,ŚJ2.4.3Ž‘R?ÇTies‘O/‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗13ŽŽĄ‘,ŚJ2.4.4Ž‘R?ÇSpSŽecially–ę¨reservšŹred“sym˜bSŽols‘ČY‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗14ŽŽĄ‘,ŚJ2.4.5Ž‘R?ÇSo–ę¨what“are“conšŹrtrol“sym˜bSŽols“and“w˜ords?‘j‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗14ŽŽĄ‘,ŚJ2.4.6Ž‘R?ÇCommands–ę¨to“cŹrhange“appSŽearance‘˝K‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗16ŽŽĄ‘,ŚJ2.4.7Ž‘R?ÇAccenŹrts‘<‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗18ŽŽĄ‘,ŚJ2.4.8Ž‘R?ÇOvšŹrer-ruling–ę¨some“of“T‘ţ ‘Ÿ•UEŽ‘‘!X's“c˜hoices‘Tą‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗18ŽŽĄ‘,ŚJ2.4.9Ž‘R?ÇCommen•Źrting›ę¨y“our˜doSŽcumen“t‘ĚA‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗20ŽŽĄ‘,ŚJ2.4.10Ž‘R?ÇF‘˙VoSŽotnotes‘‹@‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗20ŽŽĄ‘,ŚJ2.4.11Ž‘R?ÇT‘˙Vopmatter‘3q‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗20ŽŽĄ‘,ŚJ2.4.12Ž‘R?ÇSectioning‘ę¨commands‘@鍍‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗21ŽŽĄ‘,ŚJ2.4.13Ž‘R?ÇLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X‘ę¨en•Źrvironmen“ts‘@Ł‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗22ŽŽĄ‘,ŚJ2.4.14Ž‘R?Çó8߆ľT cmtt12ăem‘ꨚen•Źrvironmen“t‘–9‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗22ŽŽĄ‘,ŚJ2.4.15Ž‘R?Çăquote–ꨚand“ăquotation“šen•Źrvironmen“ts‘ýi‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗23ŽŽĄ‘,ŚJ2.4.16Ž‘R?Çăverse‘ꨚen•Źrvironmen“t‘–ލ‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗24ŽŽĄ‘,ŚJ2.4.17Ž‘R?Çăcenter‘ꨚen•Źrvironmen“t‘­—‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗25ŽŽĄ‘,ŚJ2.4.18Ž‘R?Çăflushright–ꨚand“ăflushleft“šen•Źrvironmen“ts‘+€‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗25ŽŽĄ‘,ŚJ2.4.19Ž‘R?Çăverbatim‘ꨚen•Źrvironmen“t‘—ƒ‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗26ŽŽĄ‘,ŚJ2.4.20Ž‘R?Çăitemizeš,–ę¨ăenumerateš,“ădescription“šen•Źrvironmen“ts‘:D‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗27ŽŽĄ‘,ŚJ2.4.21Ž‘R?Çătabbing‘ꨚen•Źrvironmen“t‘€Ę‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗30ŽŽĄ‘,ŚJ2.4.22Ž‘R?Çătabular‘ꨚen•Źrvironmen“t‘€Ę‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗31ŽŽĄ‘,ŚJ2.4.23Ž‘R?Çăfigure–ꨚand“ătable“šen•Źrvironmen“ts‘ü荑˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗33ŽŽŽŸ’äşŒiŽŽŒ‹& ° ý\ † ýŸ‘,ŚJš2.4.24Ž‘R?ÇThe–ę¨ăletter“šdoSŽcumenšŹrt“st˜yle‘{‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗34ŽŽ¤€‘,ŚJ2.4.25Ž‘R?ÇCommon–ę¨pitfalls;“Error“messages‘Q荍‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗34ŽŽĄ‘Ÿô2.5Ž‘,ŚJSummary‘÷ś‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗37ŽŽŸ?řŐ3Ž‘ŸôMathematical–€t yp`esetting“with“LŸýAl‘ű#×ŢAŽŽ~/ŐT‘ýżáŸŞŞEŽ‘ěSX’ŃPP39ŽŽĄ‘Ÿôš3.1Ž‘,ŚJInŹrtroSŽduction‘8ɍ‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗39ŽŽĄ‘Ÿô3.2Ž‘,ŚJDisplašŹrying–ę¨a“form˜ula‘áE‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗42ŽŽĄ‘Ÿô3.3Ž‘,ŚJUsing–ę¨mathematical“symŹrbSŽols‘+덍‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗43ŽŽĄ‘,ŚJ3.3.1Ž‘R?ÇSym•ŹrbSŽols›ę¨a“v‘˙Xäailable˜from˜the˜k“eybSŽoard‘¤c‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗44ŽŽĄ‘,ŚJ3.3.2Ž‘R?ÇGreek‘ę¨letters‘Ő/‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗44ŽŽĄ‘,ŚJ3.3.3Ž‘R?ÇCalligraphic–ę¨uppSŽercase“letters‘_‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗45ŽŽĄ‘,ŚJ3.3.4Ž‘R?ÇBinary‘ę¨opSŽerators‘ 8‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗45ŽŽĄ‘,ŚJ3.3.5Ž‘R?ÇBinary‘ę¨relations‘荍‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗45ŽŽĄ‘,ŚJ3.3.6Ž‘R?ÇMiscellaneous‘ę¨symŹrbSŽols‘hś‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗46ŽŽĄ‘,ŚJ3.3.7Ž‘R?ÇArro•Źrw‘ę¨sym“bSŽols‘Ťđ‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗46ŽŽĄ‘,ŚJ3.3.8Ž‘R?ÇExpression‘ę¨delimiters‘˜‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗47ŽŽŸq͍‘,ŚJ3.3.9Ž‘R?ÇOpSŽerators–ę¨likŹre“Ÿńă‡óúąu cmex10ŤZŽ‘ŐQšand“Ÿő˙üŤXŽŽŽ‘4^‘˙ýš.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗47ŽŽŸO­‘,ŚJ3.3.10Ž‘R?ÇAccenŹrts‘<‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗48ŽŽĄ‘Ÿô3.4Ž‘,ŚJSome–ę¨common“mathematical“structures‘Th‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗48ŽŽĄ‘,ŚJ3.4.1Ž‘R?ÇSubscripts–ę¨and“supSŽerscripts‘XŻ‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗49ŽŽĄ‘,ŚJ3.4.2Ž‘R?ÇPrimes‘´*‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗51ŽŽĄ‘,ŚJ3.4.3Ž‘R?ÇF‘˙Vractions7¸‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗51ŽŽĄ‘,ŚJ3.4.4Ž‘R?ÇRoSŽots‘@˜‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗52ŽŽĄ‘,ŚJ3.4.5Ž‘R?ÇEllipsis‘U<‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗52ŽŽĄ‘,ŚJ3.4.6Ž‘R?ÇT‘˙Vext–ę¨within“an“expression‘›‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗52ŽŽĄ‘,ŚJ3.4.7Ž‘R?ÇLog-likŹre‘ę¨functions‘yt‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗53ŽŽĄ‘,ŚJ3.4.8Ž‘R?ÇOvŹrer-–ę¨and“Underlining“and“bracing‘麍‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗53ŽŽĄ‘,ŚJ3.4.9Ž‘R?ÇStac•Źrking‘ę¨sym“bSŽols‘.m‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗54ŽŽĄ‘,ŚJ3.4.10Ž‘R?ÇOpSŽerators;–ę¨Sums,“InŹrtegrals,“etc.‘Ѐ‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗54ŽŽĄ‘,ŚJ3.4.11Ž‘R?ÇArraŹrys‘Ů$‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗55ŽŽĄ‘,ŚJ3.4.12Ž‘R?ÇChanges–ę¨to“spacing‘ŹĽ‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗56ŽŽĄ‘Ÿô3.5Ž‘,ŚJAlignmenŹrt‘ş‘‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗56ŽŽĄ‘Ÿô3.6Ž‘,ŚJTheorems,–ę¨PropSŽositions,“Lemmas,“ó-ˇágŁ cmmi12Ř:–˙ţ:“:Ž‘ŠV‘˙ýš.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗57ŽŽĄ‘Ÿô3.7Ž‘,ŚJWhere–ę¨to“from“here?‘K‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗58ŽŽĄ‘Ÿô3.8Ž‘,ŚJó0!",š cmsy10ŰA‘ţ ‘Ÿ•UMŽ‘ űźSš-LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X‘0Ť‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗59ŽŽŽŸ’ăĆiiŽŽŒ‹'B ° ý\ † ýďÔList– T{of“T‘ýŞáablesŽŸ6€‘Ÿôš2.1Ž‘,ŚJCommands–ę¨for“selecting“tšŹrypSŽe“st˜yles‘6Œ‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗17ŽŽ¤€‘Ÿô2.2Ž‘,ŚJLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X–ę¨size-cŹrhanging“commands.‘ŢЍ‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗17ŽŽĄ‘Ÿô2.3Ž‘,ŚJConšŹrtrol–ę¨sequences“for“accen˜ts‘*ԍ‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗19ŽŽĄ‘Ÿô2.4Ž‘,ŚJLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X–ę¨sectioning“commands‘@š‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗21ŽŽŸ€‘Ÿô3.1Ž‘,ŚJLo•Źrw“ercase–ę¨Greek“letters‘ ?w‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗44ŽŽĄ‘Ÿô3.2Ž‘,ŚJUppSŽercase–ę¨Greek“letters‘‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗44ŽŽĄ‘Ÿô3.3Ž‘,ŚJBinary–ę¨OpšSŽeration“SymŹrb˜ols‘QA‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗45ŽŽĄ‘Ÿô3.4Ž‘,ŚJBinary‘ę¨relations‘‘M‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗46ŽŽĄ‘Ÿô3.5Ž‘,ŚJMiscellaneous‘ę¨symŹrbSŽols‘ô‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗46ŽŽĄ‘Ÿô3.6Ž‘,ŚJArro•Źrw‘ę¨sym“bSŽols‘7U‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗47ŽŽĄ‘Ÿô3.7Ž‘,ŚJDelimiters‘z5‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗48ŽŽĄ‘Ÿô3.8Ž‘,ŚJV‘˙Variable-sized‘ę¨symŹrbSŽols‘ '‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗48ŽŽĄ‘Ÿô3.9Ž‘,ŚJMath‘ę¨accenŹrts‘-c‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗48ŽŽĄ‘Ÿô3.10Ž‘,ŚJLog-likŹre‘ę¨functions‘ٍ‘˙ý.ŽŽ– C†‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ“‘˙ý.ŽŽ‘֗53ŽŽŽŸ’áwiiiŽŽŒ‹S7 ° ý\ † ýďÔChapter‘ T{1ŽŸ2Getting– T{acquain‘˙8őted“with“T‘űU‚Ÿ‡dEŽ‘ 5XŽŸ6€šT‘ţ ‘Ÿ•UEŽ‘‘!X–<–is“wšŹrell“kno˜wn“to“bSŽe“ó;›ťˆ@ cmti12ćthe‘"Fšt˜ypSŽesetting“pac˜k›˙Xäage,‘_gand“a“v˜ast“cult“of“T‘ţ ‘Ÿ•UEŽ‘‘!X“lo•Źrv“ers–<–has“ev•Źrolv“ed.ޤ€But–K{to›Kzthe“bSŽeginning“T‘ţ ‘Ÿ•UEŽ‘‘!X˜user,‘c°or˜to“someone“wŹrondering˜if“they“should˜bSŽother“cŹrhangingŽĄto–„´T‘ţ ‘Ÿ•UEŽ‘‘!X,‘™it“is›„ľoften“not˜clear“what˜all“the˜fuss“is˜abSŽout.‘äAfter“all,‘™are“not˜bSŽoth“W‘˙VordPŹrerfectŽĄand–DéV‘˙VenŹrtura›DčPublisher“capable˜of“high˜qualitšŹry“output?‘ New˜comers‘Dčha˜v˜e“often‘Dčalready“seenŽĄwhat–ľT‘ţ ‘Ÿ•UEŽ‘‘!X›ľis“capable“of“(manŹry˜b•SŽo“oks,‘żżjournals,‘żžletters–ľare˜noŹrw“prepared“with“T‘ţ ‘Ÿ•UEŽ‘‘!X)˜and“soŽĄexpšSŽect–NĆto“ nd“a“tremendously“p˜o•Źrw“erful‘NĹand–NĆfriendly“pacŹrk‘˙Xäage.‘ęIn“fact“they“ćdoš,‘móbut“that“factŽĄis–ÇăwšŹrell“hidden“in‘Çâone's“initial“T‘ţ ‘Ÿ•UEŽ‘‘!X“expSŽeriences.‘-IIn“this“c˜hapter“w˜e“describSŽe‘Çâa“little“of“whatŽĄmakšŹres–ľďT‘ţ ‘Ÿ•UEŽ‘‘!X“great,‘Ŕzand“wh˜y“other“pac˜k‘˙Xäages“cannot“ev˜en‘ľîbšSŽegin“to“comp˜ete.‘'MBe“wŹrarned“thatŽĄa–űőlittle“patience“is“required|T‘ţ ‘Ÿ•UEŽ‘‘!X's‘űôvirtues“are“rather“subtle“to“bSŽegin“with.‘lĆBut“when“theŽĄpSŽennšŹry–ę¨drops,“y˜ou“will“w˜onder“ho˜w“y˜ou“ev˜er“put“up“with“an˜ything“di eren˜t.ŽŸ(VóHÂÖN GŽ cmbx12ëH1.1Ž‘,GŤThe–záspirit“of“T‘üÂcŸ× EŽ‘ŢXŽŸb#šIn–ď˛order“to“really“appreciate›ďłT‘ţ ‘Ÿ•UEŽ‘‘!X“one“needs“to“get“a“feel“for˜what“I‘ďocall“the“\spirit"“ofŽĄT‘ţ ‘Ÿ•UEŽ–‘!X.‘Ş'When›kT‘ţ ‘Ÿ•UEŽ“X–jappSŽears˜to“bSŽe˜making“me“w•Źrork˜o“v“ertime‘jto˜ac“hiev“e–jsomething˜that“IŽĄthink–XzoughŹrt‘X{to“bšSŽe“p˜erfectly›X{straigh•Źrtforw“ard,‘uśconsultation˜with–Xzthe˜T‘ţ ‘Ÿ•UEŽ‘‘!X“spirit“shoŹrws˜me“theŽĄerror–ę¨of“mšŹry“w˜a˜ys.ŽŸ"ĘŤóÂÖN ff cmbx12ž1.1.1Ž‘1űT‘ýL¨Ÿ32EŽ‘čdX–ffis“a“tšŒĚyps3esetter,“not“a“w˜ord-pros3cessorŽŸ@šT‘ţ ‘Ÿ•UEŽ‘‘!X–‘wŹras›designed“with˜no“limiting“application˜in“mind.‘ź™It“wšŹras“in˜tended›to“bSŽe˜able“toŽĄprepare–!practically“anšŹry“doSŽcumen˜t|from“a“single“page“all-text“letter“to“a“full“blo˜wn“b•SŽo“okŽĄwith›’ńh•Źruge‘’ňn“um“bSŽers˜of˜form“ulae,‘ýtables,‘ý gures–’ňetc.‘ 1ťThe“size˜and˜the˜complexitŹry“of˜aŽĄT‘ţ ‘Ÿ•UEŽ‘‘!Xable–̧doSŽcumenŹrt›ĚŚis“limited“only˜bšŹry“hardw˜are“considerations.‘ŢÜF‘˙Vurthermore,‘&T‘ţ ‘Ÿ•UEŽ‘‘!X“seeksŽĄto›$ac•Źrhiev“e–#all˜this“whilst˜setting“tŹrypSŽesetting˜standards˜of“the˜highest“order˜for“itself.‘ŚSTheŽĄexpšSŽertise–‘of“generations“of“professional“prinŹrters“has‘‘b˜een“captured“in“T‘ţ ‘Ÿ•UEŽ‘‘!X,‘Łand“it“has“b˜eenŽĄtaughšŹrt–ę¨all“the“tric˜ks“of“the“trade.ŽĄ‘ŸôHistorically‘˙V,‘?čprinšŹrters–.Űprepared‘.Üa“doSŽcumen˜t“b˜y“placing‘.Ümetal“c˜haracters“in“a‘.Ülarge“tra˜yŽĄand–ą/arranging“and›ą.binding“them“to“form˜a“page.‘ŒuThis˜wšŹras“v˜ery“precisely“done,‘âĐbut“theŽŽŸ’ălT1ŽŽŒ‹f÷ ° ý\ † ýŸšultimate–7€precision“wšŹras“limited“bSŽecause“of“the‘7mec˜hanical“nature“of“things“and“b˜y“timeޤ€considerations.‘ UĘT‘ţ ‘Ÿ•UEŽ‘‘!X–IĄprepares›I a“page“in“an˜analogous“manner“(putting˜yšŹrour“c˜haractersŽĄand– formšŹrulae“in˜to“\bSŽo˜xes"“whic˜h“are“then“\glued"“together“to‘ form“the“page),‘S)but“hasŽĄthe–źÇadv‘˙XäanŹrtage›źĆof“enormous˜precision“bSŽecause˜placemenŹrt“calculations˜are“pSŽerformed˜bŹryŽĄcomputer.‘JÎIndeed,‘ň T‘ţ ‘Ÿ•UEŽ‘‘!X's–đ˘inšŹrternal“unit“(the“\scaled“pSŽoin˜t")“is“abSŽout“one-h˜undredth“of“theŽĄw•Źra“v“elength–ę¨of“natural“lighŹrt!ŽĄ‘Ÿô\But›”con•Źrv“en“tional‘”w“ord˜pro•SŽcessors˜run‘”on˜computers˜,‘ţxto“o",‘ţyyŹrou˜ob‘§ject.‘ 5:Y‘˙Ves,‘ţxbutŽĄtheir–ŞŔfundamenŹrtal“limitation›Şżis“that“they“try“to˜\kšŹreep“up"“with“y˜ou‘Şżand“\t˜ypSŽeset"“y˜ourŽĄdoSŽcumen•Źrt› •as‘ –y“ou˜t“ypSŽe.‘›ŠThis˜means– –that˜it“can˜only˜makŹre“decisions˜at“a˜loSŽcal“levŹrel˜(eg,‘ŃitŽĄdecides–—¤where›—Ľto“break“a“line˜just“as“yšŹrou“t˜ypSŽe›—Ľthe“end“of“the˜line).‘?ÔT‘ţ ‘Ÿ•UEŽ‘‘!X's˜secret“is“thatŽĄit›bÂw•Źraits‘bÁun“til˜y“ou˜ha“v“e‘bÁt“yp•SŽed˜the˜ćwhole‘Hqšdo“cumenŹrt˜b“efore‘bÁit˜tŹryp“esets˜a‘bÁsingle˜thing!‘Ą-ThisŽĄmeans–RMthat“T‘ţ ‘Ÿ•UEŽ‘‘!X“can›RLmakŹre“decisions“of“a“global“nature“in“order˜to“optimise“the“aestheticŽĄappšSŽeal–vof“y•Źrour‘vdo˜cumen“t.‘It–vhas“b˜een‘vtaughŹrt“what“lo˜oks“go˜o˜d“and“what‘vlo˜oks“bad“(haŹrvingŽĄbSŽeen–żšgivŹren“a›ż›measure“of“the“\badness"“of˜v‘˙Xäarious“pSŽossibilities)“and“mak•Źres˜c“hoices–żšfor“yŹrourŽĄdoSŽcumenšŹrt–ę¨that“are“designed“to“mak˜e“it“\minimally“bad".ŽĄ‘ŸôBut–4T‘ţ ‘Ÿ•UEŽ‘‘!X's“virtues“run“m•Źruc“h–4deepSŽer“than“that,‘:LwhicšŹrh“is“just“as“w˜ell“bšSŽecause“it“is“p˜ossibleŽĄto–çget“satisfactory‘˙V,›&2though“impSŽerfect,˜results“from“some“wŹrord“proSŽcessors.‘.+One“of“T‘ţ ‘Ÿ•UEŽ‘‘!X'sŽĄstrongest–ԚpSŽoinŹrts›ԛis“its˜abilitšŹry“to“t˜ypSŽeset‘ԛcomplicated“form˜ulae›ԛwith“ease.‘öˇNot˜only“doSŽesŽĄT‘ţ ‘Ÿ•UEŽ‘‘!X›âXmak•Źre‘âWh“undreds˜of˜spšSŽecial‘âWsym“b˜ols–âXeasily“accessible,‘ Cit“will“laŹry›âWthem“out“for˜yŹrou“inŽĄy•Źrour›"âform“ulae.‘áIt˜has‘"ăbSŽeen˜taugh“t˜all‘"ăthe˜spacing,–0ńsize,“fonšŹrt,‘0đ.–őT.“.“con˜v˜en˜tions‘"ăthat‘"âprin˜tersŽĄha•Źrv“e–TĎdecided‘TĐlošSŽok“b˜est‘TĐin“tŹryp˜eset“formŹrulae.‘íAlthough,›rČof“course,˜it“doSŽesn't‘TĐunderstand“anŹryŽĄmathematics–it›knoŹrws“the“grammar“of˜mathematics|it“recognises“binary“relations,‘”ŸbinaryŽĄop•SŽerators,‘2Eunary›#ňop“erators,‘2Detc.˜and˜has˜b“een˜taugh•Źrt˜ho“w‘#óthese˜parts˜should˜bSŽe˜set.‘äžIt˜isŽĄconsequenŹrtly–ę¨rather“dicult“to“get“an“equation“to“loSŽok“bad“in“T‘ţ ‘Ÿ•UEŽ‘‘!X.ŽĄ‘ŸôAnother–J˝adv‘˙XäanŹrtage›Jźof“compiling˜a“doSŽcumenŹrt˜after“it˜is“tŹrypSŽed˜is“that˜cross-referencingŽĄcan–VObšSŽe“done.‘mY‘˙Vou“can“lab˜el“and‘VPrefer“bacšŹrk“to“c˜hapters,‘súsections,‘sűtables“etc.“b˜y“ćname‘;˙šratherŽĄthan–$(absolute“n•Źrum“bšSŽer,‘2ˆand–$(T‘ţ ‘Ÿ•UEŽ‘‘!X“will“n•Źrum“b˜er‘$)and–$(cross-reference“these“for“yŹrou.‘ĺ`Similarly‘˙V,ŽĄit–ę¨will“compile“a“table“of“con•Źrten“ts,–ę¨glossary‘˙V,“index“and“bibliographšŹry“for“y˜ou.ŽĄ‘ŸôEssenŹrtial–úato›úbthe“spirit“of˜T‘ţ ‘Ÿ•UEŽ‘‘!X“is“that“ćit–AŠformats“the“do›˙ffcument“whilst“you“just“take“c˜ar˜eŽĄof‘)šthe‘)™c‘˙ffontentš,‘9źmaking–öˇfor›ö¸increased“proSŽductivitŹry‘˙V.‘]The˜cross-referencing“just˜menŹrtionedŽĄis–Qńjust“part“of“this.‘nťManšŹry“more“labSŽour-sa˜ving“mec˜hanisms“are“pro˜vided“for“through“ćstyleŽĄ lesš.‘EzThese–D1are“generic›D0descriptions“of“classes˜of“doSŽcumen•Źrts,‘Z“teac“hing–D1T‘ţ ‘Ÿ•UEŽ‘‘!X“just˜hošŹrw“eac˜hŽĄclass–óOlikšŹres“to‘óNbSŽe“formatted.‘RÔThis“is“taugh˜t“in“terms‘óNof“fon˜t“preferences,‘őxdefault“page“sizes,ŽĄplacemenŹrt‘Vďof›Vđtitle,–˛author,‘˛date,“etc.‘ }śF‘˙Vor˜instance,“a˜ăpaper–VďšstŹryle˜ le“could˜teacŹrh“T‘ţ ‘Ÿ•UEŽ‘‘!XŽĄthat–jëwhen“tšŹrypSŽesetting“a‘jětheorem“it“should“em˜bSŽolden“the“part‘jěthat“states“the“theoremŽĄn•Źrum“bšSŽer‘n,and‘n-t“yp˜eset–n,the“text›n-of“the“theorem“statemenŹrt˜in“slanŹrted“Roman˜tŹrypSŽeface“(asŽĄin–WţmanšŹry“journals).‘ €áThe“t˜ypist“simply‘Wýpro˜vides“and“indication“that“a‘Wýtheorem“is“bSŽeingŽĄstated,‘Ÿiand–{Cthen›{BtŹrypSŽes“the˜text“of“the˜theorem“ćwithout‘Ÿ†šbSŽothering“to˜cšŹrhoSŽose“an˜y‘{Bfon˜ts“orŽĄdo–ŇanšŹry“formatting|all“that‘Óis“done“b˜y“the“st˜yle“ le.‘‡_St˜yle“ les“exist‘Ófor“all“manner“ofŽĄdošSŽcumenŹrt|letters,–ę¨articles,“pap˜ers,“b˜o˜oks,“pro˜ceedings,“review“articles,“and“so“on.ŽĄ‘ŸôIn–„5addition“to“stŹryle–„4 les,‘Ş™there“are›„5ćmacr–˙ffo‘ŔYp“ackagesš.‘†A‘„ćmacr“o‘@Kšis˜just‘„4a˜de nition˜of˜aŽĄnew–Y”T‘ţ ‘Ÿ•UEŽ‘‘!X›Y•command“in“terms“of˜existing“ones.‘„Don't“think˜small“when“yŹrou“think˜of“macros!ŽĄWhen–œtšŹryping“a‘œdoSŽcumen˜t“that“has“a‘œlot“of“repSŽetition“in“it,‘ŤÉsa˜y“the“same‘œexpression“is“usedŽŽŸ’ălT2ŽŽŒ‹ré ° ý\ † ýŸšagain–ŕâand›ŕăagain“in˜di erenšŹrt“di eren˜t‘ŕăequations,‘â×y˜ou“can›ŕăde ne“a˜macro“in˜yšŹrour“doSŽcumen˜tޤ€to––kabbreviate›–lthat“expression.‘ <*But“macros“can“teacŹrh˜T‘ţ ‘Ÿ•UEŽ‘‘!X“hošŹrw“to“t˜ypSŽeset‘–lall“sorts“ofŽĄcomplicated–îýstructures,‘0not“just“parts‘îţof“an“equation.‘EßManšŹry“macro“pac˜k‘˙Xäages“( les“thatŽĄare–Ťojust›Ťncollections“of“de nitions)˜ha•Źrv“e–ŤobSŽeen˜written“to“teacŹrh˜T‘ţ ‘Ÿ•UEŽ‘‘!X“all“sorts˜of“applications.ŽĄThere–yare›y€spSŽecialist“maths˜pacŹrk‘˙Xäages“(ŰA‘ţ ‘Ÿ•UMŽ– űźSš-T‘ţ ‘Ÿ•UEŽ›‘!X,‘6ŰA‘ţ ‘Ÿ•UMŽ“Sš-LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ˜X),‘7general‘y€purpSŽose‘ypacŹrk‘˙XäagesŽĄ(LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X),›X,pacŹrk‘˙Xäages–BEfor“setting“tree‘BDdiagrams,˜F‘˙Veynmann“diagrams,˜languages“likŹre“Chinese,ŽĄArabic–] and‘]!AncienšŹrt“Greek,‘yżorc˜hestral“scores,–yžand‘]!man˜y‘˙V,“man˜y–]!more.‘IAll›] these“are˜freelyŽĄašŹrv‘˙Xäailable,–ę¨a“spin-o “of“the“gian˜t“T‘ţ ‘Ÿ•UEŽ‘‘!X“cult.ŽĄ‘ŸôAnother–d=facet›d>of“the“design˜of“T‘ţ ‘Ÿ•UEŽ‘‘!X“alloŹrws˜it“to˜use“practically“ćany‘qŔšoutput“device.‘Ľ InŽĄfact,‘ЏT‘ţ ‘Ÿ•UEŽ‘‘!X›˘“doSŽesn't–˘”talk“to“an•Źry˜prin“ters,–Џscreens,“phototŹrypSŽesetters–˘”at˜all!‘`¤Instead,‘Ўwhen“aŽĄdošSŽcumenŹrt–)is“compiled“a“ćdevic–˙ffe‘Wěindep“endent‘Maš(ă.dviš)–)is“pro˜duced|T‘ţ ‘Ÿ•UEŽ‘‘!X“do˜es“not“compileŽĄwith–őanšŹry“particular“output“device‘ôin“mind.‘ŐÇPrin˜ter“driv˜ers“are“then‘ôin˜v˜ok˜ed“on“this“ă.dviŽĄš le–Šăand,‘ٲin›Šäconsultation“with“the“fonŹrt˜data“for“that“prinŹrter,‘ٲproSŽduce˜output“suitable“forŽĄthe–particular›device.‘ĘY‘˙Vou“can˜cŹrhoSŽose“an˜HP‘ÄLaserjet˜drivŹrer,‘g,or“an˜Apple“LaserW‘˙VriterŽĄdrivšŹrer,‘kďor–ŕa“dot‘ámatrix“driv˜er›áetc.‘ՉAll“use˜the“same˜ă.dvi“š le˜as“input˜(and“rememŹrbSŽerŽĄthe–Smaterial“in“there“is“set“to“enormous“accuracy)‘Sand“attempt“to“image“that“ le“on“theŽĄparticular–Ÿödevice›Ÿ÷as“faithfully˜as“pSŽossible.‘űIf“yŹrou˜are“using˜a“top˜of“the˜line“laser˜prinŹrter“orŽĄphototšŹrypSŽesetter,‘e˜then–MT‘ţ ‘Ÿ•UEŽ‘‘!X's“massiv˜e“in˜ternal‘Mprecision“will“not“bSŽe“w˜asted.‘_íAlternativ˜ely‘˙V,ŽĄa–œÔdot“matrix‘œŐprinšŹrter“will“giv˜e“a“coarse‘œŐappro˜ximation“of“the“ideal“image‘œŐthat“is“suitableŽĄonly–oęfor“prošSŽof-reading.‘ČĽIn“addition“to“p˜ortabilitŹry‘˙V,‘‘:these“ă.dvi“š les‘oéhelp“ensure“that“thereŽĄare–"„všŹrery“few‘"…prin˜ting“surprises“when“y˜ou“mo˜v˜e‘"…from“one“device“to“another:‘¨™ho˜w“man˜yŽĄtimes–§šhas“yšŹrour“fa˜v˜ourite‘§şw˜ord-proSŽcessor“made“y˜ou“reformat“a“doSŽcumen˜t‘§şwhen“y˜ou“wish“toŽĄc•Źrhange‘ę¨prin“ters?ŽĄ‘ŸôThere–((are“manšŹry“other“motiv‘˙Xäations‘()one“could“cite“for“the“supSŽeriorit˜y“of“T‘ţ ‘Ÿ•UEŽ‘‘!X.‘ńaBut“it“isŽĄtime–ńšthat›ń¸wŹre“started˜to“get˜our“hands“dirtšŹry‘˙V.‘NOne“last“commen˜t:‘GT‘ţ ‘Ÿ•UEŽ‘‘!X‘ń¸w˜as“not‘ń¸designed“toŽĄsupplanšŹrt–Y÷secretaries‘Yřand“professional“prin˜ters|it“w˜as›Yřdesigned“to“aid“them˜in“their“wŹrorkŽĄand,‘šŔin–]!the“wŹrords›]"of“the“T‘ţ ‘Ÿ•UEŽ‘‘!X˜designer“Donald˜Kn•Źruth,‘šżallo“w˜them–]!to“\go˜forwŹrard“andŽĄcreate–qťmasterpieces›qşof“the˜publishing“art".It˜also“alloŹrws˜those“who˜generate“the˜materialŽĄto–Ö bšSŽe“t•Źryp˜eset|mathematicians,›ÚĄph“ysicists,˜computer›Ö scien“tists,‘Ú˘etc|to‘֟prepare˜their˜o“wnŽĄdoSŽcumenšŹrts–ŢSin“a“language“that“is“in˜timately“link˜ed“to“the“language“w˜e“use“for“writing“suc˜hŽĄmaterial.ŽĄ‘ŸôThe–L:nošŹrvice“reader“will“still‘L9ha˜v˜e“no“idea“of“what“a“T‘ţ ‘Ÿ•UEŽ‘‘!X“source“ le‘L9loSŽoks“lik˜e.‘]–Indeed,ŽĄwh•Źry›'do‘'w“e˜k“eep˜referring˜to‘'it˜as˜a˜ćsour–˙ffc“e‘V leš?‘íűThe˜fact˜of–'the˜matter˜is˜that“T‘ţ ‘Ÿ•UEŽ‘‘!X˜isŽĄessenšŹrtially–öŐa“ćpr–˙ffo“gr“amming‘)´languageš.‘]gJust–öŐas“in‘öÔan˜y“compiled“language“(e.g.,“P˜ascal,‘9ŕC)ŽĄone–śtprepares“a›śssource“ le“and“submits“it˜to“the“compiler“whicŹrh“attempts˜to“proSŽduce“anŽĄob‘§ject–† le“(ă.dvi“š le“in“the“T‘ţ ‘Ÿ•UEŽ›‘!X“case).‘ =T‘˙Vo“learn“T‘ţ ‘Ÿ•UEŽ˜X“is“to“learn“the“command“synŹrtax“ofŽĄthe–ę¨commands“that“can“bSŽe“used“in“the“source“ le.ŽŸ"ĘŤž1.1.2Ž‘1űTšŒĚypical–ffT‘ýL¨Ÿ32EŽ‘čdX“in˜terfacesŽŸ@šT‘ţ ‘Ÿ•UEŽ‘‘!X–§5wŹras“designed›§6to“run“on“a˜mŹrultitude“of“computers.‘nˆIt“is“therefore“the˜case“that“theŽĄdoSŽcumenŹrtation–ąfor“T‘ţ ‘Ÿ•UEŽ›‘!X‘°and“its“\friends"“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ˜X,–,óŰA‘ţ ‘Ÿ•UMŽ‘ űźSš-T‘ţ ‘Ÿ•UEŽ˜X,“etc.–ąis‘°not“computer“spSŽeci c.ŽĄOnly–bœcommand›b›synŹrtax“is˜describSŽed|i.e.,‘€˜the“con•Źrten“t˜of‘bœy“our˜source–bœ le|but˜few“detailsŽŽŸ’ălT3ŽŽŒ‹†Đ ° ý\ † ýŸšof–dhoŹrw›cto“get˜from“there˜to“a˜prinŹrtout“are˜givŹren.‘żThose˜details“are˜left“to˜site-spSŽeci cޤ€doSŽcumenŹrts.ŽĄ‘ŸôThe›ůŁa•Źrv“erage–ů˘user˜loses“little˜in“using˜T‘ţ ‘Ÿ•UEŽ‘‘!X“on,–)×saŹry‘˙V,“a–ů˘PC‘ůerather˜than“on˜a“bigger˜macŹrhine.ŽĄIndeed,‘1Şcompilation–jtimes“on“the›knew“PCs“bSŽegin“to“riv‘˙Xäal˜those“on“a“Sun“Sparc˜Station“2“(noŽĄsloucšŹrh).‘F:Running–ďon“top“of“DOS“can“cause“memory“problems“when‘ďv˜ery“large“doSŽcumen˜tsŽĄare–űbšSŽeing“prepared.‘j6That“aside,‘?7the“qualitŹry“of“the“do˜cumenŹrt“is“not“a ected“b˜ecause“ofŽĄthe–ycareful“design“of“T‘ţ ‘Ÿ•UEŽ‘‘!X|whether“yšŹrou“w˜ork“on‘xa“a“mac˜hine“with“massiv˜e“ oating“pSŽoin˜tŽĄprecision–ތor“a›ދmoSŽdest“XT‘ŢMthe“ă.dvi“š les˜prošSŽduced“on“compilation“will“b˜e‘ދidenŹrtical;‘X~andŽĄwhen–Cthose›C les“are“submitted˜to“prinšŹrter“equiv‘˙Xäalen˜t‘Cprin˜ter“driv˜ers“(sa˜y“for‘Can“HP‘BçLaserJetŽĄI•SŽI“I‘OrattacŹrhed›OÍto–OÎa“Sun˜in“one˜case“and“a˜PC‘Orin˜the“other)“the˜output“will˜bSŽe“idenŹrticalŽĄbSŽecause–ę¨the“fonšŹrt“information“they“dra˜w“on“is“iden˜tical.ŽĄ‘ŸôBy–ĚŰthe›ĚÜnature“of“T‘ţ ‘Ÿ•UEŽ‘‘!X“most˜time“is“spSŽenŹrt˜editing“the“source“do•SŽcumenŹrt˜(b“efore‘ĚŰsubmittingŽĄit–Óżfor“compilation).‘1=No“spSŽecial“inšŹrterface“is“necessary‘Óžhere,‘ŘTy˜ou“just“use“y˜our“fa˜v˜ourite“textŽĄeditor–(ă(pSŽerhaps“customising‘(âit“to“enhance“T‘ţ ‘Ÿ•UEŽ›‘!Xnical“t•Źryping.‘óTh“us–(ăT‘ţ ‘Ÿ•UEŽ˜X‘(âuser“inŹrterfaces“areŽĄusually–^Ůsmall›^Řand“simple,‘{ĺoften“evŹren“missing.‘•rOne˜frequenŹrtly“uses“T‘ţ ‘Ÿ•UEŽ‘‘!X“at˜command“lineŽĄlevŹrel,›âšjust–}érunning“the“editor,˜compiler“etc.“as“yŹrou“need“them.‘ ňŁSometimes“a“T‘ţ ‘Ÿ•UEŽ‘‘!XshellŽĄprogram–ę¨is“presenšŹrt,“whic˜h“runs“these“for“y˜ou“when“y˜ou“c˜hoSŽose“v‘˙Xäarious“men˜u“options.ŽĄ‘ŸôWhatevšŹrer–ę¨the“in˜terface,“there“are“just“a“few“basic“steps“to“preparing“a“doSŽcumen˜t:ޤ€‘\h1.ŽŽŽ‘_ěChošSŽose–ę¨a“do˜cumenšŹrt“st˜yle“to“base“y˜our“doSŽcumen˜t“on“(e.g.,“letter,“article).ŽĄ‘\h2.ŽŽŽ‘_ěGlance–°Ńthrough“the“material“y•Źrou›°Đha“v“e–°Ńto“tŹrypSŽe,‘źcand˜decide“what“de nitions“mighŹrt“bSŽeޤ€‘_ěmade–ć to“sa•Źrv“e›ć y“ou–ć a“lot“of˜time.‘âAlso,‘+decide˜on“the“o•Źrv“erall–ć structure˜of“the“prospSŽectivŹreŽĄ‘_ědoSŽcumenŹrt–ŁŻ(e.g.,‘Ńđwill›ŁŽthe“largest“sectional˜unit“bSŽe“a˜cŹrhapter“or˜a“part?).‘côIf˜yŹrou“areŽĄ‘_ěgoing–ŔCto“compSŽose‘ŔBas“yšŹrou“t˜ypSŽe,‘őŞthen‘ŔBpause“a“momen˜t“to“think“ahead‘ŔBand“plan“theŽĄ‘_ěstructure–Ŕ†of‘Ŕ‡yšŹrour“doSŽcumen˜t.‘*ŐThe“impšSŽortance“of“this‘Ŕ‡step“cannot“b˜e‘Ŕ‡o•Źrv“erstressed,‘ČóforŽĄ‘_ěit–ę¨makšŹres“clear“in“ćyour‘5Sšmind“what“y˜ou“w˜an˜t“from“T‘ţ ‘Ÿ•UEŽ‘‘!X.ŽŠ€‘\h3.ŽŽŽ‘_ěPrepare–ű¨yšŹrour“input“ le,‘˙éspSŽecifying“only“the“con˜ten˜t“and‘űŠthe“logical“structure“(parts,ŽĄ‘_ěsections,–ę¨theorems,...)‘8ŕthereof“and“forgetting“abSŽout“formatting“details.ŽŚ‘\h4.ŽŽŽ‘_ěSubmit–Ş'yŹrour‘Ş(input,›ˇor“source,˜ le“to“the›Ş(T‘ţ ‘Ÿ•UEŽ‘‘!X“compiler“for˜compilation“of“a˜ă.dvi“š le.ŽŚ‘\h5.ŽŽŽ‘_ěIf–Tˆthe›T‰compiler“ nds˜anŹrything“in˜yŹrour“source˜ le“strongly˜ob‘§jectionable,‘rsaŹry“incorrectŽĄ‘_ěcommand–ę¨synŹrtax,“then“return“to“editing.ŽŚ‘\h6.ŽŽŽ‘_ěRun›ťŕa–ťßćpr‘˙ffeviewer‘‹što“preview˜yŹrour“compiled˜doSŽcumenŹrt˜on“the˜screen.‘ʆResolution˜isŽĄ‘_ěonly–Ŕlimited‘ÁbšŹry“y˜our›Áscreen,‘Ąďand“can˜bSŽe“vŹrery˜go•SŽo“d–Ŕindeed˜on“some˜moSŽdern“monitors.ŽŚ‘\h7.ŽŽŽ‘_ěGo–ę¨bacšŹrk“to“editing“y˜our“doSŽcumen˜t“un˜til“glaring“errors“ha˜v˜e“bSŽeen“tak˜en“care“of.ŽŚ‘\h8.ŽŽŽ‘_ěMakšŹre–'6a“prin˜tout“of“y˜our“compiled“doSŽcumen˜t,‘vZand“c˜hec˜k“for“those“errors“that“y˜ouŽĄ‘_ěfailed–ę¨to“notice“on“the“screen.ŽŽŸ’ălT4ŽŽŒ‹™J ° ý\ † ýŸšPšŹrerforming–=vthese‘=wsteps“ma˜y“bSŽe‘=we ected“through“t˜yping›=wat“the“system˜prompt“(barebSŽonesޤ€tecšŹrhnique)–Â/or‘Â.through“c˜hoSŽosing“men˜u›Â.options“in“a˜T‘ţ ‘Ÿ•UEŽ‘‘!Xshell“program.‘ żtThe˜latter“willŽĄprobably–ę¨prošŹrvide“some“con˜v˜eniences“to“mak˜e“y˜our“life“easier.ŽĄ‘ŸôIf–ť„yšŹrou‘ť…think“this“sounds“lik˜e‘ť…a“lot“of“w˜ork,‘ďźit“is“time‘ť…that“y˜ou“consult“with‘ť…the“T‘ţ ‘Ÿ•UEŽ‘‘!XŽĄspirit!‘QhSure–ňÖyŹrour›ňŐ rst“couple˜of˜tries“maŹry˜bšSŽe“hesitanŹrt,‘ôŕbut“b˜efore›ňŐlong“yŹrou'll˜ nd“that˜yŹrouŽĄcan–ę¨takšŹre“ćless‘腹time“to“prepare“a“doSŽcumen˜t“on“T‘ţ ‘Ÿ•UEŽ‘‘!X“than“on“an˜y“other“pac˜k‘˙Xäage.ŽŽŸ’ălT5ŽŽŒ‹¨s ° ý\ † ýďÔChapter‘ T{2ŽŸ2Getting– T{started“with“LŸý(Ս‘őěpóOÂÖN ˝q cmbx12ëOAŽŽ‘X=ÔT‘űU‚Ÿ‡dEŽ‘ 5XŽŸ>ëH2.1Ž‘,GŤWh‘˙uÂy–zástart“with“LŸü`™‘ůiŐAŽŽGšëHT‘üÂcŸ× EŽ‘ŢX?ŽŸb#šT‘˙Vo–^„answšŹrer“this“question“w˜e“m˜ust“sa˜y“a‘^…little“more“abSŽout“some“of“the“macro“pac˜k‘˙Xäages“w˜eޤ€menŹrtioned‘ę¨earlier.ŽĄ‘ŸôThe–äĄT‘ţ ‘Ÿ•UEŽ‘‘!X“tšŹrypSŽesetting“system“w˜as“designed“b˜y“the“eminen˜t“Stanford“computer“scien˜tistŽĄDonald–˙žKnŹruth,‘on›˙˝commission“from˜the“American˜Mathematical“SoSŽciet•Źry‘˙V.‘x!It˜w“as‘˙ždesignedŽĄwith›rÎenormous–rÍcare,‘Ô×to“bSŽe˜ultimately“pSŽo•Źrw“erful˜and‘rÍmaximally˜ exible.‘ ŃPThe˜enormousŽĄsuccess–ˇ+of“KnšŹruth's“design“is“apparen˜t“from‘ˇ*the“v‘˙Xäast“n˜um˜bSŽer“of“div˜erse“applications“T‘ţ ‘Ÿ•UEŽ‘‘!XŽĄhas–'found.‘íéIn“reading“the“follošŹrwing“y˜ou‘'m˜ust“k˜eep“one“thing“clearly“in‘'mind:‘ąćther‘˙ffe‘UűisŽĄonly–'üT‘ý˙ăŸ•UEŽ›uóX“language,‘*:and“al‘™™l“the“other“p‘˙ffackages“whose“names“end‘'űin“the“sux“-T‘ý˙ăŸ•UEŽ˜XŽ‘"vsimplyŽĄharness–35it's“p›˙ffower“via“a“whole“lot“of“c˜omplic˜ate˜d“macr˜o“de nitionsš.ŽĄ‘ŸôT‘ţ ‘Ÿ•UEŽ‘‘!X–ŇpropSŽer“is›Ńa“collection“of˜around“300“so“called˜ćprimitive‘ű‚štŹrypSŽesetting“commands.ŽĄThese–˙éwšŹrork“at“the“v˜ery“lo˜w˜est‘˙člev˜el,‘.Üa ording“enormous“pSŽo˜w˜er.‘ę But“to“mak˜e“this“ra˜w“pSŽo˜w˜erŽĄmanageable,‘áásome›ߎmacros–߯mŹrust“bSŽe“de ned“to˜tame“raŹrw“T‘ţ ‘Ÿ•UEŽ‘‘!X“somewhat.‘57The“standard“setŽĄof–ˇsmacros›ˇtis“called“Plain“T‘ţ ‘Ÿ•UEŽ‘‘!X,‘Áąand˜consists“of“abSŽout“600˜macro“de nitions.‘'ÎIt“is˜clear“thatŽĄthese–˘nde nitions“mšŹrust“bSŽe“made“in“terms“of‘˘mT‘ţ ‘Ÿ•UEŽ‘‘!X“primitiv˜es,‘°ŕor“in“terms“of“previously“madeŽĄde nitions.‘óspace.‘A„No“space“will›E?bGe“inserted“if˜wš¸ăe“t˜ypGe›E?a“comma“or˜p•Gerio“d‘E>follo•¸ăw“edŽĄ‘..straigh•¸ăt›dAa“w“a“y˜b“y˜something˜other˜than˜a˜space,‘§űbGecause˜there˜are˜times˜when˜w“eŽĄ‘..wš¸ăon't–UUrequire“an˜y“space,“i.e.,“w˜e“do“what“comes“naturally‘˙*Ş.ŽŽŸ”‘ŸôšLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X–N…will“prošSŽduce“suitable“space“after“commas,–mżp˜erio˜ds,“semi-colons–N…and“colons,‘mżexcla-ŽĄmation–marks,‘Ţquestion›marks“etc.“if˜they“are“follo•Źrw“ed˜b“y–a˜space.‘ŽűIn“stretcŹrhing“a˜line“toŽĄjustify–to“the›righŹrt“margin,‘)–it“also˜knoŹrws“that“space“after“a˜punctuation“cŹrharacter“shouldŽĄbSŽe–>more“\stretcšŹrhable"‘?than“normal“in˜ter-w˜ord“space›?and“that“space“after˜a“senŹrtence-endingŽĄp•SŽerio“d– ăshould“bSŽe“stretcšŹrhed‘ âmore“than“space“after“a“mid-sen˜tence“comma.‘–T‘ţ ‘Ÿ•UEŽ‘‘!X“kno˜ws“theŽĄnature–‹ of“punctuation‘‹ if“yšŹrou“stic˜k“to“the“simple›‹ rules“outlined“here.‘As˜w•Źre'v“e–‹ already“said,ŽĄthose–ę¨rules“tell“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“hošŹrw“to“distinguish“consecutiv˜e“w˜ords,“sen˜tences,“phrases,“etc.ŽĄ‘ŸôActually‘˙V,‘śĺthere–Šôis‘Šómore“to“ending“senšŹrtences“than“men˜tioned“abSŽo˜v˜e.‘#NSince“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“cannotŽĄspSŽeak–NEnglish,‘<Ćit›MwŹrorks“on“the˜assumption“that˜ća‘kmp–˙fferio“d›klfol‘™™lowe“d˜by‘kma˜sp“ac“e˜ends‘kma˜sentenc“eŽĄunless–řëthe“p–˙fferio“d‘řęfol‘™™lows–řëa“c‘˙ffapital“letterš.‘#˝This–Ť=wŹrorks›Ť>most“of˜the“time,‘ˇíbut“can˜fail.‘#źT‘˙Vo˜getŽĄa–˝jnormal“in•Źrter-w“ord›˝ispace–˝jafter“a“p•SŽerio“d˜that›˝jdo“esn't˜end˜a›˝isen•Źrtence,‘Ćwfollo“w˜the›˝jp•SŽerio“d˜bŹryŽĄa›<(ćc–˙ffontr“ol‘~sp“ac“eš|a–<'ă\ ˜š(a“ă\˜šcšŹrharacter“follo˜w˜ed‘<(b˜y“a›<(space“or˜return).‘-_V›˙Very“rarely˜,‘P‡yŹrou‘<(willŽĄha•Źrv“e–Űöto“force›Ű÷a“senŹrtence“to“end“after“a˜p•SŽerio“d–Űöthat“folloŹrws“a“capital˜letter“(rememŹrbSŽer“thatŽĄLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X–6.assumes›6-this“doSŽesn't“end“a˜senŹrtence).‘qThis“is“done˜bŹry“preceding“the“p•SŽerio“d˜with‘6.aŽĄă\@–ꨚcommand“(yšŹrou“can“guess“from“the“oSŽdd“syn˜tax“that“this“is“rarely“needed).ŽŽŸ’ŕ|V11ŽŽŒ‹ ö! ° ý\ † ýŸ‘ŸôšIt's–ŢĆtime“wšŹre“sa˜w“some“examples“of“this.‘4ęAfter“all,‘á'this“is“our“ rst“expSŽerience“of“ćc–˙ffontr“olޤ€symb‘˙ffols–ꨚ(don't“wšŹrorry‘˙V,“there“are“man˜y“more“to“come).Ž ’UVŸ„Ǎ‘..ĹWe–?ýmust“be“careful“not“to“confuse“intra-sentence“periodsޤ ‘..with–?ýperiods“that“end“a“sentence,“i.e.\“we“must“rememberŽĄ‘..that–?ýour“task“is“to“describe“the“sentence“structure.‘ úPeriodsŽĄ‘..that–?ýthe“typesetter“requires“a“little“help“with“typically“resultŽĄ‘..from–?ýabbreviations,“as“in“etc.\“and– úothers.“We–?ýhave“to“workŽĄ‘..somewhat–?ýharder“to“break“a“sentence“after“a“capital“letter,ŽĄ‘..but–?ýthat“shouldn't“bother“us“to“much“if“we“keep“up“our“intakeŽĄ‘..of–?ývitamin“E\@.‘ úAll“this“goes“for“other“sentence-endingŽĄ‘..punctuation–?ýcharacters,“so“I“could“have“said“vitamin“E\@!ŽĄ‘..Fortunately,–?ýthese“are“rare“occurrences.ŽŽĄšresults‘ę¨inŽŸRńǍŸ¸‘?ł"˛W‘˙*Şe–ó mš¸ăust“bGe“careful“not“to“confuse‘ó in˜tra-sen˜tence“p•Gerio“ds–ó with“p•Gerio“ds–ó that“end“aޤ ‘..sen•¸ătence,‘či.e.‘„˙w“e›„ţm“ust˜remem“b•Ger˜that˜our˜task˜is˜to‘„˙describ“e˜the˜sen¸ătence˜structure.ŽĄ‘..Pš¸ăerioGds–HĹthat‘HÄthe“t˜ypGesetter“requires›HÄa“little“help˜with“t¸ăypically“result˜from“abbrevia-ŽĄ‘..tions,‘´ as›Ąin–Ąetc.“and“others.‘UW‘˙*Şe“ha•¸ăv“e‘Ąto˜w“ork–Ąsomewhat“harder“to˜break“a“sen¸ătenceŽĄ‘..after–ka“capital›kletter,‘qbut“that“shouldn't“bGother˜us“to“m•¸ăuc“h–kif“wš¸ăe“k˜eep‘kup“our“in˜tak˜eŽĄ‘..of–5Ëvitamin“E.‘*All“this“goGes“for“other“senš¸ătence-ending“punctuation“c˜haracters,‘méso“IŽĄ‘..could›UUha•¸ăv“e˜said˜vitamin˜E!‘qÇF–˙*Şortunately“,˜these˜are˜rare˜oGccurrences.ŽŽŠ€‘ŸôšQuotation–ęĹmarks›ęĆis“another“area˜where“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“will˜do“some“wŹrork˜for“us.‘98KeybSŽoardsŽĄha•Źrv“e–˙Dthe“cšŹrharacters“ă`š,–kă`š,“and–˙Dă"“šbut“w˜e“w˜an˜t“to“to“ha˜v˜e‘˙Caccess“to“eac˜h“of“`,–k',“\,“and‘˙D".‘v´SoŽĄwšŹre–ę¨proSŽceed“lik˜e“this:ŽŸV˙ŸŔǍ‘..Ĺ`\LaTeX'–?ýis“no“conventional“word-processor,“andޤ ‘..to–?ýto“get“quotes,“like“``this'',“we“type“repeatedŽĄ‘..`–?ýand“'“characters.‘ úNote“that“modernŽĄ‘..convention–?ýis“that“``punctuation“comes“afterŽĄ‘..the–?ýclosing“quote“character''.ŽŽĄšwhic•Źrh›ę¨giv“es˜just˜what˜w“e˜w“an“tŽŸ%GŸč‘?ł"˛`LŸýó5‘üffóٓ Rcmr7ąAŽŽ‘͉˛T‘ţU>Ÿ'EŽ‘ăxX'–ŮŔis›Ůżno“con•¸ăv“en“tional˜w“ord-proGcessor,‘úÚand–ŮŔto˜to“get˜quotes,›úÚlik¸ăe“\this",˜w¸ăeޤ ‘..t¸ăyp•Ge›ělrep“eated˜Ĺ`‘ěm˛and˜Ĺ'˜˛c¸ăharacters.‘NĎNote˜that˜mo“dern˜con•¸ăv“en“tion‘ěmis˜that˜\punctuationŽĄ‘..comes–UUafter“the“closing“quote“c¸ăharacter".ŽŽŚ‘ŸôšV–˙Very›’0rarely“,‘Łáy•Źrou‘’/ha“v“e˜three‘’/quote˜c“haracters–’/together.‘cMerely“tŹryping˜those“three˜quoteŽĄcšŹrharacters–€Ôone-after-the-other‘€Óis“am˜biguous|ho˜w“should›€Óthey“b•SŽe˜group“ed?‘šY‘˙Vou˜tell‘€ÔLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!XŽĄho•Źrw›ę¨y“ou˜w“an“t˜them˜groupSŽed˜b“y˜inserting˜a˜v“ery˜small˜space˜called˜ă\,š.ŽŸ&˙ŸđǍ‘..Ĺ``\,`Green–?ýham'“or“`Eggs?'\,''“is“the“question.ŽŽĄšgivŹres–ę¨the“desired“resultŽŚ‘?ł"˛\›ŞŽ`Green–UUham'“or“`Eggs?'˜"‘qÇis“the“question.ŽŽŚ‘ŸôšSince–wšŹre“ha˜v˜e“a“t˜ypšSŽesetter“at“our“disp˜osal,‘VëwšŹre“migh˜t“as“w˜ell“use“the“correct“dashesŽĄwhere– ŚwšŹre“need– Ľthem.‘›ÚThere“are– Śthree“t˜ypSŽes“of“dash:‘zŰthe“h˜yphen,›Sĺthe“endash,˜and“theŽĄemdash.‘8ŕA–ę¨minŹrus“sign“is“not“a“dash.ŽŽŸ’ŕ|V12ŽŽŒ‹ ĺ ° ý\ † ýŸ‘ŸôšHyphens–úKare›úJtŹrypSŽed“as˜yšŹrou'd“hopSŽe,‘>3just“b˜y“t˜yping›úJa“ă-˜šat“the“pSŽoinŹrt˜in“the˜wŹrord“thatޤ€y•Źrou›Ć]w“an“t˜a˜h“yphen.‘ĚDon't˜forget˜that˜LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X˜tak“es˜care‘Ć^of˜h“yphenation˜that˜is˜requiredŽĄto–×˝proSŽduce›ןprettŹry“linebreaks.‘Y‘˙Vou˜only“tŹrypSŽe“a˜hšŹryphen“when“y˜ou‘ןexplicitly“w˜an˜t‘ןone“toŽĄappSŽear,–ę¨as“in“a“comšŹrbination“lik˜e“\in˜ter-college".ŽĄ‘ŸôAn–Ăendash›Äis“the˜correct“dash“to˜use“in“indicating˜n•Źrum“bSŽer–Ăranges,‘C‹as“in˜\questions“1{3".ŽĄT‘˙Vo–ę¨spSŽecify“an“endash“yšŹrou“t˜ypSŽe“t˜w˜o“consecutiv˜e“dashes“on“the“k˜eybSŽoard,“as“in“ă1--3š.ŽĄ‘ŸôAn–IUemdash“is“a“punctuation–ITdash,‘aused“at–IUthe“end“of“a“senŹrtence|I‘IbSŽet•Źrw“een˜them.‘‡ĄThese˜are–Z>part˜of˜what“makŹres˜LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“so˜pSŽo•Źrw“erful,‘v#andŽŚhere–ę¨are“some“examples.ŽŸ ü‘ďŰŽŽŽ‘_ěă\chapter{The‘,Íbeginning}–:¸šcauses“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X›:ˇto“start“a“new“cŹrhapter˜with“name“\TheŽŚ‘_ěBeginning",›Đ^n•Źrum“bSŽer‘˘nit–˘min“sequence,˜tšŹrypSŽeset“the“c˜hapter‘˘nheading“in“a“suitable“fon˜t,ŽŚ‘_ěand–ę¨makšŹre“an“en˜try“in“the“table“of“con˜ten˜ts,ŽĄ‘ďŰŽŽŽ‘_ěă\overline{words}–ꨚcauses“Ÿöw}‰feÄ0Ÿ ˆƒwŹrordsŽŽ‘%™€to“bSŽe“o•Źrv“erlined,ŽŸ"ž‘ďŰŽŽŽ‘_ěă\frac{a+b}{c+d}–œLšsets“the“giv•Źren‘œKt“w“o›œLargumen“t˜as˜a˜fraction,‘Ťřdoing‘œKmost˜of˜the˜dirt“yŽŚ‘_ěwŹrork–ę¨for“us:ŸűFu‘ló.×2cmmi8ŮaÖ+ŮbŽ‘lŸ콉feĂ#Ÿđ' EcÖ+ŮdŽŽŽŽ‘biš,ŽŸI‘ďŰŽŽŽ‘_ěă\sqrt[5]{a+b}–Ő7štŹrypšSŽesets‘Ő6the“ fth-ro˜ot“of›Ő6Řa–~Üš+“Řbš,‘ـlikŹre–Ő7this:‘ƒyŸúʊó,šAa¨cmr6×5Ž‘ƒ|ŸöHŰpŽ‘ƒ~ŸöH‰zŕ˘ĂŸ ˇĺŘa–ިš+“ŘbŽŽŽŽ‘)&Aš.‘1şThe“ă5“šis˜in“squareŽŚ‘_ěbrac•Źrk“ets–ÎIinstead›ÎJof“braces˜bSŽecause“it˜is“an˜optional“argumenŹrt˜and“could˜bSŽe“ommitedŽŚ‘_ěall–ę¨together“(giving“the“default“of“square“roSŽot),ŽŸ ü‘ŸôMandatory–aŠargumenšŹrts‘aŞare“giv˜en“enclosed‘aŞb˜y“braces,‘jand“optional‘aŞargumen˜ts“enclosedŽŚbšŹry–^9square“brac˜k˜ets.‘“’Eac˜h“command“kno˜ws‘^8ho˜w“man˜y“argumen˜ts“to‘^8expSŽect,‘{so“y˜ou“don'tŽŚha•Źrv“e–ę¨to“prošŹrvide“an˜y“indication“of“that.ŽŚ‘ŸôW‘˙Ve›ŕÜha•Źrv“e–ŕŰactually˜jumpSŽed“the˜gun˜a“little.‘{The˜abSŽo•Źrv“e–ŕŰexamples˜include“examples˜ofŽŚćmathematic‘˙ffal‘œšt•ŹrypSŽesetting,‘ËÂand‘Ä w“e›Ä ha“v“en't˜y“et˜seen˜ho“w˜to˜tell˜LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X˜that˜it˜is˜t“ypSŽesettingŽŚmaths–„Ąas›„ oppSŽosed“to“some˜other“random“string“of˜symŹrbSŽols“that“it˜doSŽesn't“understandŽŚeither.‘8ŕW‘˙Ve'll–ę¨come“to“mathematical“tŹrypšSŽesetting“in“go˜o˜d“time.ŽŽŸ’ŕ|V15ŽŽŒ‹-Π° ý\ † ýŸ‘ŸôšW‘˙Ve–ŐŚneed›Ő§to“dwŹrell“on“a˜T‘ţ ‘Ÿ•UEŽ‘‘!XnicalitŹry“for“a˜momen•Źrt.‘ůŰHo“w–ŐŚdoSŽes“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“knoŹrw˜where“theޤ€name–\>of›\?a“conŹrtrol“sequence“ends?‘ hWill“it“accept“bSŽoth˜ă\pounds3“šand“ă\pounds‘,Í3“šin˜order“toŽĄset–F›ëi$š3,‘]˜and“will“ă\emWalrus“šand“ă\em‘,ÍWalrus“šbšSŽoth“b˜e‘Fœacceptable“in“order“to“get“ćWalrus‘ýÝš?ŽĄThe–Ő¸answŹrer›Őšis“easy“when˜yšŹrou“remem˜bSŽer‘Őšthat“a“con˜trol‘Őšw˜ord“consists“only‘Őšof“alphabSŽeticŽĄcšŹrharacters,–ę¨and“a“con˜trol“sym˜bšSŽol“consists“of“exactly“one“nonalphab˜etic“cŹrharacter.ŽĄ‘ŸôSo–ę¨to“determine“whicšŹrh“con˜trol“sequence“y˜ou“t˜ypšSŽed,“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“do˜es“the“folloŹrwing:ŽŠ€‘\h1.ŽŽŽ‘_ěwhen–şa“ă\“šcšŹrharacter“is‘ş~encoun˜tered,‘îuLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“kno˜ws“that“either‘ş~a“con˜trol“sym˜bSŽol“or“aŽĄ‘_ěcon•Źrtrol›ę¨w“ord˜will˜follo“w.ŽŚ‘\h2.ŽŽŽ‘_ěIf–˙the›˙ă\“šis“follo•Źrw“ed˜b“y–˙a“nonalphabSŽetic“cšŹrharacter,‘.8then“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“kno˜ws›˙that“it“is˜a“conŹrtrolŽĄ‘_ěćsymb‘˙ffol‘řršthat›šŕy•Źrou‘šßha“v“e˜t“ypSŽed.‘چIt˜then‘šßrecognises˜whic“h–šßone“it˜w•Źras,‘í­t“ypSŽesets˜it,‘í­andŽĄ‘_ěgoSŽes–ę¨on“to“read“the“cšŹrharacter“whic˜h“follo˜ws“the“sym˜bSŽol“y˜ou“t˜ypSŽed.ŽŚ‘\h3.ŽŽŽ‘_ěIf–Čthe“ă\“šis“follo•Źrw“ed›Čb“y˜an˜alphabSŽetic˜c“haracter,‘Îüthen˜LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X˜kno“ws˜that˜it˜is˜a˜con“trolŽĄ‘_ěw•Źrord›@that‘Ay“ou˜ha“v“e˜t“ypSŽed.‘ńBut˜it‘Ahas˜to˜w“ork–Aout˜where˜the“name˜of˜the“con•Źrtrol˜w“ordŽĄ‘_ěends–¤and›¤where“the˜ensuing“text˜takšŹres“o˜v˜er–¤again.‘Ë˙Since“only‘¤alphabSŽetic“c˜haracters‘¤areŽĄ‘_ěallo•Źrw“ed,‘0LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X› reads‘ ev“erything˜up˜to– just˜bSŽefore˜that˜ rst“nonalphabSŽetic˜cŹrharacterŽĄ‘_ěas–Űlthe“conšŹrtrol“sequence“name.‘ ,Since“it‘Űmis“common“to“delimit“the“end“of“a“con˜trolŽĄ‘_ěw•Źrord›"†b“y˜a˜space,‘0~LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X˜will˜ćignor‘˙ffe‘6šan“y˜space˜that˜follo“ws˜a˜con“trol˜w“ord,‘0}since˜y“ouŽĄ‘_ěw•Źran“t–ę¨that“space“treated“as“end-of-con•Źrtrol-w“ord–ę¨space“rather“than“in•Źrterw“ord‘ę¨space.ŽŚ‘ŸôThis–Š*has“one‘Š+impSŽortanšŹrt“consequence:‘!The“c˜haracter“in“the“input‘Š+ le“immediately“afterŽĄa›t‚con•Źrtrol‘tƒsym“b•SŽol˜will‘tƒb“e˜\seen"–tƒbŹry˜LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X,‘–ůbut“ćany›ąësp–˙ffac“e˜fol‘™™lowing˜a‘ąęc“ontr“ol˜wor“d˜wil‘™™l˜b“eŽĄdisc–˙ffar“de“d–5şand“never‘5ťpr–˙ffo“c“esse“d.‘AšThis–ífdoSŽes“not“a ect“one“m•Źruc“h–ífif“yšŹrou“adopt“the“con˜v˜en˜tionŽĄof›ę¨alw•Źra“ys˜t“yping˜a˜space˜after˜a˜con“trol˜sequence˜name.ŽĄ‘ŸôThere–Ąis“a“rare“circumstance“where“this‘Ąnecessitates“a“little“extra“wšŹrork“and“though˜t,ŽĄwhic•Źrh›ę¨w“e˜illustrate˜b“y˜example:ŽŸ>˙ŸŘǍ‘..ĹIf–?ýwe“type“a“control“word“like“\LaTeX“in“the“running“textޤ ‘..then–?ýwe“must“be“cautious,“because“the“string“of“spaces“thatŽĄ‘..come–?ýafter“it“will“be“discarded“by“the“\LaTeX\“system.ŽŽĄšwhicŹrh–ę¨proSŽduces“the“outputŽŸGŸô‘?ł"˛If›ż@w•¸ăe‘ż?t“ypGe˜a‘ż?con“trol˜w“ord‘ż?lik“e˜LŸýó5‘üffąAŽŽ‘͉˛T‘ţU>Ÿ'EŽ‘ăxXin–ż?the˜running“text˜then“w•¸ăe˜m“ust‘ż?bGe˜cautious,ŽŸ ‘..bGecause–âthe›â‘string“of“spaces“that˜come“after“it“will˜bGe“discarded“b¸ăy“the˜LŸýó5‘üffąAŽŽ‘͉˛T‘ţU>Ÿ'EŽ‘ăxX“system.ŽŽŸ%ĘŤž2.4.6Ž‘1űCommands–ffto“cŒĚhange“apps3earanceŽŸ@šW‘˙Ve'všŹre–cseen“a‘dlittle“of“ho˜w“to“access‘dv‘˙Xäarious“sym˜bSŽols“using“con˜trol“sequences‘dand“w˜e“men-ŽĄtioned– the› ă\em“šcommand“to˜emphasise“text,‘ebut˜wŹre“didn't“see˜hoŹrw“to“use˜them.‘ľ W‘˙Ve“loSŽokŽĄhere–ę¨at“commands“that“cŹrhange“the“appSŽearance“of“the“text.ŽĄ‘ŸôEacšŹrh–.ĺof“the“con˜trol“w˜ords“here“is“a‘.ćdirectiv˜e“rather“than“a“con˜trol“sequence“that“acceptsŽĄan–P1argumenšŹrt.‘ i}This“is“b•SŽecause‘P2p“oten˜tial–P1argumen˜ts›P2consisting“of“text˜that“w•Źran“ts˜to‘P1bSŽeŽŽŸ’ŕ|V16ŽŽŒ‹<> ° ý\ † ýŸšemšŹrbSŽoldened–wđor“emphasised‘wńare“v˜ery“large,‘›Band“it‘wńw˜ould“bSŽe“a“n˜uisance“to‘wńha˜v˜e“to“encloseޤ€sucšŹrh–ę¨an“argumen˜t“in“argumen˜t-enclosing“braces.ŽĄ‘ŸôT‘˙Vo–ß°delimit›߯the“area“of“text˜o•Źrv“er›ß°whic“h˜one˜of–߯these˜commands˜has˜e ect“(its˜ćsc–˙ffop“eš)˜wŹreŽĄmakšŹre–řthat‘÷text“in˜to“what“is›÷called“a“ćgr‘˙ffoupš.‘ĂĎGroups“are˜used“extensivŹrely“in“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X˜to“kŹreepŽĄe ects– ˇloSŽcal“to› ¸an“area,‘{rather“than“a ecting˜the“whole“doSŽcumenŹrt.‘˘Apart“from“enhancingŽĄusabilitšŹry‘˙V,–ę¨this“also“in“a“sense“protects“distinct“parts“of“a“doSŽcumen˜t“from“eac˜h“other.ŽĄ‘ŸôThe–‡?LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X›‡>commands“for“c•Źrhanging˜t“ypSŽe›‡?st“yle˜are‘‡>giv“en˜in˜table–‡>2.1,‘îeand“those˜forŽĄc•Źrhanging›F~t“ypSŽe–Fsize˜are“givŹren˜in“table˜2.2.‘LcCommands“for˜selecting“fonŹrts˜other“than˜theseŽĄare–ę¨not“discussed“here.ŽŸLTŸ×•ZŸńfd‘M—ă\rmŽ‘lçšRomanŽ’ż­˛ă\itŽ’Ţ4ćitalicŽ’"Úťă\scŽ’Aa#ó>Œ-ř cmcsc10éCapit‘˙32alsŽŽ¤˙‘M—ă\emŽ‘lçćEmphasise‘˙ffdŽ’ż­˛ă\slŽ’Ţ4óA}h!Ó cmsl12ëAslanŹrtedŽ’"Úťă\ttŽ’Aa#typewriterŽŽĄ‘M—\bfŽ‘lçŐb`oldfaceŽ’ż­˛ă\sfŽ’Ţ4ó5‚ÎR6 cmss12ŕsans‘ę¨serifŽŽŽŽŽŸ&R‘o–ĹšT‘˙Vable–ę¨2.1:‘8ŕCommands“for“selecting“tšŹrypSŽe“st˜ylesŽŽŽŠZŻ‘ŸôEacšŹrh–Őof“the“t˜ypSŽe‘Őst˜yle“selection“commands“selects“the“spSŽeci ed“st˜yle‘Őbut“doSŽes“not“c˜hangeŽĄthe–‡Xsize›‡Wof“fonŹrt“bSŽeing“used.‘ĹThe“default˜tšŹrypSŽe“st˜yle“is“roman‘‡W(y˜ou“are“reading“a‘‡Wroman“st˜yleŽĄfon•Źrt›{§no“w).‘ ëŰT‘˙Vo˜c“hange‘{Śt“ypSŽe˜size‘{Śy“ou˜issue–{Śone˜of“the˜tŹrypSŽe“size˜cŹrhanging“commands˜inŽĄtable–E§2.2,‘\fwhicšŹrh“will“select“the‘EŚindicated“size“in“the“curren˜tly‘EŚactiv˜e“st˜yle.‘IÜThe“release“ofŽĄLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X–ňi3.0“(the“presenšŹrt“v˜ersion“is“2.09)“will‘ňjsee“the“New“F‘˙Von˜t“Selection“Sc˜heme“in“place“asŽĄa–ę¨standard“feature.‘8ŕThis“makšŹres“fon˜t“matters“m˜uc˜h“easier“to“deal“with.Ž ŔENŸU]Ÿˇfh‘MísizeŽ’Š[Vdefault‘ę¨(10pt)Ž’üŐĐ11pt‘ę¨optionŽ’D<Ä12pt‘ę¨optionŽŽ¤Ŕ’Ł[V„ffâHbŽŽŠ żý‘Míă\tiny‘735ŸYœ„˙ffŽ’ßÜřš5pt‘Ě͟Yœ„˙ffŽ’'Cě6pt‘Ě͟Yœ„˙ffŽ’nŞŕ6pt‘Ě͟Yœ„˙ffŽŽĄ’Ł[V„ffâHbŽŽŚ‘Míă\scriptsize‘&gŸYœ„˙ffŽ’ßÜřš7pt‘Ě͟Yœ„˙ffŽ’'Cě8pt‘Ě͟Yœ„˙ffŽ’nŞŕ8pt‘Ě͟Yœ„˙ffŽŽĄ’Ł[V„ffâHbŽŽŚ‘Míă\footnotesize‘Ě͟Yœ„˙ffŽ’ßÜřš8pt‘Ě͟Yœ„˙ffŽ’'Cě9pt‘Ě͟Yœ„˙ffŽ’hĘä10pt‘Ě͟Yœ„˙ffŽŽĄ’Ł[V„ffâHbŽŽŚ‘Míă\small‘1hŸYœ„˙ffŽ’ßÜřš9pt‘Ě͟Yœ„˙ffŽ’!cđ10pt‘Ě͟Yœ„˙ffŽ’hĘä11pt‘Ě͟Yœ„˙ffŽŽĄ’Ł[V„ffâHbŽŽŚ‘Míă\normalsize‘&gŸYœ„˙ffŽ’Ůüüš10pt‘Ě͟Yœ„˙ffŽ’!cđ11pt‘Ě͟Yœ„˙ffŽ’hĘä12pt‘Ě͟Yœ„˙ffŽŽĄ’Ł[V„ffâHbŽŽŚ‘Míă\large‘1hŸYœ„˙ffŽ’Ůüüš12pt‘Ě͟Yœ„˙ffŽ’!cđ12pt‘Ě͟Yœ„˙ffŽ’hĘä14pt‘Ě͟Yœ„˙ffŽŽĄ’Ł[V„ffâHbŽŽŚ‘Míă\Large‘1hŸYœ„˙ffŽ’Ůüüš14pt‘Ě͟Yœ„˙ffŽ’!cđ14pt‘Ě͟Yœ„˙ffŽ’hĘä17pt‘Ě͟Yœ„˙ffŽŽĄ’Ł[V„ffâHbŽŽŚ‘Míă\LARGE‘1hŸYœ„˙ffŽ’Ůüüš17pt‘Ě͟Yœ„˙ffŽ’!cđ17pt‘Ě͟Yœ„˙ffŽ’hĘä20pt‘Ě͟Yœ„˙ffŽŽĄ’Ł[V„ffâHbŽŽŚ‘Míă\huge‘735ŸYœ„˙ffŽ’Ůüüš20pt‘Ě͟Yœ„˙ffŽ’!cđ20pt‘Ě͟Yœ„˙ffŽ’hĘä25pt‘Ě͟Yœ„˙ffŽŽĄ’Ł[V„ffâHbŽŽŚ‘Míă\Huge‘735ŸYœ„˙ffŽ’Ůüüš25pt‘Ě͟Yœ„˙ffŽ’!cđ25pt‘Ě͟Yœ„˙ffŽ’hĘä25pt‘Ě͟Yœ„˙ffŽŽĄ’Ł[V„ffâHbŽŽŽŽŽŸ`N‘y.mT‘˙Vable–ę¨2.2:‘8ŕLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“size-cŹrhanging“commands.ŽŽŽŚ‘ŸôThe–EapSŽoinŹrt-size“option“referred›E`to“in“table“2.2“is“that˜spSŽeci ed“in“the“ă\documentstyleŽĄšcommand–ĆÇissued›ĆČat“the˜bSŽeginning“of˜the“input˜ le.‘Í>Through˜it“yŹrou˜select“that˜base“(orŽĄdefault)–č'fonšŹrt‘č(for“y˜our“doSŽcumen˜t‘č(to“bšSŽe“10,–Ű11,“or–č'12“p˜oinŹrt›č(Roman.‘âľIf“no“options˜are“spSŽeci ed,ŽĄthe–ęľdefault“is“10-pSŽoinšŹrt“Roman.‘ăThe“table“sho˜ws,‘ćfor“instance,‘ĺthat“if“I‘ętissue“a“ă\large“šin“thisŽĄdoSŽcumenšŹrt–´Ŕfor“whic˜h“I‘´˛c˜hose“the“ă12pt“šdoSŽcumen˜t“st˜yle“option‘´żthe“result“will“bSŽe“a“ť14-pdCoin›źtŽĄRoman‘ł/t›źypdCefaceš.ŽĄ‘ŸôW‘˙Ve–gűmenŹrtioned›güthat“to“restrict“the˜scopSŽe“of“a˜t•ŹrypSŽe-c“hanging–gűcommand“wŹre“will˜set“theŽĄtext–ę¨to“bšSŽe“a ected“o “in“a“group.‘8ŕLet's“lo˜ok“at“an“example“of“this.ŽŽŸ’ŕ|V17ŽŽŒ‹L; ° ý\ † ýć*ŤŸŔǍ‘..ĹWhen–?ýwe“want“to“{\em“emphasise\/}“some“text“weޤ ‘..use–?ýthe“{\tt“em}“command,“and“use“grouping“toŽĄ‘..restrict–?ýthe“scope.‘ úWe“can“change“font“{\large“sizes}ŽĄ‘..in–?ýmuch“the“same“way.‘ úWe“can“also“obtain“{\it“italicised},ŽĄ‘..{\bf–?ýemboldened},“{\sc“Capitals}“and“{\sf“sans“serif}“styles.ŽŽŸ"ńǍŸč‘?ł"˛When››Ăw•¸ăe‘›Âw“an“t˜to–›Âóý': cmti10Čemphasise‘\˛some˜text“w¸ăe˜use“the˜Ĺem˜˛command,‘Ŕŕand“use˜groupingޤ ‘..to–'Řrestrict›'×the“scopGe.‘bžW‘˙*Şe˜can“cš¸ăhange“fon˜t‘'םsizes“˛in“m˜uc˜h“the‘'×same“w˜a˜y–˙*Ş.‘bžW“e‘'×can‘'ŘalsoŽĄ‘..obtain–UUČitalicise‘˙}'d˛,“óň"V cmbx10żemŽ9bQÇoldened˛,“ó Œ-ř cmcsc10ËCapit‘˙UTals“˛and“óm#˝R cmss10Âsans“serif“˛st¸ăyles.ŽŽŸ€‘ŸôšNotice›ű•ho•Źrw‘ű”clev“er˜grouping‘ű”allo“ws˜us–ű”to˜do˜all“that˜without“once˜haŹrving“to˜use“ă\rm˜šorޤ€ă\normalsizeš.ŽĄ‘ŸôOne–more“thing›‘slippSŽed“inŹrto“that“example|and“italic˜correction“ă\/š.‘˜This˜is“a“vŹreryŽĄsmall–füamounšŹrt“of‘fýadditional“space“that“w˜e“ask˜ed“to‘fýbSŽe“inserted“to“allo˜w“for‘fýthe“c˜hange“fromŽĄsloping–îćemphasise‘˙ffd“štext“to“uprighšŹrt“text,‘.úbSŽecause“the“in˜terw˜ord“space“has“bSŽeen“made“toŽĄloSŽok–¸qless›¸rsubstanŹrtial“from“the“terminal˜sloping“cŹrharacter.‘(#One“has˜to“kšŹreep“an“ey˜e‘¸ropSŽen“forŽĄcircumstances–*where›*this“is˜necessary‘˙V.‘÷&See“the˜e ect“of“omitting˜an“italic˜correction“afterŽĄthe–ę¨emphasised“text“earlier“in“this“paragraph.ŽĄ‘ŸôOne–íHmighšŹrt“expSŽect,‘-đb˜y“no˜w,‘-đthat“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“w˜ould“insert“an“italic“correction“for“us.‘@ŔButŽĄthere–8öare›8őenough“oSŽccasions˜when“it˜is“not˜w•Źran“ted,‘L‰and˜there–8öis˜no“go•SŽo“d˜rule–8öfor˜LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“toŽĄuse–ĂŘto“decide“just›Ă×when“to“do“it“for“us.‘ÄoSo“the“italic“correction“is“alw•Źra“ys˜left–ĂŘup“to“theŽĄtŹrypist.ŽŠ"ĘŤž2.4.7Ž‘1űAccenŒĚtsŽŸ@šLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X›h[pro•Źrvides‘hZaccen“ts˜for˜just˜ab•SŽout‘hZall˜o“ccasions.‘ąřThey˜are˜accessed˜through‘hZa˜v‘˙XäarietŹryŽĄof›ڕcon•Źrtrol‘ڔsym“bSŽols˜and˜single-letter‘ڔcon“trol˜w“orlds‘ڔwhic“h˜accept˜a‘ڔsingle˜argumen“t|theŽĄletter–ę¨to“bSŽe“accenšŹrted.‘8ŕThese“con˜trol“sequences“are“detailed“in“table“2.3.ŽĄ‘ŸôTh•Źrus› w“e˜can˜proSŽduce˜‘ú o˜b“y˜t“yping˜ă\'{o}š,‘Ź‘ú a˜b“y˜t“yping˜ă\v{a}š,‘Ťand˜P–ú al˜Erd“os˜b•Źry˜t“ypingŽĄăP\'{a}l‘,ÍErd\"{o}sš.‘V†T‘˙VakŹre–Ÿ4spSŽecial›Ÿ5care“when˜accenŹrting“an˜Ři˜šor“a˜Řj‘ŹÓš,‘ĚWfor˜they“should˜loseŽĄtheir–÷ dots›÷ when“accenŹrted.‘^Use˜the“con•Źrtrol˜w“ords–÷ ă\i˜šand“ă\j“što˜proSŽduce“dotless˜vŹrersions“ofŽĄthese–ę¨letters.‘8ŕThšŹrus“the“bSŽest“w˜a˜y“to“t˜ypSŽe“to“t˜ypSŽe‘—‘ús’ex‘ţąČ‘űn<gen˜t“is“ă\u{e}x\u{\i}gentš.ŽŚž2.4.8Ž‘1űOvšŒĚer-ruling–ffsome“of“T‘ýL¨Ÿ32EŽ‘čdX's“c˜hoicesŽŸ@šW‘˙Ve'vŹre–o°seen›oŻthat“ties“can“bSŽe˜used“to“stop“linebreaks˜ošSŽccurring“b˜et•Źrw“een›o°w“ords.‘ăBut‘oŻho“w˜canŽĄwšŹre–stop“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“from“h˜yphenating“a“particular“w˜ord?‘ýMore“generally‘˙V,‘ľŸho˜w“can“w˜e“stop“itŽĄfrom–˙;splitting“anšŹry“giv˜en“group‘˙used.‘2íLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X›>will“proŹrvide“the˜section“n•Źrum“bSŽering˜(and›>n“um“bSŽering˜of‘>subsections˜withinŽĄsections,‘őčetc.)–ó¨so“there“is“no“need“to“include‘ó§anšŹry“n˜um˜bSŽer“in“the“argumen˜t.‘SŕLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“will“alsoŽĄtakšŹre–€űcare‘€üof“whatev˜er›€üspacing“is˜required“to˜set“the“new˜logical“unit˜o “from˜the“others,ŽĄpSŽerhaps–Ţthrough›ßa“little“extra˜space“and“using˜a“larger“fonŹrt.‘ˇƒIt“will˜also“start“a˜new“pageŽĄin–ę¨the“case“that“a“new“cŹrhapter“is“bSŽegun.ŽĄ‘ŸôThe–4óă\part“šcommand›4ôis“used“for“ma‘§jor˜subšSŽdivisions“of“substanŹrtial“do˜cumenŹrts.‘ ÂTheŽĄă\paragraph–Bššand›B™ă\subparagraph“šcommands˜are,‘X–unfortunately“confusing.‘@ľThey˜are“usedŽĄto–†section“o “a“mošSŽdest“n•Źrum“b˜er–†of‘‡paragraphs“of“text|they“don't“start“new“paragraphsŽĄ(rememšŹrbSŽer–_that“that‘`w˜as“done“b˜y“lea˜ving“a“blank‘`line“in“our“input“ le).‘The“names“w˜ereŽĄretained–ę¨for“historical“reasons.ŽĄ‘ŸôIt›ţűis‘ţúalw•Źra“ys˜a˜go•SŽo“d˜idea‘ţúto˜ćplan‘䍚the˜o•Źrv“erall–ţúsectional˜structure˜of˜a“doSŽcumenŹrt˜in˜adv‘˙Xäance,ŽĄor–Ÿtat›Ÿsleast“givŹre˜it“a“little˜thoughŹrt.‘ĎNot˜that“it“wŹrould˜bSŽe“dicult“to˜cšŹrhange“y˜our‘Ÿsmind“laterŽĄ(yŹrou–)could›*use“the“global“replace˜feature“of“an“editor,›#Šfor“instance),˜but“so“that‘*yšŹrou“ha˜v˜eŽĄa›ę¨go•SŽo“d˜idea˜of˜the˜structure˜that˜y•Źrou˜ha“v“e˜to˜describSŽe˜to˜LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X.ŽĄ‘ŸôThe–ę¨sectioning“command“that“bšSŽegan“the“presenŹrt“sectional“unit“of“this“do˜cumenšŹrt“w˜asŽŽŸ’ŕ|V21ŽŽŒ‹ƒ× ° ý\ † ýˇ˙ţŸđUV‘..ă\subsection{Sectioning‘,Ícommands}ŽŽ¤€šand–that›wŹras“all˜that“wŹras˜required“to˜get“the“n•Źrum“bSŽered˜section–name˜and“the˜table“ofŽĄcon•Źrten“ts‘ę¨en“try‘˙V.ŽĄ‘ŸôThere–?are›?oSŽccasions“when˜yšŹrou“w˜an˜t“a›?heading“to˜ha•Źrv“e–?all“the˜appSŽearance“of˜a“particularŽĄsectioning–.—command,‘?”but“shouldn't“bšSŽe‘.˜n•Źrum“b˜ered–.—as“a›.˜section“in˜its“ošŹrwn“righ˜t‘.˜or“proSŽduceŽĄa–Xtable“of‘Wcon•Źrten“ts›Xen“try‘˙V.‘ĹThis˜can˜bSŽe˜ac“hiev“ed‘Wthrough˜using˜the˜ć*-form‘sšof˜the˜command,ŽĄas›‚Ĺin–‚Äă\section*{...}š.‘6W‘˙Ve'll“see˜that“manŹry˜LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“commands˜ha•Źrv“e‘‚Äsuc“h˜a‘‚Ä*-form˜whic“hŽĄmošSŽdify–ę¨their“b˜ehašŹrviour“sligh˜tly‘˙V.ŽĄ‘ŸôNot–\ëonly“will“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X‘\ěn•Źrum“bSŽer›\ëy“our˜sectional˜units˜for˜y“ou,‘š|it˜will‘\ěcompile˜a˜table˜ofŽĄcon•Źrten“ts–ă^toSŽo.‘6rJust›ă_include“the“command“ă\tableofcontents˜šafter“the“ă\begin{document}ŽĄšcommand–ę¨and“after“the“topmatter“that“should“precede“it.ŽŠ"ĘŤž2.4.13Ž‘9™”LŸüű+‘ú+żAŽŽnšžT‘ýL¨Ÿ32EŽ‘čdX‘ffen•ŒĚvironmen“tsŽŸ@šPšŹrerhaps–Řthe“most“pSŽo˜w˜erful‘Řand“con˜v˜enien˜t“concept“in“the“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“syn˜tax‘Řis“that“of“anŽĄćenvir‘˙ffonmentš.‘%qW‘˙Ve–°\will“see‘°]most“of“the“\heašŹrvy"“t˜ypSŽesetting“problems“w˜e“will“encoun˜ter“canŽĄb•SŽe›ę¨b“est˜tac•Źrkled˜b“y˜one˜or˜other˜of˜the˜LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X˜en“vironmen“ts.ŽĄ‘ŸôSome›Ilen•Źrvironmen“ts˜are˜used˜to˜ćdisplay‘Vîša˜pSŽortion˜of‘Iktext,‘Ąi.e.˜to˜set˜it˜o ˜from˜theŽĄsurrounding–1Ťtext“b•Źry›1Źinden“ting–1Ťit.‘ ęThe“ăquote“šand“ăverse“šen•Źrvironmen“ts˜are–1Ťexamples“ofŽĄthese.‘ťThe‘o;ăcenter›o:šen•Źrvironmen“t˜allo“ws‘o;us˜to˜cen“tre–o;pSŽortions˜of˜text,‘‡ęwhile“the˜ăflushrightŽĄšen•Źrvironmen“t–ę¨sets“small“pSŽortions“of“text“ ush“against“the“righŹrt“margin.ŽĄ‘ŸôBut–0the“true‘0pšSŽo•Źrw“er–0of“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“b˜egins›0to“shoŹrw“itself“when˜wšŹre“loSŽok“at“en˜vironmen˜ts‘0suc˜h“asŽĄthose–żëthat“prošŹrvide“facilities“for“itemised“or“en˜umerated“lists,‘űŤcomplex“tabular“arrangemen˜ts,ŽĄand–ÍKfor“taking“care“of‘ÍJ gure“and“table“pSŽositioning“and“captioning.‘ŕČWhat“wŹre“learn“hereŽĄwill–ŹDalso‘ŹCbšSŽe“applicable“in“tŹryp˜esetting›ŹCsome“complicated“mathematical“arrangemenŹrts˜in“theŽĄnext‘ę¨cŹrhapter.ŽĄ‘ŸôAll–œpthe“en•Źrvironmen“ts–œpare“bSŽegun“bšŹry“a“ă\beginŰfćnameŰg“šcommand“and“ended“b˜y“an“ă\endŰfćnameŰgš,ŽĄwhere– —ćname‘ńHšis“the“en•Źrvironmen“t› ˜name.‘î…These– —commands“also˜servŹre“as“bSŽegin-group˜and“end-ŽĄgroupŸűĽ2Ö3ŽŽ‘NjšmarkŹrers,‘žso›†that–‡all“commands˜are“loSŽcal“to˜the“presen•Źrt˜en“vironmen“t|they‘‡cannotŽĄa ect–ę¨text“outside“the“en•Źrvironmen“t.ŽĄ‘ŸôW‘˙Ve–öXcan“also‘öYha•Źrv“e›öXen“vironmen“t˜em“bSŽedded˜within˜en“vironmen“t‘öYwithin˜en“vironmen“t˜andŽĄso–Ojon,‘h›limited“only‘OkbšŹry“memory“a˜v‘˙Xäailable“on‘Okthe“computer.‘g'W‘˙Ve“m˜ust,–h›ho˜w˜ev˜er,“bSŽe‘OjcarefulŽĄto›Źcc•Źrhec“k‘Źdthat˜eac“h˜of‘Źdthese˜ćneste‘˙ffd‘ę÷šen“vironmen“ts˜is˜indeed‘Źdcon“tained˜within˜the‘Źdone˜justŽĄoutside–ę¨of“it.ŽŚž2.4.14Ž‘9™”ó߆ľTff cmtt12Äem‘ffžen•ŒĚvironmen“tŽŸ@šW‘˙Ve–Đżstart›Đžwith“a˜vŹrery“simple˜en•Źrvironmen“t,‘ Done‘Đżwhic“h˜pro“vides‘Đżan˜alternativ“e–Đżto˜the“ă\emŽĄšcommand.‘ xŐRememŹrbšSŽer–UOthat‘UPă\em“šdo˜es“not“accept“an“argumenšŹrt;‘ Łit“applies“to“ev˜erythingŽŸ ˆ‡‰ff¸I"Ÿ ‘ ƒŸü^˙ą3ŽŽŽ‘˛See–UUsection“2.4.6ŽŽŸ’ŕ|Vš22ŽŽŒ‹Žń ° ý\ † ýŸšwithin–ٟ'EŽ‘ăxX“is“greatŽĄ‘KsAnd–UUso“will“y¸ăou!ŽŸ‘KsRoses–UUare“still“redŽĄ‘KsViolets–UUare“still“blueŽĄ‘KsI'm‘UUsc¸ăhizophrenicŽĄ‘KsAnd–UUso“am“I.ŽŽŠ%ĘŤž2.4.17Ž‘9™”Äcenter‘ffžen•ŒĚvironmen“tŽŸ@šThis›XXen•Źrvironmen“t‘XYallo“ws˜the˜cen“tring˜of‘XYconsecutiv“e˜lines˜of–XYtext,‘u›new˜lines“bSŽeing˜indicatedޤ€bšŹry–Ǝa‘ƍă\\š.‘ ̑If“y˜ou“don't›ƍseparate“lines“with˜the“ă\\“šcommand˜then“yŹrou'll“get˜a“cenŹrtredŽĄparagraph–Şwthe›Şvwidth“of˜the“page,‘ÚjwhicšŹrh“w˜on't“loSŽok‘Şvan˜y“di eren˜t›Şvto“normal.‘xLIf˜only“oneŽĄline–ę¨is“to“bSŽe“cenŹrtred,“then“no“ă\\“šis“necessary‘˙V.Ž Ş˙ ˙lǍ‘..ĹThe–?ý{\tt“center}“environment“takes“care“of“the“verticalޤ ‘..spacing–?ýbefore“and“after“it,“so“we“don't“need“to“leave“any.ŽĄ‘..\begin{center}ŽĄ‘..If–?ýwe“leave“no“blank“line“after“the\\ŽĄ‘..{\tt–?ýcenter}“environment\\ŽĄ‘..then–?ýthe“ensuing“text“will“not\\ŽĄ‘..be–?ýregarded“as“part“of“a“new\\ŽĄ‘..paragraph,–?ýand“so“will“not“be“indented.\\ŽĄ‘..\end{center}ŽĄĄ‘..In–?ýthis“case“we“left“a“blank“line“after“the“environment,ŽĄ‘..so–?ýthe“new“text“was“regarded“as“starting“a“new“paragraph.ŽŽĄšgivšŹres–ę¨the“follo˜wing“textŽ GŸŒ‘?ł"˛The›JĹcenter‘I˛en•¸ăvironmen“t˜tak“es–Icare˜of“the˜v¸ăertical“spacing˜bGefore˜and“after˜it,‘˛soޤ ‘..wš¸ăe–UUdon't“need“to“lea˜v˜e“an˜y‘˙*Ş.ŽŠ’œ˝/If–UUwš¸ăe“lea˜v˜e“no“blank“line“after“theŽĄ’šŮŽĹcenter‘UU˛en•¸ăvironmen“tŽĄ’Ľ2„then–UUthe“ensuing“text“will“notŽĄ’§„MbGe–UUregarded“as“part“of“a“newŽĄ’ëdparagraph,–UUand“so“will“not“bGe“inden¸ăted.ŽŚ‘?ł"In–Őśthis“case“wš¸ăe“left‘Őľa“blank“line“after“the“en˜vironmen˜t,‘5Íso“the“new“text“w˜asŽĄ‘..regarded–UUas“starting“a“new“paragraph.ŽŽŚž2.4.18Ž‘9™”Äflushright–ffžand“Äflushleft“žen•ŒĚvironmen“tsŽŸ@šThe–Ş(ăflushright“šen•Źrvironmen“t‘Ş'causes›Ş(eac“h˜line˜to–Ş'bSŽe˜set˜with˜its˜last“cŹrharacter˜against˜theŽĄrighŹrt–Śmargin,‘+Świthout›§trying“to˜stretcŹrh“the“line˜to“to˜currenŹrt“text“width.‘ÔÜThe“ăflushleftŽĄšen•Źrvironmen“t–ę¨is“similar.ŽŽŸ’ŕ|V25ŽŽŒ‹ł˙ ° ý\ † ţ8Ǎ ˙n*­‘..ĹWe–?ýcan“stop“\LaTeX\“from“justifying“each“line“to“both“theޤ ‘..left–?ýand“the“right“margins.ŽĄ‘..\begin{flushright}ŽĄ‘..The–?ý{\tt“flushright}“environment“is\\ŽĄ‘..used–?ýfor“text“with“an“even“right“margin\\ŽĄ‘..and–?ýa“ragged“left“margin.ŽĄ‘..\end{flushright}ŽĄ‘..\begin{flushleft}ŽĄ‘..and–?ýthe“{\tt“flushleft}“environment“is\\ŽĄ‘..used–?ýfor“text“with“an“even“left“margin\\ŽĄ‘..and–?ýa“ragged“right“margin.ŽĄ‘..\end{flushleft}ŽŽ¤€šgivšŹres–ę¨the“desired“displa˜yŽŸ{8⍟’9‘?ł"˛W‘˙*Şe–rrcan›rsstop“LŸýó5‘üffąAŽŽ‘͉˛T‘ţU>Ÿ'EŽ‘ăxX“from“justifying˜eac¸ăh“line“to“bGoth˜the“left“and“the˜righ¸ăt“margins.ŽŸ’ĆThe–UUĹflushright“˛en•¸ăvironmen“t‘UUisޤ ’ńucused–UUfor“text“with“an“evš¸ăen“righ˜t“marginŽĄ’/ĂĄand–UUa“ragged“left“margin.ŽŸ‘..and–UUthe“Ĺflushleft“˛en•¸ăvironmen“t‘UUisŽĄ‘..used–UUfor“text“with“an“ev¸ăen“left“marginŽĄ‘..and–UUa“ragged“righ¸ăt“margin.ŽŽŸ€‘ŸôšOne–l˜mšŹrust‘l—bSŽe“w˜ary›l—not“to“lapse˜inšŹrto“\w˜ord-prošSŽcessing"“mo˜de›l—when“using˜these“enŹrviron-ŽĄmen•Źrts.‘)°Remem“bSŽer›˝that–˝pressing“return“at˜the“end“of“a“line˜in“the“input“ le˜doSŽes“not“servŹreŽĄto–Šend›Šthe“currenŹrt˜line“there,‘hbut“just“to˜indicate“the˜end“of˜another“wšŹrord.‘°W‘˙Ve“ha˜v˜e‘Što“useŽĄthe–ę¨ă\\“šcommand“to“end“a“line.ŽŸ"ĘŤž2.4.19Ž‘9™”Äverbatim‘ffžen•ŒĚvironmen“tŽŸ@šW‘˙Ve–Dącan“sim•Źrulate›D˛t“ypSŽed–Dątext“using“the˜ăverbatim“šen•Źrvironmen“t.‘FűThe˜ă\tt›Dąš(t“ypSŽewriter˜text)ŽĄt•ŹrypSŽe›Z˝st“yle–Zžcan˜bSŽe˜used“for˜sim•Źrulating˜t“ypSŽed‘Zžw“ords,‘śĂbut˜runs˜in“to–Zžtrouble˜if˜one“of˜theŽĄcšŹrharacters–śin‘ľthe“sim˜ulated‘ľt˜ypSŽed“text›ľis“a˜spSŽecially“reservŹred˜LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“cŹrharacter.‘ń9F‘˙Vor“instance,ŽĄă{\tt–,Ítype“\newline}–˙îšwšŹrould‘˙ínot“ha˜v˜e“the›˙ídesired“e ect˜bSŽecause“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“w•Źrould˜in“terpret‘˙îtheŽĄă\newline–ꨚis“an“instruction“to“start“a“new“line.ŽĄ‘ŸôThe–—ăverbatim“šen•Źrvironmen“t›—allo“ws‘–the˜sim“ulation˜of˜m“ultiple˜t“ypSŽed˜lines.‘÷ŹćEverythingŽĄšwithin›Ĺthe‘Ĺen•Źrvironmen“t˜is˜t“ypSŽeset‘Ĺin˜t“ypSŽewriter‘Ĺfon“t˜exactly˜as–Ĺit˜appSŽears˜in“our˜sourceŽĄ le|obSŽeying–Çőspaces“and›Çöline“breaks“as“in“the˜source“ le“and“not˜recognising“the“existenceŽĄof–ę¨anšŹry“spSŽecial“sym˜bSŽols.ŽŽŸ’ŕ|V26ŽŽŒ‹źĆ ° ý\ † ý˙Ÿ¨€‘..Ĺ\begin¸fĹverbatim¸gޤ ‘..ĹIn–?ýthe“verbatim“environment“we“can“type“anythingŽĄ‘..we‘?ýlike.ŽĄ‘..So–?ýwe“don't“need“to“look“out“for“uses“of“%,“$,“&“etc,ŽĄ‘..nor–?ýwill“control“sequences“like“\newline“have“anyŽĄ‘..effect.ŽĄ‘..\end¸fĹverbatim¸gŽŽ¤€šwill–ę¨proSŽduce“the“simŹrulated“input“textŽŸSqƍŸĂ‘..ĹIn–?ýthe“verbatim“environment“we“can“type“anythingޤ ‘..we‘?ýlike.ŽĄ‘..So–?ýwe“don't‘ úneed“to“look“out“for“uses“of“%,“$,“&“etc,ŽĄ‘..nor–?ýwill“control“sequences“like“\newline“have“anyŽĄ‘..effect.ŽŽĄ‘ŸôšThe–Konly›Kthing“that˜cannot“b•SŽe˜tŹryp“ed–Kin˜the“ăverbatim˜šen•Źrvironmen“t–Kis˜the“sequenceŽĄă\end{verbatim}š.‘1Y‘˙Vou–ššmighŹrt›š›notice“that“I‘š‡still“managed“to˜simŹrulate“that˜conŹrtrol“sequenceŽĄabSŽo•Źrv“e.‘8ŕOne–ę¨can“alw•Źra“ys–ę¨get“what“yšŹrou“w˜an˜t“in“T‘ţ ‘Ÿ•UEŽ‘‘!X,“pSŽerhaps“with“a“little“creativit˜y‘˙V.ŽĄ‘ŸôIf›ą‰w•Źre‘ąŠw“an“t˜only‘ąŠto˜sim“ulate˜a‘ąŠfew˜t“ypSŽed›ąŠw“ords,‘ăAsuc“h˜as‘ą‰when˜I‘ąVsa“y–ą‰to˜use“ă\newlineŽĄšto–eOstart›eNa“new˜line,‘ƒůthen˜the“ă\verb˜šcommand“is˜used.‘¨ÔThis“command˜has“a˜slighŹrtly“oSŽddŽĄsynšŹrtax,‘*ôpressed‘űupSŽon–űit“b˜y“the‘űuse“for“whic˜h‘űit“w˜as“in˜tended.‘éIt“cannot“accept‘űan“argumen˜t,ŽĄbSŽecause›`,w•Źre‘`-ma“y˜w“an“t˜to‘`-sim“ulate˜t“ypSŽed–`-text˜that˜is“enclosed˜bŹry˜ă{braces}š.‘ ˇWhat“one˜doSŽesŽĄis–,to‘+cšŹrhoSŽose“an˜y“c˜haracter›+that“is“ćnot‘7pšin˜the“text“to˜bSŽe“simŹrulated,‘Mand˜use“a“pair˜of“theseŽĄcšŹrharacters–á as“\argumen˜t“delimiters".‘5ŤI‘áusually“use“the“ă@“šor“ă"“šc˜harac˜h˜ters,‘âöas“I‘árarely“ha˜v˜eŽĄanšŹry–ę¨other“uses“for“them.‘8ŕTh˜usޤ€‘..˛use–UUĹ%“˛to“obtain“a“%“signŽŽĄšis–ę¨tŹrypSŽed“asŽŸ&˙ŸđǍ‘..Ĺuse–?ý\verb"\%"“to“obtain“a“\%“signŽŽŸ"ĘŤž2.4.20Ž‘9™”Äitemizež,–ffÄenumeratež,“Ädescription“žen•ŒĚvironmen“tsŽŸ@šLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X–€^prošŹrvides“three“prede ned‘€_list-making“en˜vironmen˜t,‘ĽËand‘€_a“\primitiv˜e"“list“en˜viron-ޤ€menŹrt–ě:for›ě9designing“new“list˜en•Źrvironmen“ts–ě:of“y•Źrour˜o“wn.‘äW‘˙Ve˜shall–ě:just“describSŽe˜the“prede nedŽĄones‘ę¨here.ŽĄ‘ŸôThere–Ұis“delighŹrtfully›Ňąlittle“to“learn“in“order“to˜bSŽe“able“to“create“lists.‘đůThe“only“newŽĄcommand›“Íis–“Ěă\item“šwhicŹrh˜indicates˜the“bSŽeginning˜of“a˜new“list“item˜(and˜the“end˜of“theŽĄlast–çone“if“this“is›çnot“the“ rst“item).‘7ŻThis“command˜accepts“an“optional“argumenšŹrt“(whic˜hŽĄmeans–‡hyŹrou'd›‡ienclose“it˜in“square˜brac•Źrk“ets)–‡hthat˜can“bSŽe“used˜to“proŹrvide˜an“item˜labSŽel.‘ËIf“noŽĄoptional–ńˇargumenšŹrt‘ńśis“giv˜en,‘ózthen“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X‘ńświll“pro˜vide›ńśthe“item“labSŽel˜for“yŹrou;‘ő>in˜an“ăitemizeŽĄšlist–É_it“will›É`bullet“the“items,‘ in˜an“ăenumerate“šlist“it“will˜n•Źrum“bSŽer–É_the“items,‘ and˜in“a“listŽĄof–ևădescriptionšs›ֈthe“default“is“to˜ha•Źrv“e–ևno“labSŽel“(whic•Źrh˜w“ould–ևloSŽok“a“bit˜oSŽdd,‘so“yŹrou'reŽŽŸ’ŕ|V27ŽŽŒ‹Ćv ° ý\ † ýŸšexpSŽected–ę¨to“use“the“optional“argumenŹrt“there).ޤ€‘ŸôRememŹrbšSŽer–żothat“ă\item“šis“used“to“separate“list“items;‘ÍŘit“do˜es“not“accept“the“list“item“asŽĄan‘ę¨argumenŹrt.Ž Ín ˙J*­‘..Ĺ\begin{itemize}ޤ ‘..\item–?ýan“item“is“begun“with“\verb@\item@ŽĄ‘..\item–?ýif“we“don't“specify“labels,“thenŽĄ‘3S+\LaTeX\–?ýwill“bullet“the“items“for“usŽĄ‘..\item–?ýI“indent“lines“after“the“first“in“theŽĄ‘3S+input–?ýfile,“but“that“is“just“to“keep“thingsŽĄ‘3S+readable.‘ úAs–?ýalways,“\LaTeX\“ignores“additionalŽĄ‘3S+spaces.ŽĄĄ‘..\item–?ýa“blank“line“between“items“is“ignored,“forŽĄ‘3S+\LaTeX\–?ýis“responsible“for“spacing“items.ŽĄ‘..\item–?ý\LaTeX\“is“in“paragraph-setting“mode“whenŽĄ‘3S+it–?ýreads“the“text“of“an“item,“and“so“willŽĄ‘3S+perform–?ýall“the“usual“functionsŽĄ‘..\end{itemize}ŽŽĄšproSŽduces–ę¨the“folloŹrwing“itemised“list:ŽŸGŸ—‘@“¸ŽŽŽ‘Ks˛an–UUitem“is“bGegun“with“Ĺ\itemޤ‘@“¸ŽŽŽ‘Ks˛if–UUw¸ăe“don't“spšGecify“lab˜els,“then“LŸýó5‘üffąAŽŽ‘͉˛T‘ţU>Ÿ'EŽ‘ăxX“will“bullet“the“items“for“usŽĄ‘@“¸ŽŽŽ‘Ks˛I‘ĘÔinden¸ăt–Ęólines›Ęňafter“the˜ rst“in˜the“input˜ le,‘čZbut˜that“is˜just“to˜k¸ăeep“things˜readable.‘Ň As˜alw•¸ăa“ys,ŽŠ ‘KsLŸýó5‘üffąAŽŽ‘͉˛T‘ţU>Ÿ'EŽ‘ăxX–UUignores“additional“spaces.ŽĄ‘@“¸ŽŽŽ‘Ks˛a–UUblank“line“bšGet•¸ăw“een–UUitems“is“ignored,“for“LŸýó5‘üffąAŽŽ‘͉˛T‘ţU>Ÿ'EŽ‘ăxX“is“resp˜onsible“for“spacing“items.ŽĄ‘@“¸ŽŽŽ‘Ks˛LŸýó5‘üffąAŽŽ‘͉˛T‘ţU>Ÿ'EŽ‘ăxX–ŁŢis›Łßin“paragraph-setting˜moGde“when˜it“reads“the˜text“of˜an“item,‘ˇand“so˜will“pGerform˜all“theŽŚ‘Ksusual‘UUfunctionsŽŽŸ€‘ŸôšLists–Ÿcan“also‘ bšSŽe“emŹrb˜edded“within“one› another,‘]Ýfor“they“are˜just“en•Źrvironmen“ts‘ŸandŽĄwšŹre–/said“that“en˜vironmen˜ts“ha˜v˜e“this“prop•SŽert˜y‘˙V.‘ýRemem˜b“er–/that“w˜e“m˜ust“nest“them“in“theŽĄcorrect–ľ=order.‘˜ŸW‘˙Ve“demonstrate“with“the“follošŹrwing“list,‘çăwhic˜h“also“sho˜ws“ho˜w“to“use“theŽĄăenumerate‘ꨚen•Źrvironmen“t.ŽŽŸ’ŕ|V28ŽŽŒ‹ҋ ° ý\ † ţtǍ ˙2*­‘..Ĺ\noindent–?ýI“still“have“to“do“the“following“things:ޤ ‘..\begin{enumerate}ŽĄ‘..\item–?ýSort“out“LAN“accounts“for“people“on“the“courseŽĄ‘8“(\begin{itemize}ŽĄ‘8“(\item–?ýHave“new“accounts“created“for“those“not“alreadyŽĄ‘C"registered–?ýon“the“LANŽĄ‘8“(\item–?ýMake“sure“all“users“have“a“personal“directoryŽĄ‘=Ó%on–?ýthe“data“driveŽĄ‘8“(\item–?ýGive“read“and“scan“rights“to“users“in“the“\TeX\ŽĄ‘C"directoriesŽĄ‘8“(\item–?ýAdd“users“to“the“appropriate“LAN“print“queuesŽĄ‘8“(\end{itemize}ŽĄ‘..\item–?ýHave“a“\TeX\“batch“file“added“to“a“directory“thatŽĄ‘3S+is–?ýon“a“public“search“pathŽĄ‘..\item–?ýFinish“typing“these“course“notes“and“proof-read“themŽĄ‘..\item–?ýPhotocopy“and“bind“the“finished“notesŽĄ‘..\end{enumerate}ŽŽ¤€šwill–ę¨givšŹre“the“follo˜wing“listŽ ĽG ˙g9‘?ł"˛I–UUstill“ha•¸ăv“e–UUto“do“the“follo¸ăwing“things:ŽŸ‘=Ě1.ŽŽŽ‘KsSort–UUout“LAN“accoun¸ăts“for“pGeople“on“the“courseŽŠ‘Zl˘¸ŽŽŽ‘eLŸ˛Ha•¸ăv“e–UUnew“accoun¸ăts“created“for“those“not“already“registered“on“the“LANޤ‘Zl˘¸ŽŽŽ‘eLŸ˛Makš¸ăe–UUsure“all“users“ha˜v˜e“a“pGersonal“directory“on“the“data“driv˜eŽĄ‘Zl˘¸ŽŽŽ‘eLŸ˛Givš¸ăe–UUread“and“scan“righ˜ts“to“users“in“the“T‘ţU>Ÿ'EŽ‘ăxX“directoriesŽĄ‘Zl˘¸ŽŽŽ‘eLŸ˛Add–UUusers“to“the“appropriate“LAN“prin¸ăt“queuesŽŚ‘=Ě2.ŽŽŽ‘KsHa•¸ăv“e–UUa“T‘ţU>Ÿ'EŽ‘ăxX“batcš¸ăh“ le“added“to“a“directory“that“is“on“a“public“searc˜h“pathޤ‘=Ě3.ŽŽŽ‘KsFinish–UUt¸ăyping“these“course“notes“and“proGof-read“themŽĄ‘=Ě4.ŽŽŽ‘KsPhotoGcop¸ăy–UUand“bind“the“ nished“notesŽŽŸŽ:‘ŸôšSee›Ýťho•Źrw‘ÝźI‘Ý}la“y˜the–Ýźsource˜ le“out˜in“a˜readable˜fashion.‘This˜is“to˜assist“mŹryself,‘€notŽĄLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X.ŽĄ‘ŸôThe–ę¨ădescription“šen•Źrvironmen“t–ę¨is,“unsurprisingly‘˙V,“for“making“lists“of“descriptions.ŽŸVŐUŸŔǍ‘..Ĺ\begin{description}ޤ ‘..\item[\tt–?ýitemize]“an“environment“for“setting“itemised“lists.ŽĄ‘..\item[\tt–?ýenumerate]“an“environment“for“setting“numbered“lists.ŽĄ‘..\item[\tt–?ýdescription]“an“environment“for“listing“descriptions.ŽĄ‘..\end{description}ŽŽĄšwill–ę¨tšŹrypSŽeset“the“follo˜wing“descriptions:ŽŸDŽ:ŸĐǍ‘..ĹitemizeŽŽ‘Xł˛an›UUen•¸ăvironmen“t˜for˜setting˜itemised˜lists.ޤ‘..ĹenumerateŽŽ‘c3˛an›UUen•¸ăvironmen“t˜for˜setting˜n“um“bGered˜lists.ŽĄ‘..ĹdescriptionŽŽ‘mł ˛an›UUen•¸ăvironmen“t˜for˜listing˜descriptions.ŽŽŽŸ’ŕ|Vš29ŽŽŒ‹Úˇ ° ý\ † ýŸ‘ŸôšNote–šČthat“the“scopšSŽe“of“the“ă\tt“šcommands‘šÇused“in“the“item“lab˜els“wŹras“restricted“to“theޤ€labSŽels.ŽŸ"R͍ž2.4.21Ž‘9™”Ätabbing‘ffžen•ŒĚvironmen“tŽŸ@šThis›uŤen•Źrvironmen“t˜sim“ulates˜tabbing˜on˜t“ypSŽewriters.‘ ŮčThere˜one˜c“hose˜the˜tab˜stops˜inŽĄadv‘˙Xäance–WÔ(analysing›WÓthe“material“to˜bšSŽe“tŹryp˜ed“for›WÓthe“longest˜item“in“eacŹrh˜column)“andŽĄt•ŹrypSŽed›‹een“tries˜consecutiv“ely‘˙V,‘žrhitting˜the˜tab˜k“ey‘‹dto˜mo“v“e˜to˜the˜next˜tab‘‹dstop˜and˜return˜toŽĄmo•Źrv“e–ę¨to“the“next“line.ŽĄ‘ŸôIn–Bthe“ătabbing“šen•Źrvironmen“t,‘—űw“e–BprošSŽceed“similarly–˙V.‘ ?BW“e‘Blo˜ok–Bfor“the“wŹrorst-case“lineŽĄ(that–ŽűwhicŹrh›Žúwill“determine“the˜desired“tab“stops)˜and“use˜it“to“set˜the“tabs“bŹry˜inserting“ă\=ŽĄšcon•Źrtrol›pWsym“bSŽols–pVat˜the“pSŽoin•Źrts˜where˜w“e‘pVw“an“t˜tab–pVstops.‘ÉěW‘˙Ve˜then“discard˜that“line˜usingŽĄă\killš,‘“ŕsince›~/the–~.wŹrorst-case“line˜mighŹrt“not“bSŽe˜the“ rst“line˜in“the˜material“wšŹre“ha˜v˜e‘~/to“t˜ypSŽe.ŽĄW‘˙Ve–ę¨then“tšŹrypSŽe“eac˜h“line,“using“ă\>“što“mo˜v˜e“to“the“next“tab“stop“and“ă\\“što“end“a“line.ŽŸn˙Ÿ¨Ç‘..Ĺ\begin{tabbing}ޤ ‘..Cheddar–?ýcheese“\=“Recommended“\=“\$2.00“\killŽĄ‘..Green–?ýHam“\>“Recommended“\>“\$2.00ŽĄ‘..Eggs–?ý\>“1“a“week“\>“\$1.50ŽĄ‘..Cheddar–?ýcheese“\>“Hmmm“\>“\$0.80ŽĄ‘..Yak–?ýcheese“\>“Avoid“\>“\$0.05ŽĄ‘..\end{tabbing}ŽŽĄšgivšŹres–ę¨the“follo˜wing“uniformly-tabbSŽed“tableŽŸOáIŸËfd‘..˛Green–UUHam‘ŠŞRecommended“$2.00ŽŽ¤ ‘..Eggs‘2*Ź1–UUa“w¸ăeek‘!$1.50ŽŽĄ‘..Cheddar–UUc¸ăheese“Hmmm‘"N:$0.80ŽŽĄ‘..Y‘˙*Şak‘UUc•¸ăheese‘ِAv“oid‘(řć$0.05ŽŽŽŸ ö‘ŸôšIn–¸“šcommands“up“in“the“source“just“to“kŹreep“things“readable.ŽĄ‘ŸôRememŹrbSŽer–}ěthat›}íexcess“spaces“are˜ignored.‘ň­LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“sets˜the“ă\killšed“line˜normally“andŽĄsees–\Bwhere“the“tab“stops‘\Arequested“will“bšSŽe“needed“in“the“tŹryp˜eset“text.‘ ­Note“also“thatŽĄcommands–ę¨givšŹren“within“the“ătabbing“šen˜vironmen˜t“are“loSŽcal“to“ćthe–35curr‘˙ffent“itemš.ŽĄ‘ŸôActually‘˙V,‘ě–wšŹre‘…Îuse–…Íthe“abSŽo˜v˜e“approac˜h“in“the“case“that‘…Îw˜e“require“uniformly“tabbSŽedŽĄcolumns.‘ŹThe–Š format“line“is“not“compulsory›˙V,‘`and“wŹre“can“de ne“tab“stops“dynamically˜.‘ŹSeeŽĄif–ę¨yšŹrou“can“mak˜e“sense“of“the“follo˜wing.ŽŸb˙Ÿ´Ç‘..Ĺ\begin{tabbing}ޤ ‘..Entry–?ýin“position“1,1“\=“Entry“1,2“\=“Entry“1,3\\ŽĄ‘..Entry–?ýin“position“2,1“\>“Entry“2,2“\>“Entry“2,3\\ŽĄ‘..Entry–?ý3,1“\=“Entry“3,2“\>“Entry“3,3\\ŽĄ‘..Entry–?ý4,1“\>“Entry“4,2“\>“Entry“4,3ŽĄ‘..\end{tabbing}ŽŽŽŸ’ŕ|Vš30ŽŽŒ‹䈠° ý\ † ýŸšwhicŹrh‘ę¨proSŽducesŽŸPUTŸËfd‘..˛Enš¸ătry–UUin“pGosition“1,1“En˜try“1,2“En˜try“1,3ŽŽ¤ ‘..Enš¸ătry–UUin“pGosition“2,1“En˜try“2,2“En˜try“2,3ŽŽĄ‘..Enš¸ătry–UU3,1“En˜try“3,2‘5yEn˜try“3,3ŽŽĄ‘..Enš¸ătry–UU4,1“En˜try“4,2‘5yEn˜try“4,3ŽŽŽŸ€‘ŸôšThe–jéare›jęadditional“commands“that“can˜bSŽe“used“within“the˜tabbing“en•Źrvironmen“t‘jétoޤ€ac•Źrhiev“e–ę¨spSŽecial“e ects,“but“wšŹre“w˜on't“bSŽe“discussing“them“here.ŽŸ"ĘŤž2.4.22Ž‘9™”Ätabular‘ffžen•ŒĚvironmen“tŽŸ@šThe–´ătabular“šen•Źrvironmen“t–´is“used“to“proSŽduce‘ľtables“of“items,‘ˇparticularly“when“the“tableŽĄis–óqpredominanŹrtly›óprectangular“and˜when“line˜draŹrwing“is˜required.‘S:LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X˜will“makŹre˜mostŽĄdecisions›mÉfor–mČus;‘—ifor“instance˜it“will˜align“evŹrerything˜for˜us“without˜haŹrving“to˜bSŽe“told˜whicŹrhŽĄare–ę¨the“longest“enšŹrtries“in“eac˜h“column.ŽĄ‘ŸôThis›Ľen•Źrvironmen“t–Ľis˜the˜ rst˜of“manŹry˜that˜use˜the“T‘ţ ‘Ÿ•UEŽ‘‘!X˜\tabbing˜cŹrharacter"˜ă&š.‘gřThisŽĄcšŹrharacter–ŽÍis“used‘ŽÎto“separate“consecutiv˜e“en˜tries‘ŽÎin“a“ro˜w“of“a‘ŽÎtable,‘şĹarra˜y‘˙V,‘şĆetc.‘$íThe“end“ofŽĄa–Ľ6roŹrw›Ľ7is“indicated“in˜the“usual˜manner,‘łbŹry“using“ă\\š.‘!şIn˜this“w•Źra“y˜the–Ľ6individual“cells˜of“theŽĄtable,–e˝or›D‚arraŹry‘˙V,“are˜clearly˜describSŽed‘Dƒto˜LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X,“and˜it˜can˜analyse˜them‘Dƒto˜mak•Źre˜t“ypSŽesettingŽĄdecisions.‘8ŕCommands–ę¨issued“within“a“cell“so“de ned“are,“again,“loSŽcal“to“that“cell.ŽĄ‘ŸôThe–ÚĎătabular“šen•Źrvironmen“t›ÚÎis–ÚĎalso“our“ rst˜example“of“an“ćenvir–˙ffonment‘$Łwith‘$¤ar“gumentsš.ŽĄThe–Ď%argumenšŹrts“are“giv˜en,›Din‘Ď$braces“as“usual,˜just“after“the“closing‘Ď$brace“after“the“enŹrvi-ŽĄronmenŹrts–@name.‘9;In“the“case“of“ătabular›@šthere“is“a“single“mandatory˜argumenŹrt“giving“theŽĄjusti cation–pzof‘p{the“enšŹrtries“in“eac˜h–p{column:‘D„ăl“šfor–pzleft“justi ed,‘‘ďăr“šfor‘p{righ˜t“justi ed,‘‘ďand“ăcŽĄšfor–ÜcenšŹrtred.‘4There“m˜ust“bSŽe‘Üan“en˜try“for“eac˜h›Ücolumn“of“the“table,‘ßand“there“is˜no“default.ŽĄLet's–ę¨start“with“a“simple“table.ŽŸanŸś*­‘..Ĺ\begin{tabular}{llrrl}ޤ ‘..\bf–?ýStudent“name“&“\bf“Number“&“\bf“Test“1“&“\bf“Test“2“&“\bf“Comment\\ŽĄ‘..F.–?ýBasset‘˙ô&“865432“&“78›?ń&“85˜&“Pleasing\\ŽĄ‘..H.–?ýHosepipe‘ ú&“829134“&“5‘î&“10‘?ń&“Improving\\ŽĄ‘..I.N.–?ýMiddle‘ ú&“853931“&“48›?ń&“47˜&“Can“make“itŽĄ‘..\end{tabular}ŽŽĄšwill–ę¨proSŽduce“the“folloŹrwing“no-frills“tableŽŸ ŐTŸíćd‘Eł#żStudenŽ9t‘ŐTnameŽ’—ŃDNumŽ9bQÇerŽ’Í/qT‘˙ Ťest‘ŐT1Ž’řŢT‘˙ Ťest‘ŐT2Ž’"ţKCommenŽ9tŽŽ¤ ‘Eł#˛F.‘UUBassetŽ’—ŃD865432Ž’âŰ78Ž’ ţH85Ž’"ţKPleasingŽŽĄ‘Eł#H.‘UUHosepipGeŽ’—ŃD829134Ž’çÜ5Ž’ ţH10Ž’"ţKImpro¸ăvingŽŽĄ‘Eł#I.N.‘UUMiddleŽ’—ŃD853931Ž’âŰ48Ž’ ţH47Ž’"ţKCan–UUmak¸ăe“itŽŽŽŽŽŽŸ!ŐT‘ŸôšNote–&‡that“a“ă\\“šwšŹras“not“necessary“at“the“end“of“the“last“ro˜w.‘ě}Also“note“that,‘uonceŽĄagain,‘x‘the–\0alignmenŹrt›\/of“the˜ă&“šc•Źrharacters˜w“as˜for‘\0h“uman˜readabilit“y‘˙V.‘wIt˜is‘\0con“v“en“tional˜toŽĄset–ůLcolumns›ůKof“n•Źrum“bSŽers˜with›ůLrigh“t˜justi cation.‘dĘThe˜ă\bf˜šdirectiv“es–ůKapply˜only“the˜enŹrtriesŽĄin–ę¨whicšŹrh“they“are“giv˜en.ŽŽŸ’ŕ|V31ŽŽŒ‹ ° ý\ † ýŸ‘ŸôšA‘_Éă|–_čštŹrypSŽed›_çin“the˜ătabular˜šen•Źrvironmen“t's‘_čargumen“t˜causes‘_ča˜v“ertical–_čline˜to“bSŽe˜draŹrwnޤ€at–cćthe›cĺindicated“pSŽosition˜and“extending˜for“the˜heighŹrt“of˜the“enŹrtire˜table.‘ őAn˜ă\hline“šgivŹrenŽĄin›dĺthe‘dćen•Źrvironmen“t˜dra“ws‘dća˜horizon“tal–dćline˜extending˜the“width˜of“the˜table“to˜bSŽe“draŹrwn˜atŽĄthe–ŘvšŹrertical‘×pSŽosition“at“whic˜h“the‘×command“is“giv˜en.‘đA‘˝ă\clineŰfŘiš-Řj‘ŹÓŰg“šdra˜ws“a‘×line“spanningŽĄcolumns–NDŘi“što“Řj‘ŹÓš,‘g,at“the“všŹrertical“pSŽosition“at“whic˜h“the‘NEcommand“is“giv˜en.‘c´A‘N+repSŽeated“line-ŽĄdrašŹrwing–)command“causes“a“double‘)line“to“bSŽe“dra˜wn.‘ř\W‘˙Ve“illustrate‘)line“dra˜wing“in“tables“b˜yŽĄputting–ásome›ŕlines“inŹrto˜our“ rst˜table.‘óW‘˙Ve˜will“tŹrypSŽe˜this“example˜in“a˜somewhat“expandedŽĄform,–ę¨trying“to“makšŹre“it“clear“wh˜y“the“lines“appSŽear“where“they“do.Ž n ˙z*­‘..Ĺ\begin{tabular}{|l|l|r|r|l|}ޤ ‘..\hlineŽĄ‘..\bf–?ýStudent“name“&“\bf“Number“&“\bf“Test“1“&“\bf“Test“2“&“\bf“Comment\\ŽĄ‘..\hlineŽĄ‘..F.–?ýBasset‘)˙č&“865432‘?ń&“78›/?ĺ&“85˜&“Pleasing\\ŽĄ‘..\hlineŽĄ‘..H.–?ýHosepipe‘î&“829134‘?ń&“5‘4â&“10‘/?ĺ&“Improving\\ŽĄ‘..\hlineŽĄ‘..I.N.–?ýMiddle‘î&“853931‘?ń&“48›/?ĺ&“47˜&“Can“make“it\\ŽĄ‘..\hlineŽĄ‘..\end{tabular}ŽŽĄšwhicšŹrh–ę¨will“giv˜eŽŸ!ŐS‘?ł"Ÿäćg‰ff.ž¤fdĚͤ™œ„ ff‘ĚΟüfdżStudenŽ9t‘ŐTname‘ĚÍĄ„ ffŽ‘X"NumŽ9bQÇer‘Ě͟™œ„ ffŽ’|OT‘˙ Ťest‘ŐT1‘Ě͟™œ„ ffŽ’¸cźT‘˙ Ťest‘ŐT2‘Ě͟™œ„ ffŽ’ăK)CommenŽ9t‘ §Ÿ™œ„ ffŽŽŠ‰ff.žĄĚͤ™œ„ ff‘ĚΟüfd˛F.‘UUBasset‘"ů!Ą„ ffŽ‘X"865432‘*󟙜„ ffŽ’˘cš78‘Ě͟™œ„ ffŽ’ÍK&85‘Ě͟™œ„ ffŽ’ăK)Pleasing‘b$Ÿ™œ„ ffŽŽŚ‰ff.žĄĚͤ™œ„ ff‘ĚΟüfdH.‘UUHosepipGe‘ÎuĄ„ ffŽ‘X"829134‘*󟙜„ ffŽ’§cş5‘Ě͟™œ„ ffŽ’ÍK&10‘Ě͟™œ„ ffŽ’ăK)Impro¸ăving‘đZŸ™œ„ ffŽŽŚ‰ff.žĄĚͤ™œ„ ff‘ĚΟüfdI.N.‘UUMiddle‘ŁĘĄ„ ffŽ‘X"853931‘*󟙜„ ffŽ’˘cš48‘Ě͟™œ„ ffŽ’ÍK&47‘Ě͟™œ„ ffŽ’ăK)Can–UUmak¸ăe“it‘Ě͟™œ„ ffŽŽŚ‰ff.žŽŽŽŽŸ#˙‘ŸôšThat›Ťw•Źra“y‘Ťof˜la“ying˜out‘Ťthe˜source˜ le˜mak“es–Ťit˜clear˜where“the˜lines˜will“go.‘#ŠAs“w•Źre˜(b“yŽĄno•Źrw)›ŔIw“ell˜kno“w,‘ő˛the˜returns˜that˜w“e˜pressed‘ŔJafter˜the˜ă\\šs˜in˜t“yping˜this‘ŔJtable˜migh“t˜asŽĄw•Źrell›ŁKha“v“e–ŁJbSŽeen˜spaces˜as“far˜as˜LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“is˜concerned.‘!ThŹrus˜it˜is“common˜to˜ha•Źrv“e‘ŁJthe˜ă\hlineŽĄšcommands–ę¨folloŹrwing“the“ă\\šs“on“the“input“lines.‘8ŕW‘˙Ve“will“do“this“in“future“examples.ŽĄ‘ŸôThe–(să\multicolumn“šcolumn›(tcan“bSŽe“used“to˜o•Źrv“errule–(sthe“o•Źrv“erall–(sformat“of˜the“table“forŽĄa–ę¨few“columns.‘8ŕThe“synŹrtax“of“this“command“isޤ€‘6 ă\multicolumn‘,ÍŰfćn–ĺ°Űgfćp‘˙ffos‘ýÝŰgfćitem“ŰgŽĄšwhere–yŘn›zšis“the“n•Źrum“bSŽer˜of–ycolumns“of˜the“original“format˜that“ćitem‘é)šis˜to“span,‘IŽand“ćp‘˙ffosޤ€šspSŽeci es–ę¨the“justi cation“of“the“new“argumenŹrt.ŽŸmnŸŞ*­‘..Ĺ\begin{tabular}{||l|c|c|c||}‘?ý\hlineޤ ‘..\multicolumn{4}{|c|}{\LaTeX\–?ýsize“changing“commands}\\“\hlineŽĄ‘..Style–?ýoption‘/?ĺ&“10pt“(default)“&“\tt“11pt“&“\tt“12pt\\“\hlineŽĄ‘..\tt\bs–?ýfootnotesize‘ ú&“8pt‘>˙Ü&“9pt‘î&“10pt\\“\hlineŽĄ‘..\tt\bs–?ýsmall‘/?ĺ&“9pt‘>˙Ü&“10pt‘?ń&“11pt\\“\hlineŽĄ‘..\tt\bs–?ýlarge‘/?ĺ&“12pt‘9żß&“12pt‘?ń&“14pt\\“\hlineŽĄ‘..\end{tabular}ŽŽĄšproSŽduces–ę¨the“folloŹrwing“table:ŽŽŸ’ŕ|V32ŽŽŒ‹!ü– ° ý\ † ý´ł2‘vŃÁŸŢł4‰ffß"¤fdĚͤ™œ„ ff›+PŸüfd˛LŸýó5‘üffąAŽŽ‘͉˛T‘ţU>Ÿ'EŽ‘ăxX–UUsize“c¸ăhanging“commands˜Ą„ ffŽŽŠ‰ffß"ĄĚͤ™œ„ ff‘™š„ ff‘ĚΟüfdSt¸ăyle‘UUoption‘EĄ„ ffŽ‘X?Ú10pt‘UU(default)‘Ě͟™œ„ ffŽ’Ą:Ĺ11pt‘Ě͟™œ„ ffŽ’Â.12pt‘Ě͟™œ„ ff‘™š„ ffŽŽŚ‰ffß"ĄĚͤ™œ„ ff‘™š„ ff‘ĚΟüfd\footnotesize‘ĚÍĄ„ ffŽ‘oqĽ˛8pt‘ţ˜Ÿ™œ„ ffŽ’¤\O9pt‘ ⟙œ„ ffŽ’ÂÜC10pt‘“៙œ„ ff‘™š„ ffŽŽŚ‰ffß"ĄĚͤ™œ„ ff‘™š„ ff‘ĚΟüfdĹ\small‘*Œ¸Ą„ ffŽ‘oqĽ˛9pt‘ţ˜Ÿ™œ„ ffŽ’ĄÜO10pt‘“៙œ„ ffŽ’ÂÜC11pt‘“៙œ„ ff‘™š„ ffŽŽŚ‰ffß"ĄĚͤ™œ„ ff‘™š„ ff‘ĚΟüfdĹ\large‘*Œ¸Ą„ ffŽ‘lńĽ˛12pt‘~—Ÿ™œ„ ffŽ’ĄÜO12pt‘“៙œ„ ffŽ’ÂÜC14pt‘“៙œ„ ff‘™š„ ffŽŽŚ‰ffß"ŽŽŽŸ8o;ž2.4.23Ž‘9™”Äfigure–ffžand“Ätable“žen•ŒĚvironmen“tsŽŸ@šFigures–?Z(diagrams,‘T‡pictures,‘T†etc.)“and“tables“(pSŽerhaps“created“with“the“ătabular“šenŹrviron-ޤ€menŹrt)–‘ucannot›‘tbSŽe“split“across˜pages.‘%So˜LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“proŹrvides“a˜mecŹrhanism“for“\ oating"˜them“toŽĄa–MnearbŹry›Mplace“where˜there“is“roSŽom˜for“them.‘UThis“maŹry˜mean“that“yŹrour˜ gure“or˜table“maŹryŽĄappšSŽear–ú-a“little“later“in“the“do˜cumenšŹrt“than“its“declaration“in“the“source“ le“migh˜t“suggest.ŽĄY‘˙Vou–ţ can›ţsuggest“to˜LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“that˜it“try˜to“place“the˜ gure“or˜table“at˜the“presenŹrt˜pSŽosition“ifŽĄthere–'is“roSŽom“or,›6ľfailing“that,˜at“the“top“or“bSŽottom“of“the‘'€presenšŹrt“or“follo˜wing“page.‘ďeY‘˙VouŽĄcan–ę¨also“ask“for“it“to“bSŽe“presenšŹrted“b˜y“itself“on“a“\page“of“ oats".ŽĄ‘ŸôY‘˙Vou–Âsuggest“these“options› to“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“through“an“optional“argumenŹrt˜to“the“en•Źrvironmen“t.ŽĄOne–ę¨lists“a“comŹrbination“of“the“letters“ăhš,“ătš,“ăbš,“and“ăp“šwhereŽŸ+ ŐhŽŽ‘ _üšmeans–´żthat“the›´Ŕob‘§ject“should“bSŽe“placed“ćher‘˙ffe“šif˜there“is“roSŽom,‘ż‡so“that˜things“will“appSŽearŽĄ‘_ěin–ę¨the“same“order“as“in“the“source“ le,ŽŠcŻŐtŽŽ‘ üšmeans–—˛that›—łthe“ob‘§ject˜can“bSŽe˜placed“at˜the“ćtop‘SČšof˜the“of˜a“text˜page,‘¨Jbut“no˜earlier“thanŽĄ‘_ěthe–ę¨presenŹrt“page.ŽŚŐbŽŽ‘ _üšmeans–OĂthat“the›OÂob‘§ject“can“bSŽe“placed˜at“the“ćb‘˙ffottom‘5sšof“a˜text“page,‘i but˜no“earlier“thanŽĄ‘_ěthe–ę¨presenŹrt“page.ŽŚŐpŽŽ‘ _üšmeans–âthat›âthe“ob‘§ject“should˜bSŽe“set“on˜a“ćp–˙ffage‘+Xof‘+W o“ats‘ßöšthat˜consists–âonly“of˜tables“andŽĄ‘_ě gures.ŽŸ+ ‘ŸôA‘œ0comŹrbination›œEof–œDthese“indicates“decreasing“order˜of“preference.›żThe“default“is“ătbpš.˜InŽĄthis–ę¨doSŽcumenšŹrt“I“ha˜v˜e“tended“to“use“ăhtbpš.ŽĄ‘ŸôLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X–Fwill›Falso“n•Źrum“bSŽer–Fand“caption˜a“ gure“or˜table“for“yŹrou,‘œěand“compile“a˜list“ofŽĄtables–AŚand“a›AĽlist“of“ gures.‘ =ŮJust“include“ă\listoffigures“šand˜ă\listoftables“šnext“toŽĄyŹrour–Şă\tableofcontents“šcommand“at“the“bšSŽeginning“of‘Ťthe“do˜cumenŹrt.‘ĹćT‘˙Vo“caption“a“tableŽĄof› gure,‘špinclude–ă\caption{ćc‘˙ffaption‘ËBtextă}“šjust˜bSŽefore“the˜ă\end{table}“šor˜ă\end{figure}ŽĄšcommand.‘8ŕHere's–ę¨a“sample“source“ le.ŽŸanŸś*­‘..Ĺ\begin{table}[htbp]ޤ ‘8“(\begin{tabular}{lrll}ŽĄ‘8“(...ŽĄ‘8“(\end{tabular}ŽĄ‘..\caption{Mark‘?ýanalysis}ŽĄ‘..\end{table}ŽŽĄ‘ŸôšT‘˙Vo›E§lea•Źrv“e˜space–EŚfor˜a˜ gure˜that“will˜inserted˜bŹry˜some˜other“means˜at˜a˜later˜date,‘\fwŹreŽĄcan–ę¨use“the“ă\vspace“šcommand:ŽŽŸ’ŕ|V33ŽŽŒ‹" ¤ ° ý\ † ýÚ*ŤŸĚǍ‘..Ĺ\begin{figure}[htbp]ޤ ‘..\vspace{9.5cm}ŽĄ‘..\caption{An–?ýartists“impression}ŽĄ‘..\end{figure}ŽŽ¤€‘ŸôšIncluding–4igraphics“ les“prepared“with“drašŹrwing“pac˜k‘˙Xäages“is‘4jpšSŽossible,‘†Ůbut“b˜eyŹrond“theŽĄscopšSŽe–ę¨of“this“inŹrtro˜duction.ŽŠ"ĘŤž2.4.24Ž‘9™”The–ffÄletter“ždos3cumenšŒĚt“st˜yleŽŸ@šAll–×Ţthis“and“wšŹre“still“don't“kno˜w‘×ßho˜w“to“prepare“a“simple“letter!‘‚Actually‘˙V,‘,there“is“v˜eryŽĄlittle–ę¨to“it.ŽĄ‘ŸôFigure–ű2.1“shošŹrws“a‘űsample“letter.‘j!W‘˙Ve“declare“our“o˜wn‘űaddress“and“signature“bSŽeforeŽĄenšŹrtering– óthe“ăletter“šen˜vironmen˜t“bSŽecause“w˜e“can“use“repSŽeated“ăletter“šen˜vironmen˜ts“toŽĄprepare–n mŹrultiple“letters›n from“the“same“source“ le.‘ĂThe“address“of˜the“inšŹrtended“recipien˜tŽĄof–ę¨a“particular“letter“is“givšŹren“as“an“argumen˜t“to“the“ăletter“šen˜vironmen˜t.ŽŚž2.4.25Ž‘9™”Common–ffpitfalls;“Error“messagesŽŸ@šBy–(ĂnoŹrw“it›(Âshould“bSŽe“clear“that˜wšŹre“ha˜v˜e“to“w˜ork›(Âquite“accurately“when“preparing˜a“doSŽcu-ŽĄmen•Źrt.‘ӏT“yping–ş´errors“in“the“running“text“can“bšSŽe“absorb˜ed,‘÷~but“messing“up“a“conŹrtrol“sequenceŽĄname–}šwill›}›halt“the“compiler“with˜an“error“message.‘†Before˜wŹre“loSŽok“at“some˜common“errorsŽĄand–ę¨some“w•Źra“ys–ę¨to“a•Źrv“oid–ę¨them,“let's“ha•Źrv“e–ę¨a“loSŽok“at“a“sample“error“message.ŽĄ‘ŸôY‘˙Vou'll›ÓFha•Źrv“e˜noticed‘ÓGb“y˜no“w˜that˜when˜y“ou˜run‘ÓGLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X˜on˜a˜source˜ le,‘×ôthe˜transcript˜ofŽĄthe–hycompiler›hzsession“is˜written“on“a˜log“ le.‘˛UWhen“errors“ha•Źrv“e˜accum“ulated–hyto˜the“pSŽoinŹrtŽĄthat–yŐLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X›yÖis“hopSŽelessly˜confused,‘fit“is˜time“to˜debug“yŹrour˜source“ le.‘EThe“log˜ le“conŹrtainsŽĄa–7reference‘7Žto“the“line,›JČor“lines,˜of“yŹrour“source“ le›7Žthat“generated“the“error˜together“withŽĄa–ę¨description“of“the“error.ŽĄ‘ŸôT‘ţ ‘Ÿ•UEŽ›‘!X–ňĐand“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ˜X›ňĎerror“messages“appSŽear“frighŹrtening“at“ rst˜sighšŹrt,‘ôÚto“sa˜y“the“least.‘QWTheyŽĄare–n%actually‘n&všŹrery“informativ˜e,‘but“they‘n&can“tak˜e“some‘n&getting“used“to.‘ĂYMist˜ypSŽed“con˜trolŽĄsequences–Źcause“little“pain,‘Xíbut“a“missing“ă\end{ćenvir‘˙ffonmentă}“šcan“cause“a“go•SŽo“d–Źdeal“ofŽĄconfusion–ł¤bSŽecause›łĽit“has“the˜e ect“of“making˜LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“try“to˜set“material“inŹrto˜that“en•Źrvironmen“tŽĄthat–S+wšŹras“nev˜er“in˜tended/designed“to“ t“in“suc˜h“a“place.‘ riAlso,‘­Lommiting“a“mandatoryŽĄargumenŹrt–ę¨can“cause“great“confusion.ŽĄ‘ŸôSuppSŽose–ę¨wšŹre“t˜ypSŽe“ă\bold“šinstead“of“ă\bf“šin“the“follo˜wing“line:ŽŸ&˙ŸđǍ‘..Ĺthis–?ýis“going“to“be“{\bold“very}“messy.ŽŽĄšThis–ę¨proSŽduces“the“folloŹrwing“error“message:ŽŽŸ’ŕ|V34ŽŽŒ‹#ŕ ° ý\ †Ÿ•Î7Ÿĺ*Ź ţ–*­‘..Ĺ\documentstyle[12pt]{letter}ޤ ‘..\begin{document}ŽĄ‘..\address{(Underneath)–?ýLion“Bridge\\ŽĄ‘..Midway–?ýdown“Commercial“Road\\ŽĄ‘..Pietermaritzburg\\ŽĄ‘..3200}ŽĄĄ‘..\signature{F.‘?ýBasset\\ŽĄ‘..Public‘?ýnuisance}ŽĄĄ‘..\begin{Letter}{Director–?ýof“Public“Parks\\ŽĄ‘..Pietermaritzburg‘?ýMunicipality\\ŽĄ‘..Pietermaritzburg}ŽĄĄ‘..\opening{Kind‘?ýSir/Madam}ŽĄĄ‘..I–?ýwish“to“complain“about“the“shocking“practice“ofŽĄ‘..fencing–?ýoff“the“base“of“trees.‘ úI“notice“with“graveŽĄ‘..concern–?ýthat“this“has“occurred“in“the“park“borderingŽĄ‘..my–?ýstately“residence.ŽĄĄ‘..This–?ýhas“already“caused“me“great“inconvenienceŽĄ‘..and–?ýpublic“embarrassment,“as“you“can“imagine“it“wouldŽĄ‘..for–?ýa“hound“of“my“social“standing.‘ úI“demand“thatŽĄ‘..you–?ýtake“these“obscene“obstructions“away“withoutŽĄ‘..delay.ŽĄĄ‘..\closing{Yours‘?ýanxiously}ŽĄ‘..\end{letter}ŽĄ‘..\end{document}ŽŽŸ€’ g,šFigure–ę¨2.1:‘8ŕA“sample“letterŽŽŽŽŸ’ŕ|V35ŽŽŒ‹$$ ° ý\ † ý×rŸĎ‘..Ĺ!–?ýUndefined“control“sequence.ޤ ‘..1.683–?ýthis“is“going“to“be“{\boldŽĄ‘=Ó%very}‘?ýmessy.ŽĄ‘..?ŽŽ¤€‘ŸôšThat–5ƒnot›5‚so“bad!‘ü~The“line˜bSŽeginning“with˜ă!‘üštells˜us“that˜wšŹre“ha˜v˜e“tried›5‚to“used˜a“conŹrtrolŽĄsequence– that› wŹras“not˜knoŹrwn“to˜LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X;‘+żthe“ă1.683˜štells“us˜that“the˜error“oSŽccurred˜on“lineŽĄ683–`8of›`9the“source“ le;‘Ž^and“the˜error“message“is˜split“o•Źrv“er‘`8t“w“o˜lines–`8with“the˜break“oSŽccurringŽĄat–ę¨the“pSŽoinŹrt“where“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“detected“a“problem.ŽĄ‘ŸôBut–ę¨suppSŽose“wšŹre“try“the“follo˜wingŽŸn˙Ÿ¨Ç‘..Ĺ\begin{tabular}{llrrl}ޤ ‘..Student–?ýname“&“Number“&“Test“1“&“Test“2“&“Comment\\ŽĄ‘..F.–?ýBasset‘˙ô&“865432“&“78›?ń&“85˜&“Pleasing\\ŽĄ‘..H.–?ýHosepipe‘ ú&“829134“&“5‘î&“10‘?ń&“Improving\\ŽĄ‘..I.N.–?ýMiddle‘ ú&“853931“&“48›?ń&“47˜&“Can“make“itŽĄĄ‘..This–?ýshows“that“H.~Hosepipe's“newfound“concentration“has...ŽŽĄ‘Ÿôši.e.,‘-$wšŹre–Řomit“to‘Ůpro˜vide“the“ă\end{tabular}“šthat“delimits“the‘Ůend“of“the“en˜vironmen˜t.ŽĄNot–ĘëhaŹrving›ĘěbSŽeen“told˜that“the“en•Źrvironmen“t˜is–ĘësuppSŽosed˜to“bSŽe“concluded,‘ŃELŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“will˜try“toŽĄset–.ythe“text›.xof“the“next“paragraph“as“a˜table“item|and“will“scream“blue˜mŹrurder“when“itŽĄ nds–ę¨that“it“doSŽesn't“conform“to“the“synŹrtax“demanded.Ž żqƍ ˙W‘..ĹLaTeX–?ýerror.‘ úSee“LaTeX“manual“for“explanation.ޤ ‘3S+Type– úH›?ý“for˜immediate˜help.ŽĄ‘..!–?ý\begin{tabular}“ended“by“\end{document}.ŽĄ‘..\@latexerr–?ý...diate“help.}\errmessage“{#1}ŽĄĄ‘..\@checkend–?ý...urrenvir“\else“\@badend“{#1}ŽĄ‘HS\fiŽĄ‘..\enddocument–?ý->\@checkend“{document}ŽĄ‘RÓ\clearpage–?ý\begingroup“\if@filesw...ŽĄ‘..\end–?ý#1->\csname“end#1\endcsnameŽĄ‘C"\@checkend–?ý{#1}\expandafter“\endgrou...ŽĄ‘..l.58‘?ý\end{document}ŽĄĄ‘..?ŽŽĄ‘ŸôšNo•Źrw›Ý5ćthat's‘Űšinformativ“e!‘ ‡Actually˜it˜ćis˜šif‘Ý4w“e˜agree˜to˜ignore˜all˜but˜the˜the˜errorŽĄindication–ăîline›ăď(the“one˜bSŽeginning“with˜the“ă!š)‘6˘and“the˜line“telling˜us“where˜LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“noticedŽĄthat–˙]all“wšŹras“not“w˜ell“(the“one“bSŽeginning“ă1.58“šin“this“case).‘v˙The“rest“of“the“error“messageŽĄyŹrou–Őcan›Őregard“as˜bSŽeing“for“yŹrour˜loSŽcal“T‘ţ ‘Ÿ•UEŽ‘‘!X“wizard˜to“sort˜yŹrour“problem“out˜if“yŹrou˜are“unableŽĄto–”after“consulting“the“manšŹruals.‘¤ŁT‘˙Vough“as“it“loSŽoks,‘w˜e‘“can“decipher“this“message“straigh˜tŽĄa•Źrw“a“y:‘›ýthe–œ7error“indicator“line›œ6tell“us“that˜a“ătabular“šen•Źrvironmen“t‘œ7w“as˜ended‘œ7incorrectlyŽĄ(in–ę¨this“case“bŹry“an“ă\end{document}š).ŽĄ‘ŸôT‘ţ ‘Ÿ•UEŽ‘‘!X–úŘerror“messages›úŮaren't“all“that“bad˜once“y•Źrou'v“e–úŘmade“enough“errors˜to“get“usedŽŽŸ’ŕ|V36ŽŽŒ‹%(G ° ý\ † ýŸšto–Jůa“few!‘ YÔMost“can›JúbSŽe“a•Źrv“oided–Jůthrough“ćc–˙ffar“eful‘‰Œšpreparation˜of–Jůthe“source“ le.‘ YÔTŹrypingޤ€accurately–K_and›K`knoŹrwledge“of“the˜command“synŹrtax“is“a˜go•SŽo“d–K_start,‘k;but“there“are˜some“otherŽĄprecautions–ę¨that“makŹre“go•SŽo“d‘ę¨sense:ŽŠ€‘\h1.ŽŽŽ‘_ěEvšŹren–1óif‘1ňLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“is“happ˜y›1ňwith“free-form“input,‘Vätry˜to“lašŹry“y˜our›1ňinput“ le“out˜as“regularlyŽĄ‘_ěand–ę¨logically“as“pSŽossible.‘8ŕSee“our“examples“of“en•Źrvironmen“ts–ę¨for“formats“to“adopt.ŽŚ‘\h2.ŽŽŽ‘_ěIt–œpis“impšSŽortanŹrt“that“all“group“delimiters“b˜e“prop˜erly“matcŹrhed,–ßHi.e.,“braces–œpand“ă\beginŰfgš.–őT.“.“ă\endŰfgŽĄ‘_ěšmŹrust–ë}come›ë|in“pairs.‘;^A“go•SŽo“d˜habit–ë}to“fall“in˜to“is“to˜alw•Źra“ys›ë}t“ypSŽe˜suc“h˜things‘ë|in˜pairsŽĄ‘_ěand–ę¨then“mo•Źrv“e–ę¨the“cursor“bacšŹrk“bSŽet˜w˜een“them“and“t˜ypSŽe“the“in˜terv˜ening“material.ŽŚ‘\h3.ŽŽŽ‘_ěDon't–Lforget“command“argumenšŹrts“when“they‘Mare“mandatory‘˙V.‘‚ĚAlw˜a˜ys“ask“y˜ourselfŽĄ‘_ěwhat–ÉFa›ÉEparticular“commands˜ćne–˙ffe“ds‘…fr“om‘†you‘Žőšin–ÉForder˜to“makŹre˜the“decisions˜that“areŽĄ‘_ěrequired–ę¨of“it.ŽŚ‘\h4.ŽŽŽ‘_ěRememšŹrbSŽer–"Nthe‘"M10“c˜haracters“that‘"Mare“spSŽecially“reserv˜ed“for‘"Mcommen˜ting,‘07table“itemŽĄ‘_ěseparation,‘ę¨etc.ŽŚ‘\h5.ŽŽŽ‘_ěWhen–ٲwšŹre‘ŮłloSŽok“at“mathematical“t˜ypSŽesetting‘Ůłin“the“next“c˜hapter,‘Ýw˜e“will“see‘Ůłthat“theŽĄ‘_ěsame–ę¨principles“apply“there.ŽŚ‘\h6.ŽŽŽ‘_ěT‘˙Vry–$™to›$˜use“a“text˜editor“that“has˜a“T‘ţ ‘Ÿ•UEŽ‘‘!X“moSŽde,‘L5or“at“least˜one“that“will˜matcšŹrh“brac˜k˜etsŽĄ‘_ěfor‘ę¨yŹrou.ŽŸ(VëH2.5Ž‘,GŤSummaryŽŸb#šW‘˙Ve›Sąha•Źrv“e‘S°learned˜prett“y‘S°m“uc“h˜all‘S°w“e˜need˜to‘S°kno“w˜in–S°order˜to“prepare˜non-mathematicalŽĄdo•SŽcumenŹrts.‘=^There›A}has‘A|b“een˜quite–A|a˜lot˜of“material,‘W2all˜told,‘W1but˜wŹre're˜fortunate“that˜theŽĄa•Źrv“erage›°6doSŽcumen“t˜requires‘°7only˜a˜fraction˜of˜what˜w“e'v“e‘°7listed˜here.‘‰ŠF‘˙Vurthermore,‘ášw“e'llŽĄ nd–|Áthat›|Âwhat“w•Źre'v“e˜learned–|Áequips“us˜with“a˜go•SŽo“d–|Ádeal“of˜the“framewŹrork˜needed“forŽĄmathematical‘ę¨tŹrypSŽesetting.ŽĄ‘ŸôThe–­ impSŽortanŹrt›­Ÿthing“to“extract“from˜this“cŹrhapter“is“some˜feel“for“what“I‘­mtermed“theŽĄ\spirit–‘âof›‘ăT‘ţ ‘Ÿ•UEŽ‘‘!X"“at“the˜cŹrhapter“bSŽeginning.‘.I‘‘ˇcannot˜emphasise“enough“the˜impSŽortance“ofŽĄgetting–„ĄyšŹrour“mind“out“of“\w˜ord“prošSŽcessing"“mo˜de“and“inšŹrto“\t˜ypšSŽesetting"“mo˜de.‘ËAlw•Źra“ysŽĄkšŹreep–ÚÎuppSŽermost‘ÚÍin“y˜our“mind‘ÚÍthe“task“at“hand:‘+y˜ou“are›ÚÍto“describSŽe“the˜logical“con•Źrten“tŽĄof–0wthe“došSŽcumenŹrt“to“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X,‘ëso“furnishing“it“with‘0xenough“information“to“p˜erform“all“theŽĄformatting–ę¨for“yŹrou.ŽĄ‘ŸôManŹry–—*of›—+the“earlier˜sections“of˜this“cŹrhapter“will˜bSŽecome“trivially˜easy“to˜yŹrou“afterŽĄjust–şâa“little“expšSŽerimenŹrtation“with“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X.‘ŠŽThe‘şăb˜est“w•Źra“y–şâto“learn“the“synŹrtax“of“the“moreŽĄcomplicated›ƒen•Źrvironmen“ts–ƒis˜to“use˜them|try“tŹrypSŽesetting˜the“examples,‘—Ěfor˜instance.‘ZIt˜isŽĄimpSŽortan•Źrt›śIthat‘śJy“ou˜come–śJto˜terms“with˜the“ătabular˜šen•Źrvironmen“t,‘ŔĂfor‘śJits˜syn“tax‘śJis˜t“ypicalŽĄof–ę¨manšŹry“of“the“mathematical“constructs“that“w˜e“will“use.ŽĄ‘ŸôIf–zŠyšŹrou“ha˜v˜e“not“already“done“so,‘öthen“no˜w“is“the“time“to“try“preparing“some“doSŽcumen˜tsŽĄof–']yšŹrour“o˜wn.‘î˙T‘˙Vry“including“all‘'\the“material“from“this“c˜hapter,‘6Šfor“that“is“the“bSŽest“w˜a˜y“toŽŽŸ’ŕ|V37ŽŽŒ‹&3š ° ý\ † ýŸšrememŹrbSŽer–Ńit›Ńall.‘ě@When“the“initial˜lacšŹrk“of“familiarit˜y‘Ńw˜ears“o ,‘ ťy˜ou'll“ nd“that‘ŃLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“isޤ€really–ę¨a“whole“lot“friendlier“and“easier“to“use“than“yŹrou“expSŽected.ŽĄ‘ŸôW‘˙Ve–šmŹrust“also“recognise›šthat“there“is“a“lot“more“to“some˜of“the“command“than“detailedŽĄhere.‘ÓSome–Ÿaccept›Ÿ€optional“argumnets“that“wŹrere˜not“menšŹrtioned,‘މothers“ha˜v˜e‘Ÿ€more“optionsŽĄthan–8'wšŹre‘8&considered.‘!\And“ev˜en‘8&once“w˜e‘8&ha˜v˜e“a“full‘8&description“of“eac˜h‘8&command,‘K†there“isŽĄstill›ĺ?m•Źruc“h–ĺ@to˜bSŽe“learned˜for“there˜is“m•Źruc“h˜that˜can‘ĺ@bSŽe˜ac“hiev“ed‘ĺ@through˜creativ“e‘ĺ@use˜ofŽĄsome–ę¨of“the“en•Źrvironmen“ts.ŽŽŸ’ŕ|V38ŽŽŒ‹'B  ° ý\ † ýďÔChapter‘ T{3ŽŸ2Mathematical– T{t‘˙8őyp‘Ç esetting“with“LŸý(Ս‘őěpëOAŽŽ‘X=ÔT‘űU‚Ÿ‡dEŽ‘ 5XŽŸ6€šThe–˝last“c•Źrhapter›˝taugh“t–˝us“a“go•SŽo“d–˝deal“of˜what“wšŹre“need“to“kno˜w“in‘˝order“to“prepare“quiteޤ€complicated–6inon-mathematical›6hdoSŽcumenŹrts.‘"There“are“still“a˜n•Źrum“bSŽer–6iof“useful˜topics“thatŽĄw•Źre›şŤha“v“e˜not‘şŞco“v“ered˜(suc“h˜as˜cross-referencing),‘îŤbut˜w“e'll˜defer˜discussion‘şŞof˜those˜un“tilŽĄa–­Ulater“cšŹrhapter.‘€čIn“the“presen˜t“c˜hapter,‘Ţw˜e'll“learn“ho˜w“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“t˜ypSŽesets‘­Vmathematics.‘€çItŽĄshould–ę¨come“as“no“surprise“that“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“doSŽes“most“of“the“wŹrork“for“us.ŽŸ(VëH3.1Ž‘,GŤIn‘˙uÂtro‘Š=ductionŽŸb#šIn–ÉÜtext-only“doSŽcumenšŹrts“w˜e‘ÉÝsa˜w“that“our“task“w˜as“to“describšSŽe‘ÉÝthe“logical“comp˜onenŹrts“ofŽĄeac•Źrh›Űsen“tence,–Ţ-paragraph,“section,‘Ţ.table,“etc.‘3­When˜wŹre–Űtell˜LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X˜to˜go“inŹrto˜ćmathematic‘˙ffalŽĄmo‘˙ffdeš,‘ˇ‚w•Źre›Şšha“v“e–޸to˜describSŽe“the˜logical˜parts“of˜a“formŹrula,–ˇ‚matrix,“opšSŽerator,“sp˜ecial‘ŞšsymŹrb˜ol,ŽĄetc.‘@T‘ţ ‘Ÿ•UEŽ‘‘!X–‹Éhas“bSŽeen›‹ČtaughŹrt“to“recognize“a˜binary“opSŽeration,›žÂa“binary“relation,˜a“v‘˙Xäariable,˜anŽĄopšSŽerator–qAthat“exp˜ects“limits,‘’čand“so“on.‘ĚŤW‘˙Ve“just“need“to‘qBsupply“the“parts“that“makŹre“upŽĄeacŹrh›Ôof–Őthese,‘§Ÿand“T‘ţ ‘Ÿ•UEŽ‘‘!X˜will˜takŹre“care˜of“the˜rest.‘ţeIt˜will“lea•Źrv“e˜appropriate‘Őspace˜aroundŽĄopšSŽerators,‘italicise– šv‘˙Xäariables,‘set“an“op˜erator“name“in“roman“t•Źryp˜e,‘lea“v“e– šthe“correct“spaceŽĄafter–Eşcolons,‘fśplace‘Eťsub-“and“supšSŽerscripts“in“the“correct“p˜ositions“(based“on“what“it“is“yŹrou'reŽĄw•Źrorking›‰with),‘eAc“hoSŽose˜the˜correct‘ˆt“ypSŽesizes,‘eA.–őT.“.‘Ýthe˜list˜of˜things˜it‘ˆhas˜bSŽeen˜taughŹrt˜isŽĄenormous.‘"^When–§"yšŹrou“w˜an˜t‘§#to“rev˜ert“to“setting“normal‘§#text“again,‘´Ły˜ou“tell‘§#LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“toSŽo“lea˜v˜eŽĄmaths–ę¨moSŽde“and“go“bacšŹrk“in˜to“the“moSŽde“it“w˜as“in“(paragraphing“moSŽde).ŽĄ‘ŸôLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X–ŇŔcannot‘ŇÁbšSŽe“exp˜ected“to‘ŇÁp˜erform“these“mo˜de›ŇÁshifts“itself,‘׈for˜it“is“not˜alw•Źra“ys‘ŇŔclearŽĄjust–e‚when“it“is‘emathematics“that“has“bšSŽeen“tŹryp˜ed.‘ŠmF‘˙Vor“example,‘„8should“an“isolated“letterŽĄăa–Ţšin“the›Ýinput“ le“bSŽe“regarded˜as“a“wŹrord“(as˜in“the“de nite“article)˜or“a“mathematicalŽĄv›˙Xäariable–x˜(as‘x—in“the“v˜ariable›x—Řaš).‘ŰThere“are˜no“reliable“rules“for˜LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“to“mak•Źre˜suc“h‘x˜decisionsŽĄbŹry‘˙V,–ę¨so“the“bšSŽegin-math“and“end-math“mo˜de“switcšŹrhing“is“left“en˜tirely“to“y˜ou.ŽĄ‘ŸôThe–¨ÄsymŹrbšSŽol‘¨Ăă$“šis“sp˜ecially›¨Ăreserv•ŹredŸűĽ2Ö1ŽŽ‘hČšb“y–¨ÄLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X˜as“the“\math˜shift"“symŹrbSŽol.‘"éWhen“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!XŽĄstarts–Ásetting“a‘ÂdošSŽcumenŹrt“it“is“in“paragraphing“mo˜de,‘§ˆready“to“set“lines“of‘Âthe“input“ leŽĄinšŹrto–Iparagraphs.‘˙It“remains‘Iin“this“moSŽde“un˜til“it“encoun˜ters“a‘Iă$“šsym˜bSŽol,‘iYwhic˜h“shifts“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!XŽĄinšŹrto–´mathematical“moSŽde.‘“It“no˜w“kno˜ws“to“bšSŽe“on“the“lo˜ok-out‘łfor“the“comp˜onenŹrts“of“aŽŸ ˆ‡‰ff¸I"Ÿ ‘ ƒŸü^˙ą1ŽŽŽ‘˛See–UUsection“2.4.4ŽŽŸ’ŕ|Vš39ŽŽŒ‹(E5 ° ý\ † ýŸšmathematical––expression,‘ 4rather“than“for“wšŹrords‘—and“paragraphs.‘ÚIt“reads“ev˜erything‘—up“toޤ€the–•8next›•9ă$“šsign˜in“this“mathemŹrtical˜moSŽde,‘ŚNand˜then“shifts“bacŹrk˜to“paragraphing˜moSŽde“(i.e.ŽĄthe–ę¨mošSŽde“it“wŹras“in“b˜efore“wŹre“to˜ok“it“in“to“maths“mo˜de).ŽĄ‘ŸôY‘˙Vou–ŢłmŹrust›Ţ´bSŽe“careful˜to“balance“yŹrour˜bSŽegin-math“and˜end-math“symŹrbSŽols.‘It˜is“oftenŽĄa›Ü(go•SŽo“d˜idea‘Ü'to˜tŹryp“e˜t•Źrw“o˜ă$‘Ü'šsym“bSŽols˜and˜then˜mo“v“e‘Ü'bac“k˜bSŽet“w“een˜them˜and‘Ü't“ypSŽe˜theŽĄmathematical–î+expression.‘CiIf“the“math-shift“symŹrbšSŽols“in“a‘î*do˜cumenšŹrt“are“not“matc˜hed,‘ď thenŽĄLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X–ň&will“bšSŽecome“confused“b˜ecause“it“will‘ň'b˜e“trying“to“set“non-mathematical“material“asŽĄmathematics.ŽĄ‘ŸôF‘˙Vor–ޤthose“who“ nd‘ŽŁhašŹrving“the“same“sym˜bšSŽol“for“b˜oth‘ŽŁmath-b˜egin“and“math-end“con-ŽĄfusing–ßąor›߲dangerous,‘áăthere“are“t•Źrw“o˜con“trol‘ßąsym“b•SŽols˜that›ßąp“erform˜the‘߲same˜op“erations:‘3etheŽĄcon•Źrtrol› Msym“b•SŽol‘ Nă\(˜šis˜a˜b“egin-math– Ninstruction,‘öand˜the“con•Źrtrol˜sym“bSŽol˜ă\)˜šis‘ Nan˜end-mathŽĄinstruction.‘˜Since–qĐit“is›qŃeasy“to“\lose"“a“ă$“šsign˜when“tšŹryping“a“long“form˜ula,‘‰üa“math“en˜viron-ŽĄmenšŹrt–’šis“pro˜vided“for“suc˜h“oSŽccasions:‘‰y˜ou‘’¸can“use“ă\begin{math}“šand“ă\end{math}“šas“theŽĄmath-shift–ę¨instructions.‘8ŕOf“course,“yšŹrou“could“just“decide“to“use“ă$“šand“tak˜e“y˜our“c˜hances.ŽĄ‘ŸôLet's›ę¨ha•Źrv“e˜a˜loSŽok˜at˜some˜mathematics.ŽŸx*ŤŸœÇ‘..Ĺ\LaTeX\–?ýis“normally“in“paragraphing“mode,“whereޤ ‘..it–?ýexpects“to“find“the“usual“paragraph“material.‘ úIncludingŽĄ‘..a–?ýmathematical“expression,“like“$2x+3y“-“4z=“-1$,“in“theŽĄ‘..paragraph–?ýtext“is“easy.‘ ú\TeX\“has“been“taught“to“recognizeŽĄ‘..the–?ýbasic“elements“of“an“expression,“and“typeset“them“appropriately,ŽĄ‘..choosing–?ýspacing,“positioning,“fonts,“and“so“on.ŽĄ‘..Typing–?ýthe“above“expression“without“entering“mathsŽĄ‘..mode–?ýproduces“the“incorrect“result:“2x+3y“-“4z=“-1ŽŽĄšwill–ę¨proSŽduce“the“folloŹrwing“paragraphŽŸIGŸÄ‘?ł"˛LŸýó5‘üffąAŽŽ‘͉˛T‘ţU>Ÿ'EŽ‘ăxX–ĺĺis“normally“in“paragraphing“mošGde,‘ü/where“it‘ĺćexp˜ects“to“ nd“the“usual“para-ޤ ‘..graph–PĂmaterial.‘dIncluding“a“mathematical“expression,›žlik¸ăe“2ó  b> cmmi10ľx–ŕ~˛+“3ľy‘Ÿ'EŽ‘ăxX“has“bGeen˜taugh¸ăt“to“recognize“the˜basic“elemen¸ăts“ofŽĄ‘..an–¸expression,›ŻŃand“t¸ăypGeset“them“appropriately‘˙*Ş,˜c¸ăhoGosing“spacing,˜pGositioning,˜fon¸ăts,ŽĄ‘..and–{Őso“on.‘ĺGTš¸ăyping“the‘{ÖabGo˜v˜e“expression“without“en˜tering“maths“mošGde“pro˜duces“theŽĄ‘..incorrect–UUresult:‘qÇ2x+3y“-“4z=“-1ŽŽŸ€‘ŸôšNotice–btthat“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“sets“space“around“the“binary“relation“=“and“space“around“the“binaryŽĄopSŽerators–şÜ+›şÝand“Ű˜šon“the“left˜hand“side˜of“the“equation,‘Älignoring“the˜spacing“w•Źre˜t“ypSŽed‘şÜinŽĄthe–¤Jinput.‘!lIt“wŹras›¤Kalso“able˜to“recognize˜that“the“Űš1˜on“the˜righŹrt“hand˜side“of˜the“equationŽĄwšŹras–mva‘mwunary“min˜us|negating“the“1›mwrather“than“bSŽeing“used˜to“indicate“subtraction|andŽĄso–Őpdid›Őqnot“put“space˜around“it.‘1ÍIt˜also“italicised“the˜v‘˙Xäariables“Řxš,‘ŮŻŘyn9š,‘ŮŽand˜Řz‘ˆăš.‘1ÍHo•Źrw“ev“er,‘ŮŻit‘ŐpdidŽĄnot–ę¨italicise“the“n•Źrum“bSŽer‘ę¨1.ŽĄ‘ŸôIn–ŁótšŹryping“a“mathematical“expression“w˜e“m˜ust‘Łňremem˜bSŽer“to“k˜eep“the“follo˜wing“in“mind:ŽŸ€‘\h1.ŽŽŽ‘_ěAll–ؗletters“that›ؘare“not“part“of“an˜argumenšŹrt“to“some“con˜trol“sequence‘ؘwill“bSŽe“italicised.ŽĄ‘_ěArgumenšŹrts–ťHto“con˜trol“sequences“will“bSŽe“set“according“to“the“de nition“of“the“commandŽĄ‘_ěused.‘8ŕSo–ę¨tŹryping“ă$f(x)>0–,Ífor“x“>“1$–ꨚwill“proSŽduceŽŸ€’ÇiÓŘf›G˙š(Řxš)–URŘ>“š0Řf˜orSŽx“>“š1ŽŽŸ’ŕ|V40ŽŽŒ‹)RĹ ° ý\ † ýŸ‘_ěšinstead–ę¨of“the“expressionޤ€’˝ŃQŘf‘G˙š(Řxš)–URŘ>“š0‘ żřforŽ‘%ˆĘŘx“>“š1ŽŸj‘_ěthat‘‘Âw•Źre›‘Ăin“tended.‘..Numerals˜and–‘Âpunctuation“marks˜are“set“in“normal˜roman“tŹrypSŽeŽĄ‘_ěbut–ę¨LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“will“takšŹre“care“of“the“spacing“around“punctuation“sym˜bSŽols,“as“inŽŸ+ŔŸđǍ‘KsĹ$f(x,y)–?ý\geq“0$ŽŽŸN‘_ěšwhicŹrh‘ę¨proSŽducesŽĄ’Ńr•Řf‘G˙š(Řx;‘˙ţyn9š)–URŰ“š0‘ żřŘ:ŽŸ8‘\hš2.ŽŽŽ‘_ěEvŹren–†™a›†šsingle“letter“can˜constitute“a“formŹrula,‘­–as“in˜\the“constanŹrt“Řaš".‘ ´T‘˙Vo˜tŹrypSŽe“thisŽĄ‘_ěy•Źrou›ŇFen“ter˜ă$a$˜šin˜y“our˜source˜ le.‘ďşIf˜y“ou‘ŇEdo˜not˜go˜in˜to˜maths˜moSŽde˜to˜t“ypSŽe˜theŽĄ‘_ěsym•ŹrbSŽol,›ę¨y“ou'll˜get˜things˜lik“e˜\the˜constan“t˜a".ŽŠ‘\h3.ŽŽŽ‘_ěSome›ĺPsym•ŹrbSŽols‘ĺQha“v“e˜a‘ĺQdi eren“t˜meaning˜when‘ĺQt“yp•SŽed˜in‘ĺQmaths˜mo“de.‘(ŮNot‘ĺQonly˜doŽĄ‘_ěordinary–&Ýletters“bšSŽecome‘&Üv‘˙Xäariables,‘5ębut“symŹrb˜ols“sucŹrh›&Üas“ă-“šand“ă+˜šare“nošŹrw“in˜terpretedŽĄ‘_ěas› mathematical‘ ‘sym•ŹrbSŽols.‘Ą™Th“us˜in– ‘maths˜moSŽde“ă-˜šis˜no“longer˜considered“a˜hŹryphen,ŽĄ‘_ěbut–ę¨as“a“minŹrus“sign.ŽŚ‘\h4.ŽŽŽ‘_ěLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X–ÝWignores“all›ÝVspaces“and“carriage“returns“when“in˜maths“moSŽde,‘4without“exception.ŽĄ‘_ěSo–ͰtšŹryping‘Íąsomething“lik˜e“ăthe–,Íconstant$“a$–Ͱšwill‘ÍąproSŽduce“\the“constan˜tŘaš".‘ áůY‘˙VouŽĄ‘_ěshould›?Űha•Źrv“e‘?Üt“ypSŽed˜ăthe–,Íconstant“$a$š.‘8zLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X˜is˜respSŽonsible–?Üfor˜all˜spacing“when˜inŽĄ‘_ěmaths–éÚmoSŽde,‘7and›éŰ(as“in˜paragraphing“moSŽde)˜yšŹrou“ha˜v˜e›éŰto“spSŽecially˜ask“to˜ha•Źrv“e‘éÚspacingŽĄ‘_ěc•Źrhanged.‘ĽxEv“en–d0if›d/LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“doSŽes“ignore“all“spaces“when“in“maths˜moSŽde“yŹrou“should“(asŽĄ‘_ěalw•Źra“ys–ę¨in“T‘ţ ‘Ÿ•UEŽ‘‘!X)“still“emplošŹry“spaces“to“k˜eep“y˜our“source“ le“readable.ŽŸT‘ŸôThe›ÚKabSŽo•Źrv“e–ÚJmeans˜that,‘3at˜least˜for˜most“material,‘4a“tŹrypist˜need˜not“understand˜theŽĄmathematics–-in›-~order“to˜tŹrypSŽeset“it˜correctly‘˙V.‘dAnd˜evŹren“if˜one“doSŽes˜understand“the˜math-ŽĄematics,‘ LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X›ý[is–ý\there“to˜makšŹre“sure“that“y˜ou›ý[adhere“to“accepted˜tšŹrypSŽesetting“con˜v˜en˜tionsŽĄ(whether–ę¨yšŹrou“w˜ere“a˜w˜are“of“their“existence“or“not).ŽĄ‘ŸôSo–ę¨one“could“tŹrypSŽe“eitherŽŸX˙ŸžÇ‘..Ĺ$f(x,›?ýy)– ú=“2˜(x+˜y)y/(5xy˜-˜3“)$ޤ‘..šorŽĄ‘..Ĺ$f(x,y)–?ý=“2(x+y)y“/“(5xy-3)$ŽŽĄšand–ę¨yŹrou'd“still“get“the“correct“resultޤ"’’kĽŘf‘G˙š(Řx;‘˙ţyšn9š)–UR=“2(Řx–ިš+“Řy˜š)Řy˜=š(5Řxy‘áۓš3)‘ żřŘ:ŽĄ‘ŸôšThere–xare›xsome“places“where˜this“can“go˜wrong.‘á/F‘˙Vor“instance,‘›tif˜wŹre“wish“to˜spSŽeak“ofޤ€the–îŘxš-Řy‘\Jšplane›îthen“one“has“to˜knoŹrw“that“it“is“an˜ćendash‘ÓÁšthat“is“suppSŽosed˜to“bSŽe“placedŽĄbSŽet•Źrw“een–ęâthe›ęăŘx“šand“the˜Řyn9š,‘ęđnot˜a“minŹrus“sign˜(as“ă$x-y$“šwŹrould“proSŽduce).‘9But˜tŹryping“ă$x--y$ŽŽŸ’ŕ|Vš41ŽŽŒ‹*b] ° ý\ † ýŸšwill–-­prošSŽduce“Řx–ŘIۓŘy‘›ćšsince–-­b˜oth“dashes“are“inšŹrterpreted“as“min˜us‘-Źsigns.‘ďT‘˙Vo“a˜v˜oid“spSŽeakingޤ€of‘‹5the›‹6Řx–çłŰ“Řy‘ůnšplane˜or–‹5the“Řx–çłŰ“Řy‘ůošplane,‘žLw•Źre‘‹5should˜t“ypSŽe–‹5it“as˜ăthe–,Í$x$--$y$“planeš.‘W‘˙Ve‘‹5areŽĄfortunate–•´that“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“can“recognise“and“copSŽe“with‘•ľbšŹry“far“the“ma‘§jorit˜y“of“our“mathematicalŽĄtŹrypSŽesetting‘ę¨needs.ŽĄ‘ŸôAnother–ę¨thing“to“loSŽok“out“for“is“the“use“of“braces“in“an“expression.‘8ŕTŹrypingŽŸ%pŸň*Ť‘..Ĺ${x–?ý:“f(x)>0}$ŽŽĄšwill–Ënot“prošSŽduce“anŹry“braces.‘ĽHThis“is“b˜ecause,‘WÔas“wšŹre“w˜ell“kno˜w,‘WÓbraces“are“reserv˜ed“forŽĄdelimiting–Űľgroups“in“the“input“ le.‘3ĺLoSŽoking“bacšŹrk“to“section“2.4.4,‘Ţłw˜e“see“ho˜w“it“should“bSŽeŽĄdone:ŽŸ"ǍŸň*Ť‘..Ĺ$–?ý\{“x:“f(x)>0“\}“$ŽŽĄ‘ŸôšMath–¨shift“commands“also‘ŠbšSŽeha•Źrv“e–¨as“scop˜e“delimiters,‘čso“that‘Šcommands“issued“in“anŽĄexpression–ę¨cannot“a ect“anšŹrything“else“in“a“doSŽcumen˜t.ŽŸ(VëH3.2Ž‘,GŤDispla›˙uÂying–záa“form˜ulaŽŸb#šLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X– ąconsiders› °an“expression˜ă$–,Í...“$– ąšto˜bSŽe“w•Źrord-lik“e˜in– ąthe˜sense“that˜it“considers˜it“toŽĄbSŽe–_Üeligible›_Ýfor“splitting“across˜lines“of“a“paragraph˜(but“without“hŹryphenation,‘}*of“course).ŽĄLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X–~gassigns“quite›~fa“high“pSŽenaltŹry“to˜doing“this,‘ŁVthšŹrus“trying“to“a˜v˜oid‘~fit“(remem˜bSŽer“thatŽĄLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X–r-tries›r,to“minimize“the˜\badness"“of“a“paragraph).‘śWhen“there“is“no˜other“w•Źra“y‘˙V,‘ŠEit‘r-willŽĄsplit–Ď7the“expression“at›Ď6a“suitable“place.‘/şBut“there“are“some“expressions˜whicŹrh“are“just“toSŽoŽĄlong–őto“ t›őinŹrto“the“running“text“without˜loSŽoking“a•Źrwkw“ard.‘WýThese–őare˜bSŽest“\displa•Źry“ed"‘őonŽĄa–“…line‘“„bšŹry“themselv˜es.‘3vAlso,‘˝źsome›“„expressions“are˜sucienšŹrtly“impSŽortan˜t“that‘“„they“shouldŽĄbšSŽe–ę¨made“to“stand“out.‘8ŕThese,“to˜o,“should“b˜e“displa•Źry“ed–ę¨on“a“line“of“their“oŹrwn.ŽĄ‘ŸôThe–זmecšŹrhanism‘חfor“displa˜ying“an›חexpression“is“the˜ćdisplay‘!­math‘˝GšmoSŽde,‘ŰfwhicŹrh˜is“bSŽegunŽĄb•Źry›ŒČt“yping˜ă$$‘ŒÉšand˜ended˜b“y˜t“yping˜the‘ŒÉsame˜sequence˜(whic“h˜again˜means‘ŒÉthat˜w“e'd˜bSŽetterŽĄbšSŽe–9sure“to“tŹryp˜e‘8them“in“pairs).‘ӓCorresp˜onding›8to“the“alternativŹres“ă\(“šand“ă\)˜šthat“wŹre“hadŽĄfor–ČÁthe‘ČÂmath“shift“cšŹrharacter“ă$š,‘ωw˜e‘ČÂma˜y“use“ă\[“šand‘ČÂă\]“šas“the“displa˜y-math‘ČÂshift“sequences.ŽĄOne–ę¨can“also“use“the“en•Źrvironmen“tŽŸ$*ŤŸđǍ‘..Ĺ\begin{displaymath}–?ý...“\end{displaymath}ŽŽĄšwhicšŹrh–I7is“equiv‘˙Xäalen˜t›I6to“ă$$–,Í...“$$–I7šand“is˜suitable“for“use“with˜long“displa•Źry“ed‘I7expressions.ŽĄIf–ę¨yšŹrou“wish“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“to“n˜um˜bSŽer“y˜our“equations“for“y˜ou“y˜ou“can“use“the“en˜vironmen˜tŽŸ&ŔŸđǍ‘..Ĺ\begin{equation}–?ý...“\end{equation}ŽŽĄšwhicšŹrh–öxis“the“same“as“the“ădisplaymath“šen˜vironmen˜t,‘ůlexcept“that“an“equation“n˜um˜bSŽer“willŽĄbSŽe‘ę¨generated.ŽĄ‘ŸôIt–žćis“p•SŽo“or–žćstšŹryle‘žĺto“ha˜v˜e“a“displa˜y˜ed“expression“either“bšSŽegin“a‘žĺparagraph“or“b˜e“a“paragraphŽĄbšŹry–­Żitself.‘öThis“can“bSŽe“a˜v˜oided“if“y˜ou“agree‘­°to“ćnever–ćxle‘˙ffave“a›ćyblank“line˜in“your˜input“ leŽŽŸ’ŕ|Vš42ŽŽŒ‹+n` ° ý\ † ýŸćb–˙ffefor“e–35a“math“displayš.ޤ€‘ŸôW‘˙Ve–íîwill“see“later“hošŹrw“to“t˜ypSŽeset“an“expression‘íďthat“is“to“span“m˜ultiple“lines.‘B˛F‘˙Vor“no˜w,ŽĄlet's–ę¨loSŽok“at“an“example“of“displaŹrying“an“expression:ŽŸV˙ŸŔǍ‘..ĹFor–?ýeach“$a$“for“which“the“Lebesgue-set“$L_a(f)“\neq“\emptyset$“we“defineޤ ‘..$$–?ý%“We“could“have“used“\begin{displaymath}“hereŽĄ‘..{\cal–?ýB}_a(f)“=“\{“L_{a+r}(f)“:“r“>“0‘ ú\},ŽĄ‘..$$–?ý%“and“\end{displaymath}“hereŽĄ‘..and–?ýthese“are“easily“seen“to“be“completely“regular.ŽŽĄšwhicŹrh‘ę¨proSŽducesŽŸ9ŐTŸÔ‘?ł"˛F‘˙*Şor–UUeacš¸ăh“ľa“˛for“whic˜h“the“LebGesgue-set“ľLŸ˙ó 0e—rcmmi7´aŽ‘Öp˛(ľf‘˛)–Ǹ6˛=“¸;–UU˛w˜e“de neޤ’ŤEǸBŸ˙´aŽ‘Öp˛(ľf›˛)–Ç=“¸fľLŸ˙´aą+´rŽ‘碲(ľf˜˛)“:“ľr‘5>“˛0¸gľ;ŽĄ‘..˛and–UUthese“are“easily“seen“to“bGe“completely“regular.ŽŽŸ€‘ŸôšThat–›Šillustrates“hošŹrw“to‘›‹displa˜y“an“expression,‘Ť]but“also“sho˜ws“that“w˜e'v˜e‘›‹got“a“lot“moreŽĄto–>Glearn“abšSŽout“mathematical“tŹryp˜esetting.‘˙kBefore“wšŹre“ha˜v˜e“a“loSŽok“at“ho˜w“to“arrange“sym˜bSŽolsŽĄall›ěĎo•Źrv“er‘ěÎthe˜sho“w–ěÎ(e.g.˜the˜subscripting“abSŽo•Źrv“e)˜w“e‘ěÎm“ust˜learn˜ho“w–ěÎto˜access“the˜mŹrultitudeŽĄof–ę¨symŹrbSŽols“that“are“used“in“mathematical“texts.ŽŸ(VëH3.3Ž‘,GŤUsing–zámathematical“sym‘˙uÂb‘Š=olsŽŸb#šLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X–Číputs›Čěall“the“esoteric˜symŹrbSŽols“of“mathematics˜at“our“ ngertips.‘ŘLThey“are˜all“referencedŽĄbŹry–7Ćname,‘‹ with“the“naming“system“bšSŽeing“p˜erfectly“logical“and‘7Ĺsystematic.‘ :None“of“theŽĄcon•Źrtrol›ow“ords–othat˜access“these˜symŹrbSŽols“accepts˜an“argumen•Źrt,‘‡Çbut˜w“e'll–osoSŽon˜see“that˜someŽĄof–Vthem›Vprepare“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“for˜something“that“migh•Źrt˜follo“w.‘[F‘˙Vor–Vinstance,‘sŃwhen“yŹrou“ask˜for“theŽĄsymšŹrbSŽol–—@`Ÿ÷˙üŤPŽ‘ Ž;š'“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“is“w˜arned“that“an˜y“sub-“or“supSŽerscripts“that“follo˜w“should“bšSŽe“p˜ositionedŽĄappropriately–“xas›“ylimits“to“a˜summation.‘ 3QIn“kŹreeping˜with“the“T‘ţ ‘Ÿ•UEŽ‘‘!X˜spirit,‘ýŹnone˜of“thisŽĄrequires–ę¨anšŹry“additional“w˜ork“on“y˜our“part.ŽĄ‘ŸôW‘˙Ve'll–pćalso“see“that“some“of“the“symŹrbšSŽols“b˜eha•Źrv“e›pćdi eren“tly˜depSŽending˜on˜where˜they˜areŽĄused.‘đ F‘˙Vor–}instance,‘Ą­when“I‘|íask›}for“Ÿ÷˙üŤPŽŸű*§‘ NŮnŽŸĚ̍‘ NiÖ=1ŽŽ‘L˘ŘaŸĚĚŮiŽ‘áíšwithin˜the“running“text,‘Ą­the“limits˜are“placesŽĄdi erenšŹrtly–ę¨to“when“I“ask“for“that“expression“to“bSŽe“displa˜y˜ed:ŽŸ ǍŸň˙ý’Ö~|ŮnŽŸ ’ŃŮżŸő˙üŤXŽŽŸ ô–’Ň1ůŮiÖ=1ŽŽ’âK†ŘaŸĚĚŮiŽ‘$ŇŘ:ŽŸ"IꍹAgain,–ę¨I“tšŹrypSŽed“nothing“di eren˜t“here|just“ask˜ed“for“displa˜y“math“moSŽde.ŽĄ‘ŸôIt–IEis“impSŽortanŹrt‘IDto“note“that“ćalmost–uzal‘™™l›u{of“the˜sp–˙ffe“cial‘uzmaths˜symb“ols‘uzar“e˜unavailableŽĄin›)îor–˙ffdinary‘)íp“ar“agr“aphing˜mo“deš.‘^!If–÷yŹrou“need‘÷to“use“one“there,‘:.then“use“an“in-line“mathŽĄexpression‘ę¨ă$...$š.ŽŽŸ’ŕ|V43ŽŽŒ‹,{Ĺ ° ý\ † ýŸž3.3.1Ž‘1űSym•ŒĚbs3ols›ffa“v‘˙™ailable˜from˜the˜k“eybs3oardŽŠ@šA‘¸small–ÂpSŽercenšŹrtage‘Ăof“the“a˜v‘˙Xäailable“sym˜bšSŽols‘Ăcan“b˜e“obtained›Ăfrom“just“a“single˜kŹrey“press.ޤ€They–ôŢare›ôÝ+“Ű“š=˜Ř<“>“Űj˜Ř=“š(“)˜[“]“and˜Űš.‘WNote“that“these˜mšŹrust“bSŽe“t˜ypSŽed‘ôÝćwithin‘<˜maths‘<—mo‘˙ffdeŽĄšto–ę¨bSŽe“inšŹrterpreted“as“math“sym˜bSŽols.ŽĄ‘ŸôOf–Ӄcourse,›Ř#all“of“Řaš{Řz‘ˆăš,‘Ř$ŘAš{ŘZ‘Üžš,˜the“nŹrumerals“0Ř;–˙ţš1Ř;“š2Ř;“:“:“:Ž‘Ɯ;“š9›ӂand–Ӄthe“punctuation˜cŹrharacters“Ř;ŽĄš;–:and“:›9are“aŹrv‘˙Xäailable“directly“from˜the“kŹreyb•SŽoard.‘‚•Alphab“etic–:letters“will“bSŽe˜assumed“to“bSŽeŽĄv‘˙Xäariables–óšthat“are“to“bSŽe“italicised,‘őÖunless“told“otherwiseŸűĽ2Ö2ŽŽ‘Ŕš.‘SľThe“nšŹrumerals“receiv˜e“no“spSŽecialŽĄattenŹrtion,‘Ž‹appSŽearing–Ÿƒprecisely“as›Ÿ„in“normal“paragraphing˜moSŽde.‘ÓThe˜punctuation“symŹrbSŽolsŽĄare–źĎstill“set›źÎin“standard“roman“tŹrypSŽe˜when“read“in“maths“moSŽde,‘ńXbut“a“little˜space“is“leftŽĄafter–,them“so“that“expressions“likšŹre“ŰfŘxŸĚĚŮiŽ‘š:‘ŽśŘi–Žľš=“1Ř;–˙ţš2Ř;“:“:“:Ž‘Ɯ;“š10Űg–,šloSŽok“lik˜e“they“should.‘ÖlNote“thatŽĄthis–ę¨means“that“normal“senšŹrtence“punctuation“should“not“migrate“in˜to“an“expression.ŽŸ"ĘŤž3.3.2Ž‘1űGreek‘fflettersŽŚšT‘˙Vables–Ú3.1“and‘Ů3.2“shošŹrw“the“con˜trol“sequences›Ůthat“proSŽduce“the“letters“of˜the“Greek“alpha-ŽĄbSŽet.‘/ľW‘˙Ve–Ď&see“that“a“lo•Źrw“ercase–Ď&Greek“letter“is“simply“is‘Ď'accessed“bšŹry“t˜yping“the“con˜trol“w˜ordŽĄof–yůthe›yřsame“name“as˜the“symŹrbSŽol,‘‚using“all˜lo•Źrw“ercase–yůletters.‘PT‘˙Vo“obtain“an˜uppSŽercase“GreekŽĄletter,–ę¨simply“capitalise“the“ć rst‘ěšletter“of“its“name.ŽĄ‘ŸôJust–22as›23ă$mistake$“šproSŽduces˜Řmistakge“šbSŽecause“the˜letters“are˜inŹrterpreted“as“v‘˙Xäariables,‘WsoŽĄtoSŽo›ä9will‘ä:ă$\tai–,Í\epsilon“\chi$˜šproSŽduce–ä:the˜incorrectly“spaced˜Ř‘W“šif˜yŹrou“try˜to“tŹrypSŽe˜greekŽĄw•Źrords›Ӗlik“e–ӗthis.‘1/T‘ţ ‘Ÿ•UEŽ‘‘!X“can˜bSŽe˜taughŹrt“to˜set“Greek,‘Ř3but˜this“is˜not“the˜w•Źra“y›˙V.‘1/Ř‘˙W‘ţš,‘Ř4inciden“tally˜,ŽĄis–ĽQthe›ĽRGreek“wŹrord“for˜\art"“and“it˜is“from˜the“initials“of˜the“Greek“letters˜constituting“thisŽĄwšŹrord–ę¨that“the“name“T‘ţ ‘Ÿ•UEŽ‘‘!X“w˜as“deriv˜ed.‘8ŕT‘ţ ‘Ÿ•UEŽ‘‘!X“is“\the“art“of“t˜ypSŽesetting".Ž ƒęŠŸż*ŹŸŐćd‘W™Żľ Ž‘j/Ĺ\alphaŽ’ .íľ Ž’´žĹ\betaŽ’ú}îľ Ž’ ż´Ĺ\gammaŽ’8?ŁľŽ’K Ĺ\deltaŽŽ¤ ‘W™ŻľŽ‘j/Ĺ\epsilonŽ’ .íľ"Ž’´žĹ\varepsilonŽ’ú}’ ż´Ĺ\zetaŽ’8?ŁľŽ’K Ĺ\etaŽŽĄ‘W™ŻľŽ‘j/Ĺ\thetaŽ’ .íľ#Ž’´žĹ\varthetaŽ’ú}’ ż´Ĺ\iotaŽ’8?ŁľŽ’K Ĺ\kappaŽŽĄ‘W™ŻľŽ‘j/Ĺ\lambdaŽ’ .íľŽ’´žĹ\muŽ’ú}’ ż´Ĺ\nuŽ’8?ŁľŽ’K Ĺ\xiŽŽĄ‘W™ŻľŽ‘j/Ĺ\piŽ’ .íľ$Ž’´žĹ\varpiŽ’ú}’ ż´Ĺ\rhoŽ’8?Łľ%Ž’K Ĺ\varrhoŽŽĄ‘W™ŻľŽ‘j/Ĺ\sigmaŽ’ .íľ&Ž’´žĹ\varsigmaŽ’ú}’ ż´Ĺ\tauŽ’8?ŁľŽ’K Ĺ\upsilonŽŽĄ‘W™ŻľŽ‘j/Ĺ\phiŽ’ .íľ'Ž’´žĹ\varphiŽ’ú}’ ż´Ĺ\chiŽ’8?Łľ Ž’K Ĺ\psiŽŽĄ‘W™Żľ!Ž‘j/Ĺ\omegaŽŽŽŽŽŸ@ŐT’eĚšT‘˙Vable›ę¨3.1:‘8ŕLo•Źrw“ercase˜Greek˜lettersŽŽŽŸUިŸÚŐXŸóćd‘eî<˛Ž‘y'!Ĺ\GammaŽ’¤§˛Ž’¸ühĹ\DeltaŽ’ä|W˛Ž’řCvĹ\ThetaŽ’)b˛Ž’<ʁĹ\LambdaŽŽ¤ ‘eî<˛Ž‘y'!Ĺ\XiŽ’¤§˛Ž’¸ühĹ\PiŽ’ä|W˛Ž’řCvĹ\SigmaŽ’)b˛Ž’<ʁĹ\UpsilonŽŽĄ‘eî<˛Ž‘y'!Ĺ\PhiŽ’¤§˛ Ž’¸ühĹ\PsiŽ’ä|W˛ Ž’řCvĹ\OmegaŽŽŽŽŽŸ"ŐT’ŒÓŘšT‘˙Vable–ę¨3.2:‘8ŕUppSŽercase“Greek“lettersŽŽŽŸ33‰ff¸I"Ÿ ‘ ƒŸü^˙ą2ŽŽŽ‘˛See–UUsection“3.4.6ŽŽŸ’ŕ|Vš44ŽŽŒ‹-‡Ľ ° ý\ † ţިŸźŐXŸŐćd‘@߸Ž‘SŘţĹ\pmŽ’‰Řç¸\Ž’œƒ”Ĺ\capŽ’×Ăz¸Ž’ě§ Ĺ\diamondŽ’LŚŰ¸Ž’bŚÝĹ\oplusŽŽ¤ ‘@߸Ž‘SŘţĹ\mpŽ’‰Řç¸[Ž’œƒ”Ĺ\cupŽ’×Ăz¸4Ž’ě§ Ĺ\bigtriangleupŽ’LŚŰ¸ Ž’bŚÝĹ\ominusŽŽĄ‘@߸Ž‘SŘţĹ\timesŽ’‰Řç¸]Ž’œƒ”Ĺ\uplusŽ’×Ăz¸5Ž’ě§ Ĺ\bigtriangledownŽ’LŚŰ¸ Ž’bŚÝĹ\otimesŽŽĄ‘@߸Ž‘SŘţĹ\divŽ’‰Řç¸uŽ’œƒ”Ĺ\sqcapŽ’×Ăzľ/Ž’ě§ Ĺ\triangleleftŽ’LŚŰ¸ Ž’bŚÝĹ\oslashŽŽĄ‘@߸Ž‘SŘţĹ\astŽ’‰Řç¸tŽ’œƒ”Ĺ\sqcupŽ’×Ăzľ.Ž’ě§ Ĺ\trianglerightŽ’LŚŰ¸ Ž’bŚÝĹ\odotŽŽĄ‘@ßľ?Ž‘SŘţĹ\starŽ’‰Řç¸_Ž’œƒ”Ĺ\veeŽ’×Ăz¸^Ž’ě§ Ĺ\wedgeŽ’LŚŰ¸ Ž’bŚÝĹ\bigcircŽŽĄ‘@߸yŽ‘SŘţĹ\daggerŽ’‰Řç¸nŽ’œƒ”Ĺ\setminusŽ’×Ăz¸qŽ’ě§ Ĺ\amalgŽ’LŚŰ¸Ž’bŚÝĹ\circŽŽĄ‘@߸zŽ‘SŘţĹ\ddaggerŽ’‰Ř縎’œƒ”Ĺ\cdotŽ’×Ăz¸oŽ’ě§ Ĺ\wrŽ’LŚŰ¸Ž’bŚÝĹ\bulletŽŽŽŽŽŸ@ŐT’…ĚîšT‘˙Vable–ę¨3.3:‘8ŕBinary“OpšSŽeration“SymŹrb˜olsŽŽŽŸÖ(ž3.3.3Ž‘1űCalligraphic–ffupps3ercase“lettersŽŠ@šThe–Ě~letters“ŰAŘ;–˙ţ:“:“:Ž‘Ɯ;‘˙ţŰZ‘Ŕ‰šare“ašŹrv‘˙Xäailable“through“use‘Ě}of“the“st˜yle“c˜hanging‘Ě}command“ă\calš.‘.ŇThisޤ€command›†TbSŽeha•Źrv“es˜lik“e‘†Uthe˜other˜st“yle˜c“hanging‘†Ucommands˜ă\emš,–šeă\itš,“etc.˜so˜its‘†UscopSŽe˜mŹrustŽĄbSŽe–ę¨delimited“as“with“them.‘8ŕThšŹrus“w˜e“can“t˜ypSŽeŽŸ&˙ŸđǍ‘..Ĺ...–?ýfor“the“filter“$\cal“F$“we“have“$\varphi({\cal“F})“=“\cal“G$.ŽŽĄšto‘ę¨obtainŽŸ5‹‘?ł"˛for–UUthe“ lter“¸F‘Sޞwš¸ăe“ha˜v˜e“ľ'˛(¸F‘ţ9˛)–Ç=“¸G‘—Ѳ.ŽŽŸ5Š‘ŸôšThere–jis›ino“need˜to“tabulate˜all“the˜calligraphic“letters,‘!Ysince“they˜are“all˜obtained“bŹryŽĄjust–ba“tšŹrypSŽe“st˜yle“c˜hanging“command.‘ňČW‘˙Ve“will“just“list“them“so“that“w˜e“can“see,‘Bpfor“referenceŽĄpurpšSŽoses,–ę¨what“they“all“lo˜ok“likŹre.‘8ŕHere“they“are:ŽĄĄ‘jă4ŰAB]mC‘ł5D•UVE‘ĂF›1G‘ś.H¨I‘âČJ‘7vK,`LMN‘İO“P–ü–QRS‘ćbT‘ ÍU˜V“W“X‘ÁÓY“ZŽŸ"}şž3.3.4Ž‘1űBinary‘ffops3eratorsŽŸŔšLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X–has“bšSŽeen“taughŹrt“to“recognise“binary‘˙op˜erators“and“set“the“appropriate“space“eitherޤ side–đ‘of“one|i.e.,‘2 it“sets‘đthe“ rst“argumenšŹrt“follo˜w˜ed“b˜y“a‘đlittle“space,‘2 then“the“opSŽeratorŽĄfollo•Źrw“ed›ءb“y˜the˜same˜little˜space˜and˜ nally˜the‘Řśsecond˜argumen“t.‘ T‘˙Vable˜3.3˜sho“ws˜theŽĄbinary–آopSŽerators“that›ŘŁare“aŹrv‘˙Xäailable“via“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X˜conšŹrtrol“w˜ords“(recall“that‘ŘŁthe“binary“opSŽeratorsŽĄ+,–ę¨Űš,“and“Ű“šcan“bšSŽe“tŹryp˜ed“from“the“kŹreyb˜oard).‘8ŕHere“are“some“examples“of“their“use:ŽŸ;,UŸák‘4dbČT‘˙;źyp‘˙}'eŽŽ’ţdcT‘˙;źo‘“çpr–˙}'o“duc“eŽŽ¤™›‘4dbĹ$a+b$Ž’ţdcľa–8ŕ˛+“ľbŽŽĄ‘4dbĹ$(a+b)–?ý\“otimes“c$Ž’ţdc˛(ľa–8ŕ˛+“ľb˛)“¸ “ľcŽŽĄ‘4dbĹ$(a–?ý\vee“b)“\wedge“c$Ž’ţdc˛(ľa–8ŕ¸_“ľb˛)“¸^“ľcŽŽĄ‘4dbĹ$X–?ý-“(A“\cap“B)“=“(X-A)“\cup“(X-B)$Ž’ţdcľX›¸–8ŕ˛(ľA“¸\“ľB‘€q˛)–Ç=“(ľX˜¸–8ŕľA˛)“¸[“˛(ľX˜¸“ľB‘€q˛)ŽŽŽŽŽŸMŞ ž3.3.5Ž‘1űBinary‘ffrelationsŽŚšLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X–´has›´bSŽeen“taughŹrt˜to“recognize˜the“use˜of“binary˜relations,‘žűtoSŽo.‘&ŽT‘˙Vable“3.4˜shoŹrws“thoseŽŸ€ašŹrv‘˙Xäailable–3;via“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X‘3:con˜trol“w˜ords.‘˜There“are“a“few‘3:that“y˜ou“can“obtain‘3:directly“from“theŽŽŸ’ŕ|V45ŽŽŒ‹.•– ° ý\ † ýŸškŹreybSŽoard:‘8ŕŘ<š,–ę¨Ř>š,“=,“and“Űjš.ޤ€‘ŸôT‘˙Vo–˜ˇnegate‘˜śa“symšŹrbSŽol“y˜ou›˜ścan“precede“the˜conšŹrtrol“w˜ord“that“giv˜es‘˜śthe“sym˜bSŽol“b˜y‘˜śa“ă\notš.ŽĄSome–¸rsymŹrbSŽols›¸qcome“with˜ready-made“negations,‘Â|whicŹrh˜should“bSŽe˜used“abSŽo•Źrv“e˜the‘¸ră\notš'ingŽĄmetho•SŽd›÷ˇb“ecause‘÷śthe˜slop“e–÷śof˜the˜negating“line˜is“just˜sligh•Źrtly˜c“hanged–÷śto˜loSŽok“more˜pleasing.ŽĄThŹrus–ę¨ă\notin“šshould“bšSŽe“used“ab˜o•Źrv“e–ę¨ă\not\inš,“and“ă\neq“šshould“b˜e“used“ab˜o•Źrv“e‘ę¨ă\not‘,Í=š.ŽĄ‘ŸôIf–2Ônegating‘2Őa“symŹrbšSŽol“pro˜duces“a›2Őslash“whose“horizonŹrtal˜pSŽositioning“is“not“to˜yŹrour“liking,ŽĄthen–ę¨use“the“math“spacing“cŹrharacters“describSŽed“in“section“3.4.12“to“adjust“it.Ž ›QŁŸ°ŐXŸÉćd‘E¸÷¸Ž‘[¸ůĹ\leqŽ’ĄxٸŽ’ˇxŰĹ\geqŽ’ý8ť¸Ž’˙ÚĹ\equivŽ’AżĆ¸j‘ţUX˛=ŽŽ’WżČĹ\modelsŽŽ¤ ‘E¸÷¸Ž‘[¸ůĹ\precŽ’ĄxٸŽ’ˇxŰĹ\succŽ’ý8ť¸Ž’˙ÚĹ\simŽ’AżĆ¸?Ž’WżČĹ\perpŽŽĄ‘E¸÷¸Ž‘[¸ůĹ\preceqŽ’ĄxٸŽ’ˇxŰĹ\succeqŽ’ý8ť¸'Ž’˙ÚĹ\simeqŽ’AżĆ¸jŽ’WżČĹ\midŽŽĄ‘E¸÷¸Ž‘[¸ůĹ\llŽ’ĄxٸŽ’ˇxŰĹ\ggŽ’ý8ť¸Ž’˙ÚĹ\asympŽ’AżĆ¸kŽ’WżČĹ\parallelŽŽĄ‘E¸÷¸Ž‘[¸ůĹ\subsetŽ’ĄxٸŽ’ˇxŰĹ\supsetŽ’ý8ť¸Ž’˙ÚĹ\approxŽ’AżĆľ.‘ţUX/Ž’WżČĹ\bowtieŽŽĄ‘E¸÷¸Ž‘[¸ůĹ\subseteqŽ’ĄxٸŽ’ˇxŰĹ\supseteqŽŸýT͍’ý8ť¸ŽŽŸ+3’ý8ť˛=ŽŽŽŽŽ’˙ÚĹ\congŽ’AżĆľ.‘ţUX/Ž’WżČĹ\JoinŽŽĄ‘E¸÷ó&TqÔ lasy10Ń<Ž‘[¸ůĹ\sqsubsetŽ’ĄxŮŃ=Ž’ˇxŰĹ\sqsupsetŽ’ý8ť¸6˛=Ž’˙ÚĹ\neqŽ’AżĆľ^Ž’WżČĹ\smileŽŽĄ‘E¸÷¸vŽ‘[¸ůĹ\sqsubseteqŽ’ĄxٸwŽ’ˇxŰĹ\sqsupseteqŽŸúT΍’˙¸źľ:ŽŸŤ2’ý8ť˛=ŽŽŽŽ’˙ÚĹ\doteqŽ’AżĆľ_Ž’WżČĹ\frownŽŽĄ‘E¸÷¸2Ž‘[¸ůĹ\inŽ’Ąxٸ3Ž’ˇxŰĹ\niŽ’ý8ť¸/Ž’˙ÚĹ\proptoŽŽĄ‘E¸÷¸`Ž‘[¸ůĹ\vdashŽ’ĄxٸaŽ’ˇxŰĹ\dashvŽŽŽŽŽŸLŐT’Ą7†šT‘˙Vable–ę¨3.4:‘8ŕBinary“relationsŽŽŽŸ+°ž3.3.6Ž‘1űMiscellaneous‘ffsymŒĚbs3olsŽŠ@šT‘˙Vable–V3.5“shošŹrws“a“n˜um˜bšSŽer“of“general-purp˜ose“sym•Źrb˜ols.‘ {!Remem“b˜er–Vthat“these“are“onlyŽĄaŹrv‘˙Xäailable–Ť´in“maths–ŤłmošSŽde.‘|Note“that–Ť´ă\imath“šand“ă\jmath‘Ťłšshould“b˜e“used“when‘ŤłyŹrou“needŽĄto– ĂaccenŹrt› Âan“Ři˜šor“a“Řj‘ş•šin“maths“moSŽdeŸűĽ2Ö3ŽŽ‘Ŕš|yŹrou˜cannot“use˜ă\i“šor“ă\j˜šthat“w•Źrere˜a“v‘˙Xäailable‘ ĂinŽĄparagraphing–{mošSŽde.‘ę9T‘˙Vo“get“a“prime‘{sym•Źrb˜ol,‘Ÿ7y“ou–{can‘{use“ă\prime“šor“yšŹrou“can“just“t˜ypSŽe“ă'ŽĄšwhen–ę¨in“maths“mošSŽde,“as“in“ă$f''(x)=x$“šwhicŹrh“pro˜duces“Řf‘G˙ŸűĽ2ó1žKČ cmsy8Ü00Ž‘dqš(Řxš)–UR=“Řxš.Ž üOŸśŐXŸĎćd‘K ¸@Ž‘^X÷Ĺ\alephŽ’‰Řć¸0Ž’ž.>Ĺ\primeŽ’Ůn$¸8Ž’ěŃĹ\forallŽ’,˜´¸1Ž’B˜śĹ\inftyŽŽ¤ ‘K ˛‘űľhŽŽ‘^X÷Ĺ\hbarŽ’‰Řć¸;Ž’ž.>Ĺ\emptysetŽ’Ůn$¸9Ž’ěŃĹ\existsŽ’,˜´Ń2Ž’B˜śĹ\BoxŽŽĄ‘K ľ{Ž‘^X÷Ĺ\imathŽ’‰Řć¸rŽ’ž.>Ĺ\nablaŽ’Ůn$¸:Ž’ěŃĹ\negŽ’,˜´¸4Ž’B˜śĹ\triangleŽŽĄ‘K ľ|Ž‘^X÷Ĺ\jmathŽ’‰ŘćŸřćf¸pŽŽŽ’ž.>Ĺ\surdŽ’Ůn$ľ[Ž’ěŃĹ\flatŽ’,˜´¸4Ž’B˜śĹ\triangleŽŽĄ‘K ľ`Ž‘^X÷Ĺ\ellŽ’‰Řć¸>Ž’ž.>Ĺ\topŽ’Ůn$ľ\Ž’ěŃĹ\naturalŽ’,˜´¸|Ž’B˜śĹ\clubsuitŽŽĄ‘K ľ}Ž‘^X÷Ĺ\wpŽ’‰Řć¸?Ž’ž.>Ĺ\botŽ’Ůn$ľ]Ž’ěŃĹ\sharpŽ’,˜´¸}Ž’B˜śĹ\diamondsuitŽŽĄ‘K ¸<Ž‘^X÷Ĺ\ReŽ’‰Řć¸kŽ’ž.>Ĺ\|Ž’Ůn$¸nŽ’ěŃĹ\backslashŽ’,˜´¸~Ž’B˜śĹ\heartsuitŽŽĄ‘K ¸=Ž‘^X÷Ĺ\ImŽŸţL…’‰Řćó O!â…cmsy7ˇ6ŽŽŸł{’ŠüA„W 䎎ŽŽ’ž.>Ĺ\angleŽ’Ůn$ľ@Ž’ěŃĹ\partialŽ’,˜´¸Ž’B˜śĹ\spadesuitŽŽĄ‘K Ń0Ž‘^X÷Ĺ\mhoŽŽŽŽŽŸFŐT’áášT‘˙Vable–ę¨3.5:‘8ŕMiscellaneous“symŹrbSŽolsŽŽŽŸ*kž3.3.7Ž‘1űArro•ŒĚw‘ffsym“bs3olsŽŚšLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X–Mhas›Na“mŹrultitude“of˜arrošŹrw“sym˜bSŽols,‘÷whic˜h“it“will›Nset“the“correct˜space“around.‘ŹĐNoteŽĄthat›wdv•Źrertical‘wearro“ws˜can–weall˜bSŽe˜used“as˜delimiters|see“section˜3.3.8.‘tThe“a•Źrv‘˙Xäailable˜sym“bSŽolsŽŸ 1Z‰ff¸I"Ÿ ‘ ƒŸü^˙ą3ŽŽŽ‘˛See–UUsection“3.3.10ŽŽŸ’ŕ|Vš46ŽŽŒ‹/˘; ° ý\ † ýŸšare–ę¨listed“in“table“3.6.Ž ¤OŕŸŞŐXŸĂćd‘1c˛¸ Ž‘H€)Ĺ\leftarrowŽ’¸?ń¸ ‘ţUXŽŽŽŽ’Ö•LĹ\longleftarrowŽ’FU¸"Ž’\UĹ\uparrowŽŽ¤ ‘1c˛¸(Ž‘H€)Ĺ\LeftarrowŽ’¸?ń¸(‘ţUX˛=ŽŽ’Ö•LĹ\LongleftarrowŽ’FU¸*Ž’\UĹ\UparrowŽŽĄ‘1c˛¸!Ž‘H€)Ĺ\rightarrowŽ’¸?ń¸ŽŽŽ’ž\g!Ž’Ö•LĹ\longrightarrowŽ’FU¸#Ž’\UĹ\downarrowŽŽĄ‘1c˛¸)Ž‘H€)Ĺ\RightarrowŽ’¸?ń˛=Ž’ž\g¸)Ž’Ö•LĹ\LongrightarrowŽ’FU¸+Ž’\UĹ\DownarrowŽŽĄ‘1c˛¸$Ž‘H€)Ĺ\leftrightarrowŽ’¸?ń¸ ‘ţUX!Ž’Ö•LĹ\longleftrightarrowŽ’FU¸lŽ’\UĹ\updownarrowŽŽĄ‘1c˛¸,Ž‘H€)Ĺ\LeftrightarrowŽ’¸?ń¸(‘ţUX)Ž’Ö•LĹ\LongleftrightarrowŽ’FU¸mŽ’\UĹ\UpdownarrowŽŽĄ‘1c˛¸7!Ž‘H€)Ĺ\mapstoŽ’¸?ń¸7ŽŽŽ‘v!Ž’Ö•LĹ\longmapstoŽ’FU¸%Ž’\UĹ\nearrowŽŽĄ‘1c˛¸ ‘ţUXľ-Ž‘H€)Ĺ\hookleftarrowŽ’¸?ńľ,‘ţUX¸!Ž’Ö•LĹ\hookrightarrowŽ’FU¸&Ž’\UĹ\searrowŽŽĄ‘1c˛ľ(Ž‘H€)Ĺ\leftharpoonupŽ’¸?ńľ*Ž’Ö•LĹ\rightharpoonupŽ’FU¸.Ž’\UĹ\swarrowŽŽĄ‘1c˛ľ)Ž‘H€)Ĺ\leftharpoondownŽ’¸?ńľ+Ž’Ö•LĹ\rightharpoondownŽ’FU¸-Ž’\UĹ\nwarrowŽŽĄžU™‘1c˛Ÿţľ*ŽŽŽ‘1c˛)ŽŽŽŽŽŽŽ‘H€)Ĺ\rightleftharpoonsŽ’¸?ńŃ;Ž’Ö•LĹ\leadstoŽŽŽŽŽŸRŐT’¤ ŠšT‘˙Vable–ę¨3.6:‘8ŕArrošŹrw“sym˜bSŽolsŽŽŽŸ,’ ž3.3.8Ž‘1űExpression‘ffdelimitersŽŸ@šA–ę¨pair“of“delimŹrters“often“enclose“an“expression,“as“inŽŸv‘mI Ÿîf\Ť"ŽŸřŚd‘x÷ŘaŸĚĚÖ11ŽŽ’‘JŘaŸĚĚÖ12ŽŽŽŸ˙‘x÷ŘaŸĚĚÖ21ŽŽ’‘JŘaŸĚĚÖ22ŽŽŽŽ’Ľu Ÿîf\Ť#ŽŽ’š Všandޒ׏zŘf‘G˙š(Řxš)–UR=“Ÿîf\Ť(ŽŸřŚd‘cŘxŽ‘%ĐăšifŽ‘0–1Řx“<“š1ŽŽŸ˙‘cŘxŸűĽ2Ö2ŽŽ‘%ĐăšifŽ‘0–1Řx“Ű“š1ŽŽŽŽ‘aŁŘ:ŽŸ!,šLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X–?3will“scale›?4delimiters“to“the“correct˜size“(determined“bŹry“what“they˜enclose)“for“yŹrou,ޤ€if–ÁŒyŹrou“ask›Á‹it“to.‘+,There“are“times“when˜yšŹrou“don't“w˜an˜t“a“delimiter›Á‹to“bSŽe“scaled,‘ÉĹso˜it“is“leftŽĄup–ę¨to“yŹrou“to“ask“for“scaling.ŽĄ‘ŸôT‘˙Vo–ˆÚask“that‘ˆŰa“delimšŹrter“bSŽe“scaleable,‘°gy˜ou“precede‘ˆŰit“b˜y“ă\left“šor‘ˆŰă\right“šaccording“asŽĄit–ÂŮis“the“left“or‘ÂŘrighšŹrt“mem˜bSŽer“of“the“pair.‘ÁsScaled‘ÂŘdelimiters“m˜ust“bSŽe“balanced“correctly‘˙V.ŽĄIt–°şsometimes“ošSŽccurs,‘">as“in“the“righŹrt-hand“example“ab˜o•Źrv“e,‘">that–°şonly“one“memŹrb˜er“of“aŽĄdelimiting–ůÇpair“is“to“bšSŽe“visible.‘f>F‘˙Vor“this“purp˜ose,‘ýuse“the“commands“ă\left.“šand“ă\right.ŽĄšwhicŹrh–˘ôwill›˘őproSŽduce“no˜visible“delimiter˜but“can˜bSŽe“used˜to“correctly˜balance“the˜delimitersŽĄin–(#an›("expression.‘ńPF‘˙Vor“examples“of˜the“use“of˜delimiters,‘7‚see˜section“3.4.11“where˜wŹre“learnŽĄabSŽout‘ę¨arraŹrys.ŽĄ‘ŸôT‘˙Vable–=Ž3.7“shošŹrws“the“sym˜bSŽols“that“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“will“recognise“as“delimiters,‘Roi.e.“sym˜bSŽols“thatŽĄma•Źry›Đifollo“w–Đja˜ă\left˜šor“a˜ă\rightš.‘ę$Note˜that“y•Źrou˜ha“v“e˜to–Đjuse˜ă\left\{˜šand“ă\right\}˜šinŽĄorder–ę¨to“get“scaled“braces.ŽŸ!ěҍž3.3.9Ž‘1űOps3erators–fflikŒĚe“ŸńIîŤZŽ‘ĚÍžand“ŸőfcŤXŽŽŽŽŸ˜5šThese›ÍQbSŽeha•Źrv“e˜di eren“tly–ÍPwhen˜used˜in“displaŹry-math˜moSŽde˜as˜compared“with˜in-text˜mathŽĄmoSŽde.‘R„When›Ţused–ßin“text,‘ĘŹthey“will˜appSŽear“in˜their“small“form˜and“anŹry˜limits“proŹrvidedŽĄwill– óbSŽe“set“so“as“to‘ ňreduce“the“o•Źrv“erall› óheigh“t˜of˜the˜opSŽerator,‘†as˜in‘ ňŸ÷˙üŤPŽŸű*§‘›-ŮNŽŸĚ̍‘›-iÖ=1ŽŽ‘܁ŘfŸĚĚŮiŽ‘dÚš.‘ŸÁWhen˜used˜inŽĄdisplašŹry-math–}‰moSŽde,‘“]LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“will“c˜hoSŽose›}Što“use˜the“larger“form˜and“will“not˜try“to˜reduce“theŽĄheighŹrt–ę¨of“the“opSŽerator,“as“inŽŸĚ΍Ÿň˙ý’Őv.ŮNŽŸ ’Ň ëŸő˙üŤXŽŽŸ ô–’Ňb%ŮiÖ=1ŽŽ’â{˛ŘfŸĚĚŮiŽ‘$ŇŘ:ŽŽŸ’ŕ|Vš47ŽŽŒ‹0ą< ° ý\ † ţUTŸż*ŹŸŐćd‘9N˛(Ž‘JN(ŽŽ’°N)Ž’ÁN)ŽŽ’'N¸"Ž’9jĹ\uparrowŽŽŽ¤ ‘9N˛[Ž‘JN]Ž’°N]Ž’ÁN]Ž’'N¸#Ž’9jĹ\downarrowŽŽĄ‘9N¸fŽ‘JNĹ\{Ž’°N¸gŽ’ÁNĹ\}Ž’'N¸lŽ’9jĹ\updownarrowŽŽĄ‘9N¸bŽ‘JNĹ\lfloorŽ’°N¸cŽ’ÁNĹ\rfloorŽ’'N¸*Ž’9jĹ\UparrowŽŽĄ‘9N¸dŽ‘JNĹ\lceilŽ’°N¸eŽ’ÁNĹ\rceilŽ’'N¸+Ž’9jĹ\DownarrowŽŽĄ‘9N¸hŽ‘JNĹ\langleŽ’°N¸iŽ’ÁNĹ\rangleŽ’'N¸mŽ’9jĹ\UpdownarrowŽŽĄ‘9Nľ=Ž‘JN˛/Ž’°N¸nŽ’ÁNĹ\backslashŽŽĄ‘9N¸jŽ‘JN˛|Ž’°N¸kŽ’ÁNĹ\|ŽŽŽŽŽŸ@ŐT’°CšT‘˙Vable‘ę¨3.7:‘8ŕDelimitersŽŽŽŸ ‘ŸôT‘˙Vable–Ůľ3.8›Ů´describSŽes“what˜v‘˙Xäariable-size“symŹrbSŽols˜are“a•Źrv‘˙Xäailable,‘wsho“wing–ŮľbSŽoth˜the“smallޤ€(in–€?text)“and“the“large“(displa•Źry“ed)–€?form“of“eacšŹrh.‘hIn“section“3.4.1“w˜e“will“learn“ho˜w“to“placeŽĄlimits–ę¨on“these“opSŽerators.Ž ‚qúŸžœYŸŮǍ‘= ŸřüŤPŽ‘I`bŸöüXŽŽŽŽŽ‘cîĹ\sumŽ’ľRčŸřüŤTŽ’ÁIlŸöü\ŽŽŽŽŽ’Ú\eĹ\bigcapŽ’3Ř]ŸřüŤJŽ’@ŸyŸöüKŽŽŽŽŽ’[J'Ĺ\bigodotŽŽ¤‘=řŸřüŤQŽ‘JŸöüYŽŽŽŽŽ‘cîĹ\prodŽ’ľRčŸřüŤSŽ’ÁIlŸöü[ŽŽŽŽŽ’Ú\eĹ\bigcupŽ’3Ř]ŸřüŤNŽ’@ŸyŸöüOŽŽŽŽŽ’[J'Ĺ\bigotimesŽŽĄ‘=řŸřüŤ`Ž‘JŸöüaŽŽŽŽŽ‘cîĹ\coprodŽ’ľRčŸřüŤFŽ’ÁIlŸöüGŽŽŽŽŽ’Ú\eĹ\bigsqcupŽ’3Ř]ŸřüŤLŽ’@ŸyŸöüMŽŽŽŽŽ’[J'Ĺ\bigoplusŽŽŸ}‘?Ň+Ÿ÷ńÄŤRŽ‘K Ÿňc‡ZŽŽŽ‘cîĹ\intŽ’ľRčŸřüŤWŽ’ÁIlŸöü_ŽŽŽŽŽ’Ú\eĹ\bigveeŽ’6@ŞŸřüŤUŽ’B7.Ÿöü]ŽŽŽŽŽ’[J'Ĺ\biguplusŽŽŸ8󍍍‘?Ň+Ÿ÷ńÄŤHŽ‘K Ÿňc‡IŽŽŽ‘cîĹ\ointŽ’ľRčŸřüŤVŽ’ÁIlŸöü^ŽŽŽŽŽ’Ú\eĹ\bigwedgeŽŽŽŽŽŸ?S’lçšT–˙Vable›ę¨3.8:‘8ŕV“ariable-sized˜symŹrbSŽolsŽŽŽŸ.uWž3.3.10Ž‘9™”AccenŒĚtsŽŸ@šThe–lfaccenšŹrting“commands“that“w˜e“learned“for‘leparagraphing“moSŽde“do“not“apply“in“mathsŽĄmoSŽde.‘ÚConsult›7Ľtable–7Ś3.9“to“see“hoŹrw“to˜accenšŹrt“a“sym˜bšSŽol“in“maths“mo˜de‘7Ľ(all“the“examplesŽĄthere–¨.accenšŹrt“the“sym˜bSŽol“Řuš,‘ľzbut“they“w˜ork“with“an˜y“letter).‘"ˇRemem˜bSŽer“that“Ři“šand“Řj‘UšshouldŽĄlose–ę¨their“dots“when“accenŹrted,“so“ă\imath“šand“ă\jmath“šshould“bSŽe“used.ŽĄ‘ŸôThere–˘*also“exist›˘+commands“that“givŹre“a“\wide˜hat"“or“a“\wide“tilde"˜to“their“argumenŹrt,ŽĄă\widehat–ꨚand“ă\widetildeš.ŽŸFURŸÝ*ŹŸóćd‘[íP˛^Ž‘[ItľuŽŽŽ‘móĹ\hat¸fĹu¸gŽ’¨f˝˛Ž’§ÂáľuŽŽŽ’š|`Ĺ\acute¸fĹu¸gŽ’ôŕ*˛Ž’ôă_–Ýzćand“ă^ŽĄćset–_ăthe›_âgr‘˙ffoup“that“fol‘™™lows˜them“as“a˜sub-“and˜sup‘˙fferscripts“to“the˜gr›˙ffoup“that“pr˜e˜c˜e˜des‘_âthe“sub-ŽĄand‘Źsup–˙fferscript‘­symb“ols.‘(šW‘˙Ve–¸see‘¸nošŹrw“no˜w“that“our“initial“examples‘¸w˜ork˜ed“b˜y“consideringŽĄa–ę¨single“cšŹrharacter“to“bSŽe“a“group“b˜y“itself.‘8ŕHere“are“some“examples:ŽŽŸ’ŕ|V49ŽŽŒ‹2Ëh ° ý\ † ýŰł:ŸÂ8I‘i‡żČT‘˙;źyp‘˙}'eŽŽ’3‡ŔT‘˙;źo‘“çpr–˙}'o“duc“eŽŽ¤™›‘i‡żĹ$a^2b^3$Ž’3‡ŔľaŸü^˙ą2Ž‘|sľbŸü^˙ą3ŽŽŽĄ‘i‡żĹ$2^{21}$Ž’3‡Ŕ˛2Ÿü^˙ą21ŽŽŽĄ‘i‡żĹ$2^21$Ž’3‡Ŕ˛2Ÿü^˙ą2Ž‘|s˛1ŽŽĄ‘i‡żĹ$a^{x+1}$Ž’3‡ŔľaŸü^˙´xą+1ŽŽŽĄ‘i‡żĹ$a^{x^2+1}$Ž’3‡ŔľaŸü^˙´xŸüűr°2Ž‘ç ą+1ŽŽŽĄ‘i‡żĹ$(x+1)^3$Ž’3‡Ŕ˛(ľx–8ŕ˛+“1)Ÿü^˙ą3ŽŽŽĄ‘i‡żĹ$\Gamma_{\alpha\beta\gamma}$Ž’3‡Ŕ˛Ÿ˙´ \ ŽŽŽĄ‘i‡żĹ${}_1A_2$Ž’3‡ŔŸ˙ą1Ž’83ľAŸ˙ą2ŽŽŽŽŽŽŸ`‘ŸôšIn–ÎÍthe›ÎĚvŹrery“last˜example“wŹre˜see“a“case˜of“setting˜a“subscript˜to“an“empt•Źry˜group,‘Ô_whic“hޤ€resulted–0rin›0qa“kind˜of“\pre-subscript".‘ œçŸ÷h‰fe̸Ÿ˜ľa–8ŕ˛+“ľbŽŽŽŽŽŽŸĆӍ‘ggöĹ$\sqrt[n]{\frac{1+x}{1+x^2}}$Ž’8n ŸűRüłnŽ’7Gܟđ´ŤrŽ’AGݟđ´‰feŇԟKńŸů<$‘qm˛1–8ŕ+“ľxŽ‘33Ÿw‰felnŸ (֍˛1–8ŕ+“ľxŸýrą2ŽŽŽŽŽŽŽŽŽŸšd‘ggöĹ$\frac{\sqrt{x+1}}‘?ý{\sqrt[3]{x^3+1}}$ŽŸů<$’9hůŸř$ű¸pŽ’AžPŸř$ű‰feďűŸŰľx–8ŕ˛+“1ŽŽŽ’6ÚťŸw‰fe$a͟ UN‘ÇŸűGް3Ž‘ Ÿ÷ŞŤ¸pŽ‘ő_Ÿ÷ŞŤ‰felnŸUUľxŸýrą3Ž‘ľS˛+‘8ŕ1ŽŽŽŽŽŽŽŽŽŽŽŽŽŸZ ʍž3.4.5Ž‘1űEllipsisŽŚšSimply–‘wtŹryping›‘xthree“p•SŽerio“ds˜in–‘wa˜roŹrw“will˜not“givŹre˜the“correct˜spacing“of˜the“p•SŽerio“ds˜if‘‘wit˜isŽĄan–v(ellipsis›v)that“is˜desired.‘ So“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X˜proŹrvides“the˜commands“ă\ldots˜šand“ă\cdotsš.‘ CenŹrteredŽĄellipsis–ę¨should“bšSŽe“used“b˜et•Źrw“een‘ę¨sym“b˜ols›ę¨lik“e˜+,˜Űš,˜Űš,˜Űš,˜and˜=.‘8ŕHere˜are˜some˜examples:ŽŸ=ÖiŸák‘CBČT‘˙;źyp‘˙}'eŽŽ’&T‘˙;źo‘“çpr–˙}'o“duc“eŽŽ¤™›‘CBĹ$a_1+–?ý\cdots“+“a_n$Ž’&ľaŸ˙ą1Ž‘ľS˛+‘8ถި“Ž‘g˛+‘8ŕľaŸ˙´nŽŽŽĄ‘CBĹ$x_1–?ý\times“x_2“\times“\cdots“\times“x_n$Ž’&ľxŸ˙ą1Ž–ľS¸›8ŕľxŸ˙ą2Ž“¸˜–ި“Ž‘g˜ľxŸ˙´nŽŽŽĄ‘CBĹ$v_1–?ý=“v_2“=“\cdots“=“v_n“=“0$Ž’&ľvŸ˙ą1Ž–C‹˛=›ÇľvŸ˙ą2Ž“˛=˜¸–ި“Ž‘8ײ=˜ľvŸ˙´nŽ‘8–˛=˜0ŽŽĄ‘CBĹ$f(x_1,\ldots,x_n)–?ý=“0$Ž’&ľf‘˛(ľxŸ˙ą1Ž‘|sľ;–ި:“:“:Ž‘˙÷;‘ިxŸ˙´nŽ‘q~˛)–Ç=“0ŽŽŽŽŽŸQňž3.4.6Ž‘1űT‘ţŚfext–ffwithin“an“expressionŽŚšOne–Ľ¨can“use“the›ĽŠă\mbox“šcommand“to“insert“normal“text“inŹrto˜an“expression.‘!ŕThis“commandŽĄforces–“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X›”tempSŽorarily“out˜of“maths˜moSŽde,‘Cdso˜that“its˜argumenŹrt“will˜bSŽe“treated˜as“normalŽĄtext.‘„It's–˝use‘źis“simple,‘ but“wšŹre“m˜ust“bSŽe“w˜ary“on“one“coun˜t:‘k remem˜bSŽer“that“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“ignoresŽĄall–• space›•cŹrharacters“when˜in“maths“moSŽde;‘ą˘so“to˜surround“wŹrords“in˜an“expression˜that“wŹrereŽĄplaced–XŹbšŹry“an‘X­ă\mbox“šcommand“b˜y“space“y˜ou‘X­m˜ust“include“the“space“in‘X­the“ă\mbox“šargumen˜t.ŽŸ.<΍Ÿń‘í|ČT‘˙;źyp‘˙}'eŽŽ’,ęT‘˙;źo‘“çpr–˙}'o“duc“eŽŽ¤™›‘í|Ĺ$f_i(x)–?ý\leq“0“\mbox{“for“}“x“\in“I$Ž’,ęľfŸ˙´iŽ‘TL˛(ľx˛)–Ǹ“˛0‘UUforŽ‘ِľx“¸2“ľIŽŽĄ‘í|Ĺ$\Gamma(n)=(n-1)!–?ý\mbox{“when“$n$“is“an“integer}$Ž’,ę˛(ľn˛)–Ç=“(ľn–8ณ˛1)!–UUwhen“ľn“˛is“an“in¸ătegerŽŽŽŽŽŽŸ/<͍‘ŸôšIn–Łsection“3.4.12›˘wŹre'll“learn“of“some“spSŽecial˜spacing“commands“that“can“bSŽe˜used“in“mathŽĄmošSŽde.‘ -×These–&šsinŽ’âŤBŘhŽ’Ň>&ŸQm‰fe0ڟ  ‘6ŽhŽŽŽŽ’í÷Qš=‘UR1‘ żřŘ:ŽŸ=6‘ŸôšW‘˙Ve–ę¨knošŹrw“that“simply“t˜yping“ă$log\theta$“šw˜ould“proSŽduce“the“incorrect“resultŽĄ’Űš˜ŘlCogn9ŽŚšand–€that“using“ă$\mbox{log}\theta$“šwšŹrould“lea˜v˜e“us“ha˜ving“to“insert“a“little“extra“spaceޤ€bSŽet•Źrw“een–ę¨the“log“and“the“ŘŽĄ’Ôr%šlogŽ’ăuŠŘ‘ †:ŽŸ,ĽšSo–ÔLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X›ŐproŹrvides“a“collection˜of“\log-likŹre˜functions"“de ned“as˜conŹrtrol“sequences.‘ÉeT‘˙Va-ŽĄble–ę¨3.10“shošŹrws“those“that“are“a˜v‘˙Xäailable.‘8ŕHere“are“some“examples“of“their“use:ŽŸ9ż{Ÿák‘BRÍČT‘˙;źyp‘˙}'eŽŽ’*ŇPT‘˙;źo‘“çpr–˙}'o“duc“eŽŽ¤™›‘BRÍĹ$f(x)=\sin–?ýx“+“\log(x^2)$Ž’*ŇPľf‘˛(ľx˛)–Ç=“sinŽ‘¸Ţľx–8ŕ˛+“logŽ‘#Œ(ľxŸü^˙ą2Ž‘|s˛)ŽŽĄ‘BRÍĹ$\delta–?ý=“\min“\{“\delta_1,“\delta_2“\}$Ž’*ŇPľ‘'ű˛=‘ÇminŽ‘qƸfľŸ˙ą1Ž–|sľ;‘ިŸ˙ą2Ž“¸gŽŽĄ‘BRÍĹ$\chi(X)–?ý=“\sup_{x\in“X}“\chi(x)$Ž’*ŇPľ˛(ľX‘Čâ˛)–Ç=“supŽ‘ŐSŸqĆ´xˇ2´XŽ‘%’ľ˛(ľx˛)ŽŽĄ‘BRÍĹ$\lim_{n–?ý\rightarrow“\infty}“S_n“=“\gamma$Ž’*ŇP˛limŽ’8ľáŸ˙´nˇ!1Ž’OĂŃľSŸ˙´nŽ‘8–˛=‘Çľ ŽŽŽŽŽŸ:ż{‘ŸôšNotice–ÄwhoŹrw“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X›ÄvdoSŽes“more“than“just“set˜an“opSŽeration“likŹre“sup“in˜roman“tŹrypSŽe.‘,%It“alsoŽĄknew–ę¨where“a“subscript“to“that“opSŽerator“should“go.ŽŸ")ąž3.4.8Ž‘1űOvŒĚer-–ffand“Underlining“and“bracingŽŸ@šThe–œpă\underline“šcommand“will“place“an“un•Źrbrok“en–œpline“under“its“argumenŹrt,‘ßHand“the“ă\overlineŽĄšcommand–‹Qwill“place“an“un•Źrbrok“en‘‹Rline›‹Qo“v“er˜its˜argumen“t.‘These˜t“w“o‘‹Rcommands˜can˜also˜bSŽeŽĄused–tœin“normal“paragraphing“mošSŽde“(but“b˜e“careful:‘LÇLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“will“not“break“the“line“withinŽĄan–ę¨under-“or“o•Źrv“erlined–ę¨phrase,“so“don't“go“opSŽerating“on“large“phrases).ŽĄ‘ŸôY‘˙Vou–ŕcan“place‘ŕhorizonšŹrtal“braces“abSŽo˜v˜e“or‘ŕbSŽelo˜w“an“expression“b˜y‘ŕmaking“that“expressionŽĄthe–r5argumenšŹrt“of“ă\overbrace“šor“ă\underbraceš.‘ χY‘˙Vou“can“place“a“labSŽel“on“an“o˜v˜erbraceŽĄ(resp.–1ôunderbrace)›1óbŹry“supSŽerscripting“(resp.“subscripting˜the“group“de ned“bŹry˜the“bracingŽĄcommand.ŽŽŸ’ŕ|V53ŽŽŒ‹6ú$ ° ý\ † ýŹé„Ÿń˙‘ar˙ČT‘˙;źyp‘˙}'eŽŽ’+sT‘˙;źo‘“çpr–˙}'o“duc“eŽŽŸ™›‘ar˙Ĺ$\overline{a+bi}–?ý=“a-“bi$Ž’+sŸ÷Ű ‰fe>ʟ$öľa–8ŕ˛+“ľbiŽŽ’GxIJ=‘Çľa–8ณľbiŽŽŸŸŃ‘ar˙Ĺ$\overline{\overline{a+bi}}–?ý=“a+bi$Ž’+sŸőۉfe>ʟ $÷Ű ‰fe>ʟ$öľa–8ŕ˛+“ľbiŽŽŽ’GxIJ=‘Çľa–8ŕ˛+“ľbiŽŽŽŽŽŸ1>׍‘ŸôšAnd–ę¨some“examples“of“horizonŹrtal“bracing:ŽŸ>˙ŸŘǍ‘..Ĺ$A^n=\overbrace{A–?ý\times“A“\times“\ldots“\times“A}^{\mbox{$n$“terms}}$ޤ Ą‘..$\forall–?ýx“\underbrace{\exists“y“(y“\succ“x)}_{\mbox{scope“of“$\forall$}}$ŽŽ¤€šwill‘ę¨proSŽduceŽŸ>’­÷ŘAŸű ™ŮnŽ‘ý˘š=Ÿî™‘•Řn‘ꨚtermsŽŸfcŸôĚ͍‘URŤz„31!˘}|„31!˘{ŽŽŸ 33‘URŘA–ިŰ“ŘA“ۍ“Ř:–˙ţ:“:Ž‘đŰ“ŘAŽŽŽŽŽŽŸšandŽĄ’ÄÍ]Ű8Řx‘|VŰ9Řyn9š(Řy‘ËŰ‘URŘxš)ŽŽŽŸ31‘|VŤ|„31fš{z„31f™}ŽŽŽŽŸ30‘˙ţšscopSŽe–ę¨of“Ű8ŽŽŽŸ3S.ž3.4.9Ž‘1űStac•ŒĚking‘ffsym“bs3olsŽŠ@šLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X–oúallošŹrws“y˜ou“to“set“one“sym˜bšSŽol“ab˜o•Źrv“e–oúanother“through‘oűthe“ă\stackrel“šcommand.‘űThisŽĄcommand–ę¨accepts“t•Źrw“o›ę¨argumen“ts,˜and˜sets˜the˜ rst˜cen“trally˜abSŽo“v“e˜the˜second.ŽŸ1Ž–Ÿď˛A‘^€ČT‘˙;źyp‘˙}'eŽŽ’1˙ŹT‘˙;źo‘“çpr–˙}'o“duc“eŽŽŸ*I‘^€Ĺ$X‘?ý\stackrel{f^*}{\rightarrow}Y$Ž’1˙ŹľXŸůŰꍑ!M´f‘ČäŸüűrśŽŽŸ$‘ú¸!ŽŽŽ‘WľYŽŽŸޟ‘^€Ĺ$f(x)–?ý\stackrel{\triangle}{=}“x^2“+“1$Ž’1˙Źľf‘˛(ľx˛)ŸůŰꍑnˇ4ŽŸ$‘Dz=ŽŽŽ‘ UNľxŸü^˙ą2Ž‘ľS˛+‘8ŕ1ŽŽŽŽŽŸE덍ž3.4.10Ž‘9™”Ops3erators;–ffSums,“InŒĚtegrals,“etc.ŽŚšEacšŹrh– sof“the“opSŽeration“sym˜bšSŽols“in“table“3.8“can“o˜ccur“with“limits.‘őyThey“are“sp˜eci ed“as“sub-ŽĄand–M€supšSŽerscripts‘Mto“the“op˜erator,‘lîand“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X‘Mwill“p˜osition“them–Mappropriately‘˙V.‘~In“an‘M€in-textŽĄformŹrula–g˜they“will›g—appSŽear“in“more-or-less“the˜usual“scripting“pSŽositions;‘Śbut˜in“a“displa•Źry“edŽĄformŹrula–‡@they›‡?will“bSŽe“set˜bšSŽeloŹrw“and“ab˜o•Źrv“e‘‡@the‘‡?sym“b˜ol›‡@(whic“h˜will–‡?also˜bSŽe˜a“little˜larger).ŽĄThe–ę¨follošŹrwing“should“giv˜e“y˜ou“an“idea“of“ho˜w“to“use“them:ŽŸG˘%ŸŮž˛‘EČT‘˙;źyp‘˙}'eŽŽ’M„uT‘˙;źo‘“çpr–˙}'o“duc“eŽŽ¤™›‘EĹ$\sum_{i=1}^{N}‘?ýa_i$Ž’M„uŸřüŤPŽŸúřލ’X°´NŽŸ%’X°ią=1ŽŽ’g1§ľaŸ˙´iŽŽŽĄ‘EĹ$\int_a^b‘?ýf$Ž’M„uŸ÷ńÄŤRŽŸújŚ’T/ ´bŽŸ #–’R=YaŽŽ’YŢ ľfŽŽĄ‘EĹ$\oint_{\cal‘?ýC}f(x)\,dx$Ž’M„uŸ÷ńÄŤHŽ’R=YŸŽ<ˇCŽ’Yßľf‘˛(ľx˛)‘ިľdxŽŽĄ‘EĹ$\prod_{\alpha–?ý\in“A}“X_\alpha$Ž’M„uŸřüŤQŽ’Vö>Ÿ´ ˇ2´AŽ’işçľXŸ˙´ ŽŽŽĄ‘EĹ$\lim_{N\rightarrow\infty}\sum_{i=1}^{N}f(x_i)\Delta‘?ýx_i$Ž’M„u˛limŽ’[hŸ˙´N‘Ŕ,ˇ!1Ž’tš)ŸřüŤPŽŸúřލ’(d´NŽŸ%’(dią=1ŽŽ’ŽG[ľf‘˛(ľxŸ˙´iŽ‘TL˛)ľxŸ˙´iŽŽŽŽŽŽŽŸ’ŕ|Vš54ŽŽŒ‹7$ ° ý\ † ýŸ‘ŸôšW‘˙Ve'll›ÔÎha•Źrv“e–ÔÍmore˜to“saŹry˜abSŽout“the˜use“of˜ă\,“šin˜section“3.4.12.‘1—Let's˜ha•Źrv“e–ÔÍa˜loSŽok“at˜eacŹrhޤ€of–ę¨those“expressions“when“displa•Źry“ed:ŽĄŸwzŸň˙ý‘@ňŮNŽŸ ‘<łŻŸő˙üŤXŽŽŸ ô–‘= éŮiÖ=1ŽŽ‘M%vŘaŸĚĚŮiŽ‘$ŇŘ;‘ żöŸń㇫ZŽŸő2‘ż÷ŮbŽŸŽH‘N0aŽŽ‘âŃŘf‘ ÷;‘ żöŸń㇫IŽ‘N0ŸœzÜCŽ‘ťíŘf–G˙š(Řxš)‘˙ţŘdx‘ żř;‘}Ÿő˙üŤYŽŽŸ "%‘ żöŮ Ü2ŮAŽŽ‘!>ŘXŸĚĚŮ Ž‘ľŘ;‘ăšlimŽŸ"!‘ żöŮN‘Ú"Ü!1ŽŽŸň˙ý‘+ŋŮNŽŸ ‘(YHŸő˙üŤXŽŽŸ ô–‘(ą‚ŮiÖ=1ŽŽ‘8ËŘf“š(ŘxŸĚĚŮiŽ‘dÚš)ŘxŸĚĚŮiŽŽŸ)O_ž3.4.11Ž‘9™”ArraŒĚysŽŸ@šThe–Őˇăarray“šen•Źrvironmen“t›Őˇis‘Őśpro“vided˜for˜t“ypSŽesetting˜arra“ys˜and˜arra“y-lik“e‘Őśmaterial.‘ ú ItŽĄaccepts‘ˇkt•Źrw“o›ˇlargumen“ts,‘ÁŞone˜optional–ˇkand˜one“mandatory‘˙V.‘'ĚThe“optional˜argumenŹrt“spSŽeci esŽĄthe–MfvšŹrertical“alignmen˜t“of“the“arra˜y|use‘Mgătš,‘lŮăbš,›lÚor“ăc“što“align“the“top,˜bSŽottom,˜or“cenŹrtre“of“theŽĄarrašŹry–ŰŚwith“the“cen˜treline›ۧof“the“line“it“oSŽccurs“on“(the“default˜bSŽeing“ăcš).‘ފThe“second“argumenŹrtŽĄis–ăďas›ăîfor“the˜ătabular“šen•Źrvironmen“t:‘+ma˜series–ăďof˜ălš,‘"Aărš,‘"@and˜ăcš's“that˜spSŽecify“the˜n•Źrum“bSŽer‘ăďofŽĄcolumns–žand›the“justi cation˜of“these“columns.‘ËŔThe“b•SŽo“dy–žof˜the“ăarray˜šen•Źrvironmen“t‘žusesŽĄthe–’same›’ synŹrtax“as“the“ătabular˜šen•Źrvironmen“t–’to“spSŽecify˜the“individual“enŹrtries“of˜the“arraŹry‘˙V.ŽĄ‘ŸôF‘˙Vor–ę¨instance“the“inputŽŸV˙ŸŔǍ‘..Ĺ...–?ýlet“$A“=“\begin{array}{rrr}ޤ ‘..12–?ý&“3“&“4\\ŽĄ‘..-2–?ý&“1“&“0\\ŽĄ‘..3–?ý&“7“&“9ŽĄ‘..\end{array}$‘?ý...ŽŽĄšwill–ę¨proSŽduce“the“outputŽŸŐ_‘?ł"˛let‘UUľA–Dz=ŸëćZ“Ť2ŽŸ “4ŽŽŸóćd‘8á˛12Ž‘%8ă3Ž‘48ä4ŽŽ¤ ‘qĸ˛2Ž‘%8ă1Ž‘48ä0ŽŽĄ‘8â3Ž‘%8ă7Ž‘48ä9ŽŽŽŸëćZ‘>8ĺŤ3ŽŸ ‘>8ĺ5ŽŽŽŽŽŸ€ ‘ŸôšNote–"Ŕthat“wšŹre“had‘"Áto“c˜hoSŽose“and“supply“the“enclosing“brac˜k˜ets‘"Áourselv˜es“(they“are“notŽĄplaced–…‚for“us“so“that“wšŹre‘…can“use“the“ăarray“šen˜vironmen˜t“for“arra˜y-lik˜e“material;‘Ňďalso,‘Ź8w˜eŽĄget–S¨to“cšŹrhoSŽose‘SŠwhat“t˜ypSŽe“of“brac˜k˜ets“w˜e“w˜an˜t‘SŠthis“w˜a˜y).‘sŕAs“in‘SŠthe“ătabular“šen˜vironmen˜t,ŽĄthe–ę¨scopSŽe“of“a“command“givšŹren“inside“a“matrix“en˜try“is“restricted“to“that“en˜try‘˙V.ŽĄ‘ŸôW‘˙Ve–ę¨can“use“ellipsis“within“arrašŹrys“as“in“the“follo˜wing“example:ŽŸb˙Ÿ´Ç‘..Ĺ\det–?ýA“=“\left|“\begin{array}{cccc}ޤ ‘..a_{11}–?ý&“a_{12}“&“\cdots“&“a_{1n}\\ŽĄ‘..a_{21}–?ý&“a_{22}“&“\cdots“&“a_{2n}\\ŽĄ‘..\vdots–?ý&“\vdots“&“\ddots“&“\vdots\\ŽĄ‘..a_{m1}–?ý&“a_{m2}“&“\cdots“&“a_{mn}ŽĄ‘..\end{array}‘?ý\right|ŽŽĄšwhicŹrh‘ę¨proSŽducesŽŸ$)>‘?ł"˛detŽ‘OAZľA–Dz=ŸâŤ ޤ“ ŽĄ“ ŽĄ“ ŽĄ“ ŽĄ“ ŽĄ“ ŽĄ“ ŽĄ“ ŽŽŸę’z‘ ށľaŸ˙ą11ŽŽ‘'ˆżľaŸ˙ą12ŽŽ‘@Ř鸖ި“ŽŽ‘X¤ľaŸ˙ą1´nŽŽŽ¤ ‘ ށľaŸ˙ą21ŽŽ‘'ˆżľaŸ˙ą22ŽŽ‘@Ř鸖ި“ŽŽ‘X¤ľaŸ˙ą2´nŽŽŽŸ§ÔŸř‘'ţ˛.ޤ‘'ţ.ŽĄ‘'ţ.ŽŽŽŸř‘-<.ޤ‘-<.ŽĄ‘-<.ŽŽŽŸů‘Ag!.ŽŽ‘EJޟü.Ž‘I.;Ÿ˙.ŽŽŽŸř‘^ Ś.ޤ‘^ Ś.ŽĄ‘^ Ś.ŽŽŽŽĄ‘ mľaŸ˙´mą1ŽŽ‘%úŤľaŸ˙´mą2ŽŽ‘@Ř鸖ި“ŽŽ‘VƒľaŸ˙´mnŽŽŽŽŸâmVŮŤ ޤ‘mVŮ ŽĄ‘mVŮ ŽĄ‘mVŮ ŽĄ‘mVŮ ŽĄ‘mVŮ ŽĄ‘mVŮ ŽĄ‘mVŮ ŽĄ‘mVŮ ŽŽŽŽŽŽŸ’ŕ|Vš55ŽŽŒ‹8Ü ° ý\ † ýŸ‘ŸôšThe–ľăarray“šen•Źrvironmen“t›ľis–ľoften“used“to˜tŹrypšSŽeset“material“that“is“not,‘żČstrictly“sp˜eaking,ޤ€an‘ę¨arraŹry:ŽŸJ˙ŸĚǍ‘..Ĺf(x)–?ý=“\left\{“\begin{array}{ll}ޤ ‘8“(x–?ý&“\mbox{for“$x<1$}\\ŽĄ‘..x^2–?ý&“\mbox{for“$x“\geq“1$}ŽĄ‘..\end{array}‘?ý\right.ŽŽĄšwhicŹrh–ę¨will“yieldŽŸŐ[‘?ł"ľf‘˛(ľx˛)–Ç=“Ÿńć^ŤŽŸůćd‘GľxŽ‘#z¨˛for‘UUľx“<“˛1ŽŽŽŸ ‘GľxŸü^˙ą2ŽŽ‘#z¨˛for‘UUľx“¸“˛1ŽŽŽŽŽŽŽŸ(J˛ž3.4.12Ž‘9™”Changes–ffto“spacingŽŸ@šSometimes–{ßLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X›{Ţneeds“a“little˜help“in“spacing˜an“expression,‘ ,or“pSŽerhaps“yŹrou˜think“thatŽĄthe–Hňdefault›Hńspacing“needs“adjusting.‘ S˝F‘˙Vor“these˜purpSŽoses“wšŹre“ha˜v˜e“the‘Hńfollo˜wing“spacingŽĄcommands:ŽŸż˙Ÿńfd‘Ÿőă\,Ž‘B÷šthin‘ę¨spaceŽ’˝"2ă\:Ž’î/šmedium‘ę¨spaceŽŽ¤˙‘Ÿőă\!Ž‘B÷šnegativŹre–ę¨thin“spaceŽ’˝"2ă\;Ž’î/šthicŹrk‘ę¨spaceŽŽĄ‘Ÿőă\quadŽ‘B÷ša–ę¨quad“of“spaceŽ’˝"2ă\qquadŽ’î/št•Źrw“o–ę¨quads“of“spaceŽŽŽŽŽŸ"R‘ŸôThe–VŚspacing›VĽcommands“ă\,š,‘t?ă\quadš,‘t@and˜ă\qquad“šcan˜bSŽe“used˜in“paragraphing˜mo•SŽde,‘t@to“o.ŽĄHere–÷are“some“examples“of“these“spacing‘÷€commands“used“to“makŹre“subtle“moSŽdi cations“toŽĄsome‘ę¨expressions.ŽŸOn󍍍ŸŃŃ䍍‘Xs}ČT‘˙;źyp‘˙}'eŽŽ’&łT‘˙;źo‘“çpr–˙}'o“duc“eŽŽ¤™›‘Xs}Ĺ$\sqrt{2}–?ý\,“x$Ž’&łŸ÷şP¸pŽ’/fŸ÷şP‰feŸE°˛2ŽŽŽ’5łľxŽŽĄ‘Xs}Ĺ$\int_a^b‘?ýf(x)\,dx$Ž’&łŸ÷ńÄŤRŽŸújŚ’-]ş´bŽŸ #–’+kóaŽŽ’3 Śľf‘˛(ľx˛)‘ިľdxŽŽĄ‘Xs}Ĺ$\Gamma_{\!2}$Ž’&ł˛‘ţ˘_Ÿ˙ą2ŽŽŽĄ‘Xs}Ĺ$\int_a^b–?ý\!“\int_c^d“f(x,y)\,dx\,dy$Ž’&łŸ÷ńÄŤRŽŸújŚ’-]ş´bŽŸ #–’+kóaŽŽ’1aţŸ÷ńÄŤRŽŸújŚ’8 Š´dŽŸ #–’6âcŽŽ’>aľf‘˛(ľx;–ިy[ٲ)“ľdx“dyŽŽĄ‘Xs}Ĺ$x–?ý/“\!“\sin“x$Ž’&łľx=˛sinŽ‘ ńĆľxŽŽĄ‘Xs}Ĺ$\sqrt{\,\sin‘?ýx}$Ž’&łŸ÷œX¸pŽ’/fŸ÷œX‰feSŠŸc¨‘ި˛sinŽ‘œnľxŽŽŽŽŽŽŽŽŸf.óëH3.5Ž‘,GŤAlignmen‘˙uÂtŽŸb#šRecall–@that“the›@ă$equation$“šen•Źrvironmen“t–@can“bSŽe“used“to˜displašŹry“and“automatically“n˜um˜bSŽerŽĄa–={single-“line–=|equationŸűĽ2Ö4ŽŽ‘Ŕš.‘1YThe“ăeqnarray›={šen•Źrvironmen“t˜is˜used˜for‘=|displa“ying˜and˜automati-ŽĄcally›öUn•Źrum“bSŽering–öTeither˜a“single˜expression“that˜spreads“o•Źrv“er˜sev“eral–öTlines˜or“mŹrultiple˜expres-ŽĄsions,‘(while–taking›care“of“alignmenŹrt˜for“us.‘ŚThe“synŹrtax“is˜similar“to˜that“of˜the“ătabularŽĄšand‘¤ăarray›¤šen•Źrvironmen“ts,‘˛3except˜that–¤no“argumenŹrt˜is“necessary“to˜declare“the˜n•Źrum“bSŽer‘¤andŽŸ Ý݉ff¸I"Ÿ ‘ ƒŸü^˙ą4ŽŽŽ‘˛See–UUsection“3.2ŽŽŸ’ŕ|Vš56ŽŽŒ‹9m ° ý\ † ýŸšjusti cation–áěof“columns.‘ŹThe“ăeqnarray*“šen•Źrvironmen“t–áědošSŽes“this“without“n•Źrum“b˜ering‘áěan“yޤ€equations.ŽŠJ˙ŸĚǍ‘..Ĺ\begin{eqnarray}ޤ ‘..(a+b)(a+b)–?ý&“=“&“a^2“+“2ab“+“b^2\\ŽĄ‘..(a+b)(a-b)–?ý&“=“&“a^2“-“b^2ŽĄ‘..\end{eqnarray}ŽŽĄšwill‘ę¨givŹreŽĄ¤ř‚’“Ęe(Řa–ިš+“Řbš)(Řa“š+“Řbš)ŽŽ’ăVű=ŽŽ’özƒŘaŸű ™Ö2Ž‘jŹš+–ި2Řab“š+“ŘbŸű ™Ö2ŽŽŽ’´‘—š(3.1)ŽŽŽŸ€’“˜–(Řa–ިš+“Řbš)(Řa“Ű“Řbš)ŽŽ’ăVű=ŽŽ’özƒŘaŸű ™Ö2Ž‘jŹŰ‘ިŘbŸű ™Ö2ŽŽŽ’´‘—š(3.2)ŽŽŽĄ‘ŸôSee–™ŤhošŹrw“w˜e‘™Şiden˜tify“the“columns“so›™Şas“to“line“the˜=“signs“up.‘áW‘˙Ve“can˜also“lea•Źrv“e‘™Ťen“triesޤ€emptšŹry‘˙V,–ę¨to“obtain“e ect“lik˜e“the“follo˜wing:ŽŸb˙Ÿ´ÇĹ\begin{eqnarray*}ޤ \frac{d}{dx}–?ý\sin“x“&“=“&“\lim_{h\rightarrow0}\frac{\sin(x+h)-\sin“x}{h}\\ŽĄ&–?ý=“&“\lim_{h\rightarrow0}\frac{\sin“x\cos“h“+“\cos“x\sinh“-“\sin“x}{h}\\ŽĄ&–?ý=“&“\lim_{h\rightarrow0}\frac{\sin“x(\cos“h-1)}{h}“+“\cos“x\frac{\sin“h}{h}\\ŽĄ&–?ý=“&“\cos“xŽĄ\end{eqnarray*}ŽŽĄšwhicŹrh‘ę¨proSŽducesŽĄŸ–˝Ÿ÷áō‘m;lŘdŽ‘iäßQm‰fe ČTŸ  dxŽŽŽŽ‘yŕHšsinŽ’ŠMdŘxŽŽ’šúśš=ŽŽ’ŽČ_limŽŸ8㍒Ž>ŮhÜ!Ö0ŽŽŸ÷áō’Â÷lšsinŽ’ŃdŠ(Řx–ިš+“Řhš)“ۍ“šsinŽ‘ÄŘxŽ’Â÷lŸQm‰feY?oŸ  ‘)=óhŽŽŽŽŽŽŽŸŽÍ’šúśš=ŽŽ’ŽČ_limŽŸ8㍒Ž>ŮhÜ!Ö0ŽŽŸ÷áō’Â÷lšsinŽ’ÓdˆŘx‘˙ţšcosŽ‘ťRŘh–ިš+“cosŽ‘eüŘx‘˙ţšsinhŽ‘ô2ۍ‘˙ţšsinŽ‘mŘxŽ’Â÷lŸQm‰fe“Ţ˝Ÿ  ‘FšhŽŽŽŽŽŽŽŸ;G’šúśš=ŽŽ’ŽČ_limŽŸ8㍒Ž>ŮhÜ!Ö0ŽŽ’ÁÄ9Ÿîf\Ť(ŽŸ÷áō’˧šsinŽ’ŰrĂŘxš(cosŽ‘ťTŘh–Ş¨Ű“š1)Ž’Ë§ŸQm‰feMGwŸ  ‘#A÷ŘhŽŽŽŽ’*ůš+‘ިcosŽ‘eüŘxŸ÷áō‘33šsinŽ‘ OŘhŽ‘33ŸQm‰fe0ڟ  ‘6ŽhŽŽŽŽ‘— Ÿîf\Ť)ŽŽŽŽŽŸ*ľ’šúśš=ŽŽ’Ž>cosŽ’żŮ’ŘxŽŽŽŸ(VëH3.6Ž‘,GŤTheorems,–záProp‘Š=ositions,“Lemmas,“óKˇágŁGŽ cmmi12ëK:–áF:“:ŽŽŸb#šSuppšSŽose–ˆyŹrou“do˜cumenšŹrt“con˜tains“four“kinds“of“theorem-lik˜e‘‰structures:‘ĹĐ\theorems",‘2Ž\propSŽo-ŽĄsitions",–ŠÄ\conjectures",“and–™‹\wild“guesses".‘ÖThen“near“the“bšSŽeginning“of“the“do˜cumenšŹrt“y˜ouŽĄshould›ę¨ha•Źrv“e˜something˜lik“e˜the˜follo“wing:ŽŚŸĚǍ‘..Ĺ\newtheorem{thm}{Theorem}ޤ ‘..\newtheorem{prop}{Proposition}ŽĄ‘..\newtheorm{conjec}{Conjecture}ŽĄ‘..\newtheorem{wildshot}{Hypothesis}–?ý%“make“it“sound“good!ŽŽŽŸ’ŕ|Vš57ŽŽŒ‹:'š ° ý\ † ýŸ‘ŸôšThe–Ąƒ rst›Ą„argumenŹrt“to˜ă\newtheorem“šde nes˜a“new˜theorem-likšŹre“en˜vironmen˜t‘Ą„name“ofޤ€y•Źrour›1áo“wn˜c“hoSŽosing.‘‹The˜second˜argumen“t˜con“tains˜the˜text˜that˜y“ou˜w“an“t˜inserted˜whenŽĄyŹrour–ę¨theorem“is“proSŽclaimed:ŽŸmnŸŞ*­‘..Ĺ\begin{thm}–?ý$X$“is“normal“if,“and“only“if,“each“pair“of“disjointޤ ‘..closed–?ýsets“in“$X$“is“completely“separated.ŽĄ‘..\end{thm}ŽĄĄ‘..\begin{wildshot}–?ý%“remember,“we“chose“the“name“'wildshot'ŽĄ‘..The–?ýproperty“of“Moore“extends“to“all“objects“of“the“class“$\Sigma$.ŽĄ‘..\end{wildshot}ŽŽĄšwhicšŹrh–ę¨will“proSŽduce“the“follo˜wing:ŽŠ€ŐTheorem‘€1ŽŽ‘EŘŢŘX‘@Lćis–NÉnormal›NČif,‘|yand“only˜if,‘|ye–˙ffach˜p“air–NÉof“disjoint“close‘˙ffd“sets“in˜ŘX‘@Lćis“c‘˙ffompletelyŽĄsep–˙ffar“ate“d.ŽŚŐHyp`othesis‘€1ŽŽ‘R˝ćThe›35pr–˙ffop“erty˜of˜Mo“or“e˜extends˜to˜al‘™™l˜obje“cts˜of˜the˜class˜šć.ŽŚ‘ŸôšNotice–HYthat›HXLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“italicises˜the“theorem˜statemenŹrt,‘_Ĺand“that˜yŹrou“still˜ha•Źrv“e–HYto˜shift“inŽĄto–ďmaths“moSŽde‘Ďwhen“yšŹrou“w˜an˜t“to‘Ďset“sym˜bSŽols“and“expression.‘ƔT˜ypically‘˙V,‘ű it‘Ďis“the“st˜yleŽĄ le–PŞthat“determines›PŤwhat“a“theorem“will˜appSŽear“likšŹre|so“don't“go“c˜hanging‘PŤthis“if“y˜ouŽĄare–*žpreparing›*Ÿfor“submission“for“publication˜(bSŽecause“the“journal“sta ˜w•Źran“t–*žto“substituteŽĄtheir–'!proSŽduction›'"stŹryle“for˜yšŹrour“doSŽcumen˜t‘'"st˜yle“c˜hoice,‘v@and“not‘'"bSŽe“o˜v˜er-ridden‘'"b˜y“otherŽĄcommands).ŽŸ(VëH3.7Ž‘,GŤWhere–záto“from“here?ŽŸb#šW‘˙Ve›é›ha•Źrv“e‘éœco“v“ered˜a‘éœgo•SŽo“d˜deal–éœof˜LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X's˜mathematical“abilities,‘)XalbSŽeit“rather˜supSŽer cialŽĄco•Źrv“erage– ˇhere“and– śthere.‘[ There“is› ˇm•Źruc“h˜that˜has˜bSŽeen‘ śimpressiv“e,‘Î;but˜there‘ śis˜clearly˜aŽĄlot–Նmore›Շto“T‘ţ ‘Ÿ•UEŽ‘‘!Xnical˜tŹrypSŽesetting“than˜wšŹre“ha˜v˜e‘Շco˜v˜ered“here|it›Շis“not˜dicult“to˜think“ofŽĄan– uexpression› vthat“wŹre“don't˜yšŹret“kno˜w“ho˜w‘ vto“t˜ypSŽeset.‘žHAlso,‘éthere“are“places‘ vwhere“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!XŽĄis–JOa›JPlittle“wŹreak˜and“it“lea•Źrv“es˜us–JOto˜do“somewhat“more˜wŹrork“than“the˜spirit“of˜T‘ţ ‘Ÿ•UEŽ‘‘!X“wŹrouldŽĄsuggest.ŽĄ‘ŸôOf–źWcourse,‘śwšŹre“cannot“criticise‘źXLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“un˜til“w˜e‘źXkno˜w“its“full“capabilit˜y‘˙V.‘)pSo“the‘źX rst“placeŽĄto–2źgo›2ťfrom“here“is“the˜ćLŸýDD‘űŽó<#Ńfcmti8çAŽŽ@”ćT‘ý˙ăŸ•UEŽ‘uóX–Š'User's“Guide›Š&&“R–˙ffefer“enc“e˜Manualš.‘ű’PŹrarticularly‘˙V,‘W„the‘2źcommandŽĄreference–Y‹guide›YŒin“AppSŽendix“C‘Yoof“that˜b•SŽo“ok–Y‹is“an˜inŹrv‘˙Xäaluable“source“of˜LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“informationŽĄthat–G€few›Gcan“a ord“to˜do“without.‘OgWith˜go•SŽo“d–G€knoŹrwledge“of˜the“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X˜en•Źrvironmen“ts‘G€andŽĄtheir–†Čoptions“(and›†Éw•Źre'v“e–†Čleft“out“manŹry“here)˜one“can“accomplish“a“go•SŽo“d˜deal–†Čof“mostŽĄtšŹrypSŽesetting–őeproblems.‘YA‘őalittle“imagination“(sa˜y›ődputting“an˜en•Źrvironmen“t–őeto“a˜slighŹrtly“non-ŽĄstandard–ŽŒuse)›Ž‹can“often˜solvŹre“more“dicult˜problems.‘ $‹Lastly‘˙V,–÷…of˜course,“m•Źruc“h˜of‘ŽŒra“wŽĄT‘ţ ‘Ÿ•UEŽ›‘!X–úĂstill‘úÂsits“underneath“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ˜X›úÂand“so“it˜is“true˜to“saŹry“that˜yŹrou“can“do˜ćanything‘EšwithŽĄLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X|but–˝yšŹrou“ma˜y“need“some“divine“inspiration“from‘źtime“to“time“(ask“y˜our“loSŽcal“T‘ţ ‘Ÿ•UEŽ‘‘!XŽĄguru).ŽŽŸ’ŕ|V58ŽŽŒ‹;0Ś ° ý\ † ýŸ‘ŸôšIn–ŽŽthe›Žnext“c•Źrhapter˜w“e–ŽŽwill“loSŽok,‘ş’vŹrery“brie y‘˙V,‘ş“at˜a“n•Źrum“bSŽer–ŽŽof˜LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“commands˜that“wŹreޤ€ha•Źrv“e›™únot‘™űy“et˜considered.‘F×Nothing–™űexciting˜on˜the“mathematical˜fronŹrt,‘ĹĎbut˜there“is˜someŽĄother–τimpSŽortanŹrt›υmaterial“(e.g.˜cross-referencing“and“page-sizing).‘çuF‘˙Vor˜noŹrw,‘ťlet's˜loSŽok“atŽĄthe›ę¨\w•Źra“y˜forw“ard"˜with˜respSŽect˜to˜mathematical˜t“ypSŽesetting.ŽŸ(VëH3.8Ž‘,GŤŰA‘üÂcŸ× MŽ‘˝ySëH-LŸü`™‘ůiŐAŽŽGšëHT‘üÂcŸ× EŽ‘ŢXŽŸˆšBacšŹrk–¨űin“the“in˜troSŽduction“w˜e“said‘¨üthat“ëNA‘ţ ‘Ÿ•UMŽ‘R÷Sš-LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“w˜as“just“a“big“macro“pac˜k‘˙Xäage,‘ؐtheŽĄresult–›Mof“a“marriage“of“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ›‘!X“and‘›LŰA‘ţ ‘Ÿ•UMŽ‘ űźSš-T‘ţ ‘Ÿ•UEŽ˜X“designed“to“endošŹrw“the“pSŽo˜w˜erful“general-ŽĄpurpSŽose–ޏLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X›ސpacŹrk‘˙Xäage“with˜the“mathematical“pro•Źrw“ess˜of–ޏŰA‘ţ ‘Ÿ•UMŽ‘ űźSš-T‘ţ ‘Ÿ•UEŽ‘‘!X˜without“compromisingŽĄthe–ťŢLŸýDD‘űĹ"ÖAŽŽš_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“synŹrtax.‘)HMost“of“that“is“true,‘Ĺ:except“that“ŰA‘ţ ‘Ÿ•UMŽ‘ űźSš-LŸýDD‘űĹ"ÖAŽŽ˜šT‘ţ ‘Ÿ•UEŽ‘‘!X“is‘ťßreally“just“a“doSŽcumenŹrt-ŽĄstšŹryle–›äoption“(lik˜e“ă12ptš)››ĺthat“can“bSŽe“used“within“a˜\t•Źrw“eak“ed–›äLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X".‘ŸThe“most“visible“partŽĄof›˝žthis‘˝˝t•Źrw“eak˜is‘˝˝the˜ćnew–ő:font›ő;sele‘˙ffction“scheme˜of“Mittelb‘˙ffach˜and˜Sch‘ů˙ýopfš,‘ň‚discussed‘˝žmoreŽĄfully–ôśin›ôľthe“next˜cšŹrhapter.‘W Almost“ev˜ery›ôľLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“command˜and“en•Źrvironmen“t˜surviv“ed‘ôśtheŽĄtransition–”°to“ŰA‘ţ ‘Ÿ•UMŽ‘ űźSš-LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X,‘ż1the“exceptions“bSŽeing“those“that“wšŹrere‘”Żconsidered“redundan˜t“orŽĄunder-used–ű0(space“is›ű1at“a“premium“with“sucŹrh˜a“big“pac•Źrk‘˙Xäage).‘jxThe˜t“w“eak“ed–ű0LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“pacŹrk‘˙XäageŽĄis–ňŞtherefore“able“to“deal“with“practically“evšŹrery“existing“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“doSŽcumen˜t,‘ôŤgiving“just“a“fewŽĄ(often–ę¨pleasanŹrt)“surprises.ŽĄ‘ŸôWith–ę¨the“ăamstex“šstšŹryle“option,“one“can“just“start“a“LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“doSŽcumen˜t“withŽŸ&ŔŸđǍ‘..Ĺ\documentstyle[amstex]{article}–?ý%“or“report,“book,“etcŽŽĄšto–Ś?gain›Ś>access“to˜the“T‘ţ ‘Ÿ•UEŽ‘‘!Xnical“excellence˜of“the“AMS‘Ś-tecŹrhnical˜sta .‘"It˜is“not˜necessary“toŽĄha•Źrv“e–e read“ćThe–ŁśJoy‘Łľof“T‘ý˙ăŸ•UEŽ‘uóX–e š(the“ŰA‘ţ ‘Ÿ•UMŽ‘ űźSš-T‘ţ ‘Ÿ•UEŽ‘‘!X“reference›eguide)“to“bSŽe“able“to˜use“the“ăamstexŽĄšoption,‘{rfor›^|ŰA‘ţ ‘Ÿ•UMŽ‘ űźSš-LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X–^}comes“with˜its“oŹrwn˜reference“guide.‘”^EvŹren˜so,‘{rćThe–­Joy‘Źof“T‘˙™eX‘DĹšisŽĄstill–Gßhighly“recommended›GŢreading.‘P…The“synŹrtax˜of“ŰA‘ţ ‘Ÿ•UMŽ‘ űźSš-T‘ţ ‘Ÿ•UEŽ‘‘!X“has“bSŽeen“cŹrhanged˜to“that“ofŽĄLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X,‘śVbut–ŠBone›ŠAcan“pSŽerform˜that“transformation˜as“yŹrou“read˜\ćJoy‘ ‚š"“and˜still“learn˜m•Źruc“h‘ŠBofŽĄthe–ďart“of‘đtecšŹrhnical“t˜ypSŽesetting.‘řľNo˜where‘đelse“will“y˜ou“ nd“so‘đcomprehensiv˜e“a“co˜v˜erageŽĄof›@ethe‘@fcon•Źrv“en“tions˜and–@fpitfalls˜of“mathematical˜tŹrypSŽesetting.‘:In“addition,‘UŐćJoy‘Mçšlists“all˜theŽĄextra–%ésymŹrbSŽols›%ęthat“are˜aŹrv‘˙Xäailable“through˜the“ăamstex˜šoption“(if˜yšŹrou“though˜t‘%ęLŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“hadŽĄa–űfair“selection“of“esoteric“symšŹrbSŽols,‘?7just“w˜ait“'til“y˜ou“see“those!)‘j6and“pro˜vides“in-depthŽĄaccounšŹrts–ę¨where“the“ŰA‘ţ ‘Ÿ•UMŽ‘ űźSš-LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“doSŽcumen˜tation“is“brief.ŽĄ‘ŸôJust–Ąas“ŰA‘ţ ‘Ÿ•UMŽ‘ űźSš-T‘ţ ‘Ÿ•UEŽ‘‘!X“comes“with‘Ąthe“AMS‘ ĘpreprinšŹrt“st˜yle“(ăamspptš),‘ăŰA‘ţ ‘Ÿ•UMŽ‘ űźSš-LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X“comes“withŽĄa–0ÝspSŽecialist›0ŢstŹryle“ le˜for“preparation“of˜articles“with“ŰA‘ţ ‘Ÿ•UMŽ‘ űźSš-LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X˜for“submission˜to“journals:ŽĄăamsartš.‘ŢcThe–ĚŰA‘ţ ‘Ÿ•UMŽ‘ űźSš-LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X›Ě~User's“Guide˜is“quite˜short“and˜vŹrery“terse˜in“its˜explanationsŽĄ(assuming–“yŹrou›”to“b•SŽe˜comp“etenŹrt–“in˜LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X),‘Cdbut˜is“supplemen•Źrted˜b“y–“a˜large“b•SŽo“dy˜of‘“examplesŽĄand–Řa›ŘcomprehensivŹre“sample˜article“that“is˜a“sho•Źrw“case˜of–Řthe“abilities˜of“the˜ăamsart“šstŹryle.ŽĄY‘˙Vou–؄mŹrust›؅read“bSŽoth“these˜doSŽcumenŹrts“to“really˜learn“ŰA‘ţ ‘Ÿ•UMŽ‘ űźSš-LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X.‘ÝThe“AMS‘Ř?also“distributesŽĄa–Áňguide›Áńto“authors“who“wish˜to“submit“using˜ŰA‘ţ ‘Ÿ•UMŽ‘ űźSš-LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X,‘÷Äand“this“is“a˜mŹrust-read“onceŽĄyŹrou–ę¨are“familiar“with“some“of“ŰA‘ţ ‘Ÿ•UMŽ‘ űźSš-LŸýDD‘űĹ"ÖAŽŽ_ŮšT‘ţ ‘Ÿ•UEŽ‘‘!X.ŽŽŸ’ŕ|V59ŽŽŒř>Ĺƒ’Ŕ;č°úËŃ?ói Pâ cmu10óOÂÖN ˝q cmbx12óN!",šGŽ cmsy10óKˇágŁGŽ cmmi12óHÂÖN GŽ cmbx12óGDÓítGŽGŽcmr17óA}h!Ó cmsl12ó>Œ-ř cmcsc10ó<#Ńfcmti8ó;›ťˆ@ cmti12ó8߆ľT cmtt12ó5‚ÎR6 cmss12ó32Ç@Écmbx8ó1žKČ cmsy8ó0!",š cmsy10ó.×2cmmi8ó-ˇágŁ cmmi12ó,šAa¨cmr6ó+|{Ycmr8ó*ÂÖN  cmbx12ó)ÂÖN áH cmbx12ó&TqÔ lasy10ó Œ-ř cmcsc10ót}\Ęcmti7óý': cmti10óßę cmmi10ó 0e—rcmmi7óO Ú\cmmi5óKń`y cmr10óٓ Rcmr7ó†›Zcmr5óúąu cmex10ůQíßßßßßßßlatex2rtf-2.3.18/test/eqns-koi8.tex0000777000175000017500000001333413050672360017250 0ustar wilfriedwilfried\documentclass{report} \usepackage[russian]{babel} \usepackage[koi8-r]{inputenc} \begin{document} \title{ôĹÓÔĎ×ŮĘ ĆÁĘĚ ÄĚŃ ŇŐÓÓËĎÇĎ ŃÚŮËÁ} \author{íÉČÁÉĚ âÁĘËĎ×} \date{2002-04-26} \maketitle \tableofcontents \chapter{÷×ĹÄĹÎÉĹ} \section{Inline equations} Parsing the tricky \verb#$$# properly $\varepsilon $$_o$ as an example. First begin with simple \verb#$# delimited equation such as $x+y=w$ as an example. All the equations in this section should look identical. Next how about a simple \verb#\begin{math}# delimited equation such as \begin{math}x+y=w\end{math} as an example. All the equations in this section should look identical. Now consider \verb#\(# and \verb#\)# delimited equation such as \(x+y=w\) as an example. All the equations in this section should look identical. \section{Unnumbered equations} I will start with a simple \verb#$$# wave equation that will have no number $$ \nabla^2 \phi -{1\over c} {\partial \phi\over \partial t} = 0 $$ This is followed by a \verb#displaymath# environment \begin{displaymath} \nabla^2 \phi -{1\over c} {\partial \phi\over \partial t} = 0 \end{displaymath} Here is an example of the \verb#\[# displaymath environment \[ \nabla^2 \phi -{1\over c} {\partial \phi\over \partial t} = 0 \] \section{Numbered equations} Next comes an \verb#equation# environment \begin{equation} \nabla^2 \phi -{1\over c} {\partial \phi\over \partial t} = 0 \end{equation} Note that \verb#\nonumber# in an \verb#equation# environment still gets an equation number \begin{equation} \nabla^2 \phi -{1\over c} {\partial \phi\over \partial t} = 0 \nonumber \end{equation} \section{Testing equation array} Here the equation array is being tested. This equation has no equation number and is about as simple as an equation array can get. \begin{eqnarray*} z & = & w + x + \\ & & 5w - 8c \end{eqnarray*} Here the equation array is being tested. This equation has equation numbers and is almost as simple as an equation array can get. \begin{eqnarray} z & = & w + x + \\ & & 5w - 8c \end{eqnarray} Here the equation array is being tested. This equation the first and third equations numbered \begin{eqnarray} z & = & w + x \\ z & = & w + x \nonumber\\ z & = & w + x \end{eqnarray} Here the equation array is being tested. This checks for a bug when \verb#\nonumber# is present in an \verb#\begin{eqnarray*}# environment. No equations should be numbered. \begin{eqnarray*} z & = & w + x \\ z & = & w + x \nonumber\\ z & = & w + x \end{eqnarray*} \section{Equation numbering test} This equation needs a number \begin{equation}\label{ab3} \,\varphi\,=\,\left|\, \begin{array}{c} \psi_1 \\ \psi_2 \end{array}\,\right|\,; \quad {\rm and} \quad \,\chi\,=\,\left|\, \begin{array}{c} \psi_3 \\ \psi_4 \end{array}\,\right|\,; \quad {\rm or} \quad \,\eta\,=\,\left|\, \begin{array}{c} \tilde{\psi}_1 \\ \tilde{\psi}_2 \end{array}\,\right|\,; \quad {\rm and} \quad \,\lambda\,=\,\left|\, \begin{array}{c} \tilde{\psi}_3 \\ \tilde{\psi}_4 \end{array}\,\right|\,; \end{equation} more text following \section{Testing math environment closing} For a while, getting \texttt{latex2rtf} to contain all the math elements to the enclosing was a major headache. It is working for now. Here are a few test cases. Case 1 Here a math environment is found within an italic environment \textit{s$_c+1$} or {\it s$_c$} Case 2 The odd construction \verb#$a+\bf R$# follows $a+\bf R$ which should make ``a'' italic and ``R'' bold Case 3 Same as above but using \verb#\(# to enter a math environment \(a+\bf R\) roman type follows Case 4 Same as above but using \verb#\[# to enter a math environment \[a+\bf R\] roman type follows Case 5 Same as above but using \verb#\begin{math}# to enter a math environment \begin{math}a+\bf R\end{math} roman type follows Case 6 Same as above but using \verb#\begin{equation}# to enter a math environment \begin{equation}a+ \bf R\end{equation} roman type follows Case 7 Same as above but using \verb#\begin{eqnarray}# to enter a math environment \begin{eqnarray}a+ \bf R\end{eqnarray} roman type follows Case 8 Same as above but using \verb#\begin{equation*}# to enter a math environment \begin{equation*}a+ \bf R\end{equation*} roman type follows Case 9 Same as above but using \verb#$$# to enter a math environment $$a+ \bf R$$ roman type follows \section{Large Delimiters} \subsection{Determinant} $$ \det A = \left| \begin{array}{cccc} a_{11} & a_{12} & \cdots & a_{1n}\\ a_{21} & a_{22} & \cdots & a_{2n}\\ \vdots & \vdots & \ddots & \vdots\\ a_{m1} & a_{m2} & \cdots & a_{mn} \end{array} \right| $$ \subsection{Mixed Delimiters} $$ w = \left| 4 x^3 + \left( (x-y) + \frac{42}{1+x^4} \right) \right|. $$ \subsection{Submatrices} $$ A = \left[ \begin{array}{cccc} \left|\begin{array}{cc} b_{11}&b_{12}\\ b_{21}&b_{22} \end{array}\right| & a_{12} & \cdots & a_{1n}\\ a_{21} & a_{22} & \cdots & a_{2n}\\ \vdots & \vdots & \ddots & \vdots\\ a_{m1} & a_{m2} & \cdots & a_{mn} \end{array} \right] $$ \subsection{Fractions} Simple $$ {x \over y} $$ More complicated $$ {x+1 \over {x+2 \over y+z +w}} $$ Missing braces $$ x \over y $$ Including braces $$ {\{ x+y \} \over w} $$ Including left $$ {\left{\sqrt{y+z}\right}\over w} $$ \section{fields} Problem with mbox containing \$ in a field $$ x[l]\leftarrow x[(l+m) mod n] \oplus \mbox{shiftright}(x[l]) \oplus \left\{ \begin{array}{ll} 0 & \mbox{if LSB of $x[l]$=0} \\ b & \mbox{if LSB of $x[l]$=1,} \end{array} \right. $$ problem with correctly delimiting the above equation $ x[l]\leftarrow x[(l+m) mod n] \oplus \mbox{shiftright}(x[l]) \oplus \left\{ \begin{array}{ll} 0 & \mbox{if LSB of $x[l]$=0} \\ b & \mbox{if LSB of $x[l]$=1,} \end{array} \right. $ \end{document} latex2rtf-2.3.18/test/enc_applemac.tex0000777000175000017500000001167013050672357020050 0ustar wilfriedwilfried\documentclass[10pt]{article} \usepackage[T1]{fontenc} \usepackage[applemac]{inputenc} \usepackage{times} \usepackage{textcomp} \begin{document} \begin{tabular}{ccrl} 80&€&196&LATIN CAPITAL LETTER A WITH DIAERESIS\\ 81&&197&LATIN CAPITAL LETTER A WITH RING ABOVE\\ 82&‚&199&LATIN CAPITAL LETTER C WITH CEDILLA\\ 83&ƒ&201&LATIN CAPITAL LETTER E WITH ACUTE\\ 84&„&209&LATIN CAPITAL LETTER N WITH TILDE\\ 85&…&214&LATIN CAPITAL LETTER O WITH DIAERESIS\\ 86&†&220&LATIN CAPITAL LETTER U WITH DIAERESIS\\ 87&‡&225&LATIN SMALL LETTER A WITH ACUTE\\ 88&ˆ&224&LATIN SMALL LETTER A WITH GRAVE\\ 89&‰&226&LATIN SMALL LETTER A WITH CIRCUMFLEX\\ 8A&Š&228&LATIN SMALL LETTER A WITH DIAERESIS\\ 8B&‹&227&LATIN SMALL LETTER A WITH TILDE\\ 8C&Œ&229&LATIN SMALL LETTER A WITH RING ABOVE\\ 8D&&231&LATIN SMALL LETTER C WITH CEDILLA\\ 8E&Ž&233&LATIN SMALL LETTER E WITH ACUTE\\ 8F&&232&LATIN SMALL LETTER E WITH GRAVE\\ 90&&234&LATIN SMALL LETTER E WITH CIRCUMFLEX\\ 91&‘&235&LATIN SMALL LETTER E WITH DIAERESIS\\ 92&’&237&LATIN SMALL LETTER I WITH ACUTE\\ 93&“&236&LATIN SMALL LETTER I WITH GRAVE\\ 94&”&238&LATIN SMALL LETTER I WITH CIRCUMFLEX\\ 95&•&239&LATIN SMALL LETTER I WITH DIAERESIS\\ 96&–&241&LATIN SMALL LETTER N WITH TILDE\\ 97&—&243&LATIN SMALL LETTER O WITH ACUTE\\ 98&˜&242&LATIN SMALL LETTER O WITH GRAVE\\ 99&™&244&LATIN SMALL LETTER O WITH CIRCUMFLEX\\ 9A&š&246&LATIN SMALL LETTER O WITH DIAERESIS\\ 9B&›&245&LATIN SMALL LETTER O WITH TILDE\\ 9C&œ&250&LATIN SMALL LETTER U WITH ACUTE\\ 9D&&249&LATIN SMALL LETTER U WITH GRAVE\\ 9E&ž&251&LATIN SMALL LETTER U WITH CIRCUMFLEX\\ 9F&Ÿ&252&LATIN SMALL LETTER U WITH DIAERESIS\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} A0& &8224&DAGGER\\ A1&Ą&176&DEGREE SIGN\\ A2&˘&162&CENT SIGN\\ A3&Ł&163&POUND SIGN\\ A4&¤&167&SECTION SIGN\\ A5&Ľ&8226&BULLET\\ A6&Ś&182&PILCROW SIGN\\ A7&§&223&LATIN SMALL LETTER SHARP S\\ A8&¨&174®ISTERED SIGN\\ A9&Š&169©RIGHT SIGN\\ AA&Ş&8482&TRADE MARK SIGN\\ AB&Ť&180&ACUTE ACCENT\\ AC&Ź&168&DIAERESIS\\ AD&$­$&8800&NOT EQUAL TO\\ AE&Ž&198&LATIN CAPITAL LETTER AE\\ AF&Ż&216&LATIN CAPITAL LETTER O WITH STROKE\\ B0&$°$&8734&INFINITY\\ B1&$ą$&177&PLUS-MINUS SIGN\\ B2&$˛$&8804&LESS-THAN OR EQUAL TO\\ B3&$ł$&8805&GREATER-THAN OR EQUAL TO\\ B4&´&165&YEN SIGN\\ B5&$ľ$&181&MICRO SIGN\\ B6&$ś$&8706&PARTIAL DIFFERENTIAL\\ B7&$ˇ$&8721&N-ARY SUMMATION\\ B8&$¸$&8719&N-ARY PRODUCT\\ B9&$š$&960&GREEK SMALL LETTER PI\\ BA&$ş$&8747&INTEGRAL\\ BB&ť&170&FEMININE ORDINAL INDICATOR\\ BC&ź&186&MASCULINE ORDINAL INDICATOR\\ BD&$˝$&8486&OHM SIGN\\ BE&ž&230&LATIN SMALL LETTER AE\\ BF&ż&248&LATIN SMALL LETTER O WITH STROKE\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} C0&Ŕ&191&INVERTED QUESTION MARK\\ C1&Á&161&INVERTED EXCLAMATION MARK\\ C2&$Â$&172&NOT SIGN\\ C3&$Ă$&8730&SQUARE ROOT\\ C4&Ä&402&LATIN SMALL LETTER F WITH HOOK\\ C5&$Ĺ$&8776&ALMOST EQUAL TO\\ C6&$Ć$&8710&INCREMENT\\ C7&Ç&171&LEFT-POINTING DOUBLE ANGLE QUOTATION MARK\\ C8&Č&187&RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK\\ C9&$É$&8230&HORIZONTAL ELLIPSIS\\ CA&Ę&160&NO-BREAK SPACE\\ CB&Ë&192&LATIN CAPITAL LETTER A WITH GRAVE\\ CC&Ě&195&LATIN CAPITAL LETTER A WITH TILDE\\ CD&Í&213&LATIN CAPITAL LETTER O WITH TILDE\\ CE&Î&338&LATIN CAPITAL LIGATURE OE\\ CF&Ď&339&LATIN SMALL LIGATURE OE\\ D0&Đ&8211&EN DASH\\ D1&Ń&8212&EM DASH\\ D2&Ň&8220&LEFT DOUBLE QUOTATION MARK\\ D3&Ó&8221&RIGHT DOUBLE QUOTATION MARK\\ D4&Ô&8216&LEFT SINGLE QUOTATION MARK\\ D5&Ő&8217&RIGHT SINGLE QUOTATION MARK\\ D6&$Ö$&247&DIVISION SIGN\\ D7&$×$&9674&LOZENGE\\ D8&Ř&255&LATIN SMALL LETTER Y WITH DIAERESIS\\ D9&Ů&376&LATIN CAPITAL LETTER Y WITH DIAERESIS\\ DA&$Ú$&8260&FRACTION SLASH\\ DB&Ű&164&CURRENCY SIGN\\ DC&Ü&8249&SINGLE LEFT-POINTING ANGLE QUOTATION MARK\\ DD&Ý&8250&SINGLE RIGHT-POINTING ANGLE QUOTATION MARK\\ DE&Ţ&64257&LATIN SMALL LIGATURE FI\\ DF&ß&64258&LATIN SMALL LIGATURE FL\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} E0&ŕ&8225&DOUBLE DAGGER\\ E1&á&183&MIDDLE DOT\\ E2&â&8218&SINGLE LOW-9 QUOTATION MARK\\ E3&ă&8222&DOUBLE LOW-9 QUOTATION MARK\\ E4&ä&8240&PER MILLE SIGN\\ E5&ĺ&194&LATIN CAPITAL LETTER A WITH CIRCUMFLEX\\ E6&ć&202&LATIN CAPITAL LETTER E WITH CIRCUMFLEX\\ E7&ç&193&LATIN CAPITAL LETTER A WITH ACUTE\\ E8&č&203&LATIN CAPITAL LETTER E WITH DIAERESIS\\ E9&é&200&LATIN CAPITAL LETTER E WITH GRAVE\\ EA&ę&205&LATIN CAPITAL LETTER I WITH ACUTE\\ EB&ë&206&LATIN CAPITAL LETTER I WITH CIRCUMFLEX\\ EC&ě&207&LATIN CAPITAL LETTER I WITH DIAERESIS\\ ED&í&204&LATIN CAPITAL LETTER I WITH GRAVE\\ EE&î&211&LATIN CAPITAL LETTER O WITH ACUTE\\ EF&ď&212&LATIN CAPITAL LETTER O WITH CIRCUMFLEX\\ F0& &65535&unknown\\ F1&ń&210&LATIN CAPITAL LETTER O WITH GRAVE\\ F2&ň&218&LATIN CAPITAL LETTER U WITH ACUTE\\ F3&ó&219&LATIN CAPITAL LETTER U WITH CIRCUMFLEX\\ F4&ô&217&LATIN CAPITAL LETTER U WITH GRAVE\\ F5&ő&305&LATIN SMALL LETTER DOTLESS I\\ F6&ö&710&MODIFIER LETTER CIRCUMFLEX ACCENT\\ F7&÷&732&SMALL TILDE\\ F8&ř&175&MACRON\\ F9&ů&728&BREVE\\ FA&ú&729&DOT ABOVE\\ FB&ű&730&RING ABOVE\\ FC&ü&184&CEDILLA\\ FD&ý&733&DOUBLE ACUTE ACCENT\\ FE&ţ&731&OGONEK\\ FF&˙&711&CARON\\ \end{tabular} \end{document} latex2rtf-2.3.18/test/misc4.tex0000777000175000017500000043545013050672360016460 0ustar wilfriedwilfried% introduction to \TeX % written for course at unp, november 1992 % written in \LaTeX % with the NFSS, but should work with normal \LaTeX \documentstyle[12pt,a4wide]{report} \newcommand{\contact}{Gavin Maltby (Maths Department, UNP)} \newcommand{\AmSLaTeX}{{\protect\the\textfont2 A}\kern-.1667em\lower.5ex\hbox {\protect\the\textfont2 M}\kern-.125em{\protect\the\textfont2 S}-\LaTeX} \newcommand{\AmSTeX}{{\protect\the\textfont2 A}\kern-.1667em\lower.5ex\hbox {\protect\the\textfont2 M}\kern-.125em{\protect\the\textfont2 S}-\TeX} \newcommand{\usertype}[1]{\vspace{3pt plus 3pt}\centerline{% #1}\vspace{3pt plus 3pt}} \newcommand{\BibTeX}{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}} \newcommand\bs{\char '134 } % A backslash character for \tt font \newcommand{\lb}{\char '173 } % A left brace character for \tt font \newcommand{\rb}{\char '175 } % A right brace character for \tt font \newenvironment{syntax}[1]{\smallskip\hspace{1.3cm}\tt\bs#1}{\smallskip} \newcommand{\opt}[1]{[{\em #1\/}]} \newcommand{\man}[1]{\{{\em #1\/}\}} \long\def\result#1{{\smallskip\moveright0.1\textwidth\vbox{\hsize 0.8\textwidth\footnotesize#1}}\smallskip} %\newcommand{\nsubsubsection}[1]{\subsubsection{#1}\addcontentsline{toc} %{subsection}{\quad\quad#1}} \newcommand{\nsubsubsection}[1]{\subsection{#1}} \newenvironment{mathegs}% {\medskip\footnotesize\begin{center}% \renewcommand{\arraystretch}{1.3} \begin{tabular}{ll}% \it \makebox[190pt][l]{Type} & \it To produce\\} {\end{tabular}\end{center}\medskip} \begin{document} \pagenumbering{roman} \title{An introduction to \TeX\ and friends} \author{Gavin Maltby} \date{November 1992} \maketitle \tableofcontents \listoftables \newpage \pagenumbering{arabic} \chapter{Getting acquainted with \TeX} \TeX\ is well known to be {\em the\/} typesetting package, and a vast cult of \TeX\ lovers has evolved. But to the beginning \TeX\ user, or to someone wondering if they should bother changing to \TeX, it is often not clear what all the fuss is about. After all, are not both WordPerfect and Ventura Publisher capable of high quality output? Newcomers have often already seen what \TeX\ is capable of (many books, journals, letters are now prepared with \TeX) and so expect to find a tremendously powerful and friendly package. In fact they {\em do}, but that fact is well hidden in one's initial \TeX\ experiences. In this chapter we describe a little of what makes \TeX\ great, and why other packages cannot even begin to compete. Be warned that a little patience is required---\TeX's virtues are rather subtle to begin with. But when the penny drops, you will wonder how you ever put up with anything different. \section{The spirit of \TeX} In order to really appreciate \TeX\ one needs to get a feel for what I call the ``spirit'' of \TeX. When \TeX\ appears to be making me work overtime to achieve something that I think ought to be perfectly straightforward, consultation with the \TeX\ spirit shows me the error of my ways. \subsection{\TeX\ is a typesetter, not a word-processor} % we chat about the pros and cons of this; % talk about compilation, previewing, printing % start to convince of the essential power of this % a few examples % macro packages & style files \TeX\ was designed with no limiting application in mind. It was intended to be able to prepare practically any document---from a single page all-text letter to a full blown book with huge numbers of formulae, tables, figures etc. The size and the complexity of a {\TeX}able document is limited only by hardware considerations. Furthermore, \TeX\ seeks to achieve all this whilst setting typesetting standards of the highest order for itself. The expertise of generations of professional printers has been captured in \TeX, and it has been taught all the tricks of the trade. Historically, printers prepared a document by placing metal characters in a large tray and arranging and binding them to form a page. This was very precisely done, but the ultimate precision was limited because of the mechanical nature of things and by time considerations. \TeX\ prepares a page in an analogous manner (putting your characters and formulae into ``boxes'' which are then ``glued'' together to form the page), but has the advantage of enormous precision because placement calculations are performed by computer. Indeed, \TeX's internal unit (the ``scaled point'') is about one-hundredth of the wavelength of natural light! ``But conventional word processors run on computers , too'', you object. Yes, but their fundamental limitation is that they try to ``keep up'' with you and ``typeset'' your document as you type. This means that it can only make decisions at a local level (eg, it decides where to break a line just as you type the end of the line). \TeX's secret is that it waits until you have typed the {\em whole\/} document before it typesets a single thing! This means that \TeX\ can make decisions of a global nature in order to optimise the aesthetic appeal of your document. It has been taught what looks good and what looks bad (having been given a measure of the ``badness'' of various possibilities) and makes choices for your document that are designed to make it ``minimally bad''. But \TeX's virtues run much deeper than that, which is just as well because it is possible to get satisfactory, though imperfect, results from some word processors. One of \TeX's strongest points is its ability to typeset complicated formulae with ease. Not only does \TeX\ make hundreds of special symbols easily accessible, it will lay them out for you in your formulae. It has been taught all the spacing, size, font, \ldots conventions that printers have decided look best in typeset formulae. Although, of course, it doesn't understand any mathematics it knows the grammar of mathematics---it recognises binary relations, binary operators, unary operators, etc.\ and has been taught how these parts should be set. It is consequently rather difficult to get an equation to look bad in \TeX. Another advantage of compiling a document after it is typed is that cross-referencing can be done. You can label and refer back to chapters, sections, tables etc.\ by {\em name\/} rather than absolute number, and \TeX\ will number and cross-reference these for you. Similarly, it will compile a table of contents, glossary, index and bibliography for you. Essential to the spirit of \TeX\ is that {\em it formats the document whilst you just take care of the content}, making for increased productivity. The cross-referencing just mentioned is just part of this. Many more labour-saving mechanisms are provided for through {\em style files}. These are generic descriptions of classes of documents, teaching \TeX\ just how each class likes to be formatted. This is taught in terms of font preferences, default page sizes, placement of title, author, date, etc. For instance, a {\tt paper} style file could teach \TeX\ that when typesetting a theorem it should embolden the part that states the theorem number and typeset the text of the theorem statement in slanted Roman typeface (as in many journals). The typist simply provides and indication that a theorem is being stated, and then types the text of the theorem {\em without\/} bothering to choose any fonts or do any formatting---all that is done by the style file. Style files exist for all manner of document---letters, articles, papers, books, proceedings, review articles, and so on. In addition to style files, there are {\em macro packages}. A {\em macro\/} is just a definition of a new \TeX\ command in terms of existing ones. Don't think small when you think of macros! When typing a document that has a lot of repetition in it, say the same expression is used again and again in different different equations, you can define a macro in your document to abbreviate that expression. But macros can teach \TeX\ how to typeset all sorts of complicated structures, not just parts of an equation. Many macro packages (files that are just collections of definitions) have been written to teach \TeX\ all sorts of applications. There are specialist maths packages (\AmSTeX, \AmSLaTeX), general purpose packages (\LaTeX), packages for setting tree diagrams, Feynmann diagrams, languages like Chinese, Arabic and Ancient Greek, orchestral scores, and many, many more. All these are freely available, a spin-off of the giant \TeX\ cult. Another facet of the design of \TeX\ allows it to use practically {\em any\/} output device. In fact, \TeX\ doesn't talk to any printers, screens, phototypesetters at all! Instead, when a document is compiled a {\em device independent\/} ({\tt .dvi}) is produced---% \TeX\ does not compile with any particular output device in mind. Printer drivers are then invoked on this {\tt .dvi} file and, in consultation with the font data for that printer, produce output suitable for the particular device. You can choose an HP Laserjet driver, or an Apple LaserWriter driver, or a dot matrix driver etc. All use the same {\tt .dvi} file as input (and remember the material in there is set to enormous accuracy) and attempt to image that file on the particular device as faithfully as possible. If you are using a top of the line laser printer or phototypesetter, then \TeX's massive internal precision will not be wasted. Alternatively, a dot matrix printer will give a coarse approximation of the ideal image that is suitable only for proof-reading. In addition to portability, these {\tt .dvi} files help ensure that there are very few printing surprises when you move from one device to another: how many times has your favourite word-processor made you reformat a document when you wish to change printers? There are many other motivations one could cite for the superiority of \TeX. But it is time that we started to get our hands dirty. One last comment: \TeX\ was not designed to supplant secretaries and professional printers---it was designed to aid them in their work and, in the words of the \TeX\ designer Donald Knuth, allow them to ``go forward and create masterpieces of the publishing art''.% or was that typesetting art? It also allows those who generate the material to be typeset---mathematicians, physicists, computer scientists, etc---to prepare their own documents in a language that is intimately linked to the language we use for writing such material. The novice reader will still have no idea of what a \TeX\ source file looks like. Indeed, why do we keep referring to it as a {\em source file}? The fact of the matter is that \TeX\ is essentially a {\em programming language}. Just as in any compiled language (e.g.,\ Pascal, C) one prepares a source file and submits it to the compiler which attempts to produce an object file ({\tt .dvi} file in the \TeX\ case). To learn \TeX\ is to learn the command syntax of the commands that can be used in the source file. \subsection{Typical \TeX\ interfaces} % multicompter setting % device independence % command line level and script files % \TeX\ shells \TeX\ was designed to run on a multitude of computers. It is therefore the case that the documentation for \TeX\ and its ``friends'' \LaTeX, \AmSTeX, etc.\ is not computer specific. Only command syntax is described---i.e., the content of your source file---but few details of how to get from there to a printout are given. Those details are left to site-specific documents. The average user loses little in using \TeX\ on, say, a PC rather than on a bigger machine. Indeed, compilation times on the new PCs begin to rival those on a Sun Sparc Station 2 (no slouch). Running on top of DOS can cause memory problems when very large documents are being prepared. That aside, the quality of the document is not affected because of the careful design of \TeX---% whether you work on a a machine with massive floating point precision or a modest XT the {\tt .dvi} files produced on compilation will be identical; and when those files are submitted to printer equivalent printer drivers (say for an HP LaserJet III attached to a Sun in one case and a PC in the other) the output will be identical because the font information they draw on is identical. By the nature of \TeX\ most time is spent editing the source document (before submitting it for compilation). No special interface is necessary here, you just use your favourite text editor (perhaps customising it to enhance {\TeX}nical typing. Thus \TeX\ user interfaces are usually small and simple, often even missing. One frequently uses \TeX\ at command line level, just running the editor, compiler etc.\ as you need them. Sometimes a {\TeX}shell program is present, which runs these for you when you choose various menu options. Whatever the interface, there are just a few basic steps to preparing a document: \begin{enumerate} \item Choose a document style to base your document on (e.g., letter, article). \item Glance through the material you have to type, and decide what definitions might be made to save you a lot of time. Also, decide on the overall structure of the prospective document (e.g., will the largest sectional unit be a chapter or a part?). If you are going to compose as you type, then pause a moment to think ahead and plan the structure of your document. The importance of this step cannot be overstressed, for it makes clear in {\em your\/} mind what you want from \TeX. \item Prepare your input file, specifying only the content and the logical structure (parts, sections, theorems,...) thereof and forgetting about formatting details. \item Submit your input, or source, file to the \TeX\ compiler for compilation of a {\tt .dvi} file. \item If the compiler finds anything in your source file strongly objectionable, say incorrect command syntax, then return to editing. \item Run a {\em previewer\/} to preview your compiled document on the screen. Resolution is only limited by your screen, and can be very good indeed on some modern monitors. \item Go back to editing your document until glaring errors have been taken care of. \item Make a printout of your compiled document, and check for those errors that you failed to notice on the screen. \end{enumerate} Performing these steps may be effected through typing at the system prompt (barebones technique) or through choosing menu options in a {\TeX}shell program. The latter will probably provide some conveniences to make your life easier. If you think this sounds like a lot of work, it is time that you consult with the \TeX\ spirit! Sure your first couple of tries may be hesitant, but before long you'll find that you can take {\em less\/} time to prepare a document on \TeX\ than on any other package. \chapter{Getting started with \LaTeX} \section{Why start with \LaTeX?} To answer this question we must say a little more about some of the macro packages we mentioned earlier. The \TeX\ typesetting system was designed by the eminent Stanford computer scientist Donald Knuth, on commission from the American Mathematical Society. It was designed with enormous care, to be ultimately powerful and maximally flexible. The enormous success of Knuth's design is apparent from the vast number of diverse applications \TeX\ has found. In reading the following you must keep one thing clearly in mind: {\em there is only \TeX\ language, and all the other packages whose names end in the suffix \mbox{-\TeX} simply harness it's power via a whole lot of complicated macro definitions}. \TeX\ proper is a collection of around 300 so called {\em primitive\/} typesetting commands. These work at the very lowest level, affording enormous power. But to make this raw power manageable, some macros must be defined to tame raw \TeX\ somewhat. The standard set of macros is called Plain \TeX, and consists of about 600 macro definitions. It is clear that these definitions must be made in terms of \TeX\ primitives, or in terms of previously made definitions. Plain \TeX, however, is still no place for the timid. A strong working knowledge of \TeX\ is still required to understand the ins and outs of Plain \TeX. In the few years after the initial \TeX\ release (1982), the macro packages \AmSTeX\ and \LaTeX\ were born. \AmSTeX\ was written by Michael Spivak, also on commission from the AMS. This package was designed to facilitate the preparation of the numerous books, journals, and review indices that fall under the auspices of the AMS and its affiliates. Married to the macro package was a style file---the AMS preprint style. This was distributed along with the macro package, so that authors submitting to journals could use it in the preparation of their articles. The given style was based on the style used by the {\em Journal of the American Mathematical Society}, i.e., it conformed to their page sizes and typographical conventions. This meant that people around the world produced papers that were all based on the same style. The clever part is this: when a source file is submitted to a journal {\em other\/} than the {\em Journal of the AMS}, the journal staff simply substitute their style file for the AMS preprint style and the paper will appear completely different {\em with no other changes to the source code\/}! To create their style file, a journal just needed to tweak the standard AMS prepint style: for instance, the original preprint style places author addresses at the very end of a paper; If a journal wishes this to appear on the first page then they just modify their in-house version of the style file, and the change will be effected without having to change the file submitted by the author. \LaTeX\ was written for more general usage. It lacks some of the mathematical finesse inherited by \AmSTeX\ from the vast experience of the AMS technical staff, but more than makes up for this in its ability to enhance the typesetting of letters, books, poetry, etc. \LaTeX\ also scores high points for its enhanced command syntax. With \AmSTeX\ and \LaTeX\ being released at around the same time (1984--1985), there were born many \AmSTeX\ literate but \LaTeX\ illiterate users, and conversely. \LaTeX\ was easier to learn because of its more friendly syntax, and also provided powerful cross-referencing commands that \AmSTeX\ did not. So the AMS commissioned another project to furnish \LaTeX\ users with the additional power of \AmSTeX\ while not compromising the \LaTeX\ command syntax or cross-referencing commands. This resulted in the \AmSLaTeX\ macro package and associated style file for submission to journals. {\em That\/} is why we will kick off our \TeX\ careers with \LaTeX! It is easier to learn and provides many conveniences, and the user who requires additional mathematical typesetting prowess can easily move on to \AmSLaTeX. Much of what we say will be true for \TeX\ itself, but we shall regard \LaTeX\ as the lowest common-denominator. By far the majority of \LaTeX\ and \AmSLaTeX\ users will never have to learn ``raw'' \TeX, for they will be shielded from direct exposure by the numerous powerful macro packages. In the rare case that something way out of the ordinary is required, the local \TeX\ guru can be consulted. \section{\LaTeX\ formats, and we compose} % free form nature of input file The {\em free form nature\/} of the input file is essential to the spirit of \TeX. As we type, we do not concern ourselves with linebreaks and pagebreaks so much as the content of what we are typing. In fact, we'll see that \TeX\ will choose nice line breaks even for bizarre looking input. This is just part of the concept of only having to describe the {\em logical\/} structure of the document to \LaTeX, and not worry about nuisance-value formatting details. We inform \LaTeX\ of the logical structure of our document by telling it when to begin a new paragraph, subsection, section, chapter, theorem, definition, remark, poem, list etc. When typing a particular element of the logical structure, we need pay little attention to how we lay our source file out. A consequence of this is that we have to go to a bit of effort to mess things up. Starting a new line, for instance, entails more than just pressing Return because \LaTeX\ will just regard the next word you type as exactly that---the next word in the paragraph. You have to specifically ask for a line to be terminated. Things like this may seem to be a bit of a nuisance, but it is a small price to pay for the automatic formatting that necessitated it. Further, such small inconveniences have been localised to rare events. I have, for instance, not once forced a new line up until this point in the present document. \section{Document styles} We have explained the concept of a document style during our discussion of the virtues of \TeX\ and the discussion of \AmSTeX. It remains to name a few, and indicate where they would be used. One {\em always\/} has to choose a document style when preparing a document with \LaTeX. The basic document styles in \LaTeX\ are {\tt letter}, {\tt article}, {\tt report}, and {\tt book}. Many more are available, but these few cover the majority of straightforward applications. This is because styles are not rigid---you can impose your own parameter choices if you want. So one chooses the style that most closely approximates the document you have in mind, and performs some minor tweaks here and there. The {\tt article} style is used for documents that are to have the appearance of a journal or magazine article. The {\tt report} style is usually used for larger documents than the {\tt article} style. These styles really only differ in their choice of default page size, font, placement of title and author, sectional units, etc.\ and on how they format certain \LaTeX\ constructs. You use the same \LaTeX\ commands in each. Since the examples here will be small, we will choose to use the {\tt article} document style. There are a number of possible options with each document style. The syntax for choosing a document style follows. Don't worry if this leaves you with no idea of how to choose a document style, for we will soon be seeing some examples. Also, remember that an argument in square brackets is optional, and can omitted altogether (including the brackets). \begin{syntax}{documentstyle} \opt{options}\man{style} \end{syntax} where {\em style\/} is the main document style (eg {\tt report}) and the optional argument {\em options\/} is a list of document style options chosen from the following list: \begin{itemize} \item[\tt 11pt] chooses 11-point as the default font size for the document, instead of the default 10-point. \item[\tt 12pt] chooses 12-point as the default font size. \item[\tt twoside] formats output as left and right pages, as in a book. \item[\tt twocolumn] produces two-column magazine like output. \item[\tt titlepage] applies to the {\tt article} style only, causing the title and abstract to appear on a page each. \end{itemize} In fact there are many, many more document style options but we won't mention any more here. \section{Preparing a non-mathematical document} We assume that you have read the local guides to \TeX\ at your site and have decided which system environment you want to work in. There you have been shown how to perform the steps required to produce a printed document from a \LaTeX\ source file. \subsection{Sentences and paragraphs} Let's create our very first \LaTeX\ document, which will consist of just a few paragraphs. As mentioned above, paragraph input is free-form. You type the words and separate them by spaces so that \LaTeX\ can distinguish between words. For these purposes, pressing Return is equivalent to inserting a space---it does not indicate the end of a line, but the end of a word. You tell \LaTeX\ that a sentence has ended by typing a period followed by a space. \LaTeX\ ignores extra spaces; typing three or three thousand will get you no more space between the words that these spaces separate than typing just one space. Finally, you tell \LaTeX\ that a paragraph has ended by leaving one or more blank lines. In summary: \LaTeX\ concerns itself only with the logical concepts end-of-word, end-of-sentence, and end-of-paragraph. Sounds complicated? An example should clear things up: \moveright0.1\textwidth\vbox{% \footnotesize\begin{verbatim} \documentstyle{article} \begin{document} Words within a sentence are ended by spaces. One space between words is equivalent to any number. We are only interested in separating one word from the next, not in formatting the space between them. For these purposes, pressing Return at the end of a line and starting a new word on the next line just serves to separate words, not to cut a line short. The end of a sentence is indicated by a period followed by one or more spaces. The end of a paragraph is indicated by leaving a blank line. All this means that we can type without too much regard for layout, and the typesetter will sort things out for us. \end{document} \end{verbatim} } \noindent produces the result \result{% Words within a sentence are ended by spaces. One space between words is equivalent to any number. We are only interested in separating one word from the next, not in formatting the space between them. For these purposes, pressing Return at the end of a line and starting a new word on the next line just serves to separate words, not to cut a line short. The end of a sentence is indicated by a period followed by one or more spaces. The end of a paragraph is indicated by leaving a blank line. All this means that we can type without too much regard for layout, and the typesetter will sort things out for us. } Perhaps you would like to try running \LaTeX\ on the above input. Consult your local guide for details. Note that we have learned more than just how \LaTeX\ recognises words, sentences and paragraphs. We've also seen how to specify our choice of document style and how to tell \LaTeX\ where our document begins and ends. Any material that is to be printed must lie somewhere between the declaration of \verb@\begin{document}@ and that of \verb@\end{document}@. Definitions that are to apply to the entire document can be made before the declaration of the document beginning. The specification of document style must precede all other material. In future examples we won't explicitly display the commands that select document style and delimit the start and end of the document. But if you wish to try any of the examples, don't forget to include those commands. The {\tt article} document style will do for most of our examples. Of course, the preceding example looks not at all like an article because it is so short and because we specified no title or author information. Most of what you need to know to type regular text is contained in the example above. When you consider that by far the majority of any document consists of straight text, it is obvious that \LaTeX\ makes this fabulously straightforward. \LaTeX\ will do all the routine work of formatting, and we simply get on with the business of composing. \LaTeX\ does more than simply choose pleasing line breaks and provide natural spacing when setting a paragraph. Remember we said that \TeX\ has inherited the knowledge of generations of professional printers---well part of that knowledge includes being on the look-out for {\em ligatures}. These are combinations of letters within words which should be typeset as a single special symbol because they will ``clash'' with each if this is not done. Have a look at these words \begin{center} flight, flagstaff, chaff, fixation \end{center} and compare them with these \begin{center} f{l}ight, f{l}agstaf{f}, chaf{f}, f{i}xation \end{center} See the difference? In the first set I let \LaTeX\ run as it usually does. In the second I overruled it somewhat, and stopped it from creating ligatures. Notice how the `fl', `ff', and `fi' combinations are different in the two sets---in the former they form a single symbol (a ligature) and in the latter they are comprised of two disjoint symbols. There are other combinations that yields ligatures, but we don't have to bother remembering any of them because \LaTeX\ will take care of these, too. Notice, too, that \LaTeX\ has been taught how to hyphenate the majority of words. It will hyphenate a word if it feels that the overall quality of the paragraph will be improved. For long words it has been taught several potential hyphenation positions. \LaTeX\ also goes to a lot of trouble to try to choose pleasing page breaks. It avoids ``widows'', which are single lines of a paragraph occurring by themselves at either the bottom of a page (where it would have to be the first line of a paragraph) or at the top of a page (where it would have to be the last). It also ``vertically justifies'' your page so that all pages have exactly the same height, no matter what appears on them. As testimony to the success of the pagebreaking algorithm, I have (to this point) not once chosen a page break in this document. \subsection{Punctuation} Typists have a convention whereby a single space is left after a mid-sentence comma, and two spaces are left after a sentence-ending period. How do we enforce this if \LaTeX\ treats a string of spaces just like a single one? The answer, unsurprisingly, is that we {\em don't}. \moveright0.1\textwidth\vbox{% \footnotesize\begin{verbatim} To have a comma followed by the appropriate space, we simply type a comma follows by at least one space. To end a sentence we type a period with at least one following space. No space will be inserted if we type a comma or period followed straight away by something other than a space, because there are times when we won't require any space, i.e., we do what comes narurally. \end{verbatim} } \noindent will produce \result{% To have a comma followed by the appropriate space, we simply type a comma follows by at least one space. To end a sentence we type a period with at least one following space. No space will be inserted if we type a comma or period followed straight away by something other than a space, because there are times when we won't require any space, i.e., we do what comes naturally. } \LaTeX\ will produce suitable space after commas, periods, semi-colons and colons, exclamation marks, question marks etc.\ if they are followed by a space. In stretching a line to justify to the right margin, it also knows that space after a punctuation character should be more ``stretchable'' than normal inter-word space and that space after a sentence-ending period should be stretched more than space after a mid-sentence comma. \TeX\ knows the nature of punctuation if you stick to the simple rules outlined here. As we've already said, those rules tell \LaTeX\ how to distinguish consecutive words, sentences, phrases, etc. Actually, there is more to ending sentences than mentioned above. Since \LaTeX\ cannot speak English, it works on the assumption that {\em a period followed by a space ends a sentence unless the period follows a capital letter}. This works most of the time, but can fail. To get a normal inter-word space after a period that doesn't end a sentence, follow the period by a {\em control space}---a \verb*@\ @ (a {\tt \bs} character followed by a space or return). Very rarely, you will have to force a sentence to end after a period that follows a capital letter (remember that \LaTeX\ assumes this doesn't end a sentence). This is done by preceding the period with a \verb!\@! command (you can guess from the odd syntax that this is rarely needed). It's time we saw some examples of this. After all, this is our first experience of {\em control symbols} (don't worry, there are many more to come). \moveright0.1\textwidth\vbox{% \footnotesize\begin{verbatim} We must be careful not to confuse intra-sentence periods with periods that end a sentence, i.e.\ we must remember that our task is to describe the sentence structure. Periods that the typesetter requires a little help with typically result from abbreviations, as in etc.\ and others. We have to work somewhat harder to break a sentence after a capital letter, but that shouldn't bother us to much if we keep up our intake of vitamin E\@. All this goes for other sentence-ending punctuation characters, so I could have said vitamin E\@! Fortunately, these are rare occurrences. \end{verbatim} } \noindent results in \result{% We must be careful not to confuse intra-sentence periods with periods that end a sentence, i.e.\ we must remember that our task is to describe the sentence structure. Periods that the typesetter requires a little help with typically result from abbreviations, as in etc.\ and others. We have to work somewhat harder to break a sentence after a capital letter, but that shouldn't bother us to much if we keep up our intake of vitamin E\@. All this goes for other sentence-ending punctuation characters, so I could have said vitamin E\@! Fortunately, these are rare occurrences. } Quotation marks is another area where \LaTeX\ will do some work for us. Keyboards have the characters \verb@`@, \verb@`@, and \verb@"@ but we want to to have access to each of `, ', ``, and ''. So we proceed like this: \moveright0.1\textwidth\vbox{% \footnotesize\begin{verbatim} `\LaTeX' is no conventional word-processor, and to to get quotes, like ``this'', we type repeated ` and ' characters. Note that modern convention is that ``punctuation comes after the closing quote character''. \end{verbatim} } \noindent which gives just what we want \result{% `\LaTeX' is no conventional word-processor, and to to get quotes, like ``this'', we type repeated {\tt `} and {\tt '} characters. Note that modern convention is that ``punctuation comes after the closing quote character''. } Very rarely, you have three quote characters together. Merely typing those three quote characters one-after-the-other is ambiguous---how should they be grouped? You tell \LaTeX\ how you want them grouped by inserting a very small space called \verb@\,@. \moveright0.1\textwidth\vbox{% \footnotesize\begin{verbatim} ``\,`Green ham' or `Eggs?'\,'' is the question. \end{verbatim} } \noindent gives the desired result \result{% ``\,`Green ham' or `Eggs?'\,'' is the question. } Since we have a typesetter at our disposal, we might as well use the correct dashes where we need them. There are three types of dash: the hyphen, the endash, and the emdash. A minus sign is not a dash. Hyphens are typed as you'd hope, just by typing a \verb@-@ at the point in the word that you want a hyphen. Don't forget that \LaTeX\ takes care of hyphenation that is required to produce pretty linebreaks. You only type a hyphen when you explicitly want one to appear, as in a combination like ``inter-college''. An endash is the correct dash to use in indicating number ranges, as in ``questions~1--3''. To specify an endash you type two consecutive dashes on the keyboard, as in \verb@1--3@. An emdash is a punctuation dash, used at the end of a sentence---I tend to use them too much. To specify an emdash you type three consecutive dashes on the keyboard, as in ``\ldots\verb@a sentence---I tend to@\ldots''. \moveright0.1\textwidth\vbox{% \footnotesize\begin{verbatim} Theorems 1--3 concern the semi-completeness of our new construct---in the case that it satisfies the first axiom. \end{verbatim} } \noindent yields \result{% Theorems 1--3 concern the semi-completeness of our new construct---in the case that it satisfies the first axiom. } \subsection{Ties} When you always remember to use {\em ties\/}, you know that you are becoming {\TeX}nically inclined. Ties are used to prevent \LaTeX\ from breaking lines at certain places. \LaTeX\ will always choose line breaks that result in the most aesthetically pleasing paragraph as judged by its stringent rules. But because \LaTeX\ does not actually understand the material it is setting so beautifully, it can make some poor choices. A {\em tie\/} is the character \verb@~@. It behaves as a normal interword space in all respects {\em except\/} that the line-breaking algorithm will never break a line at that point. Thus \moveright0.1\textwidth\vbox{% \footnotesize\begin{verbatim} Dr. Seuss should be typed as Dr.~Seuss \end{verbatim} } \unskip\noindent for this makes sure that \LaTeX\ will never leave the `Dr' at the end of one line and put the `Seuss' at the beginning of the next. One should try to get in to the habit of typing ties first-time, not after waiting to see if \LaTeX\ will make a poor choice This will allow you to make all sorts of changes to your text without ever having to go back and insert a tie at a point that has migrated to the end of a line from the middle of a line as a result of those changes. Remember, of course, that the line-breaks Here are some more examples of places where you should remember to place ties. \moveright0.1\textwidth\vbox{% \footnotesize\tt\begin{tabbing} Lemmas 3 and\verb!~!4\quad \= \kill Chapter\verb!~!10 \> Donald\verb!~!E. Knuth\\ Appendix\verb!~!C \> width\verb!~!2\\ Figure\verb!~!1 \> function\verb!~!f\\ Theorem\verb!~!2 \> 1,\verb!~!2, or\verb!~!3\\ Lemmas 3 and\verb!~!4 \> equals\verb!~!5\\ \end{tabbing} } \subsection{Specially reserved symbols}\label{sec:reserved} In the sequel we will see that the the ten characters \moveright0.1\textwidth\hbox{\verb!# $ % & ~ _ ^ \ { }!} \noindent are reserved for special use. Indeed, we have seen already that {\tt\bs} and \verb@~@ are non-printing characters that perform special services (and we'll have a lot more to say about the use of {\tt\bs}). But what if we need one of these special symbols to appear in our document? The answer for seven of the symbols is to precede them by a {\tt\bs} character, so forming another {\em control symbol\/} (remember that {\tt\bs} followed by a space was also a control symbol). \moveright0.1\textwidth\vbox{% \footnotesize\begin{verbatim} It is not 100\% straightforward to typeset the characters \$ \& \% \_ \{ \}, but given the enormous convenience of the use they are normally reserved for this is a small price to pay. \end{verbatim} } \noindent produces \result{% It is not 100\% straightforward to typeset the characters \$ \& \% \_ \{ \}, but given the enormous convenience of the use they are normally reserved for this is a small price to pay. } \subsection{So what are control symbols and words?} In typing a document, we can think of ourselves as being in one of two distinct modes. We are either typing {\em literal text\/} (which will just be set into neat paragraphs for us) or we are typing text that will be {\em interpreted\/} by \LaTeX\ as an instruction to insert a special symbol or to perform some action. Thus we are either typing material that will go straight into the document (with some beautification), or we are giving commands to \LaTeX. Some commands are implicit, in that we don't have to do anything much extra. For instance, we command \LaTeX\ to end the present sentence by typing a period (that doesn't follow a capital letter). These are no so much commands as part of having to describe the logical structure of a document. A {\em control word\/} is something of the form \verb@\commandname@, where the command name is a word made up only of the letters a to~z and A to~Z. A {\em control symbol\/} consists of a {\tt\bs} followed by single symbol that is not a letter. Here are some examples: \begin{itemize} \item we have met the control space symbol \verb*@\ @ before, \item the commands to set symbols like \% and \$ are control symbols \item \verb!\@! was a control symbol that told told \LaTeX\ that the very next period did really end the sentence, \item \verb@\LaTeX@ is a control word that tell \LaTeX\ to insert its own name at the current point, \item \verb@\clubsuit@ instructs that a $\clubsuit$ be inserted, \item \verb@\pounds@ inserts a \pounds\ symbol, \item \verb@\S@ inserts a \P\ symbol, \item \verb@\em@ makes the ensuing text {\em be emphasised}, \end{itemize} These examples show that control sequences can be used to access symbols not available from the keyboard, do some typesetting tricks like setting the word \LaTeX\ the way it does, and change the appearance of whole chunks of text as with \verb@\em@. We'll be meeting many more of these type of control sequences. Another enormously powerful class of control sequences is those that accept {\em arguments}. They tell \LaTeX\ to take the parts of text you supply and do something with them---like make a fraction by setting the first argument over the second and drawing a line of the appropriate length between them. These are part of what makes \LaTeX\ so powerful, and here are some examples. \begin{itemize} \item \verb@\chapter{The beginning}@ causes \LaTeX\ to start a new chapter with name ``The Beginning'', number it in sequence, typeset the chapter heading in a suitable font, and make an entry in the table of contents, \item \verb@\overline{words}@ causes $\overline{\mbox{words}}$ to be overlined, \item \verb@\frac{a+b}{c+d}@ sets the given two argument as a fraction, doing most of the dirty work for us: $\frac{a+b}{c+d}$, \item \verb@\sqrt[5]{a+b}@ typesets the fifth-root of $a+b$, like this: $\sqrt[5]{a+b}$. The {\tt 5} is in square brackets instead of braces because it is an optional argument and could be ommited all together (giving the default of square root), \end{itemize} Mandatory arguments are given enclosed by braces, and optional arguments enclosed by square brackets. Each command knows how many arguments to expect, so you don't have to provide any indication of that. We have actually jumped the gun a little. The above examples include examples of {\em mathematical\/} typesetting, and we haven't yet seen how to tell \LaTeX\ that it is typesetting maths as opposed to some other random string of symbols that it doesn't understand either. We'll come to mathematical typesetting in good time. We need to dwell on a {\TeX}nicality for a moment. How does \LaTeX\ know where the name of a control sequence ends? Will it accept both \verb@\pounds3@ and \verb@\pounds 3@ in order to set \pounds3, and will \verb@\emWalrus@ and \verb@\em Walrus@ both be acceptable in order to get {\em Walrus\/}? The answer is easy when you remember that a control word consists only of alphabetic characters, and a control symbol consists of exactly one nonalphabetic character. So to determine which control sequence you typed, \LaTeX\ does the following: \begin{enumerate} \item when a {\tt\bs} character is encountered, \LaTeX\ knows that either a control symbol or a control word will follow. \item If the {\tt\bs} is followed by a nonalphabetic character, then \LaTeX\ knows that it is a control {\em symbol\/} that you have typed. It then recognises which one it was, typesets it, and goes on to read the character which follows the symbol you typed. \item If the {\tt\bs} is followed by an alphabetic character, then \LaTeX\ knows that it is a control word that you have typed. But it has to work out where the name of the control word ends and where the ensuing text takes over again. Since only alphabetic characters are allowed, \LaTeX\ reads everything up to just before that first nonalphabetic character as the control sequence name. Since it is common to delimit the end of a control word by a space, \LaTeX\ will {\em ignore\/} any space that follows a control word, since you want that space treated as end-of-control-word space rather than interword space. \end{enumerate} This has one important consequence: The character in the input file immediately after a control symbol will be ``seen'' by \LaTeX, but {\em any space following a control word will be discarded and never processed.} This does not affect one much if you adopt the convention of always typing a space after a control sequence name. There is a rare circumstance where this necessitates a little extra work and thought, which we illustrate by example: \moveright0.1\textwidth\vbox{% \footnotesize\begin{verbatim} If we type a control word like \LaTeX in the running text then we must be cautious, because the string of spaces that come after it will be discarded by the \LaTeX\ system. \end{verbatim} } \noindent which produces the output \result{% If we type a control word like \LaTeX in the running text then we must be cautious, because the string of spaces that come after it will be discarded by the \LaTeX\ system. } \subsection{Commands to change appearance}\label{sec:groups} We've seen a little of how to access various symbols using control sequences and we mentioned the \verb@\em@ command to emphasise text, but we didn't see how to use them. We look here at commands that change the appearance of the text. Each of the control words here is a directive rather than a control sequence that accepts an argument. This is because potential arguments consisting of text that wants to be emboldened or emphasised are very large, and it would be a nuisance to have to enclose such an argument in argument-enclosing braces. To delimit the area of text over which one of these commands has effect (its {\em scope}) we make that text into what is called a {\em group}. Groups are used extensively in \LaTeX\ to keep effects local to an area, rather than affecting the whole document. Apart from enhancing usability, this also in a sense protects distinct parts of a document from each other. The \LaTeX\ commands for changing type style are given in table~\ref{tab:typestyles}, and those for changing type size are given in table~\ref{tab:sizes}. Commands for selecting fonts other than these are not discussed here. \begin{table}[ht] \centering \begin{tabular}{llllllll} \verb@\rm@ & Roman & & \verb@\it@ & \it italic & & \verb@\sc@ & \sc Capitals\\ \verb@\em@ & \em Emphasised & & \verb@\sl@ & \sl slanted & & \verb@\tt@ & \tt typewriter\\ \verb@\bf@ & \bf boldface & & \verb@\sf@ & \sf sans serif & &\\ \end{tabular} \caption{Commands for selecting type styles} \label{tab:typestyles} \end{table} Each of the type style selection commands selects the specified style but does not change the size of font being used. The default type style is roman (you are reading a roman style font now). To change type size you issue one of the type size changing commands in table~\ref{tab:sizes}, which will select the indicated size in the currently active style. The release of \LaTeX\ 3.0 (the present version is 2.09) will see the New Font Selection Scheme in place as a standard feature. This makes font matters much easier to deal with. % part 2 of 4 \begin{table}[ht] \centering \begin{tabular}{l|r|r|r|} \multicolumn{1}{l}{size} & \multicolumn{1}{c}{default (10pt)} & \multicolumn{1}{c}{11pt option} & \multicolumn{1}{c}{12pt option}\\ \cline{2-4} \verb|\tiny| & 5pt & 6pt & 6pt\\ \cline{2-4} \verb|\scriptsize| & 7pt & 8pt & 8pt\\ \cline{2-4} \verb|\footnotesize| & 8pt & 9pt & 10pt \\ \cline{2-4} \verb|\small| & 9pt & 10pt & 11pt \\ \cline{2-4} \verb|\normalsize| & 10pt & 11pt & 12pt \\ \cline{2-4} \verb|\large| & 12pt & 12pt & 14pt \\ \cline{2-4} \verb|\Large| & 14pt & 14pt & 17pt \\ \cline{2-4} \verb|\LARGE| & 17pt & 17pt & 20pt\\ \cline{2-4} \verb|\huge| & 20pt & 20pt & 25pt\\ \cline{2-4} \verb|\Huge| & 25pt & 25pt & 25pt\\ \cline{2-4} \end{tabular} \caption{\LaTeX\ size-changing commands.} \label{tab:sizes} \end{table} The point-size option referred to in table~\ref{tab:sizes} is that specified in the \verb@\documentstyle@ command issued at the beginning of the input file. Through it you select that base (or default) font for your document to be 10, 11, or~12 point Roman. If no options are specified, the default is 10-point Roman. The table shows, for instance, that if I issue a \verb@\large@ in this document for which I chose the {\tt 12pt} document style option the result will be a {\large 14-point Roman typeface}. We mentioned that to restrict the scope of a type-changing command we will set the text to be affected off in a group. Let's look at an example of this. \moveright0.1\textwidth\vbox{% \footnotesize\begin{verbatim} When we want to {\em emphasise\/} some text we use the {\tt em} command, and use grouping to restrict the scope. We can change font {\large sizes} in much the same way. We can also obtain {\it italicised}, {\bf emboldened}, {\sc Capitals} and {\sf sans serif} styles. \end{verbatim} } \result{% When we want to {\em emphasise\/} some text we use the {\tt em} command, and use grouping to restrict the scope. We can change font {\large sizes} in much the same way. We can also obtain {\it italicised}, {\bf emboldened}, {\sc Capitals} and {\sf sans serif} styles. } Notice how clever grouping allows us to do all that without once having to use \verb@\rm@ or \verb@\normalsize@. One more thing slipped into that example---and {italic correction\/} \verb@\/@. This is a very small amount of additional space that we asked to be inserted to allow for the change from sloping {\em emphasised} text to upright text, because the interword space has been made to look less substantial from the terminal sloping character. One has to keep an eye open for circumstances where this is necessary. See the effect of omitting an italic correction after the emphasised text earlier in this paragraph. One might expect, by now, that \LaTeX\ would insert an italic correction for us. But there are enough occasions when it is not wanted, and there is no good rule for \LaTeX\ to use to decide just when to do it for us. So the italic correction is always left up to the typist. \subsection{Accents} \LaTeX\ provides accents for just about all occasions. They are accessed through a variety of control symbols and single-letter control worlds which accept a single argument---the letter to be accented. These control sequences are detailed in table~\ref{tab:accents}. \begin{table}[ht] \centering \begin{tabular}{lll} \verb@\`{o}@ & \`{o} & (grave accent)\\ \verb@\'{o}@ & \'{o} &(acute accent)\\ \verb@\^{o}@ & \^{o} & (circumflex or ``hat'')\\ \verb@\"{o}@ & \"{o} & (umlaut or dieresis)\\ \verb@\~{o}@ & \~{o} & (tilde or ``squiggle'')\\ \verb@\={o}@ & \={o} & (macron or ``bar'')\\ \verb@\.{o}@ & \.{o} & (dot accent)\\ \verb@\u{o}@ & \u{o} & (breve accent)\\ \verb@\v{o}@ & \v{o} & (h\'{a}\v{c}ek or ``check'')\\ \verb@\H{o}@ & \H{o} & (long Hungarian umlaut)\\ \verb@\t{oo}@ & \t{oo} & (tie-after accent)\\ \verb@\c{o}@ & \c{o} & (cedilla accent)\\ \verb@\d{o}@ & \d{o} & (dot-under accent)\\ \verb@\b{o}@ & \b{o} & (bar-under accent) \end{tabular} \caption{Control sequences for accents} \label{tab:accents} \end{table} Thus we can produce \'{o} by typing \verb@\'{o}@, \v{a} by typing \verb@\v{a}@, and P\'{a}l Erd\"{o}s by typing \verb@P\'{a}l Erd\"{o}s@. Take special care when accenting an $i$ or a $j$, for they should lose their dots when accented. Use the control words \verb@\i@ and \verb@\j@ to produce dotless versions of these letters. Thus the best way to type to type \u{e}x\u{\i}gent is \verb"\u{e}x\u{\i}gent". \subsection{Over-ruling some of \TeX's choices} We've seen that ties can be used to stop linebreaks occurring between words. But how can we stop \LaTeX\ from hyphenating a particular word? More generally, how can we stop it from splitting any given group of characters across two lines. The answer is to make that group of characters appears as one solid {\em box\/}, through use of an \verb@\mbox@ command. \moveright0.1\textwidth\vbox{% \footnotesize\begin{verbatim} For instance, if we wanted to be sure that the word {\em currentitem\/} is not split across lines then we should type it as \mbox{\em currentitem}. \end{verbatim} } If for some reason we wish to break a line\\ in the middle of nowhere, preventing \LaTeX\ from justifying that line to the prevailing right margin, the we use the \verb@\newline@ command. One can also use the abbreviated form \verb@\\@. \moveright0.1\textwidth\vbox{% \footnotesize\begin{verbatim} We start with a short line.\newline And now we continue with the normal text, remembering that where we press Return in the input file probably won't correspond to a line break in the final document. More short lines\\ are easy, too. \end{verbatim} } \noindent will produce the line breaks we want \result{% We start with a short line.\newline And now we continue with the normal text, remembering that where we press Return in the input file probably won't correspond to a line break in the final document. More short lines\\ are easy, too. } A warning is in order: \verb@\newline@ must only end part of a line that is ``already set''. It cannot be used to add additional space between paragraphs, nor to leave space for a picture you want to paste in. This is not to be awkward, but is just part of \LaTeX\ holding up its end of the deal by making you have to specially request additional vertical space. This prevents unwanted extra space from entering your document. Later we shall see how to impose our own choice of page size, paragraph indentation, etc. For now we will continue to accept those declared for us in the document style. \subsection{Commenting your document} It is handy to be able to make comments to yourself in the source file for a document. Things like ``I must rewrite this section'' and ``This is version 3 of the document'' are likely. It would also be useful to be able to make the compiler ignore certain parts of the document at times. For this purpose we can use the \verb@%@ character, for all text on an input line that is after a \verb@%@ which is not part of an occurrence of the control symbol \verb@\%@ is discarded by the compiler. Here is an example: \moveright0.1\textwidth\vbox{% \footnotesize\begin{verbatim} There was a 100\% turnout today, an all-time record. %perhaps I should check this claim! %Indeed, there are lots of unsubstantiated claims here! This made for an extremely productive session. \end{verbatim} } \noindent will yields \result{% There was a 100\% turnout today, an all-time record. %perhaps I should check this claim! %Indeed, there are lots of unsubstantiated claims here! This made for an extremely productive session. } \subsection{Footnotes} Inserting footnotes is easy---\LaTeX\ will position and number them for you. You just indicate {\em exactly\/} where the footnote marker should go, and provide the text of the footnote. The footnote text will be placed at the bottom of the present page in a somewhat smaller font, and be separated from the main text by a short horizontal rule\footnote{See for yourself! It's easy when you don't have to do any work.} to conform with convention. The footnote in the last line was typed like this: \moveright0.1\textwidth\vbox{% \footnotesize\begin{verbatim} ...rule\footnote{See for yourself! It's easy ...work.} to conform \end{verbatim} } No space was typed between the {\tt rule} and the \verb@\footnote@, because we want the footnote marker to appear right next to the last letter of the word. Multiple footnotes\footnote{Here is another footnote} are obtained just by using the \verb@\footnote@ command again and again. \subsection{Topmatter} We declare the title and author information using the \verb@\title@ and \verb@\author@ commands, each of which accept a single argument. Multiple authors are all listed in the argument of \verb@\title@, separated by \verb@\and@'s. The \verb@\date@ command can be used to date a document. After we have declared each of these, we issue a \verb@\maketitle@ command to have them typeset for us. In the \verb@book@ and \verb@article@ document styles this will result in a separate page; in the \verb@article@ style the ``top matter'' will be placed at the top of the first page. The style files determine the placement and the choice of font. \moveright0.1\textwidth\vbox{% \footnotesize\begin{verbatim} \title{A Thought for the Day} \author{Fred Basset \and Horace Hosepipe} \date{November 1992} \maketitle \end{verbatim} } \noindent will produce something along the lines of \result{% \begin{center} {\Large A Thought for the Day}\\ \smallskip Fred Basset\quad Horace Hosepipe\\ \smallskip November 1992 \end{center} } This topmatter must appear {\em after\/} the \verb"\begin{document}" and before any other printing material. \subsection{Sectioning commands} As part of our task of describing the logical structure of the document, we must indicate to \LaTeX\ where to start sectional units. To do this we make use of the sectioning commands shown in table~\ref{tab:sectioning}. \begin{table}[ht] \centering {\tt \begin{tabular}{lll} \bs part & \bs subsection & \bs paragraph\\ \bs chapter & \bs subsubsection & \bs subparagraph\\ \bs section & & \\ \end{tabular} } \caption{\LaTeX\ sectioning commands} \label{tab:sectioning} \end{table} Each sectioning command accepts a single argument---the section heading that is to be used. \LaTeX\ will provide the section numbering (and numbering of subsections within sections, etc.)\ so there is no need to include any number in the argument. \LaTeX\ will also take care of whatever spacing is required to set the new logical unit off from the others, perhaps through a little extra space and using a larger font. It will also start a new page in the case that a new chapter is begun. The \verb@\part@ command is used for major subdivisions of substantial documents. The \verb@\paragraph@ and \verb@\subparagraph@ commands are, unfortunately confusing. They are used to section off a modest number of paragraphs of text---they don't start new paragraphs (remember that that was done by leaving a blank line in our input file). The names were retained for historical reasons. It is always a good idea to {\em plan\/} the overall sectional structure of a document in advance, or at least give it a little thought. Not that it would be difficult to change your mind later (you could use the global replace feature of an editor, for instance), but so that you have a good idea of the structure that you have to describe to \LaTeX. The sectioning command that began the present sectional unit of this document was \moveright0.1\textwidth\vbox{% \begin{verbatim} \subsection{Sectioning commands} \end{verbatim} } \noindent and that was all that was required to get the numbered section name and the table of contents entry. There are occasions when you want a heading to have all the appearance of a particular sectioning command, but shouldn't be numbered as a section in its own right or produce a table of contents entry. This can be achieved through using the {\em *-form\/} of the command, as in \verb@\section*{...}@. We'll see that many \LaTeX\ commands have such a *-form which modify their behaviour slightly. Not only will \LaTeX\ number your sectional units for you, it will compile a table of contents too. Just include the command \verb@\tableofcontents@ after the \verb@\begin{document}@ command and after the topmatter that should precede it. \subsection{\LaTeX\ environments} Perhaps the most powerful and convenient concept in the \LaTeX\ syntax is that of an {\em environment}. We will see most of the ``heavy'' typesetting problems we will encounter can be best tackled by one or other of the \LaTeX\ environments. Some environments are used to {\em display\/} a portion of text, i.e.\ to set it off from the surrounding text by indenting it. The {\tt quote} and {\tt verse} environments are examples of these. The {\tt center} environment allows us to centre portions of text, while the {\tt flushright} environment sets small portions of text flush against the right margin. But the true power of \LaTeX\ begins to show itself when we look at environments such as those that provide facilities for itemised or enumerated lists, complex tabular arrangements, and for taking care of figure and table positioning and captioning. What we learn here will also be applicable in typesetting some complicated mathematical arrangements in the next chapter. All the environments are begun by a {\tt \bs begin{\{{\em name}\}}} command and ended by an {\tt \bs end{\em \{name\}}}, where {\em name\/} is the environment name. These commands also serve as begin-group and end-group\footnote{See section \ref{sec:groups}} markers, so that all commands are local to the present environment---they cannot affect text outside the environment. We can also have environment embedded within environment within environment and so on, limited only by memory available on the computer. We must, however, be careful to check that each of these {\em nested\/} environments is indeed contained within the one just outside of it. \nsubsubsection{{\tt em} environment} We start with a very simple environment, one which provides an alternative to the \verb@\em@ command. Remember that \verb@\em@ does not accept an argument; it applies to everything within its scope as dictated by the group within which it is used. This can be tricky if we wish to emphasise a large amount of text, for we may forget a group-delimiting brace and so upset the entire grouping structure of our document. In cases where we fear this might happen, we can proceed as follows. \moveright0.1\textwidth\vbox{% \footnotesize\begin{verbatim} \begin{em} We must always be careful to match our group-delimiting braces correctly. If the braces in a document are unevenly matched then \LaTeX\ will become confused because we will have, in effect, indicated different scopes than we intended for commands. \end{em} \end{verbatim} } \noindent which will give \result{% \begin{em} We must always be careful to match our group-delimiting braces correctly. If the braces in a document are unevenly matched then \LaTeX\ will become confused because we will have, in effect, indicated different scopes than we intended for commands. \end{em} } Although \LaTeX\ doesn't care too much for how we format our source file, it is obviously a good idea to lay it out logically and readably anyway. This helps minimise errors as well as aids in finding them. For this reason I have adopted the convention of always placing the environment \verb@\begin@ and \verb@\end@ commands on lines by themselves. \nsubsubsection{{\tt quote} and {\tt quotation} environments} This environment can be used to display a part of a sentence or paragraph, or even several paragraphs, in such a manner that the material stands out from the rest of the text. This can be used to enhance readability, or to simply emphasise something. Its syntax is simple: \moveright0.05\textwidth\vbox{% \footnotesize\begin{verbatim} Horace smiled and retaliated: \begin{quote} \em You can mock the non-WYSIWYG nature of \TeX\ all you like. You don't understand that that is precisely what makes \TeX\ enormously more powerful than that lame excuse for a typesetter you use. And I'll bet that from start to finish of preparing a document I'm quicker than you are, even if you do type at twice the speed and have the so-called advantage of WYSIWYG. In your case, what you see is {\em all\/} you get! \end{quote} and then continued with composing his masterpiece of the typesetting art. \end{verbatim} } \noindent produces the following typeset material: \moveleft0.05\textwidth\vbox{\result{% \noindent Horace smiled and retaliated: \begin{quote} \noindent\em You can mock the non-WYSIWYG nature of \TeX\ all you like. You don't understand that that is precisely what makes \TeX\ enormously more powerful than that lame excuse for a typesetter you use. And I'll bet that from start to finish of preparing a document I'm quicker than you are, even if you do type at twice the speed and have the so-called advantage of WYSIWYG. In your case, what you see is {\em all\/} you get! \end{quote} and then continued with composing his masterpiece of the typesetting art. } } That is a much more readable manner of presenting Horace's piece of mind than embedding it within a regular paragraph. The {\tt quote} environment was responsible for the margins being indented on both sides during the quote. This example has also been used to show how the commands that begin and end an environment restrict the scope of commands issued within that environment: The \verb@\em@ at the beginning of the quote did not affect the text following the quote. We have also learned here that if we use \verb@\em@ within already emphasised text, the result is roman type---and we don't require an italic correction here because the final letter of `all' was not sloping to the right. The {\tt quotation} environment is used in just the same way as the {\tt quote} environment above, but it is intended for setting long quotations of several paragraphs. It would be suitable for quoting a few paragraphs from the text of some speech, for instance. \LaTeX\ treats the given text just like normal text that it has to set into paragraphs, except that it indents the margins a little. \nsubsubsection{{\tt verse} environment} This is provided to facilitate the setting of poetry. When within the {\tt verse} environment, we use \verb@\newline@ (or \verb@\\@) to end a line; and what would normally signify a new paragraph serves to indicate the start of a new stanza. Let's have a shot at some cheap poetry. \moveright0.1\textwidth\vbox{% \footnotesize\begin{verbatim} \begin{verse} Roses are red\\ Violets are blue\\ I think \TeX\ is great\\ And so will you! Roses are still red\\ Violets are still blue\\ I'm schizophrenic\\ And so am I. \end{verse} \end{verbatim} } \noindent will produce the following stunningly-creative ``poem'': \result{% \begin{verse} Roses are red\\ Violets are blue\\ I think \TeX\ is great\\ And so will you! Roses are still red\\ Violets are still blue\\ I'm schizophrenic\\ And so am I. \end{verse} } \nsubsubsection{{\tt center} environment} This environment allows the centring of consecutive lines of text, new lines being indicated by a \verb@\\@. If you don't separate lines with the \verb@\\@ command then you'll get a centred paragraph the width of the page, which won't look any different to normal. If only one line is to be centred, then no \verb@\\@ is necessary. \moveright0.1\textwidth\vbox{% \footnotesize\begin{verbatim} The {\tt center} environment takes care of the vertical spacing before and after it, so we don't need to leave any. \begin{center} If we leave no blank line after the\\ {\tt center} environment\\ then the ensuing text will not\\ be regarded as part of a new\\ paragraph, and so will not be indented.\\ \end{center} In this case we left a blank line after the environment, so the new text was regarded as starting a new paragraph. \end{verbatim} } \noindent gives the following text \result{% The {\tt center} environment takes care of the vertical spacing before and after it, so we don't need to leave any. \begin{center} If we leave no blank line after the\\ {\tt center} environment\\ then the ensuing text will not\\ be regarded as part of a new\\ paragraph, and so will not be indented.\\ \end{center} In this case we left a blank line after the environment, so the new text was regarded as starting a new paragraph. } \nsubsubsection{{\tt flushright} and {\tt flushleft} environments} The {\tt flushright} environment causes each line to be set with its last character against the right margin, without trying to stretch the line to to current text width. The {\tt flushleft} environment is similar. \moveright0.1\textwidth\vbox{% \footnotesize\begin{verbatim} We can stop \LaTeX\ from justifying each line to both the left and the right margins. \begin{flushright} The {\tt flushright} environment is\\ used for text with an even right margin\\ and a ragged left margin. \end{flushright} \begin{flushleft} and the {\tt flushleft} environment is\\ used for text with an even left margin\\ and a ragged right margin. \end{flushleft} \end{verbatim} } \noindent gives the desired display \result{% We can stop \LaTeX\ from justifying each line to both the left and the right margins. \begin{flushright} The {\tt flushright} environment is\\ used for text with an even right margin\\ and a ragged left margin. \end{flushright} \begin{flushleft} and the {\tt flushleft} environment is\\ used for text with an even left margin\\ and a ragged right margin. \end{flushleft} } One must be wary not to lapse into ``word-processing'' mode when using these environments. Remember that pressing return at the end of a line in the input file does not serve to end the current line there, but just to indicate the end of another word. We have to use the \verb@\\@ command to end a line. \nsubsubsection{{\tt verbatim} environment} We can simulate typed text using the {\tt verbatim} environment. The \verb@\tt@ (typewriter text) type style can be used for simulating typed words, but runs into trouble if one of the characters in the simulated typed text is a specially reserved \LaTeX\ character. For instance, \verb@{\tt type \newline}@ would not have the desired effect because \LaTeX\ would interpret the \verb@\newline@ is an instruction to start a new line. The {\tt verbatim} environment allows the simulation of multiple typed lines. {\em Everything\/} within the environment is typeset in typewriter font exactly as it appears in our source file---obeying spaces and line breaks as in the source file and not recognising the existence of any special symbols. % this is going to be ugly, because we can't demonstrate an % \ end{verbatim} using the verbatim environment \moveright0.1\textwidth\vbox{% \footnotesize\begin{flushleft} \tt\bs begin\{verbatim\}\\ In the verbatim environment we can type anything\\ we like.\\ So we don't need to look out for uses of \%, \$, \& etc,\\ nor will control sequences like \bs newline have any\\ effect.\\ \bs end\{verbatim\} \end{flushleft} } \noindent will produce the simulated input text \moveright0.1\textwidth\vbox{% \footnotesize\begin{verbatim} In the verbatim environment we can type anything we like. So we don't need to look out for uses of %, $, & etc, nor will control sequences like \newline have any effect. \end{verbatim} } The only thing that cannot be typed in the {\tt verbatim} environment is the sequence \verb@\end{verbatim}@. You might notice that I still managed to simulate that control sequence above. One can always get what you want in \TeX, perhaps with a little creativity. If we want only to simulate a few typed words, such as when I say to use \verb@\newline@ to start a new line, then the \verb@\verb@ command is used. This command has a slightly odd syntax, pressed upon it by the use for which it was intended. It cannot accept an argument, because we may want to simulate typed text that is enclosed by \verb@{braces}@. What one does is to choose any character that is {\em not\/} in the text to be simulated, and use a pair of these characters as ``argument delimiters''. I usually use the \verb"@" or \verb@"@ charachters, as I rarely have any other uses for them. Thus \result{% \noindent use \verb"\%" to obtain a \% sign } \noindent is typed as \moveright0.1\textwidth\vbox{ \footnotesize\begin{verbatim} use \verb"\%" to obtain a \% sign \end{verbatim} } \nsubsubsection{{\tt itemize}, {\tt enumerate}, {\tt description} environments} \LaTeX\ provides three predefined list-making environment, and a ``primitive'' list environment for designing new list environments of your own. We shall just describe the predefined ones here. There is delightfully little to learn in order to be able to create lists. The only new command is \verb@\item@ which indicates the beginning of a new list item (and the end of the last one if this is not the first item). This command accepts an optional argument (which means you'd enclose it in square brackets) that can be used to provide an item label. If no optional argument is given, then \LaTeX\ will provide the item label for you; in an {\tt itemize} list it will bullet the items, in an {\tt enumerate} list it will number the items, and in a list of {\tt description}s the default is to have no label (which would look a bit odd, so you're expected to use the optional argument there). Remember that \verb@\item@ is used to separate list items; it does not accept the list item as an argument. \moveright0.1\textwidth\vbox{% \footnotesize\begin{verbatim} \begin{itemize} \item an item is begun with \verb@\item@ \item if we don't specify labels, then \LaTeX\ will bullet the items for us \item I indent lines after the first in the input file, but that is just to keep things readable. As always, \LaTeX\ ignores additional spaces. \item a blank line between items is ignored, for \LaTeX\ is responsible for spacing items. \item \LaTeX\ is in paragraph-setting mode when it reads the text of an item, and so will perform all the usual functions \end{itemize} \end{verbatim} } \noindent produces the following itemised list: \result{ \begin{itemize} \item an item is begun with {\tt\bs item}%\verb blew up here! \item if we don't specify labels, then \LaTeX\ will bullet the items for us \item I indent lines after the first in the input file, but that is just to keep things readable. As always, \LaTeX\ ignores additional spaces. \item a blank line between items is ignored, for \LaTeX\ is responsible for spacing items. \item \LaTeX\ is in paragraph-setting mode when it reads the text of an item, and so will perform all the usual functions \end{itemize} } Lists can also be embedded within one another, for they are just environments and we said that environments have this property. Remember that we must nest them in the correct order. We demonstrate with the following list, which also shows how to use the {\tt enumerate} environment. \moveright0.1\textwidth\vbox{% \footnotesize\begin{verbatim} \noindent I still have to do the following things: \begin{enumerate} \item Sort out LAN accounts for people on the course \begin{itemize} \item Have new accounts created for those not already registered on the LAN \item Make sure all users have a personal directory on the data drive \item Give read and scan rights to users in the \TeX\ directories \item Add users to the appropriate LAN print queues \end{itemize} \item Have a \TeX\ batch file added to a directory that is on a public search path \item Finish typing these course notes and proof-read them \item Photocopy and bind the finished notes \end{enumerate} \end{verbatim} } \noindent will give the following list \result{ I still have to do the following things: \begin{enumerate} \item Sort out LAN accounts for people on the course \begin{itemize} \item Have new accounts created for those not already registered on the LAN \item Make sure all users have a personal directory on the data drive \item Give read and scan rights to users in the \TeX\ directories \item Add users to the appropriate LAN print queues \end{itemize} \item Have a \TeX\ batch file added to a directory that is on a public search path \item Finish typing these course notes and proof-read them \item Photocopy and bind the finished notes \end{enumerate} } See how I lay the source file out in a readable fashion. This is to assist myself, not \LaTeX. The {\tt description} environment is, unsurprisingly, for making lists of descriptions. \moveright0.1\textwidth\vbox{% \footnotesize\begin{verbatim} \begin{description} \item[\tt itemize] an environment for setting itemised lists. \item[\tt enumerate] an environment for setting numbered lists. \item[\tt description] an environment for listing descriptions. \end{description} \end{verbatim} } \noindent will typeset the following descriptions: \result{% \begin{description} \item[\tt itemize] an environment for setting itemised lists. \item[\tt enumerate] an environment for setting numbered lists. \item[\tt description] an environment for listing descriptions. \end{description} } Note that the scope of the \verb@\tt@ commands used in the item labels was restricted to the labels. \nsubsubsection{{\tt tabbing} environment} This environment simulates tabbing on typewriters. There one chose the tab stops in advance (analysing the material to be typed for the longest item in each column) and typed entries consecutively, hitting the tab key to move to the next tab stop and return to move to the next line. In the {\tt tabbing} environment, we proceed similarly. We look for the worst-case line (that which will determine the desired tab stops) and use it to set the tabs by inserting \verb@\=@ control symbols at the points where we want tab stops. We then discard that line using \verb@\kill@, since the worst-case line might not be the first line in the material we have to type. We then type each line, using \verb@\>@ to move to the next tab stop and \verb@\\@ to end a line. \moveright0.1\textwidth\vbox{% \footnotesize\begin{verbatim} \begin{tabbing} Cheddar cheese \= Recommended \= \$2.00 \kill Green Ham \> Recommended \> \$2.00 Eggs \> 1 a week \> \$1.50 Cheddar cheese \> Hmmm \> \$0.80 Yak cheese \> Avoid \> \$0.05 \end{tabbing} \end{verbatim} } \noindent gives the following uniformly-tabbed table \result{% \begin{tabbing} Cheddar cheese \= Recommended \= \$2.00 \kill Green Ham \> Recommended \> \$2.00\\ Eggs \> 1 a week \> \$1.50\\ Cheddar cheese \> Hmmm \> \$0.80\\ Yak cheese \> Avoid \> \$0.05 \end{tabbing} } In the format line I chose the longest entry from each of the prospective columns. I lined some of the \verb@\>@ commands up in the source just to keep things readable. Remember that excess spaces are ignored. \LaTeX\ sets the \verb@\kill@ed line normally and sees where the tab stops requested will be needed in the typeset text. Note also that commands given within the {\tt tabbing} environment are local to {\em the current item}. Actually, we use the above approach in the case that we require uniformly tabbed columns. The format line is not compulsory, and we can define tab stops dynamically. See if you can make sense of the following. \moveright0.1\textwidth\vbox{% \footnotesize\begin{verbatim} \begin{tabbing} Entry in position 1,1 \= Entry 1,2 \= Entry 1,3\\ Entry in position 2,1 \> Entry 2,2 \> Entry 2,3\\ Entry 3,1 \= Entry 3,2 \> Entry 3,3\\ Entry 4,1 \> Entry 4,2 \> Entry 4,3 \end{tabbing} \end{verbatim} } \noindent which produces \result{% \begin{tabbing} Entry in position 1,1 \= Entry 1,2 \= Entry 1,3\\ Entry in position 2,1 \> Entry 2,2 \> Entry 2,3\\ Entry 3,1 \= Entry 3,2 \> Entry 3,3\\ Entry 4,1 \> Entry 4,2 \> Entry 4,3 \end{tabbing} } The are additional commands that can be used within the tabbing environment to achieve special effects, but we won't be discussing them here. \nsubsubsection{{\tt tabular} environment} The {\tt tabular} environment is used to produce tables of items, particularly when the table is predominantly rectangular and when line drawing is required. \LaTeX\ will make most decisions for us; for instance it will align everything for us without having to be told which are the longest entries in each column. This environment is the first of many that use the \TeX\ ``tabbing character'' {\tt \&}. This character is used to separate consecutive entries in a row of a table, array, etc. The end of a row is indicated in the usual manner, by using \verb@\\@. In this way the individual cells of the table, or array, are clearly described to \LaTeX, and it can analyse them to make typesetting decisions. Commands issued within a cell so defined are, again, local to that cell. The {\tt tabular} environment is also our first example of an {\em environment with arguments}. The arguments are given, in braces as usual, just after the closing brace after the environments name. In the case of {\tt tabular} there is a single mandatory argument giving the justification of the entries in each column: {\tt l} for left justified, {\tt r} for right justified, and {\tt c} for centred. There must be an entry for each column of the table, and there is no default. Let's start with a simple table. \moveright0.1\textwidth\vbox{% \footnotesize\begin{verbatim} \begin{tabular}{llrrl} \bf Student name & \bf Number & \bf Test 1 & \bf Test 2 & \bf Comment\\ F. Basset & 865432 & 78 & 85 & Pleasing\\ H. Hosepipe & 829134 & 5 & 10 & Improving\\ I.N. Middle & 853931 & 48 & 47 & Can make it \end{tabular} \end{verbatim} } \noindent will produce the following no-frills table \result{% \begin{tabular}{llrrl} \bf Student name & \bf Number & \bf Test 1 & \bf Test 2 & \bf Comment\\ F. Basset & 865432 & 78 & 85 & Pleasing\\ H. Hosepipe & 829134 & 5 & 10 & Improving\\ I.N. Middle & 853931 & 48 & 47 & Can make it \end{tabular} } Note that a \verb@\\@ was not necessary at the end of the last row. Also note that, once again, the alignment of the \verb@&@ characters was for human readability. It is conventional to set columns of numbers with right justification. The \verb@\bf@ directives apply only the entries in which they are given. A {\tt |} typed in the {\tt tabular} environment's argument causes a vertical line to be drawn at the indicated position and extending for the height of the entire table. An \verb@\hline@ given in the environment draws a horizontal line extending the width of the table to be drawn at the vertical position at which the command is given. A \verb@\cline@$\{i$-$j\}$ draws a line spanning columns $i$ to $j$, at the vertical position at which the command is given. A repeated line-drawing command causes a double line to be drawn. We illustrate line drawing in tables by putting some lines into our first table. We will type this example in a somewhat expanded form, trying to make it clear why the lines appear where they do. \moveright0.1\textwidth\vbox{% \footnotesize\begin{verbatim} \begin{tabular}{|l|l|r|r|l|} \hline \bf Student name & \bf Number & \bf Test 1 & \bf Test 2 & \bf Comment\\ \hline F. Basset & 865432 & 78 & 85 & Pleasing\\ \hline H. Hosepipe & 829134 & 5 & 10 & Improving\\ \hline I.N. Middle & 853931 & 48 & 47 & Can make it\\ \hline \end{tabular} \end{verbatim} } \noindent which will give \result{% \begin{tabular}{|l|l|r|r|l|} \hline \bf Student name & \bf Number & \bf Test 1 & \bf Test 2 & \bf Comment\\ \hline F. Basset & 865432 & 78 & 85 & Pleasing\\ \hline H. Hosepipe & 829134 & 5 & 10 & Improving\\ \hline I.N. Middle & 853931 & 48 & 47 & Can make it\\ \hline \end{tabular} } % part 3 of 4 That way of laying out the source file makes it clear where the lines will go. As we (by now) well know, the returns that we pressed after the \verb@\\@s in typing this table might as well have been spaces as far as \LaTeX\ is concerned. Thus it is common to have the \verb@\hline@ commands following the \verb@\\@s on the input lines. We will do this in future examples. The \verb@\multicolumn@ column can be used to overrule the overall format of the table for a few columns. The syntax of this command is \begin{syntax}{multicolumn} \man{n}\man{pos}\man{item} \end{syntax} \noindent where $n$ is the number of columns of the original format that {\em item\/} is to span, and {\em pos\/} specifies the justification of the new argument. \moveright0.1\textwidth\vbox{% \footnotesize\begin{verbatim} \begin{tabular}{||l|c|c|c||} \hline \multicolumn{4}{|c|}{\LaTeX\ size changing commands}\\ \hline Style option & 10pt (default) & \tt 11pt & \tt 12pt\\ \hline \tt\bs footnotesize & 8pt & 9pt & 10pt\\ \hline \tt\bs small & 9pt & 10pt & 11pt\\ \hline \tt\bs large & 12pt & 12pt & 14pt\\ \hline \end{tabular} \end{verbatim} } \noindent produces the following table: \begin{center}\footnotesize \begin{tabular}{||l|c|c|c||} \hline \multicolumn{4}{|c|}{\LaTeX\ size changing commands}\\ \hline Style option & 10pt (default) & \tt 11pt & \tt 12pt\\ \hline \tt\bs footnotesize & 8pt & 9pt & 10pt\\ \hline \tt\bs small & 9pt & 10pt & 11pt\\ \hline \tt\bs large & 12pt & 12pt & 14pt\\ \hline \end{tabular} \end{center} \nsubsubsection{{\tt figure} and {\tt table} environments} Figures (diagrams, pictures, etc.)\ and tables (perhaps created with the {\tt tabular} environment) cannot be split across pages. So \LaTeX\ provides a mechanism for ``floating'' them to a nearby place where there is room for them. This may mean that your figure or table may appear a little later in the document than its declaration in the source file might suggest. You can suggest to \LaTeX\ that it try to place the figure or table at the present position if there is room or, failing that, at the top or bottom of the present or following page. You can also ask for it to be presented by itself on a ``page of floats''. You suggest these options to \LaTeX\ through an optional argument to the environment. One lists a combination of the letters {\tt h}, {\tt t}, {\tt b}, and {\tt p} where \begin{description} \item[h] means that the object should be placed {\em here} if there is room, so that things will appear in the same order as in the source file, \item[t] means that the object can be placed at the {\em top\/} of the of a text page, but no earlier than the present page. \item[b] means that the object can be placed at the {\em bottom\/} of a text page, but no earlier than the present page. \item[p] means that the object should be set on a {\em page of floats\/} that consists only of tables and figures. \end{description} A combination of these indicates decreasing order of preference. The default is {\tt tbp}. In this document I have tended to use {\tt htbp}. \LaTeX\ will also number and caption a figure or table for you, and compile a list of tables and a list of figures. Just include \verb@\listoffigures@ and \verb@\listoftables@ next to your \verb@\tableofcontents@ command at the beginning of the document. To caption a table of figure, include \verb@\caption{@{\em caption text}\verb@}@ just before the \verb@\end{table}@ or \verb@\end{figure}@ command. Here's a sample source file. \moveright0.1\textwidth\vbox{% \footnotesize\begin{verbatim} \begin{table}[htbp] \begin{tabular}{lrll} ... \end{tabular} \caption{Mark analysis} \end{table} \end{verbatim} } To leave space for a figure that will inserted by some other means at a later date, we can use the \verb@\vspace@ command: \moveright0.1\textwidth\vbox{% \footnotesize\begin{verbatim} \begin{figure}[htbp] \vspace{9.5cm} \caption{An artists impression} \end{figure} \end{verbatim} } Including graphics files prepared with drawing packages is possible, but beyond the scope of this introduction. \subsection{The {\tt letter} document style} All this and we still don't know how to prepare a simple letter! Actually, there is very little to it. Figure~\ref{fig:letter} shows a sample letter. We declare our own address and signature before entering the {\tt letter} environment because we can use repeated {\tt letter} environments to prepare multiple letters from the same source file. The address of the intended recipient of a particular letter is given as an argument to the {\tt letter} environment. \begin{figure}[p] \moveright0.1\textwidth\vbox{% \footnotesize\begin{verbatim} \documentstyle[12pt]{letter} \begin{document} \address{(Underneath) Lion Bridge\\ Midway down Commercial Road\\ Pietermaritzburg\\ 3200} \signature{F. Basset\\ Public nuisance} \begin{Letter}{Director of Public Parks\\ Pietermaritzburg Municipality\\ Pietermaritzburg} \opening{Kind Sir/Madam} I wish to complain about the shocking practice of fencing off the base of trees. I notice with grave concern that this has occurred in the park bordering my stately residence. This has already caused me great inconvenience and public embarrassment, as you can imagine it would for a hound of my social standing. I demand that you take these obscene obstructions away without delay. \closing{Yours anxiously} \end{letter} \end{document} \end{verbatim} } \vfil\caption{A sample letter} \label{fig:letter} \end{figure} \subsection{Common pitfalls; Error messages} By now it should be clear that we have to work quite accurately when preparing a document. Typing errors in the running text can be absorbed, but messing up a control sequence name will halt the compiler with an error message. Before we look at some common errors and some ways to avoid them, let's have a look at a sample error message. You'll have noticed by now that when you run \LaTeX\ on a source file, the transcript of the compiler session is written on a log file. When errors have accumulated to the point that \LaTeX\ is hopelessly confused, it is time to debug your source file. The log file contains a reference to the line, or lines, of your source file that generated the error together with a description of the error. \TeX\ and \LaTeX\ error messages appear frightening at first sight, to say the least. They are actually very informative, but they can take some getting used to. Mistyped control sequences cause little pain, but a missing \verb@\end{@{\em environment}\verb@}@ can cause a good deal of confusion because it has the effect of making \LaTeX\ try to set material into that environment that was never intended/designed to fit in such a place. Also, ommiting a mandatory argument can cause great confusion. Suppose we type \verb@\bold@ instead of \verb@\bf@ in the following line: \moveright0.1\textwidth\vbox{ \footnotesize\begin{verbatim} this is going to be {\bold very} messy. \end{verbatim} } \noindent This produces the following error message: \moveright0.1\textwidth\vbox{ \footnotesize\begin{verbatim} ! Undefined control sequence. 1.683 this is going to be {\bold very} messy. ? \end{verbatim} } That not so bad! The line beginning with {\tt!} tells us that we have tried to used a control sequence that was not known to \LaTeX; the {\tt 1.683} tells us that the error occurred on line 683 of the source file; and the error message is split over two lines with the break occurring at the point where \LaTeX\ detected a problem. But suppose we try the following \moveright0.1\textwidth\vbox{% \footnotesize\begin{verbatim} \begin{tabular}{llrrl} Student name & Number & Test 1 & Test 2 & Comment\\ F. Basset & 865432 & 78 & 85 & Pleasing\\ H. Hosepipe & 829134 & 5 & 10 & Improving\\ I.N. Middle & 853931 & 48 & 47 & Can make it This shows that H.~Hosepipe's newfound concentration has... \end{verbatim} } i.e., we omit to provide the \verb@\end{tabular}@ that delimits the end of the environment. Not having been told that the environment is supposed to be concluded, \LaTeX\ will try to set the text of the next paragraph as a table item---and will scream blue murder when it finds that it doesn't conform to the syntax demanded. \moveright0.1\textwidth\vbox{% \footnotesize\begin{verbatim} LaTeX error. See LaTeX manual for explanation. Type H for immediate help. ! \begin{tabular} ended by \end{document}. \@latexerr ...diate help.}\errmessage {#1} \@checkend ...urrenvir \else \@badend {#1} \fi \enddocument ->\@checkend {document} \clearpage \begingroup \if@filesw... \end #1->\csname end#1\endcsname \@checkend {#1}\expandafter \endgrou... l.58 \end{document} ? \end{verbatim} } Now {\em that's\/} informative! Actually it {\em is} if we agree to ignore all but the the error indication line (the one beginning with the {\tt!}) and the line telling us where \LaTeX\ noticed that all was not well (the one beginning {\tt 1.58} in this case). The rest of the error message you can regard as being for your local \TeX\ wizard to sort your problem out if you are unable to after consulting the manuals. Tough as it looks, we can decipher this message straight away: the error indicator line tell us that a {\tt tabular} environment was ended incorrectly (in this case by an \verb@\end{document}@). \TeX\ error messages aren't all that bad once you've made enough errors to get used to a few! Most can be avoided through {\em careful\/} preparation of the source file. Typing accurately and knowledge of the command syntax is a good start, but there are some other precautions that make good sense: \begin{enumerate} \item Even if \LaTeX\ is happy with free-form input, try to lay your input file out as regularly and logically as possible. See our examples of environments for formats to adopt. \item It is important that all group delimiters be properly matched, i.e., braces and {\tt\bs begin\{\}}\ldots{\tt\bs end\{\}} must come in pairs. A good habit to fall in to is to always type such things in pairs and then move the cursor back between them and type the intervening material. \item Don't forget command arguments when they are mandatory. Always ask yourself what a particular commands {\em needs from you\/} in order to make the decisions that are required of it. \item Remember the 10 characters that are specially reserved for commenting, table item separation, etc. \item When we look at mathematical typesetting in the next chapter, we will see that the same principles apply there. \item Try to use a text editor that has a \TeX\ mode, or at least one that will match brackets for you. \end{enumerate} \section{Summary} We have learned pretty much all we need to know in order to prepare non-mathematical documents. There has been quite a lot of material, all told, but we're fortunate that the average document requires only a fraction of what we've listed here. Furthermore, we'll find that what we've learned equips us with a good deal of the framework needed for mathematical typesetting. The important thing to extract from this chapter is some feel for what I termed the ``spirit of \TeX'' at the chapter beginning. I cannot emphasise enough the importance of getting your mind out of ``word processing'' mode and into ``typesetting'' mode. Always keep uppermost in your mind the task at hand: you are to describe the logical content of the document to \LaTeX, so furnishing it with enough information to perform all the formatting for you. Many of the earlier sections of this chapter will become trivially easy to you after just a little experimentation with \LaTeX. The best way to learn the syntax of the more complicated environments is to use them---try typesetting the examples, for instance. It is important that you come to terms with the {\tt tabular} environment, for its syntax is typical of many of the mathematical constructs that we will use. If you have not already done so, then now is the time to try preparing some documents of your own. Try including all the material from this chapter, for that is the best way to remember it all. When the initial lack of familiarity wears off, you'll find that \LaTeX\ is really a whole lot friendlier and easier to use than you expected. We must also recognise that there is a lot more to some of the command than detailed here. Some accept optional argumnets that were not mentioned, others have more options than we considered. And even once we have a full description of each command, there is still much to be learned for there is much that can be achieved through creative use of some of the environments. \chapter{Mathematical typesetting with \LaTeX} The last chapter taught us a good deal of what we need to know in order to prepare quite complicated non-mathematical documents. There are still a number of useful topics that we have not covered (such as cross-referencing), but we'll defer discussion of those until a later chapter. In the present chapter, we'll learn how \LaTeX\ typesets mathematics. It should come as no surprise that \LaTeX\ does most of the work for us. \section{Introduction} In text-only documents we saw that our task was to describe the logical components of each sentence, paragraph, section, table, etc. When we tell \LaTeX\ to go into {\em mathematical mode}, we have to describe the logical parts of a formula, matrix, operator, special symbol, etc. \TeX\ has been taught to recognize a binary operation, a binary relation, a variable, an operator that expects limits, and so on. We just need to supply the parts that make up each of these, and \TeX\ will take care of the rest. It will leave appropriate space around operators, italicise variables, set an operator name in roman type, leave the correct space after colons, place sub- and superscripts in the correct positions (based on what it is you're working with), choose the correct typesizes, \ldots\ the list of things it has been taught is enormous. When you want to revert to setting normal text again, you tell \LaTeX\ too leave maths mode and go back into the mode it was in (paragraphing mode). \LaTeX\ cannot be expected to perform these mode shifts itself, for it is not always clear just when it is mathematics that has been typed. For example, should an isolated letter {\tt a} in the input file be regarded as a word (as in the definite article) or a mathematical variable (as in the variable $a$). There are no reliable rules for \LaTeX\ to make such decisions by, so the begin-math and end-math mode switching is left entirely to you. The symbol \verb@$@ is specially reserved\footnote{See section \ref{sec:reserved}} by \LaTeX\ as the ``math shift'' symbol. When \LaTeX\ starts setting a document it is in paragraphing mode, ready to set lines of the input file into paragraphs. It remains in this mode until it encounters a \verb@$@ symbol, which shifts \LaTeX\ into mathematical mode. It now knows to be on the look-out for the components of a mathematical expression, rather than for words and paragraphs. It reads everything up to the next \verb@$@ sign in this mathemtical mode, and then shifts back to paragraphing mode (i.e.\ the mode it was in before we took it in to maths mode). You must be careful to balance your begin-math and end-math symbols. It is often a good idea to type two \verb@$@ symbols and then move back between them and type the mathematical expression. If the math-shift symbols in a document are not matched, then \LaTeX\ will become confused because it will be trying to set non-mathematical material as mathematics. For those who find having the same symbol for both math-begin and math-end confusing or dangerous, there are two control symbols that perform the same operations: the control symbol \verb@\(@ is a begin-math instruction, and the control symbol \verb@\)@ is an end-math instruction. Since it is easy to ``lose'' a \verb@$@ sign when typing a long formula, a math environment is provided for such occasions: you can use \verb@\begin{math}@ and \verb@\end{math}@ as the math-shift instructions. Of course, you could just decide to use \verb@$@ and take your chances. Let's have a look at some mathematics. \moveright0.1\textwidth\vbox{% \footnotesize\begin{verbatim} \LaTeX\ is normally in paragraphing mode, where it expects to find the usual paragraph material. Including a mathematical expression, like $2x+3y - 4z= -1$, in the paragraph text is easy. \TeX\ has been taught to recognize the basic elements of an expression, and typeset them appropriately, choosing spacing, positioning, fonts, and so on. Typing the above expression without entering maths mode produces the incorrect result: 2x+3y - 4z= -1 \end{verbatim} } \noindent will produce the following paragraph \result{ \LaTeX\ is normally in paragraphing mode, where it expects to find the usual paragraph material. Including a mathematical expression, like $2x+3y - 4z= -1$, in the paragraph text is easy. \TeX\ has been taught to recognize the basic elements of an expression, and typeset them appropriately, choosing spacing, positioning, fonts, and so on. Typing the above expression without entering maths mode produces the incorrect result: 2x+3y - 4z= -1 } Notice that \LaTeX\ sets space around the binary relation $=$ and space around the binary operators $+$ and $-$ on the left hand side of the equation, ignoring the spacing we typed in the input. It was also able to recognize that the $-1$ on the right hand side of the equation was a unary minus---negating the $1$ rather than being used to indicate subtraction---and so did not put space around it. It also italicised the variables $x$, $y$, and $z$. However, it did not italicise the number $1$. In typing a mathematical expression we must remember to keep the following in mind: \begin{enumerate} \item All letters that are not part of an argument to some control sequence will be italicised. Arguments to control sequences will be set according to the definition of the command used. So typing \verb@$f(x)>0 for x > 1$@ will produce $$f(x)>0 for x > 1$$ instead of the expression $$f(x)>0 \mbox{\quad for\quad} x>1$$ that we intended. Numerals and punctuation marks are set in normal roman type but \LaTeX\ will take care of the spacing around punctuation symbols, as in \moveright0.1\textwidth\vbox{% \footnotesize\begin{verbatim} $f(x,y) \geq 0$ \end{verbatim} } \noindent which produces $$f(x,y) \geq 0\quad.$$ \item Even a single letter can constitute a formula, as in ``the constant $a$''. To type this you enter \verb@$a$@ in your source file. If you do not go in to maths mode to type the symbol, you'll get things like ``the constant a''. \item Some symbols have a different meaning when typed in maths mode. Not only do ordinary letters become variables, but symbols such as \verb@-@ and \verb@+@ are now interpreted as mathematical symbols. Thus in maths mode \verb@-@ is no longer considered a hyphen, but as a minus sign. \item \LaTeX\ ignores all spaces and carriage returns when in maths mode, without exception. So typing something like \verb@the constant$ a$@ will produce ``the constant$ a$''. You should have typed \verb@the constant $a$@. \LaTeX\ is responsible for all spacing when in maths mode, and (as in paragraphing mode) you have to specially ask to have spacing changed. Even if \LaTeX\ does ignore all spaces when in maths mode you should (as always in \TeX) still employ spaces to keep your source file readable. \end{enumerate} The above means that, at least for most material, a typist need not understand the mathematics in order to typeset it correctly. And even if one does understand the mathematics, \LaTeX\ is there to make sure that you adhere to accepted typesetting conventions (whether you were aware of their existence or not). So one could type either \moveright0.1\textwidth\vbox{ \footnotesize\begin{verbatim} $f(x, y) = 2 (x+ y)y/(5xy - 3 )$ \end{verbatim} \noindent{\normalsize or} \begin{verbatim} $f(x,y) = 2(x+y)y / (5xy-3)$ \end{verbatim} } \noindent and you'd still get the correct result $$f(x,y) = 2(x+y)y / (5xy-3)\quad.$$ There are some places where this can go wrong. For instance, if we wish to speak of the $x$-$y$ plane then one has to know that it is an {\em endash\/} that is supposed to be placed between the $x$ and the $y$, not a minus sign (as \verb@$x-y$@ would produce). But typing \verb@$x--y$@ will produce $x--y$ since both dashes are interpreted as minus signs. To avoid speaking of the $x-y$ plane or the $x--y$ plane, we should type it as \verb@the $x$--$y$ plane@. We are fortunate that \LaTeX\ can recognise and cope with by far the majority of our mathematical typesetting needs. Another thing to look out for is the use of braces in an expression. Typing \moveright0.1\textwidth\vbox{ \footnotesize\begin{verbatim} ${x : f(x)>0}$ \end{verbatim} } \noindent will not produce any braces. This is because, as we well know, braces are reserved for delimiting groups in the input file. Looking back to section~\ref{sec:reserved}, we see how it should be done: \moveright0.1\textwidth\vbox{ \footnotesize\begin{verbatim} $ \{ x: f(x)>0 \} $ \end{verbatim} } Math shift commands also behave as scope delimiters, so that commands issued in an expression cannot affect anything else in a document. \section{Displaying a formula}\label{sec:display} \LaTeX\ considers an expression \verb@$ ... $@ to be word-like in the sense that it considers it to be eligible for splitting across lines of a paragraph (but without hyphenation, of course). \LaTeX\ assigns quite a high penalty to doing this, thus trying to avoid it (remember that \LaTeX\ tries to minimize the ``badness'' of a paragraph). When there is no other way, it will split the expression at a suitable place. But there are some expressions which are just too long to fit into the running text without looking awkward. These are best ``displayed'' on a line by themselves. Also, some expressions are sufficiently important that they should be made to stand out. These, too, should be displayed on a line of their own. The mechanism for displaying an expression is the {\em display math\/} mode, which is begun by typing \verb@$$@ and ended by typing the same sequence (which again means that we'd better be sure to type them in pairs). Corresponding to the alternatives \verb@\(@ and \verb@\)@ that we had for the math shift character \verb@$@, we may use \verb@\[@ and \verb@\]@ as the display-math shift sequences. One can also use the environment \moveright0.1\textwidth\vbox{% \footnotesize\begin{verbatim} \begin{displaymath} ... \end{displaymath} \end{verbatim} } \noindent which is equivalent to \verb@$$ ... $$@ and is suitable for use with long displayed expressions. If you wish \LaTeX\ to number your equations for you you can use the environment \moveright0.1\textwidth\vbox{ \footnotesize\begin{verbatim} \begin{equation} ... \end{equation} \end{verbatim} } \noindent which is the same as the \verb@displaymath@ environment, except that an equation number will be generated. It is poor style to have a displayed expression either begin a paragraph or be a paragraph by itself. This can be avoided if you agree to {\em never leave a blank line in your input file before a math display}. We will see later how to typeset an expression that is to span multiple lines. For now, let's look at an example of displaying an expression: \moveright0.1\textwidth\vbox{% \footnotesize\begin{verbatim} For each $a$ for which the Lebesgue-set $L_a(f) \neq \emptyset$ we define $$ % We could have used \begin{displaymath} here {\cal B}_a(f) = \{ L_{a+r}(f) : r > 0 \}, $$ % and \end{displaymath} here and these are easily seen to be completely regular. \end{verbatim}} \noindent which produces \result{ For each $a$ for which the Lebesgue-set $L_a(f) \neq \emptyset$ we define $$ {\cal B}_a(f) = \{ L_{a+r}(f) : r > 0 \}, $$ and these are easily seen to be completely regular. } That illustrates how to display an expression, but also shows that we've got a lot more to learn about mathematical typesetting. Before we have a look at how to arrange symbols all over the show (e.g.\ the subscripting above) we must learn how to access the multitude of symbols that are used in mathematical texts. \section{Using mathematical symbols}\label{sec:symbols} \LaTeX\ puts all the esoteric symbols of mathematics at our fingertips. They are all referenced by name, with the naming system being perfectly logical and systematic. None of the control words that access these symbols accepts an argument, but we'll soon see that some of them prepare \LaTeX\ for something that might follow. For instance, when you ask for the symbol `$\sum$' \LaTeX\ is warned that any sub- or superscripts that follow should be positioned appropriately as limits to a summation. In keeping with the \TeX\ spirit, none of this requires any additional work on your part. We'll also see that some of the symbols behave differently depending on where they are used. For instance, when I ask for $\sum_{i=1}^{n}a_i$ within the running text, the limits are places differently to when I ask for that expression to be displayed: $$\sum_{i=1}^{n}a_i\quad.$$ Again, I typed nothing different here---just asked for display math mode. It is important to note that {\em almost all of the special maths symbols are unavailable in ordinary paragraphing mode}. If you need to use one there, then use an in-line math expression \verb@$...$@. \subsection{Symbols available from the keyboard} A small percentage of the available symbols can be obtained from just a single key press. They are $+$ $-$ $=$ $<$ $>$ $|$ $/$ $($ $)$ $[$ $]$ and $*$. Note that these must be typed {\em within maths mode\/} to be interpreted as math symbols. Of course, all of $a$--$z$, $A$--$Z$, the numerals $0, 1, 2, \ldots, 9$ and the punctuation characters $,$ $;$ and $:$ are available directly from the keyboard. Alphabetic letters will be assumed to be variables that are to be italicised, unless told otherwise\footnote{See section \ref{sec:mathtext}}. The numerals receive no special attention, appearing precisely as in normal paragraphing mode. The punctuation symbols are still set in standard roman type when read in maths mode, but a little space is left after them so that expressions like $\{x_i : i=1,2,\ldots,10\}$ look like they should. Note that this means that normal sentence punctuation should not migrate into an expression. \subsection{Greek letters} \newcommand{\ds}[1]{$\csname#1\endcsname$ & \tt\bs #1 } \newcommand{\dsf}[4]{\ds{#1}&\ds{#2}&\ds{#3}&\ds{#4}} \newcommand{\dst}[3]{\ds{#1}&\ds{#2}&\ds{#3}} Tables \ref{tab:lgreek} and \ref{tab:ugreek} show the control sequences that produce the letters of the Greek alphabet. We see that a lowercase Greek letter is simply is accessed by typing the control word of the same name as the symbol, using all lowercase letters. To obtain an uppercase Greek letter, simply capitalise the {\em first\/} letter of its name. Just as \verb@$mistake$@ produces $mistake$ because the letters are interpreted as variables, so too will \verb@$\tai \epsilon \chi$@ produce the incorrectly spaced $\tau \epsilon \chi$ if you try to type greek words like this. \TeX\ can be taught to set Greek, but this is not the way. $\tau\!\epsilon\!\chi$, % and nor is this incidentally, is the Greek word for ``art'' and it is from the initials of the Greek letters constituting this word that the name \TeX\ was derived. \TeX\ is ``the art of typesetting''. \begin{table}[thbp] \centering\footnotesize \begin{tabular}{llllllll} \dsf{alpha}{beta}{gamma}{delta}\\ \dsf{epsilon}{varepsilon}{zeta}{eta}\\ \dsf{theta}{vartheta}{iota}{kappa}\\ \dsf{lambda}{mu}{nu}{xi}\\ \dsf{pi}{varpi}{rho}{varrho}\\ \dsf{sigma}{varsigma}{tau}{upsilon}\\ \dsf{phi}{varphi}{chi}{psi}\\ \ds{omega} \end{tabular} \caption{\rm Lowercase Greek letters} \label{tab:lgreek} \end{table} \begin{table}[htbp] \centering\footnotesize \begin{tabular}{llllllll} \dsf{Gamma}{Delta}{Theta}{Lambda}\\ \dsf{Xi}{Pi}{Sigma}{Upsilon}\\ \dst{Phi}{Psi}{Omega} \end{tabular} \caption{\rm Uppercase Greek letters} \label{tab:ugreek} \end{table} \subsection{Calligraphic uppercase letters} The letters $\cal A, \ldots, \cal Z$ are available through use of the style changing command \verb@\cal@. This command behaves like the other style changing commands \verb@\em@, \verb@\it@, etc.\ so its scope must be delimited as with them. Thus we can type \moveright0.1\textwidth\vbox{ \footnotesize\begin{verbatim} ... for the filter $\cal F$ we have $\varphi({\cal F}) = \cal G$. \end{verbatim} } \noindent to obtain \result{% for the filter $\cal F$ we have $\varphi({\cal F}) = \cal G$. } There is no need to tabulate all the calligraphic letters, since they are all obtained by just a type style changing command. We will just list them so that we can see, for reference purposes, what they all look like. Here they are: \newcommand{\calf}[5]{\cal{#1}\cal{#2}\cal{#3}\cal{#4}\cal{#5}} $$ % cos we're using AmSLaTeX, things have changed! \calf{A}{B}{C}{D}{E}\calf{F}{G}{H}{I}{J}\calf{K}{L}{M}{N}{O} \calf{P}{Q}{R}{S}{T}\calf{U}{V}{W}{X}{Y}\cal Z $$ \subsection{Binary operators} \LaTeX\ has been taught to recognise binary operators and set the appropriate space either side of one---i.e., it sets the first argument followed by a little space, then the operator followed by the same little space and finally the second argument. Table~\ref{tab:binops} shows the binary operators that are available via \LaTeX\ control words (recall that the binary operators $+$, $-$, and $*$ can be typed from the keyboard). Here are some examples of their use: \begin{mathegs} \verb@$a+b$@ & $a+b$\\ \verb@$(a+b) \ otimes c$@ & $(a+b)\otimes c$\\ \verb@$(a \vee b) \wedge c$@ & $(a \vee b)\wedge c$\\ \verb@$X - (A \cap B) = (X-A) \cup (X-B)$@ & $X - (A \cap B) = (X-A) \cup (X-B)$ \end{mathegs} \begin{table} \centering\footnotesize \begin{tabular}{llllllll} \dsf{pm}{cap}{diamond}{oplus}\\ \dsf{mp}{cup}{bigtriangleup}{ominus}\\ \dsf{times}{uplus}{bigtriangledown}{otimes}\\ \dsf{div}{sqcap}{triangleleft}{oslash}\\ \dsf{ast}{sqcup}{triangleright}{odot}\\ \dsf{star}{vee}{wedge}{bigcirc}\\ \dsf{dagger}{setminus}{amalg}{circ}\\ \dsf{ddagger}{cdot}{wr}{bullet} \end{tabular} \caption{\rm Binary Operation Symbols} \label{tab:binops} \end{table} \subsection{Binary relations} \LaTeX\ has been taught to recognize the use of binary relations, too. Table~\ref{tab:binrels} shows those available via \LaTeX\ control words. There are a few that you can obtain directly from the keyboard: $<$, $>$, $=$, and $|$. To negate a symbol you can precede the control word that gives the symbol by a \verb@\not@. Some symbols come with ready-made negations, which should be used above the \verb@\not@'ing method because the slope of the negating line is just slightly changed to look more pleasing. Thus \verb@\notin@ should be used above \verb@\not\in@, and \verb@\neq@ should be used above \verb@\not =@. If negating a symbol produces a slash whose horizontal positioning is not to your liking, then use the math spacing characters described in section~\ref{sec:mathspace} to adjust it. \begin{table}[htbp] \centering\footnotesize \begin{tabular}{llllllll} \dsf{leq}{geq}{equiv}{models}\\ \dsf{prec}{succ}{sim}{perp}\\ \dsf{preceq}{succeq}{simeq}{mid}\\ \dsf{ll}{gg}{asymp}{parallel}\\ \dsf{subset}{supset}{approx}{bowtie}\\ \ds{subseteq} & \ds{supseteq}& \ds{cong} & $\bowtie$ & \tt\bs Join\\ % lazy? \dsf{sqsubset}{sqsupset}{neq}{smile}\\ \dsf{sqsubseteq}{sqsupseteq}{doteq}{frown}\\ \dst{in}{ni}{propto}\\ \ds{vdash} & \ds{dashv} \end{tabular} \caption{\rm Binary relations} \label{tab:binrels} \end{table} \subsection{Miscellaneous symbols} Table~\ref{tab:miscsym} shows a number of general-purpose symbols. Remember that these are only available in maths mode. Note that \verb@\imath@ and \verb@\jmath@ should be used when you need to accent an $i$ or a~$j$ in maths mode\footnote{See section \ref{sec:mathacc}}% ---you cannot use \verb@\i@ or \verb@\j@ that were available in paragraphing mode. To get a prime symbol, you can use \verb@\prime@ or you can just type \verb@'@ when in maths mode, as in \verb@$f''(x)=x$@ which produces $f''(x)=x$. \begin{table}[htbp] \centering\footnotesize \begin{tabular}{llllllll} \dsf{aleph}{prime}{forall}{infty}\\ \dsf{hbar}{emptyset}{exists}{Box}\\ \dsf{imath}{nabla}{neg}{triangle}\\ \dsf{jmath}{surd}{flat}{triangle}\\ \dsf{ell}{top}{natural}{clubsuit}\\ \dsf{wp}{bot}{sharp}{diamondsuit}\\ \dsf{Re}{|}{backslash}{heartsuit}\\ \dsf{Im}{angle}{partial}{spadesuit}\\ \ds{mho} \end{tabular} \caption{\rm Miscellaneous symbols} \label{tab:miscsym} \end{table} \subsection{Arrow symbols} \LaTeX\ has a multitude of arrow symbols, which it will set the correct space around. Note that vertical arrows can all be used as delimiters---see section~\ref{sec:delims}. The available symbols are listed in table~\ref{tab:arrows}. \begin{table}[htbp] \centering\footnotesize \begin{tabular}{llllll} \dst{leftarrow}{longleftarrow}{uparrow}\\ \dst{Leftarrow}{Longleftarrow}{Uparrow}\\ \dst{rightarrow}{longrightarrow}{downarrow}\\ \dst{Rightarrow}{Longrightarrow}{Downarrow}\\ \dst{leftrightarrow}{longleftrightarrow}{updownarrow}\\ \dst{Leftrightarrow}{Longleftrightarrow}{Updownarrow}\\ \dst{mapsto}{longmapsto}{nearrow}\\ \dst{hookleftarrow}{hookrightarrow}{searrow}\\ \dst{leftharpoonup}{rightharpoonup}{swarrow}\\ \dst{leftharpoondown}{rightharpoondown}{nwarrow}\\ \ds{rightleftharpoons} & \ds{leadsto} \end{tabular} \caption{\rm Arrow symbols} \label{tab:arrows} \end{table} \subsection{Expression delimiters}\label{sec:delims} A pair of delimters often enclose an expression, as in $$ \left[\begin{array}{cc} a_{11} & a_{12} \\ a_{21} & a_{22} \end{array}\right] \mbox{\quad and\quad} f(x) = \left\{ \begin{array}{ll} x & \mbox{if } x < 1 \\ x^2 & \mbox{if } x \geq 1 \end{array}\right. \quad.$$ \LaTeX\ will scale delimiters to the correct size (determined by what they enclose) for you, if you ask it to. There are times when you don't want a delimiter to be scaled, so it is left up to you to ask for scaling. To ask that a delimter be scaleable, you precede it by \verb@\left@ or \verb@\right@ according as it is the left or right member of the pair. Scaled delimiters must be balanced correctly. It sometimes occurs, as in the right-hand example above, that only one member of a delimiting pair is to be visible. For this purpose, use the commands \verb@\left.@ and \verb@\right.@ which will produce no visible delimiter but can be used to correctly balance the delimiters in an expression. For examples of the use of delimiters, see section~\ref{sec:arrays} where we learn about arrays. Table~\ref{tab:delims} shows the symbols that \LaTeX\ will recognise as delimiters, i.e.\ symbols that may follow a \verb@\left@ or a \verb@\right@. Note that you have to use \verb@\left\{@ and \verb@\right\}@ in order to get scaled braces. \begin{table}[htbp] \centering\footnotesize \begin{tabular}{llllll} $($ & \makebox[90pt][l]{(} & $)$ & \makebox[90pt][l]{)} & $\uparrow$ & \makebox[90pt][l]{\tt\bs uparrow}\\ $[$ & ] & $]$ & ] & $\downarrow$ & \tt\bs downarrow\\ $\{$ & \verb@\{@ & $\}$ & \verb@\}@ & $\updownarrow$ & \tt\bs updownarrow\\ \dst{lfloor}{rfloor}{Uparrow}\\ \dst{lceil}{rceil}{Downarrow}\\ \dst{langle}{rangle}{Updownarrow}\\ $/$ & / & \ds{backslash}\\ $|$ & | & \ds{|} \end{tabular} \caption{\rm Delimiters} \label{tab:delims} \end{table} \subsection{Operators like $\displaystyle\int$ and $\displaystyle\sum$} These behave differently when used in display-math mode as compared with in-text math mode. When used in text, they will appear in their small form and any limits provided will be set so as to reduce the overall height of the operator, as in $\sum_{i=1}^{N}f_i$. When used in display-math mode, \LaTeX\ will choose to use the larger form and will not try to reduce the height of the operator, as in $$ \sum_{i=1}^{N} f_i \quad . $$ Table~\ref{tab:bigops} describes what variable-size symbols are available, showing both the small (in text) and the large (displayed) form of each. In section~\ref{sec:subsup} we will learn how to place limits on these operators. \begin{table}[htbp] \centering\footnotesize \newcommand{\od}[1]{\makebox[27pt]{$\csname#1\endcsname\hfil\displaystyle\csname#1\endcsname$} & \tt\bs #1} \newcommand{\odt}[3]{\od{#1} & \od{#2} & \od{#3}} \begin{tabular}{ll@{\hspace{1.5cm}}ll@{\hspace{1.5cm}}ll} \odt{sum}{bigcap}{bigodot}\\ \odt{prod}{bigcup}{bigotimes}\\ \odt{coprod}{bigsqcup}{bigoplus}\\ \odt{int}{bigvee}{biguplus}\\ \od{oint} & \od{bigwedge} \end{tabular} \caption{\rm Variable-sized symbols} \label{tab:bigops} \end{table} \subsection{Accents}\label{sec:mathacc} The accenting commands that we learned for paragraphing mode do not apply in maths mode. Consult table~\ref{tab:mathacc} to see how to accent a symbol in maths mode (all the examples there accent the symbol $u$, but they work with any letter). Remember that $i$ and $j$ should lose their dots when accented, so \verb@\imath@ and \verb@\jmath@ should be used. There also exist commands that give a ``wide hat'' or a ``wide tilde'' to their argument, \verb@\widehat@ and \verb@\widetilde@. \begin{table}[htbp] \centering\footnotesize \newcommand{\da}[1]{$\csname#1\endcsname{u}$ & \tt\bs #1\{u\}} \newcommand{\daf}[4]{\da{#1} & \da{#2} & \da{#3} & \da{#4}} \begin{tabular}{llllllll} \daf{hat}{acute}{bar}{dot}\\ \daf{check}{grave}{vec}{ddot}\\ \da{breve} & \da{tilde} \end{tabular} \caption{\rm Math accents} \label{tab:mathacc} \end{table} \section{Some common mathematical structures} In this section we shall begin to learn how to manipulate all the symbols listed in section~\ref{sec:symbols}. Indeed, by the end of this section we'll be able to typeset some quite large expressions. In the section following this we will learn how use various alignment environments that allow us to prepare material like multi-line expressions and arrays. \subsection{Subscripts and superscripts}\label{sec:subsup} Specifying a sub- or superscript is as easy as you'd hope---% you just give an indication that you want a sub- or superscript to the last expression and provide the material to be placed there, and \LaTeX\ will position things correctly. So sub- and superscripting a single symbol, an operator, or a big array all involve the same input, and \LaTeX\ places the material according to what the expression is that is being sub- or superscripted: $$ x^2\quad,\quad \prod_{i=1}^{N}X_i \quad,\quad \left[\begin{array}{ccc} a_{11} & a_{12} & a_{13}\\ a_{21} & a_{22} & a_{23}\\ a_{31} & a_{32} & a_{33} \end{array}\right]^2 \quad.$$ To tell \LaTeX\ that you want a single character set as a superscript to the last expression, you just type a \verb@^@ before it. The ``last expression'' is the preceding group or, if there is no preceding group, the single character or symbol that the \verb@^@ follows: \begin{mathegs} \verb@$x^2$@ & $x^2$\\ \verb@$a^b$@ & $a^b$\\ \verb@$Y^X$@ & $Y^X$\\ \verb@$\gamma^2$@ & $\gamma^2$\\ \verb@$(A+B)^2$@ & $(A+B)^2$\\ \verb@$\left[ \frac{x^2+1}{x^2 + y^2} \right]^n$@ & $\left[ \frac{x^2+1}{x^2 + y^2} \right]^n$ \end{mathegs} Subscripts of a single character are equally easy---you just use the underscore character \verb@_@ where you used \verb@^@ for superscripting: \begin{mathegs} \verb@$x_2$@ & $x_2$\\ \verb@$x_i$@ & $x_i$\\ \verb@$\Gamma_1(x)$@ & $\Gamma_1(x)$ \end{mathegs} %part 4 of 4 Now let's see how to set a sub- or superscript that consists of more than just one character. This is no more difficult than before if we remember the following rule: {\em \verb@_@ and \verb@^@ set the group that follows them as a sub- and superscripts to the group that precedes the sub- and superscript symbols.} We see now now that our initial examples worked by considering a single character to be a group by itself. Here are some examples: \begin{mathegs} \verb@$a^2b^3$@ & $a^2b^3$\\ \verb@$2^{21}$@ & $2^{21}$\\ \verb@$2^21$@ & $2^21$\\ \verb@$a^{x+1}$@ & $a^{x+1}$\\ \verb@$a^{x^2+1}$@ & $a^{x^2+1}$\\ \verb@$(x+1)^3$@ & $(x+1)^3$\\ \verb@$\Gamma_{\alpha\beta\gamma}$@ & $\Gamma_{\alpha\beta\gamma}$\\ \verb@${}_1A_2$@ & ${}_1A_2$\\ \end{mathegs} In the very last example we see a case of setting a subscript to an empty group, which resulted in a kind of ``pre-subscript''. With some imagination this can be put to all sorts of uses. In all of the above examples the sub- and superscripts were set to single-character groups. Nowhere did we group an expression before sub- or superscripting it. Even in setting the expression $(x+1)^3$, the superscript ${}^3$ was really only set to the character $)$. If we had wanted to group the $(x+1)$ before setting the superscript, we would have typed \verb@${(x+1)}^3$@ which gives ${(x+1)}^3$, with the superscript slightly raised. One has to go to this trouble because, to most people, something like $(x^a)^b$ is just as acceptable and as readable as ${(x^a)}^b$. It also has the advantage of aligning the base lines in expressions such as $$ (ab)^{-2} = [(ab)^{-1}]^2 = [b^{-1}a^{-1}]^2 = b^{-1}a^{-1}b^{-1}a^{-1} $$ which looks more pleasing than if we use additional grouping to force $$ {(ab)}^{-2} = {[{(ab)}^{-1}]}^2 = {[b^{-1}a^{-1}]}^2 = b^{-1}a^{-1}b^{-1}a^{-1}\quad, $$ and the latter has rather more braces in it that require balancing. Here are some more examples, showing how \LaTeX\ will set things just as we want without any further work on our part: \begin{mathegs} \verb@$x^{y^z}$@ & $x^{y^z}$\\ \verb@$2^{(2^2)}$@ & $2^{(2^2)}$\\ \verb@$2^{2^{2^{\aleph_0}}}$@ & $2^{2^{2^{\aleph_0}}}$\\ \verb@$\Gamma^{z_c^d}$@ & $\Gamma^{z_c^d}$ \end{mathegs} We can also make use of empty groups in order to stagger sub- and superscripts to an expression, as in \moveright0.1\textwidth\vbox{ \footnotesize\begin{verbatim} $\Gamma_{\alpha\beta}{}^{\gamma}{}_\delta$ \end{verbatim} } \noindent which will yield \result{% $\Gamma_{\alpha\beta}{}^{\gamma}{}_\delta$ } One can specify the sub- and superscripts to a group in any order, but it is best to be consistent. The most natural order seems to be to have subscripts first, but you may think otherwise. It is also a good idea to always include your sub- and superscripts in braces (i.e.\ make them a group), whether they consist of just a single character or not. This enhances readability and also helps avoid the unfortunate case where you believe that a particular control word gives a single symbol yet it really is defined in terms of several. \subsection{Primes} \LaTeX\ provides the control word \verb@\prime@ ($\prime$) for priming symbols. Note that it is not automatically at the superscript height, so that to get $f^\prime$ you would have to type \moveright0.1\textwidth\vbox{ \footnotesize\begin{verbatim} $f^\prime$ . \end{verbatim} } \noindent To make lighter work of this, \LaTeX\ will interpret a right-quote character as a prime if used in maths mode. Thus we can type \moveright0.1\textwidth\vbox{ \footnotesize\begin{verbatim} $f'(g(x)) g'(x) h''(x)$ \end{verbatim} } \noindent in order to get \noindent \result{% $f'(g(x)) g'(x) h''(x)\quad.$ } \subsection{Fractions} \LaTeX\ provides the \verb@\frac@ command that accepts two arguments: the numerator and the denominator (in that order). Before we look at examples of its use, let us just note that many simple in-text fractions are often better written in the form $\mbox{\it num} / \!\mbox{\it den}$, as with $3/8$ which can be typed as \verb@$3/8$@. This is also often the better form for a fraction that occurs {\em within\/} some expression. \begin{mathegs} \verb@$\frac{x+1}{x+2}$@ & $\displaystyle\frac{x+1}{x+2}$\\ \verb@$\frac{1}{x^2+1}$@ & $\displaystyle\frac{1}{x^2+1}$\\ \verb@$\frac{1+x^2}{x^2+y^2} + x^2 y$@ & $\displaystyle\frac{1+x^2}{x^2+y^2} + x^2 y$\\ \verb@$\frac{1}{1 + \frac{x}{2}}$@ & $\displaystyle\frac{1}{1 + \frac{x}{2}}$\\ \verb@$\frac{1}{1+x/2}$@ & $\displaystyle\frac{1}{1+x/2}$ \end{mathegs} \subsection{Roots} The \verb@\sqrt@ command accepts two arguments. The first, and optional, argument specifies what order of root you desire if it is anything other than the square root. The second, and mandatory, argument specifies the expression that the root sign should enclose: {\renewcommand{\arraystretch}{1.6} \begin{mathegs} \verb@$\sqrt{a+b}$@ & $\displaystyle\sqrt{a+b}$\\ \verb@$\sqrt[5]{a+b}$@ & $\displaystyle\sqrt[5]{a+b}$\\ \verb@$\sqrt[n]{\frac{1+x}{1+x^2}}$@ & $\displaystyle\sqrt[n]{\frac{1+x}{1+x^2}}$\\ \verb@$\frac{\sqrt{x+1}} {\sqrt[3]{x^3+1}}$@ & $\displaystyle\frac{\sqrt{x+1}} {\sqrt[3]{x^3+1}}$ \end{mathegs} } \subsection{Ellipsis} Simply typing three periods in a row will not give the correct spacing of the periods if it is an ellipsis that is desired. So \LaTeX\ provides the commands \verb@\ldots@ and \verb@\cdots@. Centered ellipsis should be used between symbols like $+$, $-$, $*$, $\times$, and $=$. Here are some examples: \begin{mathegs} \verb@$a_1+ \cdots + a_n$@ & $a_1+ \cdots + a_n$\\ \verb@$x_1 \times x_2 \times \cdots \times x_n$@ & $x_1 \times x_2 \times \cdots \times x_n$\\ \verb@$v_1 = v_2 = \cdots = v_n = 0$@ & $v_1 = v_2 = \cdots = v_n = 0$\\ \verb@$f(x_1,\ldots,x_n) = 0$@ & $f(x_1,\ldots,x_n) = 0$ \end{mathegs} \subsection{Text within an expression}\label{sec:mathtext} One can use the \verb@\mbox@ command to insert normal text into an expression. This command forces \LaTeX\ temporarily out of maths mode, so that its argument will be treated as normal text. It's use is simple, but we must be wary on one count: remember that \LaTeX\ ignores all space characters when in maths mode; so to surround words in an expression that were placed by an \verb@\mbox@ command by space you must include the space in the \verb@\mbox@ argument. \begin{mathegs} \verb@$f_i(x) \leq 0 \mbox{ for } x \in I$@ & $f_i(x) \leq 0 \mbox{ for } x \in I$\\ \verb@$\Gamma(n)=(n-1)! \mbox{ when $n$ is an integer}$@ & $\Gamma(n)=(n-1)! \mbox{ when $n$ is an integer}$ \end{mathegs} In section~\ref{sec:mathspace} we'll learn of some special spacing commands that can be used in math mode. These are often very useful in positioning text within an expression, enhancing readability and logical layout. \subsection{Log-like functions} There are a number of function names and operation symbols that should be set in normal (roman) type in an expression, such as in $$ f(\theta) = \sin\theta + \log(\theta+1) - \sinh(\theta^2+1) $$ and $$ \lim_{h \rightarrow 0} \frac{\sin h}{h} = 1\quad. $$ We know that simply typing \verb@$log\theta$@ would produce the incorrect result $$ log\theta $$ and that using \verb@$\mbox{log}\theta$@ would leave us having to insert a little extra space between the log and the $\theta$ $$ \mbox{log}\theta\quad. $$ So \LaTeX\ provides a collection of ``log-like functions'' defined as control sequences. Table~\ref{tab:loglike} shows those that are available. Here are some examples of their use: \begin{table}[tbp] {\centering\footnotesize\tt \begin{tabular}{llllllll} \bs arccos & \bs cos & \bs csc &\bs exp & \bs ker & \bs limsup & \bs min & \bs sinh\\ \bs arcsin & \bs cosh & \bs deg & \bs gcd & \bs lg & \bs ln & \bs Pr & \bs sup\\ \bs arctan & \bs cot & \bs det & \bs hom & \bs lim & \bs log & \bs sec & \bs tan\\ \bs arg & \bs coth & \bs dim & \bs inf & \bs liminf & \bs max & \bs sin & \bs tanh \end{tabular}} \caption{\rm Log-like functions} \label{tab:loglike} \end{table} \begin{mathegs} \verb@$f(x)=\sin x + \log(x^2)$@ & $f(x)=\sin x + \log(x^2)$\\ \verb@$\delta = \min \{ \delta_1, \delta_2 \}$@ & $\delta = \min \{ \delta_1, \delta_2 \}$\\ \verb@$\chi(X) = \sup_{x\in X} \chi(x)$@ & $\chi(X) = \sup_{x\in X} \chi(x)$\\ \verb@$\lim_{n \rightarrow \infty} S_n = \gamma$@ & $\lim_{n \rightarrow \infty} S_n = \gamma$ \end{mathegs} Notice how \LaTeX\ does more than just set an operation like sup in roman type. It also knew where a subscript to that operator should go. \subsection{Over- and Underlining and bracing} The \verb@\underline@ command will place an unbroken line under its argument, and the \verb@\overline@ command will place an unbroken line over its argument. These two commands can also be used in normal paragraphing mode (but be careful: \LaTeX\ will not break the line within an under- or overlined phrase, so don't go operating on large phrases). You can place horizontal braces above or below an expression by making that expression the argument of \verb@\overbrace@ or \verb@\underbrace@. You can place a label on an overbrace (resp.\ underbrace) by superscripting (resp.\ subscripting the group defined by the bracing command. \begin{mathegs} \verb@$\overline{a+bi} = a- bi$@ & $\overline{a+bi} = a- bi$\\ \verb@$\overline{\overline{a+bi}} = a+bi$@ & $\overline{\overline{a+bi}} = a+bi$\\ \end{mathegs} And some examples of horizontal bracing: \moveright0.1\textwidth\vbox{ \footnotesize\begin{verbatim} $A^n=\overbrace{A \times A \times \ldots \times A}^{\mbox{$n$ terms}}$ $\forall x \underbrace{\exists y (y \succ x)}_{\mbox{scope of $\forall$}}$ \end{verbatim} } \noindent will produce $$A^n=\overbrace{A \times A \times \ldots \times A}^{\mbox{$n$ terms}}$$ and $$\forall x \underbrace{\exists y (y \succ x)}_{\mbox{scope of $\forall$}}$$ \subsection{Stacking symbols} \LaTeX\ allows you to set one symbol above another through the \verb@\stackrel@ command. This command accepts two arguments, and sets the first centrally above the second. \begin{mathegs} \verb@$X \stackrel{f^*}{\rightarrow}Y$@ & $X \stackrel{f^*}{\rightarrow}Y$\\ \verb@$f(x) \stackrel{\triangle}{=} x^2 + 1$@ & $f(x) \stackrel{\triangle}{=} x^2 + 1$ \end{mathegs} \subsection{Operators; Sums, Integrals, etc.} Each of the operation symbols in table~\ref{tab:bigops} can occur with limits. They are specified as sub- and superscripts to the operator, and \LaTeX\ will position them appropriately. In an in-text formula they will appear in more-or-less the usual scripting positions; but in a displayed formula they will be set below and above the symbol (which will also be a little larger). The following should give you an idea of how to use them: \begin{mathegs} \verb@$\sum_{i=1}^{N} a_i$@ & $\sum_{i=1}^{N} a_i$\\ \verb@$\int_a^b f$@ & $\int_a^b f$\\ \verb@$\oint_{\cal C}f(x)\,dx$@ & $\oint_{\cal C}f(x)\,dx$\\ \verb@$\prod_{\alpha \in A} X_\alpha$@ & $\prod_{\alpha \in A} X_\alpha$\\ \verb@$\lim_{N\rightarrow\infty}\sum_{i=1}^{N}f(x_i)\Delta x_i$@ & $\lim_{N\rightarrow\infty}\sum_{i=1}^{N}f(x_i)\Delta x_i$ \end{mathegs} We'll have more to say about the use of \verb@\,@ in section~\ref{sec:mathspace}. Let's have a look at each of those expressions when displayed: $$ \sum_{i=1}^{N} a_i\quad,\quad \int_a^b f\quad,\quad \oint_{\cal C}f(x)\,dx\quad,\quad \prod_{\alpha \in A} X_\alpha\quad,\quad \lim_{N\rightarrow\infty}\sum_{i=1}^{N}f(x_i)\Delta x_i $$ \subsection{Arrays}\label{sec:arrays} The \verb@array@ environment is provided for typesetting arrays and array-like material. It accepts two arguments, one optional and one mandatory. The optional argument specifies the vertical alignment of the array---use \verb@t@, \verb@b@, or \verb@c@ to align the top, bottom, or centre of the array with the centreline of the line it occurs on (the default being \verb@c@). The second argument is as for the \verb@tabular@ environment: a series of \verb@l@, \verb@r@, and \verb@c@'s that specify the number of columns and the justification of these columns. The body of the \verb@array@ environment uses the same syntax as the \verb@tabular@ environment to specify the individual entries of the array. For instance the input \moveright0.1\textwidth\vbox{ \footnotesize\begin{verbatim} ... let $A = \begin{array}{rrr} 12 & 3 & 4\\ -2 & 1 & 0\\ 3 & 7 & 9 \end{array}$ ... \end{verbatim} } \noindent will produce the output \result{% let $A = \left[\begin{array}{rrr} 12 & 3 & 4\\ -2 & 1 & 0\\ 3 & 7 & 9 \end{array}\right] $} Note that we had to choose and supply the enclosing brackets ourselves (they are not placed for us so that we can use the \verb@array@ environment for array-like material; also, we get to choose what type of brackets we want this way). As in the \verb@tabular@ environment, the scope of a command given inside a matrix entry is restricted to that entry. We can use ellipsis within arrays as in the following example: \moveright0.1\textwidth\vbox{ \footnotesize\begin{verbatim} \det A = \left| \begin{array}{cccc} a_{11} & a_{12} & \cdots & a_{1n}\\ a_{21} & a_{22} & \cdots & a_{2n}\\ \vdots & \vdots & \ddots & \vdots\\ a_{m1} & a_{m2} & \cdots & a_{mn} \end{array} \right| \end{verbatim} } \noindent which produces \result{% $\det A = \left| \begin{array}{cccc} a_{11} & a_{12} & \cdots & a_{1n}\\ a_{21} & a_{22} & \cdots & a_{2n}\\ \vdots & \vdots & \ddots & \vdots\\ a_{m1} & a_{m2} & \cdots & a_{mn} \end{array} \right|$ } The \verb@array@ environment is often used to typeset material that is not, strictly speaking, an array: \moveright0.1\textwidth\vbox{ \footnotesize\begin{verbatim} f(x) = \left\{ \begin{array}{ll} x & \mbox{for $x<1$}\\ x^2 & \mbox{for $x \geq 1$} \end{array} \right. \end{verbatim} } \noindent which will yield \result{% $f(x) = \left\{ \begin{array}{ll} x & \mbox{for $x<1$}\\ x^2 & \mbox{for $x \geq 1$} \end{array} \right.$ } \subsection{Changes to spacing}\label{sec:mathspace} Sometimes \LaTeX\ needs a little help in spacing an expression, or perhaps you think that the default spacing needs adjusting. For these purposes we have the following spacing commands:\medskip \begin{tabular}{lllll} \verb@\,@ & thin space & & \verb@\:@ & medium space\\ \verb@\!@ & negative thin space && \verb@\;@ & thick space\\ \verb@\quad@ & a quad of space && \verb@\qquad@ & two quads of space \end{tabular}\medskip The spacing commands \verb@\,@, \verb@\quad@, and \verb@\qquad@ can be used in paragraphing mode, too. Here are some examples of these spacing commands used to make subtle modifications to some expressions. \begin{mathegs} \verb@$\sqrt{2} \, x$@ & $\sqrt{2} \, x$\\ \verb@$\int_a^b f(x)\,dx$@ & $\int_a^b f(x)\,dx$\\ \verb@$\Gamma_{\!2}$@ & $\Gamma_{\!2}$\\ \verb@$\int_a^b \! \int_c^d f(x,y)\,dx\,dy$@ & $\int_a^b \! \int_c^d f(x,y)\,dx\,dy$\\ \verb@$x / \! \sin x$@ & $x / \! \sin x$\\ \verb@$\sqrt{\,\sin x}$@ & $\sqrt{\,\sin x}$ \end{mathegs} \section{Alignment} Recall that the \verb@$equation$@ environment can be used to display and automatically number a single-\ line equation\footnote{See section \ref{sec:display}}. The \verb@eqnarray@ environment is used for displaying and automatically numbering either a single expression that spreads over several lines or multiple expressions, while taking care of alignment for us. The syntax is similar to that of the \verb@tabular@ and \verb@array@ environments, except that no argument is necessary to declare the number and justification of columns. The \verb@eqnarray*@ environment does this without numbering any equations. \moveright0.1\textwidth\vbox{ \footnotesize\begin{verbatim} \begin{eqnarray} (a+b)(a+b) & = & a^2 + 2ab + b^2\\ (a+b)(a-b) & = & a^2 - b^2 \end{eqnarray} \end{verbatim} } \noindent will give \begin{eqnarray} (a+b)(a+b) & = & a^2 + 2ab + b^2\\ (a+b)(a-b) & = & a^2 - b^2 \end{eqnarray} See how we identify the columns so as to line the $=$ signs up. We can also leave entries empty, to obtain effect like the following: \vbox{ \footnotesize\begin{verbatim} \begin{eqnarray*} \frac{d}{dx} \sin x & = & \lim_{h\rightarrow0}\frac{\sin(x+h)-\sin x}{h}\\ & = & \lim_{h\rightarrow0}\frac{\sin x\cos h + \cos x\sinh - \sin x}{h}\\ & = & \lim_{h\rightarrow0}\frac{\sin x(\cos h-1)}{h} + \cos x\frac{\sin h}{h}\\ & = & \cos x \end{eqnarray*} \end{verbatim} } \noindent which produces \begin{eqnarray*} \frac{d}{dx} \sin x & = & \lim_{h\rightarrow0}\frac{\sin(x+h)-\sin x}{h}\\ & = & \lim_{h\rightarrow0}\frac{\sin x\cos h + \cos x\sinh - \sin x}{h}\\ & = & \lim_{h\rightarrow0}\left\{\frac{\sin x(\cos h-1)}{h} + \cos x\frac{\sin h}{h}\right\}\\ & = & \cos x \end{eqnarray*} \section{Theorems, Propositions, Lemmas, $\ldots$} Suppose you document contains four kinds of theorem-like structures: ``theorems'', ``propositions'', ``conjectures'', and ``wild guesses''. Then near the beginning of the document you should have something like the following: \moveright0.1\textwidth\vbox{ \footnotesize\begin{verbatim} \newtheorem{thm}{Theorem} \newtheorem{prop}{Proposition} \newtheorm{conjec}{Conjecture} \newtheorem{wildshot}{Hypothesis} % make it sound good! \end{verbatim} } \newtheorem{thm}{Theorem} \newtheorem{prop}{Proposition} \newtheorem{conjec}{Conjecture} \newtheorem{wildshot}{Hypothesis} The first argument to \verb@\newtheorem@ defines a new theorem-like environment name of your own choosing. The second argument contains the text that you want inserted when your theorem is proclaimed: \moveright0.1\textwidth\vbox{ \footnotesize\begin{verbatim} \begin{thm} $X$ is normal if, and only if, each pair of disjoint closed sets in $X$ is completely separated. \end{thm} \begin{wildshot} % remember, we chose the name 'wildshot' The property of Moore extends to all objects of the class $\Sigma$. \end{wildshot} \end{verbatim} } \noindent which will produce the following: \begin{thm} $X$ is normal if, and only if, each pair of disjoint closed sets in $X$ is completely separated. \end{thm} \begin{wildshot} The property of Moore extends to all objects of the class $\Sigma$. \end{wildshot} Notice that \LaTeX\ italicises the theorem statement, and that you still have to shift in to maths mode when you want to set symbols and expression. Typically, it is the style file that determines what a theorem will appear like---so don't go changing this if you are preparing for submission for publication (because the journal staff want to substitute their production style for your document style choice, and not be over-ridden by other commands). \section{Where to from here?} We have covered a good deal of \LaTeX's mathematical abilities, albeit rather superficial coverage here and there. There is much that has been impressive, but there is clearly a lot more to {\TeX}nical typesetting than we have covered here---it is not difficult to think of an expression that we don't yet know how to typeset. Also, there are places where \LaTeX\ is a little weak and it leaves us to do somewhat more work than the spirit of \TeX\ would suggest. Of course, we cannot criticise \LaTeX\ until we know its full capability. So the first place to go from here is the {\em\LaTeX\ User's Guide \& Reference Manual}. Particularly, the command reference guide in Appendix C of that book is an invaluable source of \LaTeX\ information that few can afford to do without. With good knowledge of the \LaTeX\ environments and their options (and we've left out many here) one can accomplish a good deal of most typesetting problems. A little imagination (say putting an environment to a slightly non-standard use) can often solve more difficult problems. Lastly, of course, much of raw \TeX\ still sits underneath \LaTeX\ and so it is true to say that you can do {\em anything\/} with \LaTeX---but you may need some divine inspiration from time to time (ask your local \TeX\ guru). In the next chapter we will look, very briefly, at a number of \LaTeX\ commands that we have not yet considered. Nothing exciting on the mathematical front, but there is some other important material (e.g.\ cross-referencing and page-sizing). For now, let's look at the ``way forward'' with respect to mathematical typesetting. \section{\AmSLaTeX} Back in the introduction we said that \AmSLaTeX\ was just a big macro package, the result of a marriage of \LaTeX\ and \AmSTeX\ designed to endow the powerful general-purpose \LaTeX\ package with the mathematical prowess of \AmSTeX\ without compromising the \LaTeX\ syntax. Most of that is true, except that \AmSLaTeX\ is really just a document-style option (like \verb@12pt@) that can be used within a ``tweaked \LaTeX''. The most visible part of this tweak is the {\em new font selection scheme of Mittelbach and Sch\"{o}pf}, discussed more fully in the next chapter. Almost every \LaTeX\ command and environment survived the transition to \AmSLaTeX, the exceptions being those that were considered redundant or under-used (space is at a premium with such a big package). The tweaked \LaTeX\ package is therefore able to deal with practically every existing \LaTeX\ document, giving just a few (often pleasant) surprises. With the \verb@amstex@ style option, one can just start a \LaTeX\ document with \moveright0.1\textwidth\vbox{ \footnotesize\begin{verbatim} \documentstyle[amstex]{article} % or report, book, etc \end{verbatim} } \noindent to gain access to the {\TeX}nical excellence of the AMS technical staff. It is not necessary to have read {\em The Joy of \TeX} (the \AmSTeX\ reference guide) to be able to use the \verb@amstex@ option, for \AmSLaTeX\ comes with its own reference guide. Even so, {\em The Joy of TeX\/} is still highly recommended reading. The syntax of \AmSTeX\ has been changed to that of \LaTeX, but one can perform that transformation as you read ``{\em Joy\/}'' and still learn much of the art of technical typesetting. Nowhere else will you find so comprehensive a coverage of the conventions and pitfalls of mathematical typesetting. In addition, {\em Joy\/} lists all the extra symbols that are available through the \verb@amstex@ option (if you thought \LaTeX\ had a fair selection of esoteric symbols, just wait 'til you see those!) and provides in-depth accounts where the \AmSLaTeX\ documentation is brief. Just as \AmSTeX\ comes with the AMS preprint style (\verb@amsppt@), \AmSLaTeX\ comes with a specialist style file for preparation of articles with \AmSLaTeX\ for submission to journals: \verb@amsart@. The \AmSLaTeX\ User's Guide is quite short and very terse in its explanations (assuming you to be competent in \LaTeX), but is supplemented by a large body of examples and a comprehensive sample article that is a showcase of the abilities of the \verb@amsart@ style. You must read both these documents to really learn \AmSLaTeX. The AMS also distributes a guide to authors who wish to submit using \AmSLaTeX, and this is a must-read once you are familiar with some of \AmSLaTeX. \end{document} latex2rtf-2.3.18/test/enc_cp855.tex0000777000175000017500000001224213050672360017120 0ustar wilfriedwilfried\documentclass[10pt]{article} \usepackage[russian]{babel} \usepackage[cp855]{inputenc} \begin{document} \begin{center} \begin{tabular}{ccrl} 80&€&452&CYRILLIC SMALL LETTER DJE\\ 81&&402&CYRILLIC CAPITAL LETTER DJE\\ 82&‚&453&CYRILLIC SMALL LETTER GJE\\ 83&ƒ&403&CYRILLIC CAPITAL LETTER GJE\\ 84&„&451&CYRILLIC SMALL LETTER IO\\ 85&…&401&CYRILLIC CAPITAL LETTER IO\\ 86&†&454&CYRILLIC SMALL LETTER UKRAINIAN IE\\ 87&‡&404&CYRILLIC CAPITAL LETTER UKRAINIAN IE\\ 88&ˆ&455&CYRILLIC SMALL LETTER DZE\\ 89&‰&405&CYRILLIC CAPITAL LETTER DZE\\ 8A&Š&456&CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I\\ 8B&‹&406&CYRILLIC CAPITAL LETTER BYELORUSSIAN-UKRAINIAN I\\ 8C&Œ&457&CYRILLIC SMALL LETTER YI\\ 8D&&407&CYRILLIC CAPITAL LETTER YI\\ 8E&Ž&458&CYRILLIC SMALL LETTER JE\\ 8F&&408&CYRILLIC CAPITAL LETTER JE\\ 90&&459&CYRILLIC SMALL LETTER LJE\\ 91&‘&409&CYRILLIC CAPITAL LETTER LJE\\ 92&’&45A&CYRILLIC SMALL LETTER NJE\\ 93&“&40A&CYRILLIC CAPITAL LETTER NJE\\ 94&”&45B&CYRILLIC SMALL LETTER TSHE\\ 95&•&40B&CYRILLIC CAPITAL LETTER TSHE\\ 96&–&45C&CYRILLIC SMALL LETTER KJE\\ 97&—&40C&CYRILLIC CAPITAL LETTER KJE\\ 98&˜&45E&CYRILLIC SMALL LETTER SHORT U\\ 99&™&40E&CYRILLIC CAPITAL LETTER SHORT U\\ 9A&š&45F&CYRILLIC SMALL LETTER DZHE\\ 9B&›&40F&CYRILLIC CAPITAL LETTER DZHE\\ 9C&œ&44E&CYRILLIC SMALL LETTER YU\\ 9D&&42E&CYRILLIC CAPITAL LETTER YU\\ 9E&ž&44A&CYRILLIC SMALL LETTER HARD SIGN\\ 9F&Ÿ&42A&CYRILLIC CAPITAL LETTER HARD SIGN\\ \end{tabular} \pagebreak \begin{tabular}{cccl} A0& &430&CYRILLIC SMALL LETTER A\\ A1&Ą&410&CYRILLIC CAPITAL LETTER A\\ A2&˘&431&CYRILLIC SMALL LETTER BE\\ A3&Ł&411&CYRILLIC CAPITAL LETTER BE\\ A4&¤&446&CYRILLIC SMALL LETTER TSE\\ A5&Ľ&426&CYRILLIC CAPITAL LETTER TSE\\ A6&Ś&434&CYRILLIC SMALL LETTER DE\\ A7&§&414&CYRILLIC CAPITAL LETTER DE\\ A8&¨&435&CYRILLIC SMALL LETTER IE\\ A9&Š&415&CYRILLIC CAPITAL LETTER IE\\ AA&Ş&444&CYRILLIC SMALL LETTER EF\\ AB&Ť&424&CYRILLIC CAPITAL LETTER EF\\ AC&Ź&433&CYRILLIC SMALL LETTER GHE\\ AD&­&413&CYRILLIC CAPITAL LETTER GHE\\ AE&Ž&AB&LEFT-POINTING DOUBLE ANGLE QUOTATION MARK\\ AF&Ż&BB&RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK\\ B0&&2591&LIGHT SHADE\\ B1&&2592&MEDIUM SHADE\\ B2&&2593&DARK SHADE\\ B3&&2502&BOX DRAWINGS LIGHT VERTICAL\\ B4&&2524&BOX DRAWINGS LIGHT VERTICAL AND LEFT\\ B5&ľ&445&CYRILLIC SMALL LETTER HA\\ B6&ś&425&CYRILLIC CAPITAL LETTER HA\\ B7&ˇ&438&CYRILLIC SMALL LETTER I\\ B8&¸&418&CYRILLIC CAPITAL LETTER I\\ B9&&2563&BOX DRAWINGS DOUBLE VERTICAL AND LEFT\\ BA&&2551&BOX DRAWINGS DOUBLE VERTICAL\\ BB&&2557&BOX DRAWINGS DOUBLE DOWN AND LEFT\\ BC&&255D&BOX DRAWINGS DOUBLE UP AND LEFT\\ BD&˝&439&CYRILLIC SMALL LETTER SHORT I\\ BE&ž&419&CYRILLIC CAPITAL LETTER SHORT I\\ BF&&2510&BOX DRAWINGS LIGHT DOWN AND LEFT\\ \end{tabular} \pagebreak \begin{tabular}{cccl} C0&&2514&BOX DRAWINGS LIGHT UP AND RIGHT\\ C1&&2534&BOX DRAWINGS LIGHT UP AND HORIZONTAL\\ C2&&252C&BOX DRAWINGS LIGHT DOWN AND HORIZONTAL\\ C3&&251C&BOX DRAWINGS LIGHT VERTICAL AND RIGHT\\ C4&&2500&BOX DRAWINGS LIGHT HORIZONTAL\\ C5&&253C&BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL\\ C6&Ć&43A&CYRILLIC SMALL LETTER KA\\ C7&Ç&41A&CYRILLIC CAPITAL LETTER KA\\ C8&&255A&BOX DRAWINGS DOUBLE UP AND RIGHT\\ C9&&2554&BOX DRAWINGS DOUBLE DOWN AND RIGHT\\ CA&&2569&BOX DRAWINGS DOUBLE UP AND HORIZONTAL\\ CB&&2566&BOX DRAWINGS DOUBLE DOWN AND HORIZONTAL\\ CC&&2560&BOX DRAWINGS DOUBLE VERTICAL AND RIGHT\\ CD&&2550&BOX DRAWINGS DOUBLE HORIZONTAL\\ CE&&256C&BOX DRAWINGS DOUBLE VERTICAL AND HORIZONTAL\\ CF&Ď&A4&CURRENCY SIGN\\ D0&Đ&43B&CYRILLIC SMALL LETTER EL\\ D1&Ń&41B&CYRILLIC CAPITAL LETTER EL\\ D2&Ň&43C&CYRILLIC SMALL LETTER EM\\ D3&Ó&41C&CYRILLIC CAPITAL LETTER EM\\ D4&Ô&43D&CYRILLIC SMALL LETTER EN\\ D5&Ő&41D&CYRILLIC CAPITAL LETTER EN\\ D6&Ö&43E&CYRILLIC SMALL LETTER O\\ D7&×&41E&CYRILLIC CAPITAL LETTER O\\ D8&Ř&43F&CYRILLIC SMALL LETTER PE\\ D9&&2518&BOX DRAWINGS LIGHT UP AND LEFT\\ DA&&250C&BOX DRAWINGS LIGHT DOWN AND RIGHT\\ DB&&2588&FULL BLOCK\\ DC&&2584&LOWER HALF BLOCK\\ DD&Ý&41F&CYRILLIC CAPITAL LETTER PE\\ DE&Ţ&44F&CYRILLIC SMALL LETTER YA\\ DF&&2580&UPPER HALF BLOCK\\ \end{tabular} \pagebreak \begin{tabular}{cccl} E0&ŕ&42F&CYRILLIC CAPITAL LETTER YA\\ E1&á&440&CYRILLIC SMALL LETTER ER\\ E2&â&420&CYRILLIC CAPITAL LETTER ER\\ E3&ă&441&CYRILLIC SMALL LETTER ES\\ E4&ä&421&CYRILLIC CAPITAL LETTER ES\\ E5&ĺ&442&CYRILLIC SMALL LETTER TE\\ E6&ć&422&CYRILLIC CAPITAL LETTER TE\\ E7&ç&443&CYRILLIC SMALL LETTER U\\ E8&č&423&CYRILLIC CAPITAL LETTER U\\ E9&é&436&CYRILLIC SMALL LETTER ZHE\\ EA&ę&416&CYRILLIC CAPITAL LETTER ZHE\\ EB&ë&432&CYRILLIC SMALL LETTER VE\\ EC&ě&412&CYRILLIC CAPITAL LETTER VE\\ ED&í&44C&CYRILLIC SMALL LETTER SOFT SIGN\\ EE&î&42C&CYRILLIC CAPITAL LETTER SOFT SIGN\\ EF&ď&2116&NUMERO SIGN\\ F0&đ&AD&SOFT HYPHEN\\ F1&ń&44B&CYRILLIC SMALL LETTER YERU\\ F2&ň&42B&CYRILLIC CAPITAL LETTER YERU\\ F3&ó&437&CYRILLIC SMALL LETTER ZE\\ F4&ô&417&CYRILLIC CAPITAL LETTER ZE\\ F5&ő&448&CYRILLIC SMALL LETTER SHA\\ F6&ö&428&CYRILLIC CAPITAL LETTER SHA\\ F7&÷&44D&CYRILLIC SMALL LETTER E\\ F8&ř&42D&CYRILLIC CAPITAL LETTER E\\ F9&ů&449&CYRILLIC SMALL LETTER SHCHA\\ FA&ú&429&CYRILLIC CAPITAL LETTER SHCHA\\ FB&ű&447&CYRILLIC SMALL LETTER CHE\\ FC&ü&427&CYRILLIC CAPITAL LETTER CHE\\ FD&ý&A7&SECTION SIGN\\ FE&ţ&25A0&BLACK SQUARE\\ FF&˙&A0&NO-BREAK SPACE\\ \end{tabular} \end{center} \end{document} latex2rtf-2.3.18/test/enc_ot2.tex0000777000175000017500000001711313050672360016762 0ustar wilfriedwilfried%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -*-LaTeX-*- %%% OT2-new-sample.tex %%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% %% Date: 23-Jan-2002 %% Author: wd (Wolfgang.Dobler@kis.uni-freiburg.de) %% Description: % %% Choose appropriate driver: \RequirePackage{ifpdf} \ifpdf \def\mydriver{pdftex} % writing PDF \else \def\mydriver{dvips} % writing DVI \fi \documentclass[\mydriver,12pt,twoside,notitlepage,a4paper]{article} \usepackage[bookmarks=false]{hyperref} %\usepackage[OT2,T1]{fontenc} \usepackage[T2A,OT1]{fontenc} \usepackage[ot2enc]{inputenc} \usepackage[russian,british]{babel} \usepackage{booktabs,parskip,vmargin} \setpapersize{A4} \setmargrb{20mm}{15mm}{20mm}{15mm} \frenchspacing \sloppy \begin{document} \thispagestyle{empty} \subsection*{Preamble} Note that \verb|babel| needs to be included \emph{after} \verb|fontenc| in order for rare letters like Yatz, Izhitza and Fita to be available (I have no clue why): \begin{verbatim} \usepackage[OT2,T1]{fontenc} \usepackage[russian,british]{babel} \end{verbatim} or \begin{verbatim} \usepackage[T2A,OT1]{fontenc} \usepackage[ot2enc]{inputenc} \usepackage[russian,british]{babel} \end{verbatim} \clearpage \subsection*{Symbol table} The OT2 character symbols have changed (or I have been using an out-of-date table). The new symbols are listed below. \begin{center} \begin{tabular}{ll} \texttt{$\backslash$CYRA} & {\cyr \CYRA} \\ \texttt{$\backslash$CYRB} & {\cyr \CYRB} \\ \texttt{$\backslash$CYRC} & {\cyr \CYRC} \\ \texttt{$\backslash$CYRD} & {\cyr \CYRD} \\ \texttt{$\backslash$CYRE} & {\cyr \CYRE} \\ \texttt{$\backslash$CYRF} & {\cyr \CYRF} \\ \texttt{$\backslash$CYRG} & {\cyr \CYRG} \\ \texttt{$\backslash$CYRH} & {\cyr \CYRH} \\ \texttt{$\backslash$CYRI} & {\cyr \CYRI} \\ \texttt{$\backslash$CYRJE} & {\cyr \CYRJE} \\ \texttt{$\backslash$CYRK} & {\cyr \CYRK} \\ \texttt{$\backslash$CYRL} & {\cyr \CYRL} \\ \texttt{$\backslash$CYRM} & {\cyr \CYRM} \\ \texttt{$\backslash$CYRN} & {\cyr \CYRN} \\ \texttt{$\backslash$CYRO} & {\cyr \CYRO} \\ \texttt{$\backslash$CYRP} & {\cyr \CYRP} \\ \texttt{$\backslash$CYRCH} & {\cyr \CYRCH} \\ \texttt{$\backslash$CYRR} & {\cyr \CYRR} \\ \texttt{$\backslash$CYRS} & {\cyr \CYRS} \\ \texttt{$\backslash$CYRT} & {\cyr \CYRT} \\ \texttt{$\backslash$CYRU} & {\cyr \CYRU} \\ \texttt{$\backslash$CYRV} & {\cyr \CYRV} \\ \texttt{$\backslash$CYRSHCH} & {\cyr \CYRSHCH} \\ \texttt{$\backslash$CYRSH} & {\cyr \CYRSH} \\ \texttt{$\backslash$CYRERY} & {\cyr \CYRERY} \\ \texttt{$\backslash$CYRZ} & {\cyr \CYRZ} \\ \texttt{$\backslash$CYRSFTSN} & {\cyr \CYRSFTSN} \\ \texttt{$\backslash$CYRHRDSN} & {\cyr \CYRHRDSN} \\ \texttt{$\backslash$CYRYU} & {\cyr \CYRYU} \\ \texttt{$\backslash$CYRZH} & {\cyr \CYRZH} \\ \texttt{$\backslash$CYRISHRT} & {\cyr \CYRISHRT} \\ \texttt{$\backslash$CYRYO} & {\cyr \CYRYO} \\ \texttt{$\backslash$CYRIZH} & {\cyr \CYRIZH} \\ \texttt{$\backslash$CYRFITA} & {\cyr \CYRFITA} \\ \texttt{$\backslash$CYRDZE} & {\cyr \CYRDZE} \\ \texttt{$\backslash$CYRYA} & {\cyr \CYRYA} \\ \end{tabular}\quad % \begin{tabular}{ll} \texttt{$\backslash$cyra} & {\cyr \cyra} \\ \texttt{$\backslash$cyrb} & {\cyr \cyrb} \\ \texttt{$\backslash$cyrc} & {\cyr \cyrc} \\ \texttt{$\backslash$cyrd} & {\cyr \cyrd} \\ \texttt{$\backslash$cyre} & {\cyr \cyre} \\ \texttt{$\backslash$cyrf} & {\cyr \cyrf} \\ \texttt{$\backslash$cyrg} & {\cyr \cyrg} \\ \texttt{$\backslash$cyrh} & {\cyr \cyrh} \\ \texttt{$\backslash$cyri} & {\cyr \cyri} \\ \texttt{$\backslash$cyrje} & {\cyr \cyrje} \\ \texttt{$\backslash$cyrk} & {\cyr \cyrk} \\ \texttt{$\backslash$cyrl} & {\cyr \cyrl} \\ \texttt{$\backslash$cyrm} & {\cyr \cyrm} \\ \texttt{$\backslash$cyrn} & {\cyr \cyrn} \\ \texttt{$\backslash$cyro} & {\cyr \cyro} \\ \texttt{$\backslash$cyrp} & {\cyr \cyrp} \\ \texttt{$\backslash$cyrch} & {\cyr \cyrch} \\ \texttt{$\backslash$cyrr} & {\cyr \cyrr} \\ \texttt{$\backslash$cyrs} & {\cyr \cyrs} \\ \texttt{$\backslash$cyrt} & {\cyr \cyrt} \\ \texttt{$\backslash$cyru} & {\cyr \cyru} \\ \texttt{$\backslash$cyrv} & {\cyr \cyrv} \\ \texttt{$\backslash$cyrshch} & {\cyr \cyrshch} \\ \texttt{$\backslash$cyrsh} & {\cyr \cyrsh} \\ \texttt{$\backslash$cyrery} & {\cyr \cyrery} \\ \texttt{$\backslash$cyrz} & {\cyr \cyrz} \\ \texttt{$\backslash$cyrsftsn} & {\cyr \cyrsftsn} \\ \texttt{$\backslash$cyrhrdsn} & {\cyr \cyrhrdsn} \\ \texttt{$\backslash$cyryu} & {\cyr \cyryu} \\ \texttt{$\backslash$cyrzh} & {\cyr \cyrzh} \\ \texttt{$\backslash$cyrishrt} & {\cyr \cyrishrt} \\ \texttt{$\backslash$cyryo} & {\cyr \cyryo} \\ \texttt{$\backslash$cyrizh} & {\cyr \cyrizh} \\ \texttt{$\backslash$cyrfita} & {\cyr \cyrfita} \\ \texttt{$\backslash$cyrdze} & {\cyr \cyrdze} \\ \texttt{$\backslash$cyrya} & {\cyr \cyrya} \\ \end{tabular}\quad % \begin{tabular}{ll} %\texttt{$\backslash$''} & {\cyr \"} \\ %\verb|\'| & {\cyr \'} \\ \texttt{$\backslash$CYRNJE} & {\cyr \CYRNJE} \\ \texttt{$\backslash$CYRLJE} & {\cyr \CYRLJE} \\ \texttt{$\backslash$CYRDZHE} & {\cyr \CYRDZHE} \\ \texttt{$\backslash$CYREREV} & {\cyr \CYREREV} \\ \texttt{$\backslash$CYRII} & {\cyr \CYRII} \\ \texttt{$\backslash$CYRIE} & {\cyr \CYRIE} \\ \texttt{$\backslash$CYRDJE} & {\cyr \CYRDJE} \\ \texttt{$\backslash$CYRTSHE} & {\cyr \CYRTSHE} \\ \texttt{$\backslash$cyrnje} & {\cyr \cyrnje} \\ \texttt{$\backslash$cyrlje} & {\cyr \cyrlje} \\ \texttt{$\backslash$cyrdzhe} & {\cyr \cyrdzhe} \\ \texttt{$\backslash$cyrerev} & {\cyr \cyrerev} \\ \texttt{$\backslash$cyrii} & {\cyr \cyrii} \\ \texttt{$\backslash$cyrie} & {\cyr \cyrie} \\ \texttt{$\backslash$cyrdje} & {\cyr \cyrdje} \\ \texttt{$\backslash$cyrtshe} & {\cyr \cyrtshe} \\ \texttt{$\backslash$CYRYAT} & {\cyr \CYRYAT} \\ \texttt{$\backslash$cyryat} & {\cyr \cyryat} \\ \texttt{$\backslash$i} & {\cyr \i} \\ \texttt{$\backslash$textquoteleft} & {\cyr \textquoteleft} \\ \texttt{$\backslash$textquoteright} & {\cyr \textquoteright} \\ \texttt{$\backslash$textquotedblleft} & {\cyr \textquotedblleft} \\ \texttt{$\backslash$textquotedblright} & {\cyr \textquotedblright} \\ \texttt{$\backslash$guillemotleft} & {\cyr \guillemotleft} \\ \texttt{$\backslash$guillemotright} & {\cyr \guillemotright} \\ \texttt{$\backslash$textendash} & {\cyr \textendash} \\ \texttt{$\backslash$cyrdash} & {\cyr \cyrdash} \\ \texttt{$\backslash$textemdash} & {\cyr \textemdash} \\ \texttt{$\backslash$textnumero} & {\cyr \textnumero} \\ \end{tabular} \end{center} \clearpage \subsection*{Single character mappings} Apart from these explicit names there are also the individual letters and ligatures which are mapped according to \begin{center} \begin{tabular}{ll} \toprule \emph{Letter/ligature} & \emph{Result} \\ \midrule a, A & {\cyr a, A} \\ b, B & {\cyr b, B} \\ c, C & {\cyr c, C} \\ d, D & {\cyr d, D} \\ e, E & {\cyr e, E} \\ f, F & {\cyr f, F} \\ g, G & {\cyr g, G} \\ h, H & {\cyr h, H} \\ i, I & {\cyr i, I} \\ j, J & {\cyr j, J} \\ k, K & {\cyr k, K} \\ l, L & {\cyr l, L} \\ m, M & {\cyr m, M} \\ n, N & {\cyr n, N} \\ o, O & {\cyr o, O} \\ p, P & {\cyr p, P} \\ q, Q & {\cyr q, Q} \\ r, R & {\cyr r, R} \\ s, S & {\cyr s, S} \\ t, T & {\cyr t, T} \\ u, U & {\cyr u, U} \\ v, V & {\cyr v, V} \\ w, W & {\cyr w, W} \\ x, X & {\cyr x, X} \\ y, Y & {\cyr y, Y} \\ z, Z & {\cyr z, Z} \\ \midrule Dj, dj & {\cyr Dj, dj} \\ Zh, zh & {\cyr Zh, zh} \\ Lj, lj & {\cyr Lj, lj} \\ Nj, nj & {\cyr Nj, nj} \\ Kh, kh & {\cyr Kh, kh} \\ Ts, ts & {\cyr Ts, ts} \\ Ch, ch & {\cyr Ch, ch} \\ Sh, sh & {\cyr Sh, sh} \\ Shch, shch & {\cyr Shch, shch} \\ Yu, yu & {\cyr Yu, yu} \\ Ya, ya & {\cyr Ya, ya} \\ N0 & {\cyr N0} \\ \bottomrule \end{tabular} \end{center} \end{document} % End of file OT2-new-sample.tex latex2rtf-2.3.18/test/bib_apacite2.tex0000777000175000017500000001432513050672357017745 0ustar wilfriedwilfried\documentclass[12pt,a4paper]{article} \usepackage[english]{babel} % added by WH 2009-10-30 % as workaround for babel bug on MiKTeX2.8 %\usepackage{doc,apacite} % changed by WH 2009-10-30 \usepackage{apacite} \title{Test of the \texttt{apacite} package and bibstyle} \author{Erik Meijer\\ Department of Psychometrics and Research Methodology\\ Leiden University\\ PO Box 9555\\ 2300 RB Leiden\\ The Netherlands\\ E-Mail: Meijer@rulfsw.LeidenUniv.nl } \renewcommand{\date}{December 22, 1994} \begin{document} \maketitle \begin{abstract} In this document, the examples of the APA manual (3rd ed., 1984) are cited to test the \texttt{apacite} package and bibstyle. A description of the \texttt{apacite} package and bibstyle can be found in the file \texttt{apacite.tex}. See also the \texttt{readme.apa} file. The file \texttt{apacite.sty} must be in a directory that \TeX\ can find. The files \texttt{apacite.bst} and \texttt{testAPA.bib} must be in directories that \textsc{Bib}\TeX\ can find. \end{abstract} \section{The in-text citations} The following enumerated list gives the example number, and the two basic in-text citation commands, both in a full and short form, of all examples in the APA manual. \begin{enumerate} \item \cite{1} \\ \cite{1} \\ \fullciteA{1} \\ \citeA{1} \item \cite{2} \\ \cite{2} \\ \fullciteA{2} \\ \citeA{2} \item \cite{3} \\ \cite{3} \\ \fullciteA{3} \\ \citeA{3} \item \cite{4} \\ \cite{4} \\ \fullciteA{4} \\ \citeA{4} \item \cite{5} \\ \cite{5} \\ \fullciteA{5} \\ \citeA{5} \item \cite{6} \\ \cite{6} \\ \fullciteA{6} \\ \citeA{6} % 6--10:magazine/newspaper \item \cite{7} \\ \cite{7} \\ \fullciteA{7} \\ \citeA{7} \item \cite{8} \\ \cite{8} \\ \fullciteA{8} \\ \citeA{8} \item \cite{9} \\ \cite{9} \\ \fullciteA{9} \\ \citeA{9} \item \cite{10} \\ \cite{10} \\ \fullciteA{10} \\ \citeA{10} \item \cite{11} \\ \cite{11} \\ \fullciteA{11} \\ \citeA{11} % special issue of journal: formatted as article % with editors instead of authors \item \cite{12} \\ \cite{12}\\ \fullciteA{12}\\ \citeA{12} \item \cite{13} \\ \cite{13}\\ \fullciteA{13}\\ \citeA{13} \item \cite{14} \\ \cite{14}\\ \fullciteA{14}\\ \citeA{14} \item \cite{15} \\ \cite{15}\\ \fullciteA{15}\\ \citeA{15} \item \cite{16} \\ \cite{16}\\ \fullciteA{16}\\ \citeA{16} \item \cite{17} \\ \cite{17}\\ \fullciteA{17}\\ \citeA{17} \item \cite{18} \\ \cite{18}\\ \fullciteA{18}\\ \citeA{18} \item \cite{19} \\ \cite{19}\\ \fullciteA{19}\\ \citeA{19} \item \cite{20} \\ \cite{20}\\ \fullciteA{20}\\ \citeA{20} \item \cite{21} \\ \cite{21}\\ \fullciteA{21}\\ \citeA{21} \item \cite{22} \\ \cite{22}\\ \fullciteA{22}\\ \citeA{22} \item \cite{23} \\ \cite{23}\\ \fullciteA{23}\\ \citeA{23} \item \cite{24} \\ \cite{24}\\ \fullciteA{24}\\ \citeA{24} \item \cite{25} \\ \cite{25}\\ \fullciteA{25}\\ \citeA{25} % book with no author or editor \item \cite{26} \\ \cite{26}\\ \fullciteA{26}\\ \citeA{26} \item \cite{27} \\ \cite{27}\\ \fullciteA{27}\\ \citeA{27} \item \cite{28} \\ \cite{28}\\ \fullciteA{28}\\ \citeA{28} \item \cite{29} \\ \cite{29}\\ \fullciteA{29}\\ \citeA{29} % translated book with original work published % in another year than translation \item \cite{30} \\ \cite{30}\\ \fullciteA{30}\\ \citeA{30} \item \cite{31} \\ \cite{31}\\ \fullciteA{31}\\ \citeA{31} \item \cite{32} \\ \cite{32}\\ \fullciteA{32}\\ \citeA{32} \item \cite{33} \\ \cite{33}\\ \fullciteA{33}\\ \citeA{33} \item \cite{34} \\ \cite{34}\\ \fullciteA{34}\\ \citeA{34} % translated chapter in edited book \item \cite{35} \\ \cite{35}\\ \fullciteA{35}\\ \citeA{35} % idem \item \cite{36} \\ \cite{36}\\ \fullciteA{36}\\ \citeA{36} \item \cite{37} \\ \cite{37}\\ \fullciteA{37}\\ \citeA{37} \item \cite{38} \\ \cite{38}\\ \fullciteA{38}\\ \citeA{38} \item \cite{39} \\ \cite{39}\\ \fullciteA{39}\\ \citeA{39} \item \cite{40} \\ \cite{40}\\ \fullciteA{40}\\ \citeA{40} % article in tech. report \item \cite{41} \\ \cite{41}\\ \fullciteA{41}\\ \citeA{41} \item \cite{42} \\ \cite{42}\\ \fullciteA{42}\\ \citeA{42} % edited technical report \item \cite{43} \\ \cite{43}\\ \fullciteA{43}\\ \citeA{43} % report from corporate author \item \cite{44} \\ \cite{44}\\ \fullciteA{44}\\ \citeA{44} \item \cite{45} \\ \cite{45}\\ \fullciteA{45}\\ \citeA{45} \item \cite{46} \\ \cite{46} \\ \fullciteA{46} \\ \citeA{46} % lecture ``In editor (Chair), symposium'' \item \cite{47} \\ \cite{47}\\ \fullciteA{47}\\ \citeA{47} % lecture \item \cite{48} \\ \cite{48}\\ \fullciteA{48}\\ \citeA{48} \item \cite{49} \\ \cite{49}\\ \fullciteA{49}\\ \citeA{49} \item \cite{50} \\ \cite{50}\\ \fullciteA{50}\\ \citeA{50} \item \cite{51} \\ \cite{51}\\ \fullciteA{51}\\ \citeA{51} \item \cite{52} \\ \cite{52}\\ \fullciteA{52}\\ \citeA{52} \item \cite{53} \\ \cite{53}\\ \fullciteA{53}\\ \citeA{53} \item \cite{54} \\ \cite{54}\\ \fullciteA{54}\\ \citeA{54} \item \cite{55} \\ \cite{55}\\ \fullciteA{55}\\ \citeA{55} \item \cite{56} \\ \cite{56}\\ \fullciteA{56}\\ \citeA{56} % unpublished with editor \item \cite{57} \\ \cite{57}\\ \fullciteA{57}\\ \citeA{57} % book review \item \cite{58} \\ \cite{58}\\ \fullciteA{58}\\ \citeA{58} % film review \item \cite{59} \\ \cite{59}\\ \fullciteA{59}\\ \citeA{59} % untitled interview \item \cite{60} \\ \cite{60}\\ \fullciteA{60}\\ \citeA{60} % film \item \cite{61} \\ \cite{61}\\ \fullciteA{61}\\ \citeA{61} % cassette recording \item \cite{62} \\ \cite{62}\\ \fullciteA{62}\\ \citeA{62} % machine-readable data file \item \cite{63} \\ \cite{63}\\ \fullciteA{63}\\ \citeA{63} % computer program \end{enumerate} \bibliographystyle{apacite} \bibliography{bib_apacite2} \end{document} latex2rtf-2.3.18/test/enc_utf8x.tex0000777000175000017500000002613213050672355017341 0ustar wilfriedwilfried\documentclass[10pt]{article} \usepackage[T1]{fontenc} % not necessary for most (all?) symbols) \usepackage{ucs} \usepackage[utf8x]{inputenc} \usepackage[greek,russian,english]{babel} \usepackage{textcomp} \usepackage{eurosym} \parindent=0pt \begin{document} This is a test for UTF-8 encoding \section{ASCII range} chars 33-63 (hex 21-3F)\\ \verb|! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ?|\\ chars 64-95 (40-5F)\\ \verb|@ 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 [ ] ^ _|\\ chars 96-126 (60-7E) (127(7F) is "DEL" key)\\ \verb/` 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 { | } ~/\\ \section{Math} It is possible to use some utf-8 encoded characters even in math mode. Now let's test an equation. First, in standard notation: \[ \nabla^2 \phi -{1\over c} {\partial \phi\over \partial t} = 0 \] Now with "partial" replaced: \[ \nabla^2 \phi -{1\over c} {∂ \phi\over ∂ t} = 0 \] Note that utf-8 encoded greek characters aren't supported in \LaTeX{} math mode. So for entering an utf-8 encoded greek character inside a math enviroment one would have to switch to text mode and additionally to greek, but it makes no sense to replace the command\\ \verb|$\phi$|\\ by the command\\ \verb|$\textit{\foreignlanguage{greek}{utf-8_encoded_phi}}$| \section{Tables} \begin{tabular}{crcl} €&128&80&\\ n/a&129&81&\\ ‚&130&82&\\ ƒ&131&83&\\ „&132&84&\\ …&133&85&\\ †&134&86&\\ ‡&135&87&\\ ˆ&136&88&\\ ‰&137&89&\\ Ĺ &138&8A&\\ ‹&139&8B&\\ Œ&140&8C&\\ n/a&141&8D&\\ Ĺ˝&142&8E&\\ n/a&143&8F&\\ n/a&144&90&\\ ‘&145&91&\\ ’&146&92&\\ “&147&93&\\ ”&148&94&\\ •&149&95&\\ –&150&96&\\ —&151&97&\\ ˜&152&98&\\ ™&153&99&\\ ĹĄ&154&9A&\\ ›&155&9B&\\ œ&156&9C&\\ n/a&157&9D&\\ Ĺž&158&9E&\\ Ÿ&159&9F&\\ \end{tabular} \begin{tabular}{crcl} &160&A0&nonbreakspace\\ ÂĄ&161&A1&\\ ¢&162&A2&\\ ÂŁ&163&A3&\\ ¤&164&A4&\\ ÂĽ&165&A5&\\ ÂŚ&166&A6&\\ §&167&A7&\\ ¨&168&A8&\\ Š&169&A9&\\ ÂŞ&170&AA&\\ ÂŤ&171&AB&\\ ÂŹ&172&AC&\\ ­&173&AD&\\ ÂŽ&174&AE&\\ ÂŻ&175&AF&\\ °&176&B0&\\ Âą&177&B1&\\ ²&178&B2&\\ Âł&179&B3&\\ ´&180&B4&\\ Âľ&181&B5&\\ Âś&182&B6&\\ •&183&B7&\\ ¸&184&B8&\\ š&185&B9&\\ Âş&186&BA&\\ Âť&187&BB&\\ Âź&188&BC&\\ ½&189&BD&\\ ž&190&BE&\\ Âż&191&BF&\\ \end{tabular} \begin{tabular}{crcl} À&192&C0&\\ Á&193&C1&\\ Â&194&C2&\\ Ã&195&C3&\\ Ä&196&C4&\\ Å&197&C5&\\ Æ&198&C6&\\ Ç&199&C7&\\ È&200&C8&\\ É&201&C9&\\ Ê&202&CA&\\ Ë&203&CB&\\ Ì&204&CC&\\ Í&205&CD&\\ Î&206&CE&\\ Ï&207&CF&\\ Ð&208&D0&\\ Ñ&209&D1&\\ Ò&210&D2&\\ Ó&211&D3&\\ Ô&212&D4&\\ Õ&213&D5&\\ Ö&214&D6&\\ ×&215&D7&\\ Ø&216&D8&\\ Ù&217&D9&\\ Ú&218&DA&\\ Û&219&DB&\\ Ü&220&DC&\\ Ý&221&DD&\\ Þ&222&DE&\\ ß&223&DF&\\ \end{tabular} \begin{tabular}{crcl} Ă &224&E0&\\ ĂĄ&225&E1&\\ â&226&E2&\\ ĂŁ&227&E3&\\ ä&228&E4&\\ ĂĽ&229&E5&\\ ĂŚ&230&E6&\\ ç&231&E7&\\ è&232&E8&\\ ĂŠ&233&E9&\\ ĂŞ&234&EA&\\ ĂŤ&235&EB&\\ ĂŹ&236&EC&\\ Ă­&237&ED&\\ ĂŽ&238&EE&\\ ĂŻ&239&EF&\\ ð&240&F0&\\ Ăą&241&F1&\\ ò&242&F2&\\ Ăł&243&F3&\\ Ă´&244&F4&\\ Ăľ&245&F5&\\ Ăś&246&F6&\\ á&247&F7&\\ ø&248&F8&\\ Ăš&249&F9&\\ Ăş&250&FA&\\ Ăť&251&FB&\\ Ăź&252&FC&\\ Ă˝&253&FD&\\ Ăž&254&FE&\\ Ăż&255&FF&\\ \end{tabular} \begin{tabular}{crcl} Ā&256&100&\\ ā&257&101&\\ Ă&258&102&\\ ă&259&103&\\ Ą&260&104&\\ ą&261&105&\\ Ć&262&106&\\ ć&263&107&\\ Ĉ&264&108&\\ ĉ&265&109&\\ Ċ&266&10A&\\ ċ&267&10B&\\ Č&268&10C&\\ č&269&10D&\\ Ď&270&10E&\\ ď&271&10F&\\ Đ&272&110&\\ đ&273&111&\\ Ē&274&112&\\ ē&275&113&\\ Ĕ&276&114&\\ ĕ&277&115&\\ Ė&278&116&\\ ė&279&117&\\ Ę&280&118&\\ ę&281&119&\\ Ě&282&11A&\\ ě&283&11B&\\ Ĝ&284&11C&\\ ĝ&285&11D&\\ Ğ&286&11E&\\ ğ&287&11F&\\ \end{tabular} \begin{tabular}{crcl} Ä &288&120&\\ ÄĄ&289&121&\\ Ģ&290&122&\\ ÄŁ&291&123&\\ Ĥ&292&124&\\ ÄĽ&293&125&\\ ÄŚ&294&126&\\ ħ&295&127&\\ Ĩ&296&128&\\ ÄŠ&297&129&\\ ÄŞ&298&12A&\\ ÄŤ&299&12B&\\ ÄŹ&300&12C&\\ Ä­&301&12D&\\ ÄŽ&302&12E&\\ ÄŻ&303&12F&\\ İ&304&130&\\ Äą&305&131&\\ IJ&306&132&\\ Äł&307&133&\\ Ä´&308&134&\\ Äľ&309&135&\\ Äś&310&136&\\ ġ&311&137&\\ ĸ&312&138&\\ Äš&313&139&\\ Äş&314&13A&\\ Äť&315&13B&\\ Äź&316&13C&\\ Ä˝&317&13D&\\ Äž&318&13E&\\ Äż&319&13F&\\ \end{tabular} \begin{tabular}{crcl} ŀ&320&140&\\ Ł&321&141&\\ ł&322&142&\\ Ń&323&143&\\ ń&324&144&\\ Ņ&325&145&\\ ņ&326&146&\\ Ň&327&147&\\ ň&328&148&\\ ʼn&329&149&\\ Ŋ&330&14A&\\ ŋ&331&14B&\\ Ō&332&14C&\\ ō&333&14D&\\ Ŏ&334&14E&\\ ŏ&335&14F&\\ Ő&336&150&\\ ő&337&151&\\ Œ&338&152&\\ œ&339&153&\\ Ŕ&340&154&\\ ŕ&341&155&\\ Ŗ&342&156&\\ ŗ&343&157&\\ Ř&344&158&\\ ř&345&159&\\ Ś&346&15A&\\ ś&347&15B&\\ Ŝ&348&15C&\\ ŝ&349&15D&\\ Ş&350&15E&\\ ş&351&15F&\\ \end{tabular} \begin{tabular}{crcl} Ĺ &352&160&\\ ĹĄ&353&161&\\ Ţ&354&162&\\ ĹŁ&355&163&\\ Ť&356&164&\\ ĹĽ&357&165&\\ ĹŚ&358&166&\\ ŧ&359&167&\\ Ũ&360&168&\\ ĹŠ&361&169&\\ ĹŞ&362&16A&\\ ĹŤ&363&16B&\\ ĹŹ&364&16C&\\ Ĺ­&365&16D&\\ ĹŽ&366&16E&\\ ĹŻ&367&16F&\\ Ű&368&170&\\ Ĺą&369&171&\\ Ų&370&172&\\ Ĺł&371&173&\\ Ĺ´&372&174&\\ Ĺľ&373&175&\\ Ĺś&374&176&\\ š&375&177&\\ Ÿ&376&178&\\ Ĺš&377&179&\\ Ĺş&378&17A&\\ Ĺť&379&17B&\\ Ĺź&380&17C&\\ Ĺ˝&381&17D&\\ Ĺž&382&17E&\\ Ĺż&383&17F&\\ \end{tabular} \begin{tabular}{crcl} Ə&399&18F&\\ ƒ&402&192&\\ Ć &416&1A0&\\ ĆĄ&417&1A1&\\ ĆŻ&431&1AF&\\ ư&432&1B0&\\ Ǎ&461&1CD&\\ ǎ&462&1CE&\\ Ǐ&463&1CF&\\ ǐ&464&1D0&\\ Ǒ&465&1D1&\\ ǒ&466&1D2&\\ Ǔ&467&1D3&\\ ǔ&468&1D4&\\ Ǖ&469&1D5&\\ ǖ&470&1D6&\\ Ǘ&471&1D7&\\ ǘ&472&1D8&\\ Ǚ&473&1D9&\\ ǚ&474&1DA&\\ Ǜ&475&1DB&\\ ǜ&476&1DC&\\ Çş&506&1FA&\\ Çť&507&1FB&\\ Çź&508&1FC&\\ Ç˝&509&1FD&\\ Çž&510&1FE&\\ Çż&511&1FF&\\ ə&601&259&\\ \end{tabular} \begin{tabular}{crcl} ˆ&710&2C6&\\ ˇ&711&2C7&\\ ˉ&713&2C9&\\ ˘&728&2D8&\\ ˙&729&2D9&\\ ˚&730&2DA&\\ ˛&731&2DB&\\ ˜&732&2DC&\\ ˝&733&2DD&\\ ̀&768&300&\\ ́&769&301&\\ ̃&771&303&\\ ̉&777&309&\\ ĚŁ&803&323&\\ Íž&894&37E&\\ ΄&900&384&\\ ΅&901&385&\\ Ά&902&386&\\ ·&903&387&\\ Έ&904&388&\\ Ή&905&389&\\ Ί&906&38A&\\ Ό&908&38C&\\ Ύ&910&38E&\\ Ώ&911&38F&\\ ΐ&912&390&\\ \end{tabular} \selectlanguage{greek} \begin{tabular}{crcl} Α&913&391&\\ Β&914&392&\\ Γ&915&393&\\ Δ&916&394&\\ Ε&917&395&\\ Ζ&918&396&\\ Η&919&397&\\ Θ&920&398&\\ Ι&921&399&\\ Κ&922&39A&\\ Λ&923&39B&\\ Μ&924&39C&\\ Ν&925&39D&\\ Ξ&926&39E&\\ Ο&927&39F&\\ Π&928&3A0&\\ ÎĄ&929&3A1&\\ n/a&930&3A2&\\ ÎŁ&931&3A3&\\ Τ&932&3A4&\\ ÎĽ&933&3A5&\\ ÎŚ&934&3A6&\\ Χ&935&3A7&\\ Ψ&936&3A8&\\ Ί&937&3A9&\\ ÎŞ&938&3AA&\\ ÎŤ&939&3AB&\\ ÎŹ&940&3AC&\\ έ&941&3AD&\\ ÎŽ&942&3AE&\\ ÎŻ&943&3AF&\\ ΰ&944&3B0&\\ \end{tabular} \begin{tabular}{crcl} Îą&945&3B1&\\ β&946&3B2&\\ Îł&947&3B3&\\ δ&948&3B4&\\ Îľ&949&3B5&\\ Îś&950&3B6&\\ Ρ&951&3B7&\\ θ&952&3B8&\\ Κ&953&3B9&\\ Îş&954&3BA&\\ Îť&955&3BB&\\ Îź&956&3BC&\\ ν&957&3BD&\\ Ξ&958&3BE&\\ Îż&959&3BF&\\ π&960&3C0&\\ ρ&961&3C1&\\ ς&962&3C2&\\ σ&963&3C3&\\ τ&964&3C4&\\ υ&965&3C5&\\ φ&966&3C6&\\ χ&967&3C7&\\ ψ&968&3C8&\\ ω&969&3C9&\\ ϊ&970&3CA&\\ ϋ&971&3CB&\\ ό&972&3CC&\\ ύ&973&3CD&\\ ώ&974&3CE&\\ \end{tabular} \selectlanguage{russian} \begin{tabular}{crcl} Ё&1025&401&\\ Ђ&1026&402&\\ Ѓ&1027&403&\\ Є&1028&404&\\ Ѕ&1029&405&\\ І&1030&406&\\ Ї&1031&407&\\ Ј&1032&408&\\ Љ&1033&409&\\ Њ&1034&40A&\\ Ћ&1035&40B&\\ Ќ&1036&40C&\\ Ў&1038&40E&\\ Џ&1039&40F&\\ \end{tabular} \begin{tabular}{crcl} А&1040&410&\\ Б&1041&411&\\ В&1042&412&\\ Г&1043&413&\\ Д&1044&414&\\ Е&1045&415&\\ Ж&1046&416&\\ З&1047&417&\\ И&1048&418&\\ Й&1049&419&\\ К&1050&41A&\\ Л&1051&41B&\\ М&1052&41C&\\ Н&1053&41D&\\ О&1054&41E&\\ П&1055&41F&\\ Đ &1056&420&\\ ĐĄ&1057&421&\\ Т&1058&422&\\ ĐŁ&1059&423&\\ Ф&1060&424&\\ ĐĽ&1061&425&\\ ĐŚ&1062&426&\\ Ч&1063&427&\\ Ш&1064&428&\\ ĐŠ&1065&429&\\ ĐŞ&1066&42A&\\ ĐŤ&1067&42B&\\ ĐŹ&1068&42C&\\ Đ­&1069&42D&\\ ĐŽ&1070&42E&\\ ĐŻ&1071&42F&\\ \end{tabular} \begin{tabular}{crcl} а&1072&430&\\ Đą&1073&431&\\ в&1074&432&\\ Đł&1075&433&\\ Đ´&1076&434&\\ Đľ&1077&435&\\ Đś&1078&436&\\ С&1079&437&\\ и&1080&438&\\ Đš&1081&439&\\ Đş&1082&43A&\\ Đť&1083&43B&\\ Đź&1084&43C&\\ Đ˝&1085&43D&\\ Đž&1086&43E&\\ Đż&1087&43F&\\ р&1088&440&\\ с&1089&441&\\ т&1090&442&\\ у&1091&443&\\ ф&1092&444&\\ х&1093&445&\\ ц&1094&446&\\ ч&1095&447&\\ ш&1096&448&\\ щ&1097&449&\\ ъ&1098&44A&\\ ы&1099&44B&\\ ь&1100&44C&\\ э&1101&44D&\\ ю&1102&44E&\\ я&1103&44F&\\ \end{tabular} \begin{tabular}{crcl} ё&1105&451&\\ ђ&1106&452&\\ ѓ&1107&453&\\ є&1108&454&\\ ѕ&1109&455&\\ і&1110&456&\\ ї&1111&457&\\ ј&1112&458&\\ љ&1113&459&\\ њ&1114&45A&\\ ћ&1115&45B&\\ ќ&1116&45C&\\ n/a&1117&45D&\\ ў&1118&45E&\\ џ&1119&45F&\\ Ґ&1168&490&\\ ґ&1169&491&\\ Ғ&1170&492&\\ ғ&1171&493&\\ Җ&1174&496&\\ җ&1175&497&\\ Қ&1178&49A&\\ қ&1179&49B&\\ Ҝ&1180&49C&\\ ҝ&1181&49D&\\ Ң&1186&4A2&\\ ŇŁ&1187&4A3&\\ ŇŽ&1198&4AE&\\ ŇŻ&1199&4AF&\\ Ұ&1200&4B0&\\ Ňą&1201&4B1&\\ Ҳ&1202&4B2&\\ Ňł&1203&4B3&\\ Ҹ&1208&4B8&\\ Ňš&1209&4B9&\\ Ňş&1210&4BA&\\ Ňť&1211&4BB&\\ \end{tabular} \begin{tabular}{crcl} Ә&1240&4D8&\\ ә&1241&4D9&\\ Ó¨&1256&4E8&\\ ÓŠ&1257&4E9&\\ —&8212&2014&\\ ―&8213&2015&\\ ‗&8215&2017&\\ ‘&8216&2018&\\ ’&8217&2019&\\ ‚&8218&201A&\\ ‛&8219&201B&\\ “&8220&201C&\\ ”&8221&201D&\\ „&8222&201E&\\ †&8224&2020&\\ ‡&8225&2021&\\ •&8226&2022&\\ …&8230&2026&\\ ‰&8240&2030&\\ ′&8242&2032&\\ ″&8243&2033&\\ ‹&8249&2039&\\ ›&8250&203A&\\ ‼&8252&203C&\\ ‾&8254&203E&\\ ⁄&8260&2044&\\ ⁿ&8319&207F&\\ ₣&8355&20A3&\\ ₤&8356&20A4&\\ ₧&8359&20A7&\\ ₪&8362&20AA&\\ ₫&8363&20AB&\\ €&8364&20AC&\\ ℅&8453&2105&\\ ℓ&8467&2113&\\ №&8470&2116&\\ ™&8482&2122&\\ Ω&8486&2126&\\ ℮&8494&212E&\\ \end{tabular} \selectlanguage{english} \begin{tabular}{crcl} ⅓&8531&2153&\\ ⅔&8532&2154&\\ ⅛&8539&215B&\\ ⅜&8540&215C&\\ ⅝&8541&215D&\\ ⅞&8542&215E&\\ ←&8592&2190&\\ ↑&8593&2191&\\ →&8594&2192&\\ ↓&8595&2193&\\ ↔&8596&2194&\\ ↕&8597&2195&\\ ↨&8616&21A8&\\ ∂&8706&2202&\\ ∆&8710&2206&\\ ∏&8719&220F&\\ ∑&8721&2211&\\ −&8722&2212&\\ ∕&8725&2215&\\ ∙&8729&2219&\\ √&8730&221A&\\ ∞&8734&221E&\\ ∟&8735&221F&\\ ∊&8745&2229&\\ ∍&8747&222B&\\ ≈&8776&2248&\\ ≠&8800&2260&\\ ≡&8801&2261&\\ ≤&8804&2264&\\ ≥&8805&2265&\\ ⌂&8962&2302&\\ ⌐&8976&2310&\\ ⌠&8992&2320&\\ ⌡&8993&2321&\\ \end{tabular} \begin{tabular}{crcl} ─&9472&2500&\\ │&9474&2502&\\ ┌&9484&250C&\\ ┐&9488&2510&\\ └&9492&2514&\\ ┘&9496&2518&\\ ├&9500&251C&\\ ┤&9508&2524&\\ ┬&9516&252C&\\ ┴&9524&2534&\\ ┼&9532&253C&\\ ═&9552&2550&\\ ║&9553&2551&\\ ╒&9554&2552&\\ ╓&9555&2553&\\ ╔&9556&2554&\\ ╕&9557&2555&\\ ╖&9558&2556&\\ ╗&9559&2557&\\ ╘&9560&2558&\\ ╙&9561&2559&\\ ╚&9562&255A&\\ ╛&9563&255B&\\ ╜&9564&255C&\\ ╝&9565&255D&\\ ╞&9566&255E&\\ ╟&9567&255F&\\ ╠&9568&2560&\\ ╡&9569&2561&\\ ╢&9570&2562&\\ ╣&9571&2563&\\ ╤&9572&2564&\\ ╥&9573&2565&\\ ╦&9574&2566&\\ ╧&9575&2567&\\ ╨&9576&2568&\\ ╩&9577&2569&\\ ╪&9578&256A&\\ ╫&9579&256B&\\ ╬&9580&256C&\\ \end{tabular} \begin{tabular}{crcl} ■&9632&25A0&\\ □&9633&25A1&\\ ▪&9642&25AA&\\ ▫&9643&25AB&\\ ▬&9644&25AC&\\ ▲&9650&25B2&\\ ►&9658&25BA&\\ ▼&9660&25BC&\\ ◄&9668&25C4&\\ ◊&9674&25CA&\\ ○&9675&25CB&\\ ●&9679&25CF&\\ ◘&9688&25D8&\\ ◙&9689&25D9&\\ ◦&9702&25E6&\\ ☺&9786&263A&\\ ☝&9787&263B&\\ ☟&9788&263C&\\ ♀&9792&2640&\\ ♂&9794&2642&\\ ♠&9824&2660&\\ ♣&9827&2663&\\ ♥&9829&2665&\\ ♦&9830&2666&\\ ♪&9834&266A&\\ ♫&9835&266B&\\ \end{tabular} \end{document} latex2rtf-2.3.18/test/bibentry_apalike.bib0000777000175000017500000000143313050672360020667 0ustar wilfriedwilfried@Book{ floo-comp, editor = {Gavin Flood}, title = {{The Blackwell Companion to Hinduism}}, publisher = {Blackwell}, year = 2003, address = {Oxford}, isbn = {0-631-21535-2} } @Book{ zysk-conj, author = {Kenneth G. Zysk}, title = {Conjugal Love in {India}}, year = 2002, publisher = {Brill}, address = {Leiden}, volume = 1, series = {Sir Henry Wellcome Asian Series}, annote = {http://www.brill.nl/m\_catalogue\_sub6\_id10452.htm}, isbn = {90 04 12598 1} } @Book{ ping-cata, author = {David Pingree}, title = {Catalogue of Jyoti\d{s}a Manuscripts in the Wellcome Library. Sanskrit Astral and Mathematical Literature}, year = 2004, publisher = {Brill}, address = {Leiden}, volume = 2, series = {Sir Henry Wellcome Asian Series} } latex2rtf-2.3.18/test/include3.tex0000777000175000017500000000245213050672360017137 0ustar wilfriedwilfried\subsubsection{This is the first subsubsection from file \texttt{include3.tex}} \label{section31} Here is some text to create a paragraph or two so that we can see if this works or not. It will be interesting to see if the labels work properly. As I create these testing files I realize that I need to add parsing support for \verb#\input# and \verb#\include# in the getSection function. Furthermore, after reading the \LaTeX{} book, I see that \verb#\include# files will all start on a new page. This is not the case for \verb#\input# files. Here is a reference to the next subsubsection \ref{section32}. \subsubsection{This is the second subsubsection from file \texttt{include3.tex}} \label{section32} Here is some text to create a paragraph or two so that we can see if this works or not. It will be interesting to see if the labels work properly. As I create these testing files I realize that I need to add parsing support for \verb#\input# and \verb#\include# in the getSection function. Furthermore, after reading the \LaTeX{} book, I see that \verb#\include# files will all start on a new page. This is not the case for \verb#\input# files. Here is a reference to the previous subsubsection \ref{section31}. Here is a reference to the first subsection from \texttt{include1.tex} \ref{section11}. latex2rtf-2.3.18/test/graphs/0000777000175000017500000000000013664230753016174 5ustar wilfriedwilfriedlatex2rtf-2.3.18/test/graphs/fig_oval.png0000777000175000017500000000223713050672355020474 0ustar wilfriedwilfried‰PNG  IHDRÍSaçĹmPLTE˙˙˙ĽŮŸÝ pHYs.#.#xĽ?v?IDATxÚíÜ=’¤ `,73ŹŻą™WŮcl&Ss1ć&€‚Uąť•ż÷Pkşvću8í'ŻU݆ąęóÍ~í\ĺG%J”(Q˘D‰%J”(Q˘D‰%JC-ëQłĎâUĐgŽpʤj“=źUQľË<Ô>zşôťŠ âyür–Mçîöťó XúlgůpĆZ$U,řŠŻÍÂt>:ZU›™ź­o¤<ń…XţQó ]XŽ0ëp†]éAjSÎЀTe:ç3”'ő§,SűˆőÄeŞÂ›Ęfř†2››B8?}‘ÚäĚŹńŮŠŽbpJTfűťDT‰ňśpŤ+R›_߼U…ţÎbČSŃ $) ,¤b@Ńšs!ĺ#Šę.Ś %i#juMD výÁ#Ş{$cHŐ IĺR9 éÔF@ň¤Ó•”cWgÓx”aŠmŠžÖůȀśXęBjđ+RPtDĚsКʀ*.[ʜX"ńăôÄrPŕ:á"´b鍃ĽoĹO'\pWŹŐĺpYrĄ"ţE˜H9ž 9‘ƒqřĚO{aŞęD‚ěDZŸ Œ):ĺ5:ńe/ vbŮáL­můaÜě$ňøżgp4Ţ_šźGÎΜmżpŁÂ˘rľÉíĚÖŐşrp+(šŸ#1Cźœ?ŢťBm{ )Šb›Ţlłˆ(ÖM’žŮXđ8‰Ěv&bœr›¨Œ§us7Śöř†1>Ť˘î)[WIí&Ňhp™őžIGŐčD‰%J”(Q˘DżĽ˙|†Ą˙îđř'*˝rIENDŽB`‚latex2rtf-2.3.18/test/endnote.tex0000777000175000017500000000666713050672360017101 0ustar wilfriedwilfried\documentclass{article} \usepackage{endnotes} % LaTeX2RTF doesn't need this \begin{document} \title{Endnotes test} \author{Reuben Thomas} \maketitle Here is some text.\endnote{First endnote.} All endnotes should be at the end.\footnote{The endnotes should be at the end of the document.} Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Mauris imperdiet mi. Duis sollicitudin felis congue felis. Nullam non odio. Curabitur ipsum. In varius massa id lacus.\endnote{Second endnote} Sed nonummy fringilla eros. Etiam ligula wisi, pulvinar ac, mollis ut, porttitor non, nibh. Vivamus mauris eros, varius vitae, blandit non, ullamcorper at, nunc. Aenean et orci id metus bibendum pulvinar. Pellentesque ac sem. Vivamus volutpat, mi quis consectetuer dapibus, erat turpis semper diam, a aliquet ante neque elementum libero. Curabitur est odio, consectetuer nec, porttitor vitae, pretium sed, libero. Sed eget risus nec erat ornare semper. Sed odio. Nullam nibh dolor, consequat sit amet, vestibulum non, tincidunt eget, wisi. Aliquam erat volutpat. Vestibulum commodo. Duis lectus. Phasellus eget libero ac orci lacinia sagittis. Vivamus vitae eros. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos hymenaeos. Suspendisse sed metus. Morbi ut erat. Maecenas wisi ante, scelerisque et, aliquet ut, interdum et, purus. Sed cursus quam vitae arcu. Maecenas pulvinar dolor eu dolor. Suspendisse vel urna. Cras commodo iaculis quam. Vestibulum tempus rhoncus arcu. Nullam sed sapien vitae nibh tincidunt rhoncus. Phasellus nec velit nec urna hendrerit dictum. Suspendisse potenti. Etiam massa. Nullam tempus rutrum purus. Proin semper fringilla orci. Donec vel mi eget libero commodo vulputate. Sed enim nunc, cursus sit amet, vestibulum id, molestie rutrum, orci. Vestibulum purus. Sed vitae pede in dui tempor ornare. Fusce urna lacus, sodales ut, malesuada at, tincidunt malesuada, magna. Morbi nisl lorem, sagittis at, pharetra vitae, dignissim nec, quam. Proin sed enim. Praesent porta ipsum in pede. Aliquam id wisi id tortor volutpat hendrerit. Etiam eget odio vitae massa sollicitudin semper. Aliquam et mi. Nam ullamcorper lacinia velit. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut nec lorem pellentesque est lacinia egestas. Quisque ante ante, pharetra at, lacinia rhoncus, aliquam et, ante.\endnote{Third endnote} Nunc augue. Suspendisse potenti. Suspendisse posuere, elit ut malesuada porta, eros mi ornare erat, tempor interdum lacus eros a orci. Nullam urna arcu, facilisis eget, blandit eu, commodo nec, ipsum. Donec imperdiet orci sed nibh. Nunc egestas. Sed nibh purus, tincidunt consequat, placerat et, gravida at, metus. Pellentesque nisl. Nulla vitae tortor eu tortor elementum pulvinar. Morbi erat est, aliquam ut, interdum malesuada, rutrum vel, quam. Suspendisse potenti. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Donec mattis, felis sed gravida iaculis, turpis ante varius orci, sed congue ante nibh id lacus. Cras nec mi at justo scelerisque molestie. Integer eros lorem, sodales et, condimentum eu, ultrices nec, diam. Etiam nonummy, sem ac ultricies bibendum, purus arcu pulvinar neque, a imperdiet ante magna at est. Maecenas lacinia sollicitudin turpis. Phasellus ultrices lacus et erat. Donec ut odio in sem commodo semper \theendnotes \end{document} latex2rtf-2.3.18/test/enc_cp850.tex0000777000175000017500000001245313050672360017117 0ustar wilfriedwilfried\documentclass[10pt]{article} \usepackage[T1]{fontenc} \usepackage[cp850]{inputenc} \usepackage{times} \usepackage{textcomp} \begin{document} \begin{tabular}{ccrl} 80&€&199&LATIN CAPITAL LETTER C WITH CEDILLA\\ 81&&252&LATIN SMALL LETTER U WITH DIAERESIS\\ 82&‚&233&LATIN SMALL LETTER E WITH ACUTE\\ 83&ƒ&226&LATIN SMALL LETTER A WITH CIRCUMFLEX\\ 84&„&228&LATIN SMALL LETTER A WITH DIAERESIS\\ 85&…&224&LATIN SMALL LETTER A WITH GRAVE\\ 86&†&229&LATIN SMALL LETTER A WITH RING ABOVE\\ 87&‡&231&LATIN SMALL LETTER C WITH CEDILLA\\ 88&ˆ&234&LATIN SMALL LETTER E WITH CIRCUMFLEX\\ 89&‰&235&LATIN SMALL LETTER E WITH DIAERESIS\\ 8A&Š&232&LATIN SMALL LETTER E WITH GRAVE\\ 8B&‹&239&LATIN SMALL LETTER I WITH DIAERESIS\\ 8C&Œ&238&LATIN SMALL LETTER I WITH CIRCUMFLEX\\ 8D&&236&LATIN SMALL LETTER I WITH GRAVE\\ 8E&Ž&196&LATIN CAPITAL LETTER A WITH DIAERESIS\\ 8F&&197&LATIN CAPITAL LETTER A WITH RING ABOVE\\ 90&&201&LATIN CAPITAL LETTER E WITH ACUTE\\ 91&‘&230&LATIN SMALL LETTER AE\\ 92&’&198&LATIN CAPITAL LETTER AE\\ 93&“&244&LATIN SMALL LETTER O WITH CIRCUMFLEX\\ 94&”&246&LATIN SMALL LETTER O WITH DIAERESIS\\ 95&•&242&LATIN SMALL LETTER O WITH GRAVE\\ 96&–&251&LATIN SMALL LETTER U WITH CIRCUMFLEX\\ 97&—&249&LATIN SMALL LETTER U WITH GRAVE\\ 98&˜&255&LATIN SMALL LETTER Y WITH DIAERESIS\\ 99&™&214&LATIN CAPITAL LETTER O WITH DIAERESIS\\ 9A&š&220&LATIN CAPITAL LETTER U WITH DIAERESIS\\ 9B&›&248&LATIN SMALL LETTER O WITH STROKE\\ 9C&œ&163&POUND SIGN\\ 9D&&216&LATIN CAPITAL LETTER O WITH STROKE\\ 9E&$ž$&215&MULTIPLICATION SIGN\\ 9F& &57379&\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} A0& &225&LATIN SMALL LETTER A WITH ACUTE\\ A1&Ą&237&LATIN SMALL LETTER I WITH ACUTE\\ A2&˘&243&LATIN SMALL LETTER O WITH ACUTE\\ A3&Ł&250&LATIN SMALL LETTER U WITH ACUTE\\ A4&¤&241&LATIN SMALL LETTER N WITH TILDE\\ A5&Ľ&209&LATIN CAPITAL LETTER N WITH TILDE\\ A6&Ś&170&FEMININE ORDINAL INDICATOR\\ A7&§&186&MASCULINE ORDINAL INDICATOR\\ A8&¨&191&INVERTED QUESTION MARK\\ A9&$Š$&174®ISTERED SIGN\\ AA&$Ş$&172&NOT SIGN\\ AB&Ť&189&VULGAR FRACTION ONE HALF\\ AC&Ź&188&VULGAR FRACTION ONE QUARTER\\ AD&­&161&INVERTED EXCLAMATION MARK\\ AE&Ž&171&LEFT-POINTING DOUBLE ANGLE QUOTATION MARK\\ AF&Ż&187&RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK\\ B0& &9617&LIGHT SHADE\\ B1& &9618&MEDIUM SHADE\\ B2& &9619&DARK SHADE\\ B3& &9474&BOX DRAWINGS LIGHT VERTICAL\\ B4& &9508&BOX DRAWINGS LIGHT VERTICAL AND LEFT\\ B5&ľ&193&LATIN CAPITAL LETTER A WITH ACUTE\\ B6&ś&194&LATIN CAPITAL LETTER A WITH CIRCUMFLEX\\ B7&ˇ&192&LATIN CAPITAL LETTER A WITH GRAVE\\ B8&$¸$&169©RIGHT SIGN\\ B9& &9515&BOX DRAWINGS HEAVY VERTICAL AND LEFT\\ BA& &9475&BOX DRAWINGS HEAVY VERTICAL\\ BB& &9491&BOX DRAWINGS HEAVY DOWN AND LEFT\\ BC& &9499&BOX DRAWINGS HEAVY UP AND LEFT\\ BD&˝&162&CENT SIGN\\ BE&ž&165&YEN SIGN\\ BF& &9488&BOX DRAWINGS LIGHT DOWN AND LEFT\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} C0& &9492&BOX DRAWINGS LIGHT UP AND RIGHT\\ C1& &9524&BOX DRAWINGS LIGHT UP AND HORIZONTAL\\ C2& &9516&BOX DRAWINGS LIGHT DOWN AND HORIZONTAL\\ C3& &9500&BOX DRAWINGS LIGHT VERTICAL AND RIGHT\\ C4& &9472&BOX DRAWINGS LIGHT HORIZONTAL\\ C5& &9532&BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL\\ C6&Ć&227&LATIN SMALL LETTER A WITH TILDE\\ C7&Ç&195&LATIN CAPITAL LETTER A WITH TILDE\\ C8& &9495&BOX DRAWINGS HEAVY UP AND RIGHT\\ C9& &9487&BOX DRAWINGS HEAVY DOWN AND RIGHT\\ CA& &9531&BOX DRAWINGS HEAVY UP AND HORIZONTAL\\ CB& &9523&BOX DRAWINGS HEAVY DOWN AND HORIZONTAL\\ CC& &9507&BOX DRAWINGS HEAVY VERTICAL AND RIGHT\\ CD& &9473&BOX DRAWINGS HEAVY HORIZONTAL\\ CE& &9547&BOX DRAWINGS HEAVY VERTICAL AND HORIZONTAL\\ CF&Ď&164&CURRENCY SIGN\\ D0&Đ&240&LATIN SMALL LETTER ETH\\ D1&Ń&208&LATIN CAPITAL LETTER ETH\\ D2&Ň&202&LATIN CAPITAL LETTER E WITH CIRCUMFLEX\\ D3&Ó&203&LATIN CAPITAL LETTER E WITH DIAERESIS\\ D4&Ô&200&LATIN CAPITAL LETTER E WITH GRAVE\\ D5&Ő&305&LATIN SMALL LETTER DOTLESS I\\ D6&Ö&205&LATIN CAPITAL LETTER I WITH ACUTE\\ D7&×&206&LATIN CAPITAL LETTER I WITH CIRCUMFLEX\\ D8&Ř&207&LATIN CAPITAL LETTER I WITH DIAERESIS\\ D9& &9496&BOX DRAWINGS LIGHT UP AND LEFT\\ DA& &9484&BOX DRAWINGS LIGHT DOWN AND RIGHT\\ DB& &9608&FULL BLOCK\\ DC& &9604&LOWER HALF BLOCK\\ DD&Ý&166&BROKEN BAR\\ DE&Ţ&204&LATIN CAPITAL LETTER I WITH GRAVE\\ DF& &9600&UPPER HALF BLOCK\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} E0&ŕ&211&LATIN CAPITAL LETTER O WITH ACUTE\\ E1&á&223&LATIN SMALL LETTER SHARP S\\ E2&â&212&LATIN CAPITAL LETTER O WITH CIRCUMFLEX\\ E3&ă&210&LATIN CAPITAL LETTER O WITH GRAVE\\ E4&ä&245&LATIN SMALL LETTER O WITH TILDE\\ E5&ĺ&213&LATIN CAPITAL LETTER O WITH TILDE\\ E6&$ć$&956&GREEK SMALL LETTER MU\\ E7&ç&222&LATIN CAPITAL LETTER THORN\\ E8&č&254&LATIN SMALL LETTER THORN\\ E9&é&218&LATIN CAPITAL LETTER U WITH ACUTE\\ EA&ę&219&LATIN CAPITAL LETTER U WITH CIRCUMFLEX\\ EB&ë&217&LATIN CAPITAL LETTER U WITH GRAVE\\ EC&ě&253&LATIN SMALL LETTER Y WITH ACUTE\\ ED&í&221&LATIN CAPITAL LETTER Y WITH ACUTE\\ EE&î&8212&EM DASH\\ EF&ď&180&ACUTE ACCENT\\ F0&đ&173&SOFT HYPHEN\\ F1&$ń$&177&PLUS-MINUS SIGN\\ F2& &8660&LEFT RIGHT DOUBLE ARROW\\ F3&ó&190&VULGAR FRACTION THREE QUARTERS\\ F4&ô&182&PILCROW SIGN\\ F5&ő&167&SECTION SIGN\\ F6&$ö$&247&DIVISION SIGN\\ F7&÷&731&OGONEK\\ F8&ř&176&DEGREE SIGN\\ F9&ů&168&DIAERESIS\\ FA&ú&729&DOT ABOVE\\ FB&$ű$&185&SUPERSCRIPT ONE\\ FC&$ü$&179&SUPERSCRIPT THREE\\ FD&$ý$&178&SUPERSCRIPT TWO\\ FE&ţ&9632&BLACK SQUARE\\ FF&˙&160&NO-BREAK SPACE\\ \end{tabular} \end{document} latex2rtf-2.3.18/test/keywords.tex0000777000175000017500000000221113050672355017275 0ustar wilfriedwilfried\documentclass[a4paper,twoside]{article} \usepackage[T1]{fontenc} \usepackage[utf8x]{inputenc} \usepackage{srcltx} %% \usepackage{synctex} %% \usepackage{pdfsync} %% \usepackage{url} %% \usepackage{times} %% \usepackage{courier} %% \usepackage{helvet} %% \usepackage{amsmath,amssymb,amsfonts} %%\usepackage[printonlyused]{acronym} %%\usepackage{cite} %% \usepackage{graphicx} %% \usepackage{graphics} %% \graphicspath{{./}} %% \newcommand{\reffig}[1]{Figure~\ref{fig:#1}} %% \newcommand{\fig}[2]{ %% \begin{figure} %% \begin{center} %% \includegraphics[width=11cm]{#1} %% \caption{#2} %% \label{fig:#1} %% \end{center} %% \end{figure} %% } \title{Key word test} \author{Pedro A. Aranda GutiĂŠrrez} %% \setlength{\oddsidemargin}{1cm} %% \setlength{\evensidemargin}{1cm} %% \setlength{\textwidth}{14cm} %% \setlength{\parindent}{0pt} %% \setcounter{secnumdepth}{-1} \begin{document} %% \maketitle %% \begin{abstract} %% \end{abstract} \keywords{Key word,test} \section{Intro} This is a simple file to test key words as used by Elsevier and others. %% \bibliographystyle{unsrt} %%{abbrv} %% \bibliography{} \end{document} latex2rtf-2.3.18/test/german.rtf0000644000175000017500000002673213664476467016722 0ustar wilfriedwilfried{\rtf1\ansi\uc1\deff0\deflang1024 {\fonttbl{\f0\fnil\fcharset0 Times New Roman;} {\f1\fnil\fcharset0 Arial;} {\f2\fnil\fcharset0 Arial;} {\f3\fnil\fcharset0 Courier New;} {\f4\fnil\fcharset0 Zapf Chancery;} {\f5\fnil\fcharset0 STIXGeneral;} {\f6\fnil\fcharset0 MS Gothic;} } {\colortbl; \red0\green0\blue0; \red0\green0\blue255; \red0\green255\blue255; \red0\green255\blue0; \red255\green0\blue255; \red255\green0\blue0; \red255\green255\blue0; \red255\green255\blue255; } {\stylesheet {\s0\qj\widctlpar\f0\fs22 \snext0 Normal;} {\cs10 \additive\ssemihidden Default Paragraph Font;} {\s1\qc\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 Part;} {\s2\ql\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 heading 1;} {\s3\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 2;} {\s4\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 3;} {\s5\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 4;} {\s6\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 5;} {\s7\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 6;} {\s8\qr\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext8 rightpar;} {\s9\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext9 centerpar;} {\s10\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext10 leftpar;} {\s11\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equation;} {\s12\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationNum;} {\s13\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlign;} {\s14\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlignNum;} {\s15\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArray;} {\s16\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArrayNum;} {\s17\ql\sb120\sa120\keep\widctlpar\f0\fs20 \sbasedon0\snext0 theorem;} {\s18\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 bitmapCenter;} {\s20\qc\sb240\sa240\b\f0\fs36 \sbasedon0\snext21 Title;} {\s21\qc\sa120\f0\fs22 \sbasedon0\snext0 author;} {\s22\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext22 footer;} {\s23\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext23 header;} {\s30\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 caption;} {\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext0 Figure;} {\s32\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext32 Table;} {\s33\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext33 Tabular;} {\s34\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext34 Tabbing;} {\s35\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext35 Quote;} {\s38\ql\widctlpar\f3\fs22 \snext38 verbatim;} {\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext46 List;} {\s47\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext47 List 1;} {\s50\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 latex picture;} {\s51\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 subfigure;} {\s61\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext62 bibheading;} {\s62\ql\fi-567\li567\sb0\sa0\f0\fs20 \sbasedon0\snext62 bibitem;} {\s64\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext64 endnotes;} {\s65\ql\fi-113\li397\lin397\f0\fs22 \sbasedon0\snext65 footnote text;} {\s66\qj\fi-170\li454\lin454\f0\fs22 \sbasedon0\snext66 endnote text;} {\cs62\super \additive\sbasedon10 footnote reference;} {\cs63\super \additive\sbasedon10 endnote reference;} {\s67\ql\sb60\sa60\keepn\f0\fs22 \sbasedon0\snext67 acronym;} {\s70\qc\sa120\b\f0\fs22 \sbasedon0\snext71 abstract title;} {\s71\qj\li1024\ri1024\fi340\widctlpar\f0\fs22 \sbasedon0\snext0 abstract;} {\s80\ql\sb240\sa120\keepn\f0\b\fs20 \sbasedon0\snext0 contents_heading;} {\s81\ql\li425\tqr\tldot\tx8222\sb240\sa60\keepn\f0\fs22\b \sbasedon0\snext82 toc 1;} {\s82\ql\li512\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs22 \sbasedon0\snext83 toc 2;} {\s83\ql\li1024\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs22 \sbasedon0\snext84 toc 3;} {\s84\ql\li1536\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs22 \sbasedon0\snext85 toc 4;} {\s85\ql\li2048\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs22 \sbasedon0\snext86 toc 5;} {\s86\ql\li2560\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs22 \sbasedon0\snext86 toc 6;} } {\info {\title Original file was german.tex} {\doccomm Created using latex2rtf 2.3.18 r1266 (released May 29, 2020) on Sat May 30 17:35:19 2020 } } {\footer\pard\plain\f0\fs22\qc\chpgn\par} \paperw12280\paperh15900\margl2680\margr2700\margt2540\margb1760\pgnstart0\widowctrl\qj\ftnbj\f0\aftnnar {\pard\plain\s20\qc\sb240\sa240\b\f0\fs36\sl240\slmult1 \fi0 Test-Dokument f\'fcr {\'84}german.sty\ldblquote \par \pard\plain\s21\qc\sa120\f0\fs22\sl240\slmult1 \fi340 Wilfried Hennings\par \pard\plain\s21\qc\sa120\f0\fs22\sl240\slmult1 \fi340 2001-09-10\par \pard\plain\s80\ql\sb240\sa120\keepn\f0\b\fs22\sl240\slmult1 \fi0 Inhaltsverzeichnis\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi0 \par {\field{\*\fldinst TOC \\o "1-3" }{\fldrslt }} \page \pard\plain\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \sb60 \fi0 Kapitel 1\par \pard\plain\s2\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \sb240 \fi0 Einleitung\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb240 \fi0 Dies ist ein nicht besonders intelligenter Text zum Testen von Dokumenten, die die Besonderheiten des Pakets {\'84}german.sty\ldblquote verwenden.\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 Das Paket muss mit folgender Syntax in der Preambel des Dokuments eingebunden werden:\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi0 {\b0\i0\scaps0\f3 \\usepackage\{german\}}\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi0 f\'fcr die {\'84}alte\ldblquote Rechtschreibung oder \par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi0 {\b0\i0\scaps0\f3 \\usepackage\{ngerman\}}\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi0 f\'fcr die {\'84}neue\ldblquote Rechtschreibung \par \page \pard\plain\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \fi0 Kapitel 2\par \pard\plain\s2\ql\sb240\sa120\keepn\f0\b\fs40\sl240\slmult1 \sb240 \fi0 Die Besonderheiten deutscher Texte\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb480 \fi0 2.1 Umlaute\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \fi0 Wichtig in deutschen Texten sind vor allem die Umlaute.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 2.1.1 Umlaute ohne das Paket {\'84}german.sty\ldblquote \par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \fi0 Ohne das Paket {\'84}german.sty\ldblquote m\'fcssen Umlaute so kodiert werden, wie in Tabelle\~{\field{\*\fldinst{\lang1024 REF BMT1 \\* MERGEFORMAT }}{\fldrslt{?}}} auf Seite {\field{\*\fldinst{\lang1024 PAGEREF BMT1 \\* MERGEFORMAT }}{\fldrslt{T1}}} dargestellt. {\par \pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs22\sl240\slmult1 \sb240 \fi0 \'c4 = {\b0\i0\scaps0\f3 \\"A}\par \pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs22\sl240\slmult1 \fi0 \'d6 = {\b0\i0\scaps0\f3 \\"O}\par \pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs22\sl240\slmult1 \fi0 \'dc = {\b0\i0\scaps0\f3 \\"U}\par \pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs22\sl240\slmult1 \fi0 \'e4 = {\b0\i0\scaps0\f3 \\"a}\par \pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs22\sl240\slmult1 \fi0 \'f6 = {\b0\i0\scaps0\f3 \\"o}\par \pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs22\sl240\slmult1 \fi0 \'fc = {\b0\i0\scaps0\f3 \\"u}\par \pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs22\sl240\slmult1 \fi0 \'df{} = {\b0\i0\scaps0\f3 \\ss\{\}} \par \pard\plain\s30\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 {Tabelle {\*\bkmkstart BMT1}2.1{\*\bkmkend BMT1}: Tabelle der Umlaute in Standard-LaTeX}{\field{\*\fldinst TC "2.1 Tabelle der Umlaute in Standard-LaTeX" \\f t}{\fldrslt }}\par }\pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb360 \fi0 2.1.2 Umlaute mit dem Paket {\'84}german.sty\ldblquote \par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \fi0 Mit dem Paket {\'84}german.sty\ldblquote k\'f6nnen Umlaute auch so kodiert werden, wie in Tabelle\~{\field{\*\fldinst{\lang1024 REF BMT2 \\* MERGEFORMAT }}{\fldrslt{?}}} auf Seite {\field{\*\fldinst{\lang1024 PAGEREF BMT2 \\* MERGEFORMAT }}{\fldrslt{T2}}} dargestellt. {\par \pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs22\sl240\slmult1 \sb240 \fi0 \'c4 = {\b0\i0\scaps0\f3 "A}\par \pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs22\sl240\slmult1 \fi0 \'d6 = {\b0\i0\scaps0\f3 "O}\par \pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs22\sl240\slmult1 \fi0 \'dc = {\b0\i0\scaps0\f3 "U}\par \pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs22\sl240\slmult1 \fi0 \'e4 = {\b0\i0\scaps0\f3 "a}\par \pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs22\sl240\slmult1 \fi0 \'f6 = {\b0\i0\scaps0\f3 "o}\par \pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs22\sl240\slmult1 \fi0 \'fc = {\b0\i0\scaps0\f3 "u}\par \pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs22\sl240\slmult1 \fi0 \'df = {\b0\i0\scaps0\f3 "s}\par \pard\plain\s32\qc\sb120\sa0\keep\widctlpar\f0\fs22\sl240\slmult1 \fi0 \par \pard\plain\s30\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 {Tabelle {\*\bkmkstart BMT2}2.2{\*\bkmkend BMT2}: Tabelle der Umlaute mit dem Paket {\'84}german.sty\ldblquote }{\field{\*\fldinst TC "2.2 Tabelle der Umlaute mit dem Paket {\'84}german.sty\ldblquote " \\f t}{\fldrslt }}\par }\pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb480 \fi0 2.2 Beschriftungen\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \fi0 Eine weitere Anpassung ist f\'fcr Beschriftungen der Elemente eines Dokuments erforderlich. \par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \fi340 Zum Beispiel soll aus dem englischen {\'84}page\ldblquote das deutsche {\'84}Seite\ldblquote werden, aus dem englischen {\'84}bibliography\ldblquote das deutsche {\'84}Literatur\ldblquote . Um dies zu testen, sind in diesem Dokument verschiedene \'dcberschriften, eine Abbildung (Abbildung\~{\field{\*\fldinst{\lang1024 REF BMA1 \\* MERGEFORMAT }}{\fldrslt{?}}} auf Seite {\field{\*\fldinst{\lang1024 PAGEREF BMA1 \\* MERGEFORMAT }}{\fldrslt{A1}}}), zwei Tabellen (Tabelle\~{\field{\*\fldinst{\lang1024 REF BMT1 \\* MERGEFORMAT }}{\fldrslt{?}}} auf Seite {\field{\*\fldinst{\lang1024 PAGEREF BMT1 \\* MERGEFORMAT }}{\fldrslt{T1}}} und Tabelle\~{\field{\*\fldinst{\lang1024 REF BMT2 \\* MERGEFORMAT }}{\fldrslt{?}}} auf Seite {\field{\*\fldinst{\lang1024 PAGEREF BMT2 \\* MERGEFORMAT }}{\fldrslt{T2}}}) sowie eine Bibliographie eingef\'fcgt. Einige Beispiele sind der {\'84}LaTeX2e-Kurzbeschreibung\ldblquote [{\field{\*\fldinst{\lang1024 REF BIB_l2kurz \\* MERGEFORMAT }}{\fldrslt{l2kurz}}} ] entnommen.\par {\pard\plain\s31\qc\sb120\sa0\keep\widctlpar\f0\fs22\sl240\slmult1 \sb240 \fi340 \par \pard\plain\s30\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 {Abbildung {\*\bkmkstart BMA1}2.1{\*\bkmkend BMA1}: Landschaft im Nebel}{\field{\*\fldinst TC "2.1 Landschaft im Nebel" \\f f}{\fldrslt }}\par }\pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb480 \fi0 2.3 Anf\'fchrungszeichen\par \pard\plain\s0\qj\widctlpar\f0\fs22\sl240\slmult1 \sb60 \fi0 Schlie\'dflich sehen in deutschen Texten die Anf\'fchrungszeichen anders aus. W\'e4hrend im Englischen die doppelten Anf\'fchrungszeichen \ldblquote so\rdblquote aussehen, sollen sie im Deutschen {\'84}so\ldblquote aussehen. \par {\pard\plain\s61\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 {\plain\b\fs32 Literaturverzeichnis}\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \sb60 \li450\fi0 [{\v\*\bkmkstart BIB_l2kurz}{\*\bkmkend BIB_l2kurz}]\tab Walter Schmidt, J\'f6rg Knappen, Hubert Partl, Irene Hyna:\par \pard\plain\s62\ql\fi-567\li567\sb0\sa0\f0\fs20\sl240\slmult1 \li450\fi0 {\i LaTeX2e-Kurzbeschreibung}\par }}} }}}latex2rtf-2.3.18/test/dblspace.lof0000644000175000017500000000053413664476467017203 0ustar wilfriedwilfried\addvspace {10\p@ } \contentsline {figure}{\numberline {1.1}{\ignorespaces This is figure 1}}{3} \contentsline {figure}{\numberline {1.2}{\ignorespaces This is figure 2}}{5} \addvspace {10\p@ } \contentsline {figure}{\numberline {2.1}{\ignorespaces This is figure 3}}{6} \contentsline {figure}{\numberline {2.2}{\ignorespaces This is figure 4}}{7} latex2rtf-2.3.18/test/bibentry_apalike.tex0000777000175000017500000000116513050672360020735 0ustar wilfriedwilfried\documentclass[12pt,a4paper]{article} \usepackage[T1]{fontenc} \usepackage{natbib,bibentry} \begin{document} \bibliographystyle{apalike} \nobibliography{bibentry_apalike} \noindent Input: \begin{verbatim} \documentclass{article} \usepackage{natbib,bibentry} \begin{document} \bibliographystyle{apalike} \nobibliography{bibentry_apalike} \begin{itemize} \item \bibentry{zysk-conj}. \item \bibentry{ping-cata}. \end{itemize} \end{document} \end{verbatim} \noindent Output, after running \LaTeX\ and Bib\TeX: \begin{itemize} \item \bibentry{zysk-conj}. \item \bibentry{ping-cata}. \end{itemize} \end{document} latex2rtf-2.3.18/test/Makefile0000777000175000017500000002456613050672355016365 0ustar wilfriedwilfried# # Initial version 28 May 2001 Scott Prahl # LATEX= latex -interaction=nonstopmode BIBTEX= bibtex LATEX2RTF= ../latex2rtf OPTIONS = -Z3 -P ../cfg/:../scripts/ -T tmp/ MKDIR?=mkdir -p RMDIR?=rm -rf RM?=rm -f MV?=mv LATEX_LOG = > latex.log #LATEX_LOG = RTF= align.rtf array.rtf box.rtf ch.rtf \ chem.rtf color.rtf dblspace.rtf defs.rtf \ endnote.rtf essential.rtf fancy.rtf \ fonts.rtf fontsize.rtf fonttest.rtf geometry.rtf \ geotest.rtf german.rtf head_article.rtf head_book.rtf \ list.rtf ifclause.rtf include.rtf linux.rtf \ logo.rtf misc1.rtf misc3.rtf misc4.rtf \ percent.rtf report.rtf hyperref.rtf longstack.rtf \ head_report.rtf keywords.rtf BIB_TESTS= bib_apacite.rtf bib_harvard.rtf bib_super.rtf \ bib_apacite_dblsp.rtf bib_natbib1.rtf bib_apalike.rtf \ bib_natbib2.rtf bibentry_apalike.rtf bib_apalike2.rtf \ bib_natbib3.rtf bib_apanat.rtf bibentry_plain.rtf \ bib_authordate.rtf bib_simple.rtf bib_apa.rtf \ bib_apacite2.rtf bib_apacite3.rtf bib_natbib4.rtf \ bib_style.rtf FIG_TESTS= fig_endfloat.rtf fig_test.rtf fig_test3.rtf \ fig_size.rtf fig_test2.rtf fig_test4.rtf \ picture.rtf fig_subfig.rtf fig_png.rtf \ graphicspath.rtf tikz.rtf tikz2.rtf ENC_TESTS= enc_applemac.rtf enc_cp437.rtf enc_cp865.rtf enc_latin2.rtf enc_latin5.rtf \ enc_cp1250.rtf enc_cp850.rtf enc_decmulti.rtf enc_latin3.rtf enc_latin9.rtf\ enc_cp1252.rtf enc_cp852.rtf enc_latin1.rtf enc_latin4.rtf enc_next.rtf\ enc_cp1251.rtf enc_cp855.rtf enc_cp866.rtf enc_koi8-r.rtf enc_koi8-u.rtf \ enc_maccyr.rtf eqns-koi8.rtf enc_utf8x.rtf enc_ot2.rtf enc_moroz_koi8.rtf \ enc_moroz_utf8.rtf enc_moroz_ot2.rtf BABEL_TESTS=babel_german.rtf babel_russian.rtf babel_czech.rtf babel_french.rtf \ babel_frenchb.rtf # babel_spanish.rtf EQN_TESTS= eqns.rtf eqns2.rtf eqns-koi8.rtf ttgfsr7.rtf spago1.rtf misc2.rtf\ frac.rtf subsup.rtf theorem.rtf eqnnumber.rtf eqnnumber2.rtf CHAR_TESTS= accentchars.rtf oddchars.rtf overstrike.rtf ucsymbols.rtf greek.rtf cyrillic.rtf \ direct.rtf TABLE_TESTS= tabbing.rtf tabular.rtf table_array1.rtf table_array2.rtf EXTRA_TESTS= excalibur.rtf acronym.rtf qualisex.rtf basic: $(MAKE) basic_tests bib: $(MAKE) bib_tests fig: -$(MKDIR) tmp $(MAKE) fig_tests enc: $(MAKE) enc_tests eqn: $(MAKE) eqn_tests babel: $(MAKE) babel_tests char: $(MAKE) char_tests table: -$(MKDIR) tmp $(MAKE) table_tests extra: $(MAKE) extra_tests all: -$(MKDIR) tmp $(MAKE) basic_tests $(MAKE) babel_tests $(MAKE) bib_tests $(MAKE) eqn_tests $(MAKE) fig_tests $(MAKE) enc_tests $(MAKE) char_tests $(MAKE) table_tests $(MAKE) extra_tests basic_tests: $(RTF) bib_tests: $(BIB_TESTS) fig_tests: $(FIG_TESTS) enc_tests: $(ENC_TESTS) babel_tests: $(BABEL_TESTS) eqn_tests: $(EQN_TESTS) char_tests: $(CHAR_TESTS) table_tests: $(TABLE_TESTS) extra_tests: $(EXTRA_TESTS) #these tests require that some non-standard latex style be installed %.rtf: %.tex $(LATEX2RTF) $(OPTIONS) $< keywords.rtf: keywords.tex acronym.rtf: acronym acronym: $(LATEX) acronym $(LATEX_LOG) $(BIBTEX) acronym $(LATEX_LOG) $(LATEX) acronym $(LATEX_LOG) $(LATEX) acronym $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) acronym babel_czech.rtf: babel_czech.tex $(LATEX) babel_czech $(LATEX_LOG) $(LATEX) babel_czech $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) babel_czech babel_french.rtf: babel_french.tex $(LATEX) babel_french $(LATEX_LOG) $(LATEX) babel_french $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) babel_french babel_frenchb.rtf: babel_frenchb.tex $(LATEX) babel_frenchb $(LATEX_LOG) $(LATEX) babel_frenchb $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) babel_frenchb babel_german.rtf: babel_german.tex $(LATEX) babel_german $(LATEX_LOG) $(LATEX) babel_german $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) babel_german babel_russian.rtf: babel_russian.tex $(LATEX) babel_russian $(LATEX_LOG) $(LATEX) babel_russian $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) babel_russian babel_spanish.rtf: babel_spanish.tex $(LATEX) babel_spanish $(LATEX_LOG) $(LATEX) babel_spanish $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) babel_spanish bib_simple.rtf: bib_simple.tex bib_simple.bib $(LATEX) bib_simple $(LATEX_LOG) $(BIBTEX) bib_simple > bibtex.log $(LATEX) bib_simple $(LATEX_LOG) $(LATEX) bib_simple $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) bib_simple bib_apalike.rtf: bib_apalike.tex $(LATEX) bib_apalike $(LATEX_LOG) $(LATEX) bib_apalike $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) bib_apalike bib_apa.rtf: bib_apa.tex $(LATEX) bib_apa $(LATEX_LOG) $(BIBTEX) bib_apa > bibtex.log $(LATEX) bib_apa $(LATEX_LOG) $(LATEX) bib_apa $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) bib_apa bib_apacite.rtf: bib_apacite.tex $(LATEX) bib_apacite $(LATEX_LOG) $(LATEX) bib_apacite $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) bib_apacite bib_apacite2.rtf: bib_apacite2.tex bib_apacite2.bib $(LATEX) bib_apacite2 $(LATEX_LOG) $(BIBTEX) bib_apacite2 > bibtex.log $(LATEX) bib_apacite2 $(LATEX_LOG) $(LATEX) bib_apacite2 $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) bib_apacite2 bib_apacite3.rtf: bib_apacite3.tex bib_apacite3.bib $(LATEX) bib_apacite3 $(LATEX_LOG) $(BIBTEX) bib_apacite3 > bibtex.log $(LATEX) bib_apacite3 $(LATEX_LOG) $(LATEX) bib_apacite3 $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) bib_apacite3 bib_apacite_dblsp.rtf: bib_apacite_dblsp.tex $(LATEX) bib_apacite_dblsp $(LATEX_LOG) $(LATEX) bib_apacite_dblsp $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) bib_apacite_dblsp bib_apalike2.rtf: bib_apalike2.tex $(LATEX) bib_apalike2 $(LATEX_LOG) $(LATEX) bib_apalike2 $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) bib_apalike2 bib_natbib1.rtf: bib_natbib1.tex $(LATEX) bib_natbib1 $(LATEX_LOG) $(LATEX) bib_natbib1 $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) bib_natbib1 bib_natbib2.rtf: bib_natbib2.tex $(LATEX) bib_natbib2 $(LATEX_LOG) $(LATEX) bib_natbib2 $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) bib_natbib2 bib_natbib3.rtf: bib_natbib3.tex $(LATEX) bib_natbib3 $(LATEX_LOG) $(LATEX) bib_natbib3 $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) bib_natbib3 bib_natbib4.rtf: bib_natbib4.tex $(LATEX) bib_natbib4 $(LATEX_LOG) $(LATEX) bib_natbib4 $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) bib_natbib4 bib_style.rtf: bib_style.tex $(LATEX) bib_style $(LATEX_LOG) $(LATEX) bib_style $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) bib_style bib_apanat.rtf: bib_apanat.tex $(LATEX) bib_apanat $(LATEX_LOG) $(LATEX) bib_apanat $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) bib_apanat bib_authordate.rtf: bib_authordate.tex $(LATEX) bib_authordate $(LATEX_LOG) $(LATEX) bib_authordate $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) bib_authordate bib_harvard.rtf: bib_harvard.tex bib_harvard.bib $(LATEX) bib_harvard $(LATEX_LOG) $(BIBTEX) bib_harvard > bibtex.log $(LATEX) bib_harvard $(LATEX_LOG) $(LATEX) bib_harvard $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) bib_harvard $(RM) bib_harvard.out bibentry_plain.rtf: bibentry_plain.tex bibentry_plain.bib $(LATEX) bibentry_plain $(LATEX_LOG) $(BIBTEX) bibentry_plain > bibtex.log $(LATEX) bibentry_plain $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) bibentry_plain bibentry_apalike.rtf: bibentry_apalike.tex bibentry_apalike.bib $(LATEX) bibentry_apalike $(LATEX_LOG) $(BIBTEX) bibentry_apalike > bibtex.log $(LATEX) bibentry_apalike $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) bibentry_apalike bib_super.rtf: bib_super.tex $(LATEX) bib_super $(LATEX_LOG) $(BIBTEX) bib_super > bibtex.log $(LATEX) bib_super $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) bib_super misc2.rtf: misc2.tex $(LATEX) misc2 $(LATEX_LOG) $(LATEX) misc2 $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) misc2 misc4.rtf: misc4.tex $(LATEX) misc4 $(LATEX_LOG) $(LATEX) misc4 $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) misc4 ttgfsr7.rtf: ttgfsr7.tex $(LATEX) ttgfsr7 $(LATEX_LOG) $(LATEX) ttgfsr7 $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) ttgfsr7 fig_test.rtf: fig_test.tex fig_test.eps fig_testc.ps $(LATEX) fig_test $(LATEX_LOG) $(LATEX) fig_test $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) -F fig_test fig_test2.rtf: fig_test2.tex fig_testb.pdf fig_testc.pdf $(LATEX2RTF) $(OPTIONS) -D 300 fig_test2 $(MV) fig_test2.rtf fig_test2a.rtf $(LATEX2RTF) $(OPTIONS) fig_test2 fig_test3.rtf: fig_test3.tex fig_testd.ps fig_testd.pdf $(LATEX2RTF) $(OPTIONS) fig_test3 fig_png.rtf: fig_png.tex fig_10x15.png $(LATEX2RTF) $(OPTIONS) fig_png linux.rtf: linux.tex $(LATEX) linux $(LATEX_LOG) $(LATEX) linux $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) linux eqnnumber.rtf: eqnnumber.tex $(LATEX) eqnnumber $(LATEX_LOG) $(LATEX) eqnnumber $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) eqnnumber eqnnumber2.rtf: eqnnumber2.tex $(LATEX) eqnnumber2 $(LATEX_LOG) $(LATEX) eqnnumber2 $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) eqnnumber2 fig_endfloat.rtf: fig_endfloat.tex $(LATEX) fig_endfloat $(LATEX_LOG) $(LATEX) fig_endfloat $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) fig_endfloat include.rtf: include.tex include1.tex include2.tex include3.tex $(LATEX) include $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) include report.rtf: report.tex $(LATEX) report $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) report excalibur.rtf: excalibur.tex $(LATEX) excalibur $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) excalibur dblspace.rtf: dblspace.tex $(LATEX) dblspace $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) dblspace eqns.rtf: eqns.tex $(LATEX) eqns $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) eqns essential.rtf: essential.tex $(LATEX) essential $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) essential qualisex.rtf: qualisex.tex $(LATEX) qualisex $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) qualisex hyperref.rtf: hyperref.tex $(LATEX) hyperref $(LATEX_LOG) $(LATEX2RTF) $(OPTIONS) hyperref tabular.rtf: tabular.tex $(LATEX2RTF) $(OPTIONS) -t3 tabular tabbing.rtf: tabbing.tex $(LATEX2RTF) $(OPTIONS) -t3 tabbing table_array1.rtf: table_array1.tex $(LATEX2RTF) $(OPTIONS) -t3 table_array1 direct.rtf: direct.tex $(LATEX2RTF) $(OPTIONS) direct check: ./bracecheck clean: -$(MV) fig_testb.pdf fig_testb.tmp -$(MV) fig_testc.pdf fig_testc.tmp -$(MV) fig_testd.pdf fig_testd.tmp -$(MV) fig_teste.pdf fig_teste.tmp -$(RM) *.dvi *.rtf *.aux *.blg *.bbl *.log *.pdf *.toc *.lot *.idx *.ilg *.ind -$(RM) l2r*tex frlicense.dat *.fff *.lof -$(MV) fig_testb.tmp fig_testb.pdf -$(MV) fig_testc.tmp fig_testc.pdf -$(MV) fig_testd.tmp fig_testd.pdf -$(MV) fig_teste.tmp fig_teste.pdf -$(RMDIR) tmp .PHONY: clean all check latex2rtf-2.3.18/test/hyperref.log0000644000175000017500000002256213664476470017252 0ustar wilfriedwilfriedThis is pdfTeX, Version 3.14159265-2.6-1.40.18 (TeX Live 2017/Debian) (preloaded format=latex 2019.1.18) 30 MAY 2020 17:35 entering extended mode restricted \write18 enabled. %&-line parsing enabled. **hyperref (./hyperref.tex LaTeX2e <2017-04-15> Babel <3.18> and hyphenation patterns for 8 language(s) loaded. (/usr/share/texlive/texmf-dist/tex/latex/base/article.cls Document Class: article 2014/09/29 v1.4h Standard LaTeX document class (/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo File: size10.clo 2014/09/29 v1.4h Standard LaTeX file (size option) ) \c@part=\count79 \c@section=\count80 \c@subsection=\count81 \c@subsubsection=\count82 \c@paragraph=\count83 \c@subparagraph=\count84 \c@figure=\count85 \c@table=\count86 \abovecaptionskip=\skip41 \belowcaptionskip=\skip42 \bibindent=\dimen102 ) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty Package: hyperref 2018/02/06 v6.86b Hypertext links for LaTeX (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty Package: hobsub-hyperref 2016/05/16 v1.14 Bundle oberdiek, subset hyperref (HO) (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/hobsub-generic.sty Package: hobsub-generic 2016/05/16 v1.14 Bundle oberdiek, subset generic (HO) Package: hobsub 2016/05/16 v1.14 Construct package bundles (HO) Package: infwarerr 2016/05/16 v1.4 Providing info/warning/error messages (HO) Package: ltxcmds 2016/05/16 v1.23 LaTeX kernel commands for general use (HO) Package: ifluatex 2016/05/16 v1.4 Provides the ifluatex switch (HO) Package ifluatex Info: LuaTeX not detected. Package: ifvtex 2016/05/16 v1.6 Detect VTeX and its facilities (HO) Package ifvtex Info: VTeX not detected. Package: intcalc 2016/05/16 v1.2 Expandable calculations with integers (HO) Package: ifpdf 2017/03/15 v3.2 Provides the ifpdf switch Package: etexcmds 2016/05/16 v1.6 Avoid name clashes with e-TeX commands (HO) Package etexcmds Info: Could not find \expanded. (etexcmds) That can mean that you are not using pdfTeX 1.50 or (etexcmds) that some package has redefined \expanded. (etexcmds) In the latter case, load this package earlier. Package: kvsetkeys 2016/05/16 v1.17 Key value parser (HO) Package: kvdefinekeys 2016/05/16 v1.4 Define keys (HO) Package: pdftexcmds 2018/01/21 v0.26 Utility functions of pdfTeX for LuaTeX (HO ) Package pdftexcmds Info: LuaTeX not detected. Package pdftexcmds Info: \pdf@primitive is available. Package pdftexcmds Info: \pdf@ifprimitive is available. Package pdftexcmds Info: \pdfdraftmode is ignored in DVI mode. Package: pdfescape 2016/05/16 v1.14 Implements pdfTeX's escape features (HO) Package: bigintcalc 2016/05/16 v1.4 Expandable calculations on big integers (HO ) Package: bitset 2016/05/16 v1.2 Handle bit-vector datatype (HO) Package: uniquecounter 2016/05/16 v1.3 Provide unlimited unique counter (HO) ) Package hobsub Info: Skipping package `hobsub' (already loaded). Package: letltxmacro 2016/05/16 v1.5 Let assignment for LaTeX macros (HO) Package: hopatch 2016/05/16 v1.3 Wrapper for package hooks (HO) Package: xcolor-patch 2016/05/16 xcolor patch Package: atveryend 2016/05/16 v1.9 Hooks at the very end of document (HO) Package atveryend Info: \enddocument detected (standard20110627). Package: atbegshi 2016/06/09 v1.18 At begin shipout hook (HO) Package: refcount 2016/05/16 v3.5 Data extraction from label references (HO) Package: hycolor 2016/05/16 v1.8 Color options for hyperref/bookmark (HO) ) (/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty Package: keyval 2014/10/28 v1.15 key=value parser (DPC) \KV@toks@=\toks14 ) (/usr/share/texlive/texmf-dist/tex/generic/ifxetex/ifxetex.sty Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional ) (/usr/share/texlive/texmf-dist/tex/latex/oberdiek/auxhook.sty Package: auxhook 2016/05/16 v1.4 Hooks for auxiliary files (HO) ) (/usr/share/texlive/texmf-dist/tex/latex/oberdiek/kvoptions.sty Package: kvoptions 2016/05/16 v3.12 Key value format for package options (HO) ) \@linkdim=\dimen103 \Hy@linkcounter=\count87 \Hy@pagecounter=\count88 (/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def File: pd1enc.def 2018/02/06 v6.86b Hyperref: PDFDocEncoding definition (HO) ) \Hy@SavedSpaceFactor=\count89 (/usr/share/texlive/texmf-dist/tex/latex/latexconfig/hyperref.cfg File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive ) Package hyperref Info: Hyper figures OFF on input line 4509. Package hyperref Info: Link nesting OFF on input line 4514. Package hyperref Info: Hyper index ON on input line 4517. Package hyperref Info: Plain pages OFF on input line 4524. Package hyperref Info: Backreferencing OFF on input line 4529. Package hyperref Info: Implicit mode ON; LaTeX internals redefined. Package hyperref Info: Bookmarks ON on input line 4762. \c@Hy@tempcnt=\count90 (/usr/share/texlive/texmf-dist/tex/latex/url/url.sty \Urlmuskip=\muskip10 Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc. ) LaTeX Info: Redefining \url on input line 5115. \XeTeXLinkMargin=\dimen104 \Fld@menulength=\count91 \Field@Width=\dimen105 \Fld@charsize=\dimen106 Package hyperref Info: Hyper figures OFF on input line 6369. Package hyperref Info: Link nesting OFF on input line 6374. Package hyperref Info: Hyper index ON on input line 6377. Package hyperref Info: backreferencing OFF on input line 6384. Package hyperref Info: Link coloring OFF on input line 6389. Package hyperref Info: Link coloring with OCG OFF on input line 6394. Package hyperref Info: PDF/A mode OFF on input line 6399. LaTeX Info: Redefining \ref on input line 6439. LaTeX Info: Redefining \pageref on input line 6443. \Hy@abspage=\count92 \c@Item=\count93 \c@Hfootnote=\count94 ) Package hyperref Info: Driver (default): hdvips. (/usr/share/texlive/texmf-dist/tex/latex/hyperref/hdvips.def File: hdvips.def 2018/02/06 v6.86b Hyperref driver for dvips (/usr/share/texlive/texmf-dist/tex/latex/hyperref/pdfmark.def File: pdfmark.def 2018/02/06 v6.86b Hyperref definitions for pdfmark specials \pdf@docset=\toks15 \pdf@box=\box26 \pdf@toks=\toks16 \pdf@defaulttoks=\toks17 \HyField@AnnotCount=\count95 \Fld@listcount=\count96 \c@bookmark@seq@number=\count97 (/usr/share/texlive/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty Package: rerunfilecheck 2016/05/16 v1.8 Rerun checks for auxiliary files (HO) Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2 82. ) \Hy@SectionHShift=\skip43 )) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty Package: nameref 2016/05/21 v2.44 Cross-referencing by name of section (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/gettitlestring.sty Package: gettitlestring 2016/05/16 v1.5 Cleanup title references (HO) ) \c@section@level=\count98 ) No file hyperref.aux. \openout1 = `hyperref.aux'. LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 6. LaTeX Font Info: ... okay on input line 6. LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 6. LaTeX Font Info: ... okay on input line 6. LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 6. LaTeX Font Info: ... okay on input line 6. LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 6. LaTeX Font Info: ... okay on input line 6. LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 6. LaTeX Font Info: ... okay on input line 6. LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 6. LaTeX Font Info: ... okay on input line 6. LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 6. LaTeX Font Info: ... okay on input line 6. \AtBeginShipoutBox=\box27 Package hyperref Info: Link coloring OFF on input line 6. LaTeX Info: Redefining \ref on input line 6. LaTeX Info: Redefining \pageref on input line 6. LaTeX Info: Redefining \nameref on input line 6. (./hyperref.out) (./hyperref.out) \@outlinefile=\write3 \openout3 = `hyperref.out'. Package hyperref Warning: Rerun to get /PageLabels entry. LaTeX Warning: Reference `randomlabel' on page 1 undefined on input line 32. LaTeX Warning: Reference `randomlabel' on page 1 undefined on input line 32. LaTeX Font Info: External font `cmex10' loaded for size (Font) <7> on input line 37. LaTeX Font Info: External font `cmex10' loaded for size (Font) <5> on input line 37. Overfull \hbox (7.359pt too wide) in paragraph at lines 41--44 []\OT1/cmr/m/n/10 Now this link [][][][] does [] Package atveryend Info: Empty hook `BeforeClearDocument' on input line 55. [1 ] Package atveryend Info: Empty hook `AfterLastShipout' on input line 55. (./hyperref.aux) Package atveryend Info: Empty hook `AtVeryEndDocument' on input line 55. Package atveryend Info: Executing hook `AtEndAfterFileList' on input line 55. Package rerunfilecheck Info: File `hyperref.out' has not changed. (rerunfilecheck) Checksum: 1137B6B3F8DE63997103A91F90270C49;208. LaTeX Warning: There were undefined references. LaTeX Warning: Label(s) may have changed. Rerun to get cross-references right. Package atveryend Info: Empty hook `AtVeryVeryEnd' on input line 55. ) Here is how much of TeX's memory you used: 4275 strings out of 494872 64210 string characters out of 6178408 145531 words of memory out of 5000000 7638 multiletter control sequences out of 15000+600000 5326 words of font info for 20 fonts, out of 8000000 for 9000 14 hyphenation exceptions out of 8191 29i,4n,28p,177b,319s stack positions out of 5000i,500n,10000p,200000b,80000s Output written on hyperref.dvi (1 page, 5580 bytes). latex2rtf-2.3.18/test/enc_latin4.tex0000777000175000017500000001163313050672360017452 0ustar wilfriedwilfried\documentclass[10pt]{article} \usepackage[T1]{fontenc} \usepackage[latin4]{inputenc} \usepackage{times} \usepackage{textcomp} \begin{document} \begin{tabular}{ccrl} 80& &128&\\ 81& &129&\\ 82& &130&\\ 83& &131&\\ 84& &132&\\ 85& &133&\\ 86& &134&\\ 87& &135&\\ 88& &136&\\ 89& &137&\\ 8A& &138&\\ 8B& &139&\\ 8C& &140&\\ 8D& &141&\\ 8E& &142&\\ 8F& &143&\\ 90& &144&\\ 91& &145&\\ 92& &146&\\ 93& &147&\\ 94& &148&\\ 95& &149&\\ 96& &150&\\ 97& &151&\\ 98& &152&\\ 99& &153&\\ 9A& &154&\\ 9B& &155&\\ 9C& &156&\\ 9D& &157&\\ 9E& &158&\\ 9F& &159&\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} A0& &160&NO-BREAK SPACE\\ A1&Ą&260&LATIN CAPITAL LETTER A WITH OGONEK\\ A2&˘&312&LATIN SMALL LETTER KRA\\ A3&Ł&342&LATIN CAPITAL LETTER R WITH CEDILLA\\ A4&¤&164&CURRENCY SIGN\\ A5&Ľ&296&LATIN CAPITAL LETTER I WITH TILDE\\ A6&Ś&315&LATIN CAPITAL LETTER L WITH CEDILLA\\ A7&§&167&SECTION SIGN\\ A8&¨&168&DIAERESIS\\ A9&Š&352&LATIN CAPITAL LETTER S WITH CARON\\ AA&Ş&274&LATIN CAPITAL LETTER E WITH MACRON\\ AB&Ť&290&LATIN CAPITAL LETTER G WITH CEDILLA\\ AC&Ź&358&LATIN CAPITAL LETTER T WITH STROKE\\ AD&­&173&SOFT HYPHEN\\ AE&Ž&381&LATIN CAPITAL LETTER Z WITH CARON\\ AF&Ż&175&MACRON\\ B0&$°$&176&DEGREE SIGN\\ B1&ą&261&LATIN SMALL LETTER A WITH OGONEK\\ B2&˛&731&OGONEK\\ B3&ł&343&LATIN SMALL LETTER R WITH CEDILLA\\ B4&´&180&ACUTE ACCENT\\ B5&ľ&297&LATIN SMALL LETTER I WITH TILDE\\ B6&ś&316&LATIN SMALL LETTER L WITH CEDILLA\\ B7&ˇ&711&CARON\\ B8&¸&184&CEDILLA\\ B9&š&353&LATIN SMALL LETTER S WITH CARON\\ BA&ş&275&LATIN SMALL LETTER E WITH MACRON\\ BB&ť&291&LATIN SMALL LETTER G WITH CEDILLA\\ BC&ź&359&LATIN SMALL LETTER T WITH STROKE\\ BD&˝&330&LATIN CAPITAL LETTER ENG\\ BE&ž&382&LATIN SMALL LETTER Z WITH CARON\\ BF&ż&331&LATIN SMALL LETTER ENG\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} C0&Ŕ&256&LATIN CAPITAL LETTER A WITH MACRON\\ C1&Á&193&LATIN CAPITAL LETTER A WITH ACUTE\\ C2&Â&194&LATIN CAPITAL LETTER A WITH CIRCUMFLEX\\ C3&Ă&195&LATIN CAPITAL LETTER A WITH TILDE\\ C4&Ä&196&LATIN CAPITAL LETTER A WITH DIAERESIS\\ C5&Ĺ&197&LATIN CAPITAL LETTER A WITH RING ABOVE\\ C6&Ć&198&LATIN CAPITAL LETTER AE\\ C7&Ç&302&LATIN CAPITAL LETTER I WITH OGONEK\\ C8&Č&268&LATIN CAPITAL LETTER C WITH CARON\\ C9&É&201&LATIN CAPITAL LETTER E WITH ACUTE\\ CA&Ę&280&LATIN CAPITAL LETTER E WITH OGONEK\\ CB&Ë&203&LATIN CAPITAL LETTER E WITH DIAERESIS\\ CC&Ě&278&LATIN CAPITAL LETTER E WITH DOT ABOVE\\ CD&Í&205&LATIN CAPITAL LETTER I WITH ACUTE\\ CE&Î&206&LATIN CAPITAL LETTER I WITH CIRCUMFLEX\\ CF&Ď&298&LATIN CAPITAL LETTER I WITH MACRON\\ D0&Đ&272&LATIN CAPITAL LETTER D WITH STROKE\\ D1&Ń&325&LATIN CAPITAL LETTER N WITH CEDILLA\\ D2&Ň&332&LATIN CAPITAL LETTER O WITH MACRON\\ D3&Ó&310&LATIN CAPITAL LETTER K WITH CEDILLA\\ D4&Ô&212&LATIN CAPITAL LETTER O WITH CIRCUMFLEX\\ D5&Ő&213&LATIN CAPITAL LETTER O WITH TILDE\\ D6&Ö&214&LATIN CAPITAL LETTER O WITH DIAERESIS\\ D7&$×$&215&MULTIPLICATION SIGN\\ D8&Ř&216&LATIN CAPITAL LETTER O WITH STROKE\\ D9&Ů&370&LATIN CAPITAL LETTER U WITH OGONEK\\ DA&Ú&218&LATIN CAPITAL LETTER U WITH ACUTE\\ DB&Ű&219&LATIN CAPITAL LETTER U WITH CIRCUMFLEX\\ DC&Ü&220&LATIN CAPITAL LETTER U WITH DIAERESIS\\ DD&Ý&360&LATIN CAPITAL LETTER U WITH TILDE\\ DE&Ţ&362&LATIN CAPITAL LETTER U WITH MACRON\\ DF&ß&223&LATIN SMALL LETTER SHARP S\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} E0&ŕ&257&LATIN SMALL LETTER A WITH MACRON\\ E1&á&225&LATIN SMALL LETTER A WITH ACUTE\\ E2&â&226&LATIN SMALL LETTER A WITH CIRCUMFLEX\\ E3&ă&227&LATIN SMALL LETTER A WITH TILDE\\ E4&ä&228&LATIN SMALL LETTER A WITH DIAERESIS\\ E5&ĺ&229&LATIN SMALL LETTER A WITH RING ABOVE\\ E6&ć&230&LATIN SMALL LETTER AE\\ E7&ç&303&LATIN SMALL LETTER I WITH OGONEK\\ E8&č&269&LATIN SMALL LETTER C WITH CARON\\ E9&é&233&LATIN SMALL LETTER E WITH ACUTE\\ EA&ę&281&LATIN SMALL LETTER E WITH OGONEK\\ EB&ë&235&LATIN SMALL LETTER E WITH DIAERESIS\\ EC&ě&279&LATIN SMALL LETTER E WITH DOT ABOVE\\ ED&í&237&LATIN SMALL LETTER I WITH ACUTE\\ EE&î&238&LATIN SMALL LETTER I WITH CIRCUMFLEX\\ EF&ď&299&LATIN SMALL LETTER I WITH MACRON\\ F0&đ&273&LATIN SMALL LETTER D WITH STROKE\\ F1&ń&326&LATIN SMALL LETTER N WITH CEDILLA\\ F2&ň&333&LATIN SMALL LETTER O WITH MACRON\\ F3&ó&311&LATIN SMALL LETTER K WITH CEDILLA\\ F4&ô&244&LATIN SMALL LETTER O WITH CIRCUMFLEX\\ F5&ő&245&LATIN SMALL LETTER O WITH TILDE\\ F6&ö&246&LATIN SMALL LETTER O WITH DIAERESIS\\ F7&$÷$&247&DIVISION SIGN\\ F8&ř&248&LATIN SMALL LETTER O WITH STROKE\\ F9&ů&371&LATIN SMALL LETTER U WITH OGONEK\\ FA&ú&250&LATIN SMALL LETTER U WITH ACUTE\\ FB&ű&251&LATIN SMALL LETTER U WITH CIRCUMFLEX\\ FC&ü&252&LATIN SMALL LETTER U WITH DIAERESIS\\ FD&ý&361&LATIN SMALL LETTER U WITH TILDE\\ FE&ţ&363&LATIN SMALL LETTER U WITH MACRON\\ FF&˙&729&DOT ABOVE\\ \end{tabular} \end{document} latex2rtf-2.3.18/test/eqnnumber.tex0000777000175000017500000000076313050672360017430 0ustar wilfriedwilfried\documentclass[11pt]{report} \begin{document} \chapter{Introduction} \section{one} Here are equations~\ref{eqn:one} and \ref{eqn:two}: \begin{equation} \label{eqn:one}y = 3x+2 \end{equation} \begin{equation} \label{eqn:two}y = 5x-2 \end{equation} \chapter{Discussion} \section{two} Here are equations~\ref{eqn:three} and \ref{eqn:four}: \subsection{two point one} \begin{equation} \label{eqn:three}y = 3x+2 \end{equation} \begin{equation} \label{eqn:four}y = 5x-2 \end{equation} \end{document} latex2rtf-2.3.18/test/enc_next.tex0000777000175000017500000001203613050672360017233 0ustar wilfriedwilfried\documentclass[10pt]{article} \usepackage[T1]{fontenc} \usepackage[next]{inputenc} \usepackage{times} \usepackage{textcomp} \begin{document} \begin{tabular}{ccrl} 80&€&160&NO-BREAK SPACE\\ 81&&192&LATIN CAPITAL LETTER A WITH GRAVE\\ 82&‚&193&LATIN CAPITAL LETTER A WITH ACUTE\\ 83&ƒ&194&LATIN CAPITAL LETTER A WITH CIRCUMFLEX\\ 84&„&195&LATIN CAPITAL LETTER A WITH TILDE\\ 85&…&196&LATIN CAPITAL LETTER A WITH DIAERESIS\\ 86&†&197&LATIN CAPITAL LETTER A WITH RING ABOVE\\ 87&‡&199&LATIN CAPITAL LETTER C WITH CEDILLA\\ 88&ˆ&200&LATIN CAPITAL LETTER E WITH GRAVE\\ 89&‰&201&LATIN CAPITAL LETTER E WITH ACUTE\\ 8A&Š&202&LATIN CAPITAL LETTER E WITH CIRCUMFLEX\\ 8B&‹&203&LATIN CAPITAL LETTER E WITH DIAERESIS\\ 8C&Œ&204&LATIN CAPITAL LETTER I WITH GRAVE\\ 8D&&205&LATIN CAPITAL LETTER I WITH ACUTE\\ 8E&Ž&206&LATIN CAPITAL LETTER I WITH CIRCUMFLEX\\ 8F&&207&LATIN CAPITAL LETTER I WITH DIAERESIS\\ 90&&208&LATIN CAPITAL LETTER ETH\\ 91&‘&209&LATIN CAPITAL LETTER N WITH TILDE\\ 92&’&210&LATIN CAPITAL LETTER O WITH GRAVE\\ 93&“&211&LATIN CAPITAL LETTER O WITH ACUTE\\ 94&”&212&LATIN CAPITAL LETTER O WITH CIRCUMFLEX\\ 95&•&213&LATIN CAPITAL LETTER O WITH TILDE\\ 96&–&214&LATIN CAPITAL LETTER O WITH DIAERESIS\\ 97&—&217&LATIN CAPITAL LETTER U WITH GRAVE\\ 98&˜&218&LATIN CAPITAL LETTER U WITH ACUTE\\ 99&™&219&LATIN CAPITAL LETTER U WITH CIRCUMFLEX\\ 9A&š&220&LATIN CAPITAL LETTER U WITH DIAERESIS\\ 9B&›&221&LATIN CAPITAL LETTER Y WITH ACUTE\\ 9C&œ&222&LATIN CAPITAL LETTER THORN\\ 9D&$$&181&MICRO SIGN\\ 9E&$ž$&215&MULTIPLICATION SIGN\\ 9F&$Ÿ$&247&DIVISION SIGN\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} A0&$ $&169©RIGHT SIGN\\ A1&Ą&161&INVERTED EXCLAMATION MARK\\ A2&˘&162&CENT SIGN\\ A3&Ł&163&POUND SIGN\\ A4&$¤$&8260&FRACTION SLASH\\ A5&Ľ&165&YEN SIGN\\ A6&Ś&402&LATIN SMALL LETTER F WITH HOOK\\ A7&§&167&SECTION SIGN\\ A8&¨&164&CURRENCY SIGN\\ A9&Š&8217&RIGHT SINGLE QUOTATION MARK\\ AA&Ş&8220&LEFT DOUBLE QUOTATION MARK\\ AB&Ť&171&LEFT-POINTING DOUBLE ANGLE QUOTATION MARK\\ AC&Ź&8249&SINGLE LEFT-POINTING ANGLE QUOTATION MARK\\ AD&­&8250&SINGLE RIGHT-POINTING ANGLE QUOTATION MARK\\ AE&Ž&64257&LATIN SMALL LIGATURE FI\\ AF&Ż&64258&LATIN SMALL LIGATURE FL\\ B0&°&174®ISTERED SIGN\\ B1&ą&8211&EN DASH\\ B2&˛&8224&DAGGER\\ B3&ł&8225&DOUBLE DAGGER\\ B4&´&183&MIDDLE DOT\\ B5&ľ&166&BROKEN BAR\\ B6&ś&182&PILCROW SIGN\\ B7&ˇ&8226&BULLET\\ B8&¸&8218&SINGLE LOW-9 QUOTATION MARK\\ B9&š&8222&DOUBLE LOW-9 QUOTATION MARK\\ BA&ş&8221&RIGHT DOUBLE QUOTATION MARK\\ BB&ť&187&RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK\\ BC&$ź$&8230&HORIZONTAL ELLIPSIS\\ BD&˝&8240&PER MILLE SIGN\\ BE&$ž$&172&NOT SIGN\\ BF&ż&191&INVERTED QUESTION MARK\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} C0&$Ŕ$&185&SUPERSCRIPT ONE\\ C1&Á&715&MODIFIER LETTER GRAVE ACCENT\\ C2&Â&180&ACUTE ACCENT\\ C3&Ă&710&MODIFIER LETTER CIRCUMFLEX ACCENT\\ C4&Ä&732&SMALL TILDE\\ C5&Ĺ&175&MACRON\\ C6&Ć&728&BREVE\\ C7&Ç&729&DOT ABOVE\\ C8&Č&168&DIAERESIS\\ C9&$É$&178&SUPERSCRIPT TWO\\ CA&Ę&730&RING ABOVE\\ CB&Ë&184&CEDILLA\\ CC&$Ě$&179&SUPERSCRIPT THREE\\ CD&Í&733&DOUBLE ACUTE ACCENT\\ CE&Î&731&OGONEK\\ CF&Ď&711&CARON\\ D0&Đ&8212&EM DASH\\ D1&$Ń$&177&PLUS-MINUS SIGN\\ D2&Ň&188&VULGAR FRACTION ONE QUARTER\\ D3&Ó&189&VULGAR FRACTION ONE HALF\\ D4&Ô&190&VULGAR FRACTION THREE QUARTERS\\ D5&Ő&224&LATIN SMALL LETTER A WITH GRAVE\\ D6&Ö&225&LATIN SMALL LETTER A WITH ACUTE\\ D7&×&226&LATIN SMALL LETTER A WITH CIRCUMFLEX\\ D8&Ř&227&LATIN SMALL LETTER A WITH TILDE\\ D9&Ů&228&LATIN SMALL LETTER A WITH DIAERESIS\\ DA&Ú&229&LATIN SMALL LETTER A WITH RING ABOVE\\ DB&Ű&231&LATIN SMALL LETTER C WITH CEDILLA\\ DC&Ü&232&LATIN SMALL LETTER E WITH GRAVE\\ DD&Ý&233&LATIN SMALL LETTER E WITH ACUTE\\ DE&Ţ&234&LATIN SMALL LETTER E WITH CIRCUMFLEX\\ DF&ß&235&LATIN SMALL LETTER E WITH DIAERESIS\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} E0&ŕ&236&LATIN SMALL LETTER I WITH GRAVE\\ E1&á&198&LATIN CAPITAL LETTER AE\\ E2&â&237&LATIN SMALL LETTER I WITH ACUTE\\ E3&ă&170&FEMININE ORDINAL INDICATOR\\ E4&ä&238&LATIN SMALL LETTER I WITH CIRCUMFLEX\\ E5&ĺ&239&LATIN SMALL LETTER I WITH DIAERESIS\\ E6& &240&LATIN SMALL LETTER ETH\\ E7&ç&241&LATIN SMALL LETTER N WITH TILDE\\ E8&č&321&LATIN CAPITAL LETTER L WITH STROKE\\ E9&é&216&LATIN CAPITAL LETTER O WITH STROKE\\ EA&ę&338&LATIN CAPITAL LIGATURE OE\\ EB&ë&186&MASCULINE ORDINAL INDICATOR\\ EC&ě&242&LATIN SMALL LETTER O WITH GRAVE\\ ED&í&243&LATIN SMALL LETTER O WITH ACUTE\\ EE&î&244&LATIN SMALL LETTER O WITH CIRCUMFLEX\\ EF&ď&245&LATIN SMALL LETTER O WITH TILDE\\ F0&đ&246&LATIN SMALL LETTER O WITH DIAERESIS\\ F1&ń&230&LATIN SMALL LETTER AE\\ F2&ň&249&LATIN SMALL LETTER U WITH GRAVE\\ F3&ó&250&LATIN SMALL LETTER U WITH ACUTE\\ F4&ô&251&LATIN SMALL LETTER U WITH CIRCUMFLEX\\ F5&ő&305&LATIN SMALL LETTER DOTLESS I\\ F6&ö&252&LATIN SMALL LETTER U WITH DIAERESIS\\ F7&÷&253&LATIN SMALL LETTER Y WITH ACUTE\\ F8&ř&322&LATIN SMALL LETTER L WITH STROKE\\ F9&ů&248&LATIN SMALL LETTER O WITH STROKE\\ FA&ú&339&LATIN SMALL LIGATURE OE\\ FB&ű&223&LATIN SMALL LETTER SHARP S\\ FC&ü&254&LATIN SMALL LETTER THORN\\ FD&ý&255&LATIN SMALL LETTER Y WITH DIAERESIS\\ FE& &65535&unknown\\ FF& &65535&unknown\\ \end{tabular} \end{document} latex2rtf-2.3.18/test/overstrike.tex0000777000175000017500000001651013050672355017632 0ustar wilfriedwilfried\documentclass{article} \parindent=0pt \begin{document} \section{Macron accent chars} Conversion to equation editor fails. This is sad. An empty macron \verb!\={}! or maybe \verb!$\bar{}$! \textbf{Lowercase} First is an \={a}, an \={x}, and an \={c}. For math here are $\bar{a}$ and an $\bar{x}$ and an $\bar{c}$ and $\bar{\alpha}$. $$a_2=\bar{a}$$ $$x_2=\bar{x}$$ $$c_2=\bar{c}$$ $$o_2=\bar{\alpha}$$ \textbf{Uppercase} First is an \={A} and an \={X} and an \={O}. For math here are $\bar{A}$ and an $\bar{X}$ and an $\bar{O}$ and $\bar{\Gamma}$. $$A_2=\bar{A}$$ $$X_2=\bar{X}$$ $$C_2=\bar{O}$$ $$O_2=\bar{\Gamma}$$ \section{Dot chars} \textbf{Lowercase} First is an \.{a} and an \.{x} and an \.{o}. For math here are $\dot{a}$ and an $\dot{x}$ and an $\dot{o}$ and $\dot{\alpha}$. $$a_2=\dot{a}$$ $$x_2=\dot{x}$$ $$o_2=\dot{o}$$ $$o_2=\dot{\alpha}$$ \textbf{Uppercase} First is an \.{A} and an \.{X} and an \.{O}. For math here are $\dot{A}$ and an $\dot{X}$ and an $\dot{O}$ and $\dot{\Gamma}$. $$A_2=\dot{A}$$ $$X_2=\dot{X}$$ $$O_2=\dot{O}$$ $$O_2=\dot{\Gamma}$$ A dot above or below looks like this:\\ \begin{tabular} {p{2in} p{2in}} a \.{a} \.{A} \d{a} \d{A} & b \.{b} \.{B} \d{b} \d{B} \\ c \.{c} \.{C} \d{c} \d{C} & d \.{d} \.{D} \d{d} \d{D} \\ e \.{e} \.{E} \d{e} \d{E} & f \.{f} \.{F} \d{f} \d{F} \\ g \.{g} \.{G} \d{g} \d{G} & h \.{h} \.{H} \d{h} \d{H} \\ i \.{i} \.{I} \d{i} \d{I} & j \.{j} \.{J} \d{j} \d{J} \\ k \.{k} \.{K} \d{k} \d{K} & l \.{l} \.{L} \d{l} \d{L} \\ m \.{m} \.{M} \d{m} \d{M} & n \.{n} \.{N} \d{n} \d{N} \\ o \.{o} \.{O} \d{o} \d{O} & p \.{p} \.{P} \d{p} \d{P} \\ q \.{q} \.{Q} \d{q} \d{Q} & r \.{r} \.{R} \d{r} \d{R} \\ s \.{s} \.{S} \d{s} \d{S} & t \.{t} \.{T} \d{t} \d{T} \\ u \.{u} \.{U} \d{u} \d{U} & v \.{v} \.{V} \d{v} \d{V} \\ w \.{w} \.{W} \d{w} \d{W} & x \.{x} \.{X} \d{x} \d{X} \\ y \.{y} \.{Y} \d{y} \d{Y} & z \.{z} \.{Z} \d{z} \d{Z} \end{tabular} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \section{Hat chars} How about \^{} or $\hat{}$? \textbf{Lowercase} First is an \^{a} and an \^{x} and an \^{j}. For math here are $\hat{a}$ and an $\hat{x}$ and an $\hat{j}$ and an $\hat{i}$. $$a_2=\hat{a}$$ $$x_2=\hat{x}$$ $$j_2=\hat{j}$$ \textbf{Uppercase} First is an \^{A} and an \^{X} and an \^{J}. For math here are $\hat{A}$ and an $\hat{X}$ and an $\hat{J}$. $$A_2=\hat{A}$$ $$X_2=\hat{X}$$ $$O_2=\hat{J}$$ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \section{Tilde chars} An empty tilde \~{} or maybe $\tilde{}$ \textbf{Lowercase} First is an \~{a} and an \~{x} and an \~{n}. For math here are $\tilde{a}$ and an $\tilde{x}$ and an $\tilde{n}$ and $\tilde{\alpha}$. $$a_2=\tilde{a}$$ $$x_2=\tilde{x}$$ $$o_2=\tilde{o}$$ $$o_2=\tilde{\alpha}$$ \textbf{Uppercase} First is an \~{A} and an \~{X} and an \~{N}. For math here are $\tilde{A}$ and an $\tilde{X}$ and an $\tilde{N}$ and $\tilde{\Gamma}$. $$A_2=\tilde{A}$$ $$X_2=\tilde{X}$$ $$O_2=\tilde{N}$$ $$O_2=\tilde{\Gamma}$$ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \section{Acute accent chars} An empty acute accent \'{} or maybe $\acute{}$ \textbf{Lowercase} First is an \'{a} and an \'{x} and an \'{c}. For math here are $\acute{a}$ and an $\acute{x}$ and an $\acute{c}$ and $\acute{\alpha}$. $$a_2=\acute{a}$$ $$x_2=\acute{x}$$ $$c_2=\acute{c}$$ $$o_2=\acute{\alpha}$$ \textbf{Uppercase} First is an \'{A} and an \'{X} and an \'{C}. For math here are $\acute{A}$ and an $\acute{X}$ and an $\acute{C}$ and $\acute{\Gamma}$. $$A_2=\acute{A}$$ $$X_2=\acute{X}$$ $$C_2=\acute{C}$$ $$O_2=\acute{\Gamma}$$ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \section{Double Acute accent chars} An empty double acute accent \H{}. \textbf{Lowercase} First is an \H{a} and an \H{x} and an \H{o}. \textbf{Uppercase} First is an \H{A} and an \H{X} and an \H{O}. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \section{Double Dot chars} An empty umlaute \"{} or maybe $\ddot{}$ \textbf{Lowercase} Conversions in Word to equation editor are known to fail. First is an \"{a} and an \"{x} and an \"{o}. For math here are $\ddot{a}$ and an $\ddot{x}$ and an $\ddot{o}$ and $\ddot{\alpha}$. $$a_2=\ddot{a}$$ $$x_2=\ddot{x}$$ $$c_2=\ddot{o}$$ $$o_2=\ddot{\alpha}$$ \textbf{Uppercase} First is an \"{A} and an \"{X} and an \"{O}. For math here are $\ddot{A}$ and an $\ddot{X}$ and an $\ddot{O}$ and $\ddot{\Gamma}$. $$A_2=\ddot{A}$$ $$X_2=\ddot{X}$$ $$C_2=\ddot{O}$$ $$O_2=\ddot{\Gamma}$$ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \section{Grave accent chars} An empty grave accent \`{} or maybe $\grave{}$ \textbf{Lowercase} First is an \`{a} and an \`{x} and an \`{c}. For math here are $\grave{a}$ and an $\grave{x}$ and an $\grave{c}$ and $\grave{\alpha}$. $$a_2=\grave{a}$$ $$x_2=\grave{x}$$ $$c_2=\grave{c}$$ $$o_2=\grave{\alpha}$$ \textbf{Uppercase} First is an \`{A} and an \`{X} and an \`{C}. For math here are $\grave{A}$ and an $\grave{X}$ and an $\grave{C}$ and $\grave{\Gamma}$. $$A_2=\grave{A}$$ $$X_2=\grave{X}$$ $$C_2=\grave{C}$$ $$O_2=\grave{\Gamma}$$ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \section{Macron accent chars} Conversion to equation editor fails. An empty macron \={} or maybe $\bar{}$ \textbf{Lowercase} First is an \={a} and an \={x} and an \={c}. For math here are $\bar{a}$ and an $\bar{x}$ and an $\bar{c}$ and $\bar{\alpha}$. $$a_2=\bar{a}$$ $$x_2=\bar{x}$$ $$c_2=\bar{c}$$ $$o_2=\bar{\alpha}$$ \textbf{Uppercase} First is an \={A} and an \={X} and an \={O}. For math here are $\bar{A}$ and an $\bar{X}$ and an $\bar{O}$ and $\bar{\Gamma}$. $$A_2=\bar{A}$$ $$X_2=\bar{X}$$ $$C_2=\bar{O}$$ $$O_2=\bar{\Gamma}$$ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \section{Breve accent chars} Conversion to equation editor fails. An empty tilde \u{} or maybe $\breve{}$ \textbf{Lowercase} First is an \u{a} and an \u{x} and an \u{c}. For math here are $\breve{a}$ and an $\breve{x}$ and an $\breve{c}$ and $\breve{\alpha}$. $$a_2=\breve{a}$$ $$x_2=\breve{x}$$ $$c_2=\breve{c}$$ $$o_2=\breve{\alpha}$$ \textbf{Uppercase} First is an \u{A} and an \u{X} and an \u{O}. For math here are $\breve{A}$ and an $\breve{X}$ and an $\breve{O}$ and $\breve{\Gamma}$. $$A_2=\breve{A}$$ $$X_2=\breve{X}$$ $$C_2=\breve{O}$$ $$O_2=\breve{\Gamma}$$ \section{Ring chars} \textbf{Lowercase} First is an \r{a} and an \r{x} and an \r{o}. \textbf{Uppercase} First is an \r{A} and an \r{X} and an \r{O}. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \section{Cedilla chars} \textbf{Lowercase} First is an \c{c} and an \c{x} and an \c{r} \textbf{Uppercase} First is an \c{C} and an \c{X} and an \c{R} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \section{Caron chars} How about \v{} or $\check{}$? \textbf{Lowercase} First is an \v{a} and an \v{x} and an \v{j}. For math here are $\check{a}$ and an $\check{x}$ and an $\check{j}$ and an $\check{i}$. $$a_2=\check{a}$$ $$x_2=\check{x}$$ $$j_2=\check{j}$$ \textbf{Uppercase} First is an \v{A} and an \v{X} and an \v{J}. For math here are $\check{A}$ and an $\check{X}$ and an $\check{J}$. $$A_2=\check{A}$$ $$X_2=\check{X}$$ $$O_2=\check{J}$$ \end{document} latex2rtf-2.3.18/test/fig_test.eps0000777000175000017500000000106113050672360017217 0ustar wilfriedwilfried%!PS-Adobe-3.0 EPSF-3.0 %%BoundingBox: 29 25 249 178 gsave /helvetica findfont 10 scalefont setfont /ps{(PostScript ) show} def /rad {ps ps ps ps ps} def gsave 30 30 translate 1 .7 scale newpath 110 110 100 0 360 arc gsave stroke grestore clip 1 1.43 scale 45 rotate -70 70 moveto {10 -10 rmoveto gsave rad grestore currentpoint pop 100 ge{exit}if} loop grestore /Times-Roman findfont 150 scalefont setfont .7 setgray /tex {(T) show -35 -35 rmoveto (E) show -35 35 rmoveto (X) show} def 30 60 moveto 0 setgray tex 27 63 moveto .7 setgray tex grestore showpage latex2rtf-2.3.18/test/fig_png.tex0000777000175000017500000001103613050672357017046 0ustar wilfriedwilfried\documentclass{article} \usepackage{graphicx} \begin{document} \noindent Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse iaculis augue vitae nulla sollicitudin blandit. Donec commodo sapien non est adipiscing eget ultrices leo euismod. Fusce suscipit feugiat diam sit amet dignissim. Pellentesque sed augue risus. Proin id risus lacus. Vestibulum vel lectus felis. Etiam non mi turpis, eget bibendum tortor. Proin sit amet enim arcu, at fermentum sem. Nulla eu nisl lectus, sed malesuada ligula. Suspendisse potenti. Etiam id odio leo, ac euismod est. In imperdiet, nisi quis placerat egestas, nisi nunc sodales diam, eget molestie diam lectus ac dui. \begin{figure} \includegraphics[scale=0.5]{fig_10x15.png} \caption{Figure at native resolution and 50\% size, should by 5 cm high and 7.5 cm wide.} \label{figure1} \end{figure} \noindent Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse iaculis augue vitae nulla sollicitudin blandit. Donec commodo sapien non est adipiscing eget ultrices leo euismod. Fusce suscipit feugiat diam sit amet dignissim. Pellentesque sed augue risus. Proin id risus lacus. Vestibulum vel lectus felis. Etiam non mi turpis, eget bibendum tortor. Proin sit amet enim arcu, at fermentum sem. Nulla eu nisl lectus, sed malesuada ligula. Suspendisse potenti. Etiam id odio leo, ac euismod est. In imperdiet, nisi quis placerat egestas, nisi nunc sodales diam, eget molestie diam lectus ac dui. \begin{figure} \includegraphics[width=5cm]{fig_10x15.png} \caption{This figure scaled proportionally to be 5\,cm wide.} \label{figure2} \end{figure} \noindent Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse iaculis augue vitae nulla sollicitudin blandit. Donec commodo sapien non est adipiscing eget ultrices leo euismod. Fusce suscipit feugiat diam sit amet dignissim. Pellentesque sed augue risus. Proin id risus lacus. Vestibulum vel lectus felis. Etiam non mi turpis, eget bibendum tortor. Proin sit amet enim arcu, at fermentum sem. Nulla eu nisl lectus, sed malesuada ligula. Suspendisse potenti. Etiam id odio leo, ac euismod est. In imperdiet, nisi quis placerat egestas, nisi nunc sodales diam, eget molestie diam lectus ac dui. \begin{figure} \includegraphics[height=5cm]{fig_10x15.png} \caption{This figure scaled proportionally to be 5\,cm high.} \label{figure3} \end{figure} \noindent Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse iaculis augue vitae nulla sollicitudin blandit. Donec commodo sapien non est adipiscing eget ultrices leo euismod. Fusce suscipit feugiat diam sit amet dignissim. Pellentesque sed augue risus. Proin id risus lacus. Vestibulum vel lectus felis. Etiam non mi turpis, eget bibendum tortor. Proin sit amet enim arcu, at fermentum sem. Nulla eu nisl lectus, sed malesuada ligula. Suspendisse potenti. Etiam id odio leo, ac euismod est. In imperdiet, nisi quis placerat egestas, nisi nunc sodales diam, eget molestie diam lectus ac dui. \begin{figure} \includegraphics[height=5cm, width=5cm]{fig_10x15.png} \caption{This figure scaled to be 5$\times$5\,cm .} \label{figure4} \end{figure} \noindent Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse iaculis augue vitae nulla sollicitudin blandit. Donec commodo sapien non est adipiscing eget ultrices leo euismod. Fusce suscipit feugiat diam sit amet dignissim. Pellentesque sed augue risus. Proin id risus lacus. Vestibulum vel lectus felis. Etiam non mi turpis, eget bibendum tortor. Proin sit amet enim arcu, at fermentum sem. Nulla eu nisl lectus, sed malesuada ligula. Suspendisse potenti. Etiam id odio leo, ac euismod est. In imperdiet, nisi quis placerat egestas, nisi nunc sodales diam, eget molestie diam lectus ac dui. \begin{figure} \includegraphics[width=0.3\textwidth]{fig_10x15.png} \includegraphics[width=0.3\textwidth]{fig_10x15.png} \includegraphics[width=0.3\textwidth]{fig_10x15.png} \caption{Three figures, each 30\% of the textwidth.} \label{figure5} \end{figure} \noindent Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse iaculis augue vitae nulla sollicitudin blandit. Donec commodo sapien non est adipiscing eget ultrices leo euismod. Fusce suscipit feugiat diam sit amet dignissim. Pellentesque sed augue risus. Proin id risus lacus. Vestibulum vel lectus felis. Etiam non mi turpis, eget bibendum tortor. Proin sit amet enim arcu, at fermentum sem. Nulla eu nisl lectus, sed malesuada ligula. Suspendisse potenti. Etiam id odio leo, ac euismod est. In imperdiet, nisi quis placerat egestas, nisi nunc sodales diam, eget molestie diam lectus ac dui. \end{document} latex2rtf-2.3.18/test/apanat1b.bst0000777000175000017500000023350213073466675017131 0ustar wilfriedwilfried% % apanat1b.bst : a quick hack of apacite.bst % intended to work with natbib.sty and apanat1b.sty % apacite.bst : citation according to APA manual % EXPERIMENTAL! % % author: Erik Meijer (E.Meijer@eco.rug.nl) % date: 2003/03/27 % % inspired by theapa.bst by Young U. Ryu % % documentation: not really available, but see apacite.tex, update.tex, % and the readme file % % NO GUARANTEES! % % If you change anything to this file, you must rename it. % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % % % FIELD, INTEGER, AND STRING ENTRIES % % % % % % % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% ENTRY { address annote % not used author booktitle % for articles in books chair % for lectures chapter % not used day edition editor englishtitle % english translation of title in other language firstkey % key for first citation howpublished institution % for technical reports journal key % key for second and later citations, or all % citations if firstkey is missing month note number % number of journal or report organization % for unpublished % % for reprints, translations, etc. % originaladdress originalbooktitle originaledition originaleditor originaljournal originalnumber originalpages originalpublisher originalvolume originalyear % % back to normal % pages publisher school % for theses series % not used symposium % for lectures text % for literals title translator % translator of book (or article) type % type of phdthesis (e.g., Doctoral dissertation) % or type of article (e.g., Letter to the editor) % etc. volume year } { title.number } { full.label label % label to be used in optional argument % of \bibitem command year.label add.to.year.label % for a, b, c, etc. after year % in multiple citations with same author-year author.sort.label % for sorting authors author.year.sort.label % for checking if a, b, c, etc. after year is % is necessary title.sort.label % for sorting titles } % % some to-be-used variables % STRINGS { s t field } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % % % MONTH MACROS % % % % % % % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% MACRO {jan} {"January"} MACRO {feb} {"February"} MACRO {mar} {"March"} MACRO {apr} {"April"} MACRO {may} {"May"} MACRO {jun} {"June"} MACRO {jul} {"July"} MACRO {aug} {"August"} MACRO {sep} {"September"} MACRO {oct} {"October"} MACRO {nov} {"November"} MACRO {dec} {"December"} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % % % LOGICAL `NOT', `AND', AND `OR' % % % % % % % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % if first element on stack is A % then and does the following: % push { #0 } % push { #1 } % so now first 3 elements are % { #1 } { #0 } A % first 3 are popped. % now if A > 0 then { #0 } is executed % else { #1 } is executed: % if A > 0 % then 0 % else 1 % so consider integers as logicals, where 1=true % and 0 is false, then this does % (if A then false else true), which is a logical not % FUNCTION {not} { { #0 } { #1 } if$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % if first 2 elements on stack are A B % then and does the following: % push 'skip$ % push { pop$ #0 } % so now first 4 elements are % { pop$ #0 } 'skip$ A B % first 3 are popped. B is on top of the stack. % now if A > 0 then 'skip is executed % else { pop$ #0 } is executed: % if A > 0 % B stays on top of stack. % else % now B is popped and #0 is pushed. % so consider integers as logicals, where 1=true % and 0 is false, then this does % (if A then B else false), which is a logical and % FUNCTION {and} { 'skip$ { pop$ #0 } if$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % if first 2 elements on stack are A B % then or does the following: % push { pop$ #1 } % push 'skip$ % so now first 4 elements are % 'skip$ { pop$ #1 } A B % first 3 are popped. B is on top of the stack. % now if A > 0 then { pop$ #1 } is executed % else 'skip is executed: % if A > 0 % now B is popped and #1 is pushed. % else % B stays on top of stack. % so consider integers as logicals, where 1=true % and 0 is false, then this does % (if A then true else B), which is a logical or % FUNCTION {or} { { pop$ #1 } 'skip$ if$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % % % SPECIAL GENERAL PURPOSE FUNCTIONS % % % % % % % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % issues warning if field is empty % call with % "field" warning.if.empty % FUNCTION {warning.if.empty} { duplicate$ empty$ { "No " swap$ * " in " * cite$ warning$ } { pop$ } if$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % issues warning if title, type, and howpublished are empty % FUNCTION {check.relevant.fields} { title empty$ type empty$ howpublished empty$ and and { "No title, type, and howpublished in " cite$ * warning$ } 'skip$ if$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % delivers 1 if (both editor and translator % not empty and not equal to each other) % 0 if (editor or translator empty) or % (editor = translator) % FUNCTION {editor.ne.trans} { translator empty$ { #0 } { editor empty$ { #0 } { translator editor = { #0 } { #1 } if$ } if$ } if$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % delivers 1 if possibly editor in author position % 2 if editor not in author position % 3 if unknown type % FUNCTION {ref.type} { type$ "article" = type$ "magazine" = type$ "newspaper" = type$ "book" = type$ "techreport" = type$ "unpublished" = type$ "misc" = type$ "booklet" = type$ "manual" = type$ "proceedings" = or or or or or or or or or { #1 } { type$ "incollection" = type$ "phdthesis" = type$ "mastersthesis" = type$ "lecture" = type$ "inbook" = type$ "inproceedings" = type$ "intechreport" = or or or or or or { #2 } { type$ "literal" = { #3 } { #0 } if$ } if$ } if$ } STRINGS { connect.string } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % connects two strings with connect string % if one of them empty, then connect string % is left out % % call with S1 S2 connectstring connect.check % FUNCTION {connect.check} { 'connect.string := % % if S2 = "" % duplicate$ empty$ % % then remove S2; S1 is on top of stack and is % the result that is given % { pop$ } % % else swap S1 and S2 so that S1 can be checked % { swap$ % % if S1 is empty, remove S1 so that S2 is left on the % stack and is the result is given % duplicate$ empty$ { pop$ } % % now the real work starts: % push the connect string "C" % so that top of stack is "C" "S1" "S2" % concatenate, so that top of stack is % "S1+C" "S2" % { connect.string * % % swap and concatenate % swap$ * } if$ } if$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % connects two strings with space ("\ ") % if length of second is 3 or larger, % connects them with non-breaking space ("tie", "~") % if length of second smaller than 3 % % call with S1 S2 tie.or.space.connect % result: "S1\ S2" or "S1~S2" % FUNCTION {tie.or.space.connect} { duplicate$ text.length$ #3 < { "~" } { "\ " } if$ swap$ * * } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % connects two strings with comma (", ") % if one of them is empty, the comma is left out % % call with S1 S2 connect.with.comma.check % result: "S1, S2" % FUNCTION {connect.with.comma.check} { ", " connect.check } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % connects two strings with semicolon ("; ") % if one of them is empty, semicolon is left out % % call with S1 S2 connect.with.semicolon.check % result: "S1; S2" % FUNCTION {connect.with.semicolon.check} { "; " connect.check } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % connects two strings with colon (": ") % if one of them is empty, colon is left out % % call with S1 S2 connect.with.colon.check % result: "S1: S2" % FUNCTION {connect.with.colon.check} { ": " connect.check } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % connects two strings with space ("\ ") % % call with S1 S2 connect.with.space.check % result: "S1\ S2" % FUNCTION {connect.with.space.check} { "\ " connect.check } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % encloses string in pre- and postfix string % call with % prefix postfix S enclose.check % delivers empty string if S empty % FUNCTION {enclose.check} { duplicate$ empty$ { pop$ pop$ pop$ "" } { swap$ * * } if$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % emphasizes top of stack % call with % "string" emphasize.check % FUNCTION {emphasize.check} { "\Bem{" swap$ "}" swap$ enclose.check } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % brackets top of stack % call with % "string" bracket % FUNCTION {bracket.check} { "[" swap$ "]" swap$ enclose.check } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % parenthesizes top of stack % call with % "string" parenthesize % FUNCTION {parenthesize.check} { "(" swap$ ")" swap$ enclose.check } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% INTEGERS { multiresult } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % checks whether argument is "multiresult": % whether it contains '-', '+', or ',' characters % used with pages to check whether pp. or p. must be used % FUNCTION {multi.result.check} { 't := #0 'multiresult := % % while (not multiresult) and (length(t) > 1) do % { multiresult not t text.length$ #1 > and } % % if t(1-2) = "--" or t(1) = "+" or "," % then multiresult = 1 % else t = t(2-last) % { t #1 #2 substring$ 's := "--" s = { #1 'multiresult := } { t #1 #1 substring$ 's := "+" s = "," s = or { #1 'multiresult := } { t #2 global.max$ substring$ 't := } if$ } if$ } while$ multiresult } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % % % GENERAL SORTING-LABELING HELP FUNCTIONS % % % % % % % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% INTEGERS {len} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % remove non-alphanumeric characters % and change to lower case % FUNCTION {sortify} { purify$ "l" change.case$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % chop first N characters of string if they are % equal to teststring % call with % teststring N string chop.word % % e.g., % "A " #2 "A fine old day" chop.word % gives "fine old day" % and % "A " #2 "The fine old day" chop.word % gives "The fine old day" % FUNCTION {chop.word} { 's := 'len := s #1 len substring$ = { s len #1 + global.max$ substring$ } { s } if$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % chop articles "A ", "An ", and "The " % call with % string chop.articles % FUNCTION {chop.articles} { 's := "A " #2 "An " #3 "The " #4 s chop.word chop.word chop.word } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % % % BASIC OUTPUT FUNCTIONS % % % % % % % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % starting new block by writing what's left on the stack, % starting a new line and adding some extra space or % whatever is more defined in \newblock % FUNCTION {output.end.block} { write$ newline$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % starting new block by writing what's left on the stack, % starting a new line and adding some extra space or % whatever is more defined in \newblock % FUNCTION {output.new.block} { output.end.block "\newblock{}" write$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % starting new block by writing what's left on the stack, % starting a new line and adding some extra space or % whatever is more defined in \newblock % FUNCTION {output.dot.new.block} { add.period$ output.new.block } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % format \bibitem command with citation labels in % optional argument and cite key in mandatory % argument % FUNCTION {output.bibitem} { newline$ "\bibitem[\protect\citeauthoryear{" write$ full.label write$ "}{" write$ label write$ "}{" write$ year.label write$ "}]{" write$ cite$ write$ "}" write$ newline$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % finish current entry % by writing what's left on the stack and starting a new line % FUNCTION {fin.entry} { output.end.block } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % % % NAME FORMATTING % % % % % % % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% INTEGERS { nameptr namesleft numnames max.num.format name.max } STRINGS { nameformat between.names between.two before.last et.al. ampersand } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % some name formats % FUNCTION {author.name.format} { "{ll}{, f.}{ vv}{, jj}" } FUNCTION {editor.name.format} { "{f.~}{vv~}{ll}{, jj}" } FUNCTION {cite.name.format} { "{ll}" } FUNCTION {sort.name.format} { "{ll{}}{ f{}}{ vv{}}{ jj{}}" } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % some macro strings about commas, etc. between authors % FUNCTION {comma.between.names} { ", " } FUNCTION {space.between.names} { " " } FUNCTION {comma.between.two} { "\BCBT{}" } FUNCTION {no.comma.between.two} { "" } FUNCTION {comma.before.last} { "\BCBL{}" } FUNCTION {no.comma.before.last} { "" } FUNCTION {and.before.last} { " \BBA{} " } FUNCTION {space.before.last} { " " } FUNCTION {et.al.string} { " \BOthers{}" } FUNCTION {others.is.last} { " zzz" } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % format a list of names % % call with % % between.names between.two before.last % ampersand et.al. max.num.format % nameformat field format.names % FUNCTION {format.names} { 'field := % field 'nameformat := % name format string 'max.num.format := % maximum number of names to be % formatted 'et.al. := % string to be inserted for "others" 'ampersand := % "and" sign before last author 'before.last := % optional comma before last author 'between.two := % optional comma before last name % if #names = 2 'between.names := % optional comma between other names % % begin with real work % #1 'nameptr := % nameptr := 1; nameptr denotes % which name is pointed at field num.names$ 'numnames := % numnames is the total number of names % contained in field numnames 'namesleft := % namesleft is the number of names not % formatted yet % % format first name and push on stack % field nameptr nameformat format.name$ nameptr #1 + 'nameptr := namesleft #1 - 'namesleft := % % if num.names > max.num.format then % numnames max.num.format > { between.two * et.al. * } % % else % % while namesleft > 0 % { { namesleft #0 > } % % do begin % % format name #nameptr in s according to specification % and assign result to t % { field nameptr nameformat format.name$ 't := % % if namesleft > 1 % namesleft #1 > % % then % % more than 1 name left % add ", " to t and add to top of stack % { between.names * t * } % % else % % 1 name left % insert comma and "et al." or ampersand % and last author % { numnames #2 > { before.last * } { between.two * } if$ t "others" = { et.al. * } { ampersand * t * } if$ } % % end if namesleft > 1 % if$ % % increase nameptr by 1 and decrease namesleft by 1 % nameptr #1 + 'nameptr := namesleft #1 - 'namesleft := } while$ } if$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % format label names (short cite) % % call with % field format.lab.names % FUNCTION {format.lab.names} { 'field := % comma.between.names no.comma.between.two comma.before.last and.before.last et.al.string #2 cite.name.format field format.names } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % format label names (full cite) % % call with % field format.full.lab.names % FUNCTION {format.full.lab.names} { 'field := % comma.between.names no.comma.between.two comma.before.last and.before.last et.al.string #5 cite.name.format field format.names } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % format names for sort key % % call with % field format.sort.names % FUNCTION {format.sort.names} { 'field := % space.between.names no.comma.between.two no.comma.before.last space.before.last others.is.last name.max sort.name.format field format.names } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % format a list of names with the initials after the % last names (i.e., names in the author position), % commas between names, and ampersand (\&) before % last name % % call with % field format.author.names % FUNCTION {format.author.names} { 'field := % comma.between.names comma.between.two comma.before.last and.before.last et.al.string name.max author.name.format field format.names } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % format a list of names with the initials before the % last names (i.e., names in the editor position), % commas between names (not between 2), % and ampersand (\&) before last name % % call with % field format.editor.names % FUNCTION {format.editor.names} { 'field := % comma.between.names no.comma.between.two comma.before.last and.before.last et.al.string name.max editor.name.format field format.names } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % "(Ed.)" postfix % editor must not be empty % FUNCTION {editor.postfix} { editor num.names$ #1 > { "(\BEDS)" } { "(\BED)" } if$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % "(Ed. and Trans.)" postfix % editor must not be empty % FUNCTION {editor.trans.postfix} { editor num.names$ #1 > { "(\BEDS{} \BAnd{} \BTRANSS)" } { "(\BED{} \BAnd{} \BTRANS)" } if$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % "(Trans.)" postfix % translator must not be empty % FUNCTION {trans.postfix} { translator num.names$ #1 > { "(\BTRANSS)" } { "(\BTRANS)" } if$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % format authors, where it is given that the author field % is not empty: format names with initials after last % names % FUNCTION {format.authors} { author format.author.names } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % format editors in case editors act as authors % (such as reference to entire edited book) % % Letheridge, S., \& Cannon, C. R. (Eds.). % or % Letheridge, S. (Ed.). (if only 1 editor) % % editor must not be empty % FUNCTION {format.editors.as.authors} { editor format.author.names editor.postfix connect.with.space.check } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % format editors in case editors are also translators % and act as authors % (such as reference to entire edited book of translated articles) % % Letheridge, S., \& Cannon, C. R. (Eds. and Trans.). % or % Letheridge, S. (Ed. and Trans.). (if only 1 editor) % % editor must not be empty % FUNCTION {format.ed.trans.as.authors} { editor format.author.names editor.trans.postfix connect.with.space.check } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % format editors in case editors do not act as authors % (such as reference to chapter in edited book) % % L. W. Poon (Ed.) (1 editor) % or % A. S. Gurman \& D. P. Kniskern (Eds.) (2 editors) % or % L. Poon, A. Jones, \& D. P. Smith (Eds.) (>2 editors) % % editor must not be empty % FUNCTION {format.editors.in.line} { editor format.editor.names editor.postfix connect.with.space.check } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % format editors in case editors are also translators % and do not act as authors % (such as reference to chapter in edited book % of translated articles) % % L. W. Poon (Ed. and Trans.) (1 editor) % or % A. S. Gurman \& D. P. Kniskern (Eds. and Trans.) (2 editors) % or % L. Poon, A. Jones, \& D. P. Smith (Eds. and Trans.) (>2 editors) % % editor must not be empty % FUNCTION {format.editors.trans.in.line} { editor format.editor.names editor.trans.postfix connect.with.space.check } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % format translators in case translators act as editors % (such as reference to chapter in translated book) % % L. W. Poon (Trans.) (1 translator) % or % A. S. Gurman \& D. P. Kniskern (Trans.) (2 translators) % or % L. Poon, A. Jones, \& D. P. Smith (Trans.) (>2 translators) % % translator must not be empty % FUNCTION {format.translators.in.line} { translator format.editor.names trans.postfix connect.with.space.check } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % format translators in case translator does not act as editor % (such as reference to translated book) % % L. Solotaroff, Trans. % FUNCTION {format.translators.in.paren.check} { translator empty$ { "" } { translator format.editor.names translator num.names$ #1 > { ", \BTRANSS{}" * } { ", \BTRANS{}" * } if$ } if$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % translator of article % FUNCTION {format.atrans.check} { format.translators.in.paren.check parenthesize.check } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % format "In editor (Ed.), " % FUNCTION {format.in.editors} { "In " editor empty$ 'skip$ { format.editors.in.line * ", " * } if$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % format "In translator (Trans.)," % FUNCTION {format.in.trans} { "In " translator empty$ 'skip$ { format.translators.in.line * ", " * } if$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % format "In editor (Ed. and Trans.)" % or "In editor (Ed.)" if editor not equal to translator % FUNCTION {format.in.editors.trans} { "In " editor empty$ { translator empty$ 'skip$ { format.translators.in.line * ", " * } if$ } { translator empty$ { format.editors.in.line * } { editor translator = { format.editors.trans.in.line * } { format.editors.in.line * } if$ } if$ ", " * } if$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % citation label is author, editor, or key % push short and full cites on stack % FUNCTION {author.editor.key.labels} { key empty$ { author empty$ { editor empty$ { cite$ duplicate$ } { editor format.lab.names editor format.full.lab.names } if$ } { author format.lab.names author format.full.lab.names } if$ } { key firstkey empty$ { key } { firstkey } if$ } if$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % citation label is author or key % push short and full cites on stack % FUNCTION {author.key.labels} { key empty$ { author empty$ { cite$ duplicate$ } { author format.lab.names author format.full.lab.names } if$ } { key firstkey empty$ { key } { firstkey } if$ } if$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % % % DATE % % % % % % % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % checks if year present and formats year % (+ extra label) between parentheses (which % may be redefined by \BBOP and \BBCP). % extra label can be used for % Bentler, P. M. (1983a)
% Bentler, P. M. (1983b)
% FUNCTION {format.year.check} { "year" warning.if.empty "\BBOP{}" "\BBCP{}" year add.to.year.label * enclose.check } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % checks if year present and formats year % (+ extra label) + month + day between parentheses (which % may be redefined by \BBOP and \BBCP). % extra label can be used for % Bentler, P. M. (1983a)
% Bentler, P. M. (1983b)
% FUNCTION {format.year.month.day.check} { "year" warning.if.empty "\BBOP{}" "\BBCP{}" year add.to.year.label * month connect.with.comma.check day connect.with.space.check enclose.check } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % format year for sort key % % call with % format.sort.year % FUNCTION {format.sort.year} { year empty$ { "" } { year } if$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % % % TITLE FORMATTING % % % % % % % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % title of article in journal or book % no finishing period % field must be on top of stack % (so englishtitle can be handled also) % FUNCTION {format.atitle.no.dot} { "\BBOQ{}" swap$ "\BBCQ{}" swap$ duplicate$ empty$ 'skip$ { "t" change.case$ } if$ enclose.check } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % title of article in journal or book % with finishing period % field must be on top of stack % (so englishtitle can be handled also) % FUNCTION {format.atitle.dot} { "\BBOQ{}" swap$ "\BBCQ{} " swap$ duplicate$ empty$ 'skip$ { "t" change.case$ add.period$ } if$ enclose.check } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % title of article in journal or book % field must be on top of stack % second element on stack must be connected: % if that is empty, then atitle.dot % else atitle.no.dot, connect, and add period % FUNCTION {format.atitle.connect} { swap$ duplicate$ empty$ { pop$ format.atitle.dot } { swap$ format.atitle.no.dot swap$ connect.with.space.check add.period$ } if$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % title of book or so, no period % % call with % field format.btitle.no.dot % FUNCTION {format.btitle.no.dot} { duplicate$ empty$ 'skip$ { "t" change.case$ emphasize.check } if$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % title of book or so, with period % (maybe emphasize and add.period$ should be reversed) % call with % field format.btitle.dot % FUNCTION {format.btitle.dot} { duplicate$ empty$ 'skip$ { "t" change.case$ add.period$ emphasize.check } if$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % title of book and similar % field must be on top of stack % second element on stack must be connected: % if that is empty, then btitle.dot % else btitle.no.dot, connect, and add period % FUNCTION {format.btitle.connect} { swap$ duplicate$ empty$ { pop$ format.btitle.dot } { swap$ format.btitle.no.dot swap$ connect.with.space.check add.period$ } if$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % format englishtitle (of nonenglish article, etc.) % FUNCTION {format.etitle.check} { englishtitle empty$ { "" } { englishtitle "t" change.case$ bracket.check } if$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % format title and other non-name/date entries for sort key % % call with % field format.sort.title % FUNCTION {format.sort.title} { duplicate$ empty$ { pop$ "" } { chop.articles #1 entry.max$ substring$ } % chop "A ", "An ", and "The " if$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % format type (of article, etc.) % FUNCTION {format.atype.check} { type bracket.check } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % format title and englishtitle (of article, etc.) % FUNCTION {format.atitle.check} { format.etitle.check title format.atitle.connect } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % format title, englishtitle, and type % (of article, etc.) % FUNCTION {format.atitle.type.check} { format.etitle.check format.atype.check connect.with.space.check title format.atitle.connect } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % format title, englishtitle, % and translator (of article, etc.) % FUNCTION {format.atitle.trans.check} { format.etitle.check format.atrans.check connect.with.space.check title format.atitle.connect } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % format title, englishtitle, type, % and translator (of article, etc.) % FUNCTION {format.atitle.type.trans.check} { format.etitle.check format.atype.check connect.with.space.check format.atrans.check connect.with.space.check title format.atitle.connect } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % format journal, volume, number and pages % call with % formatted.pages format.journal.vol.num.pages.check % FUNCTION { format.journal.vol.num.pages.check } { "journal" warning.if.empty journal emphasize.check volume emphasize.check connect.with.comma.check number parenthesize.check "" connect.check swap$ connect.with.comma.check } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % volume of book, checks whether % "Volume" or "Volumes" % % call with % field format.bvolume.check % FUNCTION {format.bvolume.check} { duplicate$ empty$ 'skip$ { duplicate$ multi.result.check { "\BVOLS" swap$ tie.or.space.connect } { "\BVOL" swap$ tie.or.space.connect } if$ } if$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % edition of book, must not be empty % call with % field format.edition.check % FUNCTION {format.edition.check} { duplicate$ empty$ 'skip$ { "\BEd" connect.with.space.check } if$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % volume and edition of book % FUNCTION {format.bvol.edition.check} { volume format.bvolume.check edition format.edition.check connect.with.comma.check } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % volume and edition of book % FUNCTION {format.bvol.edition} { format.bvol.edition.check parenthesize.check } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % volume and edition and translator of translated book % FUNCTION {format.bvol.edition.trans} { format.bvol.edition.check format.translators.in.paren.check connect.with.semicolon.check parenthesize.check } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % formats pages by first checking if 1 or more pages % and prefixing pages with "p." or "pp." (these strings % are given in the commands \BPG and \BPGS, respectively), % whichever is applicable, and do a tie or space connect % % call with % field format.bpages.check % FUNCTION {format.bpages.check} { duplicate$ empty$ 'skip$ { duplicate$ multi.result.check { "\BPGS" swap$ tie.or.space.connect } { "\BPG" swap$ tie.or.space.connect } if$ } if$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % volume, edition, and pages of article in book % FUNCTION {format.bvol.edition.pages} { format.bvol.edition.check pages format.bpages.check connect.with.comma.check parenthesize.check } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % title, volume, edition of book % FUNCTION {format.btitle.vol.edition} { format.etitle.check format.bvol.edition connect.with.space.check title format.btitle.connect } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % title, volume, edition, and translator of book % FUNCTION {format.btitle.vol.edition.trans} { format.etitle.check format.bvol.edition.trans connect.with.space.check title format.btitle.connect } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % format address and publisher of book etc. % % New York: Wiley % or % Wiley (if address empty) % FUNCTION {format.address.publisher} { address publisher connect.with.colon.check } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % format address and publisher of book etc. % % New York: Wiley % or % Wiley (if address empty) % % warning if no publisher % FUNCTION {format.address.publisher.check} { "publisher" warning.if.empty format.address.publisher } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % format number as in reports: No. 2017 % call with % field format.rnumber.check % FUNCTION {format.rnumber.check} { duplicate$ empty$ 'skip$ { duplicate$ multi.result.check { "\BNUMS" swap$ tie.or.space.connect } { "\BNUM" swap$ tie.or.space.connect } if$ } if$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % % % NOTE FORMATTING FUNCTIONS % % % % % % % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % format optional note % FUNCTION {format.note} { note parenthesize.check } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % format original year of publication and note % (reprint or translation) % FUNCTION {format.orig.year.note} { "\BOWP{} " "" originalyear enclose.check % original work published note connect.with.semicolon.check parenthesize.check } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % format original journal of publication and note % (reprint or translation) % FUNCTION {format.orig.journal.note} { "\BREPR{} " % reprinted from originaljournal emphasize.check * originalyear connect.with.comma.check originalvolume emphasize.check connect.with.comma.check originalnumber bracket.check "" connect.check originalpages connect.with.comma.check note connect.with.semicolon.check parenthesize.check } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % format original book of publication and note % (reprint or translation) % FUNCTION {format.orig.book.note} { "\BREPR{} " originaleditor empty$ 'skip$ { "originaleditor" format.editor.names * originaleditor num.names$ #1 > { ", \BEDS{}" } { ", \BED{}" } if$ } if$ originalyear connect.with.comma.check originalbooktitle format.btitle.no.dot connect.with.comma.check % % volume, edition, pages % originalvolume format.bvolume.check originaledition format.edition.check connect.with.comma.check originalpages format.bpages.check connect.with.comma.check bracket.check connect.with.space.check % originaladdress originalpublisher connect.with.colon.check connect.with.comma.check note connect.with.semicolon.check parenthesize.check } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % format information about original publication of reprint % and format optional note % FUNCTION {format.orig.note} { originaljournal empty$ { originalbooktitle empty$ { note empty$ originalyear empty$ and { add.period$ } { output.dot.new.block format.orig.year.note } if$ } { output.dot.new.block format.orig.book.note } if$ } { output.dot.new.block format.orig.journal.note } if$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % % % PERIODICALS % % % % % % % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % article in periodical: journal, magazine, newspaper, ... % % call with % formatted.pages formatted.date periodical % FUNCTION {periodical} { output.bibitem % % author or editor, year, title, englishtitle, type % author empty$ % % no author: possibly special issue with editors as authors % (APA manual, ex. 11, p. 121) % { editor empty$ % % no author or editor: title serves as author. % title formatted as article title (APA manual not consistent in this, % compare statement on p. 119: ``treat as book title'' and % example 8, p. 121: no underlining => article title) % { format.atitle.type.trans.check output.new.block % % now formatted date on top of stack % output.dot.new.block } % % format editor and year, and check if year is present % format article title and check if title or type present % { format.editors.as.authors output.dot.new.block % % now formatted date on top of stack % output.dot.new.block format.atitle.type.trans.check output.new.block } if$ } % % format author and year, and check if year is present % format article title and check if title or type present % { format.authors output.dot.new.block % % now formatted date on top of stack % output.dot.new.block format.atitle.type.trans.check output.new.block } if$ % % format journal name, volume and issue number, and pages % and check if journal not empty % format.journal.vol.num.pages.check % % possible reprint and optional note % format.orig.note fin.entry } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % journal article % FUNCTION {article} { pages format.year.check periodical } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % magazine article % FUNCTION {magazine} { pages format.bpages.check format.year.month.day.check periodical } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % newspaper article % FUNCTION {newspaper} {magazine} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % (translation of) entire book % FUNCTION {book} { output.bibitem % % author or editor, % year, title, englishtitle, translator % author empty$ % % no author: possibly edited book with editors as authors % { editor empty$ % % no author or editor: title serves as author. % title formatted as book title % { format.btitle.vol.edition.trans output.dot.new.block format.year.check output.dot.new.block } % % format editor and year, and check if year is present % format booktitle, volume, and edition and check if title present % { translator empty$ { format.editors.as.authors output.dot.new.block format.year.check output.dot.new.block format.btitle.vol.edition output.dot.new.block } % % format translator correctly % { translator editor = not { format.editors.as.authors output.dot.new.block format.year.check output.dot.new.block "before title" cite$ * warning$ format.btitle.vol.edition.trans output.dot.new.block } { format.ed.trans.as.authors output.dot.new.block format.year.check output.dot.new.block format.btitle.vol.edition output.dot.new.block } if$ } if$ } if$ } % % format author and year, and check if year is present % format booktitle, volume, and edition and check if title present % { format.authors output.dot.new.block format.year.check output.dot.new.block format.btitle.vol.edition.trans output.dot.new.block } if$ % % format address and publisher, check if publisher present % format.address.publisher.check % % format original publication (of reprint/translation) % and optional note % format.orig.note fin.entry } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % (translated) article or chapter in edited book % FUNCTION {incollection} { output.bibitem author empty$ % % no author: title serves as author. % title formatted as article title (APA manual not consistent in this, % compare statement on p. 119: ``treat as book title'' and % example 8, p. 121: no underlining => article title) % { editor.ne.trans { format.atitle.type.trans.check } { format.atitle.type.check } if$ output.new.block format.year.check output.dot.new.block } % % format author and year, and check if year is present % format article title and check if title or type present % { format.authors output.dot.new.block format.year.check output.dot.new.block editor.ne.trans { format.atitle.type.trans.check } { format.atitle.type.check } if$ output.new.block } if$ % % format "In " editor " (Ed. and Trans.), " % booktitle, volume, edition, pages % format.in.editors.trans format.bvol.edition.pages booktitle format.btitle.connect * output.dot.new.block % % format address and publisher, check if publisher present % format.address.publisher.check % % format original publication (of reprint/translation) % and optional note % format.orig.note fin.entry } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % % % REPORTS % % % % % % % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % technical report number % FUNCTION {format.tr.number} { type empty$ { "\BTR{}" } { type } if$ number format.rnumber.check connect.with.space.check } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % title, volume, edition, report number % FUNCTION {format.tr.title.number} { format.etitle.check format.bvol.edition.check format.tr.number connect.with.semicolon.check parenthesize.check connect.with.space.check title format.btitle.connect } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % format address and institution of reports etc. % % Washington, DC: National Institute of Education % or % National Institute of Education (if address empty) % % warning if no institution % FUNCTION {format.address.institution.check} { "institution" warning.if.empty address institution connect.with.colon.check } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % reports % FUNCTION {techreport} { output.bibitem author empty$ % % no author: possibly edited report with editors as authors % { editor empty$ % % no author or editor: title serves as author. % title formatted as book title % { format.tr.title.number output.dot.new.block format.year.check output.dot.new.block } % % format editor and year, and check if year is present % format report title and check if title present % format volume, edition, type, and number % { format.editors.as.authors output.dot.new.block format.year.check output.dot.new.block format.tr.title.number output.dot.new.block } if$ } % % format author and year, and check if year is present % format report title and check if title present % format volume, edition, type, and number % { format.authors output.dot.new.block format.year.check output.dot.new.block format.tr.title.number output.dot.new.block } if$ % % format address and institution, check if institution present % format optional note % format.address.institution.check note empty$ { add.period$ } { output.dot.new.block format.note } if$ fin.entry } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % (translated) article or chapter in report % FUNCTION {intechreport} { output.bibitem author empty$ % % no author: title serves as author. % title formatted as article title (APA manual not consistent in this, % compare statement on p. 119: ``treat as book title'' and % example 8, p. 121: no underlining => article title) % { editor.ne.trans { format.atitle.trans.check } { format.atitle.check } if$ output.new.block format.year.check output.dot.new.block } % % format author and year, and check if year is present % format article title and check if title or type present % { format.authors output.dot.new.block format.year.check output.dot.new.block editor.ne.trans { format.atitle.trans.check } { format.atitle.check } if$ output.new.block } if$ % % format "In " editor " (Ed. and Trans.), " % booktitle, volume, edition, pages % format.in.editors.trans % % volume, edition, report type and number, pages % format.bvol.edition.check format.tr.number connect.with.semicolon.check pages format.bpages.check connect.with.comma.check parenthesize.check % booktitle format.btitle.connect * output.dot.new.block % % format address and publisher, check if publisher present % format.address.institution.check % % format original publication (of reprint/translation) % and optional note % format.orig.note fin.entry } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % papers presented at conferences etc. % FUNCTION {lecture} { output.bibitem "author" warning.if.empty format.authors output.dot.new.block % % format year, month, and day, and check if year present % format title and check if title present % format howpublished and check if howpublished present % format.year.month.day.check output.dot.new.block symposium empty$ { format.etitle.check title format.btitle.connect output.new.block "howpublished" warning.if.empty howpublished } { format.atitle.type.check output.new.block "In " chair empty$ 'skip$ { chair format.editor.names chair num.names$ #1 > { "(\BCHAIRS)" } { "(\BCHAIR)" } if$ connect.with.comma.check * ", " * } if$ symposium format.btitle.no.dot * howpublished empty$ 'skip$ { output.dot.new.block howpublished "t" change.case$ } if$ } if$ % % format optional note % note empty$ { add.period$ } { output.dot.new.block format.note } if$ fin.entry } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % % % THESES % % % % % % % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % default thesis type is on top of stack % now, if type field is empty, this default is used % else default is removed and replaced by value of % type field % FUNCTION {format.type.school} { type empty$ 'skip$ { pop$ type "t" change.case$ } if$ school connect.with.comma.check } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % phd theses, etc. % call with % "default.published.thesis" "default.unpublished.thesis" thesis % FUNCTION {thesis} { output.bibitem "author" warning.if.empty format.authors output.dot.new.block % % format year and check if year present % format.year.check output.dot.new.block % % format title and check if title present % journal empty => unpublished PhD thesis % journal not empty => published (e.g., Dissertation Abstracts Int.) % journal empty$ { format.btitle.vol.edition output.dot.new.block % % pop default unpublished thesis, top is default published thesis % swap$ pop$ format.type.school address connect.with.comma.check } % % pop default published thesis, top is default unpublished thesis % { pop$ type empty$ school empty$ originalyear empty$ and and { pop$ "" } { format.type.school originalyear connect.with.comma.check parenthesize.check } if$ format.etitle.check swap$ connect.with.space.check "title" warning.if.empty title format.atitle.connect output.new.block pages format.journal.vol.num.pages.check } if$ % % format optional note % note empty$ { add.period$ } { output.dot.new.block format.note } if$ fin.entry } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % phd theses, etc. % FUNCTION {phdthesis} { "\BPhD" "\BUPhD" thesis } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % master's theses, etc. % FUNCTION {mastersthesis} { "\BMTh" "\BUMTh" thesis } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % % % OTHER % % % % % % % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % title of something (used in unpublished and misc) % english translation of title % type and number of something % FUNCTION {format.btitle.type.num} { format.etitle.check number empty$ { type bracket.check } { type number format.rnumber.check connect.with.space.check parenthesize.check } if$ connect.with.space.check title empty$ 'skip$ { title format.btitle.connect } if$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % unpublished manuscripts, etc. % FUNCTION {unpublished} { output.bibitem check.relevant.fields author empty$ % % no author: possibly edited book with editors as authors % { editor empty$ % % no author or editor: title serves as author. % title formatted as book title % { format.btitle.type.num output.dot.new.block format.year.month.day.check } % % format editor and year, and check if year is present % format book title, volume, and edition and check if title present % { format.editors.as.authors output.dot.new.block format.year.month.day.check output.dot.new.block format.btitle.type.num } if$ } % % format author and year, and check if year is present % format book title, volume, and edition % and check if title or type present % { format.authors output.dot.new.block format.year.month.day.check output.dot.new.block format.btitle.type.num } if$ howpublished empty$ organization empty$ address empty$ and and 'skip$ { output.dot.new.block howpublished "t" change.case$ organization connect.with.comma.check address connect.with.comma.check } if$ % % format optional note % note empty$ { add.period$ } { output.dot.new.block format.note } if$ fin.entry } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % nonprint media and other things that don't fit % FUNCTION {misc} { output.bibitem check.relevant.fields author empty$ % % no author: possibly edited book with editors as authors % { editor empty$ % % no author or editor: title/type serves as author. % title formatted as book title % % if no title and no type, howpublished is title % { title empty$ type empty$ and { howpublished "t" change.case$ output.dot.new.block format.year.month.day.check } { format.btitle.type.num output.dot.new.block format.year.month.day.check howpublished empty$ 'skip$ { output.dot.new.block howpublished "t" change.case$ } if$ } if$ } % % format editor and year, and check if year is present % format book title, volume, and edition and check if title present % { format.editors.as.authors output.dot.new.block format.year.month.day.check output.dot.new.block format.btitle.type.num howpublished empty$ 'skip$ { output.dot.new.block howpublished "t" change.case$ } if$ } if$ } % % format author and year, and check if year is present % format book title, volume, and edition % and check if title or type present % { format.authors output.dot.new.block format.year.month.day.check output.dot.new.block format.btitle.type.num howpublished empty$ 'skip$ { output.dot.new.block howpublished } if$ } if$ address empty$ publisher empty$ and 'skip$ { output.dot.new.block format.address.publisher } if$ % % format optional note % note empty$ { add.period$ } { output.dot.new.block format.note } if$ fin.entry } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % for legal cases and other cases that need to be % done by hand % FUNCTION {literal} { output.bibitem "key" warning.if.empty "text" warning.if.empty text fin.entry } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % following functions not used for APA Manual examples % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % booklet % FUNCTION {booklet} { misc } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % part of a book % FUNCTION {inbook} { incollection } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % article in proceedings % FUNCTION {inproceedings} { incollection } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % technical documentation % FUNCTION {manual} { misc } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % proceedings % FUNCTION {proceedings} { misc } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % unknown types % FUNCTION {default.type} { misc } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % BASIC BIBLIOGRAPHY OUTPUT FUNCTIONS % % % % % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % beginning of the thebibliography environment: % write preamble if there is one % write \begin command % FUNCTION {begin.bib} { preamble$ empty$ 'skip$ { preamble$ write$ newline$ } if$ "\begin{thebibliography}{}" write$ newline$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % write \end{thebibliography} command % FUNCTION {end.bib} { newline$ "\end{thebibliography}" write$ newline$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % LABEL FORMATTING FUNCTIONS % % % % % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% INTEGERS {old.number} %STRINGS {old.label} FUNCTION {init.old.number} { #0 'old.number := } FUNCTION {init1.old.number} { #1 'old.number := } FUNCTION {init.old.label} { "000" 's := } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % make title sorting label % FUNCTION {make.sort.title} { title empty$ { type empty$ { howpublished format.sort.title } { type format.sort.title } if$ } { title format.sort.title } if$ 'title.sort.label := title.sort.label 'sort.key$ := } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % make title number: rank of sorted title % FUNCTION {make.title.number} { old.number #1 + 'title.number := title.number 'old.number := } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % make author sort label and push on stack % FUNCTION {author.editor.title.sort.label} { firstkey empty$ { key empty$ { author empty$ { editor empty$ { title empty$ { type format.sort.title } { title format.sort.title } if$ } { editor format.sort.names } if$ } { author format.sort.names } if$ } { key } if$ } { firstkey } if$ sortify } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % make author sort label and push on stack % FUNCTION {author.title.sort.label} { firstkey empty$ { key empty$ { author empty$ { title empty$ { type format.sort.title } { title format.sort.title } if$ } { author format.sort.names } if$ } { key } if$ } { firstkey } if$ sortify } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % make label on which authors are sorted % FUNCTION {make.author.sort.label} { ref.type duplicate$ #1 = { pop$ author.editor.title.sort.label } { duplicate$ #2 = { pop$ author.title.sort.label } { #3 = { firstkey empty$ { key empty$ { "key missing: " cite$ * warning$ " " } { key } if$ } { firstkey } if$ } { "unknown type of reference: " cite$ * warning$ author.editor.title.sort.label } if$ } if$ } if$ % % now top element of stack is author sort label % #1 entry.max$ substring$ 'author.sort.label := author.sort.label 'sort.key$ := } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % convert integer to string, assume that integer < 1000 % FUNCTION {conv.int.to.str} { duplicate$ #10 < { "00" swap$ int.to.str$ * } { duplicate$ #100 < { "0" swap$ int.to.str$ * } { int.to.str$ } if$ } if$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % make label on which entries are sorted % FUNCTION {make.sort.label} { s author.sort.label = 'skip$ { old.number #1 + 'old.number := author.sort.label 's := } if$ old.number conv.int.to.str year "\BIP" = { " 9999 " * } { " " * year * " " * } if$ sortify 'author.year.sort.label := author.year.sort.label title.number conv.int.to.str * 'sort.key$ := } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % make b, c, etc. labels for subsequent entries % with same author/year (forward pass) % FUNCTION {check.add.to.year} { s author.year.sort.label = { old.number #1 + 'old.number := "\protect" year "\BIP" = { "\BCntIP" * } { "\BCnt" * } if$ "{" * old.number int.to.str$ * "}" * 'add.to.year.label := } { #1 'old.number := author.year.sort.label 's := "" 'add.to.year.label := } if$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % make "a" label for first entry of a number of entries % with same author/year (backward pass) % FUNCTION {make.add.to.year} { s "b" = add.to.year.label "" = and { year "\BIP" = { "\protect\BCntIP{1}" 'add.to.year.label := } { "\protect\BCnt{1}" 'add.to.year.label := } if$ "a" 's := } { add.to.year.label "" = not { "b" 's := } { "a" 's := } if$ } if$ } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % make year label and push on stack % FUNCTION {make.year.label} { originalyear year "/" connect.check add.to.year.label * } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % top make-label-function % FUNCTION {make.labels} { ref.type duplicate$ #1 = { pop$ author.editor.key.labels } { duplicate$ #2 = { pop$ author.key.labels } { #3 = { key firstkey empty$ { key } { firstkey } if$ } { author.editor.key.labels } if$ } if$ } if$ % % now top element of stack is full cite label, % and second element is short cite label % 'full.label := 'label := make.year.label 'year.label := } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % READ AND PROCESS ENTRIES, MAKE THEBIBLIOGRAPHY % % % % % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % read entries % READ FUNCTION {initialize} { #100 'name.max := % #200 'entry.max$ := % #200 'global.max$ := } EXECUTE { initialize } % % sort items by title in order to replace each title by % its number in later sorting % ITERATE {make.sort.title} SORT EXECUTE {init.old.number} ITERATE {make.title.number} % % author label on which items will be sorted % ITERATE {make.author.sort.label} % % sort items by author (or substitute), % SORT % % make definitive sort labels % and definitive sorting % EXECUTE {init.old.number} EXECUTE {init.old.label} ITERATE {make.sort.label} SORT % % make "a" and "b", etc. additions for % citations to several works with same % author-year combination % EXECUTE {init.old.label} EXECUTE {init1.old.number} ITERATE {check.add.to.year} EXECUTE {init.old.label} REVERSE {make.add.to.year} % % make label (optional argument of \bibitem command) % for each entry % ITERATE {make.labels} % % write preamble and \begin{thebibliography}{} statement % EXECUTE {begin.bib} % % format and write entries % ITERATE {call.type$} % % write \end{thebibliography} statement % EXECUTE {end.bib} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % DONE % % % % % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % EOF apanat1b.bst % latex2rtf-2.3.18/test/geometry.tex0000777000175000017500000000016713050672360017265 0ustar wilfriedwilfried\documentclass{article} \usepackage[left=2cm,top=1cm,right=3cm,nohead,nofoot]{geometry} \begin{document} \end{document}latex2rtf-2.3.18/test/theorem.tex0000777000175000017500000000600313050672360017070 0ustar wilfriedwilfried\documentclass{article} \newtheorem{guess}{conjecture} \newtheorem{axiom}{subsection Axiom}[subsection] \newtheorem{axioms}{section Axiom}[section] \newtheorem{hunch}[guess]{Hunch} \begin{document} Blippity, blah blah blah blah, blippity blah blah blah. Blippity, blah blah blah blah, blippity blah blah blah. Blippity, blah blah blah blah, blippity blah blah blah. \section{First section} Blippity, blah blah blah blah, blippity blah blah blah. Blippity, blah blah blah blah, blippity blah blah blah. Blippity, blah blah blah blah, blippity blah blah blah. \begin{guess}Some good conjectures are numbered.\end{guess} Blippity, blah blah blah blah, blippity blah blah blah. Blippity, blah blah blah blah, blippity blah blah blah. Blippity, blah blah blah blah, blippity blah blah blah. \begin{guess}Some good conjectures are repeated.\end{guess} Blippity, blah blah blah blah, blippity blah blah blah. Blippity, blah blah blah blah, blippity blah blah blah. Blippity, blah blah blah blah, blippity blah blah blah. \begin{hunch} There are no sure-fire hunches. \end{hunch} Blippity, blah blah blah blah, blippity blah blah blah. Blippity, blah blah blah blah, blippity blah blah blah. Blippity, blah blah blah blah, blippity blah blah blah. \begin{axiom} All axioms are very dull. \end{axiom} Blippity, blah blah blah blah, blippity blah blah blah. Blippity, blah blah blah blah, blippity blah blah blah. Blippity, blah blah blah blah, blippity blah blah blah. \begin{axiom} All axioms are very dull. \end{axiom} Blippity, blah blah blah blah, blippity blah blah blah. Blippity, blah blah blah blah, blippity blah blah blah. Blippity, blah blah blah blah, blippity blah blah blah. \begin{axioms} All axioms are very dull. \end{axioms} Blippity, blah blah blah blah, blippity blah blah blah. Blippity, blah blah blah blah, blippity blah blah blah. Blippity, blah blah blah blah, blippity blah blah blah. \begin{axioms} All axioms are very dull. \end{axioms} Blippity, blah blah blah blah, blippity blah blah blah. Blippity, blah blah blah blah, blippity blah blah blah. Blippity, blah blah blah blah, blippity blah blah blah. \subsection{First subsection} \begin{guess}Some good conjectures are numbered.\end{guess} \begin{guess}Some good conjectures are repeated.\end{guess} \begin{hunch} There are no sure-fire hunches. \end{hunch} \begin{axiom} All axioms are very dull. \end{axiom} \begin{axiom} All axioms are very dull. \end{axiom} \section{Second section} \begin{guess}Some good conjectures are numbered.\end{guess} \begin{guess}Some good conjectures are repeated.\end{guess} \begin{hunch} There are no sure-fire hunches. \end{hunch} \begin{axiom} All axioms are very dull. \end{axiom} \begin{axiom} All axioms are very dull. \end{axiom} \subsection{Second subsection} \begin{guess}Some good conjectures are numbered.\end{guess} \begin{guess}Some good conjectures are repeated.\end{guess} \begin{hunch} There are no sure-fire hunches. \end{hunch} \begin{axiom} All axioms are very dull. \end{axiom} \begin{axiom} All axioms are very dull. \end{axiom} \end{document} latex2rtf-2.3.18/test/tabbing.tex0000777000175000017500000000623713050672360017044 0ustar wilfriedwilfried\documentclass{article} \begin{document} Testing the tabbing environment \begin{table} \begin{center} \begin{tabbing} ------\= ------------\=\kill \> this \> line will work \\ \> this \> line will kill conversion \\ \\ \> this \> line follows \\ \end{tabbing} \end{center} \end{table} \begin{table} \begin{center} \begin{tabbing} \hspace*{1cm}\= $M_{38}=10^{38}-1=$ \= $3\times 3 \times 11 \times 909090909090909091$\\ \> \> $\times 1111111111111111111,$\\ \> $M_{39}= 10^{39}-1= 3 \times 3 \times 3 \times 3 \times 37 \times 53 \times 79$\\ \> \> $\times 265371653 \times 900900900900990990990991.$ \end{tabbing} \end{center} \end{table} \begin{table} \begin{center} \begin{tabbing} Cheddar cheese \= Recommended \= \$2.00 \kill Green Ham \> Recommended \> \$2.00 \\ Eggs \> 1 a week \> \$1.50 \\ Cheddar cheese \> Hmmm \> \$0.80 \\ Yak cheese \> Avoid \> \$0.05 \end{tabbing} \caption{Simplest test case for tabbing environment, should be three aligned columns} \end{center} \end{table} \begin{table} \begin{center} \begin{tabbing} Entry in position 1,1 \= Entry 1,2 \= Entry 1,3\\ Entry in position 2,1 \> Entry 2,2 \> Entry 2,3\\ Entry 3,1 \= Entry 3,2 \> Entry 3,3 \\ Entry 4,1 \> Entry 4,2 \> Entry 4,3 \end{tabbing} \caption{Another easy test case for tabbing environment, should be three aligned columns} \end{center} \end{table} \begin{table} \begin{center} \begin{tabbing} Income \=Expenditure \= \kill Income \>Expenditure \>Result \\ 20s 0d \>19s 11d \>Happiness \\ 20s 0d \>20s 1d \>Misery \\ 20s 0d \>40s 0d \>Bancruptcy \\ 20s 0d \>80s 0d \>Government \\ \end{tabbing} \caption{Another easy test case for tabbing environment, should be three aligned columns} \end{center} \end{table} \begin{table} \begin{center} \begin{tabbing} Armadillo: \= \kill Gnat: \> swatted by: \= men \+\+ \\ cows \\ and \' gnus \- \\ not very filling \- \\ Armadillo: \> not edible \\ \pushtabs (note also the: \= aardvark \\ \> albatross \` eton) \\ \poptabs Gnu: \> eaten by \> gnats \end{tabbing} \caption{Simplest test case for tabbing environment, should be three aligned columns} \end{center} \end{table} \begin{table} \centering \begin{tabbing} \t{oo} \= \verb|\t{oo}|~~~ \= \t{oo} \= \verb|\t{oo}|~~~ \= \t{oo} \= \verb|\t{oo}|~~~ \= \t{oo} \= \verb|\t{oo}|~~~ \= \t{oo} \= \verb|\t{oo}|~~~ \= \t{oo} \= \kill \a`{o} \> \verb|\`{o}| \> \~{o} \> \verb|\~{o}| \> \v{o} \> \verb|\v{o}| \> \c{o} \> \verb|\c{o}| \> \a'{o} \> \verb|\'{o}| \\ \a={o} \> \verb|\={o}| \> \H{o} \> \verb|\H{o}| \> \d{o} \> \verb|\d{o}| \> \^{o} \> \verb|\^{o}| \> \.{o} \> \verb|\.{o}| \\ \t{oo} \> \verb|\t{oo}| \> \b{o} \> \verb|\b{o}| \\ \"{o} \> \verb|\"{o}| \> \u{o} \> \verb|\u{o}| \\ \end{tabbing} \caption{A bunch of different types of `o'. This table may fail with older versions of Word. Other RTF readers may get the unicode right, but fail with the table formatting.} \end{table} \end{document} latex2rtf-2.3.18/test/oddchars.tex0000777000175000017500000001075113050672360017221 0ustar wilfriedwilfried\documentclass{article} \usepackage[T1]{fontenc} \usepackage{textcomp} \begin{document} \begin{table} \begin{center} \begin{tabular}{ll} \verb#?`# & ?` \\ \verb#!'# & !` \\ \verb#\aleph# & $\aleph$\\ \verb#\wp# & $\wp$\\ \verb#\Re# & $\Re$\\ \verb#\Im# & $\Im$\\ \verb#\leftarrow# & $\leftarrow$\\ \verb#\Leftarrow# & $\Leftarrow$\\ \verb#\rightarrow# & $\rightarrow$\\ \verb#\Rightarrow# & $\Rightarrow$\\ \verb#\forall# & $\forall$\\ \verb#\exists# & $\exists$\\ \verb#\neg# & $\neg$\\ \verb#\partial# & $\partial$\\ \verb#\backslash# & $\backslash$\\ \verb#\infty# & $\infty$\\ \verb#\clubsuit# & $\clubsuit$\\ \verb#\diamondsuit# & $\diamondsuit$\\ \verb#\heartsuit# & $\heartsuit$\\ \verb#\spadesuit# & $\spadesuit$\\ \verb#\pounds# & \pounds\\ \verb#\varpi# & $\varpi$\\ \verb#\alpha# & $\alpha$\\ \verb#\beta# & $\beta$\\ \verb#\Sigma# & $\Sigma$\\ \verb#\Pi# & $\Pi$ \end{tabular} \caption{Unusual characters from Symbol font} \end{center} \end{table} \pagebreak \begin{table} \begin{center} \begin{tabular}{ll} \verb#\dag# & \dag\\ \verb#\ddag# & \ddag\\ \verb#\S# & \S\\ \verb#\P# & \P\\ \verb#\copyright# & \copyright\\ \verb#\ae# & \ae\\ \verb#\AE# & \AE\\ \verb#\aa# & \aa\\ \verb#\AA# & \AA\\ \verb#\o# & \o\\ \verb#\O# & \O\\ \verb#\ss# & \ss\\ \verb#\"o# & \"o\\ \verb#\~o# & \~o\\ \verb#\^o# & \^o\\ \verb#\`o# & \`o\\ \verb#\'o# & \'o\\ \verb#\~n# & \~n\\ \verb#\~N# & \~N\\ \verb#\oe# & \oe\\ \verb#\OE# & \OE\\ \verb#$\sim$# & $\sim$\\ \verb#\~{}# &\~{} \end{tabular} \caption{Unusual characters from ansi font} \end{center} \end{table} \pagebreak \begin{table} \begin{center} \begin{tabular}{ll} \verb#\triangleleft# & $\triangleleft$ \\ \verb#\triangleright# & $\triangleright$ \\ \verb#\vdots# & $\vdots$ \\ \verb#\ddots# & $\ddots$ \\ \verb#\mapsto# & $\mapsto$ \\ \verb#\prec# & $\prec$ \\ \verb#\hbar# & $\hbar$ \\ \verb#\ell# & $\ell$ \\ \verb#\succ# & $\succ$ \end{tabular} \caption{Unusual characters from MT Extra font} \end{center} \end{table} \begin{table} \begin{center} \begin{tabular}{ccc} \verb# \"i # & three dots & \"i \\ \verb#\"{i}# & three dots & \"{i} \\ \verb# \"\i# & two dots & \"\i \\ \verb#\"{\i}# & two dots & \"{\i} \\ \verb#\'{\i}# & acute accent & \'{\i} \\ \verb#\'i# & acute accent & \'{\i} \\ \verb#\`{\i}# & grave accent & \`{\i} \\ \end{tabular} \caption{Various forms of i} \end{center} \end{table} \begin{table} \begin{center} \begin{tabular}{ll} \verb#\gg# & $\gg$\\ \verb#\ll# & $\ll$\\ \verb#\backslash# & $\backslash$ \\ \verb#\vert# & $\vert$ \\ \verb#\|# & $\|$ \\ \verb#1\over2# & $1\over2$ \end{tabular} \caption{Unusual characters that still get faked} \end{center} \end{table} \begin{table} \begin{center} \begin{tabular}{ll} \verb#\textasciicircum#&\textasciicircum\\ \verb#\textasciitilde#&\textasciitilde\\ \verb#\textbackslash#&\textbackslash\\ \verb#\textbullet#&\textbullet\\ \verb#\textcent#&\textcent (requires textcomp package)\\ \verb#\textcompwordmark#&\textcompwordmark\\ \verb#\textcopyright#&\textcopyright\\ \verb#\textcurrency#&\textcurrency (requires textcomp package)\\ \verb#\textdegree#&\textdegree\\ \verb#\textdiv#&\textdiv\\ \verb#\textemdash#&\textemdash\\ \verb#\textendash#&\textendash\\ \verb#\textexclamdown#&\textexclamdown\\ \verb#\textgreater#&\textgreater\\ \verb#\textless#&\textless\\ \verb#\textmonetary# &replaced by textcurrency\\ \verb#\textmu#&\textmu\\ \verb#\textmultiply# &replaced by texttimes\\ \verb#\textonesuperior#&\textonesuperior\\ \verb#\textordfeminine#&\textordfeminine\\ \verb#\textordmasculine#&\textordmasculine\\ \verb#\textparagraph#&\textparagraph\\ \verb#\textperiodcentered#&\textperiodcentered\\ \verb#\textpm#&\textpm\\ \verb#\textquestiondown#&\textquestiondown\\ \verb#\textquotedbl#&\textquotedbl\\ \verb#\textquotedblleft#&\textquotedblleft\\ \verb#\textquotedblright#&\textquotedblright\\ \verb#\textquoteleft#&\textquoteleft\\ \verb#\textquoteright#&\textquoteright\\ \verb#\textregistered#&\textregistered\\ \verb#\textsection#&\textsection\\ \verb#\textthreesuperior#&\textthreesuperior\\ \verb#\texttimes#&\texttimes (requires textcomp package)\\ \verb#\texttrademark#&\texttrademark\\ \verb#\texttwosuperior#&\texttwosuperior\\ \verb#\textvisiblespace#&\textvisiblespace\\ \verb#\guillemotleft#&\guillemotleft\\ \verb#\guillemotright#&\guillemotright\\ \verb#\guilsinglleft#&\guilsinglleft\\ \verb#\guilsinglright#&\guilsinglright\\ \verb#\quotedblbase#&\quotedblbase\\ \verb#\quotesinglbase#&\quotesinglbase\\ \end{tabular} \caption{A collection of commands handled by direct.cfg} \end{center} \end{table} \end{document} latex2rtf-2.3.18/test/bib_apa.bib0000777000175000017500000000040513050672360016736 0ustar wilfriedwilfried@article{art1, author="First Last", title="A fictitious journal article", year=1900, journal="Journal of nothingness", volume=2, pages="1-2"} @book{boo1, author="Respectable Writer", title="A silly book", year=2000, publisher="PublishCo", address="Somewhere"} latex2rtf-2.3.18/test/defs.tex0000777000175000017500000000226213050672360016351 0ustar wilfriedwilfried\documentclass{article} \def\badcheck{A penalty has been added because your check to us was not honored by your bank.\par} \def\row#1#2{(#1_1,\ldots,#1_#2)} \long\def\result#1{{\smallskip\moveright0.1\textwidth\vbox{\hsize 0.8\textwidth\footnotesize#1}}\smallskip} \newcommand{\foo}[1]{} \newcommand{\optioncmd}[2][default]{Optional parameter 1 = #1 -- parameter 2 = #2.\\} \newcommand{\egstart}{\begin{center}\begin{figure}} \newcommand{\egmid}{\end{figure}\hfill\begin{figure}} \newcommand{\egend}{\end{figure}\end{center}} \newcommand{\eempty}[1]{} \begin{document} Here is the first macro: \badcheck Yet another macro $$ \row xn $$ This should be blank between the parentheses (\eempty{b}) And yet another macro \result{% Words within a sentence \foo\ are ended by spaces. One space between words is equivalent to any number. We are only interested in separating one word from the next, not in formatting the space between them. } text \egstart some example \egend Command with optional parameters \optioncmd[p1]{p2} \optioncmd{p2} %latex2rtf: This should only show up in the .rtf file created by %latex2rtf: latex2rtf! \end{document} latex2rtf-2.3.18/test/babel_czech.tex0000777000175000017500000002026713050672355017662 0ustar wilfriedwilfried\documentclass[a4paper,12pt]{article} \usepackage[czech]{babel} \usepackage{amsfonts} \usepackage{amssymb} \usepackage[T1]{fontenc} \usepackage[cp1250]{inputenc} \begin{document} \section{Vektorové pole} Integrální rovnici na hranici oblasti lze formulovat nejen pro skalární pole $G$, ale i pro vektorové pole ${\bf grad}\; G$. V mechanice tekutin má gradient skalárního pole potenciálu význam rychlosti proudění. Rozbor vektorového pole rychlosti je základem řady inženýrských metod. Výhodou jsou názorné postupy využívající superpozici proudových polí vhodně zvolených singularit. Často mají poloempirický základ, lze je však obvykle pokládat za zvláštní případy obecné skupiny úloh okrajových prvků. \subsection{Prostorová úloha} Skalární funkce $G$ je v bodě uvnitř oblasti $V$ ohraničené plochou $S$ s vnější normálou ${\bf n}$ určna vztahem $$4 \pi G = \int_S \left( {1 \over r} {\partial G \over \partial n} + G {{\bf r} \circ {\bf n} \over r^3} \right) \; \mathrm{d}S - \int_V {1 \over r} \Delta G \; \mathrm{d}V. $$ Pro zjednodušení zápisu zavedeme pro vliv jednoduché vrstvy a dvojvrstvy označení $$ q_1({\bf r}) = {1 \over r}, $$ $$ q_2({\bf r}) = {{\bf r} \circ {\bf n} \over r^3}. $$ Gradient skalární funkce $G$ je pak dán vztahem $$4 \pi \; {\bf grad}\; G = \int_S \left( {\bf grad}\; q_1({\bf r})\; {\partial G \over \partial n} + G \; {\bf grad}\; q_2({\bf r}) \right) \; \mathrm{d}S - \int_V {\bf grad}\; q_1({\bf r})\; \Delta G \; \mathrm{d}V. $$ Hodnoty ${\bf grad}\; q_1({\bf r})$ a ${\bf grad}\; q_1({\bf r})$ přitom odpovídají změně polohy bodu $r=0$. Obdobně jako se při průchodu hranicí skokově mění potenciál dvojvrstvy, dochází zde ke skokové změně gradientu jednoduché vrstvy. Pro bod na hranici $S$ platí $$ \int_S {\bf grad}\; q_1({\bf r})\; {\partial G \over \partial n} = \pm 2 \pi\;{\bf n}_0\; {\partial G \over \partial n}_{(r=0) \in S} + \int_{S(r\neq 0)} {\bf grad}\; q_1({\bf r})\; {\partial G \over \partial n}\; \mathrm{d}S,$$ kde znaménko plus přísluší bodu v nekonečně malé vzdálenosti od hranice uvnitř oblasti $V$ a znaménko mínus odpovídajícímu bodu vně oblasti. Dosazením dostaneme pro bod na hranici uvnitř oblasti $$4 \pi \; {\bf grad}\; G_{(r=0) \in S} - 2 \pi\;{\bf n}_0\; {\partial G \over \partial n}_{(r=0) \in S} = $$ $$ \int_{S(r\neq 0)} {\bf grad}\; q_1({\bf r})\; {\partial G \over \partial n}\; \mathrm{d}S + \int_S G \; {\bf grad}\; q_2({\bf r}) \; \mathrm{d}S - \int_V {\bf grad}\; q_1({\bf r})\; \Delta G \; \mathrm{d}V. $$ Obě strany rovnice násobíme skalárně vektorem normály v kontrolním bodě ${\bf n}_0$. Uvážíme-li že platí $$ {\bf grad}\;G_{(r=0) \in S} \circ {\bf n}_0= {\partial G \over \partial n}_{(r=0) \in S}.$$ dostaneme jako výsledek skalární integrální vztah $$2 \pi \; {\partial G \over \partial n}_{(r=0) \in S} = \int_{S(r\neq 0)} {\bf grad}\; q_1({\bf r})\;\circ\; {\bf n}_0\; {\partial G \over \partial n}\; \mathrm{d}S + $$ $$ \int_S G \; {\bf grad}\; q_2({\bf r})\;\circ\; {\bf n}_0 \; \mathrm{d}S - \int_V {\bf grad}\; q_1({\bf r})\;\circ\; {\bf n}_0\; \Delta G \; \mathrm{d}V. $$ \subsection{Rovinná úloha} V rovinné úloze postupujeme zcela analogicky. Pro vliv jednoduché vrstvy a dvojvrstvy zavedeme označení $$ q_1({\bf r}) = \ln {1 \over r}, $$ $$ q_2({\bf r}) = {{\bf r} \circ {\bf n} \over r^2}. $$ Skokové změně gradientu jednoduché vrstvy na hranici odpovídá v rovinném případě konstanta $\pm \pi$. Výsledkem je integrální vztah $$ \pi \; {\partial G \over \partial n}_{(r=0) \in S} = \int_{S(r\neq 0)} {\bf grad}\; q_1({\bf r})\;\circ\; {\bf n}_0\; {\partial G \over \partial n}\; \mathrm{d}S + $$ $$\int_S G \; {\bf grad}\; q_2({\bf r})\;\circ\; {\bf n}_0 \; \mathrm{d}S - \int_V {\bf grad}\; q_1({\bf r})\;\circ\; {\bf n}_0\; \Delta G \; \mathrm{d}V. $$ \subsection{Vírová vlákna a vírové plochy} V dosud uvedených vztazích vystupují singularity typu propadů nebo zdrojů a dipóly. Vliv dipólů může být transformován na vliv vírových vláken a vírových ploch. Jejich použití může výrazně ovlivnit tvorbu algoritmů řešení. Zjednodušení je významné zvláště u geometricky komplikovaných prostorových úloh. Metody využívající vírové singularity lze považovat za klasické metody mechaniky tekutin. Byly běžně používány v inženýrské praxi již před nástupem výkonné výpočetní techniky. Dlouholeté zkušenosti umožnily v šedesátých letech tohoto století, kdy počítače začaly být obvyklým nástrojem pro řešení úloh mechaniky kontinua, jejich prudký rozvoj pokračující až do současnosti. Řada problémů vede dokonce k úloham, kde není třeba zavádět vliv zdrojů a propadů. Typickou hranicí jsou nepropustné stěny pevných těles obtékaných proudem tekutiny. Pro tyto případy lze vypracovat vysoce účinné univerzální algoritmy \footnote{Zdánlivá fyzikální \uv{průhlednost} vírových metod v sobě ovšem skrývá jistá nebezpečí. Lze zaznamenat řadu pokusů o jejich použití v případech, kdy je nezbytné v úloze uvážit spolu s víry i zdroje a propady. Nebezpečí chybné formulace bývá podceněno, nebo řešení může vést k na první pohled \uv{fyzikálně interpretovatelným} výsledkům.}. Stručně uvedeme vybrané pojmy a výsledky řešení, které budeme dále používat. Bližší podrobnosti a odvození lze nalézt ve specializovaných publikacích, např.\cite{lojcjanskij},\cite{batchelor}. \begin{figure} \hskip 40mm %\epsfxsize 40mm \epsffile{cz1250b.eps} \caption{Vírové vlákno v rovinné úloze.} \label{rovvir} \end{figure} Sledujme v rovině bodový vír, přesněji nekonečné vírové vlákno kolmé k této rovině, v poloze určené vektorem {\bf r}. Vlákno má cirkulaci $\Gamma$, kterou pokládáme za kladnou, pokud vír rotuje proti směru hodinových ručiček ( obr.~\ref{rovvir} ). V bodě $r=0$ vlákno indukuje rychlost $$ {\bf v} = {\Gamma \over 2 \pi}\; {\bf g}({\bf r}),$$ $$ {\bf g}({\bf r})= { {\bf r} \times {\bf k} \over r^2 },$$ kde ${\bf k}$ je jednotkový vektor ve směru osy $z$. Potenciálem bodového víru je mnohoznačná funkce obsahující aditivní konstantu která je násobkem cirkulace $\Gamma$. Předpokládáme-li, že je potenciál roven nule v nekonečně vzdáleném bodě osy $x$ ( $x \to \infty,$ $y=0$ ), můžeme napsat $$ \varphi \; ({\bf r}) = {\Gamma \over 2 \pi } \arctan \left( { y \over x } + m \pi \right) + n \Gamma, $$ $$ m = \left \{ \matrix{ \hfill 0 & \mathrm{pro} & x>0, \hfill \cr \hfill 1 & \mathrm{pro} & x<0, y>0, \cr -1 & \mathrm{pro} & x<0, y<0, \cr }\right .$$ kde $n$ je libovolné celé číslo. \begin{figure} \hskip 35mm %\epsfxsize 50mm \epsffile{cz1250a.eps} \caption{Biot--Savartův zákon.} \label{bisav} \end{figure} V prostoru je rychlost indukováná elementárním úsekem vírového vlákna dána Biott--Savartovým zákonem ( obr.~\ref{bisav} ) $$ \mathrm{d} {\bf v} = {\Gamma \over 4 \pi }\; { {\bf r} \times \mathrm{d}{\bf r} / \mathrm{d} s \over r^2 }\; \mathrm{d}s. $$ Odpovídající vztah pro potenciál neexistuje. Pole rychlosti indukované obecným úsekem vírového vlákna nemá potenciál. Potenciální je však proudění indukované uzavřeným vírovým vláknem, vláknem sahajícím do nekonečna, případně končícím na hranici oblasti. \begin{figure} \hskip 35mm %\epsfxsize 50mm \epsffile{cz1250c.eps} \caption{Vírová plocha.} \label{virplo} \end{figure} Víry rozložené spojitě na ploše $S$ ( obr.~\ref{virplo} ) indukují rychlost $$ {\bf v} = {1 \over 4 \pi } \int_S { {\bf r} \times {\bf k} \over r^2 }\; \mathrm{d}S.$$ Vektorová veličina ${\bf k}$ označuje místní intenzitu vírů vázanou s cirkulací $\Gamma$ vztahem $\Gamma \; \mathrm{d} s = k \; \mathrm{d} S$. Leží-li bod $r=0$ na vírové ploše, je třeba uvážit skokovou změnu tečné složky rychlosti při průchodu plochou. Platí $$ {\bf v}_{(r=0) \in S} = \pm \; {1 \over 2 }\; {\bf n}_0 \times {\bf k}_{(r=0)} + {1 \over 4 \pi } \int_{S(r\neq 0)} \!\!\! { {\bf r} \times {\bf k} \over r^2 }\; \mathrm{d}S.$$ Znaménko plus přitom odpovídá vnitřní straně plochy \footnote{Zachováváme konvenci \uv{vnější} normály, i když vírová plocha nemusí být typickou hranicí tělesa nebo vyšetřovaného objemu.}. Pro bod na vírové je integrál singulární \footnote{ Singularita má charakter $\int 1 / x \; \mathrm{d}x .$}. Význam má jeho hlavní hodnota v Cauchyho smyslu. \begin{thebibliography}{1} \bibitem{lojcjanskij} Lojcjanskij,L.G.:Mechanika židkosti i gaza, Moskva 1970. \bibitem{batchelor} Batchelor,G.K.:An Introduction to Fluid Dynamics, Cambridge 1970. \end{thebibliography} \end{document} latex2rtf-2.3.18/test/bib_natbib1.tex0000777000175000017500000000725113050672360017567 0ustar wilfriedwilfried\documentclass{article} \usepackage[longnamesfirst]{natbib} \begin{document} \verb#\usepackage[longnamesfirst]{natbib}#\\ \begin{center} \begin{tabular}{l} \verb#\cite{hooper1986,ortony1988,russell1979}# \\ \cite{hooper1986,ortony1988,russell1979} \\\hline \hline % \verb#\citet{allen1995a}# \\ \citet{allen1995a} \\\hline \verb#\citet[chap.~3]{allen1995a}# \\ \citet[chap.~3]{allen1995a} \\\hline \verb#\citet*{hooper1986,ortony1988,russell1979}# \\ \citet*{hooper1986,ortony1988,russell1979} \\\hline \verb#\citet{hooper1986,ortony1988,russell1979}# \\ \citet{hooper1986,ortony1988,russell1979} \\\hline \verb#\citet{allen1995a,allen1995b}# \\ \citet{allen1995a,allen1995b} \\\hline\hline % \verb#\citep{allen1995a}# \\ \citep{allen1995a} \\\hline \verb#\citep[chap.~3]{allen1995a}# \\ \citep[chap.~3]{allen1995a} \\\hline \verb#\citep[in][chap.~3]{allen1995a}# \\ \citep[in][chap.~3]{allen1995a} \\\hline \verb#\citep{allen1995a,allen1995b}# \\ \citep{allen1995a,allen1995b} \\\hline \verb#\citep{allen1995a,allen1996}# \\ \citep{allen1995a,allen1996} \\\hline \verb#\citep{hooper1986,ortony1988,russell1979}# \\ \citep{hooper1986,ortony1988,russell1979} \\\hline \verb#\citep[in][chap.~3]{allen1995a,hooper1986}# \\ \citep[in][chap.~3]{allen1995a,hooper1986} \\\hline [Fails in 1.9.15] \verb#\citep[in][chap.~3]{allen1995a,allen1995b}# \\ \citep[in][chap.~3]{allen1995a,allen1995b} \\\hline % \verb#\citeauthor{ortony1988}# \\ \citeauthor{ortony1988} \\\hline \verb#\citeauthor{allen1995b,allen1995a}# \\ \citeauthor{allen1995b,allen1995a} \\\hline \verb#\citeauthor*{ortony1988}# \\ \citeauthor*{ortony1988} \\\hline \verb#\citeauthor*{allen1995b,allen1995a}# \\ \citeauthor*{allen1995b,allen1995a} \\\hline\hline % \verb#\citeyear{allen1995b}# \\ \citeyear{allen1995b} \\\hline \verb#\citeyear[chap.~3]{allen1995a}# \\ \citeyear[chap.~3]{allen1995a} \\\hline \verb#\citeyear[in][chap.~3]{allen1995a}# \\ \citeyear[in][chap.~3]{allen1995a} \\\hline \verb#\citeyear{allen1995b,allen1995a}# \\ \citeyear{allen1995b,allen1995a} \\\hline\hline % \verb#\citeyearpar{allen1995b}# \\ \citeyearpar{allen1995b} \\\hline \verb#\citeyearpar[chap.~3]{allen1995a}# \\ \citeyearpar[chap.~3]{allen1995a} \\\hline \verb#\citeyearpar[in][chap.~3]{allen1995a}# \\ \citeyearpar[in][chap.~3]{allen1995a} \\\hline \verb#\citeyearpar{allen1995b,allen1995a}# \\ \citeyearpar{allen1995b,allen1995a} \\ \hline\hline \end{tabular} \end{center} \begin{thebibliography}{5} \expandafter\ifx\csname natexlab\endcsname\relax\def\natexlab#1{#1}\fi \bibitem[Allen and Carifio(1995{\natexlab{a}})]{allen1995b} B.~D. Allen and J.~Carifio. \newblock The relationship between emotional states and solving complex mathematical problems. \newblock May 1995{\natexlab{a}}. \bibitem[Allen and Carifio(1995{\natexlab{b}})]{allen1995a} Bradford~D. Allen and Jim Carifio. \newblock A {M}ethodology for the {A}nalysis of {E}motion {E}xperiences during {M}athematical {P}roblem {S}olving. \newblock March 1995{\natexlab{b}}. \bibitem[Allen and Carifio(1996)]{allen1996} Bradford~D. Allen and Jim Carifio. \newblock Fake title for testing. \newblock March 1996. \bibitem[Hooper(1986)]{hooper1986} J.~Hooper. \newblock {\em The 3-{P}ound {U}niverse}. \newblock Teacher, Inc, Los Angeles, 1986. \bibitem[Ortony et~al.(1988)Ortony, Clore, and Collins]{ortony1988} A.~Ortony, G.~Clore, and A.~Collins. \newblock {\em The {C}ognitive {S}tructure of {E}motions}. \newblock Cambridge University Press, New York, 1988. \bibitem[Russell(1979)]{russell1979} J.~A. Russell. \newblock Affect {S}pace is {B}ipolar. \newblock {\em Journal of Personality and Social Psychology}, 37\penalty0 (3):\penalty0 345--356, 1979. \end{thebibliography} \end{document} latex2rtf-2.3.18/test/dblspace.aux0000644000175000017500000000206113664476467017215 0ustar wilfriedwilfried\relax \@writefile{toc}{\contentsline {chapter}{\numberline {1}First Chapter}{3}} \@writefile{lof}{\addvspace {10\p@ }} \@writefile{lot}{\addvspace {10\p@ }} \@writefile{toc}{\contentsline {section}{\numberline {1.1}Intro}{3}} \newlabel{fig1}{{1.1}{3}} \@writefile{lof}{\contentsline {figure}{\numberline {1.1}{\ignorespaces This is figure 1}}{3}} \@writefile{toc}{\contentsline {section}{\numberline {1.2}Method}{4}} \newlabel{fig2}{{1.2}{5}} \@writefile{lof}{\contentsline {figure}{\numberline {1.2}{\ignorespaces This is figure 2}}{5}} \@writefile{toc}{\contentsline {chapter}{\numberline {2}Second Chapter}{6}} \@writefile{lof}{\addvspace {10\p@ }} \@writefile{lot}{\addvspace {10\p@ }} \@writefile{toc}{\contentsline {section}{\numberline {2.1}Intro}{6}} \newlabel{fig3}{{2.1}{6}} \@writefile{lof}{\contentsline {figure}{\numberline {2.1}{\ignorespaces This is figure 3}}{6}} \@writefile{toc}{\contentsline {section}{\numberline {2.2}Method}{7}} \newlabel{fig4}{{2.2}{7}} \@writefile{lof}{\contentsline {figure}{\numberline {2.2}{\ignorespaces This is figure 4}}{7}} latex2rtf-2.3.18/test/bib_natbib4.tex0000777000175000017500000001705013050672360017570 0ustar wilfriedwilfried\documentclass{article} \usepackage[comma,square,sort&compress]{natbib} \bibliographystyle{apalike} \parindent=0.0in \begin{document} \begin{table} \begin{center} \begin{tabular}{l} \verb#\citep{allen1995a}# \\ \citep{allen1995a} \\ (Allen and Carifio, 1995b)\\ \hline \verb#\citep[chap.~3]{allen1995a}# \\ \citep[chap.~3]{allen1995a} \\ (Allen and Carifio, 1995b, chap.~3)\\ \hline \verb#\citep[chap.~2]{chung2002}#\\ \citep[chap.~2]{chung2002} \\ (Chung and Worster, 2002, chap.~2)\\ \hline \verb#\citep[in][chap.~3]{allen1995a}# \\ \citep[in][chap.~3]{allen1995a} \\ (in Allen and Carifio, 1995b, chap.~3)\\ \hline \verb#\citep[in][]{allen1995a}# \\ \citep[in][]{allen1995a} \\ (in Allen and Carifio, 1995b)\\ \hline \verb#\citep[][chap.~3]{allen1995a}# \\ \citep[][chap.~3]{allen1995a} \\ (Allen and Carifio, 1995b, chap.~3)\\ \hline \verb#\citep[e.g.][chap.~2]{bustos1999}#\\ \citep[e.g.][chap.~2]{bustos1999} \\ (e.g. Bustos et al., 1999, chap. 2)\\ \hline \verb#\citep[e.g.][]{chung2002}#\\ \citep[e.g.][]{chung2002} \\ (e.g. Chung and Worster, 2002)\\ \end{tabular} \end{center} \caption{Citation \texttt{citep} entries with a single entry} \end{table} \begin{table} \begin{center} \begin{tabular}{l} \verb#\citep{allen1995a,allen1995b}# \\ \citep{allen1995a,allen1995b} \\ (Allen and Carifio, 1995b,a) \\ \hline \verb#\citep{allen1995a,allen1996}# \\ \citep{allen1995a,allen1996} \\ (Allen and Carifio, 1995b, 1996) \\ \hline \verb#\citep[e.g.][]{allen1995a,allen1996}# \\ \citep[e.g.][]{allen1995a,allen1996} \\ (e.g. Allen and Carifio, 1995b, 1996) \\ \hline \verb#\citep{hooper1986,ortony1988,russell1979}# \\ \citep{hooper1986,ortony1988,russell1979} \\ (Hooper, 1986; Ortony et al., 1988; Russell, 1979)\\ \hline \verb#\citep[e.g.][]{chung2002, biot1941}#\\ \citep[e.g.][]{chung2002, biot1941} \\ (e.g. Chung and Worster, 2002; Biot, 1941)\\ \hline \verb#\citep[e.g.][]{chung2002, biot1941}#\\ \citep[e.g.][]{chung2002, biot1941} \\ (e.g. Chung and Worster, 2002; Biot, 1941)\\ \hline \verb#\citep[e.g.][]{bustos1999, chung2002, biot1941}#\\ \citep[e.g.][]{bustos1999, chung2002, biot1941} \\ (e.g. Bustos et al., 1999; Chung and Worster, 2002; Biot, 1941)\\ \end{tabular} \end{center} \caption{Citation \texttt{citep} entries with a multiple entries} \end{table} \begin{table} \begin{center} \begin{tabular}{l} \verb#\citep[chap.~3]{allen1995a,allen1995b}# \\ \citep[chap.~3]{allen1995a,allen1995b} \\ (Allen and Carifio, 1995b,a, chap.~3) \\ \hline \verb#\citep[in][chap.~3]{allen1995a,hooper1986}# \\ \citep[in][chap.~3]{allen1995a,hooper1986} \\ (in Allen and Carifio, 1995b; Hooper, 1986, chap.~3)\\ \hline \verb#\citep[in][chap.~3]{allen1995a,allen1995b}# \\ \citep[in][chap.~3]{allen1995a,allen1995b} \\ (in Allen and Carifio, 1995b,a, chap.~3)\\ \end{tabular} \end{center} \caption{Citation \texttt{citep} entries that fail in latex2rtf. I don't think that these can be used too often...how many times do you want to refer to chapter three in two different sources? These probably will not get fixed because they are rarely used and are difficult to implement in a one-pass conversion engine.} \end{table} \begin{center} \begin{tabular}{l} %% Let's test one option on a book citation %% According to p. 7 of Daly's natbib guide, a single %% option is a post--note. 1.9.14 makes it a pre--note and omits comma \verb#\citet[chap.~5]{bustos1999}#\\ \citet[chap.~5]{bustos1999}\\ Bustos et al. (1999, chap. 5)\\ \hline %% Try the starred versions \verb#\citet*{chung2002, biot1941}#\\ \citet*{chung2002, biot1941}\\ Chung and Worster (2002); Biot (1941)\\ \hline \verb#\citep*{chung2002, biot1941}#\\ \citep*{chung2002, biot1941}\\ (Chung and Worster, 2002; Biot, 1941)\\ \end{tabular} \end{center} % added by DW Monday, October 4, 2004 \begin{table} \begin{center} \begin{tabular}{l} \verb#\citealt{allen1995a}# \\ \citealt{allen1995a} \\ Allen and Carifio 1995b\\ \hline \verb#\citealt[99]{allen1995a}# \\ \citealt[99]{allen1995a} \\ Allen and Carifio 1995b, 99\\ \hline \verb#\citealt[e.g.,][99]{allen1995a}# \\ \citealt[e.g.,][99]{allen1995a} \\ Allen and Carifio e.g., 1995b, 99\\ \hline \hline \verb#\citealp{allen1995a}# \\ \citealp{allen1995a} \\ Allen and Carifio, 1995b\\ \hline \verb#\citealp[99]{allen1995a}# \\ \citealp[99]{allen1995a} \\ Allen and Carifio, 1995b, 99\\ \hline \verb#\citealp[e.g.,][99]{allen1995a}# \\ \citealp[e.g.,][99]{allen1995a} \\ e.g., Allen and Carifio, 1995b, 99\\ \end{tabular} \end{center} \caption{Citation \texttt{citealt} entries} \end{table} %\bibliography{bib_natbib3.bib} \begin{thebibliography}{} \bibitem[Allen and Carifio(1995{\natexlab{a}})]{allen1995b} B.~D. Allen and J.~Carifio. \newblock The relationship between emotional states and solving complex mathematical problems. \newblock May 1995{\natexlab{a}}. \bibitem[Allen and Carifio(1995{\natexlab{b}})]{allen1995a} Bradford~D. Allen and Jim Carifio. \newblock A {M}ethodology for the {A}nalysis of {E}motion {E}xperiences during {M}athematical {P}roblem {S}olving. \newblock March 1995{\natexlab{b}}. \bibitem[Allen and Carifio(1996)]{allen1996} Bradford~D. Allen and Jim Carifio. \newblock Fake title for testing. \newblock March 1996. \bibitem[Biot, 1941]{biot1941} Biot, M.~A. (1941). \newblock General theory of three-dimensional consolidation. \newblock {\em Journal of Applied Physics}, 12:155--165. \bibitem[Bustos et~al., 1999]{bustos1999} Bustos, M.~C., Concha, F., B\"{u}rger, R., and Tory, E.~M. (1999). \newblock {\em Sedimentation and Thickening: Phenomenological Foundation and Mathematical Theory}, volume~8 of {\em Mathematical Modelling: Theory and Applications}. \newblock Kluwer Academic Publishers, Dordrecht. \bibitem[Chung and Worster, 2002]{chung2002} Chung, C.~A. and Worster, M.~G. (2002). \newblock Steady-state chimneys in a mushy layer. \newblock {\em Journal of Fluid Mechanics}, 455:387--411. \bibitem[Hooper(1986)]{hooper1986} J.~Hooper. \newblock {\em The 3-{P}ound {U}niverse}. \newblock Teacher, Inc, Los Angeles, 1986. \bibitem[Ortony et~al.(1988)Ortony, Clore, and Collins]{ortony1988} A.~Ortony, G.~Clore, and A.~Collins. \newblock {\em The {C}ognitive {S}tructure of {E}motions}. \newblock Cambridge University Press, New York, 1988. \bibitem[Russell(1979)]{russell1979} J.~A. Russell. \newblock Affect {S}pace is {B}ipolar. \newblock {\em Journal of Personality and Social Psychology}, 37\penalty0 (3):\penalty0 345--356, 1979. \end{thebibliography} \end{document} %% bib_natbib3.bib %% @article{biot1941, %% Author = {M. A. Biot}, %% Journal = {Journal of Applied Physics}, %% Keywords = {consolidation}, %% Pages = {155-165}, %% Title = {General theory of three--dimensional consolidation}, %% Volume = {12}, %% Year = {1941}} %% %% @article{chung2002, %% Author = {C. A. Chung and M. Grae Worster}, %% Journal = {Journal of Fluid Mechanics}, %% Keywords = {settling}, %% Pages = {387-411}, %% Title = {Steady-state chimneys in a mushy layer}, %% Volume = {455}, %% Year = {2002}} %% %% @book{bustos1999, %% Address = {Dordrecht}, %% Author = {Mar\'{\i}a Cristina Bustos and Fernando Concha and Raimund B\"{u}rger and Elmer M. Tory}, %% Keywords = {settling, constitutive, consolidation}, %% Publisher = {Kluwer Academic Publishers}, %% Series = {Mathematical Modelling: Theory and Applications}, %% Title = {Sedimentation and Thickening: Phenomenological Foundation and Mathematical Theory}, %% Volume = {8}, %% Year = {1999}} latex2rtf-2.3.18/test/keywords.rtf0000644000175000017500000001123613664476470017303 0ustar wilfriedwilfried{\rtf1\ansi\uc1\deff0\deflang1024 {\fonttbl{\f0\fnil\fcharset0 Times New Roman;} {\f1\fnil\fcharset0 Arial;} {\f2\fnil\fcharset0 Arial;} {\f3\fnil\fcharset0 Courier New;} {\f4\fnil\fcharset0 Zapf Chancery;} {\f5\fnil\fcharset0 STIXGeneral;} {\f6\fnil\fcharset0 MS Gothic;} } {\colortbl; \red0\green0\blue0; \red0\green0\blue255; \red0\green255\blue255; \red0\green255\blue0; \red255\green0\blue255; \red255\green0\blue0; \red255\green255\blue0; \red255\green255\blue255; } {\stylesheet {\s0\qj\widctlpar\f0\fs20 \snext0 Normal;} {\cs10 \additive\ssemihidden Default Paragraph Font;} {\s1\qc\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 Part;} {\s2\ql\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 heading 1;} {\s3\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 2;} {\s4\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 3;} {\s5\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 4;} {\s6\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 5;} {\s7\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 6;} {\s8\qr\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext8 rightpar;} {\s9\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext9 centerpar;} {\s10\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext10 leftpar;} {\s11\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equation;} {\s12\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationNum;} {\s13\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlign;} {\s14\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlignNum;} {\s15\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArray;} {\s16\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArrayNum;} {\s17\ql\sb120\sa120\keep\widctlpar\f0\fs20 \sbasedon0\snext0 theorem;} {\s18\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 bitmapCenter;} {\s20\qc\sb240\sa240\b\f0\fs36 \sbasedon0\snext21 Title;} {\s21\qc\sa120\f0\fs20 \sbasedon0\snext0 author;} {\s22\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext22 footer;} {\s23\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext23 header;} {\s30\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 caption;} {\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext0 Figure;} {\s32\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext32 Table;} {\s33\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext33 Tabular;} {\s34\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext34 Tabbing;} {\s35\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext35 Quote;} {\s38\ql\widctlpar\f3\fs20 \snext38 verbatim;} {\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext46 List;} {\s47\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext47 List 1;} {\s50\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 latex picture;} {\s51\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 subfigure;} {\s61\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext62 bibheading;} {\s62\ql\fi-567\li567\sb0\sa0\f0\fs20 \sbasedon0\snext62 bibitem;} {\s64\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext64 endnotes;} {\s65\ql\fi-113\li397\lin397\f0\fs20 \sbasedon0\snext65 footnote text;} {\s66\qj\fi-170\li454\lin454\f0\fs20 \sbasedon0\snext66 endnote text;} {\cs62\super \additive\sbasedon10 footnote reference;} {\cs63\super \additive\sbasedon10 endnote reference;} {\s67\ql\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext67 acronym;} {\s70\qc\sa120\b\f0\fs20 \sbasedon0\snext71 abstract title;} {\s71\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext0 abstract;} {\s80\ql\sb240\sa120\keepn\f0\b\fs20 \sbasedon0\snext0 contents_heading;} {\s81\ql\li425\tqr\tldot\tx8222\sb240\sa60\keepn\f0\fs20\b \sbasedon0\snext82 toc 1;} {\s82\ql\li512\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext83 toc 2;} {\s83\ql\li1024\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext84 toc 3;} {\s84\ql\li1536\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext85 toc 4;} {\s85\ql\li2048\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 5;} {\s86\ql\li2560\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 6;} } {\info {\title Original file was keywords.tex} {\doccomm Created using latex2rtf 2.3.18 r1266 (released May 29, 2020) on Sat May 30 17:35:20 2020 } } {\footer\pard\plain\f0\fs20\qc\chpgn\par} \paperw11960\paperh16900\facingp\margl2500\margr2560\margt2520\margb1820\pgnstart0\widowctrl\qj\ftnbj\f0\aftnnar {\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 {{\b Key words:}\tab Key word,test } \par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb300 \fi0 1 Intro\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 This is a simple file to test key words as used by Elsevier and others.\par }} }}}latex2rtf-2.3.18/test/hyperref.dvi0000644000175000017500000001271413664476470017251 0ustar wilfriedwilfried÷ƒ’Ŕ;č TeX output 2020.05.30:1735‹˙˙˙˙ďŹ! systemdict /pdfmark known{userdict /?pdfmark systemdict /exec get put}{userdict /?pdfmark systemdict /pop get put userdict /pdfmark systemdict /cleartomark get put}ifelseď’ps:SDict begin [/Producer (dvips + Distiller)/Title ()/Subject ()/Creator (LaTeX with hyperref package)/Author ()/Keywords () /DOCINFO pdfmark endňo! /DvipsToPDF{72.27 mul Resolution div} def/PDFToDvips{72.27 div Resolution mul} def/BPToDvips{72 div Resolution mul}def/BorderArrayPatch{[exch{dup dup type/integertype eq exch type/realtype eq or{BPToDvips}if}forall]}def/HyperBorder {1 PDFToDvips} def/H.V {pdf@hoff pdf@voff null} def/H.B {/Rect[pdf@llx pdf@lly pdf@urx pdf@ury]} def/H.S {currentpoint HyperBorder add /pdf@lly exch def dup DvipsToPDF 72 add /pdf@hoff exch def HyperBorder sub /pdf@llx exch def} def/H.L {2 sub dup/HyperBasePt exch def PDFToDvips /HyperBaseDvips exch def currentpoint HyperBaseDvips sub /pdf@ury exch def/pdf@urx exch def} def/H.A {H.L currentpoint exch pop vsize 72 sub exch DvipsToPDF HyperBasePt sub sub /pdf@voff exch def} def/H.R {currentpoint HyperBorder sub /pdf@ury exch def HyperBorder add /pdf@urx exch def currentpoint exch pop vsize 72 sub exch DvipsToPDF sub /pdf@voff exch def} defďpapersize=614.295pt,794.96999ptŽďţps:SDict begin /product where{pop product(Distiller)search{pop pop pop version(.)search{exch pop exch pop(3011)eq{gsave newpath 0 0 moveto closepath clip/Courier findfont 10 scalefont setfont 72 72 moveto(.)show grestore}if}{pop}ifelse}{pop}ifelse}if endŸ˙ ‘<˙ ďps:SDict begin H.S endďps:SDict begin H.R endďDps:SDict begin [/View [/XYZ H.V]/Dest (page.1) cvn /DEST pdfmark endŽŽ y ýŁ ?‘> ýÚďYps:SDict begin [/Count -0/Dest (section.1) cvn/Title (The first section) /OUT pdfmark endďTps:SDict begin [/Count -1/Dest (section.2) cvn/Title (Random Stuff) /OUT pdfmark endďPps:SDict begin [/Count -0/Dest (subsection.2.1) cvn/Title (url) /OUT pdfmark endď^ps:SDict begin [/Count -0/Dest (section.3) cvn/Title (About paragraph breaks) /OUT pdfmark endďNps:SDict begin [/PageMode /UseOutlines/Page 1/View [/Fit] /DOCVIEW pdfmark endď/ps:SDict begin [ {Catalog}<<>> /PUT pdfmark endďps:SDict begin H.S endďps:SDict begin 12 H.A endďGps:SDict begin [/View [/XYZ H.V]/Dest (Doc-Start) cvn /DEST pdfmark endďps:SDict begin H.S endďps:SDict begin 12 H.A endďGps:SDict begin [/View [/XYZ H.V]/Dest (section.1) cvn /DEST pdfmark endŸ óÂÖN ff cmbx12ş1Ž‘LËThe–ff rst“sectionŽŠçóKń`y cmr10˛hello–UUa“ďps:SDict begin H.S endw¸ăeirdŽ‘ِŸů9ďps:SDict begin H.R endŽ‘ِď÷ps:SDict begin [/H /I/Border [0 0 1]BorderArrayPatch/Color [0 1 1]/Action <>/Subtype /Link H.B /ANN pdfmark end“referenceޤ ‘a–UUsecond“reference“ŸńÇďps:SDict begin H.S endŽ“tugŽ‘ÇŸůŮfďps:SDict begin H.R endŽ‘Çď–ps:SDict begin [/H /I/Border [0 0 1]BorderArrayPatch/Color [0 1 1]/Action <>/Subtype /Link H.B /ANN pdfmark end“to“the“T‘ţU>Ÿ'EŽ‘ăxX“w¸ăebsiteŽĄ‘whicš¸ăh–UUwhen“applied“as“follo˜ws:ŽŸ‹ďps:SDict begin H.S endďps:SDict begin 12 H.A endďGps:SDict begin [/View [/XYZ H.V]/Dest (section.2) cvn /DEST pdfmark endŸ9ş2Ž‘LËRandom‘ffStu ŽŚ˛This–UUis“vš¸ăery“depGenden˜t“on“`óň"V cmbx10ť??Ž› Ün˛'“(see“p.ť??Ž˜˛).ŽŸ~6ďps:SDict begin H.S endďps:SDict begin 12 H.A endďLps:SDict begin [/View [/XYZ H.V]/Dest (subsection.2.1) cvn /DEST pdfmark endŸ €óÂÖN  cmbx12˝2.1Ž‘ŔurlŽŸuT˛W‘˙*Şe–ń9can“use›ń8the“óßę>/Subtype /Link H.B /ANN pdfmark end˛.ŽĄ‘The–UUž\nolinkurl{}“˛is“similar“but“non-functional:‘qÇžhttp://www.tug.org˛.ŽĄ‘No¸ăw–8ăthis“link“Ÿ8äďps:SDict begin H.S endŽ“žhttp://latex2rtf.sourceforge.net/some%20link.htmlŽ’xPŸů9ďps:SDict begin H.R endŽ’xPď´ps:SDict begin [/H /I/Border [0 0 1]BorderArrayPatch/Color [0 1 1]/Action <>/Subtype /Link H.B /ANN pdfmark end“˛doGesŽĄnot–tCreally“exist,‘{˙but›tDit“should“sho¸ăw“up“in˜the“R‘˙*ŞTF‘t;doGcumen¸ăt˜without“a“h¸ăypGer-ŽĄlink.‘qÇIt–UUshould“still“ha•¸ăv“e–UUa“link“in“the“PDF“ le“created“using‘xâžpdflatex˛.ŽŸJ¨ďps:SDict begin H.S endďps:SDict begin 12 H.A endďGps:SDict begin [/View [/XYZ H.V]/Dest (section.3) cvn /DEST pdfmark endŸÇş3Ž‘LËAbs3out–ffparagraph“breaksŽŚ˛There–UUshould“bšGe“a“paragraph“break“b˜et•¸ăw“een–UUthese“t•¸ăw“o‘UUurls.ŽĄ‘Ÿ8äďps:SDict begin H.S endŽ‘žhttp://www.tug.org/oneŽ’‚žŸů9ďps:SDict begin H.R endŽ’‚žď™ps:SDict begin [/H /I/Border [0 0 1]BorderArrayPatch/Color [0 1 1]/Action <>/Subtype /Link H.B /ANN pdfmark end˛.ŽĄ‘Ÿ8äďps:SDict begin H.S endŽ‘žhttp://www.tug.org/twoŽ’‚žŸů9ďps:SDict begin H.R endŽ’‚žď™ps:SDict begin [/H /I/Border [0 0 1]BorderArrayPatch/Color [0 1 1]/Action <>/Subtype /Link H.B /ANN pdfmark end˛.ŽŽŸ’č1ŽŽŽŒř*ƒ’Ŕ;čy—óßę Babel <3.18> and hyphenation patterns for 8 language(s) loaded. (/usr/share/texlive/texmf-dist/tex/latex/base/latex209.def File: latex209.def 2015/02/22 v0.53 Standard LaTeX file Entering LaTeX 2.09 COMPATIBILITY MODE ************************************************************* !!WARNING!! !!WARNING!! !!WARNING!! !!WARNING!! This mode attempts to provide an emulation of the LaTeX 2.09 author environment so that OLD documents can be successfully processed. It should NOT be used for NEW documents! New documents should use Standard LaTeX conventions and start with the \documentclass command. Compatibility mode is UNLIKELY TO WORK with LaTeX 2.09 style files that change any internal macros, especially not with those that change the FONT SELECTION or OUTPUT ROUTINES. Therefore such style files MUST BE UPDATED to use Current Standard LaTeX: LaTeX2e. If you suspect that you may be using such a style file, which is probably very, very old by now, then you should attempt to get it updated by sending a copy of this error message to the author of that file. ************************************************************* \footheight=\dimen102 \@maxsep=\dimen103 \@dblmaxsep=\dimen104 \@cla=\count79 \@clb=\count80 \mscount=\count81 (/usr/share/texlive/texmf-dist/tex/latex/base/tracefnt.sty Package: tracefnt 2015/02/21 v3.0k Standard LaTeX package (font tracing) \tracingfonts=\count82 LaTeX Info: Redefining \selectfont on input line 106. ) \symbold=\mathgroup4 \symsans=\mathgroup5 \symtypewriter=\mathgroup6 \symitalic=\mathgroup7 \symsmallcaps=\mathgroup8 \symslanted=\mathgroup9 LaTeX Font Info: Redeclaring math alphabet \mathbf on input line 268. LaTeX Font Info: Redeclaring math alphabet \mathsf on input line 269. LaTeX Font Info: Redeclaring math alphabet \mathtt on input line 270. LaTeX Font Info: Redeclaring math alphabet \mathit on input line 276. LaTeX Info: Redefining \em on input line 286. (/usr/share/texlive/texmf-dist/tex/latex/base/latexsym.sty Package: latexsym 1998/08/17 v2.2e Standard LaTeX package (lasy symbols) \symlasy=\mathgroup10 LaTeX Font Info: Overwriting symbol font `lasy' in version `bold' (Font) U/lasy/m/n --> U/lasy/b/n on input line 52. ) LaTeX Font Info: Redeclaring math delimiter \lgroup on input line 332. LaTeX Font Info: Redeclaring math delimiter \rgroup on input line 334. LaTeX Font Info: Redeclaring math delimiter \bracevert on input line 336. ) (/usr/share/texlive/texmf-dist/tex/latex/base/article.cls Document Class: article 2014/09/29 v1.4h Standard LaTeX document class (/usr/share/texlive/texmf-dist/tex/latex/base/size11.clo File: size11.clo 2014/09/29 v1.4h Standard LaTeX file (size option) ) \c@part=\count83 \c@section=\count84 \c@subsection=\count85 \c@subsubsection=\count86 \c@paragraph=\count87 \c@subparagraph=\count88 \c@figure=\count89 \c@table=\count90 \abovecaptionskip=\skip41 \belowcaptionskip=\skip42 Compatibility mode: definition of \rm ignored. Compatibility mode: definition of \sf ignored. Compatibility mode: definition of \tt ignored. Compatibility mode: definition of \bf ignored. Compatibility mode: definition of \it ignored. Compatibility mode: definition of \sl ignored. Compatibility mode: definition of \sc ignored. LaTeX Info: Redefining \cal on input line 496. LaTeX Info: Redefining \mit on input line 497. \bibindent=\dimen105 ) (./hndout.sty) \c@savesection=\count91 \c@savesubsection=\count92 \egwidth=\skip43 No file essential.aux. \openout1 = `essential.aux'. LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 46. LaTeX Font Info: ... okay on input line 46. LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 46. LaTeX Font Info: ... okay on input line 46. LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 46. LaTeX Font Info: ... okay on input line 46. LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 46. LaTeX Font Info: ... okay on input line 46. LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 46. LaTeX Font Info: ... okay on input line 46. LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 46. LaTeX Font Info: ... okay on input line 46. LaTeX Font Info: External font `cmex10' loaded for size (Font) <14.4> on input line 48. LaTeX Font Info: External font `cmex10' loaded for size (Font) <7> on input line 48. LaTeX Font Info: Try loading font information for U+lasy on input line 48. (/usr/share/texlive/texmf-dist/tex/latex/base/ulasy.fd File: ulasy.fd 1998/08/17 v2.2e LaTeX symbol font definitions ) LaTeX Font Info: External font `cmex10' loaded for size (Font) <10.95> on input line 53. LaTeX Font Info: External font `cmex10' loaded for size (Font) <8> on input line 53. LaTeX Font Info: External font `cmex10' loaded for size (Font) <6> on input line 53. [1 ] LaTeX Font Info: Try loading font information for OMS+cmr on input line 229. (/usr/share/texlive/texmf-dist/tex/latex/base/omscmr.fd File: omscmr.fd 2014/09/29 v2.5h Standard LaTeX font definitions ) LaTeX Font Info: Font shape `OMS/cmr/m/n' in size <10.95> not available (Font) Font shape `OMS/cmsy/m/n' tried instead on input line 229. LaTeX Warning: Reference `fig:sample' on page 2 undefined on input line 245. LaTeX Warning: Reference `fig:result' on page 2 undefined on input line 250. [2] [3] [4] LaTeX Font Info: External font `cmex10' loaded for size (Font) <12> on input line 278. [5] [6] LaTeX Warning: Reference `sec:title' on page 7 undefined on input line 376. [7] [8] LaTeX Font Info: Font shape `OMS/cmr/m/n' in size <9> not available (Font) Font shape `OMS/cmsy/m/n' tried instead on input line 543. [9] [10] [11] LaTeX Font Info: Try loading font information for OML+cmr on input line 731. (/usr/share/texlive/texmf-dist/tex/latex/base/omlcmr.fd File: omlcmr.fd 2014/09/29 v2.5h Standard LaTeX font definitions ) LaTeX Font Info: Font shape `OML/cmr/m/n' in size <10.95> not available (Font) Font shape `OML/cmm/m/it' tried instead on input line 731. [12] LaTeX Warning: Reference `sec:styles' on page 13 undefined on input line 820. [13] [14] [15] [16] [17] (./essential.aux) LaTeX Warning: There were undefined references. LaTeX Warning: Label(s) may have changed. Rerun to get cross-references right. ) Here is how much of TeX's memory you used: 500 strings out of 494872 6009 string characters out of 6178408 62831 words of memory out of 5000000 3863 multiletter control sequences out of 15000+600000 22743 words of font info for 83 fonts, out of 8000000 for 9000 14 hyphenation exceptions out of 8191 23i,7n,23p,170b,316s stack positions out of 5000i,500n,10000p,200000b,80000s Output written on essential.dvi (17 pages, 48360 bytes). latex2rtf-2.3.18/test/enc_moroz_utf8.tex0000777000175000017500000000321313050672357020374 0ustar wilfriedwilfried%%%%%%%%%%%%%%%%%%%%%%%%%%%% -*- mode: LaTeX; coding: utf-8; -*- %%% Moroz_koi koi.tex %%% %%%%%%%%%%%%%%%%%%%%%%%%%%%% %% %% Date: 9-Aug-2002 %% Author: wd (Wolfgang.Dobler@ncl.ac.uk) % \documentclass[a4paper,12pt]{article} \usepackage[T2A]{fontenc} \usepackage[utf8]{inputenc} % older versions of ucs package %\usepackage[utf8x]{inputenc} % more recent versions (at least>=2004-17-10) \usepackage[russian]{babel} \sloppy % Hyphenation is a problem.. \author{A. S. Pushkin} \title{Зимнее утро (winter morning)} \begin{document} \maketitle \section{A section} \noindent Мороз и солнце, день чудесный!\\ Ещё ты дремлешь, друг прелестный?\\ Пора, красавица, проснись! \subsection{Accented characters} You can still use accents and diacritica as usual: \begin{quote} Übermäßiger LikĂśrgenuss in der Öffentlichkeit fĂźhrt zu Ärger \end{quote} \begin{quote} Être ou ne pas ĂŞtre --- c'est une question très intĂŠressante en Français \end{quote} \subsection{Шрифты} {\sc Конечно} {\bf всо} {\em варианты} {\TeX}овских {\sl шрифтов} доступны и с {\sf кириллицей}. \end{document} %% Emacs-Mule quick reference: %% C-\ toggles input methods (cyrillic/ascii) %% C-x RET C-\ switches to (yet) another input method %% C-x RET f changes the buffer-coding system % Make Emacs switch to russian keyboard layout % %% [Better not to use this 1] Local Variables: %% [Better not to use this 2] eval: (set-input-method 'cyrillic-jcuken) %% [Better not to use this 3] End: latex2rtf-2.3.18/test/list.tex0000777000175000017500000003214613050672360016407 0ustar wilfriedwilfried\documentclass{article} \usepackage{paralist} \begin{document} \section{First test, no text after section head} \begin{itemize} \item first item \item second item \end{itemize} this line should not be indented, the next one should be. Testing itemize with internal brackets \begin{itemize} \item Bla {and contents in brackets} and further contents. And make this line extra long so that we can see how the line breaks take place. Yet more {\it text that should be in the next} paragraph \item Blah blah. \end{itemize} This paragraph should be indented, as well as the next. The enumerate environment without labels \begin{enumerate} \item this is a frog. Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly. \item this is an arachnid. Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly. This is a second paragraph in this item. It is also very very long and goes and goes and goes and goes until at least one line is used. \item this is a bone. Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly. \end{enumerate} Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly. The itemize environment without labels \begin{itemize} \item this is a frog. Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly. \item this is an arachnid. Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly. \item this is a bone. Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly. \end{itemize} Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly. The enumerate environment with labels \begin{enumerate} \item[frog~~~] this is a frog Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly. \item[spider~~~] this is an arachnid. Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly. \item this has no label. Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly. \item[] this has an empty label. Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly. \item this has also has no label. Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly. \end{enumerate} Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly. The itemize environment with labels \begin{itemize} \item[frog~~~] this is a frog \item[spider~~~] this is an arachnid \item this has no label \item[] this has an empty label \end{itemize} Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly. The description environment with labels \begin{description} \item[frog~~~] this is a frog \item[spider~~~] this is an arachnid \item this has no label \item[] this has an empty label \end{description} Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly. The description environment without labels \begin{description} \item[] this is a frog \item[] this is an arachnid \item this is a bone \end{description} Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly. \section{Nested Environments} Now to test nested environments. First the enumerate environment without labels \begin{enumerate} \item this is the first item in an enumerate environment \begin{enumerate} \item this should be numbered (a). filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler \item this should be numbered (b). filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler \item this should be numbered (c). filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler \end{enumerate} \item this is the second sublist. filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler \begin{itemize} \item this a sub sub list (itemize inside enumerate, so there should be a bullet at the start ller filler filler filler filler filler filler filler filler filler filler \begin{enumerate} \item this should be numbered (a). filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler \item this should be numbered (b). filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler \item this should be numbered (c). filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler \end{enumerate} \item this is another bullet. filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler \item this yet another bullet, but with a sub list. filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler filler \begin{enumerate} \item this is (a) frog \item this is (b) an arachnid \item this is (c) bone \end{enumerate} \end{itemize} \item this is 3 an arachnid \item this is 4 the third sublist \begin{enumerate} \item this (a) is sub sub list \begin{enumerate} \item i. this is a frog \begin{enumerate} \item this A. is a frog \item this B. is an arachnid \item this C. is a bone \end{enumerate} \item this is ii. an arachnid \item this is iii. a bone \end{enumerate} \item this is an arachnid Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly. \item this another sub sub list Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly. \begin{enumerate} \item this i. is a frog \item this ii. is an arachnid \item this iii. is a bone \item this iv. is a frog \item this v. is an arachnid \item this vi. is a frog \item this vii. is an arachnid \item this viii. is a bone \item this ix. is a frog \item this x. is an arachnid \end{enumerate} \end{enumerate} \end{enumerate} Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly. \section{Paralist Environments} Testing inparaenum. Testing inparaenum. Testing inparaenum. Testing inparaenum. Testing inparaenum. Testing inparaenum. Testing inparaenum. Testing inparaenum. Testing inparaenum. Testing inparaenum. Testing inparaenum. Testing inparaenum. Testing inparaenum. Testing inparaenum. Testing inparaenum. Testing inparaenum. \begin{inparaenum} \item (This should be 1.) is a frog! \item (This should be 2.) is an arachnid! \item (This should be 3.) is a bone! \item (This should be 4.) is a frog! \end{inparaenum} Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly. Testing asparaenum. Testing asparaenum. Testing asparaenum. Testing asparaenum. Testing asparaenum. Testing asparaenum. Testing asparaenum. Testing asparaenum. Testing asparaenum. Testing asparaenum. Testing asparaenum. Testing asparaenum. Testing asparaenum. Testing asparaenum. Testing asparaenum. Testing asparaenum. \begin{asparaenum} \item (This should be 1.) is a frog! \item (This should be 2.) is an arachnid! \item (This should be 3.) is a bone! \item (This should be 4.) is a frog! \end{asparaenum} Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly. Testing compactenum. Testing compactenum. Testing compactenum. Testing compactenum. Testing compactenum. Testing compactenum. Testing compactenum. Testing compactenum. Testing compactenum. Testing compactenum. Testing compactenum. Testing compactenum. Testing compactenum. Testing compactenum. Testing compactenum. Testing compactenum. \begin{compactenum} \item (This should be 1.) is a frog! \item (This should be 2.) is an arachnid! \item (This should be 3.) is a bone! \item (This should be 4.) is a frog! \end{compactenum} Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly. Testing compactitem. Testing compactitem. Testing compactitem. Testing compactitem. Testing compactitem. Testing compactitem. Testing compactitem. Testing compactitem. Testing compactitem. Testing compactitem. Testing compactitem. Testing compactitem. Testing compactitem. Testing compactitem. Testing compactitem. Testing compactitem. \begin{compactitem} \item (This should be a bullet) is a frog! \item (This should be a bullet) is an arachnid! \item (This should be a bullet) is a bone! \item (This should be a bullet) is a frog! \end{compactitem} Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly. Testing compactdesc. Testing compactdesc. Testing compactdesc. Testing compactdesc. Testing compactdesc. Testing compactdesc. Testing compactdesc. Testing compactdesc. Testing compactdesc. Testing compactdesc. Testing compactdesc. Testing compactdesc. Testing compactdesc. Testing compactdesc. Testing compactdesc. Testing compactdesc. \begin{compactdesc} \item[frog~~~] this is a frog \item[spider~~~] this is an arachnid \end{compactdesc} Here is some text so that the paragraph break after this is more clear than it is without this sentence which of course must be very long so that it will reach the end of the line and I see what is happening very clearly. \end{document}latex2rtf-2.3.18/test/misc4.aux0000644000175000017500000002177613664476470016467 0ustar wilfriedwilfried\relax \@writefile{toc}{\contentsline {chapter}{\numberline {1}Getting acquainted with T\kern -.1667em\lower .5ex\hbox {E}\kern -.125emX\spacefactor \@m {}}{1}} \@writefile{lof}{\addvspace {10\p@ }} \@writefile{lot}{\addvspace {10\p@ }} \@writefile{toc}{\contentsline {section}{\numberline {1.1}The spirit of T\kern -.1667em\lower .5ex\hbox {E}\kern -.125emX\spacefactor \@m {}}{1}} \@writefile{toc}{\contentsline {subsection}{\numberline {1.1.1}T\kern -.1667em\lower .5ex\hbox {E}\kern -.125emX\spacefactor \@m {}\ is a typesetter, not a word-processor}{1}} \@writefile{toc}{\contentsline {subsection}{\numberline {1.1.2}Typical T\kern -.1667em\lower .5ex\hbox {E}\kern -.125emX\spacefactor \@m {}\ interfaces}{3}} \@writefile{toc}{\contentsline {chapter}{\numberline {2}Getting started with \LaTeX }{6}} \@writefile{lof}{\addvspace {10\p@ }} \@writefile{lot}{\addvspace {10\p@ }} \@writefile{toc}{\contentsline {section}{\numberline {2.1}Why start with \LaTeX ?}{6}} \@writefile{toc}{\contentsline {section}{\numberline {2.2}\LaTeX \ formats, and we compose}{7}} \@writefile{toc}{\contentsline {section}{\numberline {2.3}Document styles}{8}} \@writefile{toc}{\contentsline {section}{\numberline {2.4}Preparing a non-mathematical document}{9}} \@writefile{toc}{\contentsline {subsection}{\numberline {2.4.1}Sentences and paragraphs}{9}} \@writefile{toc}{\contentsline {subsection}{\numberline {2.4.2}Punctuation}{11}} \@writefile{toc}{\contentsline {subsection}{\numberline {2.4.3}Ties}{13}} \@writefile{toc}{\contentsline {subsection}{\numberline {2.4.4}Specially reserved symbols}{14}} \newlabel{sec:reserved}{{2.4.4}{14}} \@writefile{toc}{\contentsline {subsection}{\numberline {2.4.5}So what are control symbols and words?}{14}} \@writefile{toc}{\contentsline {subsection}{\numberline {2.4.6}Commands to change appearance}{16}} \newlabel{sec:groups}{{2.4.6}{16}} \@writefile{lot}{\contentsline {table}{\numberline {2.1}{\ignorespaces Commands for selecting type styles}}{17}} \newlabel{tab:typestyles}{{2.1}{17}} \@writefile{lot}{\contentsline {table}{\numberline {2.2}{\ignorespaces \LaTeX \ size-changing commands.}}{17}} \newlabel{tab:sizes}{{2.2}{17}} \@writefile{toc}{\contentsline {subsection}{\numberline {2.4.7}Accents}{18}} \@writefile{toc}{\contentsline {subsection}{\numberline {2.4.8}Over-ruling some of T\kern -.1667em\lower .5ex\hbox {E}\kern -.125emX\spacefactor \@m {}'s choices}{18}} \@writefile{lot}{\contentsline {table}{\numberline {2.3}{\ignorespaces Control sequences for accents}}{19}} \newlabel{tab:accents}{{2.3}{19}} \@writefile{toc}{\contentsline {subsection}{\numberline {2.4.9}Commenting your document}{20}} \@writefile{toc}{\contentsline {subsection}{\numberline {2.4.10}Footnotes}{20}} \@writefile{toc}{\contentsline {subsection}{\numberline {2.4.11}Topmatter}{20}} \@writefile{toc}{\contentsline {subsection}{\numberline {2.4.12}Sectioning commands}{21}} \@writefile{lot}{\contentsline {table}{\numberline {2.4}{\ignorespaces \LaTeX \ sectioning commands}}{21}} \newlabel{tab:sectioning}{{2.4}{21}} \@writefile{toc}{\contentsline {subsection}{\numberline {2.4.13}\LaTeX \ environments}{22}} \@writefile{toc}{\contentsline {subsection}{\numberline {2.4.14}{\tt em} environment}{22}} \@writefile{toc}{\contentsline {subsection}{\numberline {2.4.15}{\tt quote} and {\tt quotation} environments}{23}} \@writefile{toc}{\contentsline {subsection}{\numberline {2.4.16}{\tt verse} environment}{24}} \@writefile{toc}{\contentsline {subsection}{\numberline {2.4.17}{\tt center} environment}{25}} \@writefile{toc}{\contentsline {subsection}{\numberline {2.4.18}{\tt flushright} and {\tt flushleft} environments}{25}} \@writefile{toc}{\contentsline {subsection}{\numberline {2.4.19}{\tt verbatim} environment}{26}} \@writefile{toc}{\contentsline {subsection}{\numberline {2.4.20}{\tt itemize}, {\tt enumerate}, {\tt description} environments}{27}} \@writefile{toc}{\contentsline {subsection}{\numberline {2.4.21}{\tt tabbing} environment}{30}} \@writefile{toc}{\contentsline {subsection}{\numberline {2.4.22}{\tt tabular} environment}{31}} \@writefile{toc}{\contentsline {subsection}{\numberline {2.4.23}{\tt figure} and {\tt table} environments}{33}} \@writefile{toc}{\contentsline {subsection}{\numberline {2.4.24}The {\tt letter} document style}{34}} \@writefile{toc}{\contentsline {subsection}{\numberline {2.4.25}Common pitfalls; Error messages}{34}} \@writefile{lof}{\contentsline {figure}{\numberline {2.1}{\ignorespaces A sample letter}}{35}} \newlabel{fig:letter}{{2.1}{35}} \@writefile{toc}{\contentsline {section}{\numberline {2.5}Summary}{37}} \@writefile{toc}{\contentsline {chapter}{\numberline {3}Mathematical typesetting with \LaTeX }{39}} \@writefile{lof}{\addvspace {10\p@ }} \@writefile{lot}{\addvspace {10\p@ }} \@writefile{toc}{\contentsline {section}{\numberline {3.1}Introduction}{39}} \@writefile{toc}{\contentsline {section}{\numberline {3.2}Displaying a formula}{42}} \newlabel{sec:display}{{3.2}{42}} \@writefile{toc}{\contentsline {section}{\numberline {3.3}Using mathematical symbols}{43}} \newlabel{sec:symbols}{{3.3}{43}} \@writefile{toc}{\contentsline {subsection}{\numberline {3.3.1}Symbols available from the keyboard}{44}} \@writefile{toc}{\contentsline {subsection}{\numberline {3.3.2}Greek letters}{44}} \@writefile{lot}{\contentsline {table}{\numberline {3.1}{\ignorespaces \rm Lowercase Greek letters}}{44}} \newlabel{tab:lgreek}{{3.1}{44}} \@writefile{lot}{\contentsline {table}{\numberline {3.2}{\ignorespaces \rm Uppercase Greek letters}}{44}} \newlabel{tab:ugreek}{{3.2}{44}} \@writefile{lot}{\contentsline {table}{\numberline {3.3}{\ignorespaces \rm Binary Operation Symbols}}{45}} \newlabel{tab:binops}{{3.3}{45}} \@writefile{toc}{\contentsline {subsection}{\numberline {3.3.3}Calligraphic uppercase letters}{45}} \@writefile{toc}{\contentsline {subsection}{\numberline {3.3.4}Binary operators}{45}} \@writefile{toc}{\contentsline {subsection}{\numberline {3.3.5}Binary relations}{45}} \@writefile{lot}{\contentsline {table}{\numberline {3.4}{\ignorespaces \rm Binary relations}}{46}} \newlabel{tab:binrels}{{3.4}{46}} \@writefile{toc}{\contentsline {subsection}{\numberline {3.3.6}Miscellaneous symbols}{46}} \@writefile{lot}{\contentsline {table}{\numberline {3.5}{\ignorespaces \rm Miscellaneous symbols}}{46}} \newlabel{tab:miscsym}{{3.5}{46}} \@writefile{toc}{\contentsline {subsection}{\numberline {3.3.7}Arrow symbols}{46}} \@writefile{lot}{\contentsline {table}{\numberline {3.6}{\ignorespaces \rm Arrow symbols}}{47}} \newlabel{tab:arrows}{{3.6}{47}} \@writefile{toc}{\contentsline {subsection}{\numberline {3.3.8}Expression delimiters}{47}} \newlabel{sec:delims}{{3.3.8}{47}} \@writefile{toc}{\contentsline {subsection}{\numberline {3.3.9}Operators like $\displaystyle \intop \nolimits $ and $\displaystyle \sum $}{47}} \@writefile{lot}{\contentsline {table}{\numberline {3.7}{\ignorespaces \rm Delimiters}}{48}} \newlabel{tab:delims}{{3.7}{48}} \@writefile{lot}{\contentsline {table}{\numberline {3.8}{\ignorespaces \rm Variable-sized symbols}}{48}} \newlabel{tab:bigops}{{3.8}{48}} \@writefile{toc}{\contentsline {subsection}{\numberline {3.3.10}Accents}{48}} \newlabel{sec:mathacc}{{3.3.10}{48}} \@writefile{lot}{\contentsline {table}{\numberline {3.9}{\ignorespaces \rm Math accents}}{48}} \newlabel{tab:mathacc}{{3.9}{48}} \@writefile{toc}{\contentsline {section}{\numberline {3.4}Some common mathematical structures}{48}} \@writefile{toc}{\contentsline {subsection}{\numberline {3.4.1}Subscripts and superscripts}{49}} \newlabel{sec:subsup}{{3.4.1}{49}} \@writefile{toc}{\contentsline {subsection}{\numberline {3.4.2}Primes}{51}} \@writefile{toc}{\contentsline {subsection}{\numberline {3.4.3}Fractions}{51}} \@writefile{toc}{\contentsline {subsection}{\numberline {3.4.4}Roots}{52}} \@writefile{toc}{\contentsline {subsection}{\numberline {3.4.5}Ellipsis}{52}} \@writefile{toc}{\contentsline {subsection}{\numberline {3.4.6}Text within an expression}{52}} \newlabel{sec:mathtext}{{3.4.6}{52}} \@writefile{lot}{\contentsline {table}{\numberline {3.10}{\ignorespaces \rm Log-like functions}}{53}} \newlabel{tab:loglike}{{3.10}{53}} \@writefile{toc}{\contentsline {subsection}{\numberline {3.4.7}Log-like functions}{53}} \@writefile{toc}{\contentsline {subsection}{\numberline {3.4.8}Over- and Underlining and bracing}{53}} \@writefile{toc}{\contentsline {subsection}{\numberline {3.4.9}Stacking symbols}{54}} \@writefile{toc}{\contentsline {subsection}{\numberline {3.4.10}Operators; Sums, Integrals, etc.}{54}} \@writefile{toc}{\contentsline {subsection}{\numberline {3.4.11}Arrays}{55}} \newlabel{sec:arrays}{{3.4.11}{55}} \@writefile{toc}{\contentsline {subsection}{\numberline {3.4.12}Changes to spacing}{56}} \newlabel{sec:mathspace}{{3.4.12}{56}} \@writefile{toc}{\contentsline {section}{\numberline {3.5}Alignment}{56}} \@writefile{toc}{\contentsline {section}{\numberline {3.6}Theorems, Propositions, Lemmas, $\dots $}{57}} \@writefile{toc}{\contentsline {section}{\numberline {3.7}Where to from here?}{58}} \@writefile{toc}{\contentsline {section}{\numberline {3.8}{\the \textfont 2 A}\kern -.1667em\lower .5ex\hbox {\the \textfont 2 M}\kern -.125em{\the \textfont 2 S}-\LaTeX }{59}} latex2rtf-2.3.18/test/include.tex0000777000175000017500000000424013050672360017051 0ustar wilfriedwilfried\documentclass{article} \newif\iflatextortf \latextortffalse %ignored by latex2rtf \begin{document} \iflatextortf Most of this first page will be blank in RTF because we begin this file with an include file. We have a short message from our rtf text that will start on the next page. \include{inc_test} We return you to the normal latex file now. \fi \section{This is the first section in file \texttt{include.tex}} \label{section01} Here is some text to create a paragraph or two so that we can see if this works or not. It will be interesting to see if the labels work properly. As I create these testing files I realize that I need to add parsing support for \verb#\input# and \verb#\include# in the getSection function. Furthermore, after reading the \LaTeX{} book, I see that \verb#\include# files will all start on a new page. This is not the case for \verb#\input# files. Here is a reference to the next section \ref{section02} in this file, and one to the first subsection in the first include file \texttt{include1} \ref{section11}. This is a reference \ref{section31} to the first subsubsection in the file \texttt{include3} that is included by \texttt{include2}. \include{include1} \include{include2} % \include{include1} should not be included! \section{This is the second section in file \texttt{include.tex}} \label{section02} Here is some text to create a paragraph or two so that we can see if this works or not. It will be interesting to see if the labels work properly. As I create these testing files I realize that I need to add parsing support for \verb#\input# and \verb#\include# in the getSection function. Furthermore, after reading the \LaTeX{} book, I see that \verb#\include# files will all start on a new page. This is not the case for \verb#\input# files. Here is a reference to the first subsection in \texttt{include2.tex} \ref{section21}. Here is a reference to the first subsection in \texttt{include1.tex} \ref{section11}. And finally one to the first section of this file \ref{section01}. \input include5.tex This is the content following \verb#\input include5.tex#. There should be no pagebreak. \end{document} XXXX more text YYYY latex2rtf-2.3.18/test/include1.aux0000644000175000017500000000135013664476467017144 0ustar wilfriedwilfried\relax \@writefile{toc}{\contentsline {subsection}{\numberline {1.1}This is the first subsection from file \texttt {include1.tex}}{2}} \newlabel{section11}{{1.1}{2}} \@writefile{toc}{\contentsline {subsection}{\numberline {1.2}This is the second subsection from file \texttt {include1.tex}}{2}} \newlabel{section12}{{1.2}{2}} \@setckpt{include1}{ \setcounter{page}{3} \setcounter{equation}{0} \setcounter{enumi}{0} \setcounter{enumii}{0} \setcounter{enumiii}{0} \setcounter{enumiv}{0} \setcounter{footnote}{0} \setcounter{mpfootnote}{0} \setcounter{part}{0} \setcounter{section}{1} \setcounter{subsection}{2} \setcounter{subsubsection}{0} \setcounter{paragraph}{0} \setcounter{subparagraph}{0} \setcounter{figure}{0} \setcounter{table}{0} } latex2rtf-2.3.18/test/bib_natbib2.tex0000777000175000017500000000434113050672360017565 0ustar wilfriedwilfried\documentclass{article} \usepackage{natbib} \begin{document} \verb#\usepackage{natbib}#\\ \begin{center} \begin{tabular}{l} \verb#\cite{hooper1986,ortony1988,russell1979}# \\ \cite{hooper1986,ortony1988,russell1979} \\\hline \verb#\citet*{hooper1986,ortony1988,russell1979}# \\ \citet*{hooper1986,ortony1988,russell1979} \\\hline \verb#\citet{hooper1986,ortony1988,russell1979}# \\ \citet{hooper1986,ortony1988,russell1979} \\\hline \verb#\citep{hooper1986,ortony1988,russell1979}# \\ \citep{hooper1986,ortony1988,russell1979} \\\hline [Fails in 1.9.15] \verb#\citep[in][chap.~3]{allen1995a,allen1995b}# \\ \citep[in][chap.~3]{allen1995a,allen1995b} \\\hline \verb#\citet{allen1995a}# \\ \citet{allen1995a} \\\hline \verb#\citep[in][chap.~3]{allen1995a}# \\ \citep[in][chap.~3]{allen1995a} \\\hline \verb#\citeauthor{ortony1988}# \\ \citeauthor{ortony1988} \\\hline \verb#\citeauthor*{ortony1988}# \\ \citeauthor*{ortony1988} \\\hline \verb#\citeyear{allen1995b}# \\ \citeyear{allen1995b} \\\hline \verb#\citeyearpar{allen1995b}# \\ \citeyearpar{allen1995b} \\\hline \end{tabular} \end{center} \begin{thebibliography}{5} \expandafter\ifx\csname natexlab\endcsname\relax\def\natexlab#1{#1}\fi \bibitem[Allen and Carifio(1995{\natexlab{a}})]{allen1995b} B.~D. Allen and J.~Carifio. \newblock The relationship between emotional states and solving complex mathematical problems. \newblock May 1995{\natexlab{a}}. \bibitem[Allen and Carifio(1995{\natexlab{b}})]{allen1995a} Bradford~D. Allen and Jim Carifio. \newblock A {M}ethodology for the {A}nalysis of {E}motion {E}xperiences during {M}athematical {P}roblem {S}olving. \newblock March 1995{\natexlab{b}}. \bibitem[Hooper(1986)]{hooper1986} J.~Hooper. \newblock {\em The 3-{P}ound {U}niverse}. \newblock Teacher, Inc, Los Angeles, 1986. \bibitem[Ortony et~al.(1988)Ortony, Clore, and Collins]{ortony1988} A.~Ortony, G.~Clore, and A.~Collins. \newblock {\em The {C}ognitive {S}tructure of {E}motions}. \newblock Cambridge University Press, New York, 1988. \bibitem[Russell(1979)]{russell1979} J.~A. Russell. \newblock Affect {S}pace is {B}ipolar. \newblock {\em Journal of Personality and Social Psychology}, 37\penalty0 (3):\penalty0 345--356, 1979. \end{thebibliography} \end{document} latex2rtf-2.3.18/test/ch.tex0000777000175000017500000002324513050672360016026 0ustar wilfriedwilfried\documentclass{article} \usepackage[cp1252]{inputenc} \begin{document} \begin{center} \begin{tabular}{ccccc} \verb!\char '000!& &\texttt{\char '000}&$\char '000$&\textrm{\char '000}\\ \verb!\char '001!& &\texttt{\char '001}&$\char '001$&\textrm{\char '001}\\ \verb!\char '002!& &\texttt{\char '002}&$\char '002$&\textrm{\char '002}\\ \verb!\char '003!& &\texttt{\char '003}&$\char '003$&\textrm{\char '003}\\ \verb!\char '004!& &\texttt{\char '004}&$\char '004$&\textrm{\char '004}\\ \verb!\char '005!& &\texttt{\char '005}&$\char '005$&\textrm{\char '005}\\ \verb!\char '006!& &\texttt{\char '006}&$\char '006$&\textrm{\char '006}\\ \verb!\char '007!& &\texttt{\char '007}&$\char '007$&\textrm{\char '007}\\ \verb!\char '010!& &\texttt{\char '010}&$\char '010$&\textrm{\char '010}\\ \verb!\char '011!& &\texttt{\char '011}&$\char '011$&\textrm{\char '011}\\ \verb!\char '012!& &\texttt{\char '012}&$\char '012$&\textrm{\char '012}\\ \verb!\char '013!& &\texttt{\char '013}&$\char '013$&\textrm{\char '013}\\ \verb!\char '014!& &\texttt{\char '014}&$\char '014$&\textrm{\char '014}\\ \verb!\char '015!& &\texttt{\char '015}&$\char '015$&\textrm{\char '015}\\ \verb!\char '016!& &\texttt{\char '016}&$\char '016$&\textrm{\char '016}\\ \verb!\char '017!& &\texttt{\char '017}&$\char '017$&\textrm{\char '017}\\ \verb!\char '020!& &\texttt{\char '020}&$\char '020$&\textrm{\char '020}\\ \verb!\char '021!& &\texttt{\char '021}&$\char '021$&\textrm{\char '021}\\ \verb!\char '022!& &\texttt{\char '022}&$\char '022$&\textrm{\char '022}\\ \verb!\char '023!& &\texttt{\char '023}&$\char '023$&\textrm{\char '023}\\ \verb!\char '024!& &\texttt{\char '024}&$\char '024$&\textrm{\char '024}\\ \verb!\char '025!& &\texttt{\char '025}&$\char '025$&\textrm{\char '025}\\ \verb!\char '026!& &\texttt{\char '026}&$\char '026$&\textrm{\char '026}\\ \verb!\char '027!& &\texttt{\char '027}&$\char '027$&\textrm{\char '027}\\ \verb!\char '030!& &\texttt{\char '030}&$\char '030$&\textrm{\char '030}\\ \verb!\char '031!& &\texttt{\char '031}&$\char '031$&\textrm{\char '031}\\ \verb!\char '032!& &\texttt{\char '032}&$\char '032$&\textrm{\char '032}\\ \verb!\char '033!& &\texttt{\char '033}&$\char '033$&\textrm{\char '033}\\ \verb!\char '034!& &\texttt{\char '034}&$\char '034$&\textrm{\char '034}\\ \verb!\char '035!& &\texttt{\char '035}&$\char '035$&\textrm{\char '035}\\ \verb!\char '036!& &\texttt{\char '036}&$\char '036$&\textrm{\char '036}\\ \verb!\char '037!& &\texttt{\char '037}&$\char '037$&\textrm{\char '037}\\ \end{tabular} \begin{tabular}{ccccc} \verb!\char '040!& &\texttt{\char '040}&$\char '040$&\textrm{\char '040}\\ \verb!\char '041!&!&\texttt{\char '041}&$\char '041$&\textrm{\char '041}\\ \verb!\char '042!&"&\texttt{\char '042}&$\char '042$&\textrm{\char '042}\\ \verb!\char '043!&\#&\texttt{\char '043}&$\char '043$&\textrm{\char '043}\\ \verb!\char '044!&\$&\texttt{\char '044}&$\char '044$&\textrm{\char '044}\\ \verb!\char '045!&\%&\texttt{\char '045}&$\char '045$&\textrm{\char '045}\\ \verb!\char '046!&\&&\texttt{\char '046}&$\char '046$&\textrm{\char '046}\\ \verb!\char '047!&'&\texttt{\char '047}&$\char '047$&\textrm{\char '047}\\ \verb!\char '050!&(&\texttt{\char '050}&$\char '050$&\textrm{\char '050}\\ \verb!\char '051!&)&\texttt{\char '051}&$\char '051$&\textrm{\char '051}\\ \verb!\char '052!&*&\texttt{\char '052}&$\char '052$&\textrm{\char '052}\\ \verb!\char '053!&+&\texttt{\char '053}&$\char '053$&\textrm{\char '053}\\ \verb!\char '054!&,&\texttt{\char '054}&$\char '054$&\textrm{\char '054}\\ \verb!\char '055!&-&\texttt{\char '055}&$\char '055$&\textrm{\char '055}\\ \verb!\char '056!&.&\texttt{\char '056}&$\char '056$&\textrm{\char '056}\\ \verb!\char '057!&/&\texttt{\char '057}&$\char '057$&\textrm{\char '057}\\ \verb!\char '060!&0&\texttt{\char '060}&$\char '060$&\textrm{\char '060}\\ \verb!\char '061!&1&\texttt{\char '061}&$\char '061$&\textrm{\char '061}\\ \verb!\char '062!&2&\texttt{\char '062}&$\char '062$&\textrm{\char '062}\\ \verb!\char '063!&3&\texttt{\char '063}&$\char '063$&\textrm{\char '063}\\ \verb!\char '064!&4&\texttt{\char '064}&$\char '064$&\textrm{\char '064}\\ \verb!\char '065!&5&\texttt{\char '065}&$\char '065$&\textrm{\char '065}\\ \verb!\char '066!&6&\texttt{\char '066}&$\char '066$&\textrm{\char '066}\\ \verb!\char '067!&7&\texttt{\char '067}&$\char '067$&\textrm{\char '067}\\ \verb!\char '070!&8&\texttt{\char '070}&$\char '070$&\textrm{\char '070}\\ \verb!\char '071!&9&\texttt{\char '071}&$\char '071$&\textrm{\char '071}\\ \verb!\char '072!&:&\texttt{\char '072}&$\char '072$&\textrm{\char '072}\\ \verb!\char '073!&;&\texttt{\char '073}&$\char '073$&\textrm{\char '073}\\ \verb!\char '074!&<&\texttt{\char '074}&$\char '074$&\textrm{\char '074}\\ \verb!\char '075!&=&\texttt{\char '075}&$\char '075$&\textrm{\char '075}\\ \verb!\char '076!&>&\texttt{\char '076}&$\char '076$&\textrm{\char '076}\\ \verb!\char '077!&?&\texttt{\char '077}&$\char '077$&\textrm{\char '077}\\ \end{tabular} \begin{tabular}{ccccc} \verb!\char '100!&@&\texttt{\char '100}&$\char '100$&\textrm{\char '100}\\ \verb!\char '101!&A&\texttt{\char '101}&$\char '101$&\textrm{\char '101}\\ \verb!\char '102!&B&\texttt{\char '102}&$\char '102$&\textrm{\char '102}\\ \verb!\char '103!&C&\texttt{\char '103}&$\char '103$&\textrm{\char '103}\\ \verb!\char '104!&D&\texttt{\char '104}&$\char '104$&\textrm{\char '104}\\ \verb!\char '105!&E&\texttt{\char '105}&$\char '105$&\textrm{\char '105}\\ \verb!\char '106!&F&\texttt{\char '106}&$\char '106$&\textrm{\char '106}\\ \verb!\char '107!&G&\texttt{\char '107}&$\char '107$&\textrm{\char '107}\\ \verb!\char '110!&H&\texttt{\char '110}&$\char '110$&\textrm{\char '110}\\ \verb!\char '111!&I&\texttt{\char '111}&$\char '111$&\textrm{\char '111}\\ \verb!\char '112!&J&\texttt{\char '112}&$\char '112$&\textrm{\char '112}\\ \verb!\char '113!&K&\texttt{\char '113}&$\char '113$&\textrm{\char '113}\\ \verb!\char '114!&L&\texttt{\char '114}&$\char '114$&\textrm{\char '114}\\ \verb!\char '115!&M&\texttt{\char '115}&$\char '115$&\textrm{\char '115}\\ \verb!\char '116!&N&\texttt{\char '116}&$\char '116$&\textrm{\char '116}\\ \verb!\char '117!&O&\texttt{\char '117}&$\char '117$&\textrm{\char '117}\\ \verb!\char '120!&P&\texttt{\char '120}&$\char '120$&\textrm{\char '120}\\ \verb!\char '121!&Q&\texttt{\char '121}&$\char '121$&\textrm{\char '121}\\ \verb!\char '122!&R&\texttt{\char '122}&$\char '122$&\textrm{\char '122}\\ \verb!\char '123!&S&\texttt{\char '123}&$\char '123$&\textrm{\char '123}\\ \verb!\char '124!&T&\texttt{\char '124}&$\char '124$&\textrm{\char '124}\\ \verb!\char '125!&U&\texttt{\char '125}&$\char '125$&\textrm{\char '125}\\ \verb!\char '126!&V&\texttt{\char '126}&$\char '126$&\textrm{\char '126}\\ \verb!\char '127!&W&\texttt{\char '127}&$\char '127$&\textrm{\char '127}\\ \verb!\char '130!&X&\texttt{\char '130}&$\char '130$&\textrm{\char '130}\\ \verb!\char '131!&Y&\texttt{\char '131}&$\char '131$&\textrm{\char '131}\\ \verb!\char '132!&Z&\texttt{\char '132}&$\char '132$&\textrm{\char '132}\\ \verb!\char '133!&[&\texttt{\char '133}&$\char '133$&\textrm{\char '133}\\ \verb!\char '134!&\texttt{\char '134}&\texttt{\char '134}&$\char '134$&\textrm{\char '134}\\ \verb!\char '135!&]&\texttt{\char '135}&$\char '135$&\textrm{\char '135}\\ \verb!\char '136!&\^{}&\texttt{\char '136}&$\char '136$&\textrm{\char '136}\\ \verb!\char '137!&\_{}&\texttt{\char '137}&$\char '137$&\textrm{\char '137}\\ \end{tabular} \begin{tabular}{ccccc} \verb!\char '140!&`&\texttt{\char '140}&$\char '140$&\textrm{\char '140}\\ \verb!\char '141!&a&\texttt{\char '141}&$\char '141$&\textrm{\char '141}\\ \verb!\char '142!&b&\texttt{\char '142}&$\char '142$&\textrm{\char '142}\\ \verb!\char '143!&c&\texttt{\char '143}&$\char '143$&\textrm{\char '143}\\ \verb!\char '144!&d&\texttt{\char '144}&$\char '144$&\textrm{\char '144}\\ \verb!\char '145!&e&\texttt{\char '145}&$\char '145$&\textrm{\char '145}\\ \verb!\char '146!&f&\texttt{\char '146}&$\char '146$&\textrm{\char '146}\\ \verb!\char '147!&g&\texttt{\char '147}&$\char '147$&\textrm{\char '147}\\ \verb!\char '150!&h&\texttt{\char '150}&$\char '150$&\textrm{\char '150}\\ \verb!\char '151!&i&\texttt{\char '151}&$\char '151$&\textrm{\char '151}\\ \verb!\char '152!&j&\texttt{\char '152}&$\char '152$&\textrm{\char '152}\\ \verb!\char '153!&k&\texttt{\char '153}&$\char '153$&\textrm{\char '153}\\ \verb!\char '154!&l&\texttt{\char '154}&$\char '154$&\textrm{\char '154}\\ \verb!\char '155!&m&\texttt{\char '155}&$\char '155$&\textrm{\char '155}\\ \verb!\char '156!&n&\texttt{\char '156}&$\char '156$&\textrm{\char '156}\\ \verb!\char '157!&o&\texttt{\char '157}&$\char '157$&\textrm{\char '157}\\ \verb!\char '160!&p&\texttt{\char '160}&$\char '160$&\textrm{\char '160}\\ \verb!\char '161!&q&\texttt{\char '161}&$\char '161$&\textrm{\char '161}\\ \verb!\char '162!&r&\texttt{\char '162}&$\char '162$&\textrm{\char '162}\\ \verb!\char '163!&s&\texttt{\char '163}&$\char '163$&\textrm{\char '163}\\ \verb!\char '164!&t&\texttt{\char '164}&$\char '164$&\textrm{\char '164}\\ \verb!\char '165!&u&\texttt{\char '165}&$\char '165$&\textrm{\char '165}\\ \verb!\char '166!&v&\texttt{\char '166}&$\char '166$&\textrm{\char '166}\\ \verb!\char '167!&w&\texttt{\char '167}&$\char '167$&\textrm{\char '167}\\ \verb!\char '170!&x&\texttt{\char '170}&$\char '170$&\textrm{\char '170}\\ \verb!\char '171!&y&\texttt{\char '171}&$\char '171$&\textrm{\char '171}\\ \verb!\char '172!&z&\texttt{\char '172}&$\char '172$&\textrm{\char '172}\\ \verb!\char '173!&\{&\texttt{\char '173}&$\char '173$&\textrm{\char '173}\\ \verb!\char '174!&|&\texttt{\char '174}&$\char '174$&\textrm{\char '174}\\ \verb!\char '175!&\}&\texttt{\char '175}&$\char '175$&\textrm{\char '175}\\ \verb!\char '176!&\~{}&\texttt{\char '176}&$\char '176$&\textrm{\char '176}\\ \verb!\char '177!&\texttt{\char '177}&$\char '177$&\textrm{\char '177}\\ \end{tabular} \end{center} \end{document} latex2rtf-2.3.18/test/fontsize.rtf0000644000175000017500000001240113664476467017276 0ustar wilfriedwilfried{\rtf1\ansi\uc1\deff0\deflang1024 {\fonttbl{\f0\fnil\fcharset0 Times New Roman;} {\f1\fnil\fcharset0 Arial;} {\f2\fnil\fcharset0 Arial;} {\f3\fnil\fcharset0 Courier New;} {\f4\fnil\fcharset0 Zapf Chancery;} {\f5\fnil\fcharset0 STIXGeneral;} {\f6\fnil\fcharset0 MS Gothic;} } {\colortbl; \red0\green0\blue0; \red0\green0\blue255; \red0\green255\blue255; \red0\green255\blue0; \red255\green0\blue255; \red255\green0\blue0; \red255\green255\blue0; \red255\green255\blue255; } {\stylesheet {\s0\qj\widctlpar\f0\fs20 \snext0 Normal;} {\cs10 \additive\ssemihidden Default Paragraph Font;} {\s1\qc\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 Part;} {\s2\ql\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 heading 1;} {\s3\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 2;} {\s4\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 3;} {\s5\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 4;} {\s6\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 5;} {\s7\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 6;} {\s8\qr\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext8 rightpar;} {\s9\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext9 centerpar;} {\s10\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext10 leftpar;} {\s11\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equation;} {\s12\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationNum;} {\s13\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlign;} {\s14\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlignNum;} {\s15\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArray;} {\s16\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArrayNum;} {\s17\ql\sb120\sa120\keep\widctlpar\f0\fs20 \sbasedon0\snext0 theorem;} {\s18\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 bitmapCenter;} {\s20\qc\sb240\sa240\b\f0\fs36 \sbasedon0\snext21 Title;} {\s21\qc\sa120\f0\fs20 \sbasedon0\snext0 author;} {\s22\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext22 footer;} {\s23\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext23 header;} {\s30\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 caption;} {\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext0 Figure;} {\s32\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext32 Table;} {\s33\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext33 Tabular;} {\s34\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext34 Tabbing;} {\s35\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext35 Quote;} {\s38\ql\widctlpar\f3\fs20 \snext38 verbatim;} {\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext46 List;} {\s47\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext47 List 1;} {\s50\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 latex picture;} {\s51\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 subfigure;} {\s61\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext62 bibheading;} {\s62\ql\fi-567\li567\sb0\sa0\f0\fs20 \sbasedon0\snext62 bibitem;} {\s64\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext64 endnotes;} {\s65\ql\fi-113\li397\lin397\f0\fs20 \sbasedon0\snext65 footnote text;} {\s66\qj\fi-170\li454\lin454\f0\fs20 \sbasedon0\snext66 endnote text;} {\cs62\super \additive\sbasedon10 footnote reference;} {\cs63\super \additive\sbasedon10 endnote reference;} {\s67\ql\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext67 acronym;} {\s70\qc\sa120\b\f0\fs20 \sbasedon0\snext71 abstract title;} {\s71\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext0 abstract;} {\s80\ql\sb240\sa120\keepn\f0\b\fs20 \sbasedon0\snext0 contents_heading;} {\s81\ql\li425\tqr\tldot\tx8222\sb240\sa60\keepn\f0\fs20\b \sbasedon0\snext82 toc 1;} {\s82\ql\li512\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext83 toc 2;} {\s83\ql\li1024\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext84 toc 3;} {\s84\ql\li1536\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext85 toc 4;} {\s85\ql\li2048\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 5;} {\s86\ql\li2560\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 6;} } {\info {\title Original file was fontsize.tex} {\doccomm Created using latex2rtf 2.3.18 r1266 (released May 29, 2020) on Sat May 30 17:35:19 2020 } } {\footer\pard\plain\f0\fs20\qc\chpgn\par} \paperw12280\paperh15900\margl2680\margr2700\margt2540\margb1760\pgnstart0\widowctrl\qj\ftnbj\f0\aftnnar {\pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 1 Normal roman font\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 This is some text. {\i This text is emphasized} {\par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Testing {\b0\i0\scaps0\f3 \\Large} by {\fs28 roman text with {\fs20 normal sized text} in the middle}. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Testing {\b0\i0\scaps0\f3 \\Huge} by {\i0\scaps0\b0\f2 \fs50 sans serif text with {\fs20 normal sized text} in the middle}. \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 \bullet\tab Testing {\b0\i0\scaps0\f3 \\small} by {\i0\b0\scaps \fs18 small caps text with {\fs24 large sized text} in the middle}. \par }}} }}}latex2rtf-2.3.18/test/dblspace.log0000644000175000017500000000643513664476467017212 0ustar wilfriedwilfriedThis is pdfTeX, Version 3.14159265-2.6-1.40.18 (TeX Live 2017/Debian) (preloaded format=latex 2019.1.18) 30 MAY 2020 17:35 entering extended mode restricted \write18 enabled. %&-line parsing enabled. **dblspace (./dblspace.tex LaTeX2e <2017-04-15> Babel <3.18> and hyphenation patterns for 8 language(s) loaded. (/usr/share/texlive/texmf-dist/tex/latex/base/report.cls Document Class: report 2014/09/29 v1.4h Standard LaTeX document class (/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo File: size10.clo 2014/09/29 v1.4h Standard LaTeX file (size option) ) \c@part=\count79 \c@chapter=\count80 \c@section=\count81 \c@subsection=\count82 \c@subsubsection=\count83 \c@paragraph=\count84 \c@subparagraph=\count85 \c@figure=\count86 \c@table=\count87 \abovecaptionskip=\skip41 \belowcaptionskip=\skip42 \bibindent=\dimen102 ) (/usr/share/texlive/texmf-dist/tex/latex/setspace/setspace.sty Package: setspace 2011/12/19 v6.7a set line spacing ) No file dblspace.aux. \openout1 = `dblspace.aux'. LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 4. LaTeX Font Info: ... okay on input line 4. LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 4. LaTeX Font Info: ... okay on input line 4. LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 4. LaTeX Font Info: ... okay on input line 4. LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 4. LaTeX Font Info: ... okay on input line 4. LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 4. LaTeX Font Info: ... okay on input line 4. LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 4. LaTeX Font Info: ... okay on input line 4. No file dblspace.toc. \tf@toc=\write3 \openout3 = `dblspace.toc'. [1 ] No file dblspace.lof. \tf@lof=\write4 \openout4 = `dblspace.lof'. [2 ] Chapter 1. LaTeX Warning: Reference `fig1' on page 3 undefined on input line 18. LaTeX Warning: Reference `fig1' on page 3 undefined on input line 32. LaTeX Warning: Reference `fig3' on page 3 undefined on input line 32. [3 ] LaTeX Warning: Reference `fig1' on page 4 undefined on input line 43. LaTeX Warning: Reference `fig3' on page 4 undefined on input line 43. LaTeX Warning: Reference `fig1' on page 4 undefined on input line 54. LaTeX Warning: Reference `fig3' on page 4 undefined on input line 54. LaTeX Warning: Reference `fig2' on page 4 undefined on input line 67. [4] [5] Chapter 2. LaTeX Warning: Reference `fig1' on page 6 undefined on input line 84. LaTeX Warning: Reference `fig3' on page 6 undefined on input line 84. LaTeX Warning: Reference `fig2' on page 6 undefined on input line 104. LaTeX Warning: Reference `fig4' on page 6 undefined on input line 104. [6 ] [7] [8] (./dblspace.aux) LaTeX Warning: There were undefined references. LaTeX Warning: Label(s) may have changed. Rerun to get cross-references right. ) Here is how much of TeX's memory you used: 271 strings out of 494872 3109 string characters out of 6178408 51748 words of memory out of 5000000 3681 multiletter control sequences out of 15000+600000 5765 words of font info for 21 fonts, out of 8000000 for 9000 14 hyphenation exceptions out of 8191 23i,4n,17p,133b,190s stack positions out of 5000i,500n,10000p,200000b,80000s Output written on dblspace.dvi (8 pages, 7676 bytes). latex2rtf-2.3.18/test/fig_teste.pdf0000777000175000017500000031162713050672357017370 0ustar wilfriedwilfried%PDF-1.3 %Äĺňĺë§ó ĐÄĆ 2 0 obj << /Length 4 0 R /Filter /FlateDecode >> stream xÚ+TT(c}ˇ\C—|…@1´í endstream endobj 4 0 obj 23 endobj 1 0 obj << /Type /Page /Parent 7 0 R /Resources 3 0 R /Contents 2 0 R /MediaBox [0 0 216 288] >> endobj 3 0 obj << /ProcSet [ /PDF ] /XObject << /Fm1 5 0 R >> >> endobj 5 0 obj << /Length 8 0 R /Type /XObject /Subtype /Form /FormType 1 /BBox [0 0 216 288] /Resources 6 0 R /Filter /FlateDecode >> stream xÚ´˝ÉŽ&M’ś÷§ˆĽz‘ˇ|śj’€v"ş­……"‘)ŠťIđőeÇĚ|0żńýY-T“™uţ¸ńExř`ă9˙üüç矟ż˘O!??Âóë #}ľQ{Ç˙üyüĎŘýďuąýŸŽ/ţëó<˙÷r˙ĘÁçJwřĘ%Ś’3n\óW%öţyŔůŤw_“/hůŞŢű°ŃçD+ý÷ĽtFëWńš˝‚Ž}•‘[͍Áö•ýČáyGéšÁŠ2ÚżčĹBݨ;ŃA“Ăđ!ĐĽř}[řňąÇú _!ôłt¤8ÚFƒŚŻ[“Đ7Íôß_0ĘWK-(Hß&ˇž(xć7ZžJ =nԝ(Íß|ŕĄm•&@-ů#8ZîUĆĽ}ŃkÇî^Ń'ŚŻŢFiÝŢáÍ_­ç8äšÖ&jî›čÁbÝŢáu‰î@í_ą–QŸ(Mŕě{˛oąPód‰fp.Ećh_4Gjű„Ň´,y´dĆě}M÷âcÍöÝŢŃyó-í}jî0çČ+ę- >Îéř fšěu/ďżzj-nÔ](=Tżfţ”ţ¨ő’⚢Ü+údzlšP5š•úĽáąÖćĚ&j'úqÝá u…ţjŒŃě,PzÉHßo˜}lĄf+<Ÿj7;á;Z=äÜ0ćÜ+úÔDŁCűqąwxGişů€ÝúÜÍ'hśxšÄž´šěiđ†:šđą´"űë:e> ý‹†Qţž§ą[˜;°AóŽv,y(¤^zů€ö@;KzŃŕÓ˙Čî}z¤q)]楞Όň -_iĐ˙á}ŒŸćÍý…>ĽˇĽ!Ž|‡Bóƒ3˝ŁŽÓűҧ“ÓŻĐw¤y5žč šDӒGŹ`‰7zŁ…şôŠŃ8›;|@é-h3Iퟯ{EŸQż0ł<MúăÚé •Ń?śŰŽ3|˘Ď…ÚTe—/t”¤NsűucĐ~QҐ'Ł#*ŃŇ}ŢŃŕ=}z‚˘>Ž”6ę,čÓÓăđľözĄ`ü*&1ƒţ‹Ď'÷ŠŇľ™&I<6yĐJ-a|DiĐiŕ5š,ş…>m4IȘa”l+ZŒíĽ'ŁA§‘_"“Š€5ţ|Bi c“ݍśĐ:jŠu%ŠŚ*{mÍmĐŞýˆŚŻœŤ>}KڒÜHWVÚ|ŕ݂‡Ńc ŃńŐ°M8A}k´c-ô1h ô}zžîđ†ş@ŚOiýÚźĂ;JߒN[i†Đž\č,ŘhąY'ÇźŁôÉ3\ß1˛'3-žŹ˝žĚ´~ ěnÎ|ń‰Úy@FDotlŰůő†:źaĆ+ŘúĽ'ó5v;ó'ę,Zh6{97öŠú€Ň“ĹâąPÝČ÷݉ě9ť'źŁôŻDpwfW™¨Ýkhçë´DŠŮĂ^Q‡€™$w 5’fŇ;J'aôENĘ}߉:‹śŻFnâ°OöĽ_#-žoě^Qś"} bÝŻ|;˝CI˛ˇŽŻ3QűÍčĎä>f;ŢP:ý˜‰{2}œ1;s'ę,Zh‚Đîjçţ´~-›kŽ)÷ŠŇľfSĚ×řĽą!GOöŠšŹ'hÖ:önžÝ)ŢPG1ÍQľG÷^ő%Wˇů:{ˇš¨ÝĂF˘îĺüÎô%k÷íĐQ5ć@žFŞ)‘ˇű†Ňľäɧ9;™BůˆŇ7!/F?#,đą ý87Ç_żaô#ľxÝRQsĎHÖC]žb‚ăMnĂčÎ_Ę´B-•wěüTh“?PˇQűC4ę4MËG4p¨HĆ$Ň-5ťW”ŽĽůÖĺ4Kŕâ|Déđg-:“2ŮÖiŁĎš:<;#Mj˛çÂ;JOF#B[NDhŠ%źń;J˙JAźúHwŁĽ]6ę,Jßޏ^K/TÂG”žOö_ĄóžœâžÜ+J×Ң#ƒ×>Ůąňôx}rÉٲ#ë$“Ď=6úX”Ö%|rFiÇŕ+^Qɀ˘Aě[˛ÂĎ'”v~n ´ĂŃű”:‹ŇNĆă”vN§ô%ď ëʛwpŻ(]K^9ĺíz˛w”ź$|kgÇAQ;:‘F’xšͧ’ÉËyEíŽ4§u × żƒ4ćôđ2ChöWÚg7ę,J~­Đr=×;JcC+Ř{CéZ›œ×˜{žóŸP›<‚ŒX˘•][ŘčcĐDž-í}r‡řq$żŁ.Ň.ŃyG˙ÉÖ}â•ű %˙žO žvrý7ę,Zż^źŢâÚhŽ„šě˜˝Ątm§9Rĺ<ŰłáJŁCç;Ď˙˝˛'j×;lAF%oäož˘."\6C){×úˆś}ĚÎ9QťË"\FENDÚ^hż)ŃDśI–Ó~ž îĽké ‘­ÍÉô -4ŤłŒY˘šgâB‹Ň×dŰô<-_@z.ú–dń&{Ú~@é[’W^Ě)žPgŃńEŤUěŁeo|@É6őU–{EéÚđĽq˘e‹˝c‘vŘŰČmŤď@ŸM´NŞŘF˚|EéŠ2ŮÔAĆ`Y´ŸĐBkŞtCX¨łhĽ5ĺĺŸfý°ŃŠ*ŃřîĽkűáĂú6ŸPú6´Hć˜ń¤…š(SŹômüČ6*öŠ: ƒ>`4ńşO(}I2Ş‹‰/.ÔY”ž%’k&Bú Ľo{4Y0÷ŠŇľô-ÉŮ&‚ý Ľo™šxŞ3żŔǀô)éÁfjŢPz.ú–:ä+ńń¤/É9 B;RĎ=oÔYtĐzŞb"‘ŻU|ŞőĐAF"y:´Óö>ąyZ{E"€äç PS?˘VŸŻlÁ’?Rsőú”ź6ňYů\ŚM™ŮwĐEň#˙ ýŤ2˜č+~@ 7튄ŇöŇ{ŢáÝ_çxßăKčž˘Ç ŢÁ˝DÖßťWÔě çŢQÝUŽçÚ{́;ŰňĐě­Ço}@÷–}|‡‰Úvœçs˝Łű„9ě;hÎ-şUD$ŽDőätǟĎĂô€hüjL×7|Gç oßô8÷OtŰ{ż€ĆJ9Vót›9t™gČ˙,ÔYt[O„z‰ÁBˇUF7 ­ÓYç^QcŇŠöÂöÓ;ŞV$žŒ†ź& ˙i[žčqsú{œťo¨3w yTrÎăů„n ™ ë–GĂI8QgŃmy“š7hœ|˙„=™‘ȑА˝€ĆO 36‘‡ {ŕŞţ=šCŐˇ”ŒŤr€űďɘďtĄŔç 5EŽŢŔŠůźƒÇťFz*˛ ăá‘8‹î‘%7%Ť%ţœţůōιÖÝ+jźKr”čř.°ö> ęľâšh‹Ż>†`|ŮÝŢđńo¨;˝lş€ŒÚŠžO(YbH§Ůď0QgQ˛HiĂäIoě#ßŕL_}ޟ¨BÉdĂeÔĎź ?šů>VÎGtĆöžt„% 8˙ţŘŤßPwĆ[Žýňşă8{ž 3 ˇÖ@Ńi"Ş˛>ĄG-43ŰŻä*eňŇ+čP3‚„ć9JŠ6dĂ>Ąţ‹6N’Ň8/9‡Ś¨3( Hígüń\Н›[ßĆ˝˘ćǘ@é…áú™9AóÉi“픯?˙ş3?y>Ő;hÍIÝÄ1k'ę,zÜaŻ‘čqßľ_@ű÷kßů„ĎľŹ7sŰő´˙NĚŻmň tgîw[oŸĐ}Ţw 3ŕÎtOőĽ ŒÚÇúr\)ŃżŽwý€jŢř g^ţ@Éź¨0/íxżĄą5:ű}4ŸńÜőÇܘ¨łčŽC8ćÜGÔÓ˛kv5žĄ‹ 8NíÂů€j݄3;ŕQMq˘ôy´"óŘßP‡<[FMŚŮëŢAÚrČd v˙š¨Ýżý@*lmÓžZ<ćŻ(YY\UŢŐh˜h#ŞĹ˝˘Ś"…Ё nüęiSĂ IGB…3ż},J0DśČČm/ŘźÇ;JOF+YΘĽ‡~—Ćôş*p~8'H˙ó‘Î:D4ď;¸k}輁j=ťWÔÔ5E:}řˆŇץ)Œ’Đ‘zD˝ŔDƒ’™ĺÉ"Ç\j´dr\—ţ‚şł>Šlƒ–>ä;HCĆ;˙-o:5É_¨łč.Đę´s–ćQđĽ㠔śšUȁżĄ\{6ČnÂÔď´u՚ąˇ}DšNžŒŒŠHśL0ĹkXivHÍb'㠕áÓ;ęÎŞşN§mÇ6ř|BwľĄƒěŽ7ę,şŤÉLě(d)Ń]Ř­ú>4óßPSßŘɐ EB.ČtÖMâÉč[ŇöJ{âYMy ä— <ßgС$˜~ůugý(™Ë¨PĽUű%׈vřŽ1Ł+JoĆFA=mBtĘŕÉ}ĚHë6~@éÉ= Žů×č %DôÜ+jęh ¨§ÉŸĐYŸ‹'Ł/„‚šnŞvô¨űô…Č\íńu49iž‰‡N_ ’‹áëóŽŃ>Đô/ô>GEôĆÎzjšY‘Îűô ­´ŹŁŚÚhĆzڋ‡{Eąű•L‡fStĐŢŇ?Ąé 'mć|­šŢсłĐÇ ž$íšňkŚ)*U^Q×L­Ĺ+ęL…˙ʂ@#m.1h]ĆŹľX¨3(}ĄU}ľŞŢQ˛Í2ŹĘqŢ×˝˘°ů*Éś6äšhÇ@¨É<ŮBí}ĎŒ}‡7Ôe4nAßĚř~@;}ůÚĽLyÝwĄŚrĆt’Ź'ű€ž*ŤŚçľ/ŤzáJكË0ŐF 55.ŚűfUłź˘ÎtőĚŇŚOŕî ZőڃhĄŚiŐa}@Ď.¨Yßĺ^QŰľŞ5> g7٘ ŔvŽmôě2[5ݍK(ĚĹaĂ(}KŽFú€Ć/DߤîuUĘ-Ô]čîŠ[ľ!ď(ý#aôňYĂç^Q–áeäbëHŢQI> œŠ#œ¨­.Ź4§é ˝jNŢP‡P, ¤dŞ!? g'áQŸrtnôěPÜő)ďčŮů¸ T^@ÓNšËSŢŔ€‚ęĆőœŤňtŁg=ęŮĺškdßPŰ=şďđŽb0b.śęeĄÎ ôAPěŢŃł˙u?Ůjűj÷ŢŃŮŻkŸěěâ]¨é^5ČŻ¨íP^wxGM‡ňz2ÓĄźPÓ˝žáŞˇ×T]ťWôĄ„3ÔŤŠŰ~Gą‡ÖFwŚJ|˘Ś6‰ΛLŤÔýv?ČŔřąWuŃGÜ4ż´¨;ôŻď.Ě=ŇżŽS3ţ 5ßuv˜şWôůĐőýŠŽ;¸ß÷˜Ű'űţňvúÄnĎđ_çł]]ćoO<ßŮŹ†wřŤŠ¨§ŻHŽă÷Žšü‰žëÁîBëďčqú˝Nć6š }ŸŘî×Ů%mŒ_{§÷ŢPÓˇ,ż7:H hźk&ݎnąŃŸŻösßŔ<Ů÷ťň-Wcôż6j]‚ĺŘ|@O—ŕű}e)ź¸+żÎŤOweŁć÷ôî5wřëáź6rBЉ‰Ľw ÓM4Nńé<čşĂĎ×űňďMW÷h6żw¸°/OaĺóŮ6zÜᯯEXż zTqÍR ÷Š>ż/î*Ž?ýď˙ĺ_ţň_ţß˙ţ?ţϟî_ţëóĎźŞ;w<{úżąĎĎśsčÇ>ů—_ϟţˇ_áů˙ĎóŸ™)„śÖç>úÇ î˙‰ďŕŸúGܖ˙čiżřŃ=ţ4Á˘Ş:Dd(bm“’ `]"\Ź€CŠÂ,BëHâlŔX}Ë Ö”ť ĺk×ůmŽwî'Áţ­\) ”Œg˜$QŰĐmœÍÔŁčƒQO/Udźáťnô´–„JOçŒňÇ^żČƒÎuÝŐŒćČö;Pl[Ň˝łÄäyűŠJžôşśˆÇr>oBői˝ŸÁ˘´u˘.“P˛˛cT”ŽAÔ{2ęŮJ´5˝ƒćź SZ9ßm[ĹP´pĐPíjGע„’?PÖOźo{˘x„Ak Ÿ¸'ýjű 8_×Ń(†|}JšMdy'g‡QQ3Ed>öĚ$ł¨Îg7ç3VŠ$9ž‡ę†ž[L4ÍĘŘĄę‚lžĽ@éV/ XÔ¨đ E”!…œâ8v 4š/ĐÄÖĐF‡RćÂ:ßů4ÄA›+ęÁm MĽ)Eœb ľú*ő$CĂń@Ľ„ľ'ĽŠ=é`-I=*š’<zőłÖ´ĐŤů‰œU\“jďQQZěĚŢB([ ĺžzš–őžt×Ćü/ôťM˛ů@™FD@ ńŹdőHëIA-ÍcQú#˛GćméĎPΎ†ĺ.éé8pŁ„”܇/Ż ‚âÍŕWJń0z}/M*l’_(žÉů­Qx†W,šżźoi˙VĐ'䆲|v´D6z#'(Ű&öi˛…Ćś;ß r{ŔTĆz[”ĽâďG ůîôŁŁęxv~œw幄şg‹bŢuňa˘l ^×VäXǜaŠFÔ*3*€ăŒź‰É´+X˙@éSägN;ÔˇIX Ĺ ‚ÖPÚiş\F2Áä×:žSŞk‚ĄčWБćŁC‘otšúŢôK&ô%2 ŻqŢa˘ű•ÖżŃlŁ Ľ]¨ćő%˘Ź_áĹůÔŰüűŢP3N`ŐŢYž4-yŠĂÎé̜!§)äÂ!G3Ą(:Z´“&'9‚ÎYçíŮ.$ů˜ëľP%@+žŰU:Q.˛Á› …™<,ZčŻÄő:>Ą™üş~îîFi^aÇ$´Ő^/°ŽĐ†ĚŽB$[ ]ÎL%ř{ťŰ]¨>VűBó\#îuÚĂšě{ĂÖ­ůBsáŸţ落vü‰ŽÓÁsE-zmĽ›ô8I.”SMi›)2°YáçFŇ@a2˝_mŠJƒĹB r`ŁÚ™ÎIÝÄ›Iő*Eé\íÓ¨ŠÂü˘ůeP¸‡OVh_„/ݍ´ŽÜ(í´IJłÉarłŘƒX‹}•F.ă&˨(š"ý6Ł#ZkĺęđHłq˘ž9,Š &ŤW”T­WZIrF’áŁOŐkCô9J5|Šň¸äqJmţV¸žž'ÝŹüz´%°ƒ6[+Z•’h Ovr:ş  ě9z[Žő˘ˆl‚`~ ,´Qě§ęe8A‡LB[CÍđMó7ýü͙m3Bi~•⎗ĺVOĂ=_śGŹcAž@ÉâĆ CĂRÓášCëĐ$[Čń™Ÿ!agf´¤ë“UÔÜJXBžyEËPĽŢąčô’щŐCÎŞWîcրîjx5`˜‹+Ó Ş…xÇGç;ôÖ×đn•:îË_"´ăÜüž(‘ZĎŤ_^ë<ˇhAľ˘´ßqÓíGąë¨“SëĎ‹f. “;tŮÇ•ţ…ň“UŹq[%€… ĹnTz븡Ťľ(ӑö/r8×ěL¸@iZÂ9K§ƒNŰ5ż şćb†˙"¤U@s†›Ćý՜ˇ•Ë&aB Šľ9ł&şV˛€Ň Ö ~-˛ Ő ӄV|ą‹÷B9ŚÂ[ŤŸPz vž÷F1Ať§ŔŽŤ=tť˙\(ďUlڐăÜí¤ąöF/Źěœëű/sšo ÇF!t˝­ÔŽÓÍjľ.sIWÄDY<ňí˛œ/T%Ą¨Ë>ׯłŕZéřąĄQ ˝+\(ď\”=wÖľÓLtîJ-'%™kŰŽâ>+ŻŤűšťQÝ}=rÓç&ڙ›…Á,1şëRuŒc`˛ˆ3âÔdCN;:u="Y’SXoćn”ě&~Ď ădFĆĂž-×Î:Qťł˘ś#y=çÖŃÍËÜDičťÄý˜ëŰzEg†Ýł şÖ4GŔ…‹×˙-fäEŻÉîÍ9=Ćѡ î@ÖÓę­ş‡5Ÿŕʙ!kXaďŸoąp„Č˙ š#÷ž"jĂšß4QÍNPňBłä ŔČ@N3sśÁt)ŠŇrĄJN$/LrąŘô0h˘˘žŒ1Aó@4†&'ÜLNdľ]moË6Ç&f|ä$υ>"řá˛vÓ lO˘ëĎ÷֚>- |ú7´Ń[bĎoIXl´ëL´Lć6„\Ż18ŃÎB’ŽŔVÜ­ Žň"f&š‘Ňe"'=ŁdĺĞ´4ěČŮĐyÓôR˛2‚0ˇÍ”5ß 0k…Ďń ­YđŘsLúžń^TvâăąČ‘Ó:y^T@™pÇŰ2“}›>ç -Źk”čŤ+”Ü(0o ĆĆYĘ4˛öç…ä 1!Ý`/-šO ”~Jˆsn,Đłäj-KqOĂO‘QZŚĂLÎČ5yÎB4 ‚Á,0cEP”ś˜*1 ŻÚðłůčű\5ľ´ÁşSeřql˝IëĘ(í‡M^śŒÄ=B‡–†0Jć1y0Ąň8VEɁĹI@xĐdzpí#'“ŃL&YžhçP•Č6;g٭ȤAĄSŻ|Ň"™ŒřÂ/FSB‹Ć™ńZÔʤMW› €Ň ÂĚqĆ'Áđ—¨/L9Ú2&Šđž!čŕŕ9–“†÷`N‚Ł‘‡!Ł{sŕĚÂ0Š&06HɟMóž|wŁdŇŕűé %q°ďHlđľ#•pf+ŽĂx´¨#Ćm˝ćŽ\ŃěƒÁťB“w<؅"ď03âMňU^€Gă2ř}˝°őË÷E_@Äéúc—„vůŇ„‹îČK$ţ]^íäš-J?>%<Š.áĚdu‚Ňć<şFđ})缑H{6 ô8=ˇh #‘˜(u˛ŒÂߋSGm˝Pr­Üŕ~ŁtĘ÷¸ŁçNPÚłF×8yÔ' ×aƕ’ô[zŠ>ţ†˘q™ŹVŸ”0ö ŇÄBErä`PErý„˛ĽĘF Q3t.Ő!`ÚŕđŤ†úé”lyšX_áFC/<;t”Íś28ř&{1،}Nu‚Âç>/úűÔőÚ ź„ĺ×:žŇ‚ţö#ćⲠ =bor3X䈸AÄť2ÇîhščŢZ¸ĚşnTŻő]ŇtĐŔţ-_‹Âsĺ¤@מpEQÉŽ\#‰LŠś#˜ŒŽŕ0mOaî­ ÝJŐ}¸ÖŤ‰e;9ú>ýŢßZŽEךQQ*”S@ SŮ2“Ÿťţ:¤í~¤Ş%ÖáÚ#ąvŚ Š">żĄ|3OX’ƒŘ†ÁŠ Q9󑊵6&ęNC’ŁŹQĂل)Č0:$vżÍC„I3g՘‡7*ć!‡Tľ¸ƒí0šŽ™CŸ°,â2Ů8kƒŕiM­¸i52 \݌´:n“ąOšxa˘bţ[´ňŚLçdƒŮX´RgV“ݨ‰!öéG˛5b jýOcłÉżb\•>Z„âŔŇg Ԩ̤Ň`w WÄ*6r‘Ťý$qÔ%](—0‰ŰŸG¨śÜi˘îʌ‚'^„8 biéBQf•0ĂŕuŹUPQ"lîFš@% ˘ě ^hŕ[çŰvzŢ-˘×°;óEˇüčšH˘Ë𤓁Ѕ`Đ08ÄćÖŚŐYap,m<7JŰz–Ř"™S g:¸<÷‹QЈÚşxŐ ÄĚy^{˘\ N(V§ĺ:IgQ8…kŠĐ.SE+7u0šťŒŽOJ˜G{|eĆőÜź˝Pž–NW&ąJw•}ŒP!̻р^2z2Ö]“} …Št;´Ď —#tň@iDĐöz@2ś'Š–ˆžQ~28š]@”ďÉĽ=á> Şň@iYTš-ÂĎR82ŕđŁä(9sYQ–8߁iD˛ŒMú÷] lÚ;šžmŞX=@Éɍύ˘BXęůC>Doěŕ͆ÝůŃĘׂóJÁÄ-çW'Ť”ězč$Ş2¨Gw˛^‹ŚĺhćPq‹őąEááÁ<Eăˇ;œ¨ţŠnFMóՄűKfBfZ–ă-&j_…4#”~ĄIşę9\[Üj‘ň—ă÷jĆohBWš} T'W!ő8Ć2´ńg˝V\I”˝§#A?PéG>ƒQ7# ዠweđÂŕŢ[ř0Ł{ƒd“`{DŐ šhÉهĽƒ†~ ŽEa "şŐÄ?[:Ž„ĺQć[ՊzvδőÁ™%žV5#v<*6őĐôĄh›„)‡X^Mi~ƒ‰Â+ ‹ĂÂńD:œ%nj`úm9ôˆVË”(%7z ˆä,tœQAÚ.K× ˇÍZTDŔČŞHŒŇÂÖQÉĎ1ÄTy;ýÉťĂHKĄFÎ%ďNö|šo''Pč6šV„œ˝‰úÎe ‘ŰŇŁHŮ€7ĂŐ@ő|ŠÍPP:Ćt&sĺ‘FqVm 4žüdäuęL×y,č5*Ä'_ÖJ 烠´ůwgĘě@‚{´ľ¸ëépúˇXÇYO瀦¨ĺ¸ŤD΂Za‹LŔ,@ç,=Pp[8Sá֐Žň)š ˇ Ô2І֪™iƒŰQP„nÔŞ•]ăcÇ­0ŤƓ;Ä8cÁŤČ­!“ťdĐžA+.ŁtĚT[äƒŤJD ‹evݘa+Jí8ƒMďŘm@Ű +#F(íĚ9Úč9˛Ý!k!׊´OÔfÄĚP‘x*œOŚŃ~~˛ě˝ć¸ W&čÎň{œ‰T:´bľ•@OŻł’}']Q3QúÚk˘‡–Ф82ęx—ęg޸ Š Đú w捑´M3E=:G˙Î{î 5΢Ń˕9ˇ(ݓkń6ƒ#IČ\Ăs–MPk’ČBLÝÖ5ěú%ÄŘ锏k÷IůŞkŘĹRk%-vŢŰυjÂO­őYĆEžLč;}ŻM⚯ôýy’œë×,:ŸŒ6%:şÝC/”ŒĽlƒĚžA%úŠ>vĽb[lö3 |´ÓĎŰ8ŮôčĚý–Óú­™﷍›gCPzßb3Ď{ÇFŁ9šC ľbQSĎkĈŒĘĆ(=lf™Á<ςb ëŹČ‡?œ(Ť÷4U˘;ßÍć=š1ߨłăčA얯i ´ô8Q2}† °Ó?€×;–n—Ę…v˛ 4e˅@˛hĘs&ʎŁţHľ­|adÂĐZb%&„NÔ$đŽM,döђÝB&ęŒsd!Ďk!@çóź/˛FÝä1őiYŞ´YŞˇßvgGMfT@ŁÝćN`VpĎMlb×ď#ŞQVńĚ|ۨž“Ů\/´eD8áëě^F_@řa\MČű.VŘś$'j Z päŤVxŹ*• EŇ ćٟ2('´ťRĹwđŕĺ’3ö6=<{ ĺ¨¨ßč̞s‰͊ÂÉwä@ňcjšG=ŚxţšťQ­Şńˆ´j !-˜ ˇ*‚vé{MϤ`ť’Ríƒ"ĂؚŔO śËdí[Íä…ÖęY•o6E9>a‡IŃśßLT]2t|6]ÁGąŽüˆŚ@ŇÝ(AahďŹ$ Ž4Ďň0‰+†˘¨şZąÝQ׃šr­R6Nۍ’}¨z…^ĺNWoŤ˘h{ńFy˜Śœj2mg ]z]?g‰Ěv´ˇíűՅ)‘]ýp@ÉŇśwîF%42ĽŹ •yPŇÓS‹gę2A›ôb!şK›X—†éœé—Q-°ŁĆ fŹR|ăQŚPĐćrVÔ@Q ť€Ę7 zŮ^ňîĂžP7NP.93s hÍŹ4tv}tuˆJ§§”ď€ýTâÖP§`9łÔÇ ł¨źęHVëŃ'Ňć˜7úZ86gn0ÔF°O€†Éf¤Ŏ6FHö uˆľaĆ x6SšY“@Q“(c +(}^PÔ}CaUűuBŤĘY4jŰńůŃ*Ľ˝@Řj2ƒ€Stpő˝G˘N@‡pő4ĄuFŰěi3’œƒhgv7ÚO0DľčœLMZúwÍW@AbÔKů¨XÍ×o!LŇRżoĐ dĆ[M+UžB備č.°ŔŠ<é!Ŕ?ŷ܍_‚~ďŠ^)OÔ%C 1 8QdXsŐŘí¨ř7 ~¸,2ŞtŢEq0ĘŽDťÔ/„.LSßP˛J´E~`ľ ¨?w ¨ oßP2Wk3ű2gRožöŸ™O‹™ß͢%ˇ.hU+#˜4He…&ď6¨yžPČ4-\/üˆ;űT,Ř#SčnT\HÔP6ږşf Ĺ ˝QTuFs”š’•4yM€äË(@Ż+%Yz_)‰U‹Î$ŹŠ-ůÚş3ľkKV7ŠE9ż}˝špgĐŐĄdh ~í-…ËwÉŔ´őŢ~&ęĚV…Tľň_ŰڅÖÂËô¨ ^#W<ăHŠf=Áš KÁsöR×°wńŁŕůŘńÍkü›Ÿ(“s˝sj˛úč ˘ XŞŠw*TćÍöÁyĄ|Čî÷u‚‚DŁ^†Ę”Ât|' ‡ŮůőjŠâ[e1ĄAQxąr߼ŪVŽçqŁMĎ5{–* óZČ+ĽÍ‘q=Ůvë×[ď…ďR.„7œœ=Ř0Ö[0JsSę\a7Ž;›×ę“iN•)M_,čcŃbôWˇ´šv ż¸ačYÂŐo=QgšťwĘÝá#ÍIă•ňEKp˘ÜŸî [JĹ.Ńł ™aœŻ9É V~řL—ěü°A÷Żdű×x•jĂŇţ5ĽĐ'ëy–0VŐÔ:˛ŮĚ+Ű$Kj!—<“$!œYrÎEur:†&Ô‹šśššwÉ …–gžžx/).2g˘ŚôĄĚ=¤tp!§lÄŮQ*Ŕk]‹^ŕ‘ą&ń™ź;JjJłL1;}8Á^}ŰŠJgŤ ŽŤŃRTQŒ–ň…Ž‚ $üÚ.Ă@4˛:“œ(_Ű!!bK>^LšťC%L‡;ą’žÎԗ `žĂŞ:IuÝÉd[ő‚č|Îa‘ą˜$ĽžRÔ¨…™Ş+Ç˝ŤîÎJƒŻ­­äŹž3[‚+5,öLLŸlľ€AW˝ÁŢ_[ej´‰’‹ĘĺŠđm”}ă@ľÂŽ“áSľŽœTŻĽÂkvœ|Hl—ÚěÉ9˙ޚŞŚ˛Ý%ic™%Ú+Ę~×;8cí°čąW+uYQŞ•ÇčŽ*HgŃe_í°& şěÜ9EœąĎęY9$,I UÄ45ýϏe—_OÖpŰɰ­}óžnWŽ{†8A5o|̸d…!ň|̐ĂဪMفMr7ގ žÚ>üŃfćŘ8:çŘö°Î9oĚ3ĽžšĂňŃјţœ33ž[ŮžŰöĎŃÝAډÚĐri9V9:Ax˘šuł‰Źp×g'rĘNzn´‡6lĘ2aD>ÉI šÎ°Q =ĺ‚ łx…Qnvć:‰¤c›ŮŔx`5z—ŁďŘj'˘ö‡îŘŐD‰]Ĺď;x…ŠŠŞË3ző …×}ôěđŐ’ń_ťŠQŮ1­uĚš3zu~;zuŸ;NeQSńAh™Î(“D¤nT"R\Žâ‹zÎŘÓF5rDť`ÍĆŘŠÓ´8ŞÁ/T Ça›řĄýŹŤĆüBľý°yŽÚő‰ş3ĘŤ‰Ü a‚L¨ń•. ŸÍ(ŰbtŸQJ^46Ó.żˇŇčŚP˙Ŕ.’ŤŁĐ˙0]Ś€ ĺŽ;śˆ›°%dşâłD†ƒT^Ȏ{×є0­og›¨ôńćűŃQQÚĐ%dłŰ%.”ŒF않ĐÁŘZQΒuŽöfLÔRß &!Ÿ.Z`ƒŽîrWȕmÍđ¸Ţ¨Dĺ€ćڟÍĘş:_ç(Ғ:[b tt÷ć‡=ڊĐÜG#Zf[í_Ňî¸Z#'jčf#4÷Ĺş›hZ„Mćbş33yŒŐläQÜ?[6-x„f’měl¸;wÇöÓ@k ˜yž8‹nňŒcŔŃŤUţ@S皍ŁIv‚ÎqvOŃđ‰ls;lҍűF™hÙN#t•u?ćü 3ZI…–-z„˘Éë٤4E=ÇlƔhyrQÓî§<´8(ŁťŃID{,̈´K94Ě,"ۉŮřÚ^ť‰×Bž—úĆÉôƒýâČSŮȡ‰˘b‡+ĐLŒoŁgLrnkŽKj s[핫üŽR#‹ŠÍd6VtľLŠŁĽb‹Îş$lř´_˛„¸Ć[OԝuIljŽś2Y§‘p‡­{Rć%-˝˘­Udy÷“ç{ƒ›Ĺä8ő0-ł”lŕ€ě\Ń{P0OĐЕ,śČŹdűË:ť|ĎÇ!Ćô’cwÜ{ÚWŚ Ă[ņô şs ËR™qzľuhSRş’IpmQř,&ŠÇzçôľűiBš­˝÷lo° 3“îzŹeíi‰m^(JÂň5jq:;śËf5ƒŤć­M@lűxŢ×ÝčÜea›W[&şܕ6)Śĺœ#ś\3¸+m=3WÎd¸aś$ŻFţňS ú=÷eüHtt"˙Ă5;ësLs;Äx§VÎK%–š#ÇÔ@Ş‘ß÷×RG˝E°K]/uűďůś+đŻĂžNčTžŠĆe_¨ŰKh*`°,é•…”î§ý­ŕ‰Ů18jĆş50-Ö”uý–;ÍSó‘oUŢl˙Ř4Z’Í´LQ6Zoö=(ŠUnÖmĆ>B Ý4Ř.ԝöiŞS룛3hńĂ[Š„eűԍ]ýœuČ&˛{ÉnśwřFéT‰‚‚"Ť¨÷! cľZtÚ Jˆ*“´lY4î-űܨŘ5@Ăd˘8ĐRqť;€ˇrkĚg,Ţ9íi:‰FÝ Ľ˝˜ MĐhLo č: #§8ö™AÁˇhŒP21K4–ĐŠ˜}˘PŹŢ|44Ąa~ö€M(t´Çi/%(uçŹäDăěćéT5…(Lůvm­=f{ŰĘâÚŮ8FŠ żäÇ|‡–@*4/›mM0˜–8­VrŞÉŠJŹ<é'-“˜˝Gɓ*‰Œmü~ÚÓDi´&Qýďî&ÚĘÁ5•˜ĆŁĹÉ?…2WšçTöŢ$@ÁvÔď—C`”ĽmőÚvú[ú°˝…“`Ža„“fÁݨřN@—’Š›EGmšo;ŠÖÜI!aď;I(řžUšH˛2ŁŘŰ*eĆő`m2Q^bĘŚo* ­&Ľe‚F3ĘłB´HŘ&&Á&ŒŻ“ůdRŒXTČHě]‘ĐD÷řşësr¤ÉĄĺSšQá^ÁoŃć,äZ i)°”ÍDžŒ.˛j|mĽđ;ÖŇdŠq@kP?ĂeéükE“‚áĽÁő5çn8lęNnÜu––](m #&že‚gď0ɀ,:YŠě˛PŠ/Źh€čr–XÓŕM­RA‰‡˜1°ë}+‡hÜ J4‡wŻ ÎVf6 Ÿíž–›Ć“3Ű4%eęJ°böJq¨46 *´+7ĘQ.~2:dŤƒXmAĐ.j‰yŒ‹—’_V‡œÝy°ökÚ(Źp›[“cŔw‘„* ifĂ/^S–|84 „/m šą %{›ľŮo9Œ& şĽ 71lÇHqLL/lœˆŘŞ‚YŁĂiaÉσž ‘9ń°?pÇVä㖢 @‹V›ĽcĂËh5íF5‡.fç[€Ň',L N­Ü¨dQ€ŇŽ-ń źd]ž>šŸ(ŽĺÜnMÝ &1Ş5nOVƒögóה(Pi7ăë„sXëÝÍä#X{ڧ°€ŇĄ cłiˆq˝ 0›ƒ p™.NŻ,Ó ÉC}[7ŮaY&‘˘č¨ŻŒ’ƒ)gqe:耳¨4ęăgăLÁ(ĺŚţĽÉŒő„WŻź ÜbŹa4x=ŐŞ @…ĽCĐT‘9šQP¸u[‘3â#ŮܖůˇSšnĐžÔ8UĐ ŘYĂhŁ„f_i9Ză}ٜěJvˇXܨIΞ3hcĘsŻć-ό˘nILËăžHËĐŐó÷ƒŤěílÂlóś}%üŃ8+fUă:{ľĆ™(UQôáSâІíÔ3}”çF™ÄZů-3߉z*<œĐ#Εż<-‚°|'PôÖÂc~x%ŕčEąžL‹ ÄrhHBѕcnŁ Dńę3.w ÍGÁ‹kćYÓOŔ–˛şŒěňƒĹ !+ă‚4­2ü˝ZR—ç…ŃâKÁŽXŘČáG-˘{œŔĄŁEK†Đä•ö tę*Ę×BW uř„h y1IF+Lf<ô(ĄÄŮĂL@‡C°îŞż‡şĆ,SÇÔN5-—Ó HVĺWÚŠ´J`ď`‘B3ŢTšâÂq٨¤D:œcXˇť#éŁ|E:ĹĺŕËťGŒiÚĜŸŢ8?RD>dëŁw…–ŻűâqB•¸ĂO&áýÓ?ţk|ţňŻÎ?˙úVsĚ °ÁމŢ÷ ƓýÜőď㊀´pEWĹԉŃ&Ňó—_îýóCśSűƇ‰;ŁţüëůÓ"‹ď ϟ˙Żçůńϟ˙Űó˙Ź’żůU÷ű_}쯢~ŕűŻĆp˙†_ýÝťşďżúúŽŮž+mtW2Č KÜKâú—ůď\X ăî ix"ß~QX˛4çoş×ń}ůÍçoţÍďď‰`űń›kt˙=ß3źžç5ś™ÜäżŸqŔP ˙Řüs_ÁTؘŠlěŹożĘőä­˙föžüŞűÝŻ>ôŤÍüŞ{ßżűťś×w˝F˜|ďÖ$¸é€óĄ¨në?˙üť¨Ç–řü(éí';šIęo&﷟|ţöŸü6w#÷!ÖßĚÝ?úI÷o~ËŃŢ~2ŰͨTXŮ´—ás˛Žäţ˙÷š@Żő‰­ ›žϝŁĘ:tż™´ĎýMżgžâxű˝řďö~ăőýމéłpýĽ’őXů{κ󊀎âJŽć“‘$Güˇý‡é‰ßŐý­?úüöGďĂłžěżë›Śřqx盾3÷ŻŢ(Ü׿ŽÖ(T*4uçfßYŢ2Ú˘Ś8zšP¤’Z&t€ÝőäÍ\ ^š™_Œ–TCú†Fîň>óÎ@}ᝣěB‘*îü¸¨D^|œA˜őÎŢA‡ćçŰxqvčxľ Jď*ă¨ŃdˇŃ3c”źh+nTŒ!˝9˘TKŽ üBg?€Ü(şĂ˅‚4EXrv(Y˙>]żfŃţF 7zß(J‚QgąD%Ä=ŢآkÇĐÍ2Œj´E÷řžOśżEç7Ö7v=GgßáÉý‘-ĘłĎőKaĎIđ Ćlz Íw˙6G$ašÚyp “ű‹Á<@…4”ŹĹ+'JÓŐ¨i/$b…ž¤űŐN‘–mÜqbQ´ˇ„x/¸¨"=ˇS‰7:Ÿ 1ĆŘӉ: cVŞ­÷EQˇfv;¨šëꝨÖ˙Ą÷7ď§},zžŮžĂ9 úkîF{‡żhG÷DĎ/ĄŞóŤšŸoŸRžđ,nÄ+gNź˙b’ǑѠGĽ‰ ˆ¤†Ůnťk/42sCA Ńkßć%úš‡1×ü5č "´Čhki%›ĽçB´żŽaĐÉa˝¨\ť{ât­*pړÔÍö?ÁYö8Č# "Y)– E1c՞KČ­%eż]‰ĺMžť–9ô;JžPPĂEU"Ůw€k_Ž2Ë՗@Ý~ł§Ňíq)œŃŤ×ZT?8B"\QâŽYg.ݟq]k>šE1;Ŕ˛˜ĹהĄ ÓG?ŽżŻœß ×o)ęě”ďVŞ÷DBí¤GŮu8ö­Ę ŇcĄ|¸ľa‡`p+\ŁeŃ6¸Ož#ßCˆň7ŠHüâ __Ńę’­o¸Ń4  „{Ě~ ] ™´™PSzšmćŽ×l™¨YˆaOĆöuZ°zPXŹtžľĽ§BÜ{´aY4ÚaË2ůűՆv ŚöŽj MTóĚ=ň‘^ÁkŁÁ9ƒŚœ‹•*Bšň˜…ŐKÖčB™Ň`U‚Y˘jiräłTúü j˜N5ŠP`4ćă‰: ĽhFj ;Ą`{ŒbÔnP4¤0ôAúBd˛„‰Î|cŠe@;św֑™YH Átf!ݍFś€vć°(Žj­ÔəkŻIűB2JĹPOľP˝ş Vzî1A,ËŔ ÂššţŢÝSż~ˢ’I:RőS‚Ľ˛5Đńt§_,y“&g6÷F}A. čÍź6ôA†&[ÓAš-v„cSpi品Ž˘…˙ĐZ‰ĚIŠVTäš3# ?+ ˙ŃN^_`bş'öČŚöÉL‰pj§lUÓä(ˇĺ!ěČ|Č潤SřŹ8 FýĘßč‘ë žşMŽş€Ekm]™Í(Ş„ÎÄąE•eEBQÎŕUHCĘ6 @EhWŞPEQuË(¸FÎŠ:˘v÷,•ú昳*°Ľ:+[liV\ĐDoƒŃŃş‘Y `|"ëhJŞt„Öœ‰$€äVÓSđIc÷ Y ĆŒPQš Ď:ć‰q]K^‚WŢˆÚŠP‹ďBFD‹0™´0ľTjEążŽ›j, ]ĄĹEa„ä(ěŠňÖhJ^€Ö$ę×\S{­–äe)Ź0wLď—2׍JŮ 3ŐLÝŚĽ°˛PٰÂ^EóĐKaĺFĽéšy‚đâm…‹.?´#ő­€Ÿ§TČř3UŸR}Š%Q "˘]!Ě ýnqë䝧—Ńň2wƒ Ú&6>?{őˇzftySW]:w,ąť„ęTâĺBŃŐ)ú{mŠ}L;”&„ś…îro†ćîşĂvŹ[čNA=ŐhÍAłvŐďĆPľĐW_Ÿkp PP󟟖ő÷ŇLĺmĄ í‰K´ÂÂŁ§ ™VĄŐžSÔJĄő2–pËĚĄ ]ś´Đ…NA9Ľj”E—čWUű2—¤Ę&MÔę.°îWÝS—FӅ&ĹFmx™ň‚KűéBéä`FÉŠĽŽTş? ëć~A9E/é¸Ŕ‡č˛$Pˆ˛[UÎ3Ÿ`Ŕ›PĽ]6ŮV™e°,ni͘UEX˜DŕXbgůš‹ĐÂľŚŠśÉŹô,S1…ĐL§Cw§ú3PzÂjYLXPuVç|°xĆՋĽľ^œiľzt…IUÓĽGÇ=Ő­Ťş8šŠBhĹA8.Í*”ő^KDí§ÝsĄyp$kškÍńZÄ ˛_ŚŰTÚ;ŃőÍáööbĹď܍&ňŇVˆS‰Š.…¸Ľs‡ĐÚ%t{(Ú)z)Ú!2ăŹ"]WĹŒ '|GźÍŕńĄgÇU=ŰëF§r]]¨/Î*×)ję‘ &›*N4&G<ČT–ýĹ˝…d\‰+´ľë.TľëP?5´Ä91ÁžE;gÄë*łŞJUÄ2ľn”s*¨šň)šRwŁ4]ńŐĎnĚCź.˛™Ÿő#féÜÄÄtFťa‘)ł‹ćVf0*q°´˜,člIĺ5Ë˝äF%nkÚŃҊÓ.٢v˘v´eď ¤ö AĘ)j‡ŠíúuĺM››Űô†Ľ:‹NMşÁľGý<86ęĚ!ƒžéŹőׇ&Ź‚Ő¤kěôóœs¨%hű‹Ÿ’˛Š %ĆŃNžaYu!Ő:Ş'hŽz<Đ.œŹUp˘Ó\bv“P•Ř€éjŤś{˙¤Ł ¤j}Íśl&ęŹ \űşőčRmĝfhśôvqTD”ądԊš­6SV'I=_*u*ućĘło˘ cńI]Ťđ1ŤúŹ6 ŹűƒŚ#âs#śM9Öp™ź›œáBľmŞŁ–W›UvŰÔDĄ‚€˙Ô'1Ŕ"źP%žčPJ.Րň“ž}ł4 Ý~Qb ŕ nö 8`š•č oëD-+<°^űdđŕžH *ŮKjuL2Ë'{ĄŇ¸…ŸRC][EeÁŚÖ×Ńĺ $G*ZÇÓj1¸ExŒD*i;Éݍ* 0…`éU ĘIąśőݜáß#˙i–nY[.tjâqќœÔ`ƒ‰PđĎŤ;‡$žp ÚŃĄÍ(ćZlrJC<śUę •ŚŚł™Ă|Bë´q°ŻÔzŤç Žžˆ'SŽ{EůÚ>&Ăây‡E…fÚz˜Iö×RC™!hđJł7ă^EcŹůąĽĽŽ&+Tďh4ăëUÝ2Ţ(YŮYPßEüŃr¨ÁƒE ”,ç э2ŸăňŠä›aŐťAŚĹčq|¤…ŞüäúuƒÉŰtŁBň>×֒ťQĄ™Şń—­ĂvB^…á dLJ+NŤĎ1TJŹQôĄćnž,F˝jx€S §ťŃDťĽŹ öěĚCo´ěxxa Ň3ş)™6Đ:uՔ=IŚńb}ÉŤA˜=^¨’ˆńôš˝c"™†ˆ OŐ&áóMX*“Ü \#M&0N0wĄńT MŸ óŤhń™×ZţM°fď˜ă_žěD…ˇ—<šiœšiütÄ7w’Ł/Ô°Ěńz0٢i]üwX.Ú!šőŃ.PČúxńÓŰLşżXŮ[‚Ű̀ĚF†k?ioPů_ľ[~Eƒ.y40KöÉ ¨|ö7¨ęhŕ8#Ó-Lu´Tyoď\0}ŠŁ1ŸtOá98ů-¨œţŽĽ›čMQ€çU?€5Ťţłł"¨îěNP: őBt#w€Ľ™ă°Új'¨Ň NŮîę\ ąjň÷R ot°[-ŮJ>LÔ1 ^š>F+%qĄ˘F–qĘdx4Â2Cž:l5E˝ƒ:—ÎĆЃn*śőz겲ÓhEľV•JBt`˜Aľqס—š1ĐhA[ŐŠ/ănTő˜L”žO3‹Vu@\„˝“Đ˜Zż„ú3LJŠŔ8Ě,šÉw dď…Ú(ůO%ZQżCÁ ę*θUÉĐ,AÓGžLÄTq§ÄnÄ.” †0Ź ¨Ś"úNO—€ĽžjQI˝XĽő‚ŠŚhˇßP_””Œ]U ="ëX,_B\É "ťQéŠÔffŚ*.—ş@š€Şj6ČĄŠzĺ5ú„’w$Äľ¸,˙Km_‹"Ěj•=39‰ßŽ`ćŢh/h2ę+4ţŇőšQŸs—P‰Běľ`"˘8ďťŃůčEzÎp _Kِ9˛ŁŤôx.ěAhvßşP˛3Ł’ďą×"´”š˙ĺ|.EŻ'Ȩ -œ;?Ă[,˙NK2J(Ěł[C^ďUÚXtCůŽ!JŽ”™ „˛´đ°îi3Q;CQĄ“”yvĎć mP˙sčÁłŸrvđ…vDpŤá1†4Eľ‹lŁîXšąvÚ0âáZ02ŽJŻ2Ó9ÓF‘›:ű*>ؘĂľäoť%”‚6˜" =OCČN§âFíV“9÷Ś’QSWńuC,7vŃfݻ݅’iËlZ™ÉÁşÝ/v žWgÄ!'Ş×Řy–6zďÎ(G­%Ěýžě`ŁĆYŕ™;˙`˙b´˘/nń|Mľ˛Č”“ŮkeŸ^Ë 4Cžk;óÎ@4L…­*Ÿ<awĆpé°]¨ž˘jŐ§d•3'ŞC$g„ř:§u™čb¨ƒköךxŔ”˘e2ƒ+ ĎÁľó@›(_ë's-6`‰ZC˃ŽhwmPU!ŽÝŤOA];H›Œ-˘6ő!ů— ľšLY-Ő˘škďÄ×äIĘŔcęšŮ}ÎŹS¤€Š9ëôBe˛Z–ă1@Đî;Ť€ś´?‘ąĘu­i]¨Ş 5 ­2ůš$uĄNô1 4>d}ťP * ŐŒi 1ęB}n”–K•ˆz´ ƒP@Ł…:œY§<Ĺ)‹şgń •*›Ó6‹ĆNW?ć˜ĚhĂNű[–kÝ2T]F8ĄImXc`Nł"c[‰Ňł˛ţ֔˛œ Š Q)=ԗ‘Aυg1Y}Ţ -PŰq§„Ô!2čÁšV}śňxĘňxpł‚Bx"ĺçűÁJůąŁ%–8DF9“ŔbdU7J|˘PÝĄűłĽńX`lŒ2 yúë/ŮąiłŁ2€V œ!KoĄĆA@uBŞšXgâFE—UXśS1o@ç„k!d„N‡FdpTŞ~iĐ-ÔhPsĺÇôÔ“âž-aĎ+€&˜ĄĹřc@i˙–mc)Í-ÔČeٚe”–OĘFeŞ 7ršŁňÄ/—e3=ÖKQ΢Ec„\ƒFtuuiÁąYOĺ<=Şř*źâ֓ł ˆ=hP×ašMjý%)o>>…rcĺ$č° uşë\”äuŰX U‡ŸžjWđŕEĹîWp¨oľœ2ëî%䀲*ő# :@P揑uŇ#–Ÿ:—p!F)´§;şÂŽr›wč̑ ´)ĺĚ!–×ŮŚ4ŞxîUÓżű+”ÎźbŁ6(‚#/>›ĎM,EtľĽÚĎ°Ń Š^$PëŽF‰ŽÖ.Ř[!*S-<›áŹ…j@,#3†ęBš!š‹&=GňCd6¤3úćnTËjYoVë XÇdY.ŠŞú);ŁĽˆNíŽÓ/ÔÄôQ.Ü˝—ź3’ž‹RąaIÄa ř `yÔѲÉ5ܨp˙™’ç•ĂX¨&AČhR˝*Š›ś2, A ­ŚEű.Ä|7Ú ¨Ĺ×Ґן¤›Ŕ” ÔĎź * r…7Y=ى `ełĚ¤ׇweöZ„ë@AlĎ —ťQɆŮŰÎ̙˝vfŮŞD†t†4Š\ďžŃUĎž˛wŚ"~fú܍‚[°Ůšú=Ęďń"Wꓕ&ÄŕSíoĄšƒĚ+ hT…]S$흸Ľ!ůr’ś[pRJJ[ĂTá›ôě u'%ШSąepk˘ÝMRůä6w7ŠäiĚŘ~pÖóä“\zUnQ_šÚňl9P˜Źš‡ëHţD_Żç˛¨<×ш˛0Ú'ú-!X úŢç* 0z>NäŇÚTťË ŤżfŠ÷˙ˆ,“âŒĐßD­T ”˘*o.ęI‹‚űÉĂđ9[|&ş[‡ŹˆańÜ, ˝üBU1VYćGG’šv5/™űntÉ f‘śöÝ.TÇ!#Fś9ŰŞœŃ6\-X?_łŒ/…2-Zü㥍žÜIˆWQ„0‰—qĐŘÄţűÂáëá=, –éâŇTŔIpŁöéNN°*Aš đ ę%˝BAŠŠß۸Rę(C3 ŰqĆJ+‰J0y8žčƒŰ?¤Î´iÓłD†ăŃý匃Ľ,‰ŕăc›čŒ)‰‹Ŕɐě+3đ—Ŕ=Í%ߪSˆ[ÍÔßq-"œCŁt#ăőzł?D+ëŃťóľ1A4—fŠáçíŕԎ\¨vˆÖŸqLJ÷7ˇý„˘đlŇםaɔŠ RŃb’čN *é5?…łčţ–™f÷d8&řš`ŕMb-b‚reźy3ĂÉÚđÝĆOPbn/°÷e‡îÉíú0ąl˝ÇŻ#ńľP•Ţ&šR´^ľ2ýĄ Ґw]ĺÇ ŽÓ˜Ţô¨œE÷#ЊNeXĄđĚßÍÍĐčĺT˙ťŘšůŤ óÓyƒůf?_ߗǁŠÍȑpÂ@Ěj !řhˆŒTcĄö“|wýŠĄŽâKSbÚĽMËÚoôą„$Žţ^§ x9[*†PŽ%!BieÓÁšŸS>"Ÿ‚Ŕ*íżŒ5ä9źý~CÉs' "§B<^ń¤˜Jö•vĆ$­šŹi‘˘r_20d-G€y‘'Ş×’y œœ“Ó˘ ŻE0VNŽLL\‰Ż­3şÂĚ|Ł´–ÚćQu‚’Wɔł›ł•BřC&)¤˝Ž)ç0YÍčyh#Ëk$EásćçFŃW-Ff…{’EÓ ZQ4Ě|ŒˆĹu˝V\‹"ńxl!1'ÝZ uĚţDš DZ12Ů( oŁ€™^ kgśViE㒠žä"łkî÷ Ů-ďÁ„őă&‹‚žćp7*§7űœ‹s_ž@ٖ:ôçů&đBg¸ÚÜšT.bąÁJRËfłZó›šYßh\‚Ń1si-čöĚ͝ů&)œ/íŘ×OˆÖ̀ŠÍž×q¨Ĺ-Źpś.ćOR%žO€%ç%%Ř×UbĄŽŤÓUív\œ5:23S7(§÷ ˘e̝€7w FŹđžQx; đŠş x[t&̹潅pŁĚŰ")ՙĹH{fŠ&8~ŁävWAisĎăD—ˇŁËËdź€Véŕß!ó ”Ş.„׼Š%ŕ’÷"Âź;Ń”ü:Y!+)dQt˘GTiĄžů6”ËŘ[ëqmؕ:ůŇj r”sßLfŢ9T#„0ŤUĘľ×á8lÉÝÄAoZg`UÁŻ rýsôâ|ś$QJ“9KsčÎŘŚöJľ•‹Î(&ĐĄÉ.­#r&!LTuGMÓŹćJ¨`ŠK)„’’§ ňĽÝwůó<)7xžţŞŁBŻt)jKMMۅΰf`>BPˆ{­˜:Á=ÔëtöŤŹ˘/ƒnBË××>Ń=3f\”ťĐĽ#oËŽ^ ÄEń÷Ac3G‘œA#ŘĺQBˆš)ą; "ĎUŸ#,ÉĽęČŞŮ⽉š°$ë$e‰›EJo@Ű?Tjr’*“]—xĄR˛go°ę'ęŽ2ĘëÁVÉĽA‡}ÉşPJC°Ş;ݍ–‚JK3`ĽŚýřbśHŽV}Ć\;ŰBo”|˛(׎ٚv\‹×閦ŕ#¸xwÁŞţ ˛4&ŁÝ UKŮ-ł@Éü–ĂĹG°PÓś ´Wď-Ę˘â–c<^ťŕĐM<Ř´ ˛V:d'Zů|éźD­†Z¸řN”pźYŐöƅň“5mä˝Ä+Ő —ى| Ę**=š,ĽRô[˘ŢĽR'?B™(š,ńRQtôŚ™'šd*‹1PŻÂR*Ďč-, ’8űĄ’C¨AäÚČ˖ܡti•L}ôŤĹüęűüý{żkňŻďzpB:şą< ý"en˙Ó\Á –>p7) ÉőˇeăFůÍ ~űŐçwżęţčWłůŐ÷)üw×ţúŽ× JÂ",ŘÝQ\đăř÷qŰr€ŞąŃr…gĘ\nor_äŢţfϛşËĎ>ôł(Űúţłá˙ďŰşżőg_ßöd÷. ł8ťCŚÓ_'•ę ëj9Q‘ˆę擝¨ ™Ľó9̀U‹ fd”%%OŢ6 %śh9ހÖÖˇş3ˇ,şŘv”yë y ĎÜB-Ťo`jŒE5Œŕ–€UCîʕç"ăÜ,Uń…*­1zM{NŃ+OÔ0mM¸6ăó…*;4ęە˛lIť ”V€Š%U*^ěԝ\Š@‘_/Îp^OÔŇc:ŚífŇ6¨ňA҃un–÷Ű ‹Oœ6éĐS˛Ôă Z–sŢÎób9gn N g ôéó¤ -äěDwŁ"âPGŢľşŐŐ%Ľ’mk8ŻżWůă$ÍIç]—Đ1Pšá*Ç+BǨBÇÎ<t4xĺ]`ć" i겢yAn;Qwj"E•AQd°ě ČŠUEć{[ˆd ‡ůF+W‘ŘŰ% źQQKJŽP]橖źPŁ–L§3×?TE3ˇ4Ýhă:ú˜\é°CĂ*n*T#@ť× 4öOÎÁ/ԝă1xĘ˙˝T˜o”U˜Í*ˇŠŘ"-Č⠈ 6s€uR<"\DŽ´!1?V–@6P4`1ĘT2r-ęż äXĐ|ÖF§ühážÂ ×VHÚçÂś5¤YX†ÝČI{iÓ=^ šČ™ł›wبtřŹf.­(˙2şKÇ ĐŞÁ"ü˜Ď^–F‚!–=/Šô­4Ľ(Í0Ÿ­,Ďţf™÷SŃ[Ĺ÷őƒEq"4ąśŻiwŮ3BŕAŞĐy6y֐:‚ďçĚă&ŻUć m`S eu~ŒŠ}fÎLsŘU ƒˆâ ِ˛× f`ęujg:`:7ë% Ĺď凩’•/í^ő!K"Ĺ.`ÔuU~BWݒŁgQ/ݓ%—˜ťV;ż˜g¸łpJŕ°űÜmŇ`/‚Š¤Ü˘S˜=@ßş*8WF䝢ú¨Z:“°x×Bš›˜Gîˈ~ě]銪$•sÇt7š: Mw˜(]đÚrQ\›Ž^°cgĚć‰:AQ.„kq– “.ÉzFgŤꌃHŒ <ޚóÁŽ.şĘŕň+đ’‰ÂLř^`…Î4ž˛!IPV ľďy\)˛ˇĽoTúľšŐ)҉‰K#3Ďgőh—p E㩙‹ępö ąJ›¨đó&@ŃQH|19ĂBůěFَ6–GW% Œ4€ŻYä‚Q‚Łş#Yśť ű"őân´JĂsă>oá}e>°%wĎOÔs˝ Đևj§Te/^¨=ę‘é!LŁ pVđęśe@°HÉČştXGöúŁsTĽşe­tćZR/jŘLԐ€Ł—;p+­1— şäf¸E|KÎ:%*°­0$BňDq ňWš[ŇbkŞtf'݇źZe˘ÁZ‚h‰a˜ä#rďűî“_& •Œš× Ô5č–UŠ`4 ŐšUđ$˄Jež˘Ů+-€tŠYÄMra‹üF›ôR„Œ2eŠŐ@ق-œA“˛4ÔIsAźUFŮ2.¨řąCs™ę"ă☠Ą?Sä´ ph ,ŻŹŞN„›É6„Ô‘ů4<t†ŠĘQĄ :‘So=ˆ Şt}&p˘ œŚMé$ZťL‰‚ůĽDĘš¸ÄÚ˛Tƒş’L‚Ś|ÖđŤ„ćD ŻŻK “`• ZAQťÉ—¨ČĆ>.Ś–-KE şžĽKťBQ#wĽ­\Dߪ¤ŕ„śš|˝ô(0'kΗ…E+B…›çŇŁˆ¨Ç’Z€CBŃK"˘ Qéơ…E§úŤR™â55EŐšZ }PźŁŔ-TEg­ČBÝáNƒă(Gâ)çcÁéN3ĄŇ”Jšî´ťQŚÄçkéě^ôűLža"ťhžœ!߇ë^´Î §y˝ś°vČ'{*粟q^˘îFiKâlöŞCA@ ÜT„dúó Ő Œvô$׎ŘUľanUc’5Z—Ÿ?‚€qĹÎÝŇEi#/ŃJ&\hlĚ=ů&+şGŽĄkH Ňą”•Ň_AQGLs‰œł4ł,JW•QůNن’<ú@Qä;Źđ\śŚŇJë(ą(Ęđ°uE¸a(çŐĂČÓŁ#$ŸšˇYAŠˆySŠ=ÎnTÄ€eŸÝÇ䍊 YŒľ^![ މ:#ׁŇüŠs‰SĹ~‚*Çč!ÂĹoPcÁYk™ť(żHÝęđJvTŽgŔcŁî x°Ć }ÍŚś )łÂe)v$PĹŐŹ:RńH†PÔwN“ОC:a 8Í+n)Z‘„âF™9XĄ¨¨u7şő\Ŕd‚]hŸüć 'ô҅Ďç{šć`„žˆ:˛2Ŕdfđó‘ŁÖQ“ڍK慹)…öoĚ*e9˘Ľ™śŁ°^‚Žž}.ćŁŮţú5 ÜÇN&ˆÎhě3̘{tˇoӝđ4jcŽ9řÇ%3?ěëŹ>*<é0¸ł|ÓJ_‹§ö сŸĐÁĽfŢÔîL!Ě1t1Ęő:ccí–ȇS×9F->°ZČŹÜ(욓‰Ó€[“&ŁIíőF“ݰŹĚs‡‹‡[oĂR=Bď\`‡Č\”! dDiÖJE՜W­ŞCXǢ´+~°áľ,6˛ąëľ°ĄO9…S2wâCł„,ŠĺŚ”h˘\¸×š;M'ÁÉ^‘îѩۆˆy2šG‡ú+ 42'BŮ_U…•‚ŞZîeßVŃUÝnđ´,  {vŁťU]AŠ] iFúiŚaĄC‡„ى‡qă€ŇhięŇWšPrXÁˇ yD­´Wă2ú1ĹÁÔŔ"4sěDQäT­S~(xşEeg6…żĚÜŰ-EvĄSŁ%c—ôSĚ _>L Ί´pÁú(ĆR˝@iAœL5­r‰BÔ|ޞ¨zÝÔ1™Ń\jiuLśKcąL1– #ŕŒĂhM6ƒtč/Ő:éÍZ+: ˝…×:wUűݢ+˘+pE˛Şs /*šĆTľQZfęV,[‹Îjwć Z‡Ęxř rëĐYDĎ,ßQ=>œůÂbĐŠĄ+”ƒYEíQw&u(ăŃÓ*äÚ}+Fú q`nApwZ=l‹Nubf'Lu*!W&UcL•qލƒo<ҘL‚Eg/ƒđŚ>ši˝GÄ:ťx–Ö8P2ŚF2í7*:L{ęXCśłĐ“ËH:{ľ–pqřÜ(óý8n×ÍJr5Ќ 8Y„„˰ćÉdDć żB–dňp 9Ś2ĚÚ§śšRnTúW˜ŕpşÝłŐĹYtśĹppմа´‡M ľĐH둻€Y›çlâá–ߪűđq8ĹÁh×ób‘oĄÖŁ˝ä$ęr7*¤^ÜG[U`x6"Ý ô,qËŹO#jSCe…Úh‹ÚLčʘ`З<ÉŃč„gíť<Ξ)–ú!§Röʀ}Ĺń@škÉôc-uN…%x4Qg@q _Đô„EQ|íÁ ]×"âénŐˇ°•AbšC5?ĐŤV!x ”‹Á ځ•/›Éďŕ50Ú5¸ë¸xI`xNvÚ[Ą:Tˇ~Ť áăĺRĎnżœ"H.&dn"Ělú@ŃfQƒ¨‡6&šđ H#4€O• Ľ‰´ŃŠ6á8„w—ڐ˘dKăč>4)NĽĆ}áł“VLt(ćѢ‰VŘ  ´s’×=ܒ҆Đ!:9A ą\ާä‰)č{‰iď(HúĽőł:J1 AM;ü]b&  ]é÷€4Lńđ÷Ąmr¨đLJ~I.Mi#ÄŔGmś˙u˘ú\dĂą¨Î@žiŒëZL˜fmM\XŽŔYăF2ÉaşÓ&4Ž~]ƒŽŢŢŔéĄfۀtŚc!*Đ>Z¤ šŐś7#ȕҔ6˘WŒƒ+Š´ńD,H-Œ4ŇNi$Ś6ŠÂ ŠĽ‡Śů…NfÖ/á×nJ¨t(πš=nĺĐ 8‹n陈UԆ•žą R6Đ\ôdSÔÉO@~ŔÜępDŁáDŽĚĹ´H'âb—`ńÚ"÷năć*:Őý>ľg†ŇSíÝäůĹ €mN`nƒOĘľˆŽő­§“ŮąŚMIú`[ƢĄł{ŹôS'˝ü‰ÍüS'FŃK'ÇsčˇN̉*e´ăIÉČ:Ë/†hśŤS'Śrë٤§ŽčîÜ ŰLÖŘéěUŽ|ŘĽÖ˘BÍCů•HŰ ŮC“ˆ›&˜ęό!…‹žű”Č{pŒ\X7é÷D-mř੐tQŒT8ĘYŻöŽÂ/‹ÎüBÉR`m˘ˆśÚ0 Őiď¨rm¤_XB¨ŽęlÍÝ1ůz`úůC¨ď iÇ!Ű')=ä:Ë6ÉŃkĹ L†°xޕ=Ţ K'b€[ˆ~B)z2ˇ˝3ęó˘óů p${Iěř*ÜA@CSf~ĚűŞ1Œ~fӎĽ[žţ‰:CŒ‡Ú`rNJŃë0ŕdŰCfiŒ%÷Á´LîF•Oý<šö´ôwНÎűžăŠ%ČyźxĽ”Fp˘–ýą#â' En´EűŐASRéëŇŃYpń0|ĎC ŹőI@I§hĚĆ ^œ…źx*!tź."b“Şg]Wëšé瀁ŘoJmœwXčú­í~œĂĽč5\‰‰”Â5\O% 2|RŇIĺá}l7ôŕ}Dß\LiqO&ŻÎŠ´‘*›YĺUŠ- Ž–˜ł×VŮN6)ćG4Іúş­;ă öRú-YÎĆqă­ÚĎD•émT¤ÎೀVŽxŃږňE3Š4VřĺäuěéJŊ_Ť˘ŞľC@Ěš ÁîP:Y9\´aQzUańľăŇ#lÇ?6X[ ĂUÇ ;&šÓÔ˙AezĄBƒÇœ|irVzÜT‡Œöhą€°M!ŁŞ"N§:3“îĺ¨úU[}JďëN-čÍűwوř$á\,Ł6C=ČhŒşY(M!ó;śE69 oTȁ’y DŻJŞč,Şü‹Ě[™”Xs‘=ިC˛Ě6ٟ՝$” =ů*ĄŢ=bě“î2!Kö EÝKrÍP$0č][ŃKš_F@¤ŽŞŁDž€R&”~NY8˝šđ6ĺ„p93pđľAE3ʐbgQP5ą^—[uaţ§ť/a?Âş´q:°Ô]UM2‹° ŽL§×ýu-óHɆ,˛I;Ÿ0ż˜Cšbqß cćęD@ÁO¨mN„VD&J3%ĘŁ)r}†đwÍ:C⋐`lĺ"ń•řä*çłÉLˇĂÇIىFŕ‹€w-ȜĄőTŘ8܋wنł.gkeíKp9WşÉjŠĄŹ2–|ó&[!x“Ä:Y„#fmlÎňĂäŤĺ:ź‘íő–1ťĐI ›oy¤jˆ˘̊\-^`„CΖ؂“enm ‘ő áHůfUânýź¤@‡v‰d-i#&—Hmę• BʕŒœœŽäCĐAr j1'­äH™CdžŕáčąÜ?ľPw(.1kˆršŻ`Qľ ř\K3ŞOîFéhÁ§MQ üÍ0‚ýŤ%C­š1ˇż “ ny9%wžP5‰ŔS֒7ňt3¤@süŹ(ŕY ŠEđ•ÚIˆôG [ƒ1ÁćCă„fn#ÓQę˛~<ç€""˜ö∂""8Ľ1ŽSđB>eĚ Lg '|ŕgl_ZmwĺČj°ˆŠY᪝sđLĽÂľsLԙ#7bëšŘ éBőȍ|¨ŤLŕdśč:r‘DÉsp2’ĽCŞ!V vWFݝŝGîí‘Y(H‰n™ŞŠË?PĆçĂ8yŸĐ2@ëČ˝@=r#˜Jƒ:ët¨;™ŤQB3P÷Úu’^(‰XO¨Í/Q?;´ŐÂŐ¨*™”Ũ؅ÄŮęIŒŞrmł˘dP!Ç1Q''ń@Ľ(ŁttĘ|ާö|~*0ĎÎ•ŁŠ†QĎGŢQłĂwH찆Á9óZÔ FF`žž ɕЉˇ€ői Ž7ćěĘô ='K÷!¨—Ďq”â§)Pßo=żőŃP=5JšFMLʁF?’ )†ŚůEK— ßšbĄ0Ĺd‡ŽOĺş0°A6;ušŽL)+su¤žEýœYČšä˜çęÉ\vǘěB Öxßí˘źP]Ŕ+çK°‹ýBuc‰ĽĐ§ł¤›ČDí†ƒŹ Qco˘›EovC-`ZŢ(řĘ2JÖö@z'Œ%â/Oj !š~I€X/ŽŢ­ÓŠ;̃ţqD5ZĆńw7JÓŮ# ¸e‘Xţ’QTН'r>er$oE‹ęŮëÁëS‹15œEنŹá:éAœ8’0ˇ7.[`ąźţĽB%‡¤ĎXr‰ƒ˛XźS€Şƒ ’Œ.*˛;´ŠŤw](úJ3WÁŽŞč˙×ءěZ’ëĘÍőkhÚN˝ĽŠ{nřüăŔ¨5đ˙OŹ’•ťúVăâu˘skĺS˘Č`ęákĂÔÄŇÖŢáë2ŸľÔéĚ´Ę+šźíúœý¨‚NŰţnM("A 5——_fF°˝üű6NBŚxUźwîř{yŠ_‰ę7jî}ĐHÎŰ&]ŃߨšőAźf̓UĽŤŰÚHŚ—+ŢśđCĺuޏ•ŤŃŹçd&ëčJü!“‘ęŰ|'vĘ\žxÇÂŻĄR*s„ĺű7ř2ëCĘ`ôx Zߨ•ŔĘ_+Ž„EŞhýyƒćĘÇ$K˙ÜŚ|ďžÇG׏’‚Ú0eúzď=t;{X“‹ž”iOßčöك˘UÓ8éíAýęiۓOö^茏śL3@8ţ{HG ?“Š;l<9m.Εr_I+n„ß 4ľ[3ăS~ŒŕQ5öƒcęšCâËŮOŃp9űáM•h–ź'Ÿc'-žMüJ˛[†‰ßzŻqËN‘3ńwĽ™‚öşIşęPÝćcáG1@Ň6X‡C4ŃŹYÓĘfTçž_Tą×† 3 ĐnZ̅ËŃ:+ŘMő|œŕľ*áń›´éjŁçj­|ůÖŐŢ輍i ¤š­Ť}ŁŚŤ ÖŚś=rÂýjxľ…^u¤ŽŮc6şJhŻŻ„ŠĘ7*R×@×W/šś-u˝ŃKęmn­¨J<¤ŽĽń…Rë: Šn …Q̝ç€é!ĺ捹䆬n[ŕ@‘—)R=b×@WPŽŐ~+żŃbńÍ~VP@×­kً`„jgźD°ŃCřĚăUyŁÂvĄ⊼g¸ü'ô4đŽű0që2¨şƒ>X#żnk ký“^ČX“żxľoÂÍŤZümë^BÖ@W05ˇ ćŔöh´ŢžMZ˘!vٞŕnÔČP‘¤ëZŢޘ ]÷'žź1#ŞťŇöčź1}ů]BĎEš)Ěîň ’F?Á6Çc’×ć`yŁB5ŁďßÔîäăJŠ`¸\)Ń]Zóʎ+ĺ …ËŃ`÷ŠIĺcdĹŽw‰ż’Ď×{"˘ł`˜dőö#|Ąę]˜!™ž‚:ő9|°˝Ô¸ëÇ2Ł1<+p›Xţ ě×Ď)›–v( b ˙vlB!’V]’‘Ű`×cNp<ý ›QM€6W4ALw)ˡr÷*1D$Úz S˙źŃjŕ(r}tÁeëě.ā)Q'F­Úî­K+’‹§Žš˘ŢRkć‘ÉŹ-3ŽWXâJv]z€–ŁSŽO'qśIMŸdɖ şHďW!Ąđ”mĽ™ťZÖ~^L՘¤'-ÝΔ/TĚ<œ†“Š”Ť/ĺƒłĽDĘŞjgńfŕިąu>(`łwUŚôÄÚvçtą€ĄŸąâŐÝfŽĽŠÖưV#\łÇÁ+šoô˘,SîĂ>HЛ[V͒-.bLh€ëă™ĺ"MߨŹĄŇrŰmQJßhđÄmJÄäźůŕ+TÇ"T‰b‡N噢 ŕŽ÷5ż‹JÍ7ž9•rÖ?Œ“>ĐT4i‚üőމĘ|ąÚ/e źŮyđ*°¤é–ÝdůKp_Ě:ËAĹĄG#đŁś~é%tńö,ęFkćlľŸbLkŻ4ľ @8–@ŁľüńôS ęťXÖS#0L˘ŞíW;^`ŽË8‰ŞśrŹ4v0"˛Š$<´K"žYóçV El ˝ę–Œ}Śf[ z äJ哖ŢeŚveV âˆ”Żë­ŒŰc¸OWQť4şT=…›QÝMŃhI îˆőšHůc![ŹĽťťŸswĹŇ2Ěrëţ";łsł@͎ü$ŽoÔrł™YŤ2j–<źQXĘD‰ŕl÷¸łďdú>i´+9KV0&óŕ} ź}–>-ᚑĄö$ڝ› @ńÍÝŚ‹˝–8„…;UŘ)>hťšâ_wœ ˝ŞĹ󈻌˘VŠ/”šYÚŚ´‘Sťý/Ôrł@çśÜö††Ţö†H™ŽE"F†/TŞT 8SÝdšŽkOúuž…ŕĚÎh…ş‡Fžq{ü‘.Ň[č< =–ą¸00ăNřc×ޘáŕZ3Ë żwEśăŽő1ŠÝä–sś7ŞfŒ6Žđć  Ë5îAŚÎ|ӗ€f•áp~/To9ÎĄ§x×őި>JdŁS,wJ~Ł÷+‚ŤŘmˇůBůęńž7î×ôB÷‹îܤ봘Î —Cęauťď—­sžžő Ő˘M=ÍČFdɃVeȞk›§›ođć­Ŕ<Ţs“ĄAkL(IžŢČ=ťázłŻ‚ŘĆn˙îYEKŢ2ăÓĺő÷ëú`?|ýš­rf‘Ź{ˇĐ(řZ“VĎĎúuŁČĘƒv|ň¨ě9ľ‰Ö€ÜćĐővŔ-I;TÎs¸ŃÓPŔÓ…™ľxĚM° ‘×5ëzĎűçΠ—Łvyž\Ai%ő0ˇűe`Ušů_ż[źÔáYČŘÄŃ÷ĺ{ňǁű=IzOÄŞ ű †|sń7k}T澌_¨v >2ÇcË ‡eňž§ľÂޜ”^ż} Î=CůęۨĐPő4\Sż„†ębîŽEhŘĘ{\ž3ƒ“ ÜUܨ]1ÂS]ŚÜÝQ4\÷‘ÂróŐ§´)ƒę<ÇĘbšj7Zľăčžc áV~˙ëIŹ4ÎA]>Ę$_äńÖ´—ć×o^$ž^ȧÜ}íó8Ҙ0”׏.Ń ăŘf_vĺľşŃH R›čz1•QśŹVŰ4ű|ŢpÉyĐĽłČ9‚łŠCśyiCg/ڄŤ7EŐĘüĄÍqkۂťožÓů6Čö*Z2 č ÉŚ›F˘#EŞżEcÔ*# hŁkĐ œj/1Śäœi÷?‘=x›C?В˘•Ž7‡Ś‡Ž”[ĚďJ‘ao ‘†ŠŐ¤t[Qłă1ŐŠňŹK&ÔM Âŕé`w,a-˛~!‹6ŔŚmŸô’(l¸yŸő™íX‡km-ŕ×Ă1%sa+ş~‹.iÎýwóź r1ç+źĆ/>` ÄhÜşÚŠů/ɉۦ<óq<7űöjÄ ]š˘d“c>ţB5b†,–&`\ˆóB5Ę\Ž“™|k@•ńŞ>Íâč5ďéŰjř„dç™ńĐ˛Ö 5¨l5×ć'Ý3ôŽVô°Šę˝ĐŁq°;ďpÂCk‘ĄÂCٌ›…OCÇ6ÇMh¸Q#4@źĄŻĎěnąxŁlSŁÔgŰ$‡őâEóěćČ­ŢŰš0)g˝>hdĺÜ2Î YڕĽ˛iĎ  íAsOꝍś,ZŔ$†Q™˙ş–# iĆÝȄ植ßĆĜÔӞâ[ž^¨vG1ŠőH˙>Ű2$ˆRˆÄs €ŽW!Y××:”§ŕ5šRhbçéy˝ˆtĚŮŞéuĐ| ™9• Ű5vÉ×Y t›F' c?wűÝUÓh¨úÂŃJśő¤ÝŻĎŻJ•Ŕ>tvŞăřܨ0Ĺ™4`’š#`ŕ_Ľ×Ű6"ĆM2Y,r?˜L8BÍů.Q3ڛÚő’Î)×°ŚýaľčRćybŃßwÝi×Ö%ťí‡ý;tÍ\E ęk}hƢW†Ź5uIüM~¸ëŹq_$oTŠäL3÷Ą…M4 °W(媴JNKÉSw v•|ŁV%—ý×<Ľ_ =Ľybe-ôůö”~Ąę)}]„ÖÉ7~ió`jrËÁúŤžNţíÜ>łRŹîŹurŞ* gÜn˙éZRÓwě<öíJ7/‰^ŠsĽ6ôvĽĆű˜şÖőˇŠô ĽŠ4żJdžŰË>úFĽŚ4géŚtîцŰ<ӂűyó蕊:Й•ç¸+ę7ş›–1aŠwňéo~Ň íëŒřĺmčÝ_PŹV=œ…väě%ßv••ó€\Ô/KËV°]ťű$ÇvŤZiÖď v˝5ÜčvŚž†ÝÎÔ/´őÁ'n\ď*,ľćŤ‹šÔÖ]!8ŸúWUpÔjł;ڏ ś¸وAëĺŽý˛ˇ 6  —.kkC­ۙVşF8¨ű1-Ěň´ŕ:0.Ĺł7Ş6Řn‹é|° Ž0Kíć¤b?Çű…Ja{ß'œźšu¸Pˆ&?MwđśO>N=@[V “Ă>ĺ"ĺVBި ßE:ƞ$ÂëŘ6L8"…;ÚŚ*B[čČŞ"tŕQű5Ím/ž´Pśçvóö(ú^ťfR,żâ=žäXžňňÝÇĄGSX†_ľX%”z/mÍü˜—öŕŚÉ2?^Kůs˙ÚńŇžQńŇv Ľ­|ƒŰKű:[łÚh´•Ć;–hÜwŤ&C—r-MBŽŘráo”jăkă&Ł"ƒ <łtéoÔôÁłşŇjGßhQÖVxm˝„¸_ľVő!`Ÿ:ćóú@‹)¸DLŐßcń@GsH荒ŃËO"ł•yłĘW7 G Ś6ăP °í“Aóšśý†h[Ň h›Ž˜ĎÍFƒwAő™ŞH˘€”j€š`˜3;÷véČŸŽ2ĎŹ+MýXź0;¤VĂ,tVżuVŠěԐŚgF7ţĜ‡úŽ÷ ‚P'C Ă`4Máź.P¤/B§.žüĎotVfh‘F‡ňË]ї˙9úo”őFýˆÚ˘ *dfFĺ/E|Śy’'‰s_¨$ ń÷-&š" ™đ‰čďTLőí^~Ł¤ŢmEŐŞ(áŠŽ _ĘVÔu¸FúCޙ •3 xőGő^ TűôJ­?€k>čfŞ>›\ě)Ź… ěú yĐ[Ő[iĄ…‰ř7*z‚t›RĄžÎä!§Őeç  YĘű?=wŸ€ ńŒŁ÷˜úŐđ•-Ŕ¸ÖľÄ`mœ¸V˜TäkŻÚëZ]Dz6Ÿă˙ćGá´<ţpŠgČ?ýhřg?:?żůŃוŽOzö‡žĆkɊč€ŔďďŸ#>t…ŕáü…nç!NńÓŔdś?=Ő=ć5üł_E,űü銎п­™fŠÉzŒ yüëŸvž*˛!Úfš§ŁîńăWWˆœęŸŽőŒů§_ ˙ěWah_˙t­+şžk9Ě|ƒŰZS2ݸÝ?íˆu­í]MČÖ ÖŇďĚĺ„`ţăk=cţéWĂ?üŐúůÍŻžŻ5=k!X[ëżHă\ŻÉŕ>˙´#Ö; Ź‚N5–F;RŁ?žœľł^ϟŽuů§_ ˙đWŃĽöüqfĘkCłjNkÍ‹ďú§ąf|0Ł2r)  Š˛ýÎ\Už?NM6ćŸ~5üĂ_E•(˙áZ×^*Ż÷†ňkݰś÷•/Öţ÷9b]+H&`ş­G Ďˆ^…ŸĆçLŁýÉćÝýăφúłLéýGWű[żuzč°R—›Š‹Ďƒţ"ŠŢvŘ\8LCoőIä˝ĐÖö•FzrœP 7ÚŐËSPŠţ@'Éł"óÁĄ”˝×Î_tňóŃ7ĘžŔPÖ}ƒôX ŠOéĽ^)­šÔĘźŃÂR߼iihQ#gÂ`_ŞWŻth˘ĺćP4Ϩ‹[¤ŃŐčn•G¸úŇ+•ĚĹ"Jč ÂrT– ŒƒŃ?&4ɒôŠ5hÇĎŕ` ‘ÜKĐQÂ7é)Jë NÂĽ܍ˇ˘Ý•t9^%ţÓż÷ŰFéš™ ťWj›0ů*ďřt˜ˇŢJčňÔW†ç/”:M Ôńý“í“ +äŠíDőw­I<§ś‚m7EŠĎŹĂۅě$Ý/=MŻn€kŒ§\ôů7Ş‚_Đ­äVĘj­TB¤šĺswAĘz“Ú›=6g^Žň‘ŚÍđFŸ­aźGÓX_hcÝőRŞ ‰†TRqrúUâőb|žQW˝ĺŽž'ď8焁ĆâçťÁáńĽîř:)Ĺ뭊ôŠý'ŠÂúźď|Şřňß×pŁv˝Ô7Qćěšc7ŞĘ¤^¤ńh†˝PC$ľf†tuńlôę­Ł¤ăěóĽ\űBŮÜŽ_;oä շ׏pž Cƒ˙¤sÔ^˙¸šĺ{’€{ě|TĎVgŻpŁUĺg Y´Üă&ćŞSpšÂš§k/ y–/y­ Ý \ę¤ŔźC"šŒËY8QęnJ‘=‹ŹĄ÷ҋÂzzf{ńvn–.TřJĺÂntg˜3qŠÖGŒÇ˙Lä=Éy=\DĹ˝Ó|:ÝĄâ†^^§Ůa§•PöŚpĄĐ´~ů¸†ýŢU/a_î%\¸oY›ęŁă%äw^‘ˆ†×Ś+Ń^MŃ˝ÜÓt‹i –´ÇxݚO!ęŇżßQtŸ )í¸•0B–KŞÓçÇéiw›ó>ôţr^(œŮ䟢‰ŸE&âáÎçn~~ŁúFÚ¤p}ŇŁ˝ÍGýţŚ%Ś[Ă2Âeě~=ś[P°Ť2Ű-†řěz}Ŕ5$š-Ć(ěÓ[ť1’¨}{đď)Ěkűé˜´3F>Ľě„4ŠţžZŸŠdÝk64\šWń;“ţ…îeíÁ=—ňü…nĺDŻŮw4ŸŽ$íK#qĄ(Xűj$öt@#Uđ °U›ŸŚĹëÝQ€Eľ?G?7D0&k$yzlś¤¤ÎŮd¤Ť˜˘đ›ŕ˛Ć°ˇnb9ĄÂŃ7†•‘ľÜŁöWÇĉe˛âÇK7 ޘú­ŚL§đlô´-Ĺ_bЉ=˘ˇŁÇ“XíÚrŠúđFĺ^M1’‘:^jŠŰé t&ÁüDUšž"C1Bź}íúŰhśŚM‡F9Á_—îâŁ×"(“ßáX˝;ŐEz‡´#ť˜(îqIz”˛ƒáYC›IŢč#ÜҋđţŘ}Š†[ŒPeŠ;(ďô%łxĄPőBn;Ňb݈‚Ž“No7n™ÄľW˘u[AÝ!Cýed^ÍŁ¨|ńÚŘÁ# GءűĐ!ąĘzĹ É$ Í,iś,’„u{mĹČ9kźtß\H "a3ąLkn„"áĐďů(*vöÖť1„‚„ĽÔ¤M›ë~¤q Z+'Ŕ\ënžđo&ŠĹEq´¨ĘBĺĐ[ťp¨™•ą*ĆŤóƒĎi§,ߖKNpˇĄ@8Đwż˘ÓBĐ-'hÍ),&të”oTŒR€Jş@Ú2žXxžQ˘źŕŰ2"MeŹg%+[Â} ˛!ß@˝“ĘăіE­“šÔŽś  Y5ůÎ žj×vŁ3¨úz/AD5ö9Řż&sƒA§Ä˜C¤ô˛°wŁDříľu2ƒ™ĂÝýĐqí[OŃőşDÍkĐʡřŕÍó(=TľŤ1( żQ6P˘Ł”ř’$ôÇšĚ şfMćŚqčiŢúzˇĘ 6ň1ÇˉîŇ3áŔ ”ć…0™$ÖłĄk‡báźş ¨JgöËťËJqk̑‚u€XpëÇaŽąQý­oŢ˙ŃáËlC˝üĂĽ‡5›ÚĐyŤë ~ëđ%Ľ}:Ĺ=Ў5Á…[q2¸mö—âô“łšn˝ť‚éfĚéŠ˙čš Fž|3ÂţË<6 N'CFpßrwE Â!ţ‹˜ßoą;بĎ)fœGÖ¨îÇAńg'ë:-„nŁ˝ěŕó‘M"m‹ŐŃW\ô7Ă>‚§™L3접݋vYCVÓîMťš§]ƒ2ěĂY ŠJŇÎIœ˝ĐľQmĚY(\׹kʨĺǸ][0„ ¨Ü§8ˇ—-žtTEŔżŻ@@0§uŽ@ĽfdŞé´e¤1íŁţ^×dGó-ďˇ5Ἆš@ŞHMm[hˇáËčţ9Pe­é ćnůĽČ&*TěcÖse` =´IAĄëş K–”$˙°éU[%°ě ÷’3ÓÎʙeîĽnMˇ5ŠÝëQo‹d ŞĘšu@‹ćÂÁ?˛ÍąŐx)˛á›ÚˇEśKś BxiB lÚçptÚ ¨‰(4ä JÄ-f&:mT"›`ę…[‘ÍŤ–EśőÔ2î°ţĄ6l ĂăCä"7Ó5ç^řů1ŇňDHzĐ”ešŃžéőŇuńuŻIGˆôG ň*‚çÁŞżNĚ ˝M#jW†é#ĚV5˛ŃФ‚ˇŰžýÚĄ(…•9xZůF/Çű{„Â#…Llŕó¤đ˙]MěÜhÓÄÎ!…o4xú7Đ ŸŠ‹˙ýF;‰C@mn'‰ՑpŁIË+kĘC˘xü‹Šţ‚&Ď>׍ňIJš{É8čEý˛Ţ(*Gë;y ™Qä6€Ľž"őľ|żPvŻŹIZH)>Á‚Ô­ěišP ‚ŽŮ̃ňŘŚEąˆíh-¨bˆ)Üm˘'ţHd,1´X÷F+#„ˆvŇ(=ł`żKpŁAP)-Œ …bQžQČž˛›h´H şąčz o”ĄloáËA,Şß Ź Óç¤řCuMcý;Đąţa…űlzžąţoTY˙a‚‘CľĂĂú˙źAąœpXK"ƒz6|/ŔMߚÚŃa ńäŠ&ż…a 7ZuK}°^ş`ŢhSóÄ)úűăj<0P; äzĐD78[7Cď7Ęn„0éiˇu;DäoTşčĐË4˘o1Řhđ-ŘဝxˇźQx&|d‡TEŞĘ.čü otpJŇ[cM ?PéRŔ~Œ­úžIÁŔŤGa˘ó Źßô(Ź 5–Eî ›/yď;Ńż˝żČÍŰŞeĘt<™˙šݨU2˙=ănŠ˙5“oŠ˙5ë;Ô­›řż“đF÷şC/:‘ YY”Ó{Ą\Ď>ŽM řĽo÷\k'’ TşÖäƒBźN 3nHÄiiÇŁmĎëÄ|¸ahŘńĘ}^¨Ţ2$ŮŐęŔŁpz¤uđ˜+h; ‹úvÍ!"I˛v#Pvń;•—Xtö˝ÁQkő-;Œî˘Tǂű)¨wČçpQ˜ţÔţűœŹŰ|‰>(ĄÜ˘ŇDnŒdťŽ_K˜ A ’ “f` Ľ967ŮDM¨;ď;ƒELäşĘ´"śŢ؅iâšh’}JxC›Œ ‡Í˝dfşňAŽhiؙ *IP ęŠ€~ďŽŇ:ގČŻĚlേƒĘ|ˇ^eä;LľÜPIÎPzh<67J˙VD›rƒQ†Œť>Sä+ Őc×܅´Bc-?ž9*돺]S"býLI;iĐťŽ]!ťě&ÝŻÝh†ŃĹŮ}„„8€UĹÜ mđdřúß2POŤÔ F"ęW˝ÍŤá y %;œUG@Šeƒa`RJËŁ÷°˛šíąëÇOż Ē/tÝfPÖŻ™öGR.•ŮjEĕ@‡ZÉjd‚Ę <3o;|ą ‚dż,ö’Lu˙Žl kiâUuŁáJQÁڏËPäŮć=îP2ÚŠŻ (ťrD…ĄżĆeoLfť…ĹtíX7/ú„n 1EٕSą”ɡ“–Ü! Ŕžv#Éú,‹8'h˛Sű, Í.XŒmĂ⥙ 1x9—@-°ăŢ턭ĄëßëA‚Żý vÁv,˜ČA´¤âÝÉ5t]ö+;žC*yý— ůi ™›”ęąëűŔŚíä˘6vÖ}Úz“´›ÉĚÂwĘ{ĺífŘ(?YćÓ~Zže(7báëÂY˘]“g ÝÁ˙×gäOťœvuŠŁô–:ŹćžnÓ t˝ÉŇčĘËótń ŤZˇgť3¸ ôšƒľí-ą‰T×÷ě„*‡JuBq.Ut-OhQ=k BŽ,4GęőťÝ8Đ,­×…=zóaˆ*€Ą‘QÉxČÚH÷ÖčXÓ8‡Ýi–š“<Ȃ"';W%*Łăő†œvšULáŘŕóUOńdťÄXiž˘^+Dš+ÂúóL† -xŁAPŠíů:đ}ěT‘Ň{\RBäŞ/…č×U‹ö㊠đ-=yýéƨ€ŃKp_âv‰ ԟíŰ;IŁ ç <ËJ.ĽĄˆ¤$ŻuܓŠBů9Cşč+‚ ™i +Ó9´DXőĘ#qyŻA—lňS]Ž hT‡„ëmUčzÉQZq´˘dWEáU^†LvľC5Oˇâ­|Ó˜˝c׹ \JőgTŮżĚţa‡›ƒ§Q¸œŕ:@ÓcŤş,úK{9á 9#hŚqđŮLJśÇWR „Đ…â¨(*ńŁ><6&ާ/V•]Őť‰J2|â+2ß!(-|dŽ^ÂfÎ>éŐŠv›AQ2ÁĘ6ň+şąœŁĚŹ“XÉĺĄtŸ—ĽŠ'Lv‹ţľćp'iżŚ ˛>ş}⍱u&;úšÖ&JEĂF‘5_hFŢďNOřŤDIŠ š,öŮŠ}ĘyŘ€.žh4PO‡FssŞËč•ôŚÄž–EĐď‘hĹ1Zt…)YP‘U”D)쳛ţ=Ôa+iNŇ_1şMSş„[€6["Ą€”Áłő”(Aţ€€nf^čPöô֎Řm $zgzś×֞/,C†ŕęůş§ş-iC3Ůǚ”ą‡ŻŢŽV›Ÿ×w*Ţ3” áK‰÷OˇcČ<ˇ‹H'šQP]0“ÜŤ˙ Ůśŕd!ńü<˘xÁžáw˘ö1†‰íTŇy€Ť íŰí˙”´Zď8™‡+’Ií~:‘*˝’`§–UĐHŠîĄĂ“KQđş™AA"FH#ŢěţmIœÜOČH4o°!qĐJşĆĄýA„ä{Ntš˜–ÍÉŞŒA܃+˜ Çů1t˛•ŕ´CœP(ôF,lŽŘă‡ÓPńŒB;L—b‡ă‰€˘OĚŔ›b@a‘Á éD‹•ţlSA´Gą ˘Ť‰ňD›ík\@  .ßťŞĘސÔ÷fíDů2awˆLřWQ6.¤Aʓ­Z•Δ˘˛;{ô0 ?/_E×T€ Ę×pŃIƒ˘Fżj¸?Љ{Łý9AśqPXkW‹Đą~B[öČ6‚ot5…Ó6ô}[sÝľĺ™Ŕ v}R3ހÝiîĂĆĘžI+8żQp{Şë,“Sh´OKxYDťŠÓ‰œrgvmúFü°î¸ Űt8Lă şv¨ř­7оҲˇôo´Ă99œ^źďÉ $loÔɁHŞĂHÂ' 6j)Ň0—BŽÍ°ôAâZRh‰ů:ŮBęnâPVŻ+ŇgŸŁéڞۅw‚mš_˙6jé,WťŠ2ŘűBöiżt–ÜujÝoP^Ć š hç{?嵍ÚSŠX5ßęäńŃWqd@W̒őƒD…w˛§(ăM‹A{Zý§‹,hëĹœŘóšťX ešÔ÷Ԋ}IÄë‰\qÖl͙”ꐒ™N`ëÂƸ:x916Іwđ=ľ2]$§Ş3v ŘťdĚÁŽ\Ď _}ĚnĘGšaXRd/$†jž‚‰Tz¨ďÁE&60ÚNÚÖ7Twba ,ź^Äťńű^ŽQaâÄ,ŰţžŚ‘"]:śĽ8ĘY+>•ŇRčÇyĐvD…0‹XŠísˇŽöC&":}şˆ¸Äҋ]Ł|‹×…^‚n†ąőJ§?\q ]â1ĹęĆš@ż˜m>Ę&>!.ʸO‘ÔĂŢŕTŁěĚƒˆQ5NHbtÄ&í{v†Ůî{?€Ůbáł%Y(Jr\ _„^rvJÝ0ŒŔEj­ćhąęEÓńÚí×b˙ní_ß؛đ@ÂĽm°PáŒ\]„ƒV­U\í‘ ÍJ¨rí‘u›ËN˛in*Śť^CMôuMžč4ţÄ˝¨ĺ‰3+¤ĺFúăWK(A0mşnCœ:%žÂP2‹v”˘žHë ŔËk,°¨ˆĐ˝ëš„§ŠÖöýÝ=čŚ3rŞŽEQ<˘É¤˘ę÷[B˜hÎůÖëŘ͝ĸtˆ ^™(ťéźń-;“ŞŠ×Sr>ayQŤ•‚B/mÝ1t&ą *ÜVp}DŠ$iżîŚĚRŸd6 Ě6ť–&dšᶚˇX“őŢ.*/Z_ö:`zá5AGŠ5ŃdN”8Uoź€.@sľĄV§sX{É×wnzk ,ůr÷~Ň2­o/Ą‘›QýŻ…7ŞÍŸŻ -Bޏ:B Ţ `Ö"”GíĘ.ŤĆ7úž7¤ZlĺvśĹŘĚĘ]TŢ7Tî×btgŒämű´1âű:Můƒ*œjŒ´Őł6Ľ3M4ĽÚî9kŁň­%8_Hť*ú]ŚŮąxĄ5‰DwýZSÖs°_;zůŇ•EŢoÇT™˙%ňMŸĘ,ňýtĂQŃăMz7P™đ-3Ţqçuœ€vŁžÇ3`cĘšĎ`Dšhš“°ž}k˙ ĘđG[ @h¸^}g~d9Ů^Őž4× +iŰńRZáÄŹďŕ rěÚóś$‡˝¸QŻî~¨W|´Řš-*ÄLt ďau9Ż’R|ýŘAŃ9! č{`Ŕőůşn•9ö‰ÔϙࢨÂ{„}J´@[­œłwĚľ_&˘P PěQ­DŠďd+ąŐůËĐ>’uĐ_D3Q˜ľ& [Ś.Ź˘§‰Ć ˆŘůöFUY×Ű+]ŸM$™y)6$%ótfḰâ!¨t䁋ň š_ő f(IůčjcY&0âGźíă„Mú2s‡šB„œľ†Šb}âjۑÉ#^Lćđh‡ZƒŠĂcđA I˛ŐtěoßGđŔŻ[ é%ŘĐÓCýׇ f‚N‚¤ô–VíEW‡čŐ˘1żP4ŽJœĎ]–Ęó1Ţ豓#žk—¤ kP9ŇFPú>°¨.ߥ •Š}Ç9/˝ł“T¨É;ę•ÍϤ o2š%˘.“I\™ćÜéĆG︢’DxĚÝ]BÓí'šĹ'¸EZK}^ö‰ Ž$÷8cËOˆżÖe3 ľŕI?Ťbü §Ĺޞ,x´QąŐĎ­­mŢč6ŽÜ^Şö`0§Í˘‰˘(ź/`ťQŮślq’mqŸéwKđm ”ů˝Ë{ŮĄÎĄŘôFœŹ !_úL NŇ܂#bŮu™ťc™ą –HRí âŕ؈Ľ6ÁDiEľĐœô-Ú氈śŹHb‚šX\0ě!ÔAŐ¨M‚/ówT|’¨ @ŠşŕŒ ¤˛N°dzü%dȡɝž{Ó|›ź˘=Ľü˛sO–r Á1Çˋ=I6K'/ńëźNěL2~ŘBá€.`QÉ­ČŠşˆoEÁÝË îW)*š§B… ^3ęşá[ę ĹÎ?GĂőČ÷^ţJęß6ąŐťŁ †ů˝nĐůXn'î3JŇpƲ'×gc2P—í扳źŮă…Ňô ˝­ę…UŐpÓ;ťJoآ}ç.`…–ž d(/RÜ`űœ%ڊÍ3ꔐ$Ökî9ŕąDH•N^Ő´-Ůl.>…œ…˘ĄĐý0‹hRôúŁ4ęb?$úQÓ6ä5hĆŢżő§ŞżŽ‹ŞĘíeŞÄT4ęnŕš)ú\Â}ýÓ˘ŔĄ掰˘*(Š—ą­=—pYŞÇýz4ޏÔ3ë|ţ' í4%ÉëýîArŤHż/Ż4̆ĎúŽŞ*IœÂwîđFý÷ó㍠×ăFhfꏉ{¨˙X÷ŽßőzĚňšž+ƒĽD‹éóFŸ\ô‘ę>äZˇě& ?šťQÝţřů†ţâ9íYěž]Üx–öşXžŰĺ#wťŞ6˝Gx\NôœÁ§˝ƒ“SičIĎ •â$ŇĂć0iŸ§4=,Ž?GZXˇY¨ Őąîl=Mś ŲŢ íBéĂĄÇŽŔ1‰9Šß**šÄM$ŘŽT*”ŔäÄtóhä+Wn­D°H+X“;˛y<]ű4‰Ąn:’şM×ßFS/ă(_štFC>$WÝé­E,´QćôăX—!p™‹ƒƒMhŐŹ…Yňčیó ˘ß!›.ęÚ$u—ŘŞ<‡6„Ô#ËŢí —.€Ťéo˜ŽQŐg2÷Ń@ œŹvfIJWŕÜc{ý}—M˘*P‡ŽXyţHň‹vZb=C acƒo%e÷ öĺ˙€{)tmL&Ãö֜¤­váb.KSč2Í~ŁEźbŽ\‘ˁ Uš˛2˘úËÇ ň˛řŃuâŠHpĘç4Ľ ,Fž–}xű°\ŁÝy˛‹˛#݈ąČ-´(ƒ~X܎ݸ(Ůl[žP’ u~ˇőÖ¸.Ž50řČҜu?o°ęrŚŽ#°#a/fîť^’tGâÎĆű–ś˝pύV5ŽçĂŞ“˜ž&}Kܞà łŻRАŕƒ1öٍ„ËúЕÇ^ƒŘžíQ ʞ„ěˆu[:ËÎcŞuŻ˝<ńu˝Ű•šÝ­*46á[ńˇ}Ă勍{ŽiŚI÷ŢúŠű57dŐ2ŕ-}í=ÂľM1spyŞî2fŐÚą?źAy”šśY§C|EPĽ&;—u™ˇł™ˇg8ĺ]jČ.>ďA&‘4 Dg…Źbkş‘ůŢŮÇŁÉ,wsĽg”´Çŕěe\Łf“Jc`~-Žú¨çŕ–` mękwobkąĐ‰ čU‰nŹBr”ƒšBR=‚o ‚&*ŽÓJzŽbBr9Ó,󅊖žĂľ|ÉjŠŞ;ţůyÓäÉ çńؚëËńŃĎz+¤¨QÚOíĚ —Ś >đI9FŐŒqHč –T‚–5[ ÎaȀ S;$—ÎOW,ŮJ2ôĄŹ> ô aßłçËK‡ń JĆɝú}H %Fů&şŠűšyŁ2h*̓M@…‘´ŤvUǨŒŁh?š“L×+îĐNŁÇ)ú˙ŁŢőŢtąš&”őA7`…d˘ŒŔn/ř^šĹˆ¨ŘśůŕjĄ‰J @­eԂľŕƒĎj“&čZ#žAˆăQRp(é› şýzŤMU”RLŞnSUĄ5Šœh˝iËôŃ%e€7Ľ„DeÓľ¨×öŻ‚ę—_ čC?ĐGź~4BTÉŐž.(źAéüÚK˝˘ŇňrĄ"ů*şv óÁ¤éfŁ—d,Pš÷^söJ;P•É;Rś/đoLČíU•@ÜZ¸ ^°ý ‡ˇ üߣ;JŢĘť.^:"˝/PĽÝ}@}T~ ˝}@}dď˙ÍP§4°Ž‰âĽJüB)\węŕV ÁĐ[jŠEŒx†ň .ľ Fwî/źQIáŢXžďJžř>1žKÓ„ó ľŒő}Ë,xßŢÍ1xĄĘ1¸ćΚŰ+rgÍŻ×igÍ/ÔÎ÷~yőÚÂoŃűí?8đü–~Rá}čů(ý¨żCÝ´`Ď'\ÓĘIÇ˙ ꌜ“ śÉŃët_3Ś÷”{˛ń~Ňś—4ü˝§ýýš_ GŰœ†Cçˇ íJ%3÷gšîÝ㖴˝Ablő!ľ:t×Rš§F錚JËş9 †Ő']›#?;rŸPL‘[ęA×Ân4—đYť.~¨ŃËŐm°l…ýUĂtśĄhęv]áho36ąňČzQw];`qK'ś?I—Ţ'Ń × p/ȃÝ˙Eú”ixďĂ+[ţuS&”vĽpwă˘6U¸°ĎE+ekr?Ѥ†QŇăwǘ'¸ňąŤ‰Qßč ÖF¨„;ú=áäNö‚ŢQőŽR ^ŢůŽËUů ˘Gυű>ż3dÖŮ!wí"śśňߥş9 N[YˇândL{íŢó ő•ť”|P‚ś=Ë|ĐŐpďĽL[Y÷ý]Á‹Ö—Î-ąEnhţ¨ŠÎ6d˜efźś~™mo˛Ű†üP´ççT4ÉfnWh+ł6y şŢĹ(|­˝pÓ,‰ŠŃK)ÝÉέ˘L˘Ž1HBjR;Ě$bŒK™r¨mœý+Ć˝‹>ڌĚ-xlş_˜Sm. {äŽ%_ŰĽĽëÝ ;˛ßĂ?fŚíJ’Gi„'kÚcëŁáN.DšłL ™Ęƒxł|z™ S– ˘§Çd×ö'^UU. Ľń†Ł'UqąC łĎdsú/3&ÓSŐVhŒ•¨is˅oĹd˘ľHٞ;Ľ"߉¤ŘĂšť˛Đ†\’Č$J]ů$°ĆcŠŁŃ§ÔČ,óϙ‡5w ręĺŇE&Ş˘ą–~śvňx´’#ZŒ+źš4Zęr×ěáNčQłtJcMD u˝ô.љ†]AŁäď 4${ść.O.ŠxîňBI›“÷ízĎŠl4řš KËěýSČVA÷×Á÷iNoéÔöŽý`^`zF’čÉśO˝â/7¤t4'x~ĘŔđťťJBŤčÔuŸ+ý:-nŽÚ&ťeZÜáĘ~ýĘśnÝnţÂúLůŰĆUT_ú÷9ŮÖŇŢ|ŤUrŮŻčőeFÝ/řUĂ­ˆ@sA‚ĘĹĄxg“\M×bŹŕŇ  šÔš”ŹĎ rŒ÷ š˙^dÄ×`žRŽ7jŸ>ęĐq_‚Ţ1CĂuwÝ*M4ŽW:Ëßs6ą]?^ŕűvÉ;bjë\Ľă¨l];“Š‚?RßśHsî'M˙”D…ŰrCźäŞŤ‡-›é´¤ÂěĆÖ%ŘtZÜĚ^ ľIî[Ř7 śľĘđ†íUŤž­fiâŮŰ@ÇěŇ>˛ŮܰŻÝŘöšĺYĂŠœ%樺W8BüéOáůřÉ3`öIĐö ĄÇłŽL7ţľ>#;ńdÔuyKÔp,3JÂ×u’ ÍE[y›`TŠt Ţț˝€ň*ůÜóʰ`zÜop}Čąœ:˝ü==OkNq9ŇÝo”z‡ńuzŢäšÓ˝QŐý8\‹Ż€kNiƒh˘O Ia¸ AP”%ŇA?žĎ—cn+™"‹4ąw ´ĚN\ĹăćśBz1geśt˘€Ď[ćFŘ}1ř5řă†_ÚBӑÔ8iu˨cˇˆż/5߂óG*¤ćŮO}Î8ď}Ś,PŹ éşf÷^Ď%Ą ’đDčL-ÇÚËčQźÍ)ĘéNJW|‰&tô>’ŇvÓRF4"Š|9ś Y61›§ÁiD9v@¸9ČąkËËwěP †şc#žnŞMá2˘oOűŽÖ&+ôŕ•§´s›÷F×ZSôXô),žTťŠÎÔÚI§Ô°ýt~ý@ą‘9ĚËŻ“p'IłŒ—„;QĄŹI6ŕź>5|_GkŮ€ŕ ź^řŚ>kń‰ŻQ̨zľ´…hc]wĄNÚţ&Mq@AHO—@ĚFľ)nB[ž–Gä­śŕ ?–4Ÿědg~‚ŘÚ~Běţ~AĽ/ÂňŹädlţě7PƒsŠ|WťaŃDXř]Aäęxüś5مMÖ=]”ü[{ňŐoůĺłÚ]ň´LX…`UýGSÜ˙˛;“_%Ĺ}#(żĘžć¸šF/´pšÂËąPąqű:U~T˝Žru¨nÔôKđ[KĺąžŐőú>™#8§jřąU Ěś& Ń1Źuۑ"ŸĺżżN¨hVĚ­še JŹľ<ËßjX ІĆďţ ot-id˜Ü÷EVôîK& š2• ał|A+˙šP/÷PϏôĐ1ÄűŒz+&]óž e8=|ąˇ[΃ I˙@ĎcÍółÉďÁ ËńĂzâ4危OÔţ\S@ąśs~nşîBł"V°,Ńţ4žăĂŘĽ˙ÝNŁĂâEĺ„ôăËW˜jšÄ)ŢčŠ=EĽ‚Š“ňŪźŔÄ4°ŇŰ­S _1Ÿáh8Tô":r‰’ŰřuĘňÍÇ:˝‚BxŁ%‘~T_­ÖŔ‰ ĆTź°ĂƒhEŽ7ź7×ńužœ%Cm ĘE$ÇĆÓŢńuöňÁĘY­|Ř-âUcŤ{keŞřŤ°Á$këᖄ˝Q¨głä€/ŢDUś,­~ńC%pŁtÓÜXď˘"Ď?WY\N IôŻÍ/ źÁ ą˘Ó óu źœ/¨ÖčM6ކP\j‚Ží˛¨9›00ç–Zň-8|ŁâCNăΗ`şl­Ýv‰<mQVŞ.T Ę&ąŻÓő§†QVľŠí- ĘFSîCĎĐ.ĂJ׳"˝Ŕô,­üľNu==” ´Ä†öwvˇbĘ_ý­lŚ^‰ř+dŸęÁ1|ĄšŠO‡*ˇŸX †ĘŹ•ˇSË0륚ŔYżN‰žúz‘Řë'kl;jX,qĄ™ôŃŽăޕʢ‰őÍű äßóEęQ !…9&éŸ\4Öë'ç:…˙Ţ芦Ť;yƒżD…Ę& W?ĂľSÄ@˔¤ÇŘT7Ń?’™Ž­lŻäʓ”ô8"‹ŘUĐŞú/ƒśœŤ­óđKTxYřÜň鍤ĺę7Ú#ťľĄ1Ȑľ™˛t•!ű“‘51I´kzbd÷Ă5Jb„˘I`.sÚ#´Žßi P@¤YKę ŹËڇŐ(ôtŠ4z>ěţ”R1Wšf÷ŤkĄ7‹š¸P¤u ĘĽÚĘşÖyš Ž§0őPŠč ŞRĚԛ%šP{MyťŹ´ ć4űë\ĎyĘßSŘBQŠÝŇ_(Ú}™Ź¨VqE/a*‰LPŢćƒ˛şŘ/AD)6˝Ž‹Ż:ďYú$š¨ą˙ż>˙óó˙>¸Ľk1FNç/đ+[×týӎą'=ÓA ¸kzţßßĎű×gMîĎú?ĘÍĎ ó?˙ú~ţë˙XĎć?˙ú?Ÿ˙ôüçĎżţďçż˙Kt=ű΄ŔúŃątDyíú§ńů *\Ľ5ęV!Wá_]ó×Ú˙˙áWSkp-ĎŹĘ+öÎąăŞ÷żĎt>0ý‹–˝Öű÷fZţéRąäŽČfÍÚdć/÷ďsÄçŻ ŚB‡_î_‰OŤůŸ…/Ň|ŠQŽýüżĆƒ1(¨‡â—lńż`ŸY i‰~I@QŮeýăVĚ{ŁZ[Ÿ=‚jů dFť s!5`?š˙—˙I‹Š1xŇB……ÔÁƒ;vFń~­­^ęco´ĚÉ ŃđvM5…>Żřţ‹ßčÚń­OZG˘.óÚYęHj FŚäšcL¤}0™ôF!0îˡcqĽkϤ7ěŠz|gʚ%Ľťuń;gm5ŸŰv_ƒ3ąrč+S}rŻ‘„} ]‘^⯾'k5hćuúłľ(żÓ?žŽv9!Ü(/‘ë2łŰô{´˝Žg_ŐřWo¸íp/ŕ:VŐécá ęé0ŃÓv_‰š‘áž­Ľ"÷¸‚ż Á‚ź6žýň°xěű^ꡓ6Ř2?ŇýíąA ´°BˆżďĽn¨eëŒfp˛śářnýSVÏp›˝{Ál¸î Ňô-éŰöiO¸ƒ:8+Z/´<ć ńóě"°Ą^#ńÇÇý=.‚aT˛eŒí„tĄ™ĺŽé­ż.9Ć—u÷xÓNrzŁ[!ź˝í=ڜೖ4´=S]Ď,áLŁ÷ž ZdŹo/ÇLm­XŽkcđňľś˙Ź=旕ăΎOĐwR4Aź™é6b<—Ú¸ÓÜ ř#ÓĘŃš+žCQ§ÄŞĄ÷ űętť+%áŇG¨ŤíSH  B;iËĎÚ3ĐYZ3@zýÚez ´˝u?ÇfrЧ öë9 Tłj=J5a˘Ž5ë™Ü(´œy\œ#•š+´šŘ¸-r ŻűÍV‘#ó.ŢFő1˘Â°&1¨ˇ•şľ‡ ďŒřÄał`"Miđĺɗď€ŘÚÚÜŰkçŇť´ĹăiŽ˝Đ 9†˛Ĺă‘}ÂÖK[Żéý–qśv]Ů•ű…˘nŽxgÖŤ˛f°ĆVĆ-€ŻëňíM)S”ĹGľí|βčWî—÷ąšüÔX ľ9c÷~§‡"!ßĚ!JÇ ţţ͉bÝlĚ@÷™ÂÁrš4°ŰśIśŽO)ó,źÍ,يBÝpčłeíĄqßŕX•ÍžNäaţŇQHşň•Zék>öÓ’ą]űőžúGô>POŐŰ.‡‚#,–e–î ŘľŻ÷bÖ+ÝyŁEťDöőń.‚čO[ ŒnÇÁš;!I†¨é´čý ůVçYňĺĆ8ČSnÉü3Ú,ďŕ ţ j4R‰îcQ7FŃBÄą%Šä”¸1‚ŤFđ΍ŘÓŻĺŻ Ÿő żEq,¸ü˛ ň#(úëF犦Dů׏ čvš„ň;Śpkv’šŔĚY hE´ëžMJĄ•dhYpĆ\ö4ŁŞZę­‘3kŃŞQ§3$Š k2íjDú<0¸ŚČmúšĐő]Ú)hFúŐß4`â^—  |ËSżQ¤Ndǚ î4őFƒOSOf_ŐNöltL{Ł"Šžúu3$nÉëpĄ'Z@…•łÄˆić}Îąt}ˆ—…ŒbzÜSaYřţk=r˙ŇľR:ôß§Ä?Y-Őjů˝ľ×F ZÝrI҅.8ďP˝W´˘ÁŽ ÁŚźG$ďęí°ŔgéŘZО­C›]F‚íD_—ť‡Ź@ŹĘýÚYúŞańzř2‚†6_çę;é ŤŮží |Ą˘żný ŘäĆŕSˆwŔf÷RâńŮö3˝Á.8’Ă !ś˙óý¸0ɡšÍrdPvô!çóç,•`ç‚ĘçYî2úľVȐće˘|Ą¸(Đ Ăq\w|Ž Z qAO°„ÜTŽÇţF"> \Á­7gˇ š lŻ腮Đ0–ŰĆýKŢóŘńńŁ~ísř ĺFłłÚAť ďł–!<*•cQ!Šá2¨wś× şŒž^vÚ/–Ç(üe˛Y´ŘœŢ@s­J y-  L Ąmƒëőß× ƒŠx4ąkg˛ í÷ÚâËdűF×g2oKžCW1 Şźąk[@#ÇĹ\˙˛%g Ăí?Ž’ ´Ÿ­Ž‹…űőô$…†­í˝ŃŕuŔ'ź `zd”'ˆt…ŮĎvž‚˝ÂőȌň„šbá'ݓ×ŇÔŁĘyIłÍ!CéI˜Ô–lƒ÷űć‘î/Áa?~GöᛷźŽŢoŠÚAÍé ¤/žsćl”Qőí­‡sžf‡ˇkV­ËdÚĂ@h´ä+ű–`6ĎnŁúkkŐ(‚F§ťnÇŇÉśL?nxŁB Äíi%^dÁƒĘąíŃCKҜŹ9ń~AœĄ+ťsTÔĎś˝˝žŠŁ‚ŠwŒěĽz;QŘŁe}1sWéč>Ž ´ŐŻĐčş ˝š=¸qrŕgPŠÔ˘ÉqœCĽÎű<|靥9JÂJşfŮm‚ ČćĘN;zIőę#Śč“mńfץŸúůV š„ GqiEu߼űż†…ˇ ąłźČąÍ܀7wÇŽ€]’‡iˆôĺÁ.Ü]ˆ"żŻm}ĐiÜ~ń řpß”Ŕ˛pâěŮ…ĺGľçHš$ĐNjż /~7Ť˘Ż(׼LZ}XpŒ î›˙y=¨4ĺ+E3 tj5”Ź g€;ÇudËçTDő× ň´Ŕ+3#§M—ưą+ƒ,\¸1ŕt[Szçů5Jn­< #tNë놝ľż4ă|/ĘQCžx2%˜čúKŰó5Žœ]‚Ěě3wůű¨šś7 +ťaşb@ݍlkC„ÁŃÎś+]sćŕyA$ş7!Ť€f˜3Ý+Q¤†Î¨÷é:p“äńcAč𝙾}şzěXÖŽKUœ~žB‚TĽbíŚÂuś›§´ĆŽôšvŮv ÖŔÓMy­AŽM$:ŕX2狇ž>J癋*v5Yßg´€âAbQP+9cD4F Œ,rĄťŮĂ–ľÚh ÄZLss§đ!=˜ż÷ (g°–ÖŽV)WŽ.Œˆţ¸˛hżÄšŹŁŒ ü°_/”#ç'ňZčşv|ˆ†ÜAőÇ2HŮü1ÓôGŻô3SॳČçĐŤęŝjăfŒ™Ä mM† Ěj„ŽąV}ófĘ ÷€ĆVm;Sš”-°Y’słs€fęîܧe¨>… Ş-Đů(O ŻˆŒgÜ łčŕ¤ýÚůžhąm‹Ąş˝Ď ÍőÚ§Tś+fć•M:OíщúÄ`ݞ6{|ż žÂŢu hbŁŽ]ł¨œX˘ŢŇ#hzÔSP@@”ž“*}F•a×*8 Şťü:űRžm‚ÍŸ˛Ň„śQżÝ'şţ!qčN źQ¨3ÔŃŢD÷Ÿ\ Ędó×%"ŞI‹ E…¸îR…‡€vq‰KPř×uíâ iŒ0הݴG¨CŽŐ I8 OŚÄÄ G>ńňB)9€/= 7O{™|&°a„žÎ6‹¸ě00n­ŚEîŞóŠ+ŕ!CAŒ_Î%čz™„Ɔ/顇úBťŠ×ǫ́ĺË3k­&Ľ>2§´AK4eÄü‘6ŠC0K Z¸UŸşâ¤”‹ďk€őyŽiGvč E܋ĽĺBKuq%A P%A€ĹJ&,?-Ő~ŔÔ°żžţ>ÂC.Šç§¤ĄF€ëŹUýŚnňࣚ.ÇščşRО!ž; ŘűŹ5ŠŤFኋ05'(ęśťŁWĎŻŚ´šĄš Žó‚Žź˛Ł1ŚY ăĺŞÇö)Ż-(,IŇ?pŤÍHC`„"F v-˘™`T&š`]a™šĺenň€rhĹ.2ේďÁŘíܟˆVöŹ}ř"ŽEĚRžbŻŃ#łî˘$„™ťQKĽ2Đ@ç‹*şœ -~l-zqçxY 'ŞÓîmG"%˘Ĺd…îő2áĄZ?FFšţ†8tĹ3ű;)tEÍRđŁ€+łý\ĎÝ(dä}]Ă:Đ6Gî­[‡RzA(¸LOżß9ěúúŮžV@‹¸ °Â3 ĘľsŔSÄ><ĎýŽ •pÍҸ`úB’ň‰zŹ˘Ÿ(ŚÚűX¨¨ şëĚťĺ>"ƒ°Â˜Žë˘JŒŻ‹pčŽMm#F_ÇýĺŞ@ťĺ Ż6şýt"ęľŕÓqŮA+Ý$ZĚĂŃ‹D‚Śę:‘éËćóC;ď@Ôd3ˇ§OdUQ[śŽs8čšeâҍ‡HłĐŽčśä‚ň20ŢőÉź‚´Ľ™hGϏ.w'AľkíĽ•ß+÷^ ë d‰Z|=LĐ( bbgFÎ3‚ŤS.zÖ˙´sÍô2@WuŽ=ľđĹJ6ˇ˘ľ@â“,ĐkŠÝŻZŸÖŒcӝ~Q%Q˛^úŻ‘^ĚŁgűÎęł!Ç/ýWËě¨ %˝G•ĆťĽfŽÖ›C×cšíž[çm„sW3Ţ]­Ű¨ÖđVԊ Ä1Ęěxš[Ű×ýľŠŽMVڏqŠ•˛]’‘}Iň*[_xŁ*ä;×ĚďSŘ@WL&/ůŽyTŽMЍ¸Ţ’vëPDHžOiľVţýrM˙‘Ä݁ !Ő WuR"‘ޢń1}â„ŔXUM[řľ Ž™¤NށAĘţ钹¤°.8ŚVNŇű˛WĚá}g1ÉŰc” 1FXOCę#ťN}P­^§5ĽŢ'śE"´ŕG’˝Öp8¨S X×rΏ-´Œ.A %BŚŠŞz5°pé/´fTYˆž§‰A#ÂŹr(¤ĹčY=‘|}?ÁĘPu Šöú }A ‚­O ŹV5ĹŘlĄ…˛ArŢĂ:ĐnAŔ¨ŚžrcĘčr•"P^ţ?ľÖRIĐAŃ Iŕs*¸!a´š†EKÇNzt}UŸ.݊•“bZÂ!Ň męąŘŠgţÚş]úĄáşAZţϙčRŒJgŇČ0ě:1Éĺ=l)­ErEp¨3çş"Ž%#‚ 1źĐČv§\Ěc×Tšř=oɢƒĘą-BhSz ç"FŃYa`Ř  ´áűǨ:ŤĘ%tîB6&ĂL\E:ćAĆqg՛ű`fĹKƒXܤyLŒiŁz^ŻD“V˘rŹ,YňmŚ‚âz_¨*S)­ďQ ĽŚžŔŠü°Çú¨ĽĎD6ÖĂÎOqvľ@Ó#;4Üo3$żëfÉ­QALúĽéá&ŹHb­ŔlŹiľŇëą&Ę’Ś˝H.NMv kţš÷°§QĂ‚¤pŽ@~,Ť ŠČłéĄYš˝ R‹ć>îŢF ץ / 5`}Ş ‹™ţôš.ĐB}â/QäKŤ?-ZĎqنžÉn÷3;ĘŮ@§•đŹŻ1DČ]–VŹY’‘Ÿƒ ÷ŚńËÚͰcË EЀ°Ír@\´fĄŠň؉N雊$˝h~Fž­ˇMeíufäiÖŠ7w}Z]~ĚŞąxN”&‹´c’ ˆTš”Ҩ$\Ż"{=éĄb2°î4Qş˛čd¸bí,kV’ł˘SË/žĘuBĐ_†H¤¸|Ł2ŔZé$Č}ɍę‰=ܝ°ŢEýgKú(F…ŤÖkTČ1$1ĽF‹~˙Ă× °;L ž|Ě(&ŒVm€59aňCfyŠôƒť,¨ŽĐJoÝ˜˘ö…^J>"a=ÄŐh‚6dđÇîvűˆć՞@Ŕ´śż‘ íúî$ s˝tBg„cĹj5JęöŤăčŠjçîÎ( zmfŠ }y°RCGFąXÝZôU…úÉŔˆ”Ď—lе۔$›mǐcMEmw…Etm’y# dP̂šůˆôAŻ×k ByD ÔH$j>¤[á(óäŘ÷Ę96ˆj}g;rw,Ý[Ş2Ž\FSő\'{€bË+ čS=¨Ű"̀R˛üę/‰xY{Q­Œ‚=68ěUçž-:Éő̌+ˇčěU‰–S,Đn€[‰d}‹X÷UŇhţ$ęôřEk˝}˙á=vËôçß+ŚGގ‹͇œZşŕK.0ąƒŒˇÖÄtĂAUbˇ “hS[ƒÓAşC\ʓľ.’jo ĘPr,UU~Q''¸^$ö.ăÇÖŤ„‡3‘çP9ŢN[Y‹Űk€8Á݌ ăgčöxđAĺŘ=au¢JkƒŇť Ąe† C@‡Šíöš8›2'žŽç r, yrl6\Ě{k™ŔŻuӔ(ÚŘďşQu)@L—ˆ&ˉív ż€ť űHëĐAĺŘÓuf(őŤŠ$(ÜJ P;z"á|P9‡5ÉĄüÜôÄRdd<?Ív ›Ŕ‹*öŢcöf”ňťSŕ‰Őš„‰†nôŽ"íʞF§$Ȅ–¤â]´gŻŠŻ|™'đ=ůŇ~áA™uޞ 1aŸx*˝ ŕ´ŹÍn'8¨śŤŘ­„ŞÍĂ[2D$Zů5b‹=c˘E ‰ľŐ§Éˆ´wjH´ŕIú~@ń ~ĂDŤş–˛,2Ć­ŒaŽ\qŁzœ6äď׾öŘ@KÍ7Ł‘‡Î‡ă–LŮakćë¤ ŕ7Ő_ÂU-ă¤ăÎľŰh~ĚĄśđXA9‘ě őä^%!Ń˘ŚĽç´ŔŞůęóÝ~ 9îÜ0‚l¨˝‡řšŕ/ŃľąŕoĂą OŹž>ęovßo”œ@œ6ú=xƒaŠ&GîŽ+Ý fň:¨áDŽÉĚci#ćüŐybëń‘‘Ř¤ŽŽ,?#+ęE$ž,,Š…% Ŕ‹č‰Ř6z™Ě­$>~Ĺe~˝Oƒ(RTÖ9źvšĎš0XÓlŞđ`Z}‰ĺľ"Y´-ËçQÝ72ZË`Šžřľu^XŐ÷¸ÎyĄČsLيnŻćƒĘą3˙UM“É9”™ů,*S…Ýj.ť‰ŻŠńŹß Ţ×čZ°S×sh ëŐv%g˙cÇ:$ ÎgýűL[š*ŁFs‹6 h ë ϤǎâDéů¤×zí9Ża*ť/;‚RÄ\ŇůnB4ţÉ:.4~֌Î*pH˝‹Lp˝Ž8¸×Ë(ů,17@ŤŽżFőH—â‚ +śBúF íéÝčíÖ<ĹĐGÓŞT IčŽÜǧp}ZęnśŃ ´Đ$Šwa Ş•t‡č@)[ýzÝČňkԃŠŚ2+ ˘~|řş| ŔŐý|_MĽ°R~ŒŻŽšHě@¨¤ďÖ[‡'pŽú#IÉm˛}P9t=;xfĽŞF†FžËfěw€ZŚşy; łCkR řűBÉ?ŻĘ ´i{ĘÎ.9ďQÇh˝Ú$°Ýľé.ŮĄ_?ßb„Ů´ąß7x/8Ý)ĺT75oTĹlЈörIçđmM•h,‘ëQçc‡ŽÎ`.Ş6ÔźÚ:Ä3 EřŠŔŃɸžőv‡Ő™_RŞţĘj–;}ěXîEş˘Ýćx诔ň.*?ču kÇĚŻFĚҢZ†?6]+œš˝q!ë7g}ĂŞA4óÚʼn´ĄE?]˙ÝâďFŚ.Đև†‚{żđBWŹÎ3ťGX'˛šŃjbÜŃ>ĐŠłJëEď żÎ.‚hœŠŰ.b͞|ϛ2ek0ž"§‹VŢ`ę žŠčŁ~˘˘Oäť ő‘˘'ĎĄĘç [Ô§XÚÁgÄ.łEŃgĘPUŽ:J%Ą…­Ť™ß ĘĘş˘ áüŘ÷zÍQQFéVi{Ł+Žíź#Z‘ęĐžgÓn‰cúť‹îŰNÎ3nΌ´˘„Č6ć7­YFnëGAf‘Áš‡}TgČmýĐłké÷2źĐÁť˙ŇěX~•+xŇëĹ9_ŕőcěÚ{˙–€ÁżĎ<ąbď>yčçsEÇšF¸Ÿ˘Ss ďS흑32lĘQ÷_Ô@óUMŻ/JŃpŸ,hę^ćŽëF‘4M?NĽ@Äű9ÚŤç(UŸůÚ>ë9üţX$ ěÝ fżŽŐmľ÷÷żĆVWlnZĂŰög‘ÚŐW€DąKv •{&Ăv<=Rf:łžĄj*Š8rÜ#œ{YŘ8Ł[ţ‰_ƄT 9­ó-žAý¤tHŤp/>){CJ˙öĚÂAĺŘ…J+–~C´úÉ´ă+Ëŕ`3˛5×ÍskÁĹH*r%Ěa$ÜŠđ™V°Ą9ĎŻ´á ş*WÄĚ\öÇźć@,ýú'žQ|Oô|/ňS03Š—ŹÝ,ŃĄ† ˘ąÖG„Č}_R-Ěa€ŁA¨H;ĚÚW\ˇÁŻS˘Ŕßcz2s(ц¸QSÎŔëâÍV˘Ř¨Óv#eBCe ÚäuäĂ^'—ˆ6•@ČŰłŠf„Š_ÓúŚ “äřëËä’­ąu@ËŠO.Öš_áEKd6oů&š GÝ 'eC 3cˇG*›ĐĐĚŇ0Ű5ČßhňÖݰĂ>6xĂ9˘M9≳*ܰVŢýńęƒoĐIšśpŻ/˨Gě’đ˝ĺđ[Î)JĆ{7Tşľű€ž+Pś¤uřëŠäƒ~¤{ý2ĹĄ×Z`–*ż=…°Á+U2(GÔţ˝Ą§Ď‡ŒŃŽ˝YEDĚŕÁhwŤűlćţě8ĎMtSÔ|ű^9 ¤çaoŇ8CćqďńNwăHШ,§Ň‘Ú˙‹śĘŠ2Ć{߄ŽšŮŚ ˘öS‡uŢ5FNp9fëü÷t˝ŁÎ’'_…c‡ă0˙3Ńř}FĐćĽČ‚Ęd‚ş4˝[OƒŠâŽ9Uš˘HOJr§ć‚0–ż:˘oÜ]_/—”>mIŇ~žDŒj” €W$“Y@;줄ýŘrťí6_`Ł= ˙jGaœ aÍw˙!rűú˘č¤^đI|‚ď{ÎT~R‰f*’ś—Y/ťĄiž˙f:5şfŠŻZH6mě4xhŇRB˙MKÓeűíú 6˝y{ŐŞEURśx [vŻ*ű 2ě“ěŇĚÇčČôSÜöŔ_—ÇZŐ [8á÷óćT1cŕƎ”˘ěEřĹM`e=}"UÄěRĄ3ƒ^EIŽ(S64Š=ĹŘ/ĺőʙ‰e†äÁŃ çŽ… Ÿ˜Cdô-‚›ď'Ťóň˜Bę˘Pußĺ>•­ŚÉlÎÇgԌɃ´ö€żDĄZéќP…ĺąŕÉÓłŠ5˘ Ł4ŇÇν!̑‰éžĄˆ%2´/hoGö”n0WdżĚ…™C}ĽÉ‰'V“ŘŮ0ĎĆĽƒţbŇö?E:‰´)šůwÄÔl$‚ŮFr‰ę* Áp^Ş+b÷Íą9ĽĆ€šImpćبŰrÁţ“@ŃĽ2g7T—>, ƒ,‚ƒĘą>ňD+,{ń(S×FB6I'ŮҝwP!×ňČŻŮˆࠎgYQ –ÍO‚qOáÍ9ŸĽŸ0IŮ2iÂW%\3ښŸzŰ{đLm(˜iDŸńÚŠĎ@t¨ŕřîf_›lĂO3ď Ź“Ć3``Á€…ˇŤ°ýUţν̆@'GŢpCĺŘľ,ňů%˝GXďţ7Ú &”şZQ珠tŸžŔVťí]ěîśô“:”Ď`íK;÷hK΢şEbc”˘‘–`O{Ąúá/˘hюҩŤěš$đŕ *—EđâyťPö† —ëůČ}á~Z|Q<(­Üě’’źFFáŃHŰsD]I{Ţ`söEůrJ7éšĆ8㣈+6š†~]s`TKěGY"îX$єÄ&QÝÚnEŃŰĐB˙1gîĎ ­#˛‰fŐ{ ĆşížĂűŘdDdq5~ŇeOfXŻłřqƒwBż]łŘďť[R~ĂšbCőžŠ/#ńÄř¸F1"Gʨ+ÚežÁY×O{r:9P:m×ň‘ďżG‰–ĹÜ t19 ÷ ÓŐôÖdúŠ}ú˜÷˜L›¤_č#§/t˝Iżń=sXgžxۋ˙nÁ7ĐK/pВžoÇ ›0 CĽew°(Fďy †ŹËÎx†vţ'Üĺ…"oĄu‘Q;ý †Eáě> 'ÔvőSoÔú× R…ţ И~-ě]űČqaÁ;š6Ş)ÜfôŢJ~mŤ´7éi:z×xç%żńĚŤĄzŁzězç‡ĚۙÜ:˛y룜˜ŕ€iäĽËzTú(“ť&ô.Ü&mš>´)íă¸ÍÔ×ŰhcӃü-#ęŹćěýAZ”ĹŒsö×ß0Ҩ˘¤!P.ë @ÁœJM`囟ƒĘƒČ‰ŽŽîX÷Đ IľfŮŽl¨† O™¤-‰cO4a ™ŕ/ĂóE‰'´ĂŚéFżDĽ›´!•‘œ´Ă|Ł*jS3ÓÝGŃč góĽáŔ¸đź&´4”X'œđ É¤ŽÚ 0ă4,5 ŮÁČA5ČYW´đŻŐEŹąŘŞ.śžnPÝĐŚľhƒ VFłxőyčQą™|d—AÓ"Ł˘}C˘X¤“˛K4ČUé5@ŽÚ„ŃWƕóŻú-j Xš¤bRĽĆú üĺc€Łë}ŮqËFuţŤů‘ X/‰ôčŃřˇa+ačGbëgBŽ h­ÚŁ’Ů[‹íŒCyk;:‚A.§49śu-EŰʍ˜žéÚŔ{˛—-is§[Ą=š(>EHŚđĐ9Ó~š´>‰K˘j𜘧ç3O쨑2§íŒБĽˇ 5S’R/pďŹqăfÖä;÷đŞŰZęSR‘Fvö*@㓣mvĹ´ââsćY­ÝşÜڑČc<(ŽvÍ.zňc_§j tý€Đ=Á‹n´+Ol’=´|Ä_@qFܸ0–ŠHo–QŕŮq:—ВŸ%ĎŠ•ű“^đ če‰/8%u&…PňIüB2:4•U™ŮĽ_(ÓĽJŚv<2­c'u*(.ĘÄşŒĐČiő(U‘+n“hg+ѐ‰ŹuänĐŤž%Ů̌•ѡŔœ–řOöçBA×É+.¤|­–ĄęŐŕd!6˙{4c)Ežđł`î ,ř…@'§XŻíŃÏŃbM`ať?ą AˇŽőşűPX™ˆ›K?•ČĺČDČąA‹ EżRMŁYŢwRpâƙNŚĆFÎpܲ"näVr­ÜŕůŠÔręď-ÔŤwˆýt˜ĐΛ­ĚˇÂ_>I¨N6aJEt$'ńJě:RFčó¤Í´cÁMxŞ+#Ş9§’~ŢZ°7Z¸ +mLłžX[BŚŁ˝vŠĐ.zb?u*ŹŃÄهľcäsĐ˝6şfŠO @×řXq•áČޒrt+s´\‡hĺĚwޟ§kÓěśwˇQżŽKhÖŕx:_ 4žyR5ŐÝ"ĺS˘9)ID¨Q‹>Ď^/¨čÖ§ŚŹpčkTQ¸g%M3“h–Ş^n-_tQ*çG‘îÚ,z€k'‘ě-Xë,źŃ!˛—wŐŢ8ČdKr…íYę>8 ź ě†˙ĺ*Ţ<j8ú8Áj}H6NlhÝ-8ö‹@src&čÚ—bźR6ŸĄ|=Rz\Ÿýv‰p;ÝŘlwżŰçšuťľńtíčk°ĎF˛Ul;Ją~ŒL›Fš˜^ÉŽÍđĘŞ¨ŇƒÁ’äĺâ|˘wĆ80D§4Cn“‘:gŕx€r^C=ßńáú(fRÜ=ă(ä°^ŻYg˘CĆÍŁ7ˇŽ˙nŠďFZöĎ5Íkž‡ŻĽt?!„EĂ=n-Ęô´ŁžŢp”é{kお$ˇ;–ŹE3Aş§ÝŃQ:kř0ůřOو:Ç0â2­CŮxášy—ŮÉՍ )ćĚS8Ç›R˘}í§•ä ŢÁŽŤŁ˝+HƒW÷F} g‡ĄĹmĐż&?ILkG_TH ÚŃFO›†Ţ1¤ąRś™"B˘@ZŤp•zbk§4ƏSĐ{“ŘKŠf°oŇhDárg€ŽOďvť@ڜé˜˛Źś(˜Đ*Ŕţ€Şü+P4¸"îä4@]㯓Ś-ĺD`xmůl ű'"úŚEŽOJ„ŃQ]` BîÎ|T–Ţ„šÎœÔćÄf­AÍZłë|[Č(˛ür,f^̀„1+‚f˘ţ=~éô[;ŽŞƒ8ěş§ó ˙^žâňźí ‰ě›Ł€ ,ěőslƒ.CďEKLZnľŢ‹ƒj˙NJ@qfđ!=Ţ čmVŠŘ}1Őž˜†Űž_‡žĹx$:Ŕ Ú˘ ľ<ť“ ÎJ9¤ˆŚ?aą2Îĺő‰źP}ďÁŁ”˘˙Î Ô×~­?°Ło4žĺžc´Ş+ů5ƒmT'ťˆč„oť ~ 7fŽ€ؐ‹Ř3üŘëűËßGCő–=ě:#ˆ!ü˙ü˙|üą endstream endobj 8 0 obj 55061 endobj 6 0 obj << /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] /ColorSpace << /Cs2 12 0 R /Cs1 11 0 R >> /Font << /F1.0 13 0 R >> /XObject << /Im1 9 0 R >> >> endobj 9 0 obj << /Length 10 0 R /Type /XObject /Subtype /Image /Width 190 /Height 319 /ColorSpace 12 0 R /BitsPerComponent 8 /Filter /FlateDecode >> stream xڄ} —ëű~K2!##ddd لŒŒlٲe„ŒŒ:ŐŠœv§q4P'{d„ŒŒP*•ćŮă{Îůýţ÷ýźďçƒ:żď˙Š4Nçœë˝?×}Ý㹟çݟş?%5u?|KMMKKĎĚĘÎÉÍÍ#ëČŮë/WŐŐ7457ˇ´´śuv÷ŽŽO<_ϞOžXź&q}ögSSÓÓÓ/Š533órf׍WŻ™ë ˝ćŢRëÝű¸>âúđîÝťˇoçććŕŸĂż3 ßń?ňrzęĹäÓýű“÷ĂJ!+55#“>??żčLĹÍ[uu M€ţ^[gWßĂGcO&˘Gź‹Ŕ?Çőůüd˝ÄđŸY€˙ ›#‹˙öýű…ŕ;@ýúüKĀüĹäł§ă))É;999 VrrjZföÁ\Ä~čü(=lßŘÔŚôŸŰţé3°ôł…ŕŸ‘Eđ/úŚč5?|x ţ›ˇďíÂőîÝ{|€;ý,0úô4 ?›xňx|”@Oڗ˜˜ß’’32s"ú‚‚ü|¤ą=žďáč㉉ĹčŸÍÓgňů3úáĎŕ7ĎžřŚŔh/ڧiô>Đĺóťwóřń (č`t´:ąůĺůÓ§OĆF ô>!>noě޸ÄôŮ9yů‡ ňórssŻÖ5ń[Z9Ý}ŸĄŠ–f„'YřçäS áO.ř$ŚŚ^2Á×çhÔHöw‹>‚9]f(äČ‚üńřŘčđđĐ`?…=ąÇÄÄÄî݇śđ…‡}Ţ-tŰ&äý}D?ţä3ô wz&|ęŸO:Ń˝€A˙iBĄ˙Ž ű Ăć/iŕřŃNöhdxxppp řNŔÇÇĹĹÂڗ’™u0ŔĂBôŮŻÜŽŻGˇmĽl^ťţsÚŚ“‹ŃĎÆ>0˙ ýKOĆ ˙đžRšym!\A'fZćéÄS@>> ȇ† ô÷Îo:q‰Ii˛iÓ#üƒ9ů‡Ž×Öę´ut÷ôřŸYŸ˜ýô_Ń?ńúi=š—PlA¨B€#U^âߚŚLň ĚţdÜttdŒĐűűúú< ڧWBBňţŒŹœ\úźÜœœC×îę´śwtĄŕ=AřŸă‡Ďu’Ą8Ÿ­ů@}HL⼙ŁňÜvŽhţk 8…}P?Á˙ă0ú荠÷ööôtwÓ#íă÷%íOËĘF˝ôĹ`ú܃€ţ$Ź†ć–śv”Ě‘ŃńÇţBŮö§ĺóůłĎĐżd ŸŁ­˙ć5ę?@gGeçş ‡âz8<Ŕ ň==]÷ďwvPrł(Ÿœ’–j BŐĄâ⢂\@üšÓÚFٞ>ńŮ˙1ü›H­8DÇ_CřÄ@ŒČiŕ@ü?<'.:„tčşôňhőŽÎööś6´űŢXP›Ř„})Š(8šyAQińń…ů§+ďÖŐŐÓčŽ<ă“Oó ‚˙_ś_ ţĹ­—ř´s2 N˙]"ЏFG0"W(Łp@ŢÝŐŕďľś´ ib}\R Ś9š$Đćĺ.ÉštŠäЕŞŰľ ô}Ă#căă?^Œţż<Ćsfž\h{ŔOŘ˙Ý˙+Ŕď'O#Y=p44D´—Ź=xPŚÁ77ĘďÝŸ˜’šžŹĎĹ0[P´É?”wôLĹ•ŞŞęťľ€ž$:CĂŁÍżX9˙/ř”Ü.0őžÎf¨źĘŢhđ1ŽšˆdŤô= qŁÍë€ź­­ľľĽŠŠŠąaĽ–‰IÉié™čł¨8i ŕWyů7ŤŞ€:őÄö˝ýƒCFÇĆÜ˙ý—€’3š˜<Ó3La!ŠP„Ŕ=)’?¤¸6ďëÜŔ08z)Řź˝ŠĄĽ9‰Äň™Y™ŮD.Š•đó Vƒń1ŢśŢë¸ßŰ÷phäŃ(A˙oř˙?žđœ <Óč t΂OF„ź“rĎĘ9i‹ŁśË;(ä`s€ŢŘŘĐPWW[WW‡š%€‡ä2ă@V6•âĐŕÁćœô•ľŞľ´vt>ôĂ#ŁŁă ĎýwřOŸ-|ŽůÇĄ‚ňä Účř‘Ŕ_š@šŒĐČ:á ˆbWeđŽv˜ś{@D^_Řk=•'ďOK? ŕIzI†ŞƒŮ ŽVüďÁřŻ:{z=ĄţcÚüŒőôż/qH\# ˝)óˆ˛9SVżŃâ°:ěÖVbőFŠ/őˆ˝öťłGň1Ç$ŕ3`]jŸwHţÁœlĐţüҊj€Đ7ˇ,@đÇ?‡˙_ńOP)Ń$3"ŔÇŃî”&ŇQ¨y‚Ť-N‘‰Ž^ 6§VmUő˘ô„RVĽŚŚ§Ÿ…•““MýŚĎ=x¨đ˜žŞŒÔéězĐGŕýü˙ţ”řS˛ˆY.¸)r}đá-'ŘŰŰ6ř'ŘźĽš™¨ ąyMM ňĽî\yqvˆŁĺ–TRĎŚĽĹɂďYYđ! ́¸UPT ŤŞę1~gWOo?0˙ZŒ&sMü×§@/ ÂHQfp`ň.TDä8NÓ<˛ÔÔ"ř‹§‹r“"‚źLŒ4”ĺRÓŇ镑™y ##ăüœEäçPQ1(N5|ŻŠŻojé¸č‡Fäyüxń<ůňĂXÄř-1:ĽŒŔöáaôTü¤Ä‰~FN ÜđÖĽňźąáޞć&úJ ň˛2 ”ééh|Dř˃ŮAzŠŠ —\¨ŹôUßú涎ž€ţŸäa¨Ď˙ ‚‰|uœ„ŃĄĄ‡°Ŕěý}˜q¨“6|Ƣ´9ŮRKĐ_<íçnoŁŻĄŞŹĽĄ /'+ ´IMÝż>0;â§|7˙PQQńáÇKKĎßBôˇî@ŇÜÖŢý Ż˙á ¨&ƒ< ńĄ>ƒÚEI@%”ŠG˝(ŠduRž ŕQ_š›Đć„-5úoOd%D9;ZY˜ęë¨+))¨(ĘJKI^AÖ?pyŹ 𤤴¤ôë“7o!uŞŞąFš×ŢŐÓ×7€šđG™Ö‡Ôä1ľžü ~ޞ#\‡,€‹ ŒŁ$mšOąH FR˘ŒuČžć慣'2Ł‚ź˝ěŹÍ ÔUU”ĺĺäe%%ÄSˆÜŁěó#mĐň…E%ĽĽĽGž*-˝́Ů„ŰöŽîŢ>d>Ÿ‚Oy/ýŒÓ ÜćB¨é†‡HI׏~ú€€'Ř cˆÝ1”6ЊNЗäF…yîJĎŢäě`˘ŻŠĄŞşY Yłq٤¸ŘţÔTě*ű§˘ů1Ő9TPT\ZVv¤ŹŹ¤áCŔjhÄT‡ň[4ţŁGLř Öż˜˙ eöaRԑ†X“tjutĐą´™Â^[Ë,ÇĂ}§˝mhěޤ°]f:ęŞ*JŠ @I1Q1Ja§¤Rź&úâŇ+Wnëß!áĐó ú‘úąEĎđšő'űé ĚSŚłłëţbđh÷†ú:Zcjko”'űűz¸99ŘX;¸¸zú‡Úiq6š‘âˆbŹżĽű˜ŠŘKËEÖ#ú˛Ň’˘’ł7oř5X`AuÜô˙>>ă)‘ňhPŠ’”€§°#ß<ĺ§Ç&D‡…úűěrwr´łś´°Üaďę뢿E]UAA^^FŒ/ş>%(đ?ŔOËČLŔ9wáŰ+׎ß$ĆÇÚüˆCÉֈç~üó5662 ŕŃSŠŒh$%đĚrƒ˝öFށôd@í10žżŻˇ‡›łŁ­ÍömĆƆŚNö:Şň ˜2˛%7ˆłüÄôˆ>=+ŠS ŕ OŸżč+nT˘ńëICłő^Űý.R§ü ||€ÄB‘D‰d ßżßÁˆNmTpŞŁÁ[x0'3-91žô ˘#B‚ü|)ňX[˜™hoľrÔSWR”—•U–•Ţ Ž–0†ňYTýôŮů%Ŕ*,(<ńŇĺŤßy SƒĽŠĽsív[ƒ#óÜ!0:Ę@OđQĽÖýŒŔÔĹHĹĄ•Şó¨< Ŕß8›{0;;#-)1ŔGGGE……ůyyşť8 őM ô ­,U•”TUĽ%$ÄĹRHŸĘŐŇČ@âsŕ`~!@/8TXxĺęľ ô[PRa‘m”ÖśśěŽĚŸ^‹4FX{˜ŕI:ÖÉ,˜îľ´0_Wwáܙs'eg§Ľ&‚ĺ{dDxh€莫Ł=ŘŢÔPO×ĚÎÖÄĐÄXCIJbƒÖV€âTŽed¤ĽgĺäÂ|Ąäâĺk´ŰVWŐÖâ6 Ŕüí÷{žD?:áĘ:::"""<,,ČßŰËÍĹÉÁÚr›Š‘žŽąš…éVm}=YIIIjĂ'ŸŽ’™ž†@šů¤XňÍŮ —Ż^§żś–ŢÂŐŢń ßţŤý17čgćîĚ^L'…H<­“u×/a‚˜•SXvhR˜>**<,|Očž@/7ם;Ź-ĚM śęŰčëŞ+ČŤč*ĘÉ+Ěž^Ÿň€؋… ˇ°ě؉ň3.]­ŃŠžƒč><@k{G/qÍăgţІ‰đ`/ĺŹÝLđííT‘}Ż•¤đřKůÉ)űÁădćäg§ĹÇĆDáCĂĂBB‚|ź<ܝílÍAuôôm,4U7+(¨j(ŞĘgŇY=,ÂO';ŘT+<úőŠÓg/^˝~łsÚ:lĺ#ú–śvěíPč)ԏ<ÇčƒóŒ$xAĺÔN'Oűë×ůŃą‰űödŚ(>”ą/:2," VPP`€Żˇ§‡““Ý |˝­FV:jƊ`|MMŐĚůu€XóL¨jsórrň󋏝:{5˝śş˛Ś%Ÿ o˝×ý`€aüů˜€:ţÚĹDOu“(ě´N’úŁîbYTXTtl\bN0`Fj~ţÁôřHЛŕŕt[g'{[ŤíŰL őM-ő5!USVQŐPËZ¸HY‹Ř<˜›“•›_ Á łâA_ĆohŔęńwÜďí'ůŸń3ޞîÎvś šĆ†F†fşšęj›iŔó ŹŽťľ¤!UXüÍĽ+W¨PKŕCMđióˇvtő RéÚsöř‡ý02JáąĹq› u˛îhŠŻŻŸ@`HhDdTLlüŢř„xpŰ˝) !)I qŃažßy§ƒ•…š™‰ŠšąžŔWQ’Ď&Ś>H/B™<ş[PpřčĽK°@1Ťiă#üF\Ô>bw/U¨Œ,Xű@iž“4TKŒvW‚ýň‰@/XŢŢŢ>ťXxTtöăAtŕk|\<8DLtˆ'Śjöś6 šĆff†zÚZ`|EEŇt"Ч€ß ĐB˘P|úňÍ7ná˘hOĐă>.’óÜďĄŇľ… Ë?^|'U´2ŮÎ(Ÿ(Ă›âáîćîážËËŰËĎĎ?00(<<""$$0GEEŔĂ f†E…z¸8Řۚmˇ06„HŤŻ­ EaÂÎËËe. }qié× 5ô˘ŔƒŰ"úz‚ŸlƒBÂĺŢbř¸3F:×]Œ.ÄĽVşŮLőŽ)đWs<=ÝÝÝÜ\]Ý=<<|‘@A{ÂB‚üBĂBÂÂ@ƒüAtüá÷žvśŰ­-,LŒ M śjkŞC™•MÁ‡Ź  %žěń‚鋿ştíVőmŇO VU5@ŕwš[Úď÷AÍ48<ϝáalě=`4ő™X3ĹŞ3†ŕďÜŽťšďŘ]œń <=wíöőńńó÷ő?Ţł'ôĆŰž+ $Ä{—Ťť˝­-Ś9F::[444ÔIď ­yYşęĄ‚oʏ~]|řHůw7Şżżs‡ż}›~€J,:Ńúő $ěśwőCá10Ä@Oş’}$9@đT˜ę‹aóšiőşŞĘ›éŢíččŕä˛ÓŮĹÍÓŰĂŐĂÓ> wOoo˙Čq<Ý=ź<=vůříöńprv˛656Đ×ŐŐňäP˝3Ül+(*9 YńąĂEGN{ńňwˇŞkî~˙ýmÄ~›ÁœJ¨|ęčQ7Űú!ya‚§:豝Äě¤nB›3ČNú¨•ßđôôpwuvrv´ˇwÜšs§ŁƒƒÔ°;w:Ů:989:8:š¸{zÁł8;;;š¸¸zxűBŚělżc‡˝šąĄÁÖ-šj'ż*ĽÚŽ”ť.9~´ ŕ(äĹ7nVÝš đďÜž}‡ żM˜S…čëˆëR)Og__?†­ajÓŚŢeęꤹ77662Úz˜Ăo-IőÚĺáŹqrr˛ˇˇ>ŘŰŰÚŮŰî°u´ˇ´˛ˇą˛ÝžÝÎÎŃÉŐŐ Ťv6;œ=ě­ÍŒMÍ,Ź˝ţV-MŐŤ×.—9NZŻŮ‘ő‡ň ÎTÜÄJüö]˙ΝyŰSރčQ8‘­Ý]=˝˝Ă`˙aÜ%뼜™:IňŢLŹNőŻŠÂŻśîĘšÔh „‡ŤËNĐA;[k+řjmeeaa ?,śm37ˇąsŘ Ÿ čüv k[;+Ksc#CcłíŰLŒ @wÔŻ^űîęĹŻKňł0ľÄnHŢĄŁçnśwőí;ß×Ô z‚ż’žŔŻggCó˝VĚ{úG†ö’nv7î×´ĎŤ#ą:ß+ňBÁž>^ 7..‚vXćí–VVđóv °Ť™šŐ6SS¨ÁˇYnˇąupt°ľ´0337ˇđ&PŰ˜ŘX™›@Ľ˛ĐWT\˝|étqN Ů*?rúF%Ľ4Ŕ&üŰŕ°´âÓƧŘ_OËg]¸`î&ŕ‰H6Ďo2Q[[Swă›Ňˆ°Đ‚~—›Ť PŢŢÖzť•ĽĽ%ŘěnśÍĚĚĢ)Ř”ŃÜÜ˙$—ĆĆ&fŰ >1Ć?śÜ1×X_Gë ż~ýĆőď.œ*<”•uřxĹ­jJgމÉďÜšKYŸL‚žŸAcÔ@ R}}S[ß´9Yˇ.žÉIŠ‡Š’^ß]žŽPr8ŘŰ!/,‘2––ÖĆŞWřß ŒŒMllvŘ[jc#x20šžĄ‰šĽ%<ŠŘŒ•ëÍkW/œ;ůFUőš+ä+|'ÖŻŽ˘™—˛ýü0´<´ľłĽŚ­Ú ›Ć[ĺÇ2Ӓ÷Aúőޞ ?oČŮ!ođśv@ %Ú ˆĄo¨ŻŻ§ˇU–Žžžąľ TU@s3`~(Ć&Ű`ˇ Ž˘ń+n@ÝMV%esć"đ=>CĹűŞďQîié &§ćąĎĐŒéč uG#CaŕďU]ţ67'33űqąŃP2aÉŚ=ńY` pf›™Š‘×ŃÖÖÖÚ˘˝E[GÇČŸĚŘ ŕ‚ĺMÍłĄĄ‘ŠŠ™ü]=Â{Ň5¸UYIĺ ďˇçŃ_sˇŚŃW-BOŁh"ň{mmíŇt1ş3őô‡S[]yŁüDYIA~vfZZr2䎱QĄ €ć@Ĺ‚łĂÖÚ˝ÖŕŔęÚZZšG5ዖśŽ6ŇDWXvăSÖ7EüF[Ż‚ńýő›7iđˇŠĹ„!ë.ćŻ˝ƒąśŽŽ’{ :TްP%ŰZ(Ťc/Â)ś?ŤNŸ:RRT“‘–œ”ˆí˝¨=ÁAx@čř;ll­Ź )ŢÄČXoŤŽś`‡ďjŞŞę o3ˇ0Ű˘ŁŁ‹Î`lLÜŮĐŔŸÄX˙*˙;ä=<˘ź}gŃş}Œ_U]Ĺ\ߓ`‹}`Ë=´z{˝żÚvˇTé š[•¤ŁZuĺôѲâÂÜěŒôԔ}‰ńńPo‡ę€Űzŕ˝­ 8,Đëčnݲk5ŔŽ˘˘ŽĄŚ Ź1io5Đ×Áǀ_č隘]š‚Ě!źÇÍ/ÖíŰUhü*¤=‰ 9 Í]9TŚĂ*{UĺUUú맏=\”Ÿ›™‘––’Ôř(š>ť ÇÁXekłLoJ<<xŔ•ĄrURVUÓĐ211ÓׂĽłUGg+~z¸ô ŕc¸té*ÚţúM*@U湼@f 撁f]ckk[ű<ňLÝ[›š0(!rˆ ` ĆF_MÍÝk'•–ĘËřŠŠčš1Ń{BƒH§ŔŮŮŃ]K&C šdžŞ›•6+zEř˘aHĐI[GS[WŐHOžëë]úöňĺŤđÄiđ†"?ý]$2f[$Šď`ô!1ž× 9C˙V5؀ŢćC)­ŻÁ?ýćäŃ#Ņ9ŮŘŞK۟”ź{ˇ÷.7ÍśCˇđZŞʛľ˘ź‚‚˘‚źź‚’ňPM 5uu pf-]đ˛tˇęř+WŻ˘ßR‚ĂO¤„ÓÜzhďlkz3Ę%RęA:ĐPK0⪏¤€cčíîîěhj@Ţ՜:qʏ“…ŰŮŘ狊ëűc—É łH\tđŔuÜؑWß$+ťInÓ&EE­†ú*@"Uđbu-mTRí-Z[ŕŤ…ţÚw7 dDXš†čkˆÝq&4‘jtÜŁ’2ŻAŻ˘œ‰úĆŚÖŽ܎mmiŔg?wúÔѲ˘2šJNŽŽŮ î¸;9@ɄýUÜTR“+ĘËÉÉĘHËČČČn’W×Ö××V'€Ľ˘ BŞŠš<[]S]Kó Ÿ¨NžŽEţíŞŰ€7;ąČë"sJí- ”ƒŇ¸iÂěd ałz[›ęuçϞ<~¤´¸¨°đތäřبđ ?OŇ᳄4ĆŔ”ş Ňwcĺd¤ĽĽ6nÜ(-+'ŻtŃPÚźYYY] ác@ĐPW×<{îŰ+Wˆčc¤%Ą–ĆN…­ŰŐwjję[ۈ˛třžÎö–ćzZŤhä”Ő‰–6@Číę{8444<ÜŰ ŠĂ—/={ę乣đy9éŠ qё{B|=ÝvÚŰX[@Ţ •Ş–ŚşĘfÂ9YY/)%-ö—•Ý nŢ ´Pkj~Ŕ!%-çü%*d!z˘;óĽ,˘ŻÓˇPşŘśżßAaGŕŒ@+<6 ZÚ{qS×Hg}]UMSCMÝ÷מ˝xöôŠSǏ.ĚÉJKŽ# ƒˇ'Ć+kKˆţXgkţ˜źÜ&Ŕ.-%%% ř7Jo”‘U×ÖRބ~ʍʍI,CôÁa9Ç.\şŒŠć ‚§’ŃD ĺěmě˝6ˇ’ö#ż˝Ľ §djć‘W3°“^IcsgĎŔ ŁDô5u--őő5Ő7Ž_štśüÔŃŇâÜěô”ř˝ŃQ€ŢĂi§˝˘7ŘŞTVUŮŹ¨ ''Ga—’ôŇ@%EMuYYšMňňĘĘŞŞjjˆCąjHpphbaéŠ3W*hŃżuł’żŠ4ë›HωßŢ\Ň_9yŤŞ`ŻohjëěďĄʏF{jÁ ÓŻťSułâÚš3§N–&čA4Cvy¸íˇ[šéa‹dôf“˜~Ł$, ) Žœ˘’Œ´šşrHWEž€|S đóŰ—’^xôňŐëso^Ż`Œ&Î•Í÷¨žuWWksÍ݅V_ˆœđčŔîÎČŁ >ÔŰLö¨››ęďVßşuíâšňGçĺděO€\3ءÓP0MMôuŃgÁňň˛˛22%¤˝$|ŕ¸ř+yeŠ2›=@XŞţ~~ž^ţ!~Aąqمĺ—*ށ \ƒ$żŞň&î˜TVݨll!ŕ;îˇ5ÔŢ­bp‹É&řŚćށąŃ‘Góۇ#}-äĎAZ}Ĺľ ŕşGJňs2Râă˘"p[ÁŰfkkŠ€Źod m$č%%ÄĹĹÄ%ä𣐑UŘ$§ ˆâي€Ÿť§„=_˙Ŕˆ˝Š™ÇOŸżxöěé3—@GŻ€/\şxă8"AßނŕŠÄ0;ŚĆćśAÜŻ˘ˇiń룁V’F7ÂcWߏřöçჁ9QQ!,¸99:X[cŞŠŞ Rš ´r#:Źŕ—’ä˘"¸Äĺ6nG•“•WŔ ůŁęĺĺšËËËËĂÓ×/8,>13˙p~>¤SéYY™š……é長jî‘ÍšŽÖ’ŽŃŘčkiÖ47ˇö0†tčQ—ńŃÁś =˜źöĚéăGŠň˛¤&ĹĹ@˛äăíîęâ`˝}›ńV]-Dż h#˝ě kƒ¸„¸¨ČzaaAAA!A!I)9iq)iIŔŻ´¸ŁŞęłk——§‡'|žÁĄ{“Ň÷çŚĆĹ퍅.&6&*ˇňVUľßKR}LčéC}$=ß ˇ<él&-ç†ďoU\Ë]Z ŹOK‚ú6*2,dˇ‡(Ś VŘ —Šňo6lY/$(¸ŽŸŸ_`ˆŔŠ "ëĹĹĹáWT"źäťr J˜ř`ëŔťyzůE„GEEEebSâpťę7˙Ŕř37nUŢkÇy÷†::—dŒşQŘ|{çƒŢŃů‰ü§ôDţˆN'ţK5u—Ď˙Ş073-1aoT$|‹ŠˆŽ ÜíáęiŽ1HŽŚ:Î<ÉɁÜlĆßůűX\\kV#|Q A~A!Q1@/‰˛'˘wsóđôňˆŔ˙nDLdLrTřžđ=!Ađ-$§üV”Žm--Pk×0ÍÎd|CCk{wďŕčÂăx֏錍ôßo‚OŹňęŮň’‚ŹôřXÜű†˙čžĐˆČȐ`?O`Ž•š‰Ą.$˜›Qîe@o6 Î Ž[Ç Ř9999`qr­á^Ă/"Ě' ("*šŃCB‡ÍPwwO/oď p€•˙ŸĐ=!a‘Ń9ĺŐ͌ąŤÚy‰g˘onďéf€gŒŮ“‰ă§ŁC= –wkNUœ—ěëçáîĺíç ć ö÷őtuŘain¤‰¸-Žl|q1  ?/7';;;;;ŕ‡Ĺ#şv °¨¸” Ȏ ÷ňtws÷ňôń @{„y"b#ÂĂp—=,,*&>>#ďv#s†ŚvĄáŠvN[×ŔđÍyć)ę„×řHogsP§ś87#uoôn_7w'—]ŢA!aaÁ~~ť<œ°šjŚŻŻŞŹźY^ANvŁPGXHŸ—›k5'ë*6VVÖUŤŘŘ8ŘW €/1Đ+*€\şšš{ďw‡…ƒéŁŁ˘!{ Ýż‹‰KLÎHϸŰÄĄˇĘjçíŽBŮÜŇŇŐ÷h”œăXp´眞šœďďnom€çےĽá!>žNŽ;]Ýý‚CĂöřCŞădeib°EK LELĐ6n]/((Ŕˇ ĎĆśj%,\+W­äŕćčČČËCĘ ŕááâěâęîęáá–Š‰ĹéŒđˆˆ¨ŘŘĔô”´ŒjDßÔŘČ žoÂś´śßď&'°p@GÔÉá!qH ƒ´ÂÉŃťşďňňއď ĂɆ €€ŕ¸¤ÔtÜިko#;•¤ĺŠżě-¸Ó˙pd”ĐfáQŐG8_Íźx6>Ú{żŁ |ˇć›œ@/gG{;{OOĎŕ¤¨°Hu 0ˇ47ĐUWŮ$  ĐóňŕŹfg[Ųbɂľt Ű^Aá ’PŹo’…|ÎÉÉmďáĺŠúˆ¤~ŕńÉéŮ9šŻŐw´aÚjkjjĆĎ šO_Œ‘ˇ‹Î˛ááeęđě›7Ż^Î<Ÿ~Ř×ÓŃaŤ"%.ĚßÇ ĘAO7@—źÇ××ÇÝ §Eôśh‚bʈsx!Źň𰃯.[śtéBô+Ůšy×o”!=)I'€ďâęééă˝;Ŕßß?(44(7vűú'zÜ ˝^×ŃŢ ‘–’H ;HM[ǃž‡‡GĆÓčœž%ÇÉÉę—O öŢǒňť’ä˝aaźw‡î‰Éˆ%ŠŽł“ľ•ŠĄĄž–şźœ¤Şüj6öU+X€5ËXlżV@X\Šu' q'Ü%…4ÓŰŰË×o÷nżđА@Xţ!‰)ŠŮššš'j÷ľwk(‰ÇšŔ6ݏIţhœśýÂť :ÔĄk<§üöíěÔÄăÁ­MŘ(,ËLJ ô Ď K:˜LJk3S}m`ž¤ˆ0Ć(vV֕l,ËŔîKWÎé Vv.žu 9Rd\DŔcŠćA:ř‚ńCƒ ú`š9šG}sc] ľŮ‰%9ý344„g&ŸĐÇăéƒk´âźžżáíť7/'LJ:!I­ŠŠ*?u&{odDř֞ˆ‚ü˜p_7W{ŰíćúÚj›ĺ¤ĹÖ ňqŻá`geăăfAŕËáAŔyQ3YŘ8¸ÖđđaŞ#žAŸ˛ýÖR/oˆ"Ą!ţ>ž{Ăc“ŇŇqńXm{{s#ǫ̈젙>dŽÇgĆĆIJ‰č!:M.pÚ—;|˜{őüq”ĹěŞ*żKß…Up hÜÁ’”¸ŔݞnŽ;Ź, ´ŐUĺe$Ņ15ăYťžŸ "ÔîŐŤéd‡k5 _Ë ’$(‚îÁmĄŹN˜ířř‚ä éý‚Ŕřip⼎ĽýÉîď’$§ľ˝§O˙ŒŽ1$gňĹËięÜ>-˜ŻhęŔúđqî͋‰Áގ64˙ősŮ ؈ ‹+-K‹ đuwąw°4Ń×QSŮŮÁ ň`0î:~AAQaÄ y2•mŽYĂÍ N-(îÁÉnc ÁcÇüęäś Řä ^^“˜ rŸ—[ĽUS=#;Ćf_{W__?92IŁ'ź§ÎíučĂż4úw>ź›{5=>ŇÓuŻšĄžćVĹŠĚ܅*9ž›ơw˛ł4Ö×PQ”“gٰQJ’”ćŇŇ"üü|XžpŻYłšÓe(ľř¸8ŮV˛XlˇÂeieckďčą §|üü˝!oŢĺ…ÜIIĎAŰ7´ľ55Ě׃uMŕ´xźܖ´SS“Ěă×/ék6ÜÁ›ćć^@Úpż˝šŠŽśúÚé|¨mĄ:,>Qœ˛ăčánkb ťEUeł‚ě&¨˝7mRPVVR’—•’!u /?XŸ{5'''äÎÜě,+–á†.Źmć–Vśö8ç㍃V^P°@Šžœ†čk›ďľbŞČŔ_[żoˆZ#„řĎ&§€7ĎiôSĚK6ČŐ&sô­&ofžŽöś{j+Ż}“›‰üŁĺĽi!A>ťľ3­­­Łkhjçŕ u–@ĐnDďăí™–•›wč$I2qCŸJZ;`ĂrđáŔČŘă ęFźtë“äňőŤyđäě;ޞ€ô3;=;1Ú×ÓFzѧÎT\>Q’°ËŢÎÖZGSMUKÇĚÂJ-3sÜË7€AUIAF ÉÎĘÍÁąŠ… ż+—/Ađŕ!ššÚzĆśö;ÁöAA~ :<ĤdĚ/(şVیŰ÷ŘŤ§ŠÁÎŢ~hě1ŠK 'g–§)•Ÿ{=Ë?KŁ×}ŃÉĚóѡFdaҼŒäˆ0_G‡:ಚşĆ–6ś–ŰwŘŘۚ[éoUWrWZ¸ł–KĹË(ĂŻ`Y˘Ť˝ŤâŽœžąő`ž'äĆ~~>>ĄQű3p\íx5*oęŞš™lďěĹӆ 8O¨Sż¤(Áě†ŇHȌgč{–fđ9Hô˘Żky;÷Źß äǜżć\I~zrd˜ˇťÝvG#Mu-} k{GgwwÜ Ýnnb¨ŁŠ$/- Q‹›‹ŇFâĂž|‰*“şşĘfuxhk;'ȕýƒ!܆„EíKM;XPX|řćÝşÜÄX‚žĽł§0‡!ËÁ˛SbźSž!ˇ°Ě˝Â+5ŚŚčK–(_ ţ)uŃ䓑ážÎf˛˝[Vt`d¨§Ťšť‡žŽŽŽ‰ľŁ3™ĎôtÝik˝ÝĘ.MeyYńőBňxÚňKŘV.Y‚Űęꪪ¸§gleăäB˛*ĤôŒÜCEĹ%%ŢÔăś~ =/Ԍ°ô [”zĆEPÔľUäźo€žď„Ü;@RŸŮWŒčőœwřAç=BžĂůŠńĄ~Nśf6.f&úŰŹ=|źw{á$€ƒ­ľ…ЉĄž*/ AWlËŕ—pą-Y˘ŞŚŞ˘˘ŹŞŽĽklfiçěŮkxdTtBZĆÁüÂâ’ŇŻ.ß­ŠoÄyŠ2—ŘÔŘŢ50 šâŮó)ŒŹŻIXnĚ˝yE[žq_ őy@Fđ}÷jzblŕA{Kh𙢌¤`śîf–Űwúyř{š88X;X™ëň++JIlá]ĎťjžŘZčqƒ—섪mс€ë¸;(<*"&953;ż ¸¸ŹěÄ-HěI*ŞšŰî cZO]2đ’E];4Jů’Üô°đŚ(ú˛%ř‹očźçŐ$¤ ]-¸ v:;5ÜŇLGOëNö^ťĂƒüý<œŹL `TQT”…ŞEr“$?¸,=ϒ%ę*ʸJЛXlˇwó ŽÚżÂTXžěŤŁ_WŢ˝[W×ŘD­ÇŠ–Îţ!°ÄW§§g_ƒ7B,zGŽLző ¸2͈]Œ[Ł^;s0˜#ůÓ§—“cĂ˝Ýüǖ˜OĐ8w_ߐˆ˜čHV\, uUdĽÄ7l€ta“‚”0ŰʕLô\źË–¨Ť*ƒí•€9ÚşĆćÖށ{˘â“Ňńě@qŮWǎ}} ŃcEŐBŸ¸×Ń74ńt’âőěP’Ÿ~ř„7lá=83ÓÔ˝=äę„çä5’8Sđńcz˙áÓď_={ a‹P˙t^Zr4v8CBÂÂq~:&4ĐÝŰĹÖXG]YVZR\XPRNBTFV”}őĘeóĆçZ˘Ąş€×ô&ŰŹ=}ƒC#ă÷8w¨¸äČŃăÇż>wˇ†ş°Žš™Ôä-mm˝ĂOŸaŽ:‡v˙ô㧏<á<šű9}yu§ éŻMÓ˛ևáýËÉŃĄŢŽ{¨›§rł’b˘˘đ|XdxLlL0$+;­őuľTde¤@,Ľ•%%Őԅyׯ…b‹Ą÷kŮľ5‘öjZ[´ˇšYÚěÚ“”‚'ފJž:öő‰S§Áöt3„ ˇśˇ÷@V‰ÉŘDň Ŕř€j¤§XóĹ]FŒ,‚D-´ţ˜rőu4“̅8:•VÇŠő¸¨ŕ_;+Sƒ-š›eĽ%¤ŐŐľˇ(ó ‹p‚Ř3¸ĎĆÇf Ż­ĄŞŞĄ …žĄ‰Ľ ‹‰ML>• ś?zěäÉňówń|dŔˇľˇőLBŒ ‰8~Ëż‡•’büäó/ѓ^ÉKĘúČľs/žŽ ?¸ß˛ĺxqAnVJR\LTdLLĞĐ@w{s#]-ÜÁ•WŇŃ××ÓV^/-ÎÇËÎĆÍ˝Šƒƒ“›‹‡UO_OWKc‹ÎV=HÓ,ŹěÜ˝ƒƒ#Łă@/sňŠúoNßÁů–&2ś g˘ĆŚ^žzƒ6üô3˘gXţĹg–şŕ"šIŠ=˜3|řđţýěôSŕ~NČ\>yź¤ěpI~nfćžŘȈ¨oHŰĚ tp–ÄGt•Uĺe6J‹‰‰ˆŽäZڤhŢň˘m;Ü˝‚ĂÂbö&$gć9Ä9Sy'‹Či@ßÚŇÚţp|ć"ě?üôËO?~üń•Ňů–ÇěmţB*ŁŔ°‹ĘCާ{=ý|t°ŤŰ×NŸ;uč@Jrjbа°ˆˆÝŢŽŽVćhië[â‘=ÜVTŮLśćd6Bůťnĺ#SCý­z`xC#c3sK;/ż ȢăÓä–=yęĚŮ wîÖ6bœĽOśßz2ó ˙đăϸ€őďßž˘Žô!ˇ„=cŢĆ´đn&ĚCńć"R°Ýűúĺřp7éÖ\//> âĺz°§ťŤ“˝…™ąľ- 7AôxŘDYYa“Œ¤¤”„ ĐßÜŇÔçMLÍśYZŮ9zż ŕ°ˆ˜¸äԜüŇ#'ĘϞ˝X}÷nIHĚşwż{dbvî ĚŻżýöŰ/?}úeë›Yř矣§÷ąžăĺ3¨œĚ”íÝ뙉G˝]mdźŞćlv čN6Ćw{{šťášű8[mŠóöş[śh¨áţŠ´äz!ţ5lk-qžÚ Źnemckgďęćééă ćOٟ“_rädůš‹wîÖ4řˆž­ăÁŕłéˇ~ţĺˇß˙řă÷ß~úŃŁXR!öKôÔ}@ŘÜǖĂˆë~x;3Ž đëąUq&/ý@VvĐ'É×wŔń`*9çcbd¤Żuˆ–†:}˘_BRl˝ %Žřš›[XđPxxxűú‡BŘH:SPrü之WîÜ˝[ßtŻĹžšľŁłxrúí'0< ˙í—ý[ =ńŮç˙žŢ‹{F*`RÁ ë~ü0;ődt —ŔŻŤŻ,?V^~ôČĄœ¤äč°@¨1\œw:ؘh¨Č+ŞŠB )%PGAN‰/&"„ءí-Źp<ß2d°= ‡¨˝˛Ě‚#Çž9{éö÷wkÚ; IhÁű,Ž>Ÿ~÷Óożăú•˘=ä š|ţoŕiţô/é  ĄâíěłÇCÝ­Xł]8[–›ş/&,(Ŕűşť99;XëhŤ(ˆ‰đ ŠŠ(¨ŠŠk¨mV’Ý(!!..**ÄËkdhd‚C˝8ŠżŒżÓĹĂŰŃď ‹ŽMŮ,9râÔš߃ćßëÄKÖ:ťôNNüĺ÷?ţüó÷ß~ĄŃż~E™žqA×SćÎóÄgwą’”…çíÇOßN=ęÄ⹟䘈p ˝żŻ‹ÝS#sݍ řÖđŹćä_Ë/&#§Ź łqƒ(7';; ëŇeŹÚ[ˇ˜ŕH2áÇŃŮm—ďîŔŕĐ=‘ŃűR˛růߜťÔŠilšßŐŮŮÓÓŰ7<65űĂŻţß~űů§ćŃOÍߎ:eÎÂKt°‚dt:ßĚ˝˙đĂ'L–űťZąf+Ď&_Áţžvć:ڊ›4t„Eůx8Ą_ł†~ qs°q0s-PŽë™˜â)ËíŔžöNΞŢ~P`…G&$eç.;yú…;ßß­ŠŠďěęŐ×?ňřĺ›űóŻ˙€Ďô@ť_1Ž{ţ%ú‰§ô#^á$Uu˝Â4ă‡wo^<ƒtó~3 żTŕea¨Š*'%Ł.)ÄMś-ç7č%9ŕ×Gň~Kk‚ß<t'">9óŕá#_sîJ†śŽ4}˙čÄÔŤŸ~˙Ď_ýIĄÍĄjY":ôEb‹Đ3>ęsĄŽČœ}5÷öçOďfąTé˝r|ăD"Ú=Řv2ŃSS”•X/#-"(ˆűŸk¸ŘV.†K‹Ź-::DňÍ-Ŕ{mě]°žœ‘w$˙ü…Kˇ}mKK׃ŢţGă“3?ţţ×ß˙œö'ԜwďHrLŕ/D˙Ĺ-FŒ”č曹üđzfrbäa'îČ|›žHĆ/Bw˜č)+ÉH KKˆˆˆ‰ňŻáXš|Éč54pL_CUSK[ŇcTűn`ýŔ=ńééů%Gż9sîüĹo!ŢÖÖ5tô›—FŸMúíŻż˙ů óçŸ~âC¸z5;l?G?ą˝ĹEه$ď#)sGz: –4ĺŚăáˆ=!;-Ltˇ(ɉ‹ĘHăôzNÖ_ ×T'KU ›"đZXÝ:¸¸yyű‡Ĺe”?}ö܅‹ß~OĐăź"ÎÍ=úřËţţço ÎŻlą4yMĂ'šů˙E;s0‹x;Ł}Ý-­ÍM‡s÷ĹA¸ qľłÜŚżEUY^NAŇL1!^n6ÖeŸŁ'e“RU=Őآk`jƒ‘]~{⒲ ž:^~úěů‹ȑĆŽně>›˜üđóŸýď?衿üüŢť ̟%÷-/b><óV>úĘ=R§Łj’ÉěłqR¤7+ÍJ‹ ňtś23Ň×PSRRŮźINNJTˆíjö•ŸĂ×ÔPSUތuůfĹÍ8eč­mÝ=}Câ}ى3ţÂwx¨źŠŁťP#cOßţřç_˙üó­řédJ3)՜‡Ď¸‚ésôčˇÔ]ӓC}íÍM '‹ł÷ÇƄx8[™ëëhChU’•YÇťš•ĺ ôŞäŒÎĐ*nVQŃĐÔŐ73ă;{xG%§–œřhđŤ!Ëoš×…×( Ž?}ńáĘř˜§ýř’çÍkşB‡,úůű٘@ON1nś}Kn‡*ˇż ÷„e$ĹĆě pw236ԅ@Ť´IZLTP`?'7Ű VZx–QčI3 ĐăŔŽ °_×p›…­Ł“ OÉ(,=qęě…Kϟżő}]}skgšpltâŮŰ˙řóŸ˙Í˙˜˙ă§O˜gž&×/O-„˙ŻčqŤîk‚ü/ž>ěƳ槏B…’äiok‰%ÔV›$$E°ů˝VP@Hbƒ˜°?ÎLńĄijôƊ2ňJäŽM=cť;v"úý™…ĽÇOž>séŇůsˇ ^54ľwőu†Gž<}óáˇ?ţţ矿˙ú˛ŢĎŃe9ăöȅčçcîŃĄťkď Î™y6ÔÓZ_WwňŤÜŹ„xw[SŁ-ŞňŇ‚üëDĹdäĺĺĺd!CĂS1QaA> u5‚]çcŐ5őĄ@´Ůáŕäî•rŕPńŃŻËA2/\Ŕh[×ĐvŸ Ÿ˜}÷Ëo˙ůűţ„ç$ĎGş.§ŃÓ̧i˙™â?Ÿ¤“5ReA}ůavr¤ż П:’ăżk§˝…‰žęfiq0<ďiyEđuUeEœOäZ§Axƒ)eeeUU-mSKH7\ܟâ!Za}Ę9(°pßä^gA?ö’…_ţřóďż˙ç´ţ/ĺƒěŃg6šó„Î˙Ľ™=Ô¸ď^˝éďhŹŤ˝X–ł?&"d7ŠÎÍÍň˘|ź˘rŠĘęŞęš**›¤!ˇ\Ăʲlɲ<ęTS™ g’F¸‰š• žť—XTRZN~q)ˇçÎWÝÁž)n›ŕáńŃńɗď~ří÷?˙úŸ˙ůű/´>ښ¤—63ŤńçÁvž: ôT…Ábjt łšŽöťŁ™)‘Á~nNVfČzqQ^aY%e­­Pš(J‹óqąłĎ' ÚęšÄújjŞjxŚ@ÇŔÄĚĘÖÁŃÍű™űR2s K ÷/’ąiH4{†FGFFF?ƒęD˙Ÿ˙ůűoΟHG Ńә2uţBäŸQŸÚR§~=3>ÜŰ^[[s&'5:*4ŔŐiťŮV-%1aţľR Ę:ęŠJОB|źźÜ<ʌN˛žž.Îí#pMm­şúĆŰLw88:šď JHĘČÄ{ŒJż‚4ů Ůěhlď$wœŒŽMNĎ}ř t]÷Ďß!eřáŚ;3ŒŰ°?7ţÓĹnK' čľčîOÇú;Ą<żšw !fOť‹…‰Ž†˘Ěz~~%M=YQ(P6ŻĂŃXv6Ć„ĄĄžĂSXzúx€ĚĚbť­˝˝Ť§/¤ČQń‰)iY9ů‡Š˙şüÜőëׯŐÔľBa82†Öňtöíϐî çü_Ńs1ÝĄŽÜe¤;_^6IőŚhôÔĺë˙ŮřĂŽćÚÚÚ˘ƒIąaŢΖĆ[ÔäĽyyx¤•uTůٗłpńHŠx^öU ۛâh#Č/Mđ¤”ˆV¸ńââî ĺUxÄŢř¤”ŒŹÜÜC…GĘNœÂSÄ55Ím˝‘ű9O˝úáç?ţřrŸč&r‡Úö™ž~1š0Ü.˘=5C—çôžĹŤÉǃÝÍuuuGňR˘Bź]ŹLľTdůyřtÔÄؖ-_ĆĘ&°a/'ŰrÚöĆ&ŰLMˇAfźÝĘĘrűvRÝâö_@HiLLËČÎÉ+(-î_ży TłšłOŌ ŽNž|˙éç_P÷˙ţëß1e ’Mҋü˘Da&ř“ôĆ.5˙…Ö=;ůd¨ťП,؟âîhn ŠŹ *ÎÇ+ad"/ČĘÂş’•“SŸ——“9q¤g`bŒ'Ňmílw@ačěččéą_`0Ţ č÷álZ.(ĎŃŻż"ĽúnM}K{o˙ÇCĂCC/ćŢút˙ŻżţÔůĺǨ"{‚_ćj‹ŃOŃč)Aô­őőő'óöÇG;ŘëihnQ^#¨d˛EŒƒƒsÍZ^NĆ=š÷ĆƤ™ŔÝ<7T%Q1!銥aQ1{ăŇÓÓɈQŢĄR ÎيŠĘŰßß­k„*ĽÜś÷t ËťŸ~ůă?~§+tލ?3_Ś<űňšęçÔĚćĚüŐŰŮ™Ç :€ž*3=.&ČgÇś-jzrâŤŮ7hmŕYĂĂϓ¤BB|<ěĚÝfCSsœąłßéěćäł'*+!/?;;'Ť¨čř×ÇJrłđ=Pߞ:{­âVvGęšZťń†ŘĄ'“¸ýđ̏‹F˙–FOÁ˙˘)ř|ň9=ĹC$“F?÷r|ř•¸QężÓJĎČFƒ°¸ˆ”ŚŚ/Ÿ @_/,",°Ž›Yeénˆ˝ăNgȋ˝5i…EŇKʎ=vüĉ§ŽĚÍ/,ůęTůŮËx¤ ľőÍÝ˝ýƒĂP¤žÂúîç_~ůĺW’éCĄBËćçýfœ¤GďÎP˝™ęô7NNJ ńvŘníâč°UÇPĎŘĚPWNNXňLŕ /ßNfšŻkdˆĺŹľő;Pyg Žw`4ywBVqiIŮQ¨MΝ9VzřpŮńSđˊë•Ő$e¨oíxĐ78<öřŮäě›÷üé\ŘŇÄ:ĺ %úŒćÎbŢL2g3T`úW/F‡zî566VœţŚ4-ÔŰi‡§§ŠŠľľŠśŇfĽÍ"‚ü‚8bÄžŠ™ćk뛘[ŕ­öÜxíňőIËÍMĘMߛ”—˜‘űŐŠ3g *żtĺŰËç.\¸výŘÔZÚş{†ĆŸ<1óú݇OÄř ™TýEŻ`‚ţb!zZt źz1:؍Ă2ÓłöĽ'†zťęËŤ(Jnć_łNŠGH‡“AíššXçˇŢ4tśS˝ŤVÎqIřö„¤=!aáA{ Xíߗ™_ĹŐyźşëęĽK׎‘ËQjHŞßŐ7ôäéÔË×oŢ}Ŕ†ň/?“*…B˙jf†ń‡çŸmCĐďý™f€'’97;5>ԅ“'âbŁ#Âü]vhJp­ćĺYĹÎ.´f­¤?ĆŮľk8XX˜›ýę:ş†ĐŰŰoˇ˛qŘĺˇ?--535Ŕ'8Ä7$'!9+ó`Ń10úE<Čzĺúw×oáĺ(x.ďźz:9ó gW~@đ?˙ř#éŽď_żžĽ­Ďě)/žŔú%cܗüW/ś7Ô×_/NˆMˆđquő°5’ćcecçXžœW˜3ennîŐ+W0|54ľ M@î!)öNHIŽňôŢĺîâá闐’^XXRZVvńⷀţňĺk׿ťĚŠŠ­ô÷ű†^Lżžűá|ű ;#Lôä-73ŒíĂyďýŇúíV„÷3Łýˆţ|AŇŢřp;s=UŇG€$k ďZn.2Z˝t˝ŽžžĽ-řŹ[dÂŢ0g{;{p_ˇŕ˜ŘřřÄ})‡Ë@{Ę/^ää∪dźŤŽ ĐŒÎźĆ˙VGô?2ĐăkLˆő)ôϙď=ůěM?Ż/ËÁÁ‘Éá^ŹĘ˛Ň˘BœěőôäEšW­ şté ř898š88XɈ,ƒ9Úş[Mś[šŘ:xDÇ8ŰŰâs88îÜĺ Iž¤ŹÜ’cǏ@Ż˝z °“ƒŤÄöM-í÷Gžźy˙ŰżýúŰożţ b›@ú9ęU=/]ĺ瘘1߲DOĚÎ2ijb€$ ߔeĽDŘm×U•ŕXÎ0ň˛ŹŤŘ€E^.ě¨ijkëęšîđópđö´ąąĹËTśŰ;şűĹĹ'%'§ĺu´üd9řlEĹwßݢoGĄźśŤw|ňݏ˙Ňä?1Ňţ ˘CuŠh;Ë؎ šţä˘71ô†1Ź ‰ÂăţŽF@úhVZ„ˇĺ6ľM‚< šg˗ł@žĂĆş¸ĽŁŹąEwŤĽsdL¨ˇ=š‚Ňďrđđűłs ‹Ÿ8{îôً— E O‹Ü7ÜëčxúňÏţ9ÎţütŹe˘ÇќůˇŽ-˛Śgb^1'6ýÓąŢΆşşďN–eîv3ÓWÜŔÍžç˛ĺ+–ŻdcűŹ—)ŻŽ­§gęźÝŘt‡•¨'ÄŢö‘ŠŠé9yEÇN~{öŇĺK—Żßţţ.} žfK{wďĐřËן~ţ믿a‘nřŻ?SMA2+2Cż€íŗ/ŠŁ_ׂNKĄójúĹŁÜ7żxş87!ĚÉfŤ†¸ŔĘEčYYYÁô‹ŰČęšVŽŽn!ţXŸšŮXŕí(ŰśŮڇĥČĘ#;+ݜœ5Żźu“$7ŒÝ!Đvôô>{<9ýö㯿˙ýĎ˙ţ/˘'])2éÂ@˘ţüŖ§˜ƒŁ`Ď÷wă€ţÉĂRƒ<­Ě5•Ű~鲕`|ËEčÍ\|=ś›k¨+ʑůY]Sҡuܓ~ §ěŰx öVežž^¤-•áơ̂w?ý‚ľ!V'ż’]ówô 5řręĹÔü¤éŕIQr951Ö{żžŽć‘‚Ôx?kSMĹő< 9žlÉ ¨ŻŁw߼‘ÍŇrxţjłúVSCŁm–6Ná )Š_]šEŽÇW"çk™5´t÷‚ĺŸ˝€şô-é+üď?TmEIÎôřżOmŇý×ŘŔďnŠŻťZ^”›˝ŰĂĘt‹Š¨ë¨Ë–AˆZśœeé"ř^ڊx<ŽÁHËnRPRÝb`¸ÍŇŢ%"!9łôÄľ›<‘Ć!1źĽˇxôńċilúé÷?(ô?˙ôĂGŚí)љ™š˘…‡z[üźâ€ůg_>Ÿlm¨Ż+?š—ćăžĂbŤŞ”ׂΠü đ/g]ŒŢQSVFZb٤„¨¸„¤”ŒŒ’˛‰Ą‰šƒKxžŒ’ă7ÉŐ"ߝ!Ťąš:e5ţô˘űÓË?˙úű/¨Ęġ?ž_„žÚ‰ŁD~j!xŞ…AvfjrbŹ˙AcSCݑâĚ}Ńť=í,ľTdÄx8A —RdÁ/˖Ž`[ŒŢXQJB|ƒ¨˜0N‰‹IˆĘĘo11ľ´wHLH/=rů1=•ِ?­řę‡ţĄŃń'Ϟă|ŃÜ;œŒúĺ7ěÓĎŁ§ß-‡ ň‡ůĚŚÇŢ=Ž‚=ęîlnj¸Uœ‡ánŽöšJR˘kšXY–.cYŽç––ÂS,ga_ľ˜÷Ňx”XTXę.>^ąRʆ;Ý#2KK/^Ăcä đ M­mäţr|'55÷߸ů°çן?}d §ťÉ>ý~<|AŢbđŻçȋÝ0"?jknnŞ<›•ěćjgŠĄ(!ş†}†Ř•đƒ O˛ŹZľbńÄŃőB‚|ük ‹Ţ %ŻilžÓ32>1ˇěčů‹•• ÖăÝ,xÖçáđ˜;ŕřë5œţóo?Ţôäms‹ć¨_Î,ZłĚĂÔxĂÄPKkKӅłăĂ÷cSKAZœă+;ż€ĎÚľ\j‹Ž€°0žKä]ËËÂĹÍ˝NHLZQŰÔÔĹ3ÜŰÖÚr­Ź ubBD¨Ż§—ťĽ‚źœŒŘy%yqn¨§ Ҳ˛|_€›g->Ż ŻźšŽĄ…§Od\ZvÉą3çŻ^żCÝVŃŘJLOŢóóhŒL ż˜Ć÷ů}ŽJđÉé‡˙xÜ*ššíjż×rŽßn(XŘ9ŮWÁ.nQŠÍ[4Ě­Ý˝ƒĂS ž:zňÂĺjߓƒo;éĽßpEňNSŽű~úˇ ô”ý˙ťĺgڟOô㍯:’•˝ÇÓať‰‰žŠŚ‰ĺvs IžľÜ\kĄ*ÁĂĺ˜ß/â'<Ů*V,˝ÖđŠoTŐÔС°ńđ ‰K*,(9Z~—\_rŮI˝)‡:ăFÍÚPč™o*ţHއJˆO­…čńő‹Ÿ[~úœaź#ŚňňÉâô¸ ogSc]MiIyU5 ] 9<Úżjqvv,­VÍŕĂZ…čWłă§ÂÎÁ-°AFYÍŔÄÂÖÝ# 4!='ťĘ/\Ž ;ÍäUžÔކĄf’mWJ4qëěĂňoax]¸ˆĺ_žx>܇wÇU\(+Lˆňr°u°ŮfjŹ(.(.+ʤ%".,şÂĂ(ÚýźńYĄÔĺZÍĄ€…“_HB‚•Š•­‹ťo`TlZznёă§Ď]üޞßb‹—öwC¨}8„/# ’?3KU¸yöáĂťwóoýýýŤ?=ýlźˇłí^[őĽň’Ě˜`GHŃ­,ôT4TĽD7ŠJ*‰ á5(|<<ÜŕœđlŤPw˜S:,œœěř°Vqđ mVR×36ˇrrőö Ă٨ƒĹĽÇO=w‰\`ŢŘÜÚNtçá0CuŚČajÇřýűw̗˙2AÎ2-˙ú_,?őbtß Y}ýěWŮɑţś&:: RB˘’˛â¢ĺ%ĽÄpť–:éüĹR†ůW˛ąŽ iÄŇĺlŤy9 9Űś9:yř‡Ç'Śgć–â–çš›T¸mí¸ď)b¨˝óGď3Ţť<÷z!zÔÍŮĎ-ONÓLC-ŢÝzŻľęćĺă%’#}íĚľôdDđş !!qIHÂÄÖ ƒý0¤‚ő9ŮV.ceF\–ĺŒ`)—€°„´ź2Îý::şîňŠŽKNĹ19V~ćâĽëŕťMÍDyzđ5ź8Ćţ’Ť'˝ćKŁ˘§ŢL;;˙főyôS/Ć;[[[ŤŞ/œ9Z| %2h‡šś–Œ¸€—&/5…)¤?/vŇŘVŽd[ĹНyXÁÉč%qcWĎČÚÁÍÍ'0$<.azVnQŮ×'ϜżtšŞ–z ďýŽýĂ#čˇT7rAoƒůxł Ż*͛9Ú'HŔr°šĽúúšÓ_•dĽFť8Xkj@Ύ‡Żńş1) ‰ bâ6ˆ‹ŠŽăĺćäXĹĆÂĆňŘÔR–5<#KËlR„ ËÚŃ ŢŔ=xö'§°¸ě؉SgĎ{“źđă¨ČŁą‰gĚă<Żéíłˇs <–ŠW‹(ƒcô‹ßg^>noŽŤkŽŽźvî›ceŮŠĄîŽöֆzň˛2˛›äɝ 2Ľđ,źŤ€—{5˙JÖĎň%ËٸxřEDÄ7l”ÝŹŞk˛ĂŃs—_@X\"9‚rřŤă§@|ŞžŻÁ׆´ttőŕ¨ýîtf‰˝;Âf güLő, ţŮŮ˝őuľMŐUW.|s˛Ź`b¨Ÿ§ƒśŚŞ"¨ă\‚â&9YYY9ČŮD×ńpópâő˙ݎ3ńkúĚö?ÖŞuŠŐ˘ˆ ZD‘EYd ˛@"a k ŹIHH"Bd‘E@Ůъ€¸/XÁ÷vڙޙůÍ˝sďßoî?đ;çŔ€VëÖgfZĐ×k^ç<Ÿó,çŹ\ątá5Ż%_Ź^§o´q3L—Vűšű‡H‘ŃńəŮů|˙S­ŞďÇü—Ž›ˇ@^NhĐî™ß’|CŻu™Ůg‡Ń*íkŰYý˙çWn]‡L|x¨÷ě™ĆS•ĺyYIœđŁţÇÜíttptrt°ˇÝu­ŹwďÜśŐxĘu_­óŻ‚5WW,/YąjíWú7m2ŮjniľßńčąR8•ÍIÍČÎ)—TČUšĆ–΁o‰Teâęíűfž˙Ż÷ýźŕ5đ› ň—š`CÄüš\đď˙IĄżýůOo_úááŢî3uje Ÿ—ŔŠ ńts9„ęÝ\œńľ0vx°ľąÝˇ×rťé–M ž^ż´ÁR°˙r tÎ׆6m65űĆÂzż›—ph(#6!řs"Ią˘şţtŰY<ôĞ9×oÝHÍ?âúůYůĆmˆLm‡ćšĺjöŐĄ„~úáᵉëcCĂ˝]gëT•âě “ęëéćęísÔŰÓËĂÝݙx€ę`ooťgç,É´ŃKx­ÇŇ:Ťżřâń—­XľúŤuëô Lś˜˝‹ÇąŔp*•‡7ň„"™źśŽšől#Äţ˝ŠŻľ+ÖťDŔ_˙:˙>u^ćhsÄ˙÷żţđâîőą‰ CCÝí­őľ•Šb/Ă yń8Š•ŠÂ'ŔžPÎÎNř”Óv÷N °>ŹÚ˛FűWŽÔľý <Đ]o`°ÁČtŰ.kGg/˙ăÁaQÔÄÔ||M nhlm?{n &ď•[“O_ýđƒöv"/X‹´hËËšLě?˙ţˇżź~ЉřčĺÁÁ3Mš*E™T˜™Âڇůyů†‚|ąźóQoOĎ#đ\œöYYZBkŠ%ą A;@N˛FÇń?ük×­_o€5áś[;¸yöó đ"……hŠÂb u§›Ű::@9ŒŽÝźóř9ńj _"ͅFts­,~‡˛ÇNĂ˙ăż˙ëo~ţčöU˘–Óđ™ćÚ*yŠTÉe‚ü‚)¤@ĐÇXűŰ×ÇËŰ ‹O;;ٰśśÜąm+^éc€ĎĚu7ۖ,ëůŐşőĆŕ<űlöŰőřř„„‡Çr˛2|GSßÔzćLŕ_ż9 ž7äˆ'¨ÄÔ%\ć—2Âż§˙/œţňÓĚÔő ˘ŇĹśćÚJYąD”•ˆ˘’‚ƒČQáÁžDĺr_˘\Ö[÷p;ä`kc˝‹fBŞťyäㆠBţŇϗĘ‡Ékddş}—Ő>{—Cîn^^ǎ łSxEĽUŞuĂéććösĂ#ăw^ź"^˝Í'ĚEÝ흍żţ¤˙ç?˙ßýüýÔ]˘]ÎČȡg[5UeĹĹb~fb•L&Ó‘a>GĹ[ő~ţ>G˝Ü]œí칲´Ŕš“ć°řš,\˛>[˛lĹĘ/Všv˝éS3k›ý6vN.GŔý|ƒÉtzˇ@(WŞję[Ú{.ŽŽßş÷äÎO:GÇo[\wę/H˙˙çţďţř|R[5üňČhW{]u™T*ÎĎNŽŁEEŃôȰĐ`œˇ~ǃ‚‚Žůxy¸ś?°Ďz—ĹŹÓ bűVcŁĹzá3ÜőYžÖŔČŔĐČ ąÚ:şşCčňő§1OÄgWTŠ4u ŘőŞo=z I–önčě3ěy›—ŒˆýżŸžű{Ü9üç˙üó˙Ëűwn ńGG.wŸmTW”bšŘ léCcĐŁ¨!$<ƒňó |żŁ.Nř՚¨ńźkçömf†o]Ťű/ůlžţz}Ă-Űń†é;×#G<ýBČ̸4ž¸XQYŤŠŻŃÜvqdâƃG¸1…ů#Úz˙égbďg†ś4Ęż˙ŢiřÇß˙řz ëÍ_ť2zérOGKź\G˜›ÇfĹąbNDG†a׍АP,ńď{ôˆËA‡śX”Ô&€ĺÎݖ› őŢ9@-Ż×ßhlşÝ¡ő]܎xz…3âxy’|ŔWWWßĐŇ1tůÚíŠÇ¸ĽŠ‹ŻutÝS‡?;Ξ{mňĎ˙ůÇüřrjňöí×Ć/ u´5ԗIĹE"a/+=+5+™DQ)á¤`!ÁAÁXÁ_ĺ98ŕ:;›=6@Íô~iŹ^šÁlťĹn›ÎΞ^>Á$;_$­PŞÔjÍŠúŚśţ‘Ť7îO?Çíä?-pt°ôŸŢu\EźĆlj˙řďŸ˜yx˙ţÍëWFGFĎľ×ŤŞŤĘ¤EERqanZ2‡MŚF„byy˜ľ~ţřžçx 6sÂ*ŕηělw˜›lި÷ËcŃłí–V{÷Űvuw÷ń §ąRłbźćU­RŸjlžtĺú˝3Ď^CĐ˙ˇůŠůóŸţ¤{\˘s`5÷ÖSČżýůű珦ďŕKŤË]mšJśź r3Ó¸I@OÄęňÁAŕýţţţX'Ÿčâ čČa óÍ ßCŻ÷Ů:c3 +[űƒNXYÂ/ (":•‡•E'+Ťj4őÝCَî?žyů=Qĺgí'XpRőӛłÎ٧>Պä˙돯Ÿ>š÷úřČĺžVMuqv˛äó33Ҹń'b˘ŃoBCIŘ …xČł78ř8|ţî.öű,ˇmŮh¤÷ţąĆpÇŢvއÜÜ˝}ŽůErŇrbIi…ňduÍŠşÖŢKcWoO?~ţЏÜ:ťIŻKOTŢűI÷ŘĄE˙úÓ/žMßżymld´˝žşD”_ËĎäefpš q4*…B ÂŕO ‡bŤpl´ŕ žÇV–f&˘×ÓűÚĚzŻ­#žĘňń §s˛óBIIy…˘RŁijž4zmršúłĺu˝F{Ć˙ăs'ü?ϭɄŞřů§×/žLß˝1>2zžA%“ňór‰žŻ) ń 5ô x;8MGŇ1 j$–bř:<œmŹ,ĚM>Hݎ|ÓV+ÂţîG|Hô،ěÂÂ"i‰ŹBQSŰĐ<|áŇčÍ{f^ϗfÔuőšŤ9‹Ź?;ţü§^?ŸypďęčĺŃfB&dedd¤¤sӒăt %<,ŰƒĹ7†‡Ő4é”ČđĐĐŕ@—Cv{vlßňaz˝ĎÖl0ľ´Âű ţ:›››/Ä~ěĺUjÍéösFŻCÔ|ńZ{˙cĄËĎÝmůqÎ}ţ477´ă§?źzńčťëc—GۚŞäRINV7FR2'ŽIBOĽŇŮ'8ńI‰‰ śś™mˆżç‘Ăö`}˝_5–~˝qˇ-¨ϐHv|fv[J)ŞŐu­ƒ—'nܛ~ţJˇÜŰBË/źőł6 j—á?ţđęÉÔ퉑ѾVuĽŹDĂKO挤¤Ľ§ĽĆ1Ł"ÂÃIT0{b2‹ĽĆǟŔfź”°`O,mˇKď×Cł;ě]BčąIéü<ĄX"­€™ŰŘŇ;4z„ţ‹Ń˙ôÖłţ?ţ4żrˆ¸˙áőĚî+ŒvÔŤdĽ˘ÂÜěôÔ´ŒĚěěŹ .‹ q‡L‹ăr“ăă“Ŕřń'Ř11Ěh*HĐŁn‡!w˙ŐôzŤL,öxúFĐ⚐¨ťlŐőÍ 5ÇŽÝ~Dýwş.żÎâŤ-ńŹY÷nŽ_8}J) `Ţfńsqdgg$c; x€Ç˘2qœřąLĐĐ´(rh€ˇť3d‹zŻoşÝîH™ÁJÍČÉ/—É•šĆ3ƒGŽ\đôÂOoŽłźeůŮ׊œżcôÓOÚďçů“űw& Íoi¨TBĚĎĎÍĹö×yůš|~Öl÷ŕL3†ÍŠa˛bąŁBçq?Ż#NŽNAݎl•éNPk°äŚă>ƒTVŚĐœîž4vĺĆÔBîüQ{•kĺç§ţ4W߂řxłżţđbfňâ7jĺbaa>śb_ř°ł‡MŁR)˙ŠT“F ‹:ŕăéîţ1ôK–˜p b$p3xůůb<ŞSgžŸ€ ý%îh úăŰđDÇçkChüůőówŃó›5Ę2‰ 0_T$Š‹€ż  ?7+=) ‰t<”ę™L"‘Ă#)úűúč}ÔřŇpˇŁ_™Â`§ór D€_ŠnjžxitüÎwO_~˙‡EV_ôB[7˝ůńŐsXpŻ\íi8)ˆą°¨H")"šxfĽ'r _ÉčďLe2˘Éá6 ÇóGż|ŮžŁ~a‘Ń n?ˇ°¨¸X^ÝĐÔ}ńŇř­É'ωŠ:?ž‹}ţ݃n•ˆŮ_żń¸Î`L(’ˆĹâR°ƒďäAřcD†ÓĂ1S ˘a÷ě(Čé v&ýŇF–î>ǃ˘˜'3A3ˆĽ2…şĺL÷đčľ[Ó3XĘčíÉşŕńŔo?źšy|ďćřNŁű}Ëʰ“W~^[a1iádr€ďącžÇƒcY´¨h0|,›kŚŔÇŃ/YşnŤł§o05ŠÉJĺńóbE ȝ3ƒßŽ]˝7ž˙ĂŰôo˝;Y4žšp/34Š”ĺĘňR‘HPˆóÖ§$%œyÖů‡ĂRE§s°° 5**4Pď#˙ľÉA—Ŕ˜@ąX¨F(P)”¸?Ři –Źç éßńźyáŤáŮbóϟ>~p}ô¨ZŐ¨)-.ćeaMŽÄÄt ýÄń@˙ `2•Çf0™l‡EĽĆR!o÷úHzüűýńe 3)5+;ŻPVTqRÓĐÜsqôę]đ|]üw˝Íţţ­?€?yůüÉă;7ŽŽŽśˇiŞ+JĽ"˜ŻŠ)XÍ(†Ćˆc’# bFÇ$Ĺ'°Y츸x“KĂňK˙…ĄŐĄcX°ƒĎMËä ŠÄĽŞSMÍ.O\ŸzüúőüĹŻƒ_ë<7Ôţ<÷'Ż_<Љ!†šŐUŠ iQ>O;ŹŔˆ>‘€Ú-%))“k‡ĹbÇDăáÇzʍVŽžÇĂ)Q4VbjôŚXVĽn8 açęÝĎ_žąţ/Ńż^4ŕ^˝xţřÁm|â9TsRQ.)ĘĎËÎLMŠe2™Üv|JZ)•K4çÄƲŔô.‡üHúMö8úâłó¸xnj?/ŻHŞ¨Ź­kż îG3‹čż‹÷űׯ^˝ZĚ˙úőĚĂÉŰ€ßŰ(// Ŕw28'9ŠÜDnZZVVVfz*'Oć&Ľœ`E‘‚<œ´˙XĎYoş×Ń?$f-+›š–™—/WČUľ-ąAŃ×ßëTĚY OpżzőR‹?Ű]Dű7/fŚ&oŕ’;Ş‚˝X"Ćś"™<ěüŠ46T#ĘŰă~ %Ü×ÍÉŃŢî#é—|adnďA ‡Œƒ%†@‰€ď”ÉŤkO7{ĺĆíé'/ç+Î,Ś×6ByőZŰ ĺM[äőňéăŠIČqżˇ^./++‘ PŤń˛srrss˛sňr˛˛ł°•IJ|,ƒäďćň!zꀎđpnÉ CóCĄdŹ`ŸÄM+̆¸#’”*ŞNՍ]ť…Y–NTŸ§Ÿ§}ÇĐţÍәGSwo_Cď­ŞRČ+d9Ĺ"A^~??/?/>CV(h~B| Źžއ]ß ˙Ůg‹Oő–­ßâčMÇNĐüŹ ˆ;…‚"idšĂ#7ż{řL˙űô/ß;ž?ŸyôÝä-Œ<ŁmŐ؆ŹT*“JŠ`ŐÍÉ\XXŇ!ţLJ‰Ě¤€Hóz˙ĘúůňˇÎu×;y„FҘźxń‰0qłr „EĽe•Ő._ż?5óěŐëšUižţCč/_źxţüé“éwo]íW+e2I‘¤¨0/´räř>=5žÍˆ˘P#CČď§_śbĹĘE%Ömrr!…Ó!šąOāó¤gd犤ŠUÇŔ؍ť÷a ‹ůž-Zú7đD÷"m #rřd÷áôý{H?ډž#+–ŠÁw„|.%B‘P ĚĎÍLKN€T…NŠ}ŻăŕkŐŤV.Ŕ˙ÚÔň+_fąNp¸Œq—AŽnm ÎľRx‹ţ…îXô+A˙řtž˛2YŠ´¸4§DŃĂż?ŠH;ńXc‡“đ>úϗüš•_,(Ao´ÍÁ3*<44‚BŁ1˜ěX,0•Ĺ/Ë[Î [žžzĽÓńgŢq^źwŕƒÝ'jsô.™bl}(’`Aś×Ɉ̟ŸĂĂrvęrŢť°~Ç@ŤVŻÖ1ţRCso˙@˙€ŕPrNc°9‰Éišů˘busďˇč;Ÿ<ůj( čÓ>Ÿ˙á9ńg3Ř/—ÜËŁíbœ¤ĄŠĽŕ?…8us„B /*,ĚËNOILŔćÉ´÷F̕Ť°ÚŃÚ/u^Ź4ŮuŘ×Ë×ŰŰ˙X`0¤šx—!!‰ËË.Ȕ­ÝCxƒáŃÓç/_ΉšˇL˙üÍĐýmŻĽ?-ŕggef€ˆ%Ň"ČśŠÄL\°CS.Ţ8eąY‘äĐ÷ë‚Ux‚¸îŤóŻ–­5ˇvńuӖ:ňšFcĆrRŇsň%˛ĘS#7ď<˜ÂÚě/_/°üťŕuÇłgýŁé;WÇG‡4E…ľľłľ=`gŘĹ?”řńéü\Š ÄćŮKcřřöáĚó…ô‹ŮŸÎÂĎĚÁ#ýôÔý[×GG.śT* čKÄÂüěäx6›Ą!-r].¤'q BI>ď§×[ľÖŔČŘxóf“M[śoŮdźĹ|÷[˘‰Ší>[›˝{öٰ;č|,„MĽÇĽbEĐʚƖĄŃą‰›wîòĽľsŚ_hut—9Ÿ…'l?őŕöMpÁÚŞrYI)ś‹ŢřqI°(B ÂÎąL•zÜĎűCô_o61ٲĹÔtŤůVłí–XîĹv?QŢgMtEÜçŕęHĄŔ˛Ĺĺĺ€`¨>ŐŘyqt ť=œyőZ×qş A˙T×ňóô×ńüżĄVQQ^&)ĘăC:žČ…oäqFZŃP-",ÄĎ×ËýCś×70Ú´ĹÔĚÔÔÜ|›ĺë˝ÖÖ`qm\ě­l…đ|ĂAtƧdĺ@˘rRÝĐŢűíčÄľ;÷ŚżÔ•8 Âăü˜‡Ÿ´§Śn_ĂÖŤÍuUJšźD‚ť#)AŁÂ̆pś§S#‚>H˙śˆ02ٲŐ|Ű6óíŰwďܽ۹­­Źvă;-+Ť=v.ŢXü<6›+ŁLĄŽo鞌ö€Řůřgď‚ךţŃ#pü;¸šsy°ąŚRŠ,+…Ÿ›“[  óxÜdâř'"4+–~hçoŐjƒ ›ť™~óĺNřť,wíÚiŠíjˇÇĆŢÍË7A‹‰OA(ƒˇĽkř2vżúnęÉÓ7jň]đ3 ŕg駉Ć—Gű45ʓ(ň…jËç§§'&°Q܇‡âŃó÷]WŽ7ÜźĹlŰ7€ožŐÂÂb‡ĽĹÎ;śďŔJN6ű88yxó#‘éŽ úŠ*ukßőËô'űƒ‡\=˝Žy‡E0ى$ć KK•ŞŚÁáÁoÇŽc÷ŽÇOŸ=_LŻkw,Aő†]K?őŕţ›ř¨ąĽA]I´ŠKŠKKEů<€głh´ČđĐŕ€cGý˛U_"ý6˘ĽěV3S3ä'úďŘkăŕčzÄë˜ )’Ĺ!:đ—Vœ<Ó×Ő3đí8žÁ~řĎuéŸézÍb˛ęŔĎŇßť}ÄM5äX%RiIŠŹT ń†M˘ąPď1˘ď=gľž‘ń3ŔǞŹ[Í0všmEÚąkĎ>űƒŽîž~ 5ŁŮ )i™ŮyŠRŐŢŢÜŢ=tiôú-ě#…jŕŮ;Ś,ÂŻ\ ˙†ţ.ś h¨­T”ÉJŠËĘJĽůYÉńąt ™čďçăuô¨ßwpVŽ5ÚhbşuëVʰcó&cXľŕ řfçnŹFĺćá@˘0YIŠéŮ9y…eUí]ęÚŚÖށĄŃŤ„ó`Ą gďŚÇNAsvŸsœééŠďŔř×pGżŻN]АIeĺe2QAFj\,ś đńAËűřúxj•ÁFS3sss0ꉉÉ捆x]v;6D´ąwt%Ţy°8IŠiiYŮ9ůUšÎş“ŐőÍXtt_zľíž˝ËqŢ„ˇčď;;uę*…ʤÜG˜ËKc1ČáÁţLjĆDŢÇ‚~ĹţŮzźZřDâÍ z6m2Ůbž‚ý>{Gg?˙p¤‡ü–ÇăçVÔ՞T*kë›[:!QÄŰî؅ –U]UŚÄ:AÇqڧŔu&AŞý`,¸%ĹňŠRiaNz 3 OŤü|}ˆJQ!żęœ{e™š™aĺ-„l؂­4­Źl°=‰ťo™Ÿ” émfVv˛T$STŠšĎŕÔĹFÚD‘§OŸ=[ *‰nňZďсŸ§ż…Ž?\WŁ”•ČŔöłźÔ&NB‚ĂÍćĺp•ÍÄtĹ˙ÂfŘĹÝŇĘÚÖÎ鰛‡ĎqJt,îj}^˘Q(ŔJžXx§{đŇřŘŘ՛ŕ=3:ü áX~–ţťIíŽÚ`­ŞB!—+2QaFň‰*9$äx`pp°śtóŻÚz5@ŠFŕ›AŕÁ´ŸĄď;ňŘÓ;˜DÁfˆHŸž™_-.ˆĽ•*Mcsgw˙ČŘŘŘźŹ˙DK?ëůÚHżŔňsŚGz0>ЏuŤŤ+ĘJeĽ˛L"ĘNKćőÁŠdR‰óŤvŽ×A~BřžŮÖŮ>▻°–ŚĂA—#^ž!Ą˛ă¸ŠŠéŮqn>ŕ—V`uÁ斞ĄKc —ŻÝÁůtVĎĚčĚŘEđ„égéák;ŤV)ä•ʪ꓊bq~vjr\Ög§ÍGŁqżŠ~ĽžŃ'V*;vX‚ámńđő ‹˘łX ÉŠŠLĽ3bYXň?[œžž…ô…ŠLQ][ÎÓwޟhžOe}öFăčDËG čďÜúî†ÚşĆ: |•<w`9,:•IŽÄ„čWž™`š˛ 厅ĽĺΝVŕ7ö‡ťaő^v€‹‰es2“ł°cxV6xž<_Y­Ş­?×Ú~Ž{­cňŃŔńMź_ pxú{ˇ°™VScSóézFSS)/!|'!ŽIÇ~ÇHĎú•ÇU+Ö|m¸q“‰éśoˆęŹ0e°îÎHLH‘”h;.5>›ĽcÍŁü|ĄHZ"ŻRŠ;ę›ZŰĎ00W|4Ł“žM?=Oň6V2:×ÔÚŇÜPwŞNŁ’Ë¤˘źœĚ ;†IŚPą\öŻż_a o‚gťĹn+;űCN^>ŕ:$RÁˆĹfIÜěœ r'_(––Ş?UWWo%ş/á#­[0uŃőŸ=śˆţŃ;čďÜź2>>tśšľĽĄĄŽžśş˘T,Ěĺggŕa3ƒF§C.ýŤéő>˙ę+ƒ ĆŘ*ÜĘzďýG<\\ůř…‚ FÓcń,";&ŁóäbPyš˘Ş§nSËŮ>ěVsőúÉ‡OfwŢ$âoč§g'íƒűýÄřřĹłmgZ›šęęTĘRŠ0Ór›Ař菢×[˝f=¸>6:ˇBÇAĎ9âƒú‰v 1qěřř´~ZfňĐŇĘR™˛˛şZ­ŽolîÂUkâúíÓ3 üţąýôBú[×ĆÇ/tu€ë4ŐŐVʋŅ9YźÔ$¤˘R(‘ď=;YčůăŽýzÓfóí;v‚<;pŔÁŃŮŐÓÇÇKô‘#¨QLö 6^Ýăr32łůů9¤sĺrĺÉŞ*°˙éî ŘPplôîăwĂĎúÍÇšwVŰńńńŽ–––&đúR!Ŕ§§$ÄÇąŔöQ˜ˇ4îǜň݆5×Äl;äć8o!č8c_߀ăŔ͈aüŠ6󊥸–źŞŞFsęLď%˘)Ü˝éżYlyz°ýő ‚žšĺtM•LZ›•Ž; ąt:EĽRXźź—fqgë7;v‚ű€÷rvq=â iB`PhXxdč ’—](ËË`“,U•ęÚĆ3#ă“S3‹M˙ĆégáПmijnT,âUͤ„,& ȁ=*š›˙‘—,žřÚpó–­Ű-ž‰šgżÝÁCNبĆÓ×YP¨ŃŃĚظ¸Hq ¤y¸Té4h•şžšoxäꕉÉG‹éuâ͜éŘžů4Đ+%~ř<„Kđ ˜>ŠÎä >ň¤DVz wێÝ{möcą8g7w/o˙€ŕR…Âü„¤ô 1?7/?_P$––”ČŞT§ÚZ;‡GŻ_˝Eňxş(ZęÂĎŮüţ*ú}{SCccľ˛¤ˆŸ™’Çf2ÔH 5*šĆâć ő>zŹ\ła#$ˇ&Ű, öě?`ç`çäâćéí×äĂÂ)ĚVf??“Ÿ›ĂĎAçÁĆ|ľšÚŚóĂrîjafĄéĂkéoß$َ564ÖW+JÄ9źÔdź‡ *Œ-RăŇ DOżä󵆆ú†FŚŚ¸Ł+×~{lá…Ń'4’Îd˛aŢfdň˛łÁţâŇň ĹÉęšÚúŽoŻŢĖ |lżúäíxŁë9°Z}KŹyŐ'KDZzźĘ‹ń†ĘLĺ $z˙‹ńٲ5_Ž306ýf§ľŐž={AnÚ;t8ä@ %Sčą É(0Içj;ŹŠÔ§N÷]žv”ŇĎîâ,öúŠ9ǙĽ'lß\ꔦúdą8›ÇMŒcH€IÁLŕç‹ţWôŔż|ĹZýÍü-!ř`ř´;°ßĆí¨_H`)2†Ÿ”šš–’™]ŤĽ תŞ5šŽž‘ ,Ú4‹żX\>Ôq\Ź˙Ţ-¤omŽÓ¨ŤeâÂ̔8ˆő´hÂřQ\žPňż¤Çéťň+ĐmČOlČîąŢ˝Ç1ĐÇ×78”ÂŔ⊐'˘Ř”–*ŞT-m}ÇŻN>˜&č/ őşËŹÖôž*sź˝ĽASS-—‰ŮiœdŹTŘjžBKË˙ ôzK–­ZoüŰ̡ZXîŘišĂÂ逃ťw@PxDĚ pýÔLň”™şžJŐÔuao ýŁÇşŐ;čľđuŽ]AúşZUU…L,äg&łb°ĘR@“ł3 ţ%zâ4Z_Ł1d-Ű-, ×uÜgcďę}ôx0…ƉOLLMËâ+*‹‹ŞTő-=—Ž\ŸÄYŤKŻă6Ó:NŻĽż‹ˇÇϜ†ěPYV"äfqăYąT )<2’ÎĘʓK˙%z˝%ŤVŻ[o¸q‹)|„o\öYîł;pŘÝë()’ŽeÄÓ˛óňŠ@T­n웸~wR—ţŃŁwŔ/ Ç†ĹÍľŐŠŠb‰@ȉ–ÄaĐBCI$*+#ˇ´¸Xď_+ÖŹÓß ojaceśÍÜÂ怃˝˝çń ->gffvŽP\]ŰŇyń Ś'ýŁEđ M?Géa˝ęŹŻU–KŠ …üěĚ n<“A '…Ób3 ˤ♏WVŹŢf¸~˝ń–M†;vÚîˇsô ŠaŁÜOKçńE%Ő§Z{Ć&nÜÂ;H?7ް/ˆ–óôˇn€VkŽS,+‚ĐÉĘJKŠeŃéäHƉœâri‘Ţż>–.[cd‚ę׎Zidžs§íAĎcáQĚXNŢo1֭ظ|ĺŞ0ŕŘş×ÎŐ+˛EÖ NbJ/G\ZĽ>Ű?6q{ňţ}-=ň?|‹}n™ŐĄż…ô]íőjˆ:HkÓS¸\;™“^,/ ô~›a€ľC—-]öĺWú&–űŽ‘É4:‹ĎMÍĚJ•U­]—&nÝĂÎ^ÓŽ7đ:ν;@1sl „ZmR^*)€¤<Ň˙ô´ŹœŠ“BŃoCżRoý˝Ď°$Řzýő&;üÝÜ=C‚Â"bŘnFVž¨LĄi"ŽĎ§áO/„ čoôg›jUJL r ąMçeçäKŤJĂßĆs–ę÷>[˛tÍÓÝnţv6]źŽú€f㤌ńóĒŞćîKx’‚ôsüÓÓÓ \~N#hýéoÝźŠôçZO՞TČ$EE‚\~€-S–I‹D˘ßČsôfŻ}n´ÝÍeďkPn‡{ ŚĹ&ĽđřqU=čœkˇî<˜ĂŸ^?ľž ÇY{ˇ¤:ښ›4——”HĹ‚ŇZľ˘˛RZ,Iő~ŰąÎŢa›‰‰Év3óű÷Ů{yRqœÔŒœ‚âʎţąą‰k÷hÍ˙ř73vč ۡˇ6×ăá§L*‘ˆĹj ¤ eř6衼_i¸ËlýňĺëżŢhdźyťĹÇcÁą1'’ŇłUËĐV`x0őNv]řÉYx-ýhg{[k}]UĽ˛ŹT*•Ş›UUŐĺĹeĹe2Ůo ˙•ą…ůjÜô\˝vÝşM›Œ6›lˇ:HŚ3Y iš…Ľľ-ĂŁŁ×oOÎYjjŃ|œ„Óßž}ëÖÍ×ĆÇFGĎwśľ65¨Ť!j––Čš›ŤËäňŠ …R^ńÂfźuóúٺ˿řjíš/őMííB"Ă#c’2’ę†áQÜO›Z0ްߝGnsűÖ͛7Ž_ťŠôý=ŕů 4ŤËdꌌZšR O•B”÷Z~ÆŐ:űž8@B›Úx{ű‡1c’˛ ‹+[/Ž]ŐΊų•đbÜšƒąňĆőëŘ éűťÎś6ŞURÖv´iNV*+•jU™ˆÇýíčő×,”Ÿx {ĺŁműíý˘Ńąl.OTŞéş8víƝÉtŮż#&ęŮqýý&˘_€ĚvěňĺĄÁó](óŤÚĎś5WŞNV)%9ŮéÉżßŹx§ZšaëžŔHż Źďy˘ęşóß^™¸qűţwłń]Ť)'çÇÍ[Ȏ­ĹŻ <Đő÷œkkĐÔ6íhŇ45ŐŤ•üó˛2’~3ú/)޲×ĎĂĂ>Ěád ˕-]CcWoܛź˙ÝwřwßMޛœ›¤7Ń×aű•+¸™ƒ[Ÿ##ĂÃ}gĎtë¨WŠŤĺ'ĺĽEšź”ߌ~Ĺ/%0ú;wŰď;âOO–Éję‡ Á˝}řgăă]Â[0Ŕ€ˇ ťŒO;ž:x=Đ_ěéęééîjnPČËË*ĺ:Ex˘÷ťýŰLÍ­í=Âə2™RÝŃóíU,´99/ĹĐ]nܘwtHĹÇćĆččeÂöƒ˝˝mgk+äeeee2Џ 7#ů÷§˙zĂŞ5[śíßëÉI)”Škť!n‚fĐÎP Œ7fă Ú|zŽé/ _ č{şZ5-°féËKA.g§sz˝Ď?[śzŁéÎýÇȉÜ,ŠúԙžĄKX’¸ą÷üľk„Ă ÝÇľŕDąô1mÝńËŘ0ŕÂđĐŕ@_{$čőľęęj|Q#ĚĎNűś×nýejv$”ÇM•–ÖľžÁb ÇŻL̍q$óđZú ×úϡˇœV+Ťë•ľŞ“ňň›éIŸ†^oٗfÇhąąœŒŹňşśóđ mMĚĎqŒ0ZŢËŁ †śYŕ_ştžŁąąŞBQY­ŞV”— ˛S8Ÿˆ^o…ńV[7r#6•'’Őwô^őlb–†hn ín0k÷Ëłđ}OgS}yš\ŽŹÂ‹‚Ĺ‚źôÄOFݎVßÖé8‰F9Ái:‡˜x.şhŰJźs]>pôžo­Ż(qęL&-Ę/HKLřdô+7Ú8xDRʌürUw˙ˇX"zž•ţ<˘3.Ď˙6i łľś˘\&))+ćeń3XŸŒ~ľÁf3Gżp2•™Ě*šşű/,—GŢ=ćé{Zj”ĺ‚|aišŹD,ĚN9Áć~2z˝Ľˇ:y‡˘ÉibqMSçĐE-ŐČűÇúŽ–šrIf&/O˜WX—‘E˙dđËőwZťz“hą i…ŇňŞöŽž‹ą'Ă>ÁúîfUEaNr;.9)5K ůtś_žu§G ) Ňô|‘ŹBÓÜ3ەa~ź…˝€žżłYĽČMçÄ0YqlމýŘj˙Ň~óŚínÇâX‰\~ž¸DyŞľghhpphčÂĐüK ‡î¤í9Ű\­ĺĆ3ŕŰKbDQ#IÁŸŽ~…™ľ§X#.%- űfU5œů{­}pôuˇ7×Č%âzTtBJ!‡ů2řĎ֚y„Piąqqœä~ž´B­ŞŤ;ŰŰß7;~˝ôwwžkŠSČY,ÜdaEQɤOGżb‹u ÉÇ?<ę'%_ -ŤVŐÖśôôőô h[Âźgôž?ׁ5jÄů ąl8™úŠÉŹ]ˇŢ`ÓkŻP›AĄFed‰„‚"…R^^Ľjjm;wŽólď,ý…áá oäÂqžłľŠ^S )!žoÎÍNăPCźÝ?üú]śűœ)œ~.ÖÖ(­ îÚŐ76ÖŐľi'Ú<öőôCĂZ÷Yř úúÎáNf˛B"Éăó2¸Ią‘އxĂoźBĂ9I)™<^şPTZ\*)–â ÷ş†ćć–Yúóؓxń‡ŔúŘ5ń[ݏ0Řs#NueYŠD”Ë‹cą8r€Ÿťë=°ĘÔbˇ#A#SĂŠĚđp/Ďáp3„˛˛ş†ÓM­@Žë|ooŸÖs†° ŢŹűĎ~€o/;igš4Äą§ /'ƒÍfĐÉ!>żoFbşm×~—ŕ —ƒNGź<ýüƒÉLÉILĎ*-ŻŹojniEúžžžţ FvP HŻýDăÍţţžÎŽśŚĆÚĘr™X˜——™–G§ƒÜěöüŽôkŹ­ěÝ#ěÚldşŐÂĘÁŃ+ Œ—Äĺń…2Ucssk[ÇšNÄ'Ś-ŔĂżąz‘vöuuvt´ˇ6Ô)˰bo›Äa‘ÂŽş:`ý;˛/ŮđÍ7űšŰš-_ślž‰…•›oŇ'gňr Ťj›NýYt¤­64@ˆś!í'Ŕ1ÔňŹč5uU2‘ ŸŃ>6&,ĐÇí íÎßÓôk9ť:;ŰYďŮ@ÔcXľÖl§ŤWh$ƒ "ł ˇ°\ÓĐÜŇ~śă\7|@žnr™0˙ĐěčîîlďčhiPžTI ółłŇS㙴ˆ`_O§ý;~Ď)kźó›-Mˇnß<7 Œ- !3Ů)iů˘ââ“ő§›ÚŰ;ÎvvƒŇĈ30Đ×?؋Ý7‰0Đ×ÓÝŮqölťF).RĽźRA&0˘IÇ}\°řÝؗŽü‚(˝łjݗł%x–ŽŮž×ُÉ`Ľp3ł%5*ÍŠ‚žˇ§ˇLnôř öő ô÷áÖëšsç:äâ‚‘ŕӒŘą4jp€§›Ý. ˝O7Ön0łvö Ą%Ć'ssňĹĽrEş<çě9š˝˝8ezzˆšÔswľźľEĽ*äedć 3ÓńQ| =’äďîhłŰěćľŰźý#™zlZ6/ŻTŚPVŤ`ÖvÂŹíďďčA›÷wŸďď‡/ żˇˇœ¨ťEZVy˛\’™)M.Ŕ'°Ů4*)Ôß×Ĺv§Ů†OHżďŁw€ŸŸ#!9ƒ'*UœTŠšÎ´ŁéűzÁOúщ€˝żŻ§\¨ŻŠ˘¤X*Ś%Ĺ%fdfBbˈŠ >îëĺtŔÜtÝ'ôœ-FĆ;šú‹dħf劤•Ujˆ:m@ß V† ŰŰßŰÝÓMxĚůî>LYΪˁ^,$Ç3YÉÜô¤8äçéfłoŰŚ•Ÿ~钵Ć{üƒH̄”Źě‚"yUm}c3,WÝhď>p—žžžóđËůN˜ß׎./+fÁ\bĹ%r81QXĚŮ÷ČaŤmŚúzŸt,ס8čćN‹ƒô¤@Tڍmhji™†ć&>A_ďůn0‰Ń{zZ4ľň ‰8#%9™AgŸˆ‹cĐ#Â}˝Ý]­v|ńiéőVlü怣o$=rC‰L^ŠiDĽÓŘ1ěô‚ń{ˆ¨ ąŽV}R!á'%Ľs##Yą,&•pÔĂŐŢĘbëŚŸ˜2\3;g2-.)ƒ_Ş‘+QęŔźíęę—‡Ť5˝–Q]}MMuľ0=•ËŠ%…‘ĂŠ,šť:í2YˇvÝ矚~šąľ˝wśÍ*ŤŤo¨ŻohlŠZ§Ťťűüy„?˙9ßÓÝÝŰßWŤŽŠQ–äđ¸É JXh8™J%“źÝœXo3Y˝üSĂë}nhfcďéOeńräu04Ř}¤šľ˝˝˝íwvwváčěî:×ŰÓ×§RŐ¨JEÜřĸȰ°`Rx94ŘĎÝŃŢÚr‹ÁĘ%Ÿœ^OßĚŇĆç8…•–UV{ŞN]Ľ†ÂԅŃމНđŻs0şĐ{ŞŞŞB~j'. ;„†…zšŮí61×^éř˙C°řŔ endstream endobj 10 0 obj 35233 endobj 14 0 obj << /Length 15 0 R /N 1 /Alternate /DeviceGray /Filter /FlateDecode >> stream xڕSMkQ˝3V܄*˘Ľtő–E’0~,Źť˜¤iŇcš˘AǙ—dšůňÍ$šĐU7nDťn@—.şpQčFQ(Ő_ŕ˘~€(t)ž™‰ÉŘ*ę…÷ޙűν÷Üű˘ąuŐuM™Yś/ ŐLýjý;ň†d§ÁTÍs3•ĘB€mÇćtŔöޒœŰŠ ýŸÖš§á|ĺÜń]ŸHR€O´kŐ,px\sEŕŻĎéžf?!:t|Řɡš04VjU„Ó0̸ֿÝ˙“ł‰ĐˇËaĎŇÄK­#şƒkIzEäóť~đ‘uܞ0š-Ÿž™9ĎR쌢œeLˆłŹcšŸ V´ľt’ŠŚÉBŞÇ÷¸čr=M–ŮůŮŰQʎ—qNɸ—`ÉŐŐÜ<đ9ř'tžË_€łáÓX› 1ť„óüĚđ‹ľČ/oŘfy!ňË%Ű)_N‚óŘő/Vńň}Żť˜äůşŹ–*8'Ŕ)ľů€3 ŽßoŐŽƒ˙fż•-G~é;ŐÉ$NŮŘmb4G* ˛°Ť”"ŘĄî đ *„,ŻAľÁ/żąfE˜T‰á€š‹ŘÝ0ö6uŔ˘‘ŠLŤIe]ů¤z°*nÚë‡_/¨<ĘŠ`UQf ˙¤Ňǝ˝Ocˤ&źÖpŢ B…JQpƒŒŠxG {mjČë ň{ĺ˝Xu>Ô9Ş}+ĚßľuC†‡=Ó˝CÔÝ2nGjÁŢZ٘ŒWÝ{~};ąľ˛o6z8ÝlŘÕ3Šż3Ź×Är†lţۉjńúżäÁßúŸąđQ endstream endobj 15 0 obj 631 endobj 12 0 obj [ /ICCBased 14 0 R ] endobj 16 0 obj << /Length 17 0 R /N 3 /Alternate /DeviceRGB /Filter /FlateDecode >> stream xÚ}’OHQÇżł%BŹe&RđNśWí`ŒÝőoĘśŹkŚ˛ÎžŮŢĚn%Bˆ.AÖ1şXŃI:†‚b]"č(‚—í73ťîˆÚƒ7ď3ż˙żß{@](mšz€yĂÉţ(ť;>Áę7P‡A+­Xf$‘v™lqdí}…䜛áăő˙] ‚U€ĆŹÇמöxŔáűśiO:ŹäŇb“¸M¤’1âWÄgł>žöq†[ ń2ńMĹ'"()Y'ćąld4ƒä—‰ť2–’'&ßŔSg^™öĐ}8őš&›°€ĺwŔĽÖš,Ô \V:k˛Ý¤;ŠiÝR;;\‘Œu?ĘĺÝV ţ°˙ź\ţűş\ŢC9žuĽ(J•IŇŔëĂ]ýÜŕBS˜s_ QP5űFzźÚë׋Gő%Ťt{3qW°D÷0vz źü \}\ř$€ÔuĄşmţŔÍ+˜…–ÍŮŹC–;XŘ9:Y„^gąBŢ,Ú\°ACioci]gŽŠĹˇ¸(ńL;ňząÚď9ÚAnŒŽĐIó ¨Üę­°4“I÷ĐÝ x#Ă{zwAź¨j}ƒÎ…Đţ¤ŠžQĽóš=˜ň8Đmčńá Ă(Äo{1ącÚŃd5žUé­ĘgҡtśüĆlaČąi"ßĐ\.5汔šËĹâ^Ĺ8tph0čk€!‰~D† TŇhdĄ‘”ť6‚ŘÂ챖:>f¤ß&Ÿm×çŠäíxÝA4Ž…śƒLţ&˙–ˇä%ů­ükąĽŞiÄ”ŚŹ?űCqĚŐ¸mĽ&/žBy#¤Ő‘%iţ 'ËWŠŻ:ŐXlŠErrđ'ń=_—Ü—)Œi7ŇŹ›Šäę,úF|ŮNšŮŽÍŻ6×rm^™Ü ŽÍšUáHWü ŤĂ˙5;ż?˙Ͱh endstream endobj 17 0 obj 706 endobj 11 0 obj [ /ICCBased 16 0 R ] endobj 7 0 obj << /Type /Pages /MediaBox [0 0 612 792] /Count 1 /Kids [ 1 0 R ] >> endobj 18 0 obj << /Type /Catalog /Pages 7 0 R >> endobj 19 0 obj << /Length 20 0 R /Subtype /Type1C /Filter /FlateDecode >> stream xڕz Xלu7PUMşéÁ"ÚeWĄ1‰Wăç*8"€"ƒŠLŽˆ ¨Ý€" (C‚ʤ ¨¨ˆ **8Ł 8%CLœbLnnâ.<˜üŐŕËóż÷žďÝ÷tÁŠęęsö^gí˝×nŠÄĘB"•JťťN™2Î}V˙iÓg…ŻúbȀ™ Ż Š4_űL`%BO Ag)pVF9^Žë{q=­6=ťÍłíŮm™ĘÔłŰoj‰•TJ0şż8xđ??ćżţŸš<(LR-~Śd–$CrBb’ü!ľ–ĘĽЧt˝´NúŁôďŇwΓ,6X\´řÁršeŞe‘ĺCŤf‚!2‰˝Ä ňҙœB–“-”#ĺFÍ "ŠxŞP6H6Bć(s•ĽË˛eU˛XaýĽőXë Ö{­Ť­Ÿ[˙fýŽŚőôf:ţMAîč:‚ž —6¤ŇĆŢŚżÍ(›q6KmbmRl˛löŮ\°ůNNČ]ĺîroů\y QTSMWÍRůŞćŠÂT‘*ƒjjŁ*U•ŠÚŠ*U•Ť.¨jT&ŐuŐWŞ'Ş_T úCmŠśUłęŐýՃÔĂՎęIjOľŻ:„ŮťaOtˇ#jeÖrvičÚ=ŸB¤‘iäüƒ‡ŘÝyЉ9üöÄ-ńëľ6mܐÄ-Ö/ ŃöSiťÉ};óqY鲂œě]ťľŠ3‹ĆńÁÔü÷dwƒĚuő‚E~ڀýß^šłłôˇˆJ-c0Ž 5p1+–&Żcg/*9v řőáđř pˆ;|„]Šő ćm fqžŔƒ#8ţ$ž´Í—V\âw´ÇÇťçLgń4ĚâŃx.{ü%LźňUîą& Nv‚ÇX|‚ë˝ČmbâţJĹmÔř˝slÉźRĎůQČđ7Ńş˘ů,I<+ˆďIĹEÝgtçr•,Wö~šĘż–+ű`šĘ÷˕˝_Ža N|¨đÚű@ ŇŇşć&íĎößá^ŽçöîŔ`Śă;„AŘÂLŸ=Ť9Ü ňĄ ňşŠŽ<2˜ ouljÓH%íá'ćeřs÷&n}ţúüŘ܆łÝÓ¨JŁ–¤ŚN¤ŚV2^§Š“¸ŇšžĄ-ßľ1ŘxŹôPÖŽm'‹8S*svîńSçÍ;ˇ°ţZŐÉSz۳ݍGĆ­kœŒ)ŃŽ=ÖĎ]癴X–Jn>ľŚ-Ƅia\÷äpܘ¸Ę‡'şőH%“NDžJ*„aÝGÂUb žď܈oČđźřűă ËŞî‘FˇúœĹc9vŘOH$ô?Ĺd$—ŚnáR‹ü}ŁfąŁf7˝úŚâéĎ7Ž ?Íç^'Žz†nó`17+0‰ť=ë 6çkr+Žđˆ™ŽÄXň!v$úŘ˝˙ű}hęě´ŐějĚą]Ŕžĺ;bůň°âÍuq˛#‰ľqŢÚIŁą!ž9'fsq“‰äĚ[ÁĎX`J։x™p}śţiƒp˛!W4ń-×[/jĎÖžźĽQV ŔdPŠ§Ţv.]˝­;S‡7Ž+‰ÍOĚKŘąIśe×Ö=ťľűqŻŇÍ"â <)*>nĽ‘Kr=őTD1~ů´iŁ´ÉTÚ¨[Ó﯐ĺ$e'ľ¸šŇ„H–m[ś}yţŞ\ýŽŐy˛$CâŞhmlńƝš“úŞugeŃľš”&>>5+75‹Íޒ–ś×ĚŽŽŤÝCweĺdqĘjî<Ö╰˜™—KŔ–łToźž™ťs^ĹUíĽ‹Ç+ 8ČéeźćřFqJ]1TřykńĚ1š„řyPIž#fP;jű÷ vţ Ôö€Úů=¨í߃şÝG!ŒđtY)wńéěCóFĹó˝wú°x2î‹GâÜçŢg—xßÁ——Ÿ},Ú˝qá#&Áß`óx`đńŽTbůQ˙{ ĐÂ<ƒČϞЉ:ā‹—çbš=–Ď,Úą†ƒăB qeZшQZónxGh&Œ˘5>7oŘ :Í !ą(°$Ћbly{čř Đ %Üܙźgj1sKŸŢŻ);{œĂöÝúbƒĂňöŻŕ5?„yKŞNĆW˛ :ˆŕG53cFĹëBEG•'•\Öjě*ÓNŞâöě8př2űcfç¤ói‰Ć„D­"L7knä܅ܭ ł›!jŘűMóó ˇ%÷E6Kb;ěXJĂZćć†ŰA—¸ŞEžťÓoĆüiœĆ#ŢŐó܋7÷Ę/ŐÜ^đ1Żp 5’xÓ˝’ç/´Ăw2čcÝ$<ľkwóN’J9€^)řŘöŰƒvIي`e‡/ţ”V ě–`‚ń—ÁƄŕŽđs“œęí˝běɤŽŮMAýŇ|ă‡4ééS˛˛ĚwŞ݅=ͰŽFSŐ k˜ňT˜ƒGxN[>9{6mtV8‹­>ďƒ?ÂÚWŸ‚Ĺ™űťUóăŤî„7ˆ oi<ˇĎLޛiLŢťEŤšŕť€8ŠŹRxˆşĚŕH˛Šđ™‹ěšÓ‹Fĺňřę۸šOš2é*Ř}ç⍆ťs° §`śčN5ęĐ`źEĚ×ĹT$V$˛ť…ż˘ŕË'ă“_W}­KLœ˙Űč™ËÜüš”ä”ä$mú†ŇȂő˛ş˘ŞĂ&ÖôM¤ËŘažcyŹu!6ŧŹŐúPŠŢ´†”čPؒEIŃlŔŚłe0Ŕ¸ŽŠZ‹űÀxnIÄŞé!2z -+Ű_rt/}€ >Oíđ öĹ1XaYoPÁl˜&ŚR1A ߈cS8ôkńP/‡93ĆOu:|ϟ÷ †\˛ö< ÖO^ţ.ŚUv×P87…XF Já{˘˘#břRššiš,hÉeÇD0%†}ťÎŸŢ Óu° ÓuŠ%"žŕ;Ě3Š6űWsżŇD Óa2óxፚúŁe5Wľ­Î׎ţÂďŽă|“p–úáţ–˘ó•á3ç/sý4…s§4‰ż$×őďĽěëť"#'’[Ol>{ňĺĂGo8…ó ׅ† PS™Wxb˙¤ńHă +Đ÷^ýXXçuáD=÷´07“ŹźËUŕč˝ŢŹŰ´P§E|č„MĂľXş}úá‰Ü”C×Bną7ËoĺŢÝz˙'íŘ\fŞqJôtŽ˙ŠYń+YÜÍA/Žë Żňw÷Uî;ÉB7#ž1H4• Źfbóââ°öéŽ}Á'!;.w}\őąšqŮ Đ9ęƒ}âÄáůëssłłAź­ťůRvBn\^nźü¸Ü„l1ÝńGÁ';;WR>Ś˙Ňůż1·lĂ)ŚęZTOä5×y5ҧíănßśëŕ#N݇>'găŰc§7ăŰ:ČűĽáSČťNL݁/čÚmÚIŚąăĹ4čޅŽ'靖vꉸkLykř;7 ‰7—}mţ´Řqx“žŚý3bŽMA˛ů¤€ĎŌӥÃBŻ '?ÖŰ}8#"*;?š[U”TX …ę`ayÉyśţž?Vń ě‚çáVm+ yo`ŠN!Ś­p™Ş_˙ ËQ űěćӊ]1Ću\G["-´‘ů…ĆB‘ČłI1ÖB˜ÉLcđTlŮ3™˛ĄKĹmX1:E–jŒçWQ•GśgîäqăĐ%˛ŤĹâ%Pë7'nŽç#|f%yąžÔŠŞ´<~Šž”b͆՛֤E¤ŻĘJ=”ZyşüĚţŰäÜ-ے|ÄČu’ŚŸ‡Gârv̔ۿ‹Œ™*2f"yłŕlu[z;śW8ÉqpYô?ӈŸF)Ô×Đhžî•-ŚAŠÇŠ6FGwđčO‹´Z^ßţ&řG2ŹŃĄ)ޛô+f¤pw"ępĹş3,2\Ňá§mŐ^ZŽ3; í>PF6áâsČeđFRŒčšC =th<|č"˝Ŕ™^×îf@‡šáP3zë@ĺw ƨXăuœS?Áń §u8[Ŕ™r11؝,šxâÚŠŻs÷^Ű´c2ł§ŰÝZh$D:&žžˆšœşl 04$ÓŔ›8nčâœĐ=ËůŐË6-_Ľ]”™łžCQ´ ^™ Ń ŇŠK3Ä7kV‹`śS@20|ę&żéfŞ.ŃR3ÇNÄ-Rá4Ă“ćĄxŹk':óŠNďýE­];w–¤ČbSSŁůŞţ̎íE|ǎN÷ĽVŠ1éÔ-ü9‡Ćs`'<0á=ÍЎO3l‰Ę”eE…oÓłKR"6ŻĎҗ•lË*â3ҊˇîN7§0ÓŤŰD˘XÝ3=( ęÚ4ő ušQh›ŽÉ4ń’Ŕ´Ň ›Źč¸üx‰hbÂ%PBć ŁŁŒ1ë8\‚K¨(” 1t*bZ(ô]-hkĽ°Ӑ‡˝Ši…Lălš[~ć§ČQ=4ńŽM,cUˇ>á-N&݆¤Ű“9ľh>• čG‚öwą˜ÂŁôuúžNŹOÁŞUzšůňuKČFn×Áڎ›ĚšD>€3Ė|ăŁ6găśřŘäő ɜ6˝Ż‹oŽźă}Žť ÔY‚ó‹(żˆš7uh —Ü™ok“ß`.ž4yÖ^¨Eđ‰ÚG0AdGĎw˝‰S" H§U›×=ǀ`˛#]:˛)ŃŢAŽĆkzd~^†/š*ˆY:B?DâÍvľb\Az¸c‚üÔzF‡L)&5jě@R‹-Ŕ†şSŸ]R~(~s‡:>kŐ!),3ýd˛ŹŃMĄüşń:ZG§V˘LĆYr¤8kW4ŁŕD; Đé…ˇ¤ĐŻŐRđ§ą#^˘ŻAßDU?jaݟótĺ›I~ůĚ ĎŔƒy2ěnŸXŽşYŤELŢŚ˘0}řĆMz.952ѐ’†ÔGnÁ–Ń-Hú˛Ő& .¨Ę§‚ĹŔŕŠë|8d‚ŻMŕŘ ň.śY ¨ĹŻ–|ăĐŞiGŘEŢ&ÁÁ Ffŕ|Ô„ď3†FćTůĆţ–űĎ2§-âđYT§… ĹMŠ.ŇĆÔ'ŒuH°cją5jiŤĽ˜Vˆ.‘Kiš3ôé„ys{ýtôĚ~™¸ŘOˇŻŐ› ĂĂŽ"--kFę eřfęĚ;*ό_ŠHŠnŁqúąˇCŽIQĂęZ¸T ƒúçťčÄaCč‘çľŤGâŹ(¤Žź›cÚݜn oFłLPn2š_ÄŐůęfŰwuâg†Ţ$ÎY_ŽC7Ú7ŁŤb0ăÁ_‘AŻ_ř‰ď TFKU 2&V ˘ůDj”H•D-ŃHÉG’™Tj…tƒĆÎ\şŽˆŘš$˘ˆHëMB“Iz˛ś5‹nő× ¤ľÂ†şë)„=´†ĽšGn §E7t|m)L‹ßS¤g“ŕ(ŢRŮd)oԙÓeéŠo ŠĹR˜5„é|:7AÜUéÉH‡˝uú"Ácř‘”ĚšŁ­źfokcm´A&ş]IKKKO2ŇómlłŇŇ2:G2Ňmä&M—t9C’+Ů)9#Š–Ü“FI󼝤űĽĎ-F[Źłxgii9ĂrŽĺq+Ňj˛Ő|ŤRŤ&Ť'„-1ˆ#6ÉÄÄďd )PţÔNę2ŐLý@ýH˝ŚŢĘh™BśU–cÝÍúSëÍÖŰŹwZ—Ň:z=‰žA{Ń+č+t=}uGČ y ´eĄt5ŰXÚ(lşŮ°6‹mô6ëlöڜˇy'w‘O’ťÉ ň,yŽźP^"?"Ż•7ČoÉďËË_ËßĘ˙PP …â3E…—"VąYqTQĽ8ݏڏŁhQübka+ˇýÜÖÍvŽíbŰś›msl÷Ú´=jk˛˝kűŔö•’P~¤ě­ěŤŞtPÎTú*)#”Ť•QĘ ĺVĺnĺĺaĺyĺmĺ÷ĘWĘßT”JŤ ŚúR媚ŁZ¨ZŚZŠŇŤ’TŮŞ|ŐŐ!Ő1ŐIUę†ęę‘ęGŐkŐŻŞ?Ő6jFmŻţLÝ_=R=^=UíĄöUĎW‡¨ĂŐŤÔëՉ꥿XNŞ_VÍÝž¸MŹ€$_|,VŁÝě˛3Wň*Žđ˙y˙÷Iübř‚áđ%ô†/`!÷äë†Ţ:sLsNńZ8—őń9y/…w'íÓNř–}Ň|˙ˇtm 5Oíŀú§Ý.ú˙ä˙Y|Őü}…oh\`„vÜˠŏuÍ`Gƒšdl ązĎ–ŹŹí|\Á‘˜ śíîݧĺëňĆô”´.˝hOĆ16cŻ1Ľ˜Çc>c†ĚŠă4ÉE‡šżŻ),­Ź\>–˙ŽCÂřO Íi\”Ł'–žĎ0^oćż#÷€…q„ăbéőQĚż„Zpměp{çJ˘O͒ŕ%ćűOÄEN<gŇÓc°oŇxłäVç Ý7îžăť;‘0ŁĂcÉ`ÂoÍşÍŃl첌Ü0>ˍHÍ:’x˜ÝwÖ§ÍžiŸšM§ŚNTZ*ą— YFŰBůĹů††ˆŐU ÁŸ¸ť,œ_Vwń‚V1_˛ojŐ\Îż˛>˘‘˝VđL%_unßľZAGýx‡@{‚ý aąvX˙Ď&œöĎÜ̟÷;şáÚÚoőůI‡CeŃ;–-ŃNš9uř¸Ń%—=¸u„űÓ'ΰŔ<} –˘ üĎlZcŃ9+MmçźBɃK 泞Ţ+ňÁóô3Śk݋uœ×ԝŹ,Ş3iôőÁgšä b3Ář'Ě _̅­Z†,ÜUÉG”ÇŸ=Ł­ĚŠÄÓkĘĄĆe|člbŔ›°@żz byößŰ+lq(Ŕ§Đ‹9:Đm6?Ă%|ŕçÚ‡šĆsn—=fż}pęúŢŹKVĐ}ŹSteű^\ĄÍš/„$ĄŒiű‚Ňźu€űN‡ž¸'yÜß'?ý|ô'"=3M}^ňš>ÇjrĎ_ŕ}›…2JóblÇ(&pՒČvĆřł „ßVÔňŤťşŘşŽâŹGWu&ý7™Uą§—W\Î5í¤>swq3 i†(“Ś_uťă_âŘzgăwîŘŞŕ ÖÝ݊š|ÖâŔńŞ˝7ؓ•Ącř”F*Á˝Są&`°Vż´pĐó-uĆ—š[ťw—nˑÍ9]aÖĎ$˙$ eţŻ Z5ţ”Ńׄ¸Ř5Ë6­d}:Ćkě%wáómgÓš´čôĺ1ZóŔ÷ֈîÎń7ohŰŽ÷sœ0e!W6›¸V\ú&{ń\¸›Ťż×ě8~sę´Í Š2÷ťň>ä†ibghř–Őěűf—UÓt‘Â&cŰęĺ7Ŕ†ˆ=Z’TÄv5żx<<Ÿ –œJšZ¤ůÚ;ťv'm(ŕžÁâ?ˇhÖm1 cāĹŰçj;E2Ů"™Ő{‘Lö—HfőH&{/’Y˝Éŕ7Đ0Ă'er‹Ž/Ϛ‘+[źŐ7ű‚śáŽ1ŻúT\d%—{@€Üž™8ŃuŚąü–Ăí{m@q˘‡'{­5ބ&Ř؈˜śáĂ)ĹPÂE§‘ÄWyş¸ˆ“ó űőë÷Šđ AľĽ43FZž˛§7-¸ bĺٸŔ¤Ţ÷ţńXů–Õ]g¸*€fn†M]ájrcG2^oÜČkŇr}˘q,vƒńx)^ƒń@pÚW˜ąMdlçmĺ;ӋY˜Ëh2°vĹJ'ĚŮĂ'0Áşśĺŕ*ܓSL׭騘§>6Š/ˇÁ›śŘ6Mf{?ť[_ĆĐždî…²ʇ2ÍóÓ_ş˙X :l2<Á śĆ=GžœpnwqHöňí‹ežd\\ZűĺdŘ@^‹Žű3ˇđá–GZ žˇ‚ Ř<˙[qšLç° ÁøŕnŠŁe Ń2ýąm°5ŰF$´RúşBÓëăŇ3âů—đäpbQlITÜëË VçŹÎęąă 1•ŒGēď{R#*\‚ůU#ˆkdAąš 0ĽíęPá‘Ě0\G„—Ćœ˝Źm=ţýË-œ˘Ť4~_ŸáĚv7b()ręxPؒ?Ź đä˙Ô˛xúŸś,şýĎ- AgW?ŽĄG?'đß=€íŇ˝šIœ_!šŠ3 Šb ę ݟŇ7îóó&eôÝěĐąăz›AţUú•ăçŘK—‚Ç‹ îâšfłRYBkZGťv7\Eý+ˇuźç6 hŤfľŽ ŚĂŃÁt\\jœYU¸;źFßH˙›&śęi˙7šŔđeţ2z‹îäą üţŕőď~×ţMmč˧Gvœ <#ź‡Î Ü_ÉĹ:ËkkâŞŮßn4źáQk$U *"„ Ćj‘BššŠšě{}/źKߋ˘ŻŠŸŕĐ)‰Ľš šŘťźÉ.ĽHż7Ąq=q+=żüŠLąÍ˜—ś•ťSńMۑĂüJ¸=!i! DWŹľťFá)ÄÜv›áďÜHÔŢí˜îtŁŽ˜ÜEď×őđ q0óƒ8/!kăćDct×1úÝF"1θɨMŘś!'g˶활0Ś=‘ŘškĚ2ŠYäŠçŤ.AćOéýj ŇC@0Ůźšł Ü şá (îŻÎ30˜@7­x6ą)ńU<SĹ㯳y\ä#éĽçop`-|Z+ŘЃfđiFí6vř€0RÄÖAb‰í iîwë)ńÉ=!˙A <öĂ(K "ńlěO>ăޚ݁>”š]2)†ś'÷xţěz­ŹézcĂ3-XŽů;îŽ%^Žŕ‡SśÇÉŢ;ßÄśŐ¸÷Ń{şNáń*ILŁ:œ’Z*yĎĐ’ż(Z*ů€Ł-$ďIZ*yĎŇ;č#âJV9ŃJű.Î×YÂłvsƒJO Ýśˆý|ň¸~­ô›Z,ęÖŐÜ#eĽń›s9ŝépáÝE›ă ¸Ô6Cbzë2sB?5ię—ęD8ˇg˝zßĺj€Ÿ€ţYĽ~çĄZňtˆšC›sŮ55ťW›ßź2땾AĐ]§ŔœCí׉ĐGęwߎźSťđ**ßdĄ:´čÎ,S@bÝ_P8`ޟ҇M–‰:˜Ún1˜&ŁtȐ`ˆ‰Đ]“™Cœ<_}č"[Qc(ăcJJĹ*Iă\ź[ö1,Ÿ[Ý(<o%ƒ{ŸŤżR™Â-łĆvJađ-ˆäŚ%Ĺ9ÄuŐęĐ˙T„2Ď>"‰Θ'CTŹ1j÷năŽ|1stf×Js ĎöÁěbZ!ŹcćÓhœçýť&ÁŽËxxŒœ Rąđěn V'ëě†Ášď`ľ˜ŞöÁŤĹk3sŘÜĐ_Ţ4 &ś€žă˝Ü— /Ř˝„/+a5ö‘+7&Źłä‘ƒţŃó‚#ÂłśŽŕň˝˝óźŮg‹.n˝lvٖyúÓŚB“Pf:m@𚠊œë›á{\Źe;ë '‘ÔoP"ś.g‡ĎpůœœNUK‰q×u"/†ëA5Őć¸+Î]ş‰ÇÂ#N>ԙ奧͈ƒŤˆ¤Xc’QżmcN~F^v× u„Yń2‹QfĹëO‹2ŻľČ“ţšŐBĽšă7[,…ëB<ó{żŀ‹“‘đvťîaÇ[ŚŤńe!iɕ-ĆzxPgް=Íđz3¸8ኰڀ˜ZœçI!ᙹ݁kpԈŒÔĄ ?ŚP3´|lĆ`ßN­S/Bę2ł€íŇ$Î3žF„‰T4[ţ›/z 8Zü¤ íkşô6„ŁőoאŢ,ŋéÓéšďđęaxM)Ýĺá÷âëűVpgâÓ5ŚůŻôçe347ďlEĐRÂŹŤÉq×ڝQ†ukŁ˘vŹÝ˝kçÎ]\×PÔÚľQ†ëvíÚšc7‡rRw'íÚ,Ű´Ťdc[–~0“ď9§ÜF1ć/8ééD˝pÉ }$ź°lwDÚj7?Ę)l쬙œŢ°&t†Á¸—Ż˙Á;Ą<6OMůş›HŽŽ˘,ďžîś]ÉÇ Ů };•<~čœl{ţ™Ś=Z…Ą„FÍ-đ9^E émĐÖf‰nžŮťł”G—h5ÂÖ`CŢ>—łżüđZ#‡ŃŇ|áËv›Ží{—63yŁ ČR(„n ÁâAĄ<; “úuSJ¨›ŔŻI4ö:SŽŃż5HQšŽë{进ŒŠN!UÔa´Y⟏{DĎë;t ęĹ]őÇ1ËvÔ&}Ţf “ŃŰţ˘o…u­ Ÿőôüýr1wĂÔâ \÷5.mDüéfŇIis5ÖŔA“h˜NÇ5úĚbš endstream endobj 20 0 obj 9012 endobj 21 0 obj << /Type /FontDescriptor /Ascent 1154 /CapHeight 1026 /Descent -308 /Flags 32 /FontBBox [ -248 -339 1438 1185 ] /FontName /HIIBOS+LMSans12-Regular /ItalicAngle 0 /StemV 76 /MaxWidth 1686 /StemH 60 /XHeight 769 /FontFile3 19 0 R >> endobj 22 0 obj [ 326 280 280 490 490 490 280 490 280 490 280 490 ] endobj 13 0 obj << /Type /Font /Subtype /Type1 /BaseFont /HIIBOS+LMSans12-Regular /FontDescriptor 21 0 R /Widths 22 0 R /FirstChar 45 /LastChar 56 /Encoding /MacRomanEncoding >> endobj 23 0 obj << /CreationDate (D:20070608144752-07'00') /ModDate (D:20070608144752-07'00') /Producer (Mac OS X 10.4.9 Quartz PDFContext) >> endobj xref 0 24 0000000000 00000 n 0000000137 00000 n 0000000022 00000 n 0000000241 00000 n 0000000119 00000 n 0000000306 00000 n 0000055541 00000 n 0000092784 00000 n 0000055520 00000 n 0000055703 00000 n 0000091104 00000 n 0000092747 00000 n 0000091881 00000 n 0000102358 00000 n 0000091126 00000 n 0000091861 00000 n 0000091918 00000 n 0000092727 00000 n 0000092867 00000 n 0000092917 00000 n 0000102022 00000 n 0000102043 00000 n 0000102290 00000 n 0000102536 00000 n trailer << /Size 24 /Root 18 0 R /Info 23 0 R /ID [ ] >> startxref 102679 %%EOF latex2rtf-2.3.18/test/dblspace.toc0000644000175000017500000000050113664476467017202 0ustar wilfriedwilfried\contentsline {chapter}{\numberline {1}First Chapter}{3} \contentsline {section}{\numberline {1.1}Intro}{3} \contentsline {section}{\numberline {1.2}Method}{4} \contentsline {chapter}{\numberline {2}Second Chapter}{6} \contentsline {section}{\numberline {2.1}Intro}{6} \contentsline {section}{\numberline {2.2}Method}{7} latex2rtf-2.3.18/test/misc4.lot0000644000175000017500000000235413664476470016457 0ustar wilfriedwilfried\addvspace {10\p@ } \addvspace {10\p@ } \contentsline {table}{\numberline {2.1}{\ignorespaces Commands for selecting type styles}}{17} \contentsline {table}{\numberline {2.2}{\ignorespaces \LaTeX \ size-changing commands.}}{17} \contentsline {table}{\numberline {2.3}{\ignorespaces Control sequences for accents}}{19} \contentsline {table}{\numberline {2.4}{\ignorespaces \LaTeX \ sectioning commands}}{21} \addvspace {10\p@ } \contentsline {table}{\numberline {3.1}{\ignorespaces \rm Lowercase Greek letters}}{44} \contentsline {table}{\numberline {3.2}{\ignorespaces \rm Uppercase Greek letters}}{44} \contentsline {table}{\numberline {3.3}{\ignorespaces \rm Binary Operation Symbols}}{45} \contentsline {table}{\numberline {3.4}{\ignorespaces \rm Binary relations}}{46} \contentsline {table}{\numberline {3.5}{\ignorespaces \rm Miscellaneous symbols}}{46} \contentsline {table}{\numberline {3.6}{\ignorespaces \rm Arrow symbols}}{47} \contentsline {table}{\numberline {3.7}{\ignorespaces \rm Delimiters}}{48} \contentsline {table}{\numberline {3.8}{\ignorespaces \rm Variable-sized symbols}}{48} \contentsline {table}{\numberline {3.9}{\ignorespaces \rm Math accents}}{48} \contentsline {table}{\numberline {3.10}{\ignorespaces \rm Log-like functions}}{53} latex2rtf-2.3.18/test/include2.aux0000644000175000017500000000302613664476467017147 0ustar wilfriedwilfried\relax \@writefile{toc}{\contentsline {subsection}{\numberline {1.3}This is the first subsection in file \texttt {include2.tex}}{3}} \newlabel{section21}{{1.3}{3}} \@writefile{toc}{\contentsline {subsection}{\numberline {1.4}This is the second subsection in file \texttt {include2.tex}}{3}} \newlabel{section22}{{1.4}{3}} \@writefile{toc}{\contentsline {section}{\numberline {2}Testing how including files within other files}{3}} \newlabel{section3}{{2}{3}} \@writefile{toc}{\contentsline {subsubsection}{\numberline {2.0.1}This is the first subsubsection from file \texttt {include3.tex}}{3}} \newlabel{section31}{{2.0.1}{3}} \@writefile{toc}{\contentsline {subsubsection}{\numberline {2.0.2}This is the second subsubsection from file \texttt {include3.tex}}{3}} \newlabel{section32}{{2.0.2}{3}} \@writefile{toc}{\contentsline {subsubsection}{\numberline {2.0.3}This is the first subsubsection from file \texttt {include4.tex}}{4}} \newlabel{section41}{{2.0.3}{4}} \@writefile{toc}{\contentsline {subsubsection}{\numberline {2.0.4}This is the second subsubsection from file \texttt {include4.tex}}{4}} \newlabel{section42}{{2.0.4}{4}} \@setckpt{include2}{ \setcounter{page}{5} \setcounter{equation}{0} \setcounter{enumi}{0} \setcounter{enumii}{0} \setcounter{enumiii}{0} \setcounter{enumiv}{0} \setcounter{footnote}{0} \setcounter{mpfootnote}{0} \setcounter{part}{0} \setcounter{section}{2} \setcounter{subsection}{0} \setcounter{subsubsection}{4} \setcounter{paragraph}{0} \setcounter{subparagraph}{0} \setcounter{figure}{0} \setcounter{table}{0} } latex2rtf-2.3.18/test/misc4.toc0000644000175000017500000001233513664476470016446 0ustar wilfriedwilfried\contentsline {chapter}{\numberline {1}Getting acquainted with T\kern -.1667em\lower .5ex\hbox {E}\kern -.125emX\spacefactor \@m {}}{1} \contentsline {section}{\numberline {1.1}The spirit of T\kern -.1667em\lower .5ex\hbox {E}\kern -.125emX\spacefactor \@m {}}{1} \contentsline {subsection}{\numberline {1.1.1}T\kern -.1667em\lower .5ex\hbox {E}\kern -.125emX\spacefactor \@m {}\ is a typesetter, not a word-processor}{1} \contentsline {subsection}{\numberline {1.1.2}Typical T\kern -.1667em\lower .5ex\hbox {E}\kern -.125emX\spacefactor \@m {}\ interfaces}{3} \contentsline {chapter}{\numberline {2}Getting started with \LaTeX }{6} \contentsline {section}{\numberline {2.1}Why start with \LaTeX ?}{6} \contentsline {section}{\numberline {2.2}\LaTeX \ formats, and we compose}{7} \contentsline {section}{\numberline {2.3}Document styles}{8} \contentsline {section}{\numberline {2.4}Preparing a non-mathematical document}{9} \contentsline {subsection}{\numberline {2.4.1}Sentences and paragraphs}{9} \contentsline {subsection}{\numberline {2.4.2}Punctuation}{11} \contentsline {subsection}{\numberline {2.4.3}Ties}{13} \contentsline {subsection}{\numberline {2.4.4}Specially reserved symbols}{14} \contentsline {subsection}{\numberline {2.4.5}So what are control symbols and words?}{14} \contentsline {subsection}{\numberline {2.4.6}Commands to change appearance}{16} \contentsline {subsection}{\numberline {2.4.7}Accents}{18} \contentsline {subsection}{\numberline {2.4.8}Over-ruling some of T\kern -.1667em\lower .5ex\hbox {E}\kern -.125emX\spacefactor \@m {}'s choices}{18} \contentsline {subsection}{\numberline {2.4.9}Commenting your document}{20} \contentsline {subsection}{\numberline {2.4.10}Footnotes}{20} \contentsline {subsection}{\numberline {2.4.11}Topmatter}{20} \contentsline {subsection}{\numberline {2.4.12}Sectioning commands}{21} \contentsline {subsection}{\numberline {2.4.13}\LaTeX \ environments}{22} \contentsline {subsection}{\numberline {2.4.14}{\tt em} environment}{22} \contentsline {subsection}{\numberline {2.4.15}{\tt quote} and {\tt quotation} environments}{23} \contentsline {subsection}{\numberline {2.4.16}{\tt verse} environment}{24} \contentsline {subsection}{\numberline {2.4.17}{\tt center} environment}{25} \contentsline {subsection}{\numberline {2.4.18}{\tt flushright} and {\tt flushleft} environments}{25} \contentsline {subsection}{\numberline {2.4.19}{\tt verbatim} environment}{26} \contentsline {subsection}{\numberline {2.4.20}{\tt itemize}, {\tt enumerate}, {\tt description} environments}{27} \contentsline {subsection}{\numberline {2.4.21}{\tt tabbing} environment}{30} \contentsline {subsection}{\numberline {2.4.22}{\tt tabular} environment}{31} \contentsline {subsection}{\numberline {2.4.23}{\tt figure} and {\tt table} environments}{33} \contentsline {subsection}{\numberline {2.4.24}The {\tt letter} document style}{34} \contentsline {subsection}{\numberline {2.4.25}Common pitfalls; Error messages}{34} \contentsline {section}{\numberline {2.5}Summary}{37} \contentsline {chapter}{\numberline {3}Mathematical typesetting with \LaTeX }{39} \contentsline {section}{\numberline {3.1}Introduction}{39} \contentsline {section}{\numberline {3.2}Displaying a formula}{42} \contentsline {section}{\numberline {3.3}Using mathematical symbols}{43} \contentsline {subsection}{\numberline {3.3.1}Symbols available from the keyboard}{44} \contentsline {subsection}{\numberline {3.3.2}Greek letters}{44} \contentsline {subsection}{\numberline {3.3.3}Calligraphic uppercase letters}{45} \contentsline {subsection}{\numberline {3.3.4}Binary operators}{45} \contentsline {subsection}{\numberline {3.3.5}Binary relations}{45} \contentsline {subsection}{\numberline {3.3.6}Miscellaneous symbols}{46} \contentsline {subsection}{\numberline {3.3.7}Arrow symbols}{46} \contentsline {subsection}{\numberline {3.3.8}Expression delimiters}{47} \contentsline {subsection}{\numberline {3.3.9}Operators like $\displaystyle \intop \nolimits $ and $\displaystyle \sum $}{47} \contentsline {subsection}{\numberline {3.3.10}Accents}{48} \contentsline {section}{\numberline {3.4}Some common mathematical structures}{48} \contentsline {subsection}{\numberline {3.4.1}Subscripts and superscripts}{49} \contentsline {subsection}{\numberline {3.4.2}Primes}{51} \contentsline {subsection}{\numberline {3.4.3}Fractions}{51} \contentsline {subsection}{\numberline {3.4.4}Roots}{52} \contentsline {subsection}{\numberline {3.4.5}Ellipsis}{52} \contentsline {subsection}{\numberline {3.4.6}Text within an expression}{52} \contentsline {subsection}{\numberline {3.4.7}Log-like functions}{53} \contentsline {subsection}{\numberline {3.4.8}Over- and Underlining and bracing}{53} \contentsline {subsection}{\numberline {3.4.9}Stacking symbols}{54} \contentsline {subsection}{\numberline {3.4.10}Operators; Sums, Integrals, etc.}{54} \contentsline {subsection}{\numberline {3.4.11}Arrays}{55} \contentsline {subsection}{\numberline {3.4.12}Changes to spacing}{56} \contentsline {section}{\numberline {3.5}Alignment}{56} \contentsline {section}{\numberline {3.6}Theorems, Propositions, Lemmas, $\dots $}{57} \contentsline {section}{\numberline {3.7}Where to from here?}{58} \contentsline {section}{\numberline {3.8}{\the \textfont 2 A}\kern -.1667em\lower .5ex\hbox {\the \textfont 2 M}\kern -.125em{\the \textfont 2 S}-\LaTeX }{59} latex2rtf-2.3.18/test/longstack.rtf0000644000175000017500000074752313664476470017440 0ustar wilfriedwilfried{\rtf1\ansi\uc1\deff0\deflang1024 {\fonttbl{\f0\fnil\fcharset0 Times New Roman;} {\f1\fnil\fcharset0 Arial;} {\f2\fnil\fcharset0 Arial;} {\f3\fnil\fcharset0 Courier New;} {\f4\fnil\fcharset0 Zapf Chancery;} {\f5\fnil\fcharset0 STIXGeneral;} {\f6\fnil\fcharset0 MS Gothic;} } {\colortbl; \red0\green0\blue0; \red0\green0\blue255; \red0\green255\blue255; \red0\green255\blue0; \red255\green0\blue255; \red255\green0\blue0; \red255\green255\blue0; \red255\green255\blue255; } {\stylesheet {\s0\qj\widctlpar\f0\fs20 \snext0 Normal;} {\cs10 \additive\ssemihidden Default Paragraph Font;} {\s1\qc\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 Part;} {\s2\ql\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 heading 1;} {\s3\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 2;} {\s4\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 3;} {\s5\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 4;} {\s6\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 5;} {\s7\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 6;} {\s8\qr\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext8 rightpar;} {\s9\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext9 centerpar;} {\s10\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext10 leftpar;} {\s11\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equation;} {\s12\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationNum;} {\s13\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlign;} {\s14\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlignNum;} {\s15\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArray;} {\s16\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArrayNum;} {\s17\ql\sb120\sa120\keep\widctlpar\f0\fs20 \sbasedon0\snext0 theorem;} {\s18\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 bitmapCenter;} {\s20\qc\sb240\sa240\b\f0\fs36 \sbasedon0\snext21 Title;} {\s21\qc\sa120\f0\fs20 \sbasedon0\snext0 author;} {\s22\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext22 footer;} {\s23\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext23 header;} {\s30\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 caption;} {\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext0 Figure;} {\s32\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext32 Table;} {\s33\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext33 Tabular;} {\s34\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext34 Tabbing;} {\s35\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext35 Quote;} {\s38\ql\widctlpar\f3\fs20 \snext38 verbatim;} {\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext46 List;} {\s47\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext47 List 1;} {\s50\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 latex picture;} {\s51\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 subfigure;} {\s61\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext62 bibheading;} {\s62\ql\fi-567\li567\sb0\sa0\f0\fs20 \sbasedon0\snext62 bibitem;} {\s64\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext64 endnotes;} {\s65\ql\fi-113\li397\lin397\f0\fs20 \sbasedon0\snext65 footnote text;} {\s66\qj\fi-170\li454\lin454\f0\fs20 \sbasedon0\snext66 endnote text;} {\cs62\super \additive\sbasedon10 footnote reference;} {\cs63\super \additive\sbasedon10 endnote reference;} {\s67\ql\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext67 acronym;} {\s70\qc\sa120\b\f0\fs20 \sbasedon0\snext71 abstract title;} {\s71\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext0 abstract;} {\s80\ql\sb240\sa120\keepn\f0\b\fs20 \sbasedon0\snext0 contents_heading;} {\s81\ql\li425\tqr\tldot\tx8222\sb240\sa60\keepn\f0\fs20\b \sbasedon0\snext82 toc 1;} {\s82\ql\li512\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext83 toc 2;} {\s83\ql\li1024\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext84 toc 3;} {\s84\ql\li1536\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext85 toc 4;} {\s85\ql\li2048\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 5;} {\s86\ql\li2560\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 6;} } {\info {\title Original file was longstack.tex} {\doccomm Created using latex2rtf 2.3.18 r1266 (released May 29, 2020) on Sat May 30 17:35:20 2020 } } {\footer\pard\plain\f0\fs20\qc\chpgn\par} \paperw12280\paperh15900\margl2680\margr2700\margt2540\margb1760\pgnstart0\widowctrl\qj\ftnbj\f0\aftnnar {\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi0 {\b {\scaps Carex aestivalis}}. U. S. A. Connecticut: Litchfield Co., Sage\rquote s Ravine, Salisbury, {\i A. E. Blewitt s.n.} 1908 (GH); New Haven Co., New Haven, {\i R. W. Woodward s.n.} 21 Jun 1914 (NEBC); New London Co., Franklin, {\i R. W. Woodward s.n.} 16 Jul 1904 (NEBC); New London Co., Town of Franklin, {\i R. W. Woodward s.n.} 27 Jul 1904 (NEBC).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Georgia: Rabun Co., Rabun Bald, {\i J. A. Churchill 86129} 4 Jul 1986 (MSC, BRIT); Rabun Co., Rabun Bald, {\i Robert Kral 60305} 31 May 1977 (KANU); Rabun Co., Rabin Bald, {\i Milsted 1032} 14 Jul 1996 (GA); Towns Co., Hightower Bald, {\i W. H. Duncan 6933} 4 Aug 1946 (MARY); Towns Co., Tray Mountain, {\i L. G. Chafin 699} 12 Jul 1987 (CLEMS); Union Co., Coosa Bald, {\i L. Chafin 632-A} 7 Jun 1987 (NYS); Union Co., Coosa Bald, {\i L. Chaffin 569B} 18 May 1987 (GA).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Kentucky: Harlan Co., Big Black Mountain, {\i L. E. McKinney 6479} 27 Jun 1995 (MICH); Harlan Co., Black Mountain, {\i T. F. Wieboldt 10479} 6 Jul 2000 (VPI); Letcher Co., Stonega Gap, {\i R. Hannan s.n.} 4 Oct 1998 (EKY); McReary Co., Sheltowee Trace, {\i G. W. Libby 476} 30 Jun 1994 (EKY); Wayne Co., Marcum Branch Hollow, {\i G. W. Libby 1004} 12 Jul 1995 (EKY).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Maryland: Garrett Co., Big Savage River, {\i D. D. Boone 840808-SN} 8 Aug 1984 (TAWES).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Massachusetts: New Ashford, {\i J. R. Churchill s.n.} 11 Aug 1915 (WIS); Franklin Co., Ashfield, {\i J. R. Churchill s.n.} 19 Jun 1921 (KANU); Hampshire Co., Middlefield, {\i M. L. Fernald 9050} 26 Jun 1913 (KANU); Norfolk Co., Blue Hills Reservation, {\i N. T. Kidder s.n.} 21 Jun 1921 (KANU); Suffolk Co., Arnold Arboretum, {\i E. J. Palmer 45966} 28 May 1942 (KANU); Suffolk Co., Revere, {\i C. E. Faxon s.n.} 16 Jul 1880 (NEBC).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 New Hampshire: Cheshire Co., Surry, {\i M. L. Fernald 242} 23 Jul 1899 (NEBC).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 New York: East Jewett Twp., {\i C. L. Shear s.n.} 14 Jul 1893 (MSC); Allegany Co., Alma Hill, {\i R. T. Clausen 3917} 18 Jun 1939 (NYS); Cattaraugus Co., Allegany SP, {\i H. D. House 12766} 29 Jul 1926 (NYS); Cattaraugus Co., Allegany SP, {\i H. D. House 12319} 17 Jul 1926 (NYS); Cayuga Co., Dresserville Gulf, Town of Sempronius, {\i Charles Atwood s.n.} 12 Sep 1896 (CAN); Cayuga Co., Moravia, {\i C. Atwood s.n.} 11 Jul 1882 (NYS); Cayuga Co., Sempronius, {\i Charles Atwood s.n.} 27 Sep 1914 (WIS); Cortland Co., NW of Homes, {\i S. J. Smith 2633} 27 Jun 1946 (NYS); Delaware Co., Middletown, {\i K.L. Brooks 4890} 21 Jun 1969 (NYS); Delaware Co., Town of Kortright, {\i K. L. Brooks 1781} 19 Jul 1952 (NYS); Delaware Co., West Harpersfield, {\i K. L. Brooks 1673} 11 Jul 1952 (NYS); Erie Co., Hamburg, {\i F. W. Johnson s.n.} 7 Jul 1918 (NYS); Erie Co., South Wales, {\i F. W. Johnson s.n.} 2 Jul 1927 (NYS); Greene Co., Windham High Peak, {\i H. K. Svenson 6476} 28 Aug 1934 (VDB); Greene Co., Kaaterskill Clove, {\i S. J. Smith 33978} 28 Jul 1962 (NYS); Greene Co., Spruceton, {\i R. Naczi 7478} 4 Jul 1998 (MICH); Greene Co., Windham, {\i H. K. Svenson 7852} 12 Jun 1936 (SMU); Greene Co., Windham High Peak, {\i H. K. Stevenson 6476} 28 Aug 1934 (NY); Madison Co., Erieville, {\i S. J. Smith 19718} 14 Jun 1955 (NYS); Rensselaer Co., Town of Grafton, Grafton Lakes SP, {\i P. Weatherbee 4437} 23 Jun 1997 (NYS); Sullivan Co., Claryville, {\i W. H. Jones 50} 25 Jun 1934 (NYS); Tompkins Co., Caroline, {\i A. J. Eames 11594} 13 Jul 1919 (NYS); Ulster Co., Denning, {\i W. H. Jones 48} 27 Jun 1934 (NYS); Ulster Co., Hardenburg, Mongaup Mt., {\i W. H. Jones 47} 28 Jun 1934 (NYS); Ulster Co., Mt. Pleasant/Olive townline, {\i J. Bierhorst 7} 6 Jun 1996 (NYS); Ulster Co., Oliversea, {\i S. J. Smith 20221} 15 Jun 1956 (NYS); Ulster Co., Town of Olive, {\i K. L. Brooks 7051} 15 Jul 1987 (NYS); Ulster Co., Woodland, {\i S. J. Smith 6833} 16 Jun 1950 (NYS).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 North Carolina: Mts. Of North Carolina, {\i Wm. M. Canby 30.669} 1 Jun 1868 (CAN); Alleghany Co., Alligator Back, {\i P. D. McMillan 2469} 8 Jun 1997 (USCH); Alleghany Co., Sparta, {\i J. A. Churchill s.n.} 15 Jun 1957 (MSC); Ashe Co., Bluff Mountain, {\i A. E. Radford 44058} 24 Jun 1961 (WIS); Avery Co., Crevices on Hanging Rock Mt., {\i A. E. Radford 44091} 24 Jun 1961 (WV); Buncombe Co., Mount Pisgah, {\i C. K. Dodge 5178} 2 Jul 1897 (MICH); Buncombe Co., Snow Bald Mt., J. E. Benedict, {\i Jr. 2641} 28 Jul 1933 (VPI); Buncumbe Co., Asheville, {\i J. A. Churchill 85212} 19 Aug 1985 (WIS); Clay Co., W. side of Little Bald, {\i A. Cronquist 5556} 25 Jul 1948 (MICH); Clay Co., 12 miles E of Murphy, {\i A. A. Reznicek 7462} 16 May 1985 (MICH); Graham Co., Robbinsville, {\i F. J. Hermann 19378} 11 Jun 1964 (MICH); Haywood Co., Blue Ridge Parkway, {\i Phillip E. Hyatt 8811} 29 Jul 1999 (MICH); Haywood Co., Sandymush Bald, {\i A. F. Mark s.n.} 2 Jul 1956 (DUKE); Jackson Co., Pisgah National Forest, SSE of Waynesville, {\i Charles T. Bryson 6721} 26 Jul 1987 (WIS); Jackson Co., Wesner Bald, {\i A. F. Mark s.n.} 20 Jun 1956 (DUKE); Jackson Co., White Water Falls, {\i A. E. Hodge 441} 11 Sep 1983 (CLEMS); Jackson Co., Whiteside Mt., {\i R. K. Godfrey 51739} 5 Aug 1951 (MICH); Macon Co., SE of Reynolds Gap, {\i Phillip E. Hyatt 8209} 6 Jul 1998 (MICH); Macon Co., Coweeta Hydrologic Lab, {\i Phillip E. Hyatt 6098} 2 Jul 1994 (MICH); Macon Co., Coweeta Hydrologic Laboratory, {\i J. R. Manhart 55} 9 Jun 1980 (MICH); Macon Co., Cowetta Hydrological Lab, {\i Phillip E. Hyatt 6101} 2 Jul 1994 (NKY); Macon Co., Franklin vicinity, {\i Phillip E. Hyatt 6106} 17 Jul 1994 (MICH); Macon Co., Highlands, Glenn Falls, {\i J. A. Churchill 87527} 5 Jul 1987 (WIS); Macon Co., Scaley Mounatin vicinity, {\i Phillip E. Hyatt 7802} 4 Oct 1997 (MICH); Mitchell Co., near summit of Roan Mt., {\i A. H. Curtis 3192} (SMU); Mitchell Co., Mt. Mitchell, {\i Rev. John Davis s.n.} 26 Jul 1917 (UC); Mitchell Co., Roan Mountain, near summit, {\i A. H. Curtiss 17887} (WIS); Mitchell Co., Roan Mt., J. W. Chickering, {\i Jr. s.n.} 12 Jul 1880 (WIS); Swain Co., Andrew\rquote s Bald Trail, {\i William B. Fox s.n.} 24 Aug 1940 (WV); Watauga Co., W of Blowing Rock, {\i H. E. ahles 43759} 18 Jun 1958 (VDB); Watauga Co., Boone, Rich Mountain, {\i D. E. Boufford 16344} 12 Jun 1975 (WIS); Watauga Co., Long Hope Valley, 4 mi NW of Todd, {\i T. F. Wieboldt 7014} 20 Sep 1989 (VPI); Watauga Co., Rich Mountain, NW of Boone, {\i D. E. Boufford 16344} 12 Jun 1975 (VDB); Yancey Co., below summit of Mt. Mitchell, {\i R. Kral 64311} 29 Aug 1979 (VDB); Yancey Co., S slopes of Mt. Mitchell, {\i C. T. Bryson 6788} 29 Jul 1987 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Pennsylvania: Bradford Co., ENE of Laquin, {\i R. Naczi 2640} 18 Jun 1990 (MICH); Bradford Co., Sylvania, {\i R. Naczi 4172} 15 Jun 1994 (NKY); Bradford Co., West Franklin, {\i R. Naczi 2636} 17 Jun 1990 (MICH); Fayette Co., Ohiopyle, {\i Brown 51} 3 Jul 1905 (KANU); Jefferson Co., ENE of Desire, {\i H. A. Wahl 2808} 24 Jun 1947 (SMU); Lackawanna Co., E of Maple Lake, {\i S. L. Glowenke 6497} 20 Jun 1946 (GH); Lackawanna Co., NNE of Chinchilla, {\i S. L. Glowenke 6931} 1 Jul 1946 (GH); Lycoming Co., S of Ralston, {\i H. A. Wahl 112} 4 Jun 1938 (GH); McKean Co., {\i John Bright s.n.} 3 Jul 1921 (WV); McKean Co., S. of Kane, {\i R. H. True 22} 23 Jun 1932 (MICH); Sullivan Co., E of Hillsgrove, {\i W. A. Wahl 18200} 16 Jun 1957 (GH); Tioga Co., N of Williamsport, {\i D. Castaner 8502} 6 Jun 1985 (MICH); Warren Co., Hansen Tract, Columbus Township, {\i J. K. Bissell JKB:1994:123} 3 Aug 1994 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 South Carolina: Greenville Co., Rainbow Falls, {\i L. L. Gaddy 173} 6 Jun 1981 (CLEMS); McCormick Co., Cuffeytown Creek, NE of McCormick, {\i A. E. Radford 22310} 11 May 1957 (NY); Oconee Co., East Fork of the Chattoga River trail, {\i L. L. Gaddy s.n.} 2 Jun 1986 (CLEMS); Oconee Co., Sumter National Forest, N of Walhalla, {\i A. A. Reznicek 8981} 23 May 1992 (VDB);\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Tennessee: Blount Co., Great Smoky Mt. NP Park Headquarters, Metcalf Bottoms, {\i K. E. Rogers s.n.} 20 May 1966 (SMU); Blount Co., Metcalf Bottoms, Great Smoky Mt. NP, {\i K. Rogers 41228} 24 May 1966 (SMU); Blount Co., Great Smoky Mt. NP, Running Fork Auto Tour, {\i S. & G. Jones 4930} 22 May 1990 (WIS); Carter Co., {\i Summit Roan Mt. R. Kral 60731} 3 Aug 1977 (VDB); Carter Co., Roan Mt. SP, summit of Roan Mtn., {\i R. Carter 3183} 14 Jul 1982 (VDB); Cocke Co., Great Smoky Mt. NP, summit of \lquote Old Black\rquote , {\i V. E. McNeilus s.n.} 3 Aug 1980 (WIS); Cocke Co., Great Smokey Mt. National Park, Maddron Bald Trail, {\i V. E. McNeilus s.n.} 22 Jun 1980 (WIS); Grundy Co., Savage Gulf Natural Area, {\i T. S. Patrick 379} 21 Aug 1977 (BRIT); Grundy Co., Savage Gulf Natural Area, {\i T. S. Patrick 267} 8 Jun 1977 (VDB); Monroe Co., Rt. 129, {\i V. E. McNeilus 89-349} 3 Jun 1989 (WIS); Monroe Co., Tellico Plains, {\i J. A. Churchill 93457} 8 May 1993 (MICH); Morgan Co., Wartburg, Potter Falls, {\i V. E. McNeilus s.n.} 2 Jun 1985 (WIS); Putnam Co., Monterey, {\i R. Kral 63862} 16 Jun 1979 (VDB); Sevier Co., Great Smoky Mt. NP, Chimney Tops, {\i K. E. Rogers 43641} 29 Jun 1969 (SMU); Sevier Co., Alum Cave trail, Mt. LeConte, {\i J. K. Underwood 121} 24 Jun 1933 (MICH); Sevier Co., Great Smoky Mountains NP, Brushy Mountain, {\i F. R. Fosberg 18674} 13 Jun 1942 (SMU); Sevier Co., Great Smoky Mountains NP, Chimney Tops, {\i C. T. Bryson 3686} 19 Jul 1984 (MICH); Sevier Co., Mt. LeConte, Rainbow Falls, {\i William B. Fox s.n.} 21 Aug 1940 (WV); Sevier Co., Great Smoky Mt. NP, Mt. LeConte, {\i V. E. McNeilus s.n.} 11 Jul 1981 (WIS); Sevier Co., Great Smoky Mt. NP, Mt. LeConte, {\i V. E. McNeilus s.n.} 26 Jul 1980 (WIS); Sevier Co., Great Smoky Mt. NP, Clingman\rquote s Dome, {\i V. E. McNeilus s.n.} 16 Aug 1980 (WIS); Sevier Co., Great Smoky Mt. NP, Elkmont, {\i V. E. McNeilus s.n.} 22 May 1982 (WIS); Unicoi Co., Flag Pond, N of Big Bald, {\i J. A. Churchill 85290} 20 Jul 1985 (MSC); Unicoi Co., Unaka Mt., {\i V. E. McNeilus s.n.} 5 Aug 1982 (WIS);\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Vermont: Bennington Co., Mt. Equinox, {\i P. F. Zika 3867} 3 Jul 1981 (GH); Bennington Co., Pownal, {\i J. R. Churchill s.n.} 13 Jun 1903 (GH);\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Virginia: Bedford Co., Blue Ridge Parkway, between Apple Orchard and Thunder Ridge, {\i J. B. Nelson 15987} 29 Jul 1994 (USCH); Botetonot Co., Apple Orchard Mt., {\i C. E. Stevens 16721} 13 Aug 1978 (VPI); Craig Co., Hanging Rock, Potts Mt., {\i C. E. Stevens 15541} 1 Jul 1978 (VPI); Floyd Co., Buffalo Mt., {\i C. E. Stevens 12967} 18 Jun 1976 (VPI); Giles Co., Kire, {\i H. H. Iltis 1900} 25 Jul 1943 (SMU); Giles Co., Allegheny Mountains, Salt Pond Rattlesnake Mountain, {\i H. H. Iltis 19.747} 27 Jul 1958 (SMU); Giles Co., Beanfield Mt., W of Mountain Lake, {\i John M. Fogg Jr. 17057} 1 Jul 1949 (MICH); Giles Co., Salt Pond Mountain, Allegheny Mountains, {\i Hugh H. Iltis s.n.} 27 Jul 1958 (WIS); Grayson Co., Buck Mt., {\i C. E. Stevens 2114} 17 Jun 1970 (VPI); Grayson Co., Mt. Rogers, {\i J. K. Small s.n.} 29 Jun 1892 (MSC); Grayson Co., Point Lookout Mountain, {\i N of Independence. T. F. Wieboldt 7234} 4 Jun 1990 (VPI); Grayson Co., Point Lookout Mountain, {\i N of Independence. T. F Wieboldt 7316} 31 Jul 1990 (MICH); Highland Co., Allegheny Mt., NW of Blue Grass, {\i G. P. Fleming 9297} 23 Jun 1994 (VPI); Madison Co., Stony Man Mt., {\i S. J. Smith 4770} 13 Sep 1948 (NYS); Madison Co., Stony Man, Shenandoah NP, {\i C. E. Stevens 10951} 5 Jul 1975 (VPI); Marion Co., Mt. Rogers, {\i J. A. Churchill 70517} 16 May 1970 (MSC); Nelson Co., Three Ridges Mountain, {\i F. Watson 816} 30 Aug 1976 (CLEMS); Page Co., Shenandoah NP, Appalachian Trail, {\i SW SKYLAND F. J. Hermann 10752} 27 Oct 1940 (MICH); Patrick Co., Twelve O\rquote Clock Knob, SE side of Rock Castle Gorge, {\i T. F. Wieboldt 9264} 27 Jul 1995 (VPI); Russell Co., Beartown Mt./Clinch Mt. WMA, {\i J. F. Townsend 3099} 18 Jun 2003 (VPI); Smyth Co., Iron Mt., {\i C. E. Stevens 2160} 19 Jun 1970 (VPI); Smyth Co., Troutdale, Mt. Rogers, {\i J. A. Churchill s.n.} 6 Jun 1970 (MSC); Tazewell Co., Morris Knob, {\i C. E. Stevens 7399} 20 Jul 1973 (VPI); Washington Co., Brumley Mt., {\i W of The Butt. C. E. Stevens 7448} 21 Jul 1973 (VPI);\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 West Virginia: Randolph Co., Monangahela National Forest, Spruce Knob Lake, {\i Bev Walters 612} 8 Jul 1997 (MICH); Randolph Co., Monongahela National Forest, Wymer, {\i A. W. Cusick 29,609} 30 May 1991 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 {\b {\scaps Carex bushii}}. U. S. A. Alabama: Colbert Co., Colbert Co. Rd 101, {\i J. H. Wiersma 1725} 6 May 1980 (GA); Sumter Co., S of Boyd, {\i S. McDaniel 10545} 28 Apr 1968 (GA).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Arkansas: Ashley Co., Hamburg, {\i Larry J. Harms 2274} 3 May 1965 (KANU); Baxter Co., Mountain Home, {\i Phillip E. Hyatt 2797.03} 5 May 1990 (MICH); Columbia Co., Taylor, {\i Phillip E. Hyatt 6388} 6 May 1995 (MICH); Crawford Co., Natural Dam, {\i Phillip E. Hyatt 9311} 18 May 2000 (MICH); Hot Springs Co., Brawley Cemetery, {\i Phillip E. Hyatt 5384} 17 May 1993 (MICH); Izard Co., sandstone glade, {\i Phillip E. Hyatt 5601} 4 Jun 1993 (MICH); Izard Co., Calico Rock, {\i B. L. Lipscomb 1576} 30 May 1976 (NCU); Izard Co., Calico Rock, {\i Phillip E. Hyatt 4399.33} 27 May 1992 (MICH); Johnson Co., Clarksville, {\i R. Naczi 3895} 19 May 1994 (MICH); LaFayette Co., Bradley, {\i Phillip E. Hyatt 6261} 22 Apr 1995 (MICH); Lincoln Co., Star City, {\i Phillip E. Hyatt 7539} 20 May 1997 (MICH); Lonoke Co., Carlisle, {\i A. A. Reznicek 9263} 17 May 1993 (MICH); Lonoke Co., Little Rock, {\i S. D. Jones 2565} 28 Apr 1989 (MICH); Miller Co., Foulk, {\i Phillip E. Hyatt 6340} 23 Apr 1995 (MICH); Monroe Co., Fargo, {\i R. Naczi 2454} 21 May 1990 (MICH); Perry Co., Fourche Mt., {\i Phillip E. Hyatt 8046} 3 May 1998 (MICH); Polk Co., Highway 270, {\i D. Castaner 9668} 13 May 1987 (TAES); Polk Co., Queen Wilhelmina SP, {\i C. T. Bryson 4315} 10 May 1986 (MICH); Pope Co., Atkins, Crow Mt., {\i G. E. Tucker 4412} 10 May 1967 (NCU); Prairie Co., Hazen, {\i C. T. Bryson 12325} 17 May 1993 (MICH); Scott Co., Haw Creek, {\i Phillip E. Hyatt 7456} 17 May 1997 (MICH); Scott Co., Ouchita NF, Poteau Mt., {\i Phillip E. Hyatt 7464} 18 May 1997 (MICH); Scott Co., Waldron, {\i Phillip E. Hyatt 4043.64} 2 Jun 1991 (MICH); Stone Co., Ashe\rquote s Juniper Glade, Ozark NF, {\i Phillip E. Hyatt 5527} 26 May 1993 (MICH); Van Buren Co., Hwy 9, {\i Phillip E. Hyatt 5418} 18 May 1993 (MICH); Washington Co., Fayetteville, {\i D. Sadler 109} 20 Jun 1990 (OKL); White Co., Steprock Community, {\i Phillip E. Hyatt 6015} 11 May 1994 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Delaware: New Castle Co., Talleyville, {\i R. Naczi 2563} 12 Jun 1990 (MICH). \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Georgia: Clarke Co., Athens, {\i J. H. Pyron 1798} 18 May 1937 (GA); Clarke Co., Athens, {\i J. R. Manhart 46} 29 May 1980 (MICH); Cook Co., Rt. 37, {\i V. E. McNeilus 92-289} 22 May 1992 (TAES). \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Illinois: Jackson Co., Desoto Railroad Prairie, {\i D. Ladd 4003} 3 Jun 1979 (MO); Perry Co., Pyramid SP, {\i J. Raveill 165} 21 May 1981 (MO); Randolph Co., Sparta, {\i W. M. Bailey 1454} 25 Jun 1951 (NCU). \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Indiana: Davies Co., Washington, {\i N. C. Henderson 67-593} 22 May 1967 (NCU); Posey Co., SW Mt. Vernon, {\i F. J. Hermann 6662} 15 Jun 1935 (GH); Posey Co., SW of Mt. Vernon, {\i C. C. Deam 42929} 25 May 1926 (GH); Spencer Co., Bloomfield, {\i C. C. Deam 55020} 4 Jun 1934 (MICH). \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Iowa: Page Co., Tarkio Township, {\i B. Wilson 3884} 3 Jul 1990 (MICH); Washington Co., Washington, {\i T. Cady s.n.} 14 Jun 1997 (MICH); Washington Co., Washington, {\i T. Cady s.n.} 14 Jun 1997 (MICH). \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Kansas: Allen Co., Carlyle, {\i Caleb A. Morse 3005} 1 May 1999 (KANU); Allen Co., Humboldt, {\i Ole A. Kolstad 1336} 8 Jun 1964 (KANU); Allen Co., Moran, {\i Ole A. Kolstad 1391} 9 Jun 1964 (KANU); Anderson Co., Garnett, {\i Ole A. Kolstad 2168} 2 Jun 1964 (KANU); Anderson Co., Harris, {\i Ole A. Kolstad 1318} 8 Jun 1964 (KANU); Anderson Co., Welda, {\i Craig C. Freeman 9101} 7 Jun 1997 (KANU); Anderson Co., Westphalia, {\i Caleb A. Morse 8409} 1 Jul 2002 (KANU); Anderson Co., Westphalia, {\i Caleb A. Morse 9526} 13 Jun 2003 (KANU); Anderson Co., Westphalia, {\i Craig C Freeman 17013} 16 May 2001 (KANU); Atchison Co., Lancaster, {\i Ralph Brooks 4651} 21 Jun 1973 (KANU); Bourbon Co., Crawford Co. line, {\i Ole A. Kolstad 2181} 2 Jun 1964 (KANU); Bourbon Co., Hiattville, {\i Steve Stephens 47602} 27 May 1971 (KANU); Bourbon Co., KS 7, {\i Craig C. Freeman 2386} 15 Jun 1987 (KANU); Bourbon Co., Uniontown, {\i Ole A. Kolstad 1400} 9 Jun 1964 (KANU); Brown Co., Brown Co State Lake, {\i Ole A. Kolstad 2607} 23 Jun 1964 (KANU); Brown Co., {\i Ronald L. McGregor 38891} 25 May 1988 (KANU); Butler Co., Augusta, {\i William T. Barker 2446} 16 Jun 1966 (KANU); Butler Co., Beaumont, {\i Steve Stephens 85770} 26 Jun 1975 (KANU); Butler Co., Butler Co. State Lake, {\i Steve Stephens 4463} 7 Jun 1966 (KANU); Butler Co., Keighley, {\i Steve Stephens 3115} 13 May 1966 (KANU); Butler Co., Latham, {\i Steve Stephens 3110} 13 May 1966 (KANU); Chase Co., Bazaar, {\i Steve Stephens 4573} 8 Jun 1966 (KANU); Cherokee Co., {\i A. S. Hitchcock 1020} 7 May 1897 (MICH); Cherokee Co., Baxter Springs, {\i Ole A. Kolstad 2202} 2 Jun 1964 (KANU); Cherokee Co., Baxter Springs, {\i Ronald L. McGregor 38209} 28 May 1987 (KANU); Cherokee Co., Crestline, {\i Steve Stephens 4117} 2 Jun 1966 (KANU); Cherokee Co., Galena, {\i Ronald L. McGregor 38218} 28 May 1987 (KANU); Cherokee Co., KS 7, {\i Ole A. Kolstad 2193} 2 Jun 1964 (KANU); Cherokee Co., Pittsburg, {\i A. A. Reznicek 9828} 29 May 1994 (MICH); Cherokee Co., Riverton, {\i Ralph E. Brooks 15949} 10 Jun 1982 (KANU); Cherokee Co., Scammon, {\i Ole A. Kolstad 2243} 3 Jun 1964 (KANU); Cherokee Co., Skidmore, {\i Ole A Kolstad 2240} 3 Jun 1964 (KANU); Cloud Co., Miltonvale, {\i S. V. Fraser 28} 5 Jun 1936 (NCU); Coffey Co., Burlington, {\i Ole A. Kolstad 2504} 20 Jun 1964 (KANU); Coffey Co., Halls Summit, {\i Craig C. Freeman 14812} 14 Jun 2000 (KANU); Coffey Co., Lebo, {\i C. A. Morse 3048} 19 May 1999 (MICH); Coffey Co., Waverly, {\i Craig C Freeman 17060} 16 May 2001 (KANU); Coffey Co., Woodson Co. line, {\i William T Barker 2337} 14 Jun 1966 (KANU); Crawford Co., Farlington, {\i Steve Stephens 4015} 1 Jun 1966 (KANU); Crawford Co., Farlington, {\i Steve Stephens 3998} 1 Jun 1966 (KANU); Crawford Co., Farlington, {\i Ole A. Kolstad 2185} 2 Jun 1964 (KANU); Crawford Co., Frontenac, {\i Ronald L. McGregor 38199} 27 May 1987 (KANU); Crawford Co., Girard, {\i Ole A. Kolstad 2276} 4 Jun 1964 (KANU); Crawford Co., Cherokee, {\i Caleb A. Morse 9592} 17 Jun 2003 (KANU); Crawford Co., Pittsburg, {\i Ole A. Kolstad 2262} 4 Jun 1964 (KANU); Douglas Co., Lawrence, {\i Ole A. Kolstad 2149} 25 May 1964 (KANU); Douglas Co., Baldwin City, {\i Ole A. Kolstad 2139} 22 May 1964 (KANU); Douglas Co., Baldwin City, {\i Craig C. Freeman 3456} 27 May 1991 (KANU); Douglas Co., Baldwin Creek, {\i R. L. McGregor 40484} 18 May 1992 (OKL); Douglas Co., Clinton Reservoir, {\i C. Morse 272} 4 Jun 1995 (MICH); Douglas Co., Clinton Reservoir, {\i C. Morse 741} 21 Jun 1996 (MICH); Douglas Co., Haskell Bottoms, {\i Wayne Robuck 251} 30 May 1968 (KANU); Douglas Co., Baldwin City, {\i Caleb A. Morse 5603} 6 May 2001 (KANU); Douglas Co., Lawrence, {\i Hetzer 536} 2 Jun 1950 (KANU); Douglas Co., Lawrence, {\i Ronald L. McGregor 36213} 20 May 1985 (KANU); Douglas Co., Lawrence, {\i Ole A. Kolstad 2161} 29 May 1964 (KANU); Douglas Co., Lawrence, {\i Ronald L. McGregor 4471} 15 Aug 1950 (KANU); Douglas Co., Lawrence, {\i Hetzer 541} 7 Jun 1950 (KANU); Douglas Co., Lecompton, {\i Ronald L. McGregor 17469} 18 May 1963 (KANU); Douglas Co., Stull, {\i Caleb A. Morse 4384} 3 May 2000 (KANU); Douglas Co., Stull, {\i Caleb A. Morse 9425} 26 May 2003 (KANU); Douglas Co., Baldwin Creek, {\i Ronald L. McGregor 40484} 18 May 1992 (KANU); Douglas Co., {\i Ronald L. McGregor 39988} 9 Jun 1989 (KANU); Douglas Co., {\i Caleb A. Morse 237} 18 May 1995 (KANU); Douglas Co., Dorothy Akin Memorial Prairie, {\i Ronald L. McGregor 40181} 11 Jun 1990 (KANU); Douglas Co., Dorothy Akin Memorial Prairie, {\i Caleb A. Morse 237} 18 May 1995 (KANU); Elk Co., Busby, {\i Caleb A. Morse 5717} 10 May 2001 (KANU); Elk Co., Busby, {\i Caleb A. Morse 5740} 10 May 2001 (KANU); Elk Co., Fall River, {\i Caleb A. Morse 5634} 10 May 2001 (KANU); Franklin Co., Douglas-Franklin line, {\i Hetzer 556} 8 Jun 1950 (KANU); Franklin Co., Ottawa, {\i Ralph Brooks 4456} 19 Jun 1973 (KANU); Franklin Co., Ottawa, {\i William T. Barker 2280} 6 Jun 1966 (KANU); Franklin Co., Ottawa, {\i Hetzer 206} 6 Jun 1949 (KANU); Franklin Co., Ottawa, {\i Hetzer 550} 8 Jun 1950 (KANU); Franklin Co., Ottawa, {\i Hetzer 200} 6 Jun 1949 (KANU); Franklin Co., Richmond, {\i Ole A. Kolstad 1370} 8 Jun 1964 (KANU); Franklin Co., Richmond, {\i Craig C. Freeman 17002} 16 May 2001 (KANU); Franklin Co., Richmond, {\i Ronald L. McGregor 10099} 14 May 1955 (KANU); Franklin Co., {\i Ronald L. McGregor 38146} 22 May 1987 (KANU); Franklin Co., Williamsburg, {\i Craig C. Freeman 14817} 14 Jun 2000 (KANU); Greenwood Co., Eureka, {\i Craig C. Freeman 14795} 14 Jun 2000 (KANU); Greenwood Co., Fall River SP, {\i William T. Barker 3711} 7 Jun 1967 (KANU); Greenwood Co., Fall River, {\i Craig C. Freeman 8066} 29 Jun 1996 (KANU); Greenwood Co., Madison, {\i Craig C. Freeman 14805} 14 Jun 2000 (KANU); Greenwood Co., Neal, {\i Steve Stephens 89639} 21 Jun 1978 (KANU); Greenwood Co., Severy, {\i Craig C. Freeman 14784} 14 Jun 2000 (KANU); Jefferson Co., Kansas Ecological Reserves Site #5001, {\i Kelly Kindscher H0403} 6 Jun 1989 (KANU); Jefferson Co., Williamstown, {\i Ole A. Kolstad 2580} 23 Jun 1964 (KANU); Johnson Co., Aubry, {\i Caleb A. Morse 4697} 30 May 2000 (KANU); Johnson Co., Clearview City, {\i C. A. Morse 4568} 19 May 2000 (MICH); Johnson Co., DeSoto, {\i Craig C. Freeman 14746} 1 Jun 2000 (KANU); Johnson Co., DeSoto, {\i Craig C. Freeman 5013} 25 Jun 1993 (KANU); Johnson Co., Gardner, {\i Craig C. Freeman 4925} 21 May 1993 (KANU); Johnson Co., Kill Creek Rd {\i Caleb A. Morse 1232} 20 May 1997 (KANU); Johnson Co., Sunflower Army Ammunition Plant, {\i C. C. Freeman 5013} 25 Jun 1992 (OKL); Labette Co., Oswego, {\i Ole A. Kolstad 2297} 4 Jun 1964 (KANU); Labette Co., Parsons, {\i Craig C. Freeman 6180} 21 Jun 1994 (KANU); Leavenworth Co., Eudora, {\i Caleb A. Morse 5769} 17 May 2001 (KANU); Linn Co., Blue Mound City Lake, {\i C. A. Morse 4661} 24 May 2000 (NEB); Linn Co., Boicourt, {\i Caleb A. Morse 8090} 10 Jun 2002 (KANU); Linn Co., La Cygne, {\i Caleb A. Morse 7964} 23 May 2002 (KANU); Linn Co., Pleasanton, {\i Craig C. Freeman 14881} 19 Jun 2000 (KANU); Linn Co., Trading Post, {\i Caleb A. Morse 8142} 10 Jun 2002 (KANU); Linn Co., Trading Post, {\i Caleb A. Morse 10426} 14 May 2004 (KANU); Lyon Co., Allen, {\i Ronald L. McGregor 15622} 3 Jun 1960 (KANU); Lyon Co., Reading, {\i Ralph Brooks 3509} 15 May 1972 (KANU); Lyon Co., Saffordville, {\i Caleb A. Morse 3443} 9 Jun 1999 (KANU); Miami Co., Johnson Co. line, {\i Jennifer Milburn 1028} 11 Jun 1994 (KANU); Miami Co., Johnson Co. line, {\i Jennifer Milburn 1010} 11 Jun 1994 (KANU); Miami Co., MO state line, {\i Jennifer Milburn 921a} 6 Jun 1994 (KANU); Miami Co., Beagle, {\i Caleb A. Morse 6565} 15 Jun 2001 (KANU); Miami Co., Franklin Co. line, {\i Craig C. Freeman 2474} 14 May 1988 (KANU); Miami Co., Jingo, {\i Caleb A. Morse 10488} 20 May 2004 (KANU); Miami Co., Miami Co. State Lake, {\i Ole A. Kolstad 2050} 16 May 1964 (KANU); Miami Co., Paola, {\i Craig C. Freeman 14899} 19 Jun 2000 (KANU); Miami Co., Paola, {\i Ralph Brooks 4845} 28 Jun 1973 (KANU); Miami Co., Somerset, {\i C. A. Morse 4733} 30 May 2000 (MICH); Montgomery Co., Cherryvale, {\i William T Barker 2174} 3 Jun 1966 (KANU); Montgomery Co., Montgomery Co. State Lake, {\i Ronald L. McGregor 40401} 30 May 1991 (KANU); Montgomery Co., Montgomery Co. State Lake, {\i Ronald L. McGregor 40384} 30 May 1991 (KANU); Montgomery Co., Montgomery Co. State Lake, {\i Ronald L. McGregor 38275} 4 Sep 1987 (KANU); Montgomery Co., {\i Ronald L. McGregor 38870} 12 May 1988 (KANU); Neosho Co., St. Paul, {\i W. W. Holland 948} 23 May 1965 (KANU); Neosho Co., St. Paul, {\i W. W. Holland 895} 10 May 1965 (KANU); Neosho Co., Thayer, {\i W. W. Holland 5470} 26 May 1986 (KANU); Neosho Co., Walnut Grove, {\i W. W. Holland 455} 28 May 1964 (NCU); Osage Co., U.S. 56, {\i Ralph E. Brooks 18717} 27 May 1987 (KANU); Osage Co., Osage City Cemetery, {\i C. C. Freeman 12585} 12 Jun 1999 (NEB); Osage Co., Osage City, {\i Craig C. Freeman 18841} 14 Jun 2002 (KANU); Osage Co., Osage City, {\i Ralph E. Brooks 16636} 1 Jun 1983 (KANU); Osage Co., Overbrook, {\i Ralph E. Brooks 18704} 27 May 1987 (KANU); Ottawa Co., Minneapolis, {\i Ronald L. McGregor 37030} 19 May 1986 (KANU); Republic Co., Agenda, {\i Ralph E. Brooks 16741} 12 Jul 1983 (KANU); Republic Co., {\i Gordon E. Morley 393} 28 Jun 1960 (KANU); Republic Co., Talmo, {\i Jeff Elliott 888} 1 Jul 1995 (KANU); Riley Co., Ogden, {\i Craig C. Freeman 18780} 21 May 2002 (KANU); Saline Co., Brookville, {\i Jeff Elliott 1532} 21 May 2003 (KANU); Saline Co., Brookville, {\i Craig C. Freeman 19807} 20 May 2003 (KANU); Saline Co., {\i John C. Hancin 2268} 28 May 1939 (KANU); Shawnee Co., Wakarusa, {\i Craig C. Freeman 14865} 17 Jun 2000 (KANU); Sumner Co., Gueda Springs, {\i Craig C. Freeman 14778} 13 Jun 2000 (KANU); Sumner Co., Mulvane, {\i Dick W. Birkholz 2040a} 9 Jun 1967 (KANU); Sumner Co., Slate Creek Wetland, {\i M. D. Proctor 604} 6 Jun 1993 (OKL); Wabaunsee Co., Chalk, {\i Steve Stephens 3496} 19 May 1966 (KANU); Wabaunsee Co., Maple Hill, {\i Robert E. Russell 588} 21 May 1997 (KANU); Washington Co., Washington Co. State Lake, {\i Ronald L. McGregor 39067} 6 Jun 1988 (KANU); Washington Co., Washington, {\i Ralph Brooks 16658} 15 Jun 1983 (KANU); Washington Co., Washington Co. State Lake, {\i Steve Stephens 55384} 21 Jun 1972 (KANU); Wilson Co., Buffalo, {\i Steve Stephens 85302} 19 Jun 1975 (KANU); Wilson Co., Neodesha, {\i Ole A. Kolstad 3098} 9 Jun 1965 (KANU); Wilson Co., {\i Ronald L. McGregor 38351} 27 Jun 1987 (KANU); Woodson Co., Yates Center, {\i Caleb A. Morse 8237} 18 Jun 2002 (KANU); Woodson Co., Lake Fegan, {\i Ole A. Kolstad 201} 11 May 1963 (KANU); Woodson Co., Rose, {\i Caleb A. Morse 8220} 18 Jun 2002 (KANU); Woodson Co., Cross Timbers SP, Toronto, {\i Gary Weisenberger s.n.} 4 Jun 2004 (KANU); Woodson Co., Toronto, {\i Caleb A. Morse 8283} 19 Jun 2002 (KANU); Woodson Co., Woodson State Fishing Lake, Toronto, {\i Caleb A. Morse 5610} 10 May 2001 (KANU); Woodson Co., Woodson Co. State Lake, {\i Ole A. Kolstad 230} 11 May 1963 (KANU); Woodson Co., Woodson Co. State Lake, {\i Ronald L. McGregor 40340} 29 May 1991 (KANU); Woodson Co., Woodson Co. State Lake {\i Ralph Brooks 12109} 8 Jun 1976 (KANU); Woodson Co., Woodson Co. State Lake, {\i Ronald L. McGregor 40355} 29 May 1991 (KANU); Woodson Co., Yates Center City Lake, {\i Ole A. Kolstad 2514} 20 Jun 1964 (KANU); Woodson Co., Yates Center, {\i Kermit L. Johnson 1289} 17 Jun 1968 (KANU). \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Kentucky: Bulitt Co., Bernheim Forest, {\i A. Hotchkiss s.n.} 27 May 1951 (NYS); Hickman Co., Jackson Purchase Area, {\i L. E. McKinney 4187} 5 May 1990 (EKY); Hickman Co., Murphy\rquote s Pond, {\i L. E. McKinney 4187} 7 May 1990 (TAES); Madison Co., Igloo 1509, {\i G. Libby OB-348} 2 Jun 1993 (MICH). \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Louisiana: Morehouse Co., Bayou Bartholomew, {\i C. T. Bryson 11456} 30 Apr 1992 (MICH); Rapides Co., Kisatchie Forest, {\i D. A. Duncan 57026} 11 May 1957 (TAES); Union Co., La 143, {\i D. C. Moore 625} 14 Apr 1983 (cb); Vernon Co., Ft. Polk Army Post, {\i C. M. Allen PLK1120} 11 Apr 1992 (OKL). \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Maryland: Carroll Co., Eldersburg, {\i W. D. Longbottom 3138} 16 Jun 1992 (MARY); Cecil Co., Pilot, {\i D. D. Boone 830607-SN} 7 Jun 1983 (TAWES); Cecil Co., Rising Sun, {\i C. Lea 1878} 3 Jun 2000 (MARY); Frederick Co., Flat Run, {\i E. Baltass 306} 16 Jun 1951 (MARY); Montgomery Co., Falls Island at Great Falls, {\i C. Lea 1932} 5 Jun 2000 (MARY). \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Massachusetts: Hampshire Co., Northampton, {\i H. E. Ahles 81791} 3 Jul 1976 (NCU). \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Michigan: Charlevoix Co., Beaver Island, {\i F. Menapace 16} 11 Jul 1985 (MICH). \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Mississippi: Chickasaw Co., Buena Vista, {\i C. T. Bryson 11569} 14 May 1992 (CLEMS); Chickasaw Co., Trebloc, {\i C. T. Bryson 11556} 14 May 1992 (MICH); Franklin Co., Sullivan, {\i E J Palmer 67330} 11 Jun 1958 (KANU); Grenada Co., Camp McCain, {\i C. T. Bryson 15192} 20 May 1996 (MICH); Grenada Co., Holcomb, {\i C. T. Bryson 11538} 14 May 1992 (CLEMS); Kemper Co., {\i C. T. Bryson 8569} 15 May 1989 (MICH); Lee Co., Tupelo, {\i C. T. Bryson 3225} 1 May 1982 (MICH); Lee Co., Tupelo, {\i C. T. Bryson 3389} 29 May 1982 (MICH); Lee Co., Tupelo, {\i C. T. Bryson 9905} 18 May 1990 (TAES); Lowndes Co., Artesia, {\i C. T. Bryson 8562} 15 May 1989 (MICH); Lowndes Co., Mayhew, {\i C. T. Bryson 9868} 17 May 1990 (MICH); Panola Co., Batesville, {\i C. T. Bryson 12441} 1 Jun 1993 (MICH); Pontotoc Co., Natchez Trace Parkway, {\i C. T. Bryson 3782} 27 Apr 1985 (MICH); Rankin Co., Richland, {\i C. T. Bryson 15069} 30 Apr 1996 (MICH); Tate Co., Senitobia, {\i C. T. Bryson 10021} 18 May 1990 (TAES); \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Missouri: Barry Co., Wheaton, {\i D. Castaner 7499} 26 May 1983 (MICH); Benton Co., {\i D. Castaner 6285} 16 May 1981 (MICH); Benton Co., Lake Creek Town, {\i D. Castaner 6286} 16 May 1981 (VPI); Boone Co., Grindstone Park, {\i P. M. McKenzie 1572} 25 May 1995 (MO); Calloway Co., Dixie State Rec. Area, {\i V. E. McNeilus 92-562} 8 Jul 1992 (MICH); Calloway Co., Kingdom City, {\i V. E. McNeilus 94-534} 5 Jun 1994 (MSC); Clark Co., Little Rollins Creek, {\i B. Summers 8724} 22 Jun 1998 (MO); Dade Co., Greenfield, {\i E. J. Palmer 52187} 10 Jun 1951 (KANU); Henry Co., Clinton, {\i W. Folsted 12812} 5 Jun 1953 (NEB); Jasper Co., Joplin, {\i E. J. Palmer 49155} 8 Jun 1949 (KANU); Jasper Co., Webb City, {\i E. J. Palmer 17411} 8 May 1920 (KANU); Johnson Co., Knob Noster SP, {\i R. Mullikin 567} 8 Jun 1972 (NEB); Marion Co., Hunnewell, {\i A. A. Reznicek 9874} 31 May 1994 (MICH); Montgomery Co., High Hill, {\i A. E. Brant 580} 26 May 1985 (TAES); Montgomery Co., Montgomery City, {\i R. E. Gereau 1129} 19 May 1984 (TAES); Pettis Co., Greenridge, {\i D. Castaner 6250} 16 May 1981 (MICH); Pulaski Co., Ft. Leonard Wood Army Base, {\i R. T. Ovrebo W0132} 5 May 1989 (OKL); Pulaski Co., Happy Hollow Picnic Area, {\i R. T. Ovrebo W0132} 5 May 1989 (KANU); Randolph Co., {\i D. Castaner 7590} 3 Jun 1983 (MICH); Scott Co., Hwy H off Benton Rd, {\i Travis Brooks 7755} 18 May 1975 (KANU); Shelby Co., Clarence, {\i P. M. McKenzie 1413} 11 Jun 1994 (MICH); St. Francois Co., {\i J. Kessler 7196} 16 Jun 1983 (TAES); St. Francois Co., Knob Lick, {\i D. Castaner 6571} 14 Jun 1981 (MICH); St. Louis Co., St. Louis, {\i H. Eggert s.n.} 21 Jun 1887 (MICH); Stoddard Co., Dudley, {\i R. Naczi 1960} 22 May 1988 (MICH); Texas Co., Slabtown, {\i B. Summers 5831} 22 Jun 1993 (MO); Vernon Co., Nevada, {\i W. D. Longbottom 3530} 24 May 1993 (MARY); Webster Co., {\i R. E. Gereau 1765} 28 Apr 1985 (TAES). \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Nebraska: Burt Co., Tekamah, {\i S. B. Rolfsmeier 16227} 29 May 2001 (NEB); Gage Co., Diamond Lake Wildlife Management Area, {\i R. F. Steinauer s.n.} 21 May 1999 (NEB); Gage Co., Odell, {\i Steven B Rolfsmeier 8744} 2 Jun 1991 (KANU); Jefferson Co., DeBoer Prairie, {\i R. F. Steinhauer 299} 9 Jun 1998 (NEB); Jefferson Co., Endicot, {\i S. P. Churchill 3562} 13 Jun 1974 (NEB); Jefferson Co., Fairbury, {\i S. P. Churchill 3538A} 13 Jun 1974 (NEB); Jefferson Co., Fairbury, {\i Steven B. Rolfsmeier 6246} 2 Jun 1990 (KANU); Jefferson Co., Rock Creek State Historical Park, Fairbury, {\i S. Rolfsmeier 6246} 2 Jun 1990 (NEB); Jefferson Co., Rock Glen WMA, {\i G. Steinhauer 228} 12 Jun 1997 (NEB); Pawnee Co., Elk Creek, {\i R. F. Steinhauer 1537} 24 May 2001 (NEB); Pawnee Co., Joe Gyhra Prairie, {\i R. Steinhauer 72} 7 Jul 1997 (NEB); Pawnee Co., Steinauer Catholic cemetery, {\i Robert F. Steinauer 1541} 31 May 2001 (KANU); Pawnee Co., Steinauer, {\i Steven B. Rolfsmeier 13310} 20 Jun 1997 (KANU); \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 New Jersey: Hunterdon Co., Delaware Township, {\i J. D. Mitchell 641} 22 Jun 1993 (MICH). \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 New York: Albany Co., Alcove, {\i W. J. Crins 7641} 3 Jul 1989 (NYS); Albany Co., New Scotland, {\i H. D. House 20376} 19 Jun 1933 (NYS); Albany Co., South Westerlo, {\i G. C. Tucker 6038} 4 Jun 1991 (NYS); Columbia Co., German Town, {\i R. McVaugh 3318} 17 Jul 1935 (NYS); Columbia Co., Livingston, {\i H. D. House 22696} 26 Jun 1935 (NYS); Dutchess Co., Rhinecliff, {\i H. D. House 19282} 23 Jun 1932 (NYS); Dutchess Co., Stanford, {\i R. E. Zaremba 4260} 6 Jul 1987 (NYS); Oneida Co., Yorkville, {\i J. V. Haberer 1125} 1 Jun 1902 (NYS); Onondaga Co., Tully, {\i S. M. Young 1086} 27 Jun 1991 (NYS); Orange Co., Harriman SP, {\i J. G. Barbour 787} 9 Jun 1993 (NYS); Orange Co., Lake Frederick, {\i J. G. Barbour 862} 16 Jun 1993 (NYS); Orange Co., West Point, {\i J. G. Barbour 2165} 9 Jul 1994 (NYS); Putnam Co., Town of Patterson, {\i G. C. Tucker 4448} 1 Jul 1989 (NYS); Rensselaer Co., Brainerd, {\i H. D. House 21370} 8 Jun 1934 (NYS); Rensselaer Co., Town of Schaghticoke, {\i W. Broderick 2002:16} 13 Jun 2002 (NYS); Rensselaer Co., West Sand Lake, {\i H. D. House 20354} 18 Jun 1933 (NYS); Rockland Co., Bear Mt. SP: Doodletown, {\i G. C. Tucker 9698} 8 Jun 1994 (NYS); Rockland Co., Bear Mt. SP: Iona Island, {\i R. S. Mitchell 8364} 2 Jul 1993 (NYS); Rockland Co., Harriman SP, {\i J. G. Barbour 2112} 30 Jun 1994 (NYS); Rockland Co., Orangetown, {\i R. E. Zaremba 4221} 15 Jul 1987 (NYS); Rockland Co., Stony Point, Iona Island, {\i R. E. Zaremba 4220} 15 Jul 1987 (NYS); Schenectady Co., Mariaville Lake, {\i T. C. Baim 3375} 13 Jul 1950 (NYS); St. Lawrence Co., Town of Waddington, {\i A. M. Johnson 2850} 17 Jun 2005 (NYS); Ulster Co., Township of Olive, {\i J. Bierhorst s.n.} 30 Jun 1993 (NYS); Ulster Co., Wawarsing; Shawangunk Mts., {\i R. E. Zaremba 9800} 16 Jun 1992 (NYS); Washington Co., Lake George Region, {\i S. H. Burnham s.n.} 8 Jul 1898 (NYS); Westchester Co., Bedford, {\i Francis W. Pennell 7145} 24 Jun 1916 (KANU); Westchester Co., Mount Kisco, {\i Francis W Pennell 7181} 25 Jun 1916 (KANU); Westchester Co., Mount Pleasant, {\i R. E. Zaremba 2603} 10 Jul 1986 (NYS). \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 North Carolina: Durham Co., {\i S. W. Leonard 1522} 29 May 1968 (MICH); Rowan Co., Spencer, {\i A. E. Radford 11540} 26 May 1956 (NCU). \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Ohio: Jackson Co., {\i J. S. McCormac 5559} 6 Jun 1994 (MICH). \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Oklahoma: {\i R. Bebb 2756} 29 Apr 1905 (OKL); Adair Co., Sequoyah Co. line, {\i M. Huft 1178} 14 May 1980 (OKL); Atoka Co., McGee Creek Wildlife Management Area, {\i B. Hoagland AB-19} 24 May 2000 (OKL); Atoka Co., Stringtown, {\i P. Folley 2631} 27 May 2001 (OKL); Bryan Co., Durant, {\i J. Taylor 1426} 18 Apr 1963 (OKL); Bryan Co., Hendrix, {\i Phillip E. Hyatt 7970} 20 Apr 1998 (MICH); Bryan Co., Mead, {\i J. Taylor 1519} 30 Apr 1963 (OKL); Cherokee Co., Ft. Gibson, {\i C. S. Wallis 7083-1} 2 Jun 1958 (OKL); Cherokee Co., Talequah, {\i S. F. Glassman 1466} 24 Apr 1948 (OKL); Choctaw Co., Hugo, {\i B. Hoagland HUGO279} 16 May 2001 (OKL); Choctaw Co., Jeter Prairie, {\i S. Carpenter 1382} 8 Jun 1997 (OKL); Cleveland Co., Lexington WMA, {\i P. Folley 2181} 1 May 1998 (OKL); Cleveland Co., Lexington WMA, {\i M. D. Proctor 596} 4 May 1993 (OKL); Cleveland Co., Lexington WMA, {\i P. Folley 2180} 1 May 1998 (OKL); Coal Co., Coalgate, {\i A. Buthod AB-2179} 1 May 2001 (OKL); Craig Co., Welch, {\i B. Hoagland 1314} 7 Jun 1999 (OKL); Craig Co., Welch, {\i B. Hoagland 1333} 7 Jun 1999 (OKL); Craig Co., White Oak Prairie, {\i P. Folley 2482} 22 May 2000 (OKL); Creek Co., Deep Fork WMA, {\i D. Benesh DFX257} 23 Jun 1998 (OKL); Creek Co., Old Mannford, {\i B. Hoagland Key-091} 15 May 2002 (OKL); Delaware Co., Dripping Springs, {\i M. Hopkins 3211} 7 May 1938 (OKL); Delaware Co., Grove, {\i U. T. Waterfall 9963} 30 May 1951 (OKL); Delaware Co., Jay, {\i D. Castaner 7472} 26 May 1983 (MICH); Delaware Co., Oklahoma Ozarks, {\i C. S. Wallis 1597} 23 May 1954 (OKL); Haskell Co., Stigler, {\i D. Benesh e054} 5 May 1998 (OKL); Johnston Co., Blue River, {\i S. D. Jones 10228} 20 May 1993 (VPI); Johnston Co., Ravia, {\i L. K. Magrath 12678} 25 Apr 1982 (OKL); Johnston Co., Troy, {\i G. J. Goodman 7922} 4 May 1969 (OKL); Latimer Co., Bengal, {\i F. H. Means Jr. 3421} 28 May 1968 (OKL); Latimer Co., Robbers Cave SP, {\i G. J. Goodman 7113} 6 May 1961 (OKL); Latimer Co., Wilburton, {\i M. Hopkins 1695} 7 May 1937 (MICH); LeFlore Co., State Line Historical Site, {\i C. T. Bryson 4314} 10 May 1986 (MICH); LeFlore Co., Walnut Mt., {\i P Folley 2752} 14 May 2003 (OKL); LeFlore Co., Cameron, {\i A. A. Reznicek 9333} 19 May 1993 (MICH); LeFlore Co., Fanshawe, {\i G. J. Goodman 2551} 5 May 1935 (OKL); LeFlore Co., Howe, {\i M. Nee 27251} 9 May 1983 (MICH); LeFlore Co., Winding Stair Mountains, {\i S. D. Jones 10163} 19 May 1993 (MICH); Mayes Co., Locust Grove, {\i U. T. Waterfall 6946} 7 Jun 1947 (OKL); Mayes Co., Pryor, {\i J. K. Small 12225} 2 May 1925 (OKL); Mayes Co., Pryor Creek, {\i R. Bebb 2750} 13 May 1905 (OKL); McIntosh Co., {\i B. Hoagland m9.074} 5 May 1999 (OKL); McIntosh Co., E of Henryetta, {\i S. R. Hill 11172} 17 May 1982 (MARY); Murray Co., Davis, {\i Caleb A. Morse 5567} 30 Apr 2001 (KANU); Murray Co., Davis, {\i Caleb A. Morse 5567} 30 Apr 2001 (KANU); Murray Co., Sulphur, {\i U. T. Waterfall 6462} 23 Apr 1946 (OKL); Murray Co., Sulphur, {\i G. J. Goodman 7910} 3 May 1969 (OKL); Murray Co., Sulphur, {\i U. T. Waterfall 6484} 24 May 1946 (OKL); Muskogee Co., {\i R. Bebb 5119} 2 May 1940 (OKL); Muskogee Co., {\i R. Bebb 5306} 24 May 1940 (OKL); Muskogee Co., Braggs Hill, {\i R. Bebb 3748} 28 Apr 1939 (OKL); Muskogee Co., Camp Gruber, {\i M. D. Proctor GRU0374} 13 May 1993 (OKL); Nowata Co., Nowata, {\i B. Hoagland OOL089} 25 Apr 2000 (OKL); Nowata Co., Oolagah Wildlife Management Area, {\i B. Hoagland OOL109} 25 Apr 2000 (OKL); Nowata Co., Oolagah Wildlife Management Area, {\i B. Hoagland OOL348} 31 May 2000 (OKL); Okfuskee Co., {\i D. Benesh e039} 5 May 1998 (OKL); Osage Co., {\i P. Folley 1826} 1 Jun 1996 (OKL); Osage Co., Pawhuska, {\i Steve Stephens 76912} 28 May 1974 (KANU); Osage Co., Western Wall WA, {\i P. Folley 2314} 1 May 1999 (OKL); Payne Co., Cushing, {\i L. K. Magrath 20529} 22 May 1999 (OKL); Payne Co., Cushing City Park, {\i P. Folley 2330} 22 May 1999 (OKL); Payne Co., Manning Prairie, {\i P. Folley 2331} 22 May 1999 (OKL); Payne Co., Schlegel, {\i P. Folley 1429} 27 May 1995 (OKL); Payne Co., Schlegel, {\i L. K. Magrath 20517} 22 May 1999 (OKL); Payne Co., Stillwater, {\i L. E. McKinney 2586} 12 May 1987 (MICH); Payne Co., Stillwater, {\i C A Taylor 11950} 25 May 1983 (KANU); Payne Co., Stillwater, {\i U. T. Waterfall 10803} 12 Jun 1952 (OKL); Pittsburg Co., {\i B. Hoagland m9.167} 14 Jun 1999 (OKL); Pushmataha Co., Clayton, {\i F. H. Means Jr. 3311} 11 May 1968 (OKL); Wagoner Co., {\i R. Bebb 5427} 1 Jun 1940 (OKL); Wagoner Co., {\i R. Bebb 3871} 3 May 1939 (OKL); Wagoner Co., {\i R. Bebb 3869} 3 May 1939 (OKL); Wagoner Co., Wagoner, {\i R. Bebb 3956} 15 May 1939 (OKL); Washington Co., Copan, {\i Steve Stephens 76959} 28 May 1974 (KANU). \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Pennsylvania: Adams Co., Gettysburg Nat.\~Mil.\~Park, {\i D. Brunton 10266} 18 May 1991 (MICH); Bedford Co., Breezewood, {\i D. Berkheimer 8901} 22 Jun 1947 (VPI); Bedford Co., Alum Bank, {\i D. Berkheimer 3177} 19 Jun 1942 (MICH); Berks Co., Morgantown, {\i W. C. Brumbach 5457} 24 Jun 1966 (MSC); Bucks Co., Upper Black Eddy, {\i R. Hine s.n.} 15 Jul 1925 (WV); Bucks Co., Beaver Creek, {\i F. J. Hermann 4285} 4 Jun 1933 (NCU); Bucks Co., Tinicum Creek, {\i F. J. Hermann 3438} 12 Jul 1932 (MICH); Butler Co., Moraine SP, {\i J. K. Bissell 1995:049} 14 Jun 1995 (MICH); Centre Co., Coburn, {\i H. A. Wahl 2589} 17 Jun 1938 (NCU); Centre Co., Potter\rquote s Mills, {\i H. A. Wahl 1006} 16 Jun 1941 (NEB); Chester Co., Nottingham Barrens, {\i F. W. Pennell 3694} 22 Jun 1912 (NEB); Chester Co., Phoenixville, {\i H. A. Stone s.n.} 5 Jun 1927 (GH); Lehigh Co., Powder Valley, {\i H. W. Pretz 8149} 11 Jun 1916 (MSC); Montgomery Co., Frederick, {\i E. T. Wherry s.n.} 21 Jun 1958 (VPI); Montgomery Co., Baederwood District, Abington Township, {\i J. Bright 19833} 30 May 1945 (WV); Northampton Co., Wydnor, {\i R. L. Schaeffer 13866} 9 Jul 1941 (GH). \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 South Carolina: Oconee Co., Sumter National Forest, {\i A. A. Reznicek 8983} 23 May 1992 (MICH); Oconee Co., Walhalla, {\i A. A. Reznicek 8983} 23 May 1992 (TAES). \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Tennessee: Cumberland Co., Rockwood Airport, {\i V. E. McNeilus 94-161} 13 May 1994 (MSC); Cumberland Co., Rockwood Airport, {\i V. E. McNeilus 94-154} 13 May 1994 (MICH); Knox Co., Powell Station, {\i K. Rogers 41123} 28 May 1966 (NCU); Rutherford Co., La Vergne, {\i E. Quarterman 2032} 11 May 1947 (KANU). \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Texas: Brazos Co., {\i J. S. Carter 15} 7 Apr 1997 (TAES); Brazos Co., {\i H. Ness s.n.} 10 Apr 1901 (TAES); Brazos Co., {\i S. D. Jones 1106} 3 Apr 1988 (TAES); Brazos Co., College Station, {\i L. E. Brown 566} 9 May 1966 (WV); Brazos Co., Bryan, {\i S. D. Jones 4089} 24 Mar 1990 (MICH); Brazos Co., Bryan, {\i O. Brown 67} 7 Apr 1967 (TAES); Brazos Co., Bryan-College station, {\i D. McCasland 44} 11 Apr 1995 (TAES); Brazos Co., College, {\i H. Jennings s.n.} 8 Apr 1890 (MICH); Brazos Co., College Station, {\i S. D. Jones 2407} 7 Apr 1989 (TAES); Brazos Co., College Station, {\i M. Eaglesham 020} 27 Mar 1986 (TAMU); Brazos Co., College Station, {\i G. A. Engling 317} 22 Apr 1950 (TAMU); Brazos Co., College Station, {\i F. Gould 12509} 13 May 1968 (TAES); Brazos Co., College Station, {\i R. Lonard s.n.} 19 Apr 1967 (TAES); Brazos Co., College Station, {\i J. E. Smith Jr. 297} 17 Apr 1993 (MICH); Brazos Co., College Station, {\i S. D. Jones 9965} 27 Apr 1993 (MICH); Brazos Co., College Station, {\i S. L. Hatch 6220} 27 Apr 1993 (TAES); Brazos Co., College Station, {\i P. Fryxell 2613} 4 Apr 1976 (MICH); Brazos Co., College Station, {\i R. Lonard 2278} 15 Apr 1969 (TAES); Brazos Co., North Oakwood, {\i R. G. Reeves 45} 17 Apr 1940 (TAES); Brazos Co., Plainsman, {\i S. D. Jones 1075} 27 Apr 1988 (TAES); Burleson Co., Clay, {\i G. Ajilvsgi 8379} 14 Apr 1983 (TAMU); Burleson Co., Snook, {\i J. Bridgforth 67} 7 Apr 2001 (TAMU); Burleson Co., Somerville, {\i J. Bridgforth 66} 7 Apr 2001 (TAMU); Colorado Co., Sealy, {\i S. L. Orzell 13166} 21 Apr 1990 (MICH); Dallas Co., Dallas, {\i E. S. Nixon 1327} 26 Apr 1969 (TAES); Dallas Co., Seagoville, {\i C. L. Lundell 10631} 16 May 1941 (MICH); Franklin Co., Mt. Vernon, {\i S. D. Jones 2853} 15 May 1989 (TAES); Grayson Co., Denison, {\i R. Bebb 2702} 12 May 1905 (OKL); Grimes Co., Carlos, {\i S. D. Jones 2503} 21 Apr 1989 (MICH); Grimes Co., Navasota, {\i L. C. Higgins 3939} 31 Mar 1971 (MICH); Jasper Co., Angelina NF, {\i S. L. Orzell 6309} 15 Apr 1988 (MICH); Madison Co., FM 247, {\i A. K. Neill 2629} 17 May 1999 (TAMU); Madison Co., Navasota River, {\i A. K. Neill 407} 29 Mar 1997 (TAMU); Madison Co., Madisonville, {\i F. Gould 8562} 10 Apr 1959 (TAES); Newton Co., {\i J. Kessler 6275} 23 Jun 1982 (TAES); Red River Co., FR 2825, {\i S. D. Jones 2872} 15 May 1989 (TAES); Red River Co., Hwy 37, {\i S. D. Jones 2872} 15 May 1989 (MICH); Robertson Co., Easterly, {\i S. D. Jones 6335} 10 Apr 1991 (MICH); Robertson Co., Benchley, {\i T. Hightower 115} 21 Apr 1983 (TAMU); Robertson Co., Benchley, {\i T. Hightower 120} 21 Apr 1983 (TAMU); Robertson Co., Benchley, {\i J. E. Wood 263} 2 Apr 1950 (TAMU); Robertson Co., Hearne, {\i S. D. Jones 8275} 18 Apr 1992 (MICH); Robertson Co., New Baden, {\i T. Starbuck 1717} 16 Apr 1982 (TAES); Robertson Co., Wheelock, {\i T. Starbuck 1757} 18 Apr 1982 (TAMU); San Jacinto Co., Big Creek, {\i J. Kessler 2872} 1 Apr 1979 (TAES); San Jacinto Co., Sam Houston NF, {\i J. Kessler 3347} 28 Apr 1979 (TAES); Trinity Co., Applesprings, {\i E. S. Nixon 17440} 17 Apr 1990 (TAES); Van Zandt Co., Ben Wheeler, {\i D. S. Correll 16207} 3 May 1957 (NCU); Walker Co., Huntsville, {\i H. B. Parks 7823} 11 May 1934 (TAES); Walker Co., Pontsville, {\i S. E. Wolff 4966} 12 Apr 1934 (TAES); Walker Co., Riverside, {\i S. Orzell 6472} 21 Apr 1988 (MICH); Waller Co., Waller, {\i S. D. Jones 2414} 15 Apr 1989 (TAES); Washington Co., Peaceable Kingdom, {\i J. Kessler 5513} 13 Apr 1982 (TAES). \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Virginia: Fairfax Co., Gainesville, {\i F. R. Fosberg 54197} 28 May 1972 (VPI); Fauquier Co., Marshall, {\i G. P. Fleming 1715} 4 Jun 1985 (VPI); Fauquier Co., The Plains, {\i G. P. Fleming 3080} 28 May 1988 (VPI); Fauquier Co., Archwood Meadow, {\i J. B. Nelson 13188} 8 Jul 1992 (MICH); Fauquier Co., Buck Mt., {\i H. A. Allard 3063} 20 Jun 1937 (VPI); Fauquier Co., Western slope of Bull Run Mts., {\i H. A. Allard 4916} 5 Jun 1938 (VPI); Montgomery Co., Blacksburg, {\i T. F. Wieboldt 5075} 6 Jun 1984 (VPI); Montgomery Co., Pilot, {\i D. W. Ogle 4720} 22 Jun 1981 (VPI); Prince William Co., SW of Nokesville, {\i G. P. Fleming 6618} 10 Jun 1992 (VPI); Prince William Co., Manassas National Battlefield Park, {\i G. P. Fleming 13101} 27 May 1997 (VPI); Washington Co., Cedarville, {\i D. W. Ogle 1395} 18 May 1975 (VPI). \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 West Virginia: Doddridge Co., Morgans Run Road, {\i W. N. Grafton s.n.} 26 May 2005 (WV); Grant Co., Cabins, {\i H. A. Davis 4385} 25 Jun 1941 (WV); Grant Co., Petersburg, {\i J. F. Clovis 1961} 30 May 1973 (WV); Hardy Co., South Branch WMA, {\i W. N. Grafton s.n.} 25 May 2005 (WV); Lewis Co., Jacksonville, {\i W. N. Grafton s.n.} 6 Jun 1980 (WV); Monongalia Co., Crooked Run, {\i J. L. Dawson 21342} 5 Jun 1979 (WV). \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Wisconsin: Iowa Co., Barneveld, {\i E. H. Zimmerman 307} 18 Jul 1996 (MICH); \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 {\b {\scaps Carex caroliniana}} U. S. A. Alabama: Maddison Co., Ardmore, {\i R. Kral 84668} 19 May 1995 (MICH); Morgan Co., Decatur, {\i D. Isley 3391} 25 May 1944 (MSC); Morgan Co., Florette, {\i R. Naczi 1084} 9 May 1986 (MICH); Pickens Co., Pickensville, {\i C. T. Bryson 3164} 16 May 1981 (GA); Pickens Co., Reform, {\i R. Kral 55516} 19 May 1975 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Arkansas: Stuttgart Co., Stuttgart, {\i Phillip E. Hyatt 7301} 5 Apr 1997 (MICH); Bradley Co., Warren, {\i C. T. Bryson 4262} 9 May 1986 (MICH); Chicot Co., Eudora, {\i R. D. Thomas 128214} 30 Apr 1992 (USCH); Chicot Co., Eudora, {\i C. T. Bryson 11503} 30 Apr 1992 (CLEMS); Clark Co., Whelen Springs, {\i Phillip E. Hyatt 8498} 1 May 1999 (MICH); Clay Co., Pollard, {\i Phillip E. Hyatt 4377.11} 22 May 1992 (MICH); Cleveland Co., Fordyce, {\i S. D. Jones 8490} 14 May 1992 (MICH); Columbia Co., Plainfield, {\i Phillip E. Hyatt 8550} 8 May 1999 (MICH); Dallas Co., Saline River, {\i Phillip E. Hyatt 6514} 28 May 1995 (MICH); Faulkner Co., {\i Phillip E. Hyatt 6476} 28 May 1995 (MICH); Grant Co., U. S. Hwy 167, {\i Phillip E. Hyatt 6497} 28 May 1995 (MICH); Greene Co., Halliday, {\i Phillip E. Hyatt 5946} 9 May 1994 (MICH); Hempstead Co., Fulton, {\i S. D. Jones 2580} 28 Apr 1989 (MICH); Independence Co., Newark, {\i Phillip E. Hyatt 5563} 29 May 1993 (MICH); Jefferson Co., Pine Bluff, {\i Phillip E. Hyatt 7293} 5 Apr 1997 (MICH); Lafayette Co., Ark Hwy 29, {\i Phillip E. Hyatt 6362} 6 May 1995 (MICH); Lawrence Co., Hoxie, {\i Larry J. Harms 2231} 2 May 1965 (KANU); Lonoke Co., Kerr, {\i A. A. Reznicek 9277} 17 May 1993 (MICH); Miller Co., Texarkana, {\i B. F. Bush s.n.} 28 Apr 1905 (WV); Monroe Co., Blackton, {\i Phillip E. Hyatt 7135} 24 May 1996 (MICH); Nevada Co., Reader, {\i Phillip E. Hyatt 8484} 1 May 1999 (MICH); Ouachita Co., Ouachita River, {\i Phillip E. Hyatt 8531} 1 May 1999 (MICH); Perry Co., South Fourche Recreation Area, {\i Phillip E. Hyatt 8041} 3 May 1998 (MICH); Phillips Co., Marvell, {\i Larry J. Harms 2243} 3 May 1965 (KANU); Sevier Co., DeQueen, {\i Phillip E. Hyatt 6317} 23 Apr 1995 (MICH); Union Co., El Dorado, ca 1 mi N, {\i Andrew Grammer s.n.} 30 Apr 2001 (KANU); Union Co., Louisiana Border, {\i Phillip E. Hyatt 6404} 13 May 1995 (MICH); White Co., Henry Gray WMA, {\i Phillip E. Hyatt 5993} 11 May 1994 (MICH); Woodruff Co., Gray\rquote s vicinity, {\i Phillip E. Hyatt 7104} 24 May 1996 (MICH); Woodruff Co., McCrory, {\i Phillip E. Hyatt 7096} 24 May 1996 (MICH); Yell Co., Rover, {\i Phillip E. Hyatt 8072} 3 May 1998 (MICH); Yell Co., Plainview, {\i D. Demaree 52414} 24 May 1965 (NCU).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Delaware: Wilmington, {\i Anonymous} 1897 (NCU); New Castle, Talleyville, {\i R. Naczi 2564} 12 Jun 1990 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 District of Columbia: Along Potomac River, {\i C. Lea 1691} 27 May 2000 (MARY); Along Potomac River, {\i C. Lea 1693} 27 May 2000 (TAWES).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Florida: Jackson Co., Buena Vista Landing, {\i A. K. Gholson Jr. 11295} 23 Apr 1985 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Georgia: Baker Co., Jones Ecological Research Center, Flora of Ichauway, {\i L. K. Kirkman 3246} 25 Mar 1994 (GA); Baker Co., SW of Newton, {\i L. C. Anderson 16420} 18 May 1996 (GA); Clarke Co., Athens, {\i J. R. Manhart 31} 3 May 1980 (MICH); Elbert Co., McCalla Island, {\i W. C. Credle 2812} 29 Apr 1980 (CLEMS); Elbert Co., Savannah River Project, {\i W. C. Credle 2871} 2 Jun 1980 (CLEMS); Gordon Co., New Echota State Historic Site, {\i C. H. Gomez 2351} 5 May 2000 (GA); Greene Co., Apalachee River, {\i J. E. Seward 1132} 9 May 1992 (GA); Hart Co., Savannah River, {\i J. R. Manhart 303} 23 May 1981 (MICH); McDuffie Co., Thompson, {\i Phillip E. Hyatt 10171} 28 Apr 2001 (MICH); Montgomery Co., Mount Vernon, {\i R. Naczi 5248} 5 May 1996 (MICH); Wilcox Co., Oscewichee Spring, {\i W. K. George s.n.} 22 Apr 1989 (MICH); Wilkes Co., Tignal, {\i C. H. Fitzgerald 269} 24 May 1970 (GA).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Illinois: Alexander Co., Tamms, {\i S. R. Hill 31849} 23 Jun 1999 (MICH); Clinton Co., Eldon Hazlett SP, {\i A. Brant 1802} 3 Jun 1988 (MO); Jackson Co., Murphysboro, {\i S. R. Hill 30252} 19 May 1998 (MICH); Johnson Co., Bell Pond Natural Area, {\i L. R. Phillippe 13956} 22 May 1990 (MICH); Lawrence Co., Lawrenceville, {\i N. C. Henderson 72-11} 3 Jun 1972 (MO); Saline Co., Harrisburg, {\i S. Hill 26426} 4 May 1995 (TAES); Saline Co., Shawnee NF, {\i Phillip E. Hyatt 4354} 20 May 1992 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Indiana: Crawford Co., Leavenworth, {\i F. J. Hermann 6687} 16 Jun 1935 (MICH); Gibson Co., Petoka, {\i C. C. Deam 13313} 9 Jun 1913 (WV); Jefferson Co., Chelsea, {\i E. Banta 7} 19 Jun 1935 (MICH); Lawrence Co., Springville, {\i R. M. Kriebel 1792} 6 Jun 1934 (MICH); Sullivan Co., Oaktown, {\i A. A. Reznicek 10846} 8 Jun 1999 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Kansas: Cherokee Co., Baxter Springs, {\i Ronald L. McGregor 36189} 16 May 1985 (KANU); Cherokee Co., Baxter Springs, {\i Ronald L. McGregor 40314} 1 May 1991 (KANU); Cherokee Co., Chetopa, {\i Ole A. Kolstad 2233} 3 Jun 1964 (KANU); Cherokee Co., {\i Ronald L. McGregor 38796} 5 May 1988 (KANU); Linn Co., Marais De Cygne Wildlife Refuge, {\i Ole A. Kolstad 2313} 10 Jun 1964 (KANU); Linn Co., Trading Post, {\i Caleb A. Morse 10475} 20 May 2004 (KANU); Linn Co., Trading Post, {\i Caleb A. Morse 10413} 14 May 2004 (KANU); Neosho Co., St. Paul, {\i W. W. Holland 5467} 25 May 1986 (KANU); Neosho Co., St. Paul, {\i Ralph Brooks 5582} 17 May 1974 (KANU); Neosho Co., St. Paul, {\i W. W. Holland 418} 24 May 1964 (KANU).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Kentucky: Caldwell Co., Dawson Springs, {\i L. E. McKinney 5060} 28 May 1998 (EKY); Calloway Co., Backusburg, {\i R. Athey 5098} 27 May 1985 (EKY); Campbell Co., Silver Grove, {\i A. A. Reznicek 9988} 27 May 1995 (MICH); Campbell Co., Silver Grove, {\i G. F. Buddell II s.n. 31 May 1980} (NCU); Christian Co., Patton Road, {\i L. E. McKinney 5457} 18 May 1993 (MICH); Fleming Co., Plummers Landing, {\i R. Hannan 6645} 29 May 1981 (EKY); Franklin Co., Twilight Dr. Swamp Twilight Dr. Swamp, wet meadow. {\i S. Rice s.n.} 9 Jul 1984 (EKY); Hardin Co., Rolling Fork River, {\i R. Cranfill 780} 30 May 1978 (MICH); Hickman Co., Murphy\rquote s Pond, {\i J. T. Grubbs 143} 12 May 1987 (NYS); Jefferson Co., Louisville, {\i M. E. Wharton 44598} 20 Jun 1939 (MICH); Knox Co., Gray, {\i L. E. McKinney 5386} 10 May 1993 (MICH); Laurel Co., Charlie Cheeks Swamp, {\i R. Jones 6357} 16 Jun 1990 (EKY); Lincoln Co., Green River, {\i B. Hoagland s.n.} 13 Jun 1988 (EKY); Lyon Co., SR 274, {\i L. E. McKinney 4972} 5 May 1992 (EKY); Madison Co., Muddy Creek, {\i G. W. Libby OB-332} 31 May 1993 (EKY); Madison Co., Richmond, {\i G. W. Libby GB-332} 31 May 1993 (MICH); Menifee Co., Rt. 460, {\i C. Hanley 14} 29 Jun 1988 (EKY); Powell Co., Clay City Swamps, {\i J. MacGregor s.n.} 2 Jun 1974 (EKY); Trigg Co., Barkley Lake SP, {\i L. E. McKinney 4985} 4 May 1992 (EKY).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Louisiana: Catahoula Co., Rosefield, {\i R. D. Thomas 2849} 8 Apr 1967 (NCU); Franklin Co., , {\i R. D. Thomas 2258} 6 Apr 1967 (NCU); Grant Co., Catahoula Ranger Dist., Baghdad, {\i Phillip E. Hyatt 7399} 7 May 1997 (MICH); Grant Co., Catahoula Ranger District of Kisatchie NF, Iatt Creek, {\i Phillip E. Hyatt 6960} 18 Apr 1996 (MICH); Grant Co., Packton, {\i Phillip E. Hyatt 10215} 2 May 2001 (MICH); Natchitoches Co., Kisatchie NF, {\i Phillip E. Hyatt 8106} 6 May 1998 (MICH); Ouachita Co., Monroe, {\i R. D. Thomas 99598} 20 May 1987 (TAES); Ouachita Co., Monroe, {\i R. Kral 8421} 5 Apr 1959 (NCU); Rapides Co., Alexandria, {\i Phillip E. Hyatt 7385} 7 May 1997 (MICH); Vernon Co., Leesville, {\i Cooley 3873} 27 Apr 1955 (NCU); Webster Co., Shreveport, {\i Larry J. Harms 2288} 4 May 1965 (KANU).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Maryland: Riverdale, {\i A. Chase 2380} 22 Jun 1904 (OKL); Allegany Co., Sideling Hill Bioreserve, {\i C. T. Frye 2012} 18 May 1999 (TAWES); Allegany Co., Town creek, {\i C. T. Frye 2017} 19 May 1999 (TAWES); Charles Co., Pomonkey, {\i C. Lea 2539} 30 May 2001 (TAWES); Charles Co., Pomonkey, {\i C. Lea 2055} 16 Jun 2000 (MARY); Montgomery Co., Bear Island, {\i C. Lea 1581} 14 May 2000 (MARY); Montgomery Co., Great Falls, {\i J. A. Churchill s.n.} 2 Jun 1967 (MSC).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Mississippi: Bolivar Co., Benoit, {\i C. T. Bryson 10050} 22 May 1990 (TAES); Bolivar Co., Boyle, {\i C. T. Bryson 5486} 27 Apr 1987 (MICH); Carroll Co., US 82, {\i C. T. Bryson 13418} 25 Apr 1994 (MICH); Choctaw Co., French Camp, {\i C. T. Bryson 13753} 20 May 1994 (MICH); Clay Co., {\i R. Webster 1527} 18 May 1978 (TAES); Clay Co., West Point, {\i C. T. Bryson 3314} 18 May 1982 (MICH); Coahoma Co., Tutwiler, {\i C. T. Bryson 7475} 4 May 1988 (MICH); Grenada Co., Hunt Lake, {\i C. T. Bryson 15189} 20 May 1996 (MICH); Holmes Co., Coxburg, {\i C. T. Bryson 11235} 14 Apr 1992 (TAES); Holmes Co., Tchula, {\i C. T. Bryson 8945} 2 May 1990 (TAES); Holmes Co., Tchula, {\i C. T. Bryson 8936} 2 May 1990 (MICH); Humphreys Co., Belzoni, {\i C. T. Bryson 8956} 2 May 1990 (TAES); Issaquena Co., Mayersville, {\i C. T. Bryson 15159} 15 May 1996 (MICH); Kemper Co., Wahalak Creek, {\i C. T. Bryson 8573} 15 May 1989 (MICH); Leake Co., Thomastown, {\i C. T. Bryson 13776} 20 May 1994 (MICH); Leflore Co., Yazoo River Run, {\i C. T. Bryson 3752} 27 Apr 1985 (MICH); LeFlore Co., Grenwood, {\i C. T. Bryson 13399} 23 Apr 1994 (MICH); Leflore Co., Minter, {\i C. T. Bryson 7258} 21 Apr 1988 (MICH); LeFlore Co., Minter, {\i C. T. Bryson 7256} 21 Apr 1988 (MICH); Lowndes Co., Mayhew, {\i C. T. Bryson 3286} 10 May 1982 (MICH); Newton Co., Newton, {\i C. T. Bryson 3257} 8 May 1982 (MICH); Newton Co., Newton, {\i C. T. Bryson 8842} 13 Apr 1990 (MICH); Oktibbeha Co., Starkville, {\i C. T. Bryson 3192} 24 Apr 1982 (MICH); Panola Co., Batesville, {\i C. T. Bryson 7549} 4 May 1988 (MICH); Quitman Co., Marks, {\i C. T. Bryson 7529} 4 May 1988 (MICH); Sunflower Co., Indianola, {\i C. T. Bryson 7391} 29 Apr 1988 (MICH); Sunflower Co., Indianola, {\i C. T. Bryson 7380} 29 Apr 1988 (USCH); Sunflower Co., Ruleville, {\i C. T. Bryson 11514} 8 May 1992 (CLEMS); Tunica Co., Tunica, {\i C. T. Bryson 11406} 24 Apr 1992 (CLEMS); Washington Co., Helm, {\i C. T. Bryson 4232} 22 Apr 1986 (MICH); Washington Co., Helm, {\i C. T. Bryson 3611} 24 Apr 1984 (MICH); Washington Co., Hollandale, {\i C. T. Bryson 3471} 1 May 1983 (MICH); Washington Co., Leroy Percy SP, {\i C. T. Bryson 19169} 29 Apr 2002 (USCH); Washington Co., Stoneville, {\i C. T. Bryson 3465} 24 Apr 1983 (MICH); Webster Co., Cumberland, {\i C. T. Bryson 3772} 27 Apr 1985 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Missouri: Barton Co., Hwy 126, {\i D. Castaner 7411} 25 May 1983 (MICH); Barton Co., Nashville, {\i E. J. Palmer 53843} 20 May 1952 (NCU); Bollinger Co., Castor River Conservation Area, {\i A. E. Brant 4233} 18 May 1999 (MO); Bollinger Co., Dongola, {\i B. Jacobs 00-30} 8 Jun 2000 (MO); Jasper Co., {\i D. Castaner 7422} 25 May 1983 (MICH); Jasper Co., Jasper, {\i J. F. Breuckle 40-103} 27 May 1940 (OKL); New Madrid, East Prairie, {\i S. D. Jones 8612} 18 May 1992 (MICH); Reynolds Co., Johnson Shut-Ins SP, {\i P. M. McKenzie 2009} 13 May 2002 (MO); St. Louis, St. Louis, {\i H. Eggert s.n.} 10 Jun 1887 (MICH); Stoddard Co., Dudley, {\i R. Naczi 1275} 23 May 1986 (MICH); Stoddard Co., Otter Slough Conservation Area, {\i A. E. Brant 4390} 31 May 2000 (MO); Vernon Co., Washington Township, {\i D. Castaner 6827} 19 May 1982 (TAES).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 New Jersey: Burlington Co., Delaware River, {\i F. J. Hermann 4248} 1 Jun 1933 (MICH); Burlington Co., Riverton, {\i F. J. Hermann 4248} 1 Jun 1933 (OKL); Gloucester Co., Repaupo, {\i F. J. Hermann 4435} 16 Jun 1933 (OKL);\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 North Carolina: Anson Co., Lilesville, {\i A. E. Radford 43629} 20 May 1961 (NCU); Bladen Co., Elizabethtown, {\i A. E. Radford 4089} 20 May 1949 (NCU); Chatham Co., Old Mill site above Mason Place, {\i Anonymous} 28 Apr 1957 (NCU); Chatham Co., Mt. Carmel, {\i A. E. Radford 4061} 7 May 1949 (NCU); Chatham Co., Farrington, {\i A. E. Radford 42709} 31 May 1959 (NCU); Chatham Co., Seaforth, {\i A. E. Radford 43794} 31 May 1961 (NCU); Davidson Co., Beaverdam Creek headwaters, {\i P. D. McMillan 2944} 7 May 1998 (CLEMS); Davidson Co., Denton, {\i A. E. Radford 12851} 16 Jun 1956 (NCU); Durham Co., Bland, {\i A. E. Radford 43113} 31 May 1960 (NCU); Durham Co., Duke Forest, {\i M. Palmer 1130} 26 May 1987 (MICH); Durham Co., Durham, {\i R. K. Godfrey 3835} 4 May 1938 (NCU); Durham Co., Morrisville, {\i R. K. Godfrey 3645} 21 Apr 1938 (NCU); Durham Co., Orange County Line, {\i S. W. Leonard 1480} 23 May 1968 (NCU); Forsyth Co., Stanleyville, {\i H. E. Ahles 40856} 17 May 1958 (NCU); Granville Co., Creedmor, {\i A. E. Radford 43920} 16 Jun 1961 (NCU); Guilford Co., Rockingham-Guilford line, {\i L. Melvin 3471} 24 May 1956 (NCU); Johnston Co., Clayton, {\i A. E. Radford 21673} 29 Apr 1957 (NCU); Johnston Co., Smithfield, {\i A. E. Radford 4035} 30 Apr 1949 (NCU); Lee Co., Lockville Dam, {\i L. S. Beard 380} 25 Apr 1955 (NCU); Moore Co., Glendon, {\i A. E. Radford 43376} 11 Jun 1960 (NCU); Person Co., McGhees Mill, {\i A. E. Radford 43164} 2 Jun 1960 (NCU); Randolph Co., Farmer, {\i A. E. Radford 43006} 24 May 1960 (NCU); Richmond Co., Ellerbe, {\i A. E. Radford 11488} 19 May 1956 (NCU); Rockingham Co., Foushee, {\i A. E. Radford 43832} 8 Jun 1961 (NCU); Rowan Co., E. Spencer, {\i A. E. Radford 11538} 26 May 1956 (NCU); Stanly Co., Albermarle, {\i A. E. Radford 10594} 4 May 1956 (NCU); Wake Co., Rolesville, {\i A. E. Radford 42944} 22 May 1960 (NCU); Warren Co., Elberon, {\i A. E. Radford 43754} 29 May 1961 (NCU).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Ohio: Scioto Co., Green Township, {\i A. Cusick 21546} 12 May 1982 (MICH); Summit Co., Twinsburg, {\i G. Wilder 9728} 9 Jun 1998 (MICH); Tuscarawas Co., New Philadelphia, {\i A. W. Cusick 10885} 13 Jun 1970 (NCU).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Oklahoma: Bryan Co., Oberlin, {\i J. Taylor 1389B} 16 Apr 1963 (OKL); Creek Co., Keystone WMA, {\i B. Hoagland KEY-074} 15 May 2002 (OKL); McCurtain Co., Red Slough WMA, {\i B. Hoagland RSGS074} 12 Apr 1999 (OKL); McCurtain Co., Tom, {\i U. T. Waterfall 11338} 18 Apr 1953 (OKL); Okfuskee Co., Deep Fork WMA, {\i D. Benesh DFX096} 1 May 1998 (OKL); Okmulgee Co., Eufaula WMA, {\i B. Hoagland DF0051} 23 May 1996 (OKL).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Pennsylvania: South Philadelphis, {\i A. MacElwee 1748} 19 Jun 1900 (NCU); Bedford Co., Ryot, {\i D. Berkheimer 3210} 19 Jun 1942 (GH); Bedford Co., Bedford, {\i S. P. Grund 1905} 11 Jun 1997 (USCH); Berks Co., French Creek SP, {\i L. A. Standley 1502} 20 Jun 1987 (MICH); Bucks Co., Bristol, {\i R. R. Dreisbach 2170} 7 Jun 1924 (MICH); Fulton Co., Harrisonville, {\i H. A. Wahl 2019} 1 Jun 1947 (GH); Fulton Co., Warfordsburg, {\i J. A. Churchill s.n.} 13 Jun 1966 (MSC); Perry Co., Liverpool, {\i J. M. Fogg Jr. 15839} 20 Jun 1939 (GH); Philadelphia Co., Cobb\rquote s Creek, {\i F. J. Hermann 3079} 28 May 1932 (MICH); York Co., McCalls Ferry, {\i Joseph Crawford s.n.} 1 Jul 1904 (KANU).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 South Carolina: Abbeville Co., Calhoun Falls, {\i A. E. Radford 22722} 13 May 1957 (NCU); Abbeville Co., Savannah River Project, {\i M. G. Douglass 1449} 7 Jun 1978 (CLEMS); Anderson Co., Fair Play, {\i H. E. Ahles 13428} 31 May 1956 (NCU); Barnwell Co., Savannah River Operations Area, {\i W. T. Batson s.n.} 4 May 1953 (NCU); Berkeley Co., Cross, {\i W. T. Batson s.n.} 30 Apr 1956 (USCH); Berkeley Co., Mulberry Plantation, {\i P. D. McMillan 5188} 2 Jun 2001 (CLEMS); Berkeley Co., Cross, {\i W. T. Batson 1244} 8 Apr 1956 (USCH); Berkeley Co., Berekeley Country Club, {\i P. D. McMillan 5183} 2 Jun 2001 (CLEMS); Berkeley Co., Lewisfield Plantation, {\i P. D. McMillan 5041} 29 Apr 2001 (CLEMS); Chesterfield Co., Cheraw, {\i A. E. Radford 12239} 5 Jun 1956 (NCU); Edgefield Co., Sumter NF, Forks Analysis Area, {\i J. B. Nelson 17160} 25 Apr 1996 (USCH); Fairfield Co., Winnsboro, {\i C. N. Horn 8002} 21 May 1994 (MICH); Fairfield Co., Winnsboro, {\i C. N. Horn 7960} 6 May 1994 (MICH); Greenwood Co., Gaines, {\i J. B. Nelson 22543} 26 Apr 2002 (USCH); Greenwood Co., Gaines, {\i J. B. Nelson 22543} 26 Apr 2002 (USCH); Hampton Co., Belmont Plantation, {\i R. D. Porcher Jr. 289} 5 Sep 1971 (USCH); Jasper Co., Tillman, {\i A. E. Radford 44530} 20 Apr 1962 (NCU); Lexington Co., Old Saluda Mill Site, {\i J. B. Nelson 14054} 7 May 1993 (USCH); Newberry Co., Maybinton, {\i J. B. Nelson 20368} 23 Apr 1999 (USCH); Oconee Co., Lake Hartwell, {\i L. L. Gaddy s.n.} 28 May 1986 (CLEMS); Orangeburg Co., Santee Cooper Widlife Management Area, {\i A. B. Pittman 04270102} 27 Apr 2001 (USCH); Pickens Co., Jocassee Gorges, {\i P. D. McMillan 6329} 5 May 2002 (CLEMS); Pickens Co., Pendleton, {\i J. F. Townsend 1501} 20 May 1997 (CLEMS); Sumter Co., Sumter, {\i A. E. Radford 23803} 4 Jun 1957 (NCU).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Tennessee: Blount Co., Great Smoky Mountain NP, Abram\rquote s Creek, {\i V. E. McNeilus 89-339} 3 Jun 1989 (MSC); Coffee Co., Arnold Center, {\i R. Kral 55318} 9 May 1975 (MICH); Coffee Co., Arnold Village, {\i K. E. Rogers 44784} 18 May 1966 (NCU); Coffee Co., Double Pond, {\i V. E. McNeilus 92-408} 1 Jun 1992 (MICH); Coffee Co., Manchester, {\i K. E. Rogers 44752} 18 May 1966 (NCU); Dickson Co., White Bluff, {\i R. Kral 55411} 13 May 1975 (MICH); Hamilton Co., Chicamauga Creek, {\i V. E. McNeilus 91-292} 23 May 1991 (MICH); Tipton Co., Hatchie River, {\i L. E. McKinney 2493} 8 May 1987 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Texas: Mineola, {\i J. Reverchon 2451} 24 Apr 1907 (WV); Angelina Co., Angelina River, {\i E. S. Nixon 17479} 12 Apr 1990 (TAES); Bowie Co., Texarkana Lake, {\i Larry J. Harms 2319} 4 May 1965 (KANU); Brazos Co., College Station, {\i W. S. Jennings 259} 11 Apr 1949 (TAMU); Brazos Co., College Station, {\i S. D. Jones 6351} 11 Apr 1991 (MICH); Brazos Co., College Station, {\i E. L. Usrey 57} 30 Mar 1950 (TAES); Burleson Co., Davidson Creek, {\i S. D. Jones 1199} 29 Apr 1988 (TAES); Galveston Co., Dickinson, {\i F. R. Waller 3611} 5 May 1975 (TAES); Galveston Co., League City, {\i F. R. Waller 3443} 31 Mar 1975 (TAES); Gregg Co., Longview, {\i R. R. Haynes 4779} 24 Apr 1975 (NCU); Grimes Co., Hwy 105, {\i J. Kessler 4250} 28 Apr 1980 (TAES); Harris Co., Langham Creek, {\i L. E. Brown 21914b} 21 Mar 1998 (TAES); Harris Co., Nimitz High School, {\i J. Kessler 2885} 5 Apr 1979 (TAMU); Harris Co., Tomball, {\i L. Brown 15889} 29 Mar 1992 (TAES); Harris Co., Tomball, {\i S. D. Jones 2523} 15 Apr 1989 (OKL); Houston Co., Davy Crocket NF, Neches Bluff Overlook, {\i S. L. Orzell 6420} 20 Apr 1988 (MICH); Jasper Co., Angelina NF, Bouton Lake, {\i S. L. Orzell 5078} 18 Apr 1987 (MICH); Jefferson Co., Beaumont, {\i C. L. Lundell 11238} 16 Apr 1942 (MICH); Jefferson Co., Voth, {\i S. L. Orzell 8968} 4 Apr 1989 (MICH); Leon Co., Keechi Creek WMA, {\i A.Neill 3021} 21 Apr 2000 (TAMU); Liberty Co., Trinity River, {\i E. S. Nixon 4259} 28 Apr 1972 (NCU); Madison Co., Navasota River, {\i A. K. Neill 1337} 2 Apr 1998 (TAMU); Robertson Co., Ridge, {\i T. Starbuck 1849} 27 Apr 1982 (TAMU); Robertson Co., Ridge, {\i T. Starbuck 1854} 27 Apr 1982 (TAMU).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Virginia: Arlington Co., 4 Mile Run Area, {\i E. H. Walker 728} 1 Jun 1930 (MARY); Bath Co., Nimrod Hall, {\i G. P. Fleming 13393} 25 Jun 1997 (VPI); Culpeper Co.,Culpeper, {\i G. P. Fleming 4014} 27 May 1989 (VPI); Cumberland Co., 14 mi NE of Farmville (Prince Edward Co.), {\i T. F. Wieboldt 5509} 17 May 1985 (VPI); Fairfax Co., Pleasant Valley Rd, {\i T. Bradley 23205} 14 May 1990 (CLEMS); Fairfax Co., Elklick Run, {\i T. Bradley s.n.} 23 May 1976 (VPI); Greensville Co., Jarratt, {\i J. C. Ludwig 89039} 30 Apr 1989 (VPI); Hanover Co., Vontay, {\i J. C. Ludwig 2087} 24 May 1993 (VPI); King George, Chotank Swamp, {\i D. M. E. Ware 8259} 18 Jun 1983 (CLEMS); King William, Zoar SF, Aylett, {\i G. P. Fleming 13093} 23 May 1997 (VPI); Loudoun Co., Broad Run, {\i H. A. Allard 20315} 1 Jun 1952 (WV); Loudoun Co., Elklick Run, {\i M. T. Strong 87-097} 14 Jun 1987 (USCH); Lunenburg Co., Lunenburg, {\i T. F. Wieboldt 5991} 3 Jun 1986 (VPI); Mecklenburg Co., Kerr Reservoir/Bluestone WMA, Clarksville, {\i G. P. Fleming 13227} 4 Jun 1997 (VPI); Orange Co., Palmyra Church, {\i T. Bradley 23253} 21 May 1990 (CLEMS); Orange Co., VA 20, {\i T. Bradley 20453} 21 Jun 1984 (NCU); Powhatan Co., Fine Creek Mill, {\i C. Corcoran 695} 18 Jun 1976 (NCU); Prince William, Occoquan Bay National Wildlife Refuge, Woodbridge, {\i M. T. Strong 1602} 30 May 1998 (MICH); Prince William, Camp Upshur, {\i B. W. Hoagland QUN0366} 18 Jun 1994 (OKL); Prince William County, Combat Village, {\i M. D. Proctor QUN0255} 18 May 1994 (OKL); Pulaski Co., Pulaski, {\i T. F. Wieboldt 6347} 29 May 1987 (VPI); Roanoke Co., Wabun, {\i T. F. Wieboldt 6368} 3 Jun 1987 (VPI).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 West Virginia: Berkeley Co., Sleepy Creek Lake dam, {\i W. N. Grafton s.n.} 27 Jun 2004 (WV); Berks Co., Gibraltar, {\i W. C. Brumbach 3515} 6 Jun 1943 (WV); Mason Co., McClintic WMA, {\i N. Grafton} 21 Jun 2005 (WV); Raleigh Co., Sandstone Falls SP, {\i T. F. Wieboldt 5540} 21 May 1985 (VPI); Summers Co., Pipestem SP, {\i T. F. Wieboldt 6380} 7 Jun 1987 (WV); Tyler Co., Little, {\i W. N. Grafton s.n.} 1 Jun 1980 (WV); Upshur Co., Buckhannon, {\i G. B. Rossbach 4620} 30 May 1963 (WV); Wirt Co., Palestine, {\i E. A. Bartholomew W-4127} 25 Jun 1956 (WV).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 {\b {\scaps Carex complanata}}. Mexico. Chiapas: Jitotol, {\i P. H. Raven 20059} 25 Jan 1965 (MICH); Colonia el Laurel, {\i G. Davidse 29623} 13 Nov 1984 (MICH); Jitotol, {\i W. Anderson 13243} 20 Oct 1983 (MICH); Pueblo Nuevo Solistahuacan, {\i P. H. Raven 19879} 23 Jan 1965 (MICH); Tenejapa, {\i D. E. Breedlove 12943} 10 Oct 1965 (MICH); Colinia Ach\rquote lum, {\i S. Gonzalez 10493} 11 Jul 1997 (MICH); Paraje Matsab, {\i A. S. Ton 943} 12 May 1966 (MICH); Tenejapa, {\i S. Gonzalez 10469} 10 Jul 1997 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Guatemala. Baja Verapaz Co., Sierra de las Minas, {\i L. O. Williams 43413} 6 Jan 1974 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 U. S. A. Alabama: Bibb Co., Centreville, {\i C. T. Bryson 8524} 3 May 1988 (MICH); Butler Co., Oaky Streak, {\i R. Naczi 4691} 17 May 1995 (MICH); Clay Co., Talladega NF, {\i A. A. Reznicek 7449} 14 May 1985 (MICH); Dallas Co., Selma, {\i R. Kral 82493} 23 May 1993 (MICH); DeKalb Co., Ft. Payne, {\i R. Naczi 7267} 25 May 1998 (VPI); Escambie Co., Little Rock, {\i S. D. Jones 8942} 28 May 1992 (MICH); Marion Co., Hamilton, {\i C. T. Bryson 7619} 8 May 1988 (TAES); Mobile Co., Mobile Municipal Park, {\i M. G. Lelong 5698} 12 May 1971 (NCU); Monroe Co., Midway, {\i R. Naczi 4002} 24 May 1994 (MICH); Montgomery Co., Montgomery, {\i R. Kral 55858} 24 May 1975 (MICH); Sumter Co., York, {\i R. Kral 26402} 7 May 1966 (GA); Tuscaloosa Co., Eight-acre Rock, {\i Roland M Harper 3652} 28 Apr 1938 (KANU); Tuscaloosa Co., Tuscaloosa, {\i R. McVaugh 8568} 30 May 1947 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Arkansas: Calhoun Co., Harrell, {\i R. D. Thomas 133946} 19 May 1993 (MICH); Clark Co., S of Hot Springs Co., {\i J. Kessler 4390} 25 May 1981 (TAES); Clark Co., Whelen Springs, {\i Phillip E. Hyatt 8502} 1 May 1999 (MICH); Cleveland Co., Marks Mill Battleground, {\i C. T. Bryson 4266} 9 May 1986 (MICH); Columbia Co., Bussey, {\i Phillip E. Hyatt 6378} 6 May 1995 (MICH); Dallas Co., US 167, {\i Phillip E. Hyatt 6512} 28 May 1995 (MICH); Dallas Co., Fordyce, {\i L. H. Shinners 19905} 1 May 1955 (NCU); Desha Co., McGhee, {\i Phillip E. Hyatt 6604} 8 Jun 1995 (MICH); Hot Springs Co., Oak Grove, {\i Phillip E. Hyatt 10288} 20 May 2001 (MICH); Jefferson Co., Pine Bluff Arsenal, {\i S. A. Walker 96.20} 30 May 1996 (OKL); Lafayette Co., Hwy 29, {\i Phillip E. Hyatt 6358} 6 May 1995 (MICH); Lincoln Co., Star City, {\i Phillip E. Hyatt 7533} 20 May 1997 (MICH); Miller Co., Foulk, {\i Phillip E. Hyatt 6348} 23 Apr 1995 (MICH); Miller Co., Three States, {\i Phillip E. Hyatt 8567} 23 May 1999 (MICH); Ouachita Co., Ouachita Co. Rd 67, {\i Phillip E. Hyatt 6412} 13 May 1995 (MICH); Perry Co., Ozark Highland Trail, {\i Phillip E. Hyatt 8032} 3 May 1998 (MICH); Perry Co., Alpin, {\i Phillip E. Hyatt 5434} 18 May 1993 (MICH); Pike Co., Delight, {\i Phillip E. Hyatt 6280} 22 Apr 1995 (MICH); Polk Co., Rich Mountain, {\i S. D. Jones 4667} 14 May 1990 (MICH); Pulaski Co., US 65, {\i C. T. Bryson 12224} 16 May 1993 (MICH); Saline Co., AR 167, {\i C. T. Bryson 12229} 16 May 1993 (MICH); Saline Co., Ark 367, {\i Phillip E. Hyatt 6487} 28 May 1995 (MICH); Saline Co., Hensley, {\i D. Sadler 254} 9 Jun 1990 (OKL); Sevier Co., DeQueen, {\i Phillip E. Hyatt 7449} 17 May 1997 (MICH); Union Co., Junction City, {\i Phillip E. Hyatt 6392} 13 May 1995 (MICH); Union Co., Lockhart, {\i R. D. Thomas 110149} 24 May 1989 (VPI); Yell Co., Aly, {\i Phillip E. Hyatt 8079} 3 May 1998 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Delaware: Kent Co., Dinahs Corner, {\i R. Naczi 9368} 12 Jun 2002 (MICH); New Castle Co., New Castle, {\i F. J. Hermann 3382} 7 Jul 1932 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Florida: Calhoun Co., Blountstown, {\i L. C. Anderson 11929} 9 May 1989 (USCH); Gadsden Co., Tallahassee, {\i R. K. Godfrey 59523} 17 May 1960 (MSC); Gadsden Co., Tallahassee, {\i R. K. Godfrey 63568} 28 Apr 1964 (NCU); Jefferson Co., Monticello, {\i R. Kral 6373} 19 Apr 1958 (NCU); Jefferson Co., Monticello Agricultural Research Center, {\i J. B. Nelson 2425} 29 Apr 1983 (USCH); Leon Co., Lake Iamonia, {\i R. K. Godfrey 73490} 4 May 1974 (NCU); Liberty Co., Telogia, {\i L. C. Anderson 19768} 22 May 2001 (USCH); Tallahassee Co., Tallahassee, {\i R. K. Godfrey 59523} 17 May 1960 (NCU).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Georgia: Baker Co., Ivy Mill Pond, {\i R. F. Thorne 4048} 20 May 1947 (GA); Baker Co., Jones Ecological Research Center, {\i L. K. Kirkman 2105} 6 May 1992 (GA); Baldwin Co., GA 49, {\i D. E. Boufford 18463} 18 May 1976 (NCU); Barton Co., Allatoona, {\i W. H. Duncan 8310} 13 Jun 1948 (GA); Bartow Co., Adairsville, {\i W. H. Duncan 12566} 18 Jun 1951 (GA); Bartow Co., Adairsville, {\i W. H. Duncan 12319} 6 May 1951 (CLEMS); Bartow Co., Adairsville, {\i W. H. Duncan 12402} 18 May 1951 (MARY); Bartow Co., Big Pelfrey Pond, Cassville Mt., {\i P. F-C Greear 64294} 1 Jul 1964 (GA); Brooks Co., Quitman, {\i W. R. Faircloth 4252} 21 Apr 1967 (NCU); Bryan Co., Fort Stewart Military Reservation, {\i M. O. Moore 1824} 30 Apr 1993 (USCH); Bryan Co., Fort Stewart Military Reservation, {\i T. M. Zebryk 0358} 10 Jun 1992 (GA); Butts Co., Jackson, {\i W. J. Crins 9799} 2 May 1994 (MICH); Chatham Co., Port Wentworth, {\i W. H. Duncan 21030} 15 Jun 1958 (GA); Cook Co., Rt. 37, {\i V. E. McNeilus 92-289} 22 May 1992 (MICH); Dade Co., Lookout Mt., {\i A. Cronquist 5411} 27 Jun 1948 (MICH); Decatur Co., Chattahoochee, {\i S. J. Smith 3096} 14 Apr 1947 (MICH); Decatur Co., Lake Seminole, {\i J. R. Manhart 402} 13 Mar 1982 (MICH); DeKalb Co., Stone Mt., {\i J. M. Reade E8053} 25 May 1929 (GA); Early Co., Columbia Dam, {\i G. E. Gibbs 109} 4 Jun 1970 (GA); Early Co., Gilberts Landing, {\i G. E. Gibbs 114} 4 Jun 1970 (GA); Emanuel Co., Swainsboro, {\i G. E. Gibbs 52} 7 May 1970 (GA); Emanuel Co., Oak Park, {\i D. E. Boufford 20592} 30 Apr 1979 (GA); Floyd Co., Mount Berry, {\i H. C. Jones s.n.} 2 Jun 1939 (GA); Gwinnett Co., Apalachee River, {\i J. E. Seward 1197} 23 May 1992 (GA); Harris Co., Flora of Callaway Gardens, {\i Sweeney 425} 21 Apr 1999 (GA); Harris Co., Pine Mountain, {\i S. B. Jones 20796} 18 May 1971 (NCU); Heard Co., Franklin, {\i J. H. Pyron 2832} 30 Apr 1938 (MARY); Jefferson Co., Louisville, {\i G. E. Gibbs 95} 15 May 1970 (GA); Long Co., Beards Bluff, {\i J. R. Bozeman 10291} 23 Jun 1967 (NCU); Marion Co., {\i G. E. Gibbs 117} 4 Jun 1970 (GA); Pike Co., Concord, {\i A. Cronquist 5232} 21 May 1948 (MICH); Rockdale Co., Conyers, {\i A. Cronquist 5179} 14 May 1948 (MICH); Rockdale Co., Conyers, {\i Phillip E. Hyatt 11465} 15 May 2003 (GA); Screven Co., Blackwater Creek, {\i G. E. Gibbs 6} 21 Apr 1970 (GA); Walker Co., Lafayette, {\i W. H. Duncan 12634} 20 Jun 1951 (GA); Wilcox Co., Abbeville, {\i R. L. Lane Jr. 2241} 21 Apr 1968 (GA); Wilcox Co., Abbeville, {\i R. L. Lane, Jr. 2245} 21 Apr 1968 (GA).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Kentucky: Adair Co., Pellyton, {\i R. Naczi 7446} 18 Jun 1998 (MICH); Laural Co., Lily Surface-Mine Experimental Area, {\i R. L. Thompson 583} 23 Jun 1981 (BRIT); Laurel Co., Charlie Creek Swamp, {\i S. Walker 616} 13 Jun 1993 (EKY); Laurel Co., Rock Creek Gorge, {\i R. L. Thompson 89-1112} 23 Jun 1989 (EKY); Letcher Co., Lilley Cornett Woods Research Station, {\i J. D. Sole 772} 25 May 1979 (EKY); McCreary Co., Al Nolin Farm, {\i R. Jones 6467} 22 Jun 1990 (EKY); Montgomery Co., Jeffersonville, {\i M. E. Wharton 27890} 23 Jun 1938 (MICH); Pulaski Co., Woodstock, {\i J. R. Abbott 673} 21 Jun 1991 (EKY); Whitley Co., Grove Powerline, {\i S. Walker 635} 21 Jun 1993 (EKY).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Louisiana: Slidell, {\i K. Rogers 2248} 21 Apr 1969 (NCU); Acadia Co., Midland, {\i C. M. Allen 14944} 17 Apr 1987 (cb); Bienville Co., Saline, {\i C. H. Allen s.n.} 14 May 1977 (WV); Caldwell Co., Hwy 165, {\i J. Kessler 7066} 23 May 1983 (TAES); Caldwell Co., Copenhagen, {\i S. Hill 29928} 15 Apr 1998 (MICH); Claiborne Co., Kisatchie NF, {\i Phillip E. Hyatt 8013} 27 Apr 1998 (MICH); Grant Co., Georgetown, {\i R. D. Thomas 109884} 17 May 1989 (NCU); Grant Co., Packton, {\i Phillip E. Hyatt 7987} 29 Apr 1998 (MICH); Jefferson Davis Co., Elton, {\i C. M. Allen 14924} 17 Apr 1987 (cb); Jefferson Davis Co., Panchoville, {\i J. W. Thieret 30797} 26 Apr 1969 (NCU); LaSalle Co., Chickasaw Creek, {\i P. Laird 392} 27 Apr 1974 (MICH); Lasalle Co., Olla, {\i J. Kessler 7063} 23 May 1983 (TAES); Morehouse Co., Perryville, {\i R. Kral 8653} 24 Apr 1959 (VPI); Morehouse Co., Jones, {\i R. D. Thomas 128306} 30 Apr 1992 (USCH); Natchitoches Co., Creston, {\i R. D. Thomas 110531} 30 May 1989 (NCU); Natchitoches Co., Kisatchie Bayou, {\i Phillip E. Hyatt 10930} 10 May 2002 (MICH); Natchitoches Co., Kisatchie NF, {\i R. D. Thomas 103896} 19 Apr 1988 (cb); Ouachita Co., Schwartz, {\i R. Kral 8628} 24 Apr 1959 (VPI); Ouachita Co., Luna, {\i R. D. Thomas 159189} 30 Apr 1999 (KANU); Ouachita Co., West Monroe, {\i R. D. Thomas 13708} 16 May 1969 (KANU); Rapides Co., LA 167, {\i H. H. Iltis 21656} 19 Apr 1963 (NCU); Rapides Co., Alexandria, {\i C. R. Ball 470} 27 May 1899 (NEB); Rapides Co., Kisatchie, {\i D. A. Duncan 57026} 11 May 1957 (MICH); Rapides Co., Pineville, {\i C. T. Bryson 13456} 16 May 1994 (MICH); St. Martin Co., St. Martinville, {\i J. Hunt 32} 20 Apr 1976 (NCU); St. Tammany Co., Madisonville, {\i R. D. Thomas 83507} 17 May 1983 (MSC); Tangipahoa Co., Bedico, {\i R. D. Thomas 83456} 17 May 1983 (MSC); Vernon Co., Fort Polk, {\i C. Allen 18704} 24 Apr 2002 (USCH); Vernon Co., Fort Polk, {\i C. Allen 18715} 30 Apr 2002 (USCH); Washington Co., , {\i C. M. Allen 8280} 13 Jun 1978 (NCU); Washington Co., Franklinton, {\i K. Rogers 8030} 13 May 1972 (NCU); Washington Co., Sheridan, {\i K. Rogers 8046} 13 May 1972 (NCU); West Caroll Co., Kilbourne, {\i C. T. Bryson 11486} 30 Apr 1992 (CLEMS); West Carroll Co., Kilbourne, {\i R. D. Thomas 128255} 30 Apr 1992 (USCH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Maryland: Calvert Co., Cove Point, {\i B. Steury 980513.25} 13 May 1998 (MICH); Charles Co., Kerrick Swamp, {\i M. T. Strong 2730} 24 Jun 2001 (MICH); Charles Co., Zekiah Swamp, {\i G. Marlowe 791} 18 Jun 1950 (MARY); Lasalle Co., LA 124, {\i P. Laird 554} 27 May 1974 (MARY); Montgomery Co., Bear Island, {\i C. Lea 1585} 14 May 2000 (MARY); Prince Georges Co., Cheltenham Wetland Park, {\i W. D. Longbottom 2106} 3 Jun 1991 (MARY); Prince Georges Co., Beltsville, {\i B. Swanton 1618} 7 Jul 1939 (MARY); Somerset Co., Town of Princess Anne, {\i W. D. Longbottom 2998} 27 May 1992 (MARY); St. Mary\rquote s Co., Tall Timbers, {\i J. E. Bennedict Jr. 6254} 13 Jul 1958 (VPI); St. Mary\rquote s Co., Tall Timbers, {\i J. E. Benedict Jr 2803} 3 Jun 1934 (NCU); Talbot Co., Wittman, {\i C. Lea 1970} 10 Jun 2000 (MARY); Talbot Co., Easton, {\i E. C. Earle 2513} 2 Jun 1940 (WV); Wicomico Co., Green Hill, {\i C. Lea 1655} 20 May 2000 (MARY); Worcester Co., Berlin, {\i C. Lea 1860A} 31 May 2000 (MARY); Worchester Co., Snow Hill, {\i H. O\rquote Neill 7521} 8 Jun 1931 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Mississippi: Attala Co., Kosciusko, {\i C. T. Bryson 8929} 2 May 1990 (MICH); Chickasaw Co., Davis Lake, {\i C. T. Bryson 15241} 20 May 1996 (MICH); Choctaw Co., Jeff Busby Park, {\i C. T. Bryson 13742} 20 May 1994 (MICH); Clarke Co., Quitman, {\i C. T. Bryson 13635} 18 May 1994 (MICH); Clay Co., West Point, {\i C. T. Bryson 3306} 18 May 1982 (MICH); Forrest Co., Geiger Lake, {\i K. E. Rogers 6248-c} 15 May 1971 (NCU); Forrest Co., Paul B. Johnson SP, {\i C. T. Bryson 5542} 29 Apr 1987 (MICH); Greene Co., Hwy 8, {\i S. B. Jones Jr 2817} 23 Apr 1965 (NCU); Greene Co., Sand Hill, {\i C. T. Bryson 13640} 18 May 1994 (MICH); Hancock Co., Bay St. Louis, {\i A. B. Langlois s.n.} 28 Apr 1885 (MICH); Harrison Co., Coopolis, {\i S. M. Tracy 4120} 24 Apr 1898 (KANU); Harrison Co., Mill Creek Bog, {\i C. T. Bryson 10670} 12 Apr 1991 (TAES); Hinds Co., Jackson, {\i C. T. Bryson 15132} 9 May 1996 (MICH); Itawamba Co., Dorsey, {\i C. T. Bryson 13804} 24 May 1994 (MICH); Itawamba Co., Fulton, {\i C. T. Bryson 12397} 26 May 1993 (MICH); Jackson Co., Hurley, {\i C. T. Bryson 4171} 15 Apr 1986 (MICH); Lamar Co., Lake Serene, {\i K. E. Rogers 1175} 14 May 1969 (NCU); Lowndes Co., Mayhew, {\i C. T. Bryson 9869} 17 May 1990 (MICH); Madison Co., Jackson, {\i R. Webster 1524} 8 May 1978 (TAES); Montgomery Co., Wenard, {\i S. D. Jones 4741} 16 May 1990 (MICH); Oktibbeha Co., Sturgis, {\i C. T. Bryson 3831} 8 May 1985 (MICH); Oktibbeha Co., Sturgis, {\i C. T. Bryson 8612} 16 May 1989 (MICH); Pearl River Co., Picayune, {\i F. H. Sargent 8128} 21 Apr 1964 (NCU); Pearl River Co., Picayune, {\i C. T. Bryson 13555} 17 May 1994 (MICH); Pearl River Co., Poplarville, {\i C. T. Bryson 10689} 12 Apr 1991 (TAES); Perry Co., Beaumont, {\i C. T. Bryson 15047} 30 Apr 1996 (MICH); Perry Co., Janice, {\i R. Naczi 5124} 30 Apr 1996 (MICH); Perry Co., Runnelstown, {\i C. T. Bryson 13598} 18 May 1994 (MICH); Rankin Co., Pelahatchie, {\i C. T. Bryson 3244} 8 May 1982 (MICH); Scott Co., Bienville NF, {\i C. T. Bryson 10803} 10 May 1991 (TAES); Stone Co., Stone/Harrison Co. Line, {\i C. T. Bryson 10671} 12 Apr 1991 (TAES); Walthall Co., McGee Creek, {\i C. T. Bryson 10702} 12 Apr 1991 (TAES); Warren Co., Redwood, {\i C. T. Bryson 11253} 14 Apr 1992 (USCH); Wayne Co., Wayne/Greene Co. Line, {\i C. T. Bryson 13643} 18 May 1994 (MICH); Webster Co., Tomnolen, {\i C. T. Bryson 7780} 25 May 1988 (MICH); Winston Co., Louisville, {\i C. T. Bryson 3340} 22 May 1982 (MICH); Yalobusha Co., Gums, {\i C. T. Bryson 15228} 20 May 1996 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 North Carolina: Anson Co., Lilesville, {\i A. E. Radford 43647} 20 May 1961 (NCU); Beaufort Co., Chocowinity, {\i A. E. Radford 33417} 17 May 1958 (NCU); Bertie Co., Windsor, {\i H. E. Ahles 41353} 29 May 1958 (NCU); Brunswick Co., Wilmington, {\i A. E. Radford 269} 4 May 1940 (NCU); Caswell Co., Frogsboro, {\i D. F. Brunton 12609} 5 Jul 1996 (MICH); Catawba Co., Long Island, {\i J. A. McNeely 1415} 11 May 1960 (NCU); Chatham Co., Merry Oaks, {\i A. E. Radford 42863} 18 May 1960 (NCU); Chowan Co., Albermarle Sound, {\i H. E. Ahles 44135} 24 Jun 1958 (USCH); Chowan Co., St. Johns, {\i H. E. Ahles 44161} 24 Jun 1958 (NCU); Chowan Co., Yeopim, {\i H. E. Ahles 39857} 9 May 1957 (NCU); Craven Co., Croatan NF, {\i J. R. Snyder 821} 17 May 1976 (NCU); Cumberland Co., Linden, {\i H. E. Ahles 24376} 4 May 1957 (NCU); Davidson Co., Silver Valley, {\i A. E. Radford 12748} 16 Jun 1956 (NCU); Davie Co., Cooleemee, {\i A. E. Radford 10943} 11 May 1956 (NCU); Durham Co., Durham, {\i H. L. Blomquist 14511} 20 May 1949 (NY); Durham Co., Durham, {\i H L Blomquist 13455} 23 May 1944 (KANU); Edgecombe Co., Rocky Mount, {\i A. E. Radford 33983} 27 May 1958 (NCU); Franklin Co., Mapleville, {\i W. B. Fox 4847} 23 Jun 1951 (MICH); Gaston Co., Spencer Mt., {\i H. E. Ahles 15020} 21 Jun 1956 (NCU); Gates Co., White Oak Pocosin, {\i J. A. Duke 831} 30 May 1958 (NCU); Granville Co., Tar River, {\i B. R. Dayton 1677} 21 May 1964 (NCU); Granville Co., Creedmoor, {\i A. E. Radford 45470} 12 Jun 1968 (NCU); Guilford Co., Gibsonville, {\i C. R. Bell 12463} 3 Jun 1958 (NCU); Halifax Co., Halifax, {\i H. E. Ahles 14851} 19 Jun 1956 (NCU); Hartford Co., Winton, {\i H. E. Ahles 41569} 30 May 1958 (NCU); Hertford Co., Como, {\i H. E. Ahles 41643} 30 May 1958 (NCU); Hoke Co., Antioch, {\i H. E. Ahles 25088} 12 May 1957 (NCU); Hyde Co., Scranton, {\i A. E. Radford 33682} 18 May 1958 (NCU); Johnston Co., Smithfield, {\i A. E. Radford 1079} 22 May 1941 (NCU); Johnston Co., Wendell, {\i A. E. Radford 25190} 19 Jun 1957 (NCU); Jones Co., Hargetts Store, {\i A. E. Radford 37144} 18 Jul 1958 (NCU); Lee Co., Sanford, {\i A. E. Radford 2013} 18 May 1946 (NCU); Lenoir Co., Seven Springs, {\i A. E. Radford 22170} 6 May 1957 (NCU); Martin Co., Smithwick, {\i A. E. Radford 35475} 16 Jun 1958 (NCU); Moore Co., Eastwood, {\i A. E. Radford 43347} 11 Jun 1960 (NCU); Northampton Co., US 158, {\i H. E. Ahles 41767} 31 May 1958 (NCU); Pamlico Co., Olympia, {\i A. E. Radford 35829} 5 Jul 1958 (NCU); Pasquotank Co., Weeksville, {\i H. E. Ahles 40038} 10 May 1958 (NCU); Perquimans Co., Snug Harbor, {\i L. J. Uttal 9774} 12 Jun 1973 (VPI); Pitt Co., Bethel, {\i A. E. Radford 34791} 14 Jun 1958 (NCU); Pitt Co., Staton, {\i A. E. Radford 34949} 14 Jun 1958 (MICH); Randolph Co., Sawyer mine site, {\i D. E. Wickland 972} 19 May 1976 (NCU); Richmond Co., Hoffman, {\i A. E. Radford 11285} 19 May 1956 (NCU); Scotland Co., Silver Hill, {\i H. E. Ahles 24784} 8 May 1957 (NCU); Stanly Co., Albermarle, {\i H. E. Ahles 11863} 3 May 1956 (NCU); Stokes Co., Walnut Cove, {\i A. E. Radford 34610} 4 Jun 1958 (NCU); Stokes Co., Walnut Cove, {\i A. E. Radford 34706} 4 Jun 1958 (NCU); Tyrell Co., St. Rd. 1200 & St. Rd. 1308, {\i C. B. McDonald 1722} 17 May 1980 (WV); Tyrrell Co., Newfoundland, {\i A. E. Radford 33862} 18 May 1958 (NCU); Union Co., Monroe, {\i H. E. Ahles 27558} 7 Jun 1957 (NCU); Wake Co., Morrisville, {\i A. E. Radford 42702} 17 May 1959 (NCU); Warren Co., Oine, {\i H. E. Ahles 12806} 24 May 1956 (NCU); Washington Co., Hoke, {\i A. E. Radford 35071} 15 Jun 1958 (NCU); Wayne Co., Princeton, {\i A. E. Radford 25613} 21 Jun 1957 (NCU); Wayne Co., Princeton, {\i A. E. Radford 21939} 3 May 1957 (NCU); Wilson Co., Sims, {\i A. E. Radford 38036} 28 Jul 1958 (NCU).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Oklahoma: Choctaw Co., Sawyer, {\i B. W. Hoagland HUGO187} 15 May 2001 (OKL); Choctaw Co., Schooler Lake, {\i S. Carpenter s.n.} 18 May 1995 (OKL); Latimer Co., Robbers\rquote Cave SP, {\i P. Folley 2278} 24 Apr 1999 (OKL); McCurtain Co., Red Slough WMA, {\i F. Johnson RSGS344} 24 Jun 1999 (OKL).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Pennsylvania: Philadelphia, {\i J. B. Bristow 22} 20 Jun 1880 (MSC).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 South Carolina: Abbeville Co., Abbeville, {\i C. N. Horn 9063} 13 May 1995 (CLEMS); Abbeville Co., Calhoun Falls, {\i A. E. Radford 22677} 13 May 1957 (NCU); Abbeville Co., Lowndesville, {\i W. C. Credle 725} 21 May 1979 (NCU); Abbeville Co., Lowndesville, {\i C. C. Douglass 1773} 23 May 1984 (NCU); Abbeville Co., Richard Russell Dam and Lake Area, {\i W. C. Creadle 2914} 12 Jun 1980 (CLEMS); Aiken Co., Savannah River Plant, {\i J. B. Nelson 3255} 1 May 1984 (USCH); Aiken Co., Savannah River Project, {\i A. E. Hodge 837} 8 May 1984 (CLEMS); Aiken Co., Savannah River Site, {\i Phillip E. Hyatt 5935} 4 May 1994 (USCH); Aiken Co., Savannah River Site, {\i T. Govus 88} 18 May 1993 (USCH); Aiken Co., SRP, {\i F. Gabrielson 232} 3 Jun 1966 (NCU); Allendale Co., Barton, {\i C. R. Bell 2644} 13 May 1956 (NCU); Bamberg Co., Bamberg, {\i C. N. Horn 4424} 28 May 1991 (USCH); Bamberg Co., Denmark, {\i J. B. Nelson 15475} 27 May 1994 (USCH); Barnwell Co., Savannah River Operations Area, {\i W. T. Batson s.n.} 2 Jul 1952 (USCH); Barnwell Co., Carolina Bays, {\i A. E. Hodge 942} 23 May 1984 (CLEMS); Barnwell Co., Savannah River Operations, {\i W. T. Batson s.n.} 28 Apr 1952 (NCU); Barnwell Co., Savannah River Plant, {\i A. E. Hodge 942} 23 May 1984 (USCH); Barnwell Co., Savannah River Site, {\i Phillip E. Hyatt 5883} 22 Apr 1994 (USCH); Barnwell Co., Sister Lake, {\i A. E. Hodge 823} 8 May 1984 (CLEMS); Beaufort Co., Callawassie Island, {\i C. A. Aulbach-Smith 2094} 27 Apr 1982 (CLEMS); Beaufort Co., Combahee River, {\i P. D. McMillan 2181} 11 Apr 1997 (USCH); Beaufort Co., Yemassee, {\i H. E. Ahles 12317} 10 May 1956 (NCU); Berkeley Co., Francis Marion NF, {\i S. R. Hill 18007} 15 May 1987 (CLEMS); Berkeley Co., Huger, {\i J. B. Nelson 14096} 14 May 1993 (USCH); Berkeley Co., Moncks Corner, {\i J. B. Nelson 7630} 18 May 1989 (USCH); Berkeley Co., Moncks Corner, {\i H. E. Ahles 26472} 27 May 1957 (NCU); Berkeley Co., Oakley, {\i H. E. Ahles 26529} 27 May 1957 (NCU); Berkeley Co., Santee Experimental Forest, {\i S. R. Hill 22987} 25 Apr 1992 (CLEMS); Charleston Co., Palmetto Islands Co. Park, {\i M. M. Smith 815} 7 Aug 1985 (CLEMS); Charleston Co., Colleton-Charelston Co. Line, {\i H. E. Ahles 25735} 20 May 1957 (NCU); Cherokee Co., Blacksburg, {\i R. Kral 60153} 26 May 1977 (USCH); Chester Co., Lowrys, {\i C. R. Bell 7395} 13 May 1957 (NCU); Chesterfield Co., Carolina Sandhills National Wildlife Refuge, {\i J. Castrale 107} 8 May 1977 (USCH); Clarendon Co., Manning, {\i J. B. Nelson 14031} 30 Apr 1993 (USCH); Clarendon Co., St. Paul, {\i A. E. Radford 24356} 11 Jun 1957 (NCU); Clarendon Co., St. Paul, {\i A. E. Radford 24372} 11 Jun 1957 (NCU); Colleton Co., Bells, {\i C. R. Bell 2311} 7 May 1956 (NCU); Colleton Co., Edisto, {\i D. Soblo 496} 15 May 1987 (USCH); Darlington Co., Hartsville, {\i J. B. Norton s.n.} 26 Apr 1921 (NCU); Dillon Co., Dillon, {\i H. E. Ahles 27806} 12 Jun 1957 (NCU); Dillon Co., Little Pee Dee SP, {\i M. T. Strong 2327} 19 May 2000 (MICH); Edgefield Co., Edgefield, {\i J. B. Nelson 18128} 24 Apr 1997 (USCH); Edgefield Co., Sumter NF, {\i J. B. Nelson 17208} 8 May 1996 (USCH); Edgefield Co., Trenton, {\i A. E. Radford 22569} 12 May 1957 (NCU); Fairfield Co., Lake Wateree, {\i J. R. Clonts s.n.} 24 Apr 1976 (MICH); Fairfield Co., Monticello, {\i J. B. Nelson 2571} 22 Jun 1983 (USCH); Fairfield Co., Winnsboro, {\i C. N. Horn 2694} 4 Jun 1988 (TAES); Florence Co., Cowards, {\i C. R. Bell 13396} 30 Jun 1958 (NCU); Florence Co., Lake City, {\i C. R. Bell 6125} 19 Apr 1957 (NCU); Georgetown Co., Rhems, {\i A. E. Radford 21484} 22 Apr 1957 (NCU); Greenwood Co., Hodges, {\i A. E. Radford 23001} 25 May 1957 (NCU); Hampton Co., Belmont Plantation, {\i R. D. Porcher Jr. 282} 20 May 1971 (USCH); Hampton Co., Yemassee, {\i C. R. Bell 2593} 12 May 1956 (WV); Horry Co., Conway, {\i C. N. Horn 3356} 25 May 1989 (USCH); Jasper Co., Hazzard\rquote s Creek, {\i C. A. Aulbach-Smith 2133} 28 Apr 1982 (USCH); Jasper Co., SC 170, {\i C. R. Bell 2413} 9 May 1956 (NCU); Jasper Co., Hardeeville, {\i J. B. Nelson 15384} 26 Apr 1994 (USCH); Jasper Co., Hardeeville, {\i C. A. Aulbach-Smith 3098} 9 May 1984 (USCH); Jasper Co., Hardeeville, {\i J. A. Churchill s.n.} 10 May 1969 (MSC); Jasper Co., Hardeeville, {\i J. B. Nelson 15384} 26 Apr 1994 (USCH); Kershaw Co., Westville, {\i A. E. Radford 23784} 4 Jun 1957 (NCU); Lancaster Co., Lancaster, {\i H. E. Ahles 27287} 6 Jun 1957 (NCU); Laurens Co., Clinton, {\i C. N. Horn 6585} 8 May 1993 (USCH); Laurens Co., Mountville, {\i C. R. Bell 8058} 3 Jun 1957 (NCU); Lee Co., Bishopville, {\i A. E. Radford 24146} 6 Jun 1957 (NCU); Lexington Co., Cayce, {\i W. T. Batson s.n.} 2 Jun 1963 (USCH); Marion Co., SC 908, {\i J. Nelson 10566} 3 May 1991 (MICH); Marlboro Co., Blenheim, {\i A. E. Radford 12662} 10 Jun 1956 (NCU); McCormick Co., Clarks Hill, {\i A. E. Radford 22368} 11 May 1957 (NCU); McCormick Co., Sumter NF, {\i J. B. Nelson 17177} 8 May 1996 (USCH); Newberry Co., Newberry, {\i C. N. Horn 2159} 11 Jul 1987 (USCH); Newberry Co., Newberry, {\i J. B. Nelson 22649} 23 May 2002 (USCH); Newberry Co., Pomaria, {\i J. B. Nelson 22636} 23 May 2002 (USCH); Oconee Co., Chauga River, {\i J. D. Tobe 847} 5 Jun 1986 (CLEMS); Orangeburg Co., Orangeburg, {\i H. E. Ahles 25237} 18 May 1957 (NCU); Orangeburg Co., Sixteen Island in Lake Marion, {\i A. B. Pittman 04180102} 18 Apr 2001 (USCH); Pickens Co., Pendleton, {\i J. F. Townsend 1501} 20 May 1997 (CLEMS); Richland Co., Columbia Country Club, {\i J. B. Nelson 7521} 15 May 1989 (USCH); Richland Co., Eau Clair, {\i A. B. Pittman 05109724} 10 May 1997 (USCH); Richland Co., Ballentine, {\i J. B. Nelson 15571} 10 Jun 1994 (MICH); Richland Co., Columbia, {\i C. N. Horn 5465} 21 Jul 1992 (MICH); Richland Co., Congaree Swamp National Monument, {\i L. L. Gaddy 052998} 29 May 1998 (USCH); Richland Co., Fort Jackson, {\i J. B. Nelson 10297} 22 Apr 1991 (USCH); Saluda Co., Saluda River, {\i C. A. Aulbach-Smith 2626} 23 Jun 1983 (USCH); Saluda Co., Sumter NF, {\i J. B. Nelson 5438} 15 May 1987 (USCH); Saluda Co., Ridge Spring, {\i A. E. Radford 23069} 26 May 1957 (NCU); Union Co., Padgets Creek, {\i C. N. Horn 5532} 1 Aug 1992 (MICH); Union Co., Sumter NF, {\i C. N. Horn 6802} 5 Jun 1993 (MICH); Williamsburg Co., Black River, {\i J. B. Nelson 7589} 18 May 1989 (USCH); Williamsburg Co., Cades, {\i J. B. Nelson 17304} 7 Jun 1996 (USCH); Williamsburg Co., Cades Savannah, {\i J. F. Townsend 1005} 7 Jun 1996 (CLEMS); Williamsburg Co., Coopers, {\i A. E. Radford 24784} 12 Jun 1957 (NCU); York Co., Clover, {\i D. F. Brunton 12200} 27 May 1995 (MICH); York Co., Kings Mountain SP, {\i D. E. Kennemore Jr. 436} 20 May 1993 (USCH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Tennessee: Bledsoe Co., Mt. Zion School, {\i R. Jones 4767b} 22 May 1987 (EKY); Coffee Co., Double Pond, {\i V. E. McNeilus 92-411} 1 Jun 1992 (MICH); Cumberland Co., Crossville Memorial Airport, {\i V. E. McNeilus 89-410} 17 Jun 1989 (MSC); Cumberland Co., Mayland, {\i V. E. McNeilus 89-424} 17 Jun 1989 (MICH); Fentress Co., Hwy 154, {\i R. Jones 4803} 31 May 1987 (EKY); Franklin Co., Tullahoma, {\i H. R. DeSelm s.n.} 31 May 1962 (NCU); Hardin Co., Cravan Rd., {\i H. R. DeSelm s.n.} 10 Jun 1993 (EKY); Loudon Co., Sweet Water, {\i H. DeSelm 242} 26 May 1979 (EKY); Morgan Co., Lilly Bridge, {\i V. E. McNeilus 90-360} 19 Jun 1990 (TAES); Putnam Co., Baxter, {\i V. E. McNeilus 95-291} 3 Jun 1995 (MICH); Scott Co., US 27, {\i R. Jones 6449} 22 Jun 1990 (EKY); Van Buren Co., Bledsoe Co. Line, {\i V. E. McNeilus 92-521} 27 Jun 1992 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Texas: Jefferson, {\i R. Bebb 2625} 11 May 1905 (OKL); Jefferson, {\i R. Bebb 2562} 10 May 1905 (OKL); Anderson Co., Engeling WMA, {\i E. Bridges 13723} 21 May 1990 (MICH); Angelina Co., Angelina NF, {\i S. L. Orzell 9075} 10 Apr 1989 (MICH); Hardin Co., Kountze, {\i S. D. Jones 2608} 29 Apr 1989 (TAES); Hardin Co., Lumberton, {\i R. Jordan 5} 17 Apr 1993 (TAES); Hardin Co., Lumberton, {\i R. Jordan 1} 17 Apr 1993 (TAES); Hardin Co., Silsbee, {\i H. B. Parks 22297?} 15 May 1937 (TAES); Harris Co., Nimitz High School Outdoor Learning Center, {\i J. Kessler 3332} 17 Apr 1980 (TAES); Henderson Co., Slaughter Lakes, {\i S. L. Orzell 6563} 4 May 1988 (MICH); Houston Co., Hwy 21, {\i S. D. Jones 1041} 6 Apr 1988 (TAES); Houston Co., Houston, {\i R. Bebb 1204} 20 May 1900 (OKL); Jasper Co., FM 105, {\i S. D. Jones 1659} 22 May 1988 (TAES); Jasper Co., Angelina NF, {\i S. Orzell 6239} 13 Apr 1988 (MICH); Leon Co., Eunice, {\i S. Orzell 6507} 3 May 1988 (MICH); Madison Co., Lenz Property, {\i A. K. Neill 1338} 2 Apr 1998 (TAMU); Milam Co., Milano, {\i S. E. Wolff 3975} 22 May 1933 (TAES); Montgomery Co., Sam Houston NF, {\i L. E. Brown 21786} 8 Mar 1998 (TAES); Nacagdoches Co., Nacagdoches, {\i J. A. Churchill s.n.} 27 Apr 1955 (MSC); Nacagdoches Co., Nacogdoches, {\i E. S. Nixon 2425} 18 May 1971 (TAES); Orange Co., FM 105, {\i S. D. Jones 1638} 22 May 1988 (TAES); Panola Co., Carthage, {\i C. L. Lundell 10493} 7 May 1941 (MICH); Polk Co., Hwy 190, {\i S. D. Jones 1459} 11 May 1988 (TAES); Robertson Co., Mill Creek Bog, {\i H. D. Wilson 3706} 9 May 1981 (TAMU); Robertson Co., Mill Creek Bog, {\i S. D. Jones 1090} 30 Apr 1988 (TAES); San Jacinto Co., Big Creek, {\i S. L. Orzell 6452} 21 Apr 1988 (MICH); Shelby Co., FM 139, {\i S. D. Jones 1331} 17 May 1988 (TAES); Shelby Co., Chambers Creek Bayou, {\i S. D. Jones 1363} 17 May 1988 (TAES); Smith Co., Bier Creek, {\i D. Wilkinson 787} 14 Apr 1972 (MARY); Tyler Co., Big Thicket National Preserve, {\i R. Jordan 6} 4 May 1993 (TAES); Walker Co., Hwy 75, {\i J. Kessler 5678} 7 May 1982 (TAES); Walker Co., Hunstville, {\i S. E. Wolff 4973} 13 Apr 1934 (TAES); Walker Co., Huntsville, {\i D. S. Correll 27360} 11 May 1963 (NCU); Walker Co., Huntsville, {\i B. L. Lipscomb 1705} 2 Jun 1976 (NCU); Wood Co., Hwy 49, {\i S. D. Jones 2835} 13 May 1989 (TAES); Wood Co., Wood Co. Rd 3990, {\i S. D. Jones 2918} 16 May 1989 (TAES); Wood Co., Crow, {\i C. L. Lundell 9472} 14 Jun 1940 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Virginia: City of Hampton, {\i P. Baldwin 786} 17 May 1993 (VPI); Accomack Co., New Church, {\i T. Bradley 23590} 17 Jun 1990 (CLEMS); Chesapeake Co., Dismal Swamp, {\i Emery C Leonard; Ellsworth P Killip 371} 2 Jun 1921 (KANU); Fairfax Co., Ft. Hunt, {\i S. F. Blake s.n.} 17 Jun 1933 (NCU); Greensville Co., Quarrell\rquote s Creek, {\i Merritt L Fernald; J B Lewis 14581} 22 Jun 1944 (KANU); James City Co., Jamestown Island, {\i L. E. Loetterle 823} 24 May 1970 (NCU); King George Co., {\i D. M. E. Ware 8238} 18 Jun 1983 (CLEMS); Madison Co., Aroda, {\i T. Bradley 23364} 10 Jun 1990 (USCH); Nansemond Co., Blackwater River, {\i H. E. Ahles 58176} 22 Jun 1963 (NCU); Norfolk Co., Portsmouth, {\i N. L. Britton s.n.} 25 May 1893 (NEB); Pittsylvania Co., Co. Rd 630, {\i W. R. Ruska s.n.} 20 Jul 1968 (NCU); Prince George Co., Petersburg, {\i R. Kral 13202} 6 Jul 1961 (VPI); Richmond Co., Ivandale, {\i T. Bradley 22377} 11 Jun 1988 (CLEMS); Suffolk Co., South Quay, {\i R. H. Simmons s.n.} 20 May 2000 (MICH); Surry Co., Vepco Surry Nuclear Power Station, {\i D. M. E. Ware 4849} 6 Jun 1973 (NCU); Surry Co., VEPCO Surry Nuclear Power Station, {\i D. M. E. Ware 5337} 23 May 1974 (NCU).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 {\b {\scaps Carex hirsutella}}. Canada. Quebec: Brome-Missisquoi Co., Cowansville, {\i W. G. Dore 1026} 24 Jun 1934 (CAN); Brome-Missisquoi Co., Bedford, {\i J-P. Bernard 5093} 28 Jul 1955 (CAN); Brome-Missisquoi Co., Frelighsburg, {\i M. Raymond 47} 21 Jun 1952 (CAN).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Ontario: Elgin Co., West Lorne, {\i M. J. Oldham 15913} 7 Oct 1993 (MICH); Essex Co., Cedar Creek, {\i W. Botham 1650} 17 Jun 1974 (CAN); Essex Co., Essex, {\i A. A. Reznicek 7752} 9 Jul 1986 (MICH); Essex Co., Gosfield, {\i M. J. Oldham 2901} 26 Jun 1982 (MICH); Essex Co., Gosfield, {\i M. J. Oldham 2892} 26 Jun 1982 (MICH); Essex Co., Harrow, {\i M. J. Oldham 11052} 11 Jun 1990 (MICH); Essex Co., Kingsville, {\i M. J. Oldham 2901} 26 Jun 1982 (CAN); Haldimand-Norfolk Co., Cayuga, {\i M. J. Oldham 17283} 17 Jun 1995 (MICH); Haldimand-Norfolk Co., Dunville, {\i M. J. Oldham 6391} 22 Jun 1986 (MICH); Haldimand-Norfolk Co., Port Dover, {\i D. A. Sutherland 7046} 10 Jun 1986 (CAN); Kent Co., Bothwell, {\i R. Klinkenburg 198} 2 Aug 1982 (MICH); Kent Co., Clearville, {\i V. R. Brownell 83-105} 13 Jun 1983 (CAN); Middlesex Co., Parkhill, {\i M. J. Oldham 14158} 13 Aug 1992 (MICH); Niagara Co., Niagara Falls, {\i Macoun 16545} 25 Jun 1892 (CAN); Niagara Co., Niagara River Whirlpool, {\i Macoun 33748} 9 Jul 1901 (CAN); Niagara Co., Queenston Heights, {\i Macoun 16661} 7 Jun 1882 (CAN).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 U. S. A. Western Reserve, {\i G. B. Ashcroft s.n.} 1 Jun 1897 (TAES).\par {\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Alabama: Lauderdale Co., Florian, {\i D. Isely 3554} 25 Jun 1944 (MSC); Lawrence Co., Bankhead NF, {\i C. T. Bryson 7587} 8 May 1988 (MSC); Madison Co., Huntsville, {\i C. T. Bryson 3539} 23 May 1983 (MICH); Madison Co., Monte Sano Mt., {\i J. R. Manhart 263} 9 May 1981 (MICH); Madison Co., Monte Sano Mt., {\i C. T. Bryson 4394} 25 May 1986 (MICH); Madison Co., Monte Sano Mt., {\i C. T. Bryson 2889} 8 May 1980 (GA); Madison Co., Monte Sano Mt., {\i C. T. Bryson 2047} 27 May 1978 (GA). }\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Arkansas: {\i R. Bebb 4024} 21 May 1939 (OKL); Baxter Co., Henderson, {\i D. Castaner 8409} 22 May 1985 (MICH); Baxter Co., Henderson, {\i D. Castaner 8418} 22 May 1985 (VPI); Clay Co., Pollard, {\i Phillip E. Hyatt 4381.11} 22 May 1992 (MICH); Crawford Co., Figure Five Community, {\i Phillip E. Hyatt 9301} 18 May 2000 (MICH); Fulton Co., Salem Quad., {\i S. Orzell 1947} 23 May 1985 (MICH); Fulton Co., Hwy 87, {\i D. Castaner 8428} 22 May 1985 (MICH); Fulton Co., Salem, {\i Larry J. Harms 2219} 2 May 1965 (KANU); Garland Co., Iron Springs Rec. Area, {\i A. A. Reznicek 8496} 5 Jun 1989 (MICH); Greene Co., U. S. Hwy. 412, {\i Phillip E. Hyatt 4622.38} 7 Jun 1992 (MICH); Greene Co., Crowley\rquote s Ridge SP, {\i Phillip E. Hyatt 4070.28} 16 Jun 1991 (MICH); Jackson Co., Heffington, {\i Phillip E. Hyatt 10361} 26 May 2001 (MICH); Lee Co., St. Francis NF, {\i Phillip E. Hyatt 4637.39} 9 Jun 1992 (MICH); Madison Co., Combs, {\i E. B. Smith 3835} 19 Jun 1984 (WV); Marion Co., Bull Shoals Lake, {\i Phillip E. Hyatt 4054.45} 8 Jul 1991 (MICH); Marion Co., Hand Valley, {\i Phillip E. Hyatt 4823.45} 1 May 1992 (MICH); Monroe Co., Fargo, {\i R. Naczi 2455} 21 May 1990 (MICH); Montgomery Co., Albert Pike Campground, {\i Phillip E. Hyatt 9277} 18 May 2000 (MICH); Montgomery Co., Cox Springs, {\i C. T. Bryson 4275} 10 May 1986 (MICH); Montgomery Co., Little Missouri River Falls Rec. Area, {\i C. T. Bryson 4350} 10 May 1986 (MICH); Montgomery Co., Mena, {\i D. E. Boufford 25489} 8 May 1991 (MICH); Phillips Co., St. Francis NF, {\i Phillip E. Hyatt 4657.54} 11 Jun 1992 (MICH); Polk Co., Cossatot River Rec. Area, {\i S. D. Jones 10146} 18 May 1993 (MICH); Polk Co., Mena, {\i D. E. Boufford 25511} 9 May 1991 (MICH); Polk Co., Mena, {\i C. T. Bryson 4318} 10 May 1986 (MSC); Polk Co., Mena, {\i D. E. Boufford 25604} 13 May 1991 (MICH); Polk Co., Rich Mt., {\i C. T. Bryson 4294} 10 May 1986 (MICH); Pulaski Co., North Little Rock, {\i J. Kessler 7093} 23 Jun 1983 (TAES); Randolph Co., Sutton Freewill Baptist Church, {\i Phillip E. Hyatt 5964} 9 May 1994 (MICH); Saline Co., Congo Rd., {\i L. E. McKinney 2536} 9 May 1987 (MICH); Scott Co., Y City, {\i D. E. Boufford 25571} 11 May 1991 (MICH); Searcy Co., Buffalo National River, {\i Phillip E. Hyatt 5679} 17 Jun 1993 (MICH); Sebastain Co., New Hartford, {\i Phillip E. Hyatt 7461} 18 May 1997 (MICH); Sharp Co., Hwy 230, {\i D. Castaner} 9097 9 May 1986 (MICH); Sharp Co., Cherokee Village, {\i Phillip E. Hyatt 4327.68} 12 May 1992 (MICH); Sharp Co., Poughkeepsie, {\i Phillip E. Hyatt 7167} 25 May 1996 (MICH); Stone Co., Ozark NF, {\i Phillip E. Hyatt 5543} 27 May 1993 (MICH); Stone Co., Sylamore Ranger District, {\i Phillip E. Hyatt 5324} 13 May 1993 (MICH); Van Buren Co., Fairfield Bay, {\i Phillip E. Hyatt 5293} 8 May 1993 (MICH); White Co., Sunnydale, {\i Phillip E. Hyatt 4031.73} 26 May 1991 (MICH); Yell Co., Rover, {\i Phillip E. Hyatt 8074} 3 May 1998 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Connecticut: Hartford Co., Berlin, {\i G. B. Rossbach 992} 8 Jun 1956 (NCU); Hartford Co., Cedar Mt., {\i C. A. Weatherby 3077} 24 Jun 1913 (GH); Hartford Co., Noyes Brook Region, {\i A. W. Drigg s.n.} 27 Jun 1902 (GH); Hartford Co., Short Mt., {\i L. J. Mehrhoff 12131} 17 Jun 1987 (MICH); Hartford Co., Southington, {\i L. Andrews s.n.} 19 Jun 1898 (GH); Hartford Co., Simsbury, {\i W. H. Moorhead III 3223} 22 Jul 1996 (GH); Hartford Co., Wethersfield, {\i V. Marttala 3141} 20 Jul 1973 (MICH); Litchfield Co., Salisbury, {\i L. J. Mehrhoff 15765} 10 Jul 1992 (MICH); Litchfield Co., Woodbury. Rag Land, {\i W. H. Moorehead III 3228} 25 Jul 1996 (GH); Middlesex Co., Middletown, {\i C. A. Weatherby 4492} 4 Jul 1919 (GH); New Haven Co., Hamden, {\i A. E. Blewitt 1670} 19 Jun 1913 (GH); New Haven Co., New Haven, {\i L. Mehrhoff 16259} 16 Sep 1992 (MICH); New Haven Co., Southbury, {\i L. J. Mehrhoff 15644} 15 Jun 1992 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 District of Columbia: Potomac, {\i Agnes Chase 2392} 25 Jun 1904 (MICH); Potomac Valley, Mt. Rainier, {\i A. Chase 2415} 2 Jul 1904 (MICH); Washington, D. C., {\i E. S. Stute s.n.} 1896 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Georgia: Bartow Co., Allatoona Station, {\i G. W. McDowell 613} 13 Jun 1948 (CLEMS); Elbert Co., Savannah River, {\i W. H. Duncan 9419} 25 Apr 1949 (GA); Elbert Co., Richard Russell Dam and Lake Area, {\i W. C. Credle 731} 21 May 1979 (CLEMS); Elbert Co., Richard Russell Dam and Lake Area, {\i M. G. Douglass 1438} 31 May 1978 (CLEMS); Elbert Co., Russell Dam and Lake area, {\i C. C. Douglass 1438} 31 May 1978 (USCH); Elbert Co., Savannah River Site, {\i W. C. Credle 731} 21 May 1979 (NCU); Elbert Co., Savannah River Site, {\i C. C. Douglass 1438} 31 May 1978 (NCU); Lincoln Co., Graves Mt., {\i W. H. Duncan 11142} 24 Jun 1950 (GA); Stephens Co., Lake Russell WMA, {\i J. Cruse 752} 18 May 1995 (GA).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Illinois: Alexander Co., Shawnee NF, {\i L. R. Phillipe 24299} 25 May 1994 (MICH); Champaign Co., Urbana, {\i H. A. Gleason s.n.} 26 May 1902 (GH); Champaign Co., Urbana, {\i A. S. Pease 13079} 30 May 1911 (GH); Christian Co., Taylorville, {\i R. A. Evers 86923} 1 Jun 1966 (NCU); Cook Co., Hickory Hills, {\i S. Hill 29331} 11 Jun 1997 (MICH); Cook/Lake Co., Deer Park, {\i H. Haleuman s.n.} 1 Jun 1895 (NEB); Franklin Co., Rend Lake, {\i T. G. Lammers 9472} 25 Jun 1995 (MICH); Jackson Co., Makanda, {\i H. A. Gleason s.n.} 12 Jun 1903 (GH); Jackson Co., Makanda, {\i H. A. Gleason 1058} 23 Jun 1903 (GH); Jackson Co., Murphysboro SP, {\i D. Castaner 2298} 1 Jun 1972 (MO); Johnson Co., Bell Pond Natural Area, {\i L. R. Phillipe 14086} 21 Jun 1990 (MICH); Johnson Co., Shawnee NF, {\i A. S. Biagi 2885} 30 Jul 1994 (MSC); Macon Co., Timbered Hill, {\i I. W. Clokey 2279} 18 Jun 1915 (NEB); Marshall Co., Steuben Twp., {\i V. H. Chase 1811} 7 Jun 1908 (GH); McDonough Co., Emmet, {\i S. Hill 29261} 5 Jun 1997 (MICH); Peoria Co., Bellevue, {\i V. H. Chase 8901} 10 Jul 1947 (MICH); Peoria Co., Bellevue, near, {\i Virginius H Chase 8722} 7 Jun 1947 (KANU); Peoria Co., Glen Oak Park, {\i V. H. Chase 3583} 22 Jun 1921 (MICH); Peoria Co., Medina Tp., {\i V. H. Chase 7839} 4 Jul 1941 (MO); Peoria Co., Peoria, {\i R. Bebb 2771} 5 Jun 1905 (OKL); Peoria Co., Peoria, {\i F. E. McDonald s.n.} 1 Jul 1912 (MSC); Peoria Co., Peoria, {\i F. E. McDonald s.n.} 1 Jun 1904 (OKL); Peoria Co., Peoria, {\i F. E. McDonald s.n.} 1 Jul 1895 (MSC); Peoria Co., Peoria, {\i R. Bebb 2771} 5 Jun 1905 (OKL); Peoria Co., Peoria Heights, {\i V. H. Chase 13735} 27 Jun 1954 (USCH); Perry Co., Pyramid SP, {\i J. Raveill 109} 21 May 1981 (MO); Piatt Co., Monticello, {\i G. N. Jones 43083} 19 Jun 1966 (WV); St. Clair Co., Imbs Station, {\i J. O. Neill 16004} 14 Jul 1962 (NCU); Tazewell Co., East Peoria, {\i Virginius H Chase 13432} 23 Jun 1953 (KANU); Tazewell Co., Morton, {\i S. Hill 29691} 7 Aug 1997 (MICH); Union Co., Atwood Ridge Research Natural Area, {\i L. R. Phillipe 19085} 5 Jun 1991 (MICH); Vermilion Co., Hillery, {\i H. A. Gleason s.n.} 1 Jun 1907 (NYS); Washington Co., Posen Woods, {\i L. R. Phillipe 14224} 16 Jul 1990 (MICH); White Co., Enfield, {\i R. A. Evers 33105} 21 May 1952 (NCU); Will Co., Mokina, {\i A. Chase 160} 22 Jun 1897 (MSC); Will/Kendal Co., Joliet, {\i C. F. Wheeler 258} 15 Jun 1904 (GH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Indiana: Chesterton, {\i L. M. Umbach s.n.} 16 Jun 1900 (OKL); Marengo, {\i C. C. Deam 13450} 21 Jun 1913 (MICH); Brown Co., Mt. Zion, {\i C. C. Deam 48399} 24 May 1930 (MICH); Clark Co., Jeffersonville, {\i C. C. Deam 27617} 25 May 1919 (GH); Clarke Co., {\i C. C. Deam 6465} 25 May 1910 (MICH); Crawford Co., Fredonia, {\i F. J. Hermann 6682} 16 Jun 1935 (MICH); Crawford Co., Leavenworth, {\i C. C. Deam 23464} 5 Jun 1917 (WV); Floyd Co., New Albany, {\i C. C. Deam 27935} 13 Jun 1919 (WV); Floyd Co., New Albany, {\i C. C. Deam 13257} 8 Jun 1913 (MICH); Fountain Co., Portland Arch, {\i F. B. Buser 6510} 2 Jun 1956 (NCU); Franklin Co., Androsonville, {\i R. C. Friesner 4436} 16 Jul 1932 (MICH); Harrison Co., Palmyra, {\i F. J. Hermann 6711} 17 Jun 1935 (GH); Harrison Co., Elisabeth, {\i C. C. Deam 27864} 11 Jun 1919 (GH); Jefferson Co., Wirt, {\i E. Banta 6} 22 Jun 1935 (MICH); Jennings Co., Muscatatuck SP, {\i R. C. Friesner 16708} 23 May 1942 (GH); Lawrence Co., Bryantsville, {\i R. M. Kriebel 2174} 10 Jun 1934 (MICH); Lawrence Co., Williams, {\i R. M. Kriebel 1763} 3 Jun 1934 (MO); Owen Co., Hubble, {\i C. C. Deam 46882} 13 Jun 1929 (GH); Perry Co., Tell City, {\i C. C. Deam 25111} 4 Jun 1918 (MICH); Ripley Co., Batesville, {\i C. C. Deam 6824} 27 Jun 1910 (WV); Scott Co., Lexington, {\i C. C. Deam 16291} 22 Jun 1915 (WV); Spencer Co., Gentryville, {\i C. C. Deam 25163} 6 Jun 1918 (MICH); St. Joseph Co., Notre Dame, {\i P E Hebert s.n.} 27 Jun 1952 (KANU); Tippecanoe Co., Soldiers Home, {\i F. J. Hermann 6066} 3 Jun 1934 (MICH); Wayne Co., Centerville, {\i C. C. Deam 13116} 3 Jun 1913 (WV).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Iowa: Lee Co., Donellson, {\i B. Shimek s.n.} 15 Jul 1928 (OKL); Lee Co., Warren, {\i B. Shimek s.n.} 31 May 1933 (NEB); Wapello Co., Cliffland, {\i R. A. Davidson 272} 9 Jul 1953 (NCU); Wapello Co., Cliftland, {\i A. Hayden 9210} (MICH); Washington Co., Ainsworth, {\i T. Cady s.n.} 7 Jun 1998 (MICH); Washington Co., Ainsworth, {\i T. Cady s.n.} 7 Jun 1998 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Kansas: Cherokee Co., Baxter Springs, {\i R. L. McGregor 15686} 18 Jun 1960 (NCU); Cherokee Co., Baxter Springs, {\i Ralph Brooks 16252} 2 Aug 1982 (KANU); Cherokee Co., Baxter Springs, {\i Ronald L. McGregor 1656} 3 Jul 1948 (KANU); Cherokee Co., Crestline, {\i Ole A. Kolstad 2252} 3 Jun 1964 (KANU); Cherokee Co., Crestline, {\i Ronald L. McGregor 38229} 28 May 1987 (KANU); Cherokee Co., Galena, {\i William T. Barker 2122} 3 Jun 1966 (KANU); Cherokee Co., Crestline, {\i Caleb A. Morse 9674} 17 Jun 2003 (KANU); Douglas Co., Baldwin City, {\i Craig C. Freeman 2517} 5 Jun 1988 (KANU); Douglas Co., Big Springs, {\i Craig C. Freeman 19063} 25 Jun 2002 (KANU); Douglas Co., Lawrence, University of Kansas Campus West, {\i Ronald L. McGregor 40489} 26 May 1992 (KANU); Douglas Co., Univ. of Kansas Campus West, {\i R. L. McGregor 40537} 15 Jun 1992 (OKL); Greenwood Co., Severy, {\i C. C. Freeman 14786} 14 Jun 2000 (MSC); Jackson Co., Mayetta, {\i Frank J Norman 15} 19 May 2001 (KANU); Jefferson Co., McClouth, {\i Craig C. Freeman 20045A} 30 Jun 2004 (KANU); Jefferson Co., Perry, {\i Erin Questad s.n.} 2 Jun 2004 (KANU); Jefferson Co., Perry, {\i Suneeti Jog s.n.} 2 Jun 2004 (KANU); Jefferson Co., Williamstown, {\i Caleb A. Morse 9436} 27 May 2003 (KANU); Labette Co., Mound Valley, {\i Ronald L. McGregor 37228} 17 Jun 1986 (KANU); Linn Co., La Cygne, {\i Caleb A. Morse 7958} 23 May 2002 (KANU); Linn Co., La Cygne, {\i Caleb A. Morse 8356} 24 Jun 2002 (KANU); Linn Co., La Cygne, {\i Caleb A. Morse 8018} 23 May 2002 (KANU); Linn Co., Trading Post, {\i Caleb A. Morse 10429} 14 May 2004 (KANU); Miami Co., Jingo, {\i Caleb A. Morse 10489} 20 May 2004 (KANU); Miami Co., Somerset, {\i C. A. Morse 4744} 30 May 2000 (NEB); Miami Co., Somerset, {\i Caleb A. Morse 8032} 29 May 2002 (KANU); Neosho Co., Thayer, {\i W. W. Holland 5470} 26 May 1986 (KANU); Wilson Co., Neodesha, {\i Ole A. Kolstad 3099} 9 Jun 1965 (KANU).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Kentucky: Barren Co., Scottsville Rd., {\i C. Lapham 36} 23 May 1993 (EKY); Bath Co., Olympian Springs, {\i F. T. McFarland 4386} 11 Jun 1938 (MICH); Bath Co., Peeled Oak, {\i M. E. Wharton 2448a} 2 Jun 1938 (MICH); Bell Co., Cumberland Gap NP, {\i D. F. Brunton 10350} 24 May 1991 (MICH); Boyle Co., Central Kentucky Wildlife Refuge, {\i L. E. McKinney 4992} 13 May 1992 (EKY); Boyle Co., Junction City, {\i M. E. Wharton 667} 3 Jul 1937 (MICH); Bullitt Co., Lake Nevin, {\i C. R. Gunn 347} 16 Jun 1955 (NCU); Bullitt Co., Phelps Knob, {\i R. Hannan 6423} 13 May 1981 (EKY); Caldwell Co., Bald Knob, {\i R. Hannan 03709} 20 May 1980 (EKY); Calloway Co., Ft. Heiman, {\i L. E. McKinney 4167} 30 May 1990 (EKY); Campbell Co., Silver Grove, {\i R. Naczi 4768A} 3 Jun 1995 (MICH); Carlisle Co., Arlington, {\i L. G. Hickok 8} 6 Jun 1969 (NCU); Carlisle Co., Arlington, {\i D. O\rquote Dell s.n.} 18 Jul 1962 (NCU); Carter Co., Carter Caves SP, {\i D. F. Brunton 10292} 20 May 1991 (MICH); Casey Co., Liberty, {\i M. Wharton 4334} 14 Jun 1939 (MICH); Clinton Co., Seventy-Six Falls, {\i L. E. McKinney 6457} 31 May 1995 (MICH); Edmonson Co., Mammoth Cave, {\i Davies s.n.} 17 Jun 1950 (NCU); Estill Co., Red River, {\i M. Wharton 2268} 19 May 1938 (MICH); Estill Co., Burnham Woods, {\i R. G. Guetig 637} 13 Jun 1988 (EKY); Estill Co., Burnham Woods, {\i R. G. Gueting 298} 24 Jun 1987 (EKY); Estill Co., White Oak Cliff, {\i R. G. Guetig 912} 24 Aug 1988 (EKY); Fleming Co., Sprulock Gap, {\i R. Hannan 6775} 3 Jun 1981 (EKY); Franklin Co., Echo Spring Swamp, {\i Steve Rice s.n.} 12 Jul 1984 (EKY); Franklin Co., Fault Hill, {\i Steve Rice s.n.} 24 May 1983 (EKY); Fulton Co., Cayce, {\i D. O\rquote Dell 1133} 24 Jul 1962 (NCU); Garrard Co., Maywoods Environmental and Educational Laboratory, {\i D. A. Godbey 132} 26 May 1983 (EKY); Grant Co., Crittenden, {\i R. Naczi 7887} 17 May 1999 (MICH); Greenup Co., Jesse Stuart State Nature Preserve, {\i L. E. McKinney 6243} 8 Jun 1994 (MICH); Hardin Co., Alexander Seep, {\i R. Cranfill 319} 2 Jul 1977 (MICH); Hardin Co., Cap Hollow, {\i R. Cranfill 664} 24 May 1978 (MICH); Hardin Co., Elizabethtown, {\i Landon E. McKinney 4640} 11 May 1991 (VDB); Hardin Co., Ft. Knox Army Post, {\i R. A. Thompson K0334} 6 Aug 1990 (OKL); Hardin Co., Vernon Douglas State Nature Preserve, {\i L. E. McKinney 4640} 11 May 1991 (EKY); Knott Co., Breeding Creek area, {\i L. E. McKinney 6197} 20 May 1994 (MICH); Laurel Co., Rock Creek Gorge, {\i R. L. Thompson 89-814} 29 May 1989 (EKY); Laurel Co., Rock Creek Gorge, {\i R. L. Thompson 86-151} 31 May 1986 (EKY); Laurel Co., Rock Creek Gorge, {\i R. L. Thompson 89-676} 24 May 1989 (EKY); Lawrence Co., Fallsburg, {\i A. W. Cusick 30913} 24 May 1993 (MICH); Lawrence Co., Summit, {\i A. W. Cusick 30972} 1 Jun 1993 (VPI); Lewis Co., Hymes Knob, {\i L. E. McKinney 6390} 16 May 1995 (MICH); Lincoln Co., Crab Orchard, {\i M. Wharton 2103} 10 May 1938 (MICH); Lyon Co., Lyon/Trigg County Line, {\i L. E. McKinney 4975} 5 May 1992 (EKY); Madison Co., Berea, {\i D. D. Taylor 1479} 30 May 1982 (NCU); Madison Co., Bluegrass Army Depot, {\i G. W. Libby OB-675} 28 Jul 1993 (MICH); Madison Co., Bluegrass Army Depot, {\i G. W. Libby OB-296} 26 May 1993 (MICH); Madison Co., Kentucky River Palisades, {\i J. S. Lassetter 2991} 23 Jun 1978 (EKY); Madison Co., Pilot Knob, {\i M. Wharton 712} 6 Jul 1937 (MICH); Marion Co., Jessietown, {\i R. Hannan 7275} 22 Jun 1981 (EKY); Meade Co., Battletown, {\i R. C.H. 109} 10 Jun 1949 (NCU); Metcalfe Co., US 68, {\i W. Meijer s.n.} 24 May 1969 (NCU); Muhlenberg Co., Sector 1, {\i L. E. McKinney 5674} 1 Jun 1993 (EKY); Pike Co., Brushy Creek, {\i F. Levy s.n.} 10 Jun 1983 (NCU); Rockcastle Co., Anglin Falls Hollow, {\i N. Denton 0426} 8 Jun 1989 (EKY); Rockcastle Co., Livingstone, {\i H. E. Ahles 54431} 17 Jun 1961 (NCU); Rowan Co., Cave Run Lake, Daniel Boone NF, {\i W. D. Longbottom 3564} 25 May 1993 (MARY); Trigg Co., Fort Campbell Military Reservation, {\i L. E. McKinney 5448} 18 May 1993 (MICH); Trigg Co., Ft. Campbell Army Post, {\i F. L. Johnson CAM0135} 7 Jun 1991 (OKL); Trigg Co., Land Between The Lakes, {\i W. H. Ellis 1084} 7 Jun 1966 (NCU); Union Co., Sullivan, {\i J. Conrad 1019} 27 May 1970 (NCU); Warren Co., Woodburn, {\i D. F. Brunton 10304} 21 May 1991 (MICH); Wayne Co., Monticello, {\i R. Naczi 7967} 20 May 1999 (MICH); Whitley Co., Hwy 1277, {\i L. E. McKinney 5428} 14 May 1993 (MICH); Whitley Co., Grove Road, {\i L. E. McKinney 5428} 14 May 1993 (EKY).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Maine: Clinton Co., Maple Rapids, {\i G. W. Parmelee 96} 19 Jun 1952 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Maryland: Beltonvale, {\i A. Chase 876} 4 Jul 1907 (MICH); Potomac Valley, Chevy Chase, {\i A. Chase 2461} 13 Jul 1904 (OKL); Allegany Co., La Valle, {\i D. D. Boone 840605-SN} 5 Jun 1984 (TAWES); Allegany Co., Martin Mt., {\i C. T. Frye 2084} 11 Aug 1999 (TAWES); Allegany Co., Selinger Marsh, Flintstone, {\i C. Lea 2137} 28 Jun 2000 (MARY); Anne Arundel Co., Broad Creek Park, {\i W. D. Longbottom 2963} 23 May 1992 (MARY); Carroll Co., Westminster, {\i R. S. Thompson 31} 1 Jul 1943 (MARY); Cecil Co., Rising Sun, {\i C. Lea 1879} 3 Jun 2000 (MARY); Frederick Co., Catoctin Mt., {\i S. S. Tepfer 1324} 8 Jun 1941 (MARY); Frederick Co., Catoctin Range, {\i E. Baltass 271} 30 May 1951 (MARY); Frederick Co., Cunningham Falls, {\i R. Wiegand 880601-SN} 1 Jun 1988 (TAWES); Montgomery Co., Along Travailan Road, {\i W. D. Longbottom 3595} 10 Jun 1993 (MARY); Montgomery Co., Bear Island, {\i C. Lea 1584} 14 May 2000 (MARY); Montgomery Co., Blockhouse Point Park, Darnestown, {\i C. Lea 2067} 17 Jun 2000 (MARY); Montgomery Co., Great Falls NP, Bear Island, {\i C. Lea 881} 16 May 1998 (TAWES); Prince Georges Co., Dillum, {\i B. Swanton 1619} 14 Jun 1989 (MARY); Prince George\rquote s Co., Beltsville, {\i B. Swanton 1586} 20 Jun 1939 (MARY); Washington Co., US 40, {\i D. D. Boone 850704-SN} 4 Jul 1985 (TAWES); Washington Co., Shupoburg, {\i B. Swanton 1621} 7 Jun 1939 (MARY); Washington Co., Elk Ridge, {\i R. E. Riefner, Jr. 80-206} 5 Jul 1980 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Massachusetts: Hampden Co., Holyoke, {\i H. E. Ahles 86665} 1 Jun 1979 (WV).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Michigan: Grand Rapids, {\i E. J. Cole s.n.} 18 Jun 1898 (MICH); Clinton Co., Maple Rapids, {\i G. W. Parmelee 46} 17 Jun 1952 (MICH); Clinton Co., Maple Rapids, {\i G. W. Parmelee 133} 20 Jun 1952 (MSC); Clinton Co., Maple Rapids, {\i G. W. Parmelee 74} 18 Jun 1952 (MSC); Ionia Co., North Plains, {\i C. F. Wheeler s.n.} 26 Jun 1889 (MICH); Ionia Co., North Plains, {\i C. F. Wheeler s.n.} 19 Jun 1890 (MICH); Kalamazoo Co., Goose Lake, {\i C. R. Hanes 117} 25 Jun 1934 (MICH); Kalamazoo Co., Schoolcraft Twp., {\i C. R. Hanes s.n.} 25 Jun 1934 (MICH); Lenawee Co., Madison Twp., {\i R. W. Smith 2548} 18 Jun 1988 (MICH); Washtenaw Co., Whitmore Lake, {\i F. J. Hermann 9470} 1 Jun 1938 (MICH); Wayne Co., Detroit, {\i E. C. Almendinger s.n.} 14 Jul 1877 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Mississippi: Attala Co., Kosciusko, {\i C. T. Bryson 4144} 12 Apr 1986 (MICH); Benton Co., US Hwy 78, {\i C. T. Bryson 9974} 18 May 1990 (MICH); Benton Co., Ashland, {\i C. T. Bryson 14797} 21 Apr 1995 (MICH); Carroll Co., Carrollton, {\i C. T. Bryson 5426} 22 Apr 1987 (MICH); Grenada Co., Camp McCain, {\i C. T. Bryson 15214} 20 May 1996 (MICH); Grenada Co., Gore Springs, {\i C. T. Bryson 3360} 25 May 1982 (MICH); Lafayette Co., Oxford, {\i C. T. Bryson 5617} 5 May 1987 (MICH); Lee Co., Tupelo, {\i C. T. Bryson 3221} 1 May 1982 (MICH); Lee Co., Tupelo, {\i C. T. Bryson 3386} 29 May 1982 (MICH); Lowndes Co., Mayhew, {\i C. T. Bryson 9869} 17 May 1990 (MSC); Lowndes Co., Mayhew, {\i C. T. Bryson 3272} 10 May 1982 (MICH); Marshall Co., Holly Springs, {\i C. T. Bryson 994} 18 May 1990 (MICH); Pontotoc Co., Sherman, {\i C. T. Bryson 9935} 18 May 1990 (MICH); Tishomingo Co., Mingo, {\i C. T. Bryson 11687} 17 May 1992 (TAES); Yalobusha Co., Holly Springs NF, {\i C. T. Bryson 12469} 2 Jul 1993 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Missouri: Benton Co., Lake Creek, {\i D. Castaner 6297} 16 May 1981 (TAES); Boone Co., Bradford Farms, {\i P. M. McKenzie 1448} 23 Jun 1994 (MICH); Boone Co., Columbia, {\i Norlan C Henderson 66-559} 1 Jul 1966 (KANU); Butler Co., Hwy 67, {\i J. Kessler 7234} 15 Jun 1981 (TAES); Calloway Co., Dixie State Rec. Area, {\i V. E. McNeilus 92-557} 8 Jul 1992 (MICH); Calloway Co., Kingdom City, {\i V. E. McNeilus 94-525} 5 Jun 1994 (MSC); Camden Co., Lake of the Ozarks SP, {\i T. B. Croat 17099} 13 May 1972 (NCU); Cape Girardeau Co., Cape Girardeau, {\i Travis E Brooks 6363} 8 Jun 1972 (KANU); Cape Girardeau Co., Cape Girardeau, {\i Travis Brooks 6921} 24 May 1973 (KANU); Cape Girardeau Co., Cape Girardeau, {\i Travis Brooks 6917} 24 May 1973 (KANU); Cape Girardeau Co., Cape Girardeau, {\i Travis Brooks 6942} 24 May 1973 (KANU); Christian Co., Busiek State Forest, {\i D. Castaner 9224} 22 May 1986 (MICH); Christian Co., Nixa, {\i R. W. Sanders 75005} 30 Jun 1975 (MICH); Dent Co., State Hwy 19, {\i T. G. Lammers 9437} 24 Jun 1995 (MICH); Douglas Co., State Hwy 181, {\i T. G. Lammers 9419} 23 Jun 1995 (MICH); Douglas Co., Hwy 14, {\i D. Castaner 8365} 21 May 1985 (MICH); Dunklin Co., Malden, {\i P. M. McKenzie 1856} 3 Jun 1999 (MO); Greene Co., Springfield, {\i D. Sutherland 1609} 31 May 1968 (NEB); Howell Co., White Ranch Conservation Area, {\i B. Summers 9706} 9 May 2001 (MO); Iron Co., Taum Sauk Mt., {\i P. M. McKenzie 1400} 8 Jun 1994 (MICH); Jefferson Co., DeSoto, {\i P. H. Raven 26978} 11 May 1986 (NCU); Jefferson Co., Goldman, {\i G. Davidse 3355} 3 Jun 1973 (MSC); Johnson Co., Knob Noster SP, {\i K. Campbell 105} 10 Jun 1976 (MICH); Laclede Co., Bennett Springs SP, {\i K. Campbell 177} 2 Jul 1977 (MICH); Miller Co., Brumley, {\i Steve Stephens 56368} 6 Jul 1972 (KANU); Miller Co., Iberia, {\i J. A. Steyermark 13046} 4 Jul 1934 (MICH); Miller Co., Lake Ozark SP, {\i K. Campbell 166} 4 Jun 1977 (MICH); Morgan Co., Hwy CC, {\i D. Castaner 6312} 16 May 1981 (MICH); Ozark Co., Route O, {\i D. Castaner 8432} 22 May 1985 (VPI); Perry Co., State route V, {\i R. Carter 7902} 16 Jul 1989 (TAES); Perry Co., McBride, {\i D. Castaner 7078} 13 Jun 1982 (MICH); Phelps Co., Rolla, {\i T. G. Lammers 9401} 23 Jun 1995 (MICH); Pike Co., Eolia, {\i John Davis s.n.} 26 May 1918 (KANU); Pulaski Co., Ft. Leonard Wood Army Base, {\i R. T. Ovrebo W0253} 4 Jun 1989 (OKL); Pulaski Co., Ft. Leonard Wood Army Base, {\i R. T. Ovrebo W0306} 6 Jun 1989 (OKL); Pulaski Co., Ft. Leonard Wood Army Base, {\i R. T. Ovrebo W0344} 8 Jun 1989 (OKL); Pulaski Co., Ft. Leonard Wood Army Base, {\i R. T. Ovrebo W0189} 2 Jun 1989 (OKL); Pulaski Co., St. Robert, {\i J. A. Raveill 3056} 15 Jun 1992 (EKY); Pulaski Co., {\i R. T. Ovrebo W0253} 4 Jun 1989 (KANU); Reynolds Co., Ellington, {\i Ronald L. McGregor 17198} 14 Jun 1962 (KANU); Reynolds Co., Lesterville, {\i D. M. E. Ware 3670} 8 Jun 1971 (CLEMS); Saint Genevieve Co., Hawn SP, {\i R. Randrianaivo 420} 18 May 1999 (MICH); Scott Co., Morley Quad, {\i P. M. McKenzie 1998} 13 May 2002 (MO); Scott Co., Morly, {\i S. D. Jones 8555} 16 May 1992 (MICH); Scott Co., unknown, {\i Travis E. Brooks 6394} 14 Jun 1972 (KANU); Shannon Co., Mark Twain NF, {\i D. Castaner 9774} 3 Jun 1987 (MICH); Shannon Co., Round Springs, {\i D. M. Eggers 608} 18 May 1963 (NCU); St. Clair Co., Roscoe, {\i D. Castaner 6493} 6 Jun 1981 (MICH); St. Francois Co., St. Francois SP, {\i P. M. McKenzie 1426} 18 Jun 1994 (MICH); St. Louis Co., Missouri Baptist College, {\i J. Lang 4006} 14 Jun 1969 (NCU); St. Louis Co., Allenton, {\i Ralph E. Brooks 16724} 27 Jun 1983 (KANU); St. Louis Co., Babler SP, {\i S. P. Churchill 2929} 22 May 1974 (NEB); St. Louis Co., Clayton, {\i J. A. Steyermark 9202} 13 May 1930 (MICH); Stone Co., Galena, {\i E. J. Palmer 5742} 25 May 1914 (MICH); Taney Co., Swan, {\i B. F. Bush 4498} 17 May 1907 (WV); Texas Co., Highway 17, {\i D. Castaner 11238} 3 Jun 1994 (MO); Texas Co., Mt. Grove, {\i G. L. Pyrah s.n.} 26 May 1978 (NCU); Washington Co., Hwy 57, {\i D. Castaner 6580} 14 Jun 1981 (MICH); Wayne Co., Route D, {\i D. Castaner 9824} 4 Jun 1987 (MICH); Wright Co., State Rt. 95, {\i M. A. Vincent 7024} 23 Jun 1995 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Nebraska: Lancaster Co., Olive Creek Wildlife Management Area, {\i G. Steinauer 296} 19 Jun 1999 (NEB).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 New Jersey: Hunterdon Co., Delaware Township, {\i J. D. Mitchell 644} 22 Jun 1993 (MICH); Morris Co., Morristown, {\i R. H. True 438} 6 Jul 1935 (VPI); Somerset Co., Watchung, {\i Harold N. Moldenke 1783} 21 Jun 1931 (WV).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 New York: Albany Co., Alcove, {\i W. J. Crins 7629} 3 Jul 1989 (NYS); Albany Co., South Westerlo, {\i G. C. Tucker 7270} 28 Jun 1992 (NYS); Albany Co., Westerlo, {\i G. C. Tucker 6077} 17 Jun 1991 (NYS); Broome Co., Tracy Creek, {\i R. T. Clausen 7278} 1 Aug 1948 (NYS); Cayuga Co., Springport, {\i A. J. Eames 11586} 19 Jun 1919 (MICH); Chemung Co., Chemung, {\i R. E. Zaremba 8713} 2 Jun 1991 (NYS); Columbia Co., Blue Stores, {\i R. McVaugh 3214} 12 Jul 1935 (NYS); Columbia Co., Kinderhook, {\i R. McVaugh 1836} 30 Jul 1933 (NYS); Columbia Co., Green River, {\i R. McVaugh 3530} 30 Jul 1935 (NYS); Columbia Co., Elizaville, {\i R. McVaugh 3198} 11 Jul 1935 (NYS); Columbia Co., Germantown, {\i R. McVaugh 3312} 17 Jul 1935 (NYS); Columbia Co., Livingston, {\i H. D. House 22663} 26 Jun 1935 (NYS); Columbia Co., New Forge, {\i R. McVaugh 3472} 27 Jul 1935 (NYS); Columbia Co., Town of Cofake, {\i R. McVaugh 3573} 31 Jul 1935 (NYS); Dutchess Co., Astor Point, {\i T. Weldy 1875} 2 Jul 1997 (NYS); Dutchess Co., Clinton, {\i R. E. Zaremba 3022} 1986 (NYS); Dutchess Co., Hyde Park, {\i H. E. Ahles 71463} 18 Jun 1971 (MICH); Dutchess Co., Hyde Park, {\i H E Ahles 71445} 18 Jun 1971 (KANU); Dutchess Co., Hyde Park, {\i H. E. Ahles 71451} 18 Jun 1971 (NEB); Dutchess Co., Hyde Park, {\i H. E. Ahles 71463} 18 Jun 1971 (NCU); Dutchess Co., Rhine Cliff, {\i H. D. House 19280} 23 Jun 1932 (NYS); Dutchess Co., Stissing Mt., {\i C. H. Peck s.n.} (NYS); Dutchess Co., Town of Dover, {\i G. C. Tucker 4518} 8 Jul 1989 (NYS); Erie Co., Hamburg, {\i G. C. Hicks s.n.} 30 Jun 1928 (MSC); Greene Co., Rudowitz Farm, {\i G. C. Tucker 5334} 16 Jun 1990 (MICH); Greene Co., Catskill, {\i H. D. House 32340} 1 Jun 1949 (NYS); Greene Co., Greenville, {\i G. C. Tucker 6067} 16 Jun 1991 (NYS); Greene Co., Greenville, {\i G. C. Tucker 7659} 8 Aug 1992 (NYS); Greene Co., Palenville, {\i S. J. Smith 20227} 15 Jun 1956 (NYS); Oneida Co., Deerfield Ravine, {\i J. V. Haberer 3893} 13 Jul 1912 (NYS); Onondaga Co., Bare Mt., {\i D. DeLaubenfels s.n.} 25 Jul 1996 (NYS); Onondaga Co., Highland Forest County Park near Tully, {\i S. M. Young s.n.} 5 Jul 1992 (NYS); Onondaga Co., Township of Clay, {\i D. J. DeLaubenfels s.n.} 8 Jul 1997 (NYS); Onondaga Co., Township of Fabius, Apulia, {\i D. Delaubenfels s.n.} 2 Jul 1996 (NYS); Orange Co., U. S. military academy reservation, {\i J. G. Barbour 38} 12 Jun 1992 (MICH); Orange Co., Camp Buckner Rifle Range, {\i J. G. Barbour 816} 13 Jun 1994 (MICH); Orange Co., Harriman SP, {\i J. G. Barbour 788} 9 Jun 1993 (MICH); Orange Co., US Military Academy Reservation, {\i J. G. Barbour 858} 16 Jun 1993 (NYS); Orange Co., Vail\rquote s Gate, {\i H. D. House 25755} 14 Jun 1938 (NYS); Rensselaer Co., Grafton Lakes SP, {\i P. Weatherbee 4369} 16 Jun 1997 (NYS); Rensselaer Co., Pittstown, {\i H. D. House 19417} 2 Jul 1932 (NYS); Rensslauer Co., SE of West Sandlake, {\i H. D. House 20354a} 18 Jun 1933 (NYS); Richmond Co., New York City, {\i R. E. Zaremba 3529} 19 Jan 1986 (NYS); Richmond Co., New York City, {\i R. E. Zaremba 2650} 19 Jul 1985 (NYS); Richmond Co., Staten Island, {\i S. H. Burnham 917a} 29 May 1902 (OKL); Rockland Co., Harriman SP, {\i J. G. Barbour 936} 30 Jun 1993 (NYS); Rockland Co., Iona Island, {\i S. Young 1954} 17 Jun 1998 (NYS); Saratoga Co., Ballston Springs, {\i H. D. House 19127} 10 Jun 1932 (NYS); Saratoga Co., Clifton Park, {\i H. D. House 22803} 1 Aug 1935 (NYS); Saratoga Co., Saratoga Lake, {\i H. D. House 24582} 9 Jun 1937 (NYS); Schenectady Co., Plotterkill Preserve, {\i S. M. Young 1691} 25 Jun 1995 (NYS); Schuyler Co., Park Station, {\i S. J. Smith 2445} 1 Jun 1945 (NYS); Suffolk Co., Greenport, {\i R. Latham 23752} 1 Jun 1945 (NYS); Tompkins Co., Newfield Township, {\i W. C. Wilson s.n.} 11 Jun 1936 (NYS); Tompkins Co., Ithaca, {\i A. J. Eames s.n.} 28 Jun 1915 (NYS); Ulster Co., Lake Katrine, {\i H. D. House 25651} 30 Jun 1938 (NYS); Ulster Co., Marbletown, {\i H. F. Dunbar 1146} 13 Jun 1958 (NYS); Ulster Co., Saugerties, {\i G. B. Rossbach 4048} 12 Jun 1962 (WV); Ulster Co., Town of Olive, {\i J. Bierhorst 35} 20 Jun 1996 (NYS); Ulster Co., Town of Olive, Boiceville, {\i J. Bierhorst s.n.} 19 Jun 1998 (NYS); Ulster Co., Town of Olive, West Shokan, {\i J. Bierhorst s.n.} 9 Aug 1997 (NYS); Warren Co., Brayton, {\i H. D. House 28674} 20 Jun 1942 (OKL); Warren Co., Lake George, {\i H. D. House 26761} 18 Jul 1939 (NYS); Warren Co., Queensbury, {\i H. D. House 27978} 15 Jul 1941 (NYS); Washington Co., Lake George, {\i S. H. Burnham s.n.} 29 Jun 1915 (NYS); Washington Co., Lake George, {\i R. E. Zaremba 4635} 17 Jul 1987 (NYS); Westchester Co., Anthony\rquote s Nose, {\i T. Weldy 2045} 9 Jun 1998 (NYS).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 North Carolina: Ashe Co., Bluff Mt., {\i G. E. Tucker 2599} 4 Jun 1965 (NCU); Ashe Co., The Peak, {\i S. W. Leonard 3275} 31 May 1970 (NCU); Buncombe Co., Biltmore, {\i W. W. Ashe s.n.} 12 Jun 1897 (NCU); Buncombe Co., Biltmore, {\i W. W. Ashe 235c} 12 Jun 1897 (NCU); Buncombe Co., Reynolds, {\i J. A. Churchill 86044} 25 May 1986 (MSC); Caswell Co., Anderson, {\i C. R. Bell 11872} 22 May 1958 (NCU); Caswell Co., Hightower, {\i C. R. Bell 11855} 22 May 1958 (NCU); Chatham Co., Mt. Carmel Church, {\i A. E. Radford 4056} 7 May 1949 (NCU); Cherokee Co., Patrick, {\i K. E. Rogers 41623} 18 Jun 1968 (NCU); Davidson Co., Beaverdam Creek headwaters, {\i P. D. McMillan 2945} 7 May 1998 (CLEMS); Davidson Co., Silver Valley, {\i A. E. Radford 12755} 16 Jun 1956 (NCU); Durham Co., Bland, {\i A. E. Radford 43119} 31 May 1960 (NCU); Durham Co., Bland, {\i A. E. Radford 43127} 31 May 1960 (NCU); Durham Co., Weaver, {\i H. E. Ahles 57944} 15 May 1963 (NCU); Forsyth Co., Kernersville, {\i H. E. Ahles 40695} 17 May 1958 (NCU); Forsyth Co., Kernersville, {\i H. E. Ahles 40714} 17 May 1958 (NCU); Granville Co., Dickerson, {\i H. E. Ahles 12671} 22 May 1956 (NCU); Harnett Co., Lillington, {\i H. Laing 1276} 15 May 1957 (NCU); Haywood Co., Crabtree, {\i H. E. Ahles 42194} 5 Jun 1958 (NCU); Iredell Co., US 21, {\i H. E. Ahles 41059} 18 May 1958 (NCU); Lee Co., Salem Church, {\i S. Stewart 522} 9 Jun 1958 (NCU); Macon Co., Ellijay, {\i A. E. Radford s.n.} 24 Jun 1946 (NCU); Macon Co., Ellijay, {\i A. E. Radford 22646} (NCU); Macon Co., Ellijay PO, {\i A E Radford 31547} (KANU); Madison Co., Marshall, {\i H. E. Ahles 42428} 6 Jun 1958 (NCU); Mecklenburg Co., Stephens Rd., {\i J. F. Matthews s.n.} 27 May 1993 (MICH); Montgomery Co., Mt. Gilead, {\i A. E. Radford 13210} 24 Jun 1956 (NCU); Montgomery Co., Uwharrie, {\i E. F. Wells 3012} 18 May 1970 (NCU); Montgomery Co., Uwharrie, {\i A. E. Radford 2984} 18 May 1970 (OKL); Montgomery Co., Uwharrie Wildlife Management Area, {\i E. F. Wells 1131} 15 Jun 1969 (NCU); Orange Co., Chapel Hill, {\i A. E. Radford 587a} 10 May 1940 (NCU); Orange Co., Chapel Hill, {\i W. C. Coker s.n.} 14 May 1910 (NCU); Orange Co., Hillsboro, {\i A. E. Radford 42905} 20 May 1960 (NCU); Person Co., Woodsdale, {\i C. R. Bell 12265} 2 Jun 1958 (NCU); Person Co., Woodsdale, {\i A. E. Radford 43177} 2 Jun 1960 (NCU); Randolph Co., Liberty, {\i C. R. Bell 11979} 27 May 1958 (NCU); Randolph Co., New Hope, {\i A. E. Radford 43014} 24 May 1960 (NCU); Rockingham Co., Thompsonville, {\i A. E. Radford 13543} 7 Jul 1956 (NCU); Rowan Co., Cleveland, {\i A. E. Radford 11571} 26 May 1956 (NCU); Rowan Co., Spencer, {\i A. E. Radford 11511} 26 May 1956 (NCU); Stokes Co., Belews Creek, {\i A. E. Radford 34494} 4 Jun 1958 (NCU); Vance Co., Townsville, {\i H. E. Ahles 12753} 22 May 1956 (NCU); Wake Co., William B. Umstead SP, {\i G. P. Sawyer Jr. 1114} 20 Jun 1964 (TAES).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Ohio: Holiday Inn, Turnpike exit 11, {\i C. B. Stott 1789} 16 Jun 1969 (MSC); Vermillion, {\i C. L. Mosley s.n.} 3 Sep 1896 (MSC); Champaign Co., Urbana, {\i J. Samples s.n.} 5 Jun 1840 (MICH); Coshocton Co., Coshocton, {\i H. N. Moldenke 12545} 17 May 1942 (WV); Cuyahoga Co., Independence, {\i S. A. Reznicek 52} 10 Jun 1982 (MICH); Cuyahoga Co., Independence, {\i S. A. Reznicek 58} 10 Jun 1982 (MICH); Franklin Co., Pickerington Pond, {\i J. S. McCormac 4710} 12 Jun 1992 (MICH); Jackson Co., Jackson, {\i J. A. Churchill s.n.} 25 Jun 1956 (MSC); Jefferson Co., Annapolis, {\i A. W. Cusick 458} 29 May 1965 (NCU); Lawrence Co., Co. Rt. 6, {\i A. Cusick 22702} 6 Jul 1983 (MICH); Lorain Co., Chance Creek, {\i F. O. Grover s.n.} 31 Jul 1912 (MICH); Lorain Co., Oak Point, {\i F. O. Grover s.n.} 3 Jun 1922 (MICH); Mahoning Co., Berlin Twp., {\i A. W. Cusick 10874} 8 Jun 1970 (NCU); Monroe Co., St. Rt. 26, {\i A. W. Cusick 9970} 21 Aug 1969 (NCU); Monroe Co., Monroe Lake, {\i A. W. Cusick 7505} 14 Jun 1968 (NCU); Muskingum Co., White Eyes Creek, {\i A. Cusick 22749} 19 Jul 1983 (MICH); Ross Co., Betsch Fen, {\i D. Minney 07-1} 15 Jul 1992 (MICH); Scioto Co., Shawnee State Forest, {\i D. Demaree 10668} 24 May 1934 (MO); Tuscarawas Co., Sandy Twp., {\i A. W. Cusick 5021} 3 Jul 1967 (NCU).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Oklahoma: Adair Co., Kansas, {\i U. T. Waterfall 9579} 7 Jul 1950 (OKL); Atoka Co., Sandhills Nature Preserve, {\i P. Folley 1514} 4 Aug 1995 (OKL); Bryan Co., Bennington, {\i J. Taylor 1675} 17 May 1963 (OKL); Cherokee Co., White Oak Branch, {\i M. D. Proctor GRU0329} 12 May 1993 (OKL); Cherokee Co., Quallis Rd., {\i M. D. Proctor GRU0517} 15 Jun 1993 (OKL); Cherokee Co., Tahlequah, {\i G. J. Goodman 4717} 1 May 1948 (OKL); Cherokee Co., Eldon, {\i P. Folley 2044} 6 Jun 1997 (OKL); Cherokee Co., Tahlequah, {\i U. T. Waterfall 10059} 25 Jun 1951 (TAES); Cherokee Co., US 62, {\i S. D. Jones 11132} 26 May 1994 (MICH); Delaware Co., Dripping Springs, {\i C. S. Wallis 4444} 30 Jun 1957 (OKL); Delaware Co., Little Kansas, {\i C. S. Wallis 7351} 12 Jul 1958 (NCU); Delaware Co., Siloam Springs, {\i U. T. Waterfall 8211} 8 Jul 1948 (OKL); Haskell Co., Hancock Mt., {\i D. Benesh e087} 6 May 1998 (OKL); Latimer Co., {\i R. Bebb 5504} 30 May 1940 (OKL); LeFlore Co., US 259, {\i L. K. Magrath 17823} 10 May 1990 (OKL); LeFlore Co., Smithville, {\i L. K. Magrath 17895} 16 May 1990 (OKL); Mayes Co., Oklahoma Ozarks, {\i C. S. Wallis 3204} 27 May 1956 (OKL); McCurtain Co., Broken Bow, {\i M. Fisher s.n.} 6 Jun 1978 (OKL); McCurtain Co., Eagletown, {\i E. L. Little, Jr. 1481} 4 Jun 1930 (OKL); McCurtain Co., Weston, {\i D. Castaner 9693} 14 May 1987 (MICH); McIntosh Co., Canadian River, {\i A. Buthod AB-4181} 10 May 2002 (OKL); Muskogee Co., Braggs Mt., {\i M. D. Procher GRU0366} 13 May 1993 (OKL); Muskogee Co., Greenleaf Lake, {\i U. T. Waterfall 9496} 17 Jun 1950 (OKL); Nowata Co., Oolagah Wildlife Management Area, {\i B. Hoagland OOL475} 5 Jul 2000 (OKL); Pontotoc Co., {\i P. Folley 1427} 13 May 1995 (OKL); Sequoyah Co., Marble City, {\i G. J. Goodman 7440} 4 May 1963 (OKL).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Pennsylvania: Adams Co., Gettysburg Nat. Military Park, {\i D. F. Brunton 10270} 18 May 1991 (MICH); Alleghany Co., Pittsburgh, {\i A. E. Jennings s.n.} 17 Jun 1908 (NCU); Bedford Co., Bedford, {\i D. Berkheimer 2679} 22 Jun 1941 (GH); Bedford Co., Bedford, {\i J. A. Churchill s.n.} 15 Jun 1958 (MSC); Bedford Co., West End, {\i H. Duppstadt s.n.} 15 Jun 1969 (WV); Bedford Co., West End, {\i Homer Duppstadt s.n.} 19 Jun 1969 (KANU); Berks Co., Moselem Station, {\i H. Wilkens 5533-x} 26 Jun 1938 (GH); Berks Co., Lobachsville, {\i D. Berkheimer 3711} 10 Jun 1943 (MICH); Berks Co., Friedensburg, {\i H. Wilkens 5844} 10 Jun 1939 (GH); Bradford Co., Bentley Creek, {\i H. A. Wahl 17384} 16 Jun 1956 (NCU); Bradford Co., Franklindale, {\i R. Naczi 2609} 15 Jun 1990 (TAES); Bradford Co., Franklindale, {\i R. Naczi 2586} 15 Jun 1990 (MICH); Bucks Co., Beaver Creek, {\i F. J. Hermann 4286} 4 Jun 1933 (MICH); Bucks Co., Argus, {\i C. D. Fretz s.n.} 19 Jun 1923 (GH); Bucks Co., Ottsville, {\i F. J. Hermann 4286} 4 Jun 1933 (OKL); Bucks Co., Plumbsteadville, {\i R. R. Dresbach 1666} 29 Jul 1923 (MICH); Bucks Co., Telford, {\i W. M. Benner 1606} 5 Jun 1921 (MICH); Bucks Co., Upper Black Eddy, {\i R. H. Time s.n.} 10 Jun 1925 (WV); Bucks Co., Upper Black Eddy, {\i R. H. Time s.n.} 30 Jun 1931 (WV); Butler Co., Rt. 528, {\i L. K. Henry s.n.} 15 Jul 1946 (NCU); Butler Co., Epworth League Woods, {\i L. K. Henry s.n.} 5 Jun 1952 (NCU); Centre Co., State College, {\i P. E. Rothrock 654} 17 Jul 1975 (MICH); Centre Co., Unionville, {\i H. A. Wahl 990} 2 Jun 1941 (NEB); Chester Co., Paoli, {\i F. W. Pennell 3908} 26 Jun 1912 (NEB); Chester Co., Struct Road Station, {\i H. E. Stone 296} 30 May 1925 (GH); Clearfield Co., Ansonville, {\i E. B. Ehrle 2348} 13 Jun 1957 (NYS); Clearfield Co., Clearfield, {\i E. B. Ehrle 1901} 10 Jun 1956 (NCU); Delaware Co., Addingham, {\i R. R. Dreisbach 1492} 16 Jun 1923 (MICH); Delaware Co., Swarthmore, {\i F. J. Hermann 3098} 29 May 1932 (MICH); Delaware Co., Williamson School, {\i R. R. Dresibach 2253} 29 Jun 1924 (MICH); Delaware Co., Williamson School, {\i F. J. Hermann 4340} 10 Jun 1933 (GH); Elk Co., Caledonia, {\i H. A. Wahl 18928} 10 Jun 1959 (NCU); Huntingdon Co., Barree, {\i H. A. Wahl 1020} 17 Jun 1941 (NEB); Lebanon Co., Newmanstown, {\i C. S. Keener 237} 16 Jun 1959 (WV); Lehigh Co., Hosensack, {\i H. W. Pretz 12578} 21 Jun 1925 (MSC); Lehigh Co., Mosserville, 1 N, {\i R. L. Schaeffer, Jr 35721} 28 Jun 1951 (KANU); Mifflin Co., Bald Eagle State Forest, {\i A. W. Cusick 31045} 17 Jun 1993 (MICH); Monroe Co., Poplar Valley, {\i F. B. Buser 11637} 12 Jun 1978 (GH); Montgomery Co., Glasgow, {\i David Berkheimer 4822} 8 Jun 1944 (KANU); Montgomery Co., Schwenksville, {\i E. T. Wherry s.n.} 5 Jun 1960 (VPI); Northampton Co., Chapman Quarries, {\i R. L. Schaeffer 13012} 23 Jun 1941 (GH); Northampton Co., Stouts, {\i R. L. Schaeffer 26324} 3 Jul 1947 (GH); Northampton Co., Slate Valley, {\i R. L. Schaeffer 7366} 11 Jul 1940 (GH); Northampton Co., Portland, {\i L. F. Randolph 72} 5 Jun 1922 (GH); Northampton Co., Point Phillip, {\i B. Long 43946} 28 Jun 1934 (GH); Schuylkill Co., St. Clair, {\i J. A. Churchill s.n.} 14 Aug 1969 (MSC); Snyder Co., Meiserville, {\i P. E. Rothrock 512} 13 Jun 1975 (NCU); Union Co., Glen Iron, {\i P. E. Rothrock 505} 13 Jun 1975 (NCU).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 South Carolina: Abbeville Co., Abbeville, {\i C. N. Horn 9058} 13 May 1995 (USCH); Abbeville Co., Cedar Springs, {\i J. B. Nelson 21099} 21 Apr 2000 (USCH); Abbeville Co., Richard Russell Dam and Lake Area, {\i W. C. Credle 843} 6 Jun 1979 (CLEMS); Abbeville Co., Richard Russell Dam and Lake Area, {\i W. C. Credle 725} 21 May 1979 (CLEMS); Abbeville Co., Sumter NF, {\i J. B. Nelson 17265} 31 May 1996 (MICH); Cherokee Co., Gaffney, {\i H. E. Ahles 26970} 4 Jun 1957 (NCU); Cherokee Co., Kings Mt. National Military Park, {\i D. E. Kennemore Jr. 310} 17 May 1993 (USCH); Chester Co., Big Sky Prairie, {\i A. Darr 1713} 6 Jun 2003 (USCH); Edgefield Co., Mt. Creek, {\i A. E. Hodge 861} 9 May 1984 (CLEMS); Edgefield Co., Horn Creek Analysis Area, {\i J. B. Nelson 18045} 2 Apr 1997 (USCH); Edgefield Co., Horn Creek Analysis Area, {\i J. B. Nelson 18166} 4 May 1997 (USCH); Edgefield Co., Sumter NF, {\i J. B. Nelson 17265} 31 May 1996 (USCH); Edgefield Co., Sumter NF, {\i J. B. Nelson 17438} 8 Jul 1996 (USCH); Edgefield Co., Trenton, {\i A. E. Radford 22535} 12 May 1957 (NCU); Fairfield Co., Ridgeway, {\i J. B. Nelson 18303} 24 May 1997 (USCH); Fairfield Co., Winnsboro, {\i J. B. Nelson 19069} 19 Apr 1998 (USCH); Lancaster Co., Forty Acre Rock, {\i J. C. Coffey 23} 4 Apr 1963 (USCH); Lancaster Co., Kershaw, {\i B. F. Williamson 957} 3 Jun 1961 (NCU); Newberry Co., Pomaria, {\i J. B. Nelson 22628} 23 May 2002 (USCH); Oconee Co., Earle\rquote s Ford Campground, {\i R. W. Gettman 337} 29 Jun 1973 (CLEMS); Oconee Co., Station Cove, {\i L. L. Gaddy s.n.} 22 Apr 1986 (CLEMS); Spartanburg Co., Cross Anchor, {\i J. B. Nelson 22469} 17 Apr 2002 (USCH); Union Co., Sumter Nat Forest, {\i C. N. Horn 6643} 14 May 1993 (MICH); Union Co., Tinker\rquote s Creek, {\i O. M. Freeman 56148} 14 May 1956 (NCU); York Co., Kings Mt. National Military Park, {\i D. E. Kennemore Jr. 491} 7 Jun 1993 (USCH); York Co., Kings Mt. SP, {\i D. E. Kennemore Jr. 681} 6 Jul 1993 (USCH); York Co., Kings Mt. SP, {\i D. E. Kennemore Jr. 642} 8 Jun 1993 (USCH); York Co., Kings Mt. SP, {\i D. E. Kennemore Jr. 1379} 5 Jun 1994 (USCH); York Co., Rock Hill, {\i J. B. Nelson 4630} 30 Apr 1986 (USCH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Tennessee: Benton Co., Rt 191, {\i Hal R. DeSelm s.n.} 10 May 1993 (EKY); Bradley Co., Cleveland, {\i L. R. Hesler 1087} 26 May 1934 (NCU); Carroll Co., Thompson School Road, {\i Hal R. DeSelm s.n.} 21 Jun 1993 (EKY); Cheatham Co., Henrietta, {\i E. W. Chester 81-289} 31 May 1981 (NCU); Cheatham Co., Pegram, {\i H. K. Svenson 10339} 12 Jul 1939 (NYS); Clay Co., Celina, {\i V. E. McNeilus 91-313} 13 May 1991 (NEB); Coffee Co., A. E. D. C. Wildland Management area. {\i K. E. Rogers 44794} 19 May 1966 (NCU); Davidson Co., Bordeaux, {\i R. Kral 42638} 16 May 1971 (VPI); Davidson Co., Couchville Barrens, {\i V. E. McNeilus 88-520} 10 Jun 1988 (TAES); Davidson Co., Pearcy Priest Lake, {\i G. Gonsoulin 3072} 12 May 1973 (WV); Dickson Co., White Bluff, {\i R. Kral 55382} 13 May 1975 (VDB); Fayette Co., Amour Rd., {\i Hal R. DeSelm s.n.} 18 Aug 1993 (EKY); Humphreys Co., Cuba Landing, {\i R. Kral 80415B} 10 May 1992 (VDB); Knox Co., Northshore Drive, {\i V. E. McNeilus 88-336} 16 May 1988 (TAES); Knox Co., Knoxville, {\i V. E. McNeilus 88336} 16 May 1988 (MSC); Knox Co., Knoxville, {\i A. Ruth s.n.} 1 May 1894 (MICH); Knox Co., Knoxville, {\i A. Ruth s.n.} 1 May 1895 (MSC); Knox Co., Mascot, {\i A. J. Sharp 734} 2 Jun 1946 (NCU); Lawrence Co., Laurel Hill Lake, {\i R Kral 55485} 18 May 1975 (MICH); Loudon Co., Centerville, {\i V. E. McNeilus 90-164} 30 Apr 1990 (TAES); Marion Co., Fiery Gizzard Gorges, {\i R. C. Clark 1814a} 16 May 1965 (NCU); McNairy Co., Henderson, {\i S. M. Bain 251} 5 May 1893 (MSC); Meigs Co., Fezzell Road, {\i H. R. DeSelm 197} 3 Jun 1974 (EKY); Monroe Co., Tellico Plains, {\i J. A. Churchill 93456} 2 Jul 1993 (MICH); Montgomery Co., Clarksville, {\i A. Clebsch s.n.} 4 Jun 1950 (NCU); Roane Co., Fairview: Spiers Trailer, {\i H. R. DeSelm 197} 3 Jun 1974 (EKY); Rutherford Co., Smyrna, {\i R. Kral 55369} 9 May 1975 (MICH); Stewart Co., Land Between the Lakes, {\i W. H. Wllis s.n.} 21 May 1966 (NCU); Sumner Co., Taylor Hollow, {\i R. Carter 1806} 17 May 1979 (VDB); Unicoi Co., Unicoi, {\i J. A. Churchill 90-1512} 22 May 1990 (MSC); Williamson Co., Fernvale, {\i R. Kral 85884} 19 May 1996 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Vermont: Bennington Co., Barbera\rquote s Pond Road, {\i D. E. Boufford 17906} 12 Aug 1975 (NCU); Rutland Co., Benson, {\i Clarence H. Knowlton s.n.} 19 Jul 1917 (KANU); Rutland Co., Brandon, {\i D. L. Dutton 973} 3 Jul 1918 (GH); Rutland Co., Hubbardton, {\i W. W. Eggleston s.n.} 17 Jul 1898 (KANU); Rutland Co., Ira, {\i G. L. Kirk s.n.} 10 Jun 1911 (GH); Rutland Co., Sudbury, {\i E. H. Eames 9160} 5 Aug 1915 (GH); Windham Co., Brattleboro, {\i L. A. Wheeler 84803} 14 Jun 1922 (GH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Virginia: City of Newport News, Fort Eustis, {\i P. K. Appler 576} 16 May 1973 (NCU); Albermarle Co., Bucks Elbow Mt., {\i C. E. Stevens 7066} 24 Jun 1973 (VPI); Alleghany Co., Natural Well, {\i G. P. Fleming 13065} 21 May 1997 (VPI); Arlington Co., Washington-Lee Highschool, {\i A. Higginson 129} 25 May 1946 (MARY); Augusta Co., Sherando, {\i E. P. Killip 32570} 7 Jun 1938 (MICH); Augusta Co., Elliott Knob, {\i H. A. Allard 668} 23 Jun 1935 (VPI); Bath Co., Millboro, {\i J. F. Townsend 2866} 7 Aug 2002 (VPI); Bedford Co., {\i A. H. Curtiss s.n.} (KANU); Botetourt Co., Craig Co. Line, {\i T. F. Wieboldt 4751} 18 Jul 1983 (VPI); Charles City Co., Wayside, {\i D. M. E. Ware 4706} 11 May 1973 (NCU); City of Norfolk Co., Norfolk Botanical Gardens, {\i G. P. Frank 242} 16 Jun 1980 (VPI); Clarke Co., Ashby Gap, {\i T. Bradley 23421} 12 Jun 1990 (CLEMS); Craig Co., New Castle, {\i T. F. Wieboldt 5683} 17 Jul 1985 (MICH); Culpeper Co., Buzzard Mt., {\i H. A. Allard 20686} 6 Jun 1953 (WV); Culpeper Co., Buzzard Mt., {\i H. A. Allard 21470} 6 Jun 1963 (KANU); Culpeper Co., Mt. Pony, {\i H. A. Allard 2689} 16 May 1937 (VPI); Culpeper Co., Winston, {\i J. A. Churchill s.n.} 28 Jul 1970 (MSC); Culpepper Co., Culpepper, {\i H. A. Allard 1453} 15 May 1936 (VPI); Cumberland Co., Duncan\rquote s Store, {\i T. F. Wieboldt 7143} 11 May 1990 (VPI); Dickenson Co., Cluichco, {\i D. W. Ogle s.n.} 14 Jul 1987 (VPI); Fairfax Co., Fairfax, {\i F. H. Sargent s.n.} 12 Jun 1949 (KANU); Fairfax Co., Ft. Hunt, {\i S. F. Blake s.n.} 17 Jun 1933 (MSC); Fauguier Co., Beverly Mills, {\i J. A. Churchill s.n.} 26 May 1968 (MSC); Fauquier Co., High Point, {\i H. A. Allard 4926} 5 Jun 1938 (VPI); Fauquier Co., Hopewell Gap, {\i H. A. Allard 498} 2 Jun 1935 (KANU); Fauquier Co., Pond Mt., {\i H. A. Allard 11258} 20 May 1945 (WV); Fauquier Co., Western slope of Bull Run Mts, {\i H. A. Allard 4734} 15 May 1938 (VPI); Fauquier Co., Western slope of Bull Run Mts, {\i H. A. Allard 11239} 13 May 1945 (VPI); Fauquier Co., White Rocks, {\i H. A. Allard 8710} 25 May 1941 (VPI); Fluvanna Co., Rt. 629, {\i G. M. Diggs Jr. 264} 17 Jun 1975 (NCU); Fluvanna Co., Hardware, {\i C. E. Stevens 4872} 18 May 1972 (VPI); Franklin Co., Ferrum, {\i T. F. Wieboldt 9213} 11 May 1995 (VPI); Greene Co., McMullen, {\i T. F. Wieboldt 2511} 3 Jul 1976 (NCU); Henry Co., VA 87, {\i G. B. Straley 69103} 15 May 1969 (VPI); Highland Co., Bear Mt., {\i A. B. Davenport s.n.} 25 Jun 1988 (VPI); Lee Co., Jonesville, {\i L. J. Uttal 13184} 7 Jun 1984 (VPI); Lee Co., Thomas Cemetery, {\i J. C. Ludwig 2726} 22 May 1996 (VPI); Lee Co., Jonesville, {\i T. F. Wieboldt 5043} 30 May 1984 (VPI); Lee Co., N Tyler, {\i D. W. Ogle s.n.} 21 May 1990 (VPI); Lee Co., The Cedars, {\i D. W. Ogle 1393} 20 May 1979 (VPI); Lee Co., Jonesville, {\i L. U. Uttal 7186} 5 Jun 1970 (VPI); Loudoun Co., Headwaters of Elklick Run, {\i M. T. Strong 87-098} 14 Jun 1987 (USCH); Loudoun Co., Goose Creek, {\i H. A. Allard 21436} 24 May 1953 (WV); Loudoun Co., Centerville, {\i E. H. Walker 5604} 24 Jun 1950 (MARY); Loudoun Co., Goose Greek, {\i H. A. Allard 20252} 30 May 1952 (WV); Madison Co., Aroda, {\i T. Bradley 23363} 10 Jun 1990 (CLEMS); Montgomery Co., Ellett Creek bridge, {\i L. J. Uttal 9723} 21 May 1973 (CLEMS); Montgomery Co., Blacksburg, {\i M. L. Smyth 4526} 2 Jun 1978 (VPI); Montgomery Co., Ironto, {\i R. Kral 10724} 6 Jul 1960 (NCU); Montgomery Co., Poverty Creek, {\i L. J. Uttal 8113} 22 Jun 1971 (VPI); Montgomery Co., Roanoke Valley, {\i W. B. McIntosh s.n.} 24 Jun 1947 (VPI); Orange Co., Burr Hill, {\i T. Bradley 23292} 21 May 1990 (CLEMS); Orange Co., Burr Hill, {\i T. Bradley 23280} 21 May 1990 (CLEMS); Page Co., Jollett, {\i T. Bradley 19084} 24 May 1983 (NCU); Powhatan Co., Fine Creek, {\i C. M. Corcoran 326} 10 May 1976 (NCU); Prince Edward Co., Farmville, {\i A. M. Harvill 21313} 23 May 1969 (NCU); Prince Edward Co., Twin Lakes SP, {\i J. F. Townsend 3241} 30 Jun 2004 (VPI); Prince William Co., Bull Run Mts, {\i H. A. Allard 7716} 9 Jun 1940 (NY); Prince William Co., Eastern slope of Bull Run Mts, {\i H. A. Allard 7715} 9 Jun 1940 (VPI); Prince William Co., Quantico Marine Base, {\i B. W. Hoagland QUN0395} 19 Jun 1994 (OKL); Pulaski Co., Big Reed Island Creek Rd, {\i L. J. Uttal 7177} 4 Jun 1970 (VPI); Roanoke Co., Bennett Springs, {\i L. J. Uttal 8715} 22 May 1972 (VPI); Russell Co., Clinch Mt., {\i D. W. Ogle 5950} 25 Jun 1985 (VPI); Russell Co., N Clinch River, {\i D. W. Ogle 5644} 19 Jun 1983 (VPI); Russell Co., Russell Co. Park, {\i D. W. Ogle 6026} 26 May 1986 (VPI); Scott Co., Gate City, {\i T. F. Wieboldt 8625} 21 Jun 1993 (VPI); Shenandoah Co., Short Mt., {\i H. A. Allard 8827} 6 Jun 1941 (VPI); Shenandoah Co., Hudson Crossroads, {\i A. W. Cusick 23542} 13 Jun 1984 (NCU); Shenandoah Co., Mill Mt., {\i H. A. Allard 4855} 28 May 1938 (VPI); Smyth Co., Hungry Hollow, {\i J. K. Small s.n.} 7 Jun 1892 (MSC); Smyth Co., Marion, {\i R. Leedy 1401} 30 May 1978 (VPI); Spotsylvania Co., Massaponax, {\i T. Bradley 19131} 28 May 1983 (NCU); Westmoreland Co., Westmoreland SP, {\i J. Dodge 1395} 4 Jun 1999 (VPI); Wise Co., Powell Mt., {\i T. F. Wieboldt 6678} 2 Jun 1988 (MICH); Wythe Co., Wytheville, {\i T. F. Wieboldt 5639} 27 Jun 1985 (VPI).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 West Virginia: Barbour Co., Tygart Valley River, {\i G. B. Rossbach 9779} 26 Jun 1986 (WV); Barbour Co., Pediddle Road, {\i W. N. Grafton s.n.} 3 Jul 1997 (WV); Berkeley Co., Sleepy Creek Lake Dam, {\i W. N. Grafton s.n.} 27 Jun 2004 (WV); Berkeley Co., Tomahawk, {\i E. L. Core 5881} 10 Jul 1937 (WV); Braxton Co., Gassaway, {\i F. J. Boggs Jr. s.n.} 5 Jun 1953 (WV); Cabell Co., Roland Park, {\i F. A. Gilbert 473} 21 Jun 1936 (WV); Doddridge Co., Ashley, {\i E. L. Core 5595} 8 Jul 1937 (WV); Fayette Co., Ames Heights, {\i D. W. Suiter 1580} 20 Jun 1993 (WV); Fayette Co., New River Gorge, {\i W. N. Grafton s.n.} 4 Jul 1972 (WV); Gilmer Co., Tanner Creek, {\i E. A. Bartholomew s.n.} 31 Jul 1965 (WV); Grant Co., Bayard, {\i A. W. Cusick 24286} 28 May 1985 (WV); Grant Co., Cabins, {\i G. B. Rossbach s.n.} 30 May 1953 (WV); Grant Co., Day Park at Arthur, {\i W. N. Grafton s.n.} 22 Jun 2000 (WV); Grant Co., Monongahela NF, {\i A. Cusick 23523} 12 Jun 1984 (MICH); Hancock Co., Orchard Run, Hillcrest Wildlife Management Area, {\i W. N. Grafton s.n.} 7 Jul 2005 (WV); Hardy Co., Alleghenies, {\i H. A. Allard 6732} 8 Jun 1939 (WV); Harrison Co., Dog Run Lake, {\i W. N. Grafton s.n.} 1 Jun 1997 (WV); Jackson Co., Ripley, {\i R. Guthrie s.n.} 16 May 1953 (WV); Kanawha Co., Camp Carlisle on Blue Creek., {\i W. N. Grafton s.n.} 25 May 1980 (WV); Kanawha Co., Nitro, Redinour Park, {\i G. C. Tucker 7108} 11 Jun 1992 (NYS); Lewis Co., Jackson\rquote s Mill Camp Reservoir, {\i W. N. Grafton s.n.} 9 Jun 1995 (WV); Lincoln Co., Fez School, {\i William N. Grafton s.n.} 28 May 1980 (WV); Lincoln Co., Fez, {\i William N. Grafton s.n.} 28 May 1980 (WV); Marion Co., Fairview, {\i E. L. Core 5211} 5 Jul 1937 (WV); Mason Co., Pt. Pleasant, {\i H. C. Dahl s.n.} 1 Apr 1951 (WV); Mason Co., Arbuckle Twp., {\i M. A. Vincent 4701} 22 May 1991 (WV); Mercer Co., Eads Mill, {\i W. N. Grafton s.n.} 7 Jun 1987 (WV); Mercer Co., Pipestem SP, {\i W. N. Grafton s.n.} 28 Jun 1997 (WV); Monongalia Co., Morgantown, {\i W. N. Grafton s.n.} 26 May 1997 (WV); Monongalia Co., White Park in Morgantown, {\i W. N. Grafton s.n.} 24 May 1995 (WV); Pendleton Co., Thorn Creek Rd, {\i W. N. Grafton s.n.} 2 Jun 1998 (WV); Pocahontas Co., Frost, {\i W. N. Grafton s.n.} 11 Jun 1996 (WV); Preston Co., Arthurdale, {\i H. A. Davis 6386} 16 Jun 1944 (WV); Preston Co., US Rt. 50, {\i A. W. Cusick 23471} 10 Jun 1984 (WV); Raleigh Co., Batoff Mt., {\i J. P. Tosh 1126} 31 May 1941 (WV); Randolph Co., Huttonsville, {\i E. E. Hutton s.n.} 29 May 1959 (WV); Ritchie Co., Pennsboro, {\i E. L. Core 5657} 8 Jul 1937 (WV); Roane Co., Charles Fark Lake, {\i W. N. Grafton s.n.} 26 Jun 2001 (WV); Roane Co., Hungry Beech Preserve, {\i W. N. Grafton s.n.} 21 Jun 1979 (WV); Summers Co., Bluestone SP, {\i W. N. Grafton s.n.} 14 Jul 1996 (WV); Summers Co., Pipestem SP, {\i W. N. Grafton s.n.} 27 Jun 1997 (WV); Summers Co., Stony Creek, {\i W. N. Grafton s.n.} 22 Jun 1976 (WV); Tucker Co., Canaan Valley, {\i H. A. Allard 12295} 21 Jun 1947 (WV); Upshur Co., Buckhannon, {\i G. B. Rossbach 2640} 16 Jun 1961 (WV); Upshur Co., Buckhannon, {\i G. B. Rossbach s.n.} 23 Jun 1954 (WV); Wayne Co., Buffalo Creek, {\i L. Plymale 405} 3 Jun 1938 (WV); Wayne Co., Doane Hollow, Cabwaylingo State Forest, {\i W. N. Grafton s.n.} 27 Jun 1998 (WV); Wayne Co., Nestlow, {\i A. W. Cusick 33182} 26 Jun 1996 (WV); Wayne Co., Prichard, {\i J. B. Nelson 19535} 17 Jul 1998 (WV); Wirt Co., Palestine Bass Hatchery, {\i E. A. Bartholomew W-4123} 5 Jun 1956 (NCU); Wirt Co., Elizabeth, {\i E. A. Bartholomew W-4124} 24 Jun 1956 (WV); Wirt Co., Elizabeth, {\i E. A. Bartholomew W 4110} (WV); Wirt Co., Palestine, {\i E. A. Bartholomew s.n.} 27 May 1942 (NCU); Wirt Co., Palestine, {\i E. A. Bartholomew W1941-1054} 24 May 1941 (WV); Wirt Co., Reedy Creek, {\i E. A. Bartholomew W-4123} 5 Jun 1956 (WV).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 {\b {\scaps Carex roanensis}}. U. S. A. South Carolina: Oconee Co., Burrell\rquote s Ford, Chattooga River, {\i M. G. Douglass 467} 16 May 1981 (CLEMS).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 West Virginia: Preston Co., Aurora, {\i E.S. Steele 17 Aug 1898} (NY).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 {\b {\scaps Carex swanii}}. Canada. British Columbia: Southern Hernando Island, {\i G. B. Stratley 8510} 11 Jun 1995 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Nova Scotia: Annapolis Co., Granville, {\i M. L. Fernald 23487} 18 Jul 1921 (CAN); Shelburne Co., Islands Provincial Park, {\i M. J. Oldham 13880} 26 Jun 1992 (MICH); Yarmouth Co., Lake George, {\i M. L. Fernald 23486} 16 Jul 1921 (CAN); Yarmouth Co., Yarmouth, {\i A. S. Pease} 4 Jul 1920 (KANU).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Ontario: Elgin Co., Bayham Township, {\i M. J. Oldham 12778} 16 Jun 1991 (WIS); Elgin Co., Port Burwell Provincial Park, {\i M. J. Oldham 15213} 23 Jul 1993 (MICH); Essex Co., Ruscom River, {\i M. J. Oldham 3000} 6 Jul 1982 (MICH); Essex Co., Anderson Tp., {\i M. J. Oldham 2761} 14 Jun 1982 (MICH); Essex Co., Arner, {\i Macoun 33750} 2 Aug 1901 (CAN); Essex Co., Cedar Creek, {\i M. J. Oldham 6699} 12 Aug 1986 (MICH); Essex Co., Essex Centre, {\i Macoun 32085} 1 Jul 1882 (CAN); Essex Co., Harrow, {\i M. J. Oldham 2686} 6 Jun 1982 (CAN); Essex Co., Hillman Creek Marsh, {\i S. J. Darbyshire 2606} 24 Jun 1985 (CAN); Essex Co., Hillman Sand Hills, {\i M. J. Oldham 1648} 13 Jul 1981 (MICH); Essex Co., Kingsville, {\i M. J. Oldham 2916} 26 Jun 1982 (CAN); Essex Co., Leamington {\i Anonymous s.n.} 30 Jun 1882 (MTMG); Essex Co., Leamington, {\i T. J. W. Burgess s.n.} 30 Jun 1882 (MICH); Essex Co., Leamington, {\i T. Burgess s.n.} 1 Jul 1882 (CAN); Essex Co., Leamington, {\i M. J. Oldham 1648} 13 Jul 1981 (CAN); Essex Co., Leamington, {\i T. J. W. Burgess s.n.} 1 Jul 1882 (MTMG); Essex Co., Harrow, {\i A. A. Reznicek 7159} 19 Jun 1983 (MICH); Essex Co., Oxley Poison Oak Swamp, {\i M. J. Oldham 2686} 6 Jun 1982 (TAES); Essex Co., Reaume Prairie, {\i M. J. Oldham 11056} 12 Jun 1990 (CAN); Essex Co., Ruscom River, {\i M. J. Oldham 3000} 6 Jul 1982 (CAN); Essex Co., Tilbury West Conservation Area, {\i M. J. Oldham 16410} 18 Jul 1994 (MICH); Essex Co., Kingsville, {\i M. J. Oldham 2916} 26 Jun 1982 (MICH); Haldimand-Norfolk Co., Deer Creek, {\i D. A. Sutherland 7191} 25 Jun 1986 (CAN); Kent Co., Wheatley Provincial Park, {\i A. A. Reznicek s.n.} 3 Sep 1979 (MICH); Kent Co., Wheatley Provincial Park, {\i M. J. Oldham 2835} 21 Jun 1982 (MICH); Lambton Co., Walpole Island, {\i P. F. Maycock 7504} 18 Jun 1985 (MICH); Middlesex Co., Meadowlily Woods, London, {\i M. J. Oldham 8565} 30 Aug 1988 (MICH); Middlesex Co., Sydenham River valley, {\i M. J. Oldham 15135} 13 Jul 1993 (MICH); Perth Co., Ellice Swamp, {\i M. J. Oldham 15257} 27 Jul 1993 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Quebec: Brome Co., Glen Sutton, {\i Marie-Victorin 56374} 28 Jun 1941 (CAN); Brome Co., Sutton, {\i Marie-Victorin 55268} 22 Jun 1941 (CAN); Missisquoi Co., Frelighsburg, {\i L. Cinq-Mars 67-90} 29 Jun 1967 (CAN); Missisquoi Co., Frelighsburg, {\i M. J. Oldham 7408} 18 Jun 1987 (TAES); Missisquoi Co., Frelighsburg, {\i Marcel Raymond s.n.} 24 Jun 1953 (WIS).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 U. S. A. {\i D. Clark s.n.} 1 Jul 1899 (MSC); {\i H. C. Cowles s.n.} 24 Jun 1892 (MICH); Flora of the Western Reserve, {\i G. B. Ashcroft 7441} 1 Jun 1897 (WIS).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Alabama: Jackson Co., Pleasant Grove, {\i R. Jones 7149} 8 Jul 1992 (VDB).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Arkansas: Garland Co., Hot Springs NP, {\i C. T. Bryson 5763} 24 May 1987 (MICH); Garland Co., Iron Springs Recreation Area, {\i A. A. Reznicek 8494} 5 Jun 1989 (MICH); Garland Co., Ouachita National Forest, {\i R. Naczi 3930} 19 May 1994 (NKY); Independence Co., McHue vicinity, {\i Phillip E. Hyatt 5578.32} 30 May 1993 (MICH); Montgomery Co., Norman, {\i R. Kral 77536} 12 May 1990 (VDB); Montgomery Co., Camp Albert Pike Rec. Area, {\i J. Rettig 554} 20 May 1982 (VDB); Montgomery Co., Caddo Gap, {\i R. Kral 77563} 12 May 1990 (VDB); Montgomery Co., Cox Springs, {\i C. T. Bryson 4272} 10 May 1986 (MICH); Montgomery Co., Little Missouri River Falls Rec. Area, {\i C. T. Bryson 4349} 10 May 1986 (MICH); Montgomery Co., Newton, {\i R. Kral 76434} 26 May 1989 (VDB); Montgomery Co., Ouchita NF: Caney Creek WMA, {\i S. D. Jones 10102} 18 May 1993 (VPI); Polk Co., Shady Lake Campground, {\i Charles T. Bryson 4340} 10 May 1986 (VDB); Polk Co., McKinley Mt., {\i R. Kral 76412} 23 May 1989 (VDB); Polk Co., Cossatat River, {\i S. Jones 4638} 13 May 1990 (VDB); Polk Co., Rich Mountain, {\i S. Jones 4668} 14 May 1990 (VDB); Polk Co., Big Fork State Natural Area, {\i R. Kral 76335} 22 May 1989 (VDB); Stone Co., Ozark National Forest, {\i Phillip E. Hyatt 4108.69} 26 Jun 1991 (BRIT); Stone Co., St. Martin\rquote s River Access point, {\i David Castaner 9092} 9 May 1986 (MICH); Stone Co., Sylamore District of the Ozark National Forest, {\i Phillip E. Hyatt 4115.69} 10 Jul 1991 (MICH); Van Buren Co., Conway Co., {\i Phillip E. Hyatt 5429} 18 May 1993 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Connecticut: East Lyme, {\i E. J. Alexander s.n.} 19 Jun 1936 (NY); Portland, {\i S. W. Starmer s.n.} 21 Jun 1896 (SMU); Windham, {\i C. A. Weatherby s.n.} 16 Jul 1932 (WIS); Fairfield Co., Fairfield, {\i E. H. Eames s.n} 18 Jun 1901 (MSC); Fairfield Co., New Fairfield, {\i F. C. Seymour 19,909} 14 Jul 1962 (SMU); Fairfield Co., Winnipauk, {\i F. C. Seymour 20528} 21 Jun 1963 (GH); Hartford Co., Hartford, {\i A. W. Driggs 3} 15 Jun 1901 (GH); Hartford Co., Hartford, {\i Charles Wright s.n.} 16 Jun 1875 (WIS); Litchfield Co., Colebrook, {\i L. J. Mehroff 19484} 27 Jun 1997 (MICH); Litchfield Co., Housatonic State Forest, {\i L. J. Mehrhoff 8034} 23 Jun 1983 (MICH); Middlesex Co., Durham, {\i C. A. Weatherby 3061} 22 Jun 1913 (GH); Middlesex Co., Old Saybrook, {\i S. R. Hill 16812} 9 Jun 1986 (TAES); Middlesex Co., Portland, {\i F. W. Starmer s.n.} 21 Jun 1896 (GH); New Haven Co., Wallingford, {\i L. J. Mehroff 20873} 6 Jul 2000 (MICH); New Haven Co., Waterbury, {\i A. E. Blewitt 238} 28 Jul 1910 (GH); New London Co., Bishops Cove development, {\i S. R. Hill 21744} 22 Jul 1990 (MICH); New London Co., Salem, {\i G. C. Tucker 4214} 13 Sep 1988 (NYS); New London Co., Town of Franklin, {\i R. W. Woodward s.n.} 21 Jun 1906 (GH); New London Co., Town of Franklin, {\i R. W. Woodward s.n.} 10 Oct 1909 (GH); Tolland Co., Mansfield, {\i L. J. Mehrhoff 6377} 25 Jun 1982 (MICH); Tolland Co., Tolland, {\i L. J. Mehrhoff 15782} 11 Jul 1992 (MICH); Windham Co., Thompson, {\i C. A. Weatherby 4644} 27 Jun 1920 (GH); Windham Co., Woodstock, {\i C. Schweinfurth s.n.} 16 Jun 1934 (GH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Delaware: New Castle Co., State Rd. Station, {\i R. R. Dreisbach 4323} 27 Jun 1926 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 District of Columbia: {\i G. Vasey s.n.} 1880 (MSC); Briar Ditch Valley, {\i E. C. Leonard 21137} 20 Jun 1960 (KANU); Washington, D. C., {\i George Versey s.n.} 1884 (WIS).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Georgia: Rabun Co., Pine Mountain, {\i J. A. Churchill 91-267} 14 Jun 1991 (MSC); Rabun Co., Warwoman Dell Creek, {\i Phillip E. Hyatt 6064} 29 May 1994 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Illinois: Cook Co., Palos Hills, {\i S. R. Hill 29307} 11 Jun 1997 (MICH); Cook Co., Thornton, {\i A. Chase s.n.} 13 Jun 1898 (MSC); Iroquois Co., Indiana State Line, {\i A. A. Reznicek 10838} 6 Jun 1999 (MICH); McDonough Co., Macomb, {\i S. R. Hill 31499} 18 May 1999 (MICH); Perry Co., Pyramid SP, {\i J. Reveill 1354} 11 Jun 1982 (MO); Winnebago Co., Rock Cut Forest Preserve, {\i Egbert W. Fell 55-489} 18 Jun 1955 (WIS); Winnebago Co., Rock River Valley, {\i E. W. Fell 56-243} 24 Jun 1956 (GH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Indiana: Chesterton, {\i L. M. Umbach s.n.} 16 Jun 1900 (WIS); Chesterton, {\i L. M. Umbach 12329} 16 Jun 1900 (WIS); Allen Co., Godfrey Indian Reserve, {\i C. C. Deam 1154} 24 Jun 1906 (MICH); Bartholomew Co., Columbus, {\i C. C. Deam 23,165} 27 May 1917 (MICH); Cass Co., Hoover, {\i C. C. Deam 45,811} 2 Jul 1928 (MICH); Elkhart Co., Simonton Lake, {\i C. C. Deam 55,036} 15 Jun 1934 (MICH); Laporte Co., Michigan City, {\i D. Castaner 8521} 8 Jun 1985 (MO); Lawrence Co., Heltonville, {\i R. M. Kriebel 2176} 17 Jun 1934 (MICH); Lawrence Co., Springville, {\i R. M. Kriebel 1783} 6 Jun 1934 (MICH); Lawrence Co., Springville, {\i R. M. Kriebel 1790} 6 Jun 1934 (WIS); Porter Co., Furnessville, {\i M. W. Lyon Jr. s.n.} 13 Jul 1924 (MICH); Porter Co., Tremont, {\i M. W. Lyon Jr. s.n.} 2 Aug 1925 (MICH); Porter Co., Tremont, {\i H. R. Bennett 7032} 11 Jun 1960 (SMU); Putnam Co., Greencastle, {\i E. J. Grimes 683} 8 Aug 1911 (GH); St. Joseph Co., Granger, {\i Chas. C. Deam 55086} 15 Jun 1934 (WIS).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Kansas: Douglas Co., Baldwin City, {\i Caleb A Morse 8383} 27 Jun 2002 (KANU).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Kentucky: Barren Co., Haywood, {\i R. Naczi 6465} 14 Jun 1997 (NKY); Bath Co., Black Shale Region, {\i M. E. Wharton 2448b} 2 Jun 1938 (MICH); Bell Co., Henderson Fork Road Surface-Mined Area, {\i Ralph L. Thompson 93-161} 19 Jun 1993 (NKY); Bell Co., Cumberland Gap NP, {\i D. F. Brunton 10355} 24 May 1991 (MICH); Bell Co., Pineville, {\i R. Naczi 6714} 25 Jun 1997 (NKY); Boone Co., Petersburg, {\i R. Naczi 4104} 12 Jun 1994 (NKY); Boyle Co., Black Shale Region, {\i M. E. Wharton 952} 21 Jul 1937 (MICH); Calloway Co., Ky 614, {\i R. Athey 2826} 25 Jun 1974 (VDB); Calloway Co., Croppie Hollow Shores Subdivision, {\i R. Athey 2291} 21 May 1973 (VDB); Campbell Co., Silver Grove, {\i R. Naczi 226} 12 Jun 1996 (NKY); Campbell Co., Silver Grove, {\i R. Naczi 129} 12 Jun 1996 (NKY); Clinton Co., Lakewood Estates, {\i L. E. McKinney 6454} 31 May 1995 (MICH); Edmonson Co., Mammoth Cave NP, {\i Landon E. McKinney 2869-2} 25 May 1988 (VDB); Franklin Co., Echo Springs Swamp, {\i S. Rice s.n.} 12 Jul 1984 (EKY); Graves Co., Mayfield, {\i R. Athey 2356} 19 Jun 1973 (VDB); Hardin Co., Ribbon Snake Lake, {\i R. Cranfill 265} 18 May 1977 (MICH); Hopkins Co., St. Charles, {\i L. E. McKinney 4274} 2 Jun 1990 (EKY); Larue Co., Magnolia, {\i Landon McKinney 5083} 5 Jun 1992 (NKY); Laurel Co., Chalie Cheek Swamp, {\i R. Naczi 7385} 15 Jun 1998 (MICH); Laurel Co., Lily, {\i David D. Taylor 511} 1 Jun 1981 (WV); Laurel Co., Rock Creek Gorge, {\i R. L. Thompson 89-770} 29 May 1989 (EKY); Letcher Co., Lilley Cornett Woods Research Station, {\i J. D. Sole 161} 2 Jun 1978 (EKY); Letcher Co., Whitesburg, {\i John W. Thieret 60618} 16 Jul 1999 (NKY); Lewis Co., Thackers Chapel, {\i Cusick 25365} 14 Jun 1986 (NCU); Madison Co., Dunncannon Lane, {\i D. A. Miller 22} 26 Jun 1990 (EKY); Madison Co., Moberly Quadrangle, {\i G. W. Libby OB-329} 31 May 1993 (MICH); Madison Co., Richmond, {\i R. Peter 781} 1 Jun 1834 (MICH); McCracken Co., Metropolis Lake State Nature Preserve, {\i L. E. McKinney 6290} 16 Jun 1994 (MICH); McCreary Co., Daniel Boon NF, {\i S. Jones 4982} 24 May 1990 (VDB); McCreary Co., Honeybee, {\i R. Naczi 6555} 19 Jun 1997 (NKY); McCreary Co., Whitley City, {\i John W. Thieret 57424} 16 May 1994 (NKY); McCreary Co., Whitley City, {\i John W. Thieret 55284} 24 Jun 1984 (NKY); Mulhenberg Co., Lake Malone SP, {\i J. Conrad s.n.} 25 May 1969 (NCU); Nelson Co., Howardstown, {\i Landon McKinney 5097} 3 Jun 1992 (NKY); Owlsey Co., Sturgeon Creek, {\i L. E. McKinney 4687} 18 May 1991 (EKY); Owsley Co., Sturgeon Creek, {\i Landon E. McKinney 4687} 18 May 1991 (VDB); Pike Co., Pine Mt., {\i F. Levy s.n.} 18 Aug 1982 (NCU); Pulaski Co., Woodstock, {\i J. R. Abbott 375} 1 Jun 1991 (EKY); Rockcastle Co., Morning View Church, {\i R. Hannan 2004} 30 May 1979 (EKY); Rockcastle Co., Rigsby\rquote s Swamp, {\i R. R. Hannan 160} 10 Jun 1977 (EKY); Wolfe Co., Natural Bridge SP, {\i K. Feeman 240} 19 May 1998 (EKY).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Maine: Cumberland Co., Casco Bay, {\i R. H. True 262} 25 Aug 1923 (GH); Cumberland Co., Casco Bay, Great Chegeague Island, {\i M. L. Fernald 1519} 2 Jul 1909 (GH); Cumberland Co., Oxford, {\i E. B. Chamberlain s.n.} 1 Jul 1907 (GH); Cumberland Co., York Hill, Town of North Yarmouth, {\i E. B. Chamberlain 839} 20 Jul 1905 (GH); Kennebec Co., Litchfield, {\i Fellows 4732} 7 Aug 1912 (GH); Knox Co., Camden, {\i G. B. Rossbach 3847} 7 Aug 1956 (NCU); Knox Co., Camden, {\i G. G. Kennedy s.n.} 12 Jul 1902 (GH); Oxford Co., Dixfield, {\i J. C. Parlin 2135} 3 Jul 1907 (GH); Waldo Co., Lincolnville, {\i G. B. Rossbach 4586} 22 Jul 1958 (NCU).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Maryland: Allegany Co., Selinger Marsh, {\i C. Lea 2141} 28 Jun 2000 (MARY); Anne Arundel Co., Annapolis, {\i F. R. Fosberg 43642} 12 May 1963 (VDB); Anne Arundel Co., Davidsonville, {\i F. H. Sargent 6070} 8 Jun 1952 (WIS); Anne Arundel Co., Patuxent River Park, {\i W. D. Longbottom 3040} 3 Jun 1992 (MARY); Anne Arundel Co., Town of Pasadena, {\i W. D. Longbottom 3032} 2 Jun 1992 (MARY); Calvert Co., Cove Point, {\i B. W. Steury 960615.43} 15 Jun 1996 (MICH); Calvert Co., Scientist\rquote s Cliffs, {\i F. R. Fosberg 43738} 5 Jun 1963 (MICH); Caroline Co., Lentz Road, {\i C. T. Frye 960613-578} 13 Jun 1996 (TAWES); Carroll Co., Morgan Run, {\i C. Lea 2079} 17 Jun 2000 (MARY); Cecil Co., Elk Neck SP, {\i O. H. Thompson 511} 24 May 1973 (MARY); Charles Co., Nanjemoy, {\i S. R. Hill 9208} 7 Jun 1980 (MARY); Dorchester Co., Chicone Woods, {\i C. Lea 1899} 4 Jun 2000 (MARY); Frederick Co., Catoctin Mt. Highway, {\i C. Lea 1718} 28 May 2000 (MARY); Frederick Co., Catoctin Mt. Park, {\i C. J. Hickey II 398} 30 Jun 1973 (NCU); Frederick Co., Catoctin Mt., {\i S. S. Tepfer 1351} 8 Jun 1941 (MARY); Frederick Co., Catoctin Mt., {\i S. S. Tepfer 1324a} 8 Jun 1941 (MARY); Garrett Co., Mineral Spring, {\i C. Lea 2217} 30 Jun 2000 (MARY); Garrett Co., New Germany, {\i C. Lea 2152} 29 Jun 2000 (MARY); Garrett Co., Mt. Nebo Wildlife Management Area, {\i C. Lea 2186} 29 Jun 2000 (MARY); Harford Co., Aberdeen Proving Grounds, {\i B. W. Hoagland ABR0230} 9 Jun 1994 (OKL); Harford Co., Rocks SP, {\i C. Lea 1855} 29 May 2000 (MARY); Kent Co., Millington Wildlife Management Area, {\i W. D. Longbottom 3090} 9 Jun 1992 (MARY); Montgomery Co., Burtonsville, {\i J. C. Ludwig 86102} 17 Jun 1986 (VPI); Montgomery Co., Great Falls, {\i F. H. Sargent s.n.} 19 Jun 1949 (KANU); Montgomery Co., Linden, {\i J. E. Benedict Jr. 5865} 19 Jun 1951 (VPI); Montgomery Co., Marsden Tract, {\i C. Lea 1233} 19 Jun 1999 (MARY); Montgomery Co., Great Falls NP, Bear Island, {\i C. Lea 882} 16 May 1998 (TAWES); Montgomery Co., Great Falls, {\i E. L. Morris s.n.} 28 May 1899 (NEB); Prince Georges Co., Accokeek, {\i S. R. Hill 14193} 14 Jun 1984 (TAES); Prince Georges Co., Fort Washington, {\i J. E. Benedict Jr. 5957} 21 May 1953 (VPI); Prince George\rquote s Co., BARC, {\i R. F. Whitcomb s.n.} 13 Jun 1995 (MARY); Prince George\rquote s Co., Beltsville Agricultural Research Center (BARC), {\i R. F. Whitcomb s.n.} 19 Jun 1995 (MARY); Prince George\rquote s Co., College Park, {\i Anonymous s.n.} 17 Jun 1929 (MARY); Prince George\rquote s Co., Chillum, {\i B. Swanton 1590} 14 Jun 1939 (MARY); Prince George\rquote s Co., Potomac Valley, {\i A. Chase 3766} 4 Jul 1907 (MICH); Prince George\rquote s Co., Laurel, {\i B. Swanton 1588} 14 Jul 1939 (MARY); Prince George\rquote s Co., University of Maryland, College, {\i G. Tanaka 17} 24 May 1962 (MARY); Somerset Co., Venton, {\i C. Lea 1643} 20 May 2000 (MARY); St. Marys Co., Clements, {\i L. B. Smith 5415} 7 Jul 1951 (MARY); St. Mary\rquote s Co., California, {\i C. Lea 2042} 16 Jun 2000 (MARY); Talbot Co., Wittman, {\i C. Lea 1969} 10 Jun 2000 (MARY); Washington Co., Greenbrier SP, {\i C. Lea 1767} 28 May 2000 (MARY); Washington Co., Washington Monument SP, {\i C. Lea 1757} 28 May 2000 (MARY); Wicomico Co., Martins Corner, {\i Wicomico 2994} 27 May 1992 (MARY); Worcester Co., Pocomoke State Forest, {\i C. Lea 1610} 20 May 2000 (MARY); Worcester Co., Rte. 611, {\i C. Lea 1277} 2 Jul 1999 (MARY).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Massachusetts: Amherst, {\i T. Delevoryas s.n.} 10 Jun 1949 (NCU); Arlington, {\i Clarence H. Knowlton 28338} 22 Jun 1907 (WIS); Bradford Clearing, {\i J. R. Churchill s.n} 17 Jun 1914 (VDB); Cheshire, {\i J. R. Churchill s.n.} 20 Jul 1915 (WIS); Greenwich, Flora of the Swift River Watershed, {\i A. S. Goodale s.n.} 13 Jul 1931 (OKL); Lexington Woods, {\i F. C. Seymour s.n.} 2 Aug 1913 (WIS); Martha\rquote s Vineyard Farm Pond, {\i A. B. Seymour s.n.} 1 Jul 1911 (WIS); South Deerfield, {\i R. B. Livingston s.n.} 9 Jun 1960 (NCU); Wellesley Simpson, {\i K. M. Wiegand s.n.} 25 Jun 1909 (NY); Winchester, {\i H. H. Bartlett 185} 4 Jul 1905 (MICH); Woods Hole, Falmouth, {\i D. F. Brunton 8680} 29 Sep 1988 (MICH); Berkshire Co., Lanesboro, {\i J. R. Churchill 82} 25 Jul 1916 (WIS); Bristol Co., {\i J. A. Cushman 1013} 2 Jul 1907 (NCU); Bristol Co., Rehoboth, {\i F. C. Seymour 7495} 22 Jun 1947 (WIS); Essex Co., Hamilton-Essex, {\i A. B. Seymour s.n.} 27 Jun 1908 (KANU); Essex Co., Handover, {\i J. Blake 3355} 21 Jun 1880 (MICH); Hampden Co., Granville, {\i F. C. Seymour 177} 20 Jun 1914 (WIS); Hampshire Co., Hatfield, {\i H. E. Ahles 75633} 30 Jun 1972 (KANU); Hampshire Co., Northampton, {\i H. E. Ahles 86956} 25 Jun 1979 (BRIT); Hampshire Co., Northampton, {\i H. E. Ahles 81777} 3 Jul 1976 (TAES); Nantucket Co., Nantucket Island, {\i R. F. Steinauer 807} 25 Sep 1999 (NEB); Norfolk Co., Blue Hills Reservation, {\i Nathaniel T. Kidder s.n.} 15 Jul 1919 (KANU); Norfolk Co., Dedbam, {\i H. H. Bartlett 788} 4 Jul 1907 (MICH); Norfolk Co., Milton, {\i Nathaniel T. Kidder s.n.} 28 Jun 1886 (KANU); Norfolk Co., Neponsed Reservation, {\i H. H. Bartlett 843} 14 Jul 1907 (MICH); Norfolk Co., Norfolk, {\i R. A. Ware s.n.} 18 Jun 1911 (NCU); Norfolk Co., Sharon, {\i J. Blake s.n.} (KANU); Plymouth Co., Manomet, {\i H. E. Ahles 80259} 22 Jun 1975 (WIS); Worcester Co., Douglas, {\i B. N. Gates s.n.} 14 Jun 1954 (WIS); Worcester Co., Lancaster, {\i F. C. Seymour s.n.} 7 Jul 1943 (WIS); Worcester Co., Lancaster, {\i F. C. Seymour 24816} 7 Jul 1943 (SMU); Worcester Co., Oxford, {\i B. N. Gates 17707} 9 Sep 1957 (WIS); Worcester Co., Spencer, {\i Doris Audette s.n.} 5 Jul 1948 (WIS); Worcester Co., Warren, {\i Winnifred C. Gates 31791} 18 Jun 1954 (WIS).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Michigan: Hein Lakes Woods, {\i J. Cole 7988} 1 Jul 1897 (MICH); Magician Lake Woods, {\i L. M. Umbach 7095} 19 Jul 1915 (WIS); Alcona Co., Harrisville Village, {\i R. Garlitz 1533} 4 Jul 1986 (MSC); Alger Co., Munising, {\i M. R. Panskar 84242} 24 Jul 1984 (MICH); Allegan Co., Allegan, {\i C. W. Bazuin 4681} 28 Jun 1942 (MSC); Allegan Co., Bear Creek, {\i C. W. Bazun 7453} 18 Jul 1947 (MSC); Allegan Co., Crooked Lake, {\i C. W. Bazun 8873} 21 Jun 1952 (MSC); Allegan Co., Heath Twp., {\i G. W. Parmelee s.n.} 30 Jul 1950 (MSC); Barry Co., Gun Lake, {\i G. W. Parmelee 83} 15 Jun 1954 (MSC); Berrien Co., Harbert, {\i H. T. D. s.n.} 22 Aug 1917 (MSC); Berrien Co., Love Creek Nature Center, {\i M. Hamodie 754} 7 Aug 1980 (MICH); Berrien Co., Niles, {\i J. Ng 223} 17 Jun 1981 (MTMG); Berrien Co., Niles, {\i James Ng 326} 1 Jul 1981 (MSC); Berrien Co., Paw Paw Lake, {\i H. T. D. s.n.} 15 Aug 1917 (MSC); Calhoun Co., East Fulton, {\i C. R. Hanes 3813} 20 Jun 1938 (MICH); Cass Co., Howard Twp., {\i G. W. Parmelee 1603} 24 Jul 1950 (MICH); Cass Co., Jefferson Twp, {\i G. W. Parmelee s.n.} 25 Jul 1950 (MSC); Cass Co., Magician Lake, {\i F. C. Gates 1318} 4 Aug 1906 (MICH); Cass Co., Jones, {\i B. M. Robertson 213} 15 Jun 1939 (MICH); Hillsdale Co., Wayside Memorial Roadside Park, {\i P. Fritsch 402} 14 Jun 1987 (MICH); Jackson Co., Leoni Twp., {\i G. W. Parmelee 1346} 8 Jul 1950 (MSC); Kalamazoo Co., {\i S. R. Crispin 697} 6 Aug 1980 (MSC); Kalamazoo Co., Beard, {\i C. R. Hanes s.n.} 17 Jul 1940 (MICH); Kalamazoo Co., Fulton, {\i C. R. Hanes 569} 1 Aug 1939 (MICH); Kalamazoo Co., Whitman Lake, {\i P. J. Higman 611} 15 Jun 1994 (MICH); Kent Co., City of Walker, {\i Edward M Smith 3971} 16 Jun 1996 (KANU); Kent Co., Courtland Twp., {\i G. W. Parmelee 1295} 27 Jun 1950 (MSC); Kent Co., Mud Lake, {\i C. W. Bazuin 11244} 17 Jun 1940 (MSC); Kent Co., Oakfield Twp., {\i C. W. Bazuin 1522} 5 Jul 1940 (MSC); Kent Co., Wabasis Lake Rd., {\i C. W. Bazuin 1484} 4 Jul 1940 (MSC); Lenawee Co., Dover Twp., {\i R. W. Smith 3981} 13 Jun 1998 (MICH); Lenawee Co., Madison Twp., {\i R. W. Smith 2552} 18 Jun 1988 (MICH); Lenawee Co., Madison Twp., {\i R. W. Smith 2170} 4 Jun 1987 (MICH); Lenawee Co., Madison Twp., {\i R. W. Smith 2353} 12 Jul 1987 (MICH); Lenawee Co., Raisin Twp., {\i R. W. Smith 1652} 26 Jun 1986 (MICH); Lenawee Co., Whaley Rd, {\i R. W. Smith 3968} 13 Jun 1998 (MSC); Monroe Co., Lulu, {\i J. A. Churchill s.n.} 16 Jun 1964 (MSC); Montcalm Co., Crystal Lake, {\i C. F. Wheeler 291} 10 Jul 1900 (MSC); Muskegon Co., Lake Harbor, {\i C. D. McLouth s.n.} 20 Jul 1899 (MSC); Oakland Co., Royal Oak, {\i C. Billington s.n.} 22 Jun 1918 (MICH); Ottawa Co., Blodgett Camp, {\i C. W. Bazun 1343} 26 Jun 1940 (MSC); Ottawa Co., Campbell Site, {\i F. G. Goff 385} 10 Jul 1979 (MSC); Ottawa Co., Campbell Site, {\i F. G. Goff 1180} 9 Aug 1979 (MSC); Ottawa Co., Grand Haven Twp., {\i C. W. Bazuin 1343} 26 Jun 1940 (MSC); Ottawa Co., Grand Haven Twp., {\i C. W. Bazuin 1607} 12 Jul 1940 (MSC); Ottawa Co., Grand Haven Twp., {\i C. W. Bazun 511} 28 Jun 1939 (MSC); Ottawa Co., Sand Creek, {\i C. W. Bazuin 1556} 10 Jul 1940 (MSC); Ottawa Co., Spring Lake, {\i C. W. Bazuin 7812} 5 Jul 1948 (MICH); Saginaw Co., Birch Run, {\i R. Garlitz 3591} 11 Jun 1992 (MICH); Saginaw Co., Frankenmuth Twp., {\i J. A. Churchill s.n.} 9 Jul 1965 (MSC); Schoolcraft Co., Hiawatha National Forest, {\i L. B. Gerdes 963} 10 Jul 1995 (MICH); St. Clair Co., Port Huron, {\i C. K. Dodge s.n.} 5 Jul 1898 (MICH); St. Joseph Co., Constantine Twp., {\i G. W. Parmelee 1510} 18 Jul 1950 (MSC); St. Joseph Co., Three Rvers, {\i A. A. Reznicek 8692} 26 Aug 1990 (MICH); St. Joseph Co., Minf School, {\i C. R. Hanes 3921} 13 Jul 1939 (MICH); St.Clair Co., Port Huron, {\i C. K. Dodge s.n.} 7 Jul 1910 (MICH); Van Buren Co., {\i H. S. Pepoon s.n.} 1 Jul 1904 (MSC); Washtenaw Co., Whitmore Lake, {\i C. A. Davis s.n.} 16 Jun 1900 (MICH); Wayne Co., Livonia Twp., {\i Steere Schmidt s.n.} 1936 (WIS); Wayne Co., Detroit, {\i E. C. Almendinger s.n.} 24 Aug 1111 (MICH); Wayne Co., Detroit {\i L. Holzer} (MICH); Wayne Co., Detroit, {\i Sister Vincent de Paul s.n.} 19 Jul 1948 (KANU); Wayne Co., Detroit, {\i E. C. Aldmendinger s.n.} 14 Jul 1877 (MICH); Wayne Co., Sumpter twp., {\i W. W. Brodowicz 945} 26 Jun 1991 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Mississippi: Chickasaw Co., Van Vleet, {\i C. T. Bryson 19155} 27 Apr 2002 (USCH); Grenada Co., Gore Springs, {\i C. T. Bryson 4000} 5 Jun 1985 (VDB); Grenada Co., Gore Springs, {\i M. W. Morris 2929} 15 Jul 1987 (VDB); Itawamba Co., Fulton, {\i V. E. McNeilus s.n.} 4 Jul 1982 (WIS); LaFayette Co., Oxford, {\i Phillip E. Hyatt 6641} 9 Jun 1995 (MICH); Lafayette Co., Presbyterian Camp Hopewell, {\i C. T. Bryson 12410} 1 Jun 1993 (MICH); Marshall Co., Wall Doxey SP, {\i C. T. Bryson 10006} 18 May 1990 (CLEMS); Tishomingo Co., Tennesse Tombigbee Waterway and Natchez Trace Park, {\i C. T. Bryson 13841} 25 May 1994 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Missouri: Bollinger Co., Dark Cypress Swamp Conservation Area, {\i A. E. Brant 4757} 23 Aug 2001 (MO); Butler Co., {\i H. Eggert s.n.} 11 Jun 1893 (NCU); Cape Girardeau Co., Cape Girardeau, {\i Travis Brooks 6923} 24 May 1973 (WV); Dunklin Co., Wilhemina State Forest, {\i A. A. Reznicek 9430} 22 May 1993 (MICH); New Madrid Co., Des Cyprie Slough, {\i P. M. McKenzie 1468} 2 Aug 1994 (MICH); Schuyler Co., Pleasant Grove, {\i B. F. Bush 339} 20 May 1900 (NCU); Scott Co., Hwy H, {\i Travis Brooks 7751} 18 May 1975 (WV); Scott Co., Blodgett, {\i S. Jones 8532} 16 May 1992 (BRIT); Scott Co., General Watkins Conservation Area, {\i P. M. McKenzie 1704} 4 Jun 1996 (MICH); Scott Co., Morley Quad, {\i P. M. McKenzie 1995} 13 May 2002 (MO); Scott Co., Petite Isle sand prairie, {\i P. M. McKenzie 1482} 3 Aug 1994 (MICH); Shannon Co., Angeline Conservation Area, {\i B. Summers 9736} 29 May 2001 (MO); Stoddard Co., Holly Ridge Natural Area, {\i J. A. Raveill 2314} 10 May 1985 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 New Hampshire: {\i B. L. Robinson 312} 15 Jul 1897 (MSC); Carroll Co., Tomworth, {\i F. L. Steele s.n.} 15 Jul 1950 (GH); Cheshire Co., Alstead, {\i E. F. Williams s.n.} 28 Jul 1901 (GH); Cheshire Co., Hinsdale, {\i D. E. Boufford 6465} 29 Jun 1972 (VPI); Cheshire Co., Keene, {\i C. H. Knowlton s.n.} 23 Aug 1922 (GH); Cheshire Co., Rindge, {\i C. F Batchelder s.n.} 11 Aug 1925 (GH); Cheshire Co., Walpole, {\i H. E. Ahles 75362} 21 Jun 1972 (NCU); Grafton Co., Hanover, {\i E. F. Williams s.n.} 18 Jul 1910 (GH); Hillsboro Co., Pelham, {\i C. A. Weatherby s.n.} 6 Jul 1946 (GH); Hillsboro Co., Temple {\i F. C. Seymour s.n.} 9 Aug 1928 (WIS); Hillsborough Co., Hancock, {\i L. Griscom 14575} 21 Jun 1931 (GH); Hillsborough Co., Hillsborough, {\i C. F. Batchelder s.n.} 28 Jul 1920 (GH); Hillsborough Co., Mason, {\i C. F. Batchelder s.n.} 12 Jul 1916 (GH); Hillsborough Co., Peterborough, {\i W. Deane s.n.} 3 Aug 1909 (GH); Merrimack Co., Shaker Village, {\i V. E. McNeilus s.n.} 25 Aug 1983 (WIS); Rockingham Co., Derry, {\i C. F. Batchelder s.n.} 21 Aug 1918 (GH); Rockingham Co., Exeter, {\i A. S. Pease 30466} 24 Jul 1943 (GH); Rockingham Co., Raymond, {\i A. S. Pease 30447} 14 Aug 1943 (GH); Rockingham Co., South Hampton, {\i S. K. Harris 25395} 20 Oct 1962 (GH); Rockingham Co., Windham, {\i S. K. Harris 26873} 13 Sep 1964 (GH); Strafford Co., Barrington, {\i A. R. Hodgdon 3760} 28 Jun 1941 (GH); Strafford Co., Modburn, {\i A. R. Hodgden 14049} 7 Jul 1964 (MTMG).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 New Jersey: Atlantic Co., Estell Manor, {\i G. Moore 1518} 6 Jun 1993 (VDB); Cape May Co., Cape May, {\i Earl L. Core 5139} 20 Jun 1937 (WV); Cumberland Co., Maurice River Twp., {\i G. Moore 1512} 6 Jun 1993 (VDB); Cumberland Co., Fairton, {\i R. R. Dreisbach 4274} 19 Jun 1926 (MICH); Morris Co., Budd Lake, {\i L. Bowes 1785} 23 Jun 1935 (NYS); Morris Co., Green Village, {\i R. H. True 663} 4 Jul 1935 (VPI).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 New York: Albany Co., Karner, {\i W. J. Crins 8109} 24 Jun 1990 (NYS); Albany Co., Westerlo, {\i G. C. Tucker 6629} 22 Aug 1991 (NYS); Cattaraugua Co., Alleghany SP, {\i W. P. Alexander s.n.} 2 Aug 1930 (NYS); Cattaraugus Co., Conewango, {\i S. J. Smith 22651} 18 Jun 1957 (NYS); Cayuga Co., New Hope, {\i N. Hotchkiss 2927} 9 Jul 1928 (NYS); Cayuga Co., Lickville, {\i C. Atwood s.n.} 26 Jun 1897 (NYS); Chautauqua Co., French Creek, {\i D. Goldman 682} 16 Jun 1993 (NYS); Chenango Co., Pharsalia, {\i E. E. Davis 991} 19 Jul 1931 (NYS); Columbia Co., Clanerack, {\i R. McVaugh 3990} 22 Sep 1935 (NYS); Delaware Co., Delhi, {\i K. L. Brooks 391} 27 Jun 1951 (NYS); Delaware Co., Kortright, {\i K. L. Brooks 1568} 15 Jun 1952 (NYS); Delaware Co., Town of Kortright, {\i K. L. Brooks 3040} 6 Jul 1954 (NYS); Dutchess Co., Stissing Mt. {\i C. H. Peck s.n.} (NYS); Franklin Co., Brayton Hollow, {\i S. J. Smith 10337} 11 Jul 1951 (NYS); Greene Co., Tannersville Pond, {\i G. R. Proctor 1922} 25 Jun 1946 (SMU); Greene Co., Hunter, {\i R. Naczi 8584} 3 Jul 2000 (NKY); Hamilton Co., West Stony Creek, {\i S. J. Smith 4469} 10 Jul 1948 (NYS); Herkimer Co., {\i J. V. Haberer 1440} 15 Jun 1911 (NYS); Herkinns Co., Frankfurt, {\i J. V. H. 3755} 21 Jul 1885 (MICH); Jefferson Co., Lorraine, {\i N. Hotchkiss 2503} 29 Jun 1927 (NYS); Jefferson Co., Pleasant Lake, {\i N. Hotchkiss 2747} 26 Jul 1927 (NYS); Lewis Co., Castorland, {\i N. Hotchkiss 2663} 24 Jul 1927 (NYS); Lewis Co., Fort Drum, {\i C. Popolizio 799} 20 Jul 1992 (NYS); Madison Co., Lenox, {\i R. L. Crockett s.n.} 5 Aug 1939 (NYS); Madison Co., North Brookfield, {\i H. D. House 17611} 24 Jun 1930 (NYS); Madison Co., North Wanluis, {\i H. D. House 23141} 30 Aug 1935 (NYS); Madison Co., Oneida, {\i H. D. House 16298} 4 Jul 1929 (NYS); Myoming Co., Hermitage-Java Center Road, {\i W. A. Matthews 5335} 19 Jul 1951 (SMU); Oneida Co., McConnellsville, {\i H. D. House 16275} 2 Jul 1929 (NYS); Oneida Co., New London, {\i R. L. Crockett s.n.} 12 Jun 1939 (NYS); Oneida Co., Seymour, {\i J. V. Haberer 3899} (NYS); Oneida Co., Taburg, {\i William Rhoades s.n.} 18 Jul 1922 (WIS); Oneida Co., Verona, {\i H. D. House A-6072} 22 Jun 1918 (NYS); Onondaga Co., Jamesville, {\i H. D. House 31649} 7 Aug 1948 (NYS); Orange Co., Black Rock Forest, {\i S. Clemants 3782} 1 Aug 1990 (NYS); Orange Co., Harriman SP, {\i J. G. Barbour 983} 8 Jul 1993 (NYS); Orange Co., Harriman SP: N of Lake Askoti on 7 Lakes Drive, {\i J. G. Barbour 2304} 25 Aug 1994 (NYS); Orange Co., Harriman SP: Southern ridge top of Black Mountain, {\i R. S. Mitchell 9084} 21 Jun 1995 (NYS); Oswego Co., Oswego, {\i Baim 5757} 19 Jul 1963 (NYS); Oswego Co., Cleveland, {\i H. D. House 15939} 26 Jun 1928 (NYS); Oswego Co., Hastings, {\i R. H. True 127} 8 Jul 1931 (NYS); Oswego Co., Sandy Creek, {\i N. Hotchkiss 3020} 17 Jul 1928 (OKL); Otsego Co., Wharton, {\i S. J. Smith 20478} 28 Jun 1956 (NYS); Putnam Co., Town of SE Brewster, {\i K. L. Brooks 2881} 12 Jun 1954 (NYS); Rensselaer Co., Berlin, {\i H. D. House 19331} 29 Jun 1932 (NYS); Rensselaer Co., Grafton Lakes SP, {\i P. Weatherbee 4527} 2 Jul 1997 (NYS); Rensselaer Co., Hoosick, {\i H. E. Ahles 66975} 23 Jun 1967 (NCU); Rensselaer Co., Town of Schaghticoke, {\i W. Broderick s.n.} 13 Jun 2002 (NYS); Richmond Co., Staten Island, {\i P. Dowell 5909} 7 Aug 1909 (VDB); Rockland Co., Bear Mountain SP, {\i J. G. Barbour 907} 25 Jun 1994 (NYS); Rockland Co., Harriman SP, {\i J. G. Barbour 2135} 30 Jun 1994 (NYS); Rockland Co., Harriman SP, {\i R. S. Mitchell 8806} 15 Jun 1994 (NYS); Rockland Co., Nanuet, {\i E. G. Whitney 4092} 17 Jun 1935 (NYS); Schenectady Co., Mariaville Lake, {\i T. C. Baim 3366} 13 Jul 1950 (NYS); Schenectady Co., Schenectady, {\i T. Baim s.n.} 3 Sep 1947 (NYS); Schenectady Co., Schenectady, {\i T. C. Baim s.n.} 18 Jun 1941 (NYS); St. Lawrence Co., Potsdam, {\i N. C. Eldblom 2798} 5 Sep 1993 (NYS); St. Lawrence Co., Sodom State Forest/Madrid, {\i A. M. Johnson 606} 3 Jul 1988 (NYS); Suffolk Co., Brookhaven, {\i R. E. Zaremba 2648} 1985 (NYS); Suffolk Co., East Hampton, {\i R. E. Zaremba 2207} 30 May 1985 (NYS); Suffolk Co., Fishers Island, {\i G. C. Tucker 6123} 26 Jun 1991 (NYS); Suffolk Co., Greenport, Long Island, {\i R. Latham 36289} 6 Jun 1959 (NYS); Suffolk Co., Huntington, {\i R. E. Zaremba 2651} 1985 (NYS); Suffolk Co., Montauk, {\i R. Latham 5638} 2 Jul 1927 (NYS); Suffolk Co., Orient, {\i R. Latham 28237} 1 Aug 1938 (NYS); Suffolk Co., Sag Harbour, {\i R. Latham 33255} 30 Jun 1955 (NYS); Suffolk Co., West Hills County Park, {\i A Greller s.n.} 13 Jun 1992 (NYS); Sullivan Co., Eldred, {\i S. J. Smith 21458} 7 Aug 1956 (NYS); Sullivan Co., Long Eddy, {\i S. J. Smith 20313} 22 Jun 1956 (NYS); Sullivan Co., Rondout Reservoir, {\i S. J. Smith 20425} 23 Jun 1956 (NYS); Sullivan Co., Town of Callicoon, {\i K. L. Brooks 6130} 21 Jun 1975 (NYS); Tompkins Co., Townley Swamp, {\i A. Gershoy 7723} 7 Aug 1917 (MICH); Tompkins Co., Besemer, {\i R. T. Clausen 7122} 5 Aug 1947 (NYS); Tompkins Co., Dryden, {\i K. M. Wiegand X19667} 20 Jun 1937 (WIS); Ulster Co., Town of Olive, {\i J. Bierhorst 149} 21 Jun 1996 (NYS); Ulster Co., Warwarsing, {\i H. F. Dunbar 1124} 16 Jul 1958 (NYS); Ulster Co., Woodland, {\i S. J. Smith 6835} 16 Jun 1950 (NYS); Warren Co., Brayton, {\i H. D. House 29250} 23 Jun 1943 (OKL); Warren Co., Warrensburg, {\i E. G. Whitney 4168} 26 Jun 1935 (NYS); Washington Co., Lake George, {\i H. D. House 28608} 9 Jun 1942 (NYS); Westchester Co., Mount Kisco, {\i Francis W. Pennell 7179} 25 Jun 1916 (KANU); Westchester Co., North Castle, Cranberry Lake County Park, {\i R. E. Zaremba 3020} 9 Jun 1986 (NYS).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 North Carolina: Alleghany Co., Little Glade Branch, {\i P. D. McMillan 2445} 8 Jun 1997 (USCH); Avery Co., Banners Elk, {\i H. E. Ahles 43588} 17 Jun 1958 (NCU); Avery Co., Hanging Rock, {\i A. E. Radford 44088} 1 Jul 1961 (USCH); Bertie Co., Windsor, {\i H. E. Ahles 41219} 29 May 1958 (NCU); Cherokee Co., Patrick, {\i K. E. Rogers 41622} 18 Jun 1968 (SMU); Chowan Co., Valhalla, {\i H. E. Ahles 39880} 9 May 1958 (NCU); Edgecombe Co., Sharpsburg, {\i A. A. Reznicek 34009} 27 May 1958 (NCU); Gates Co., White Oak Pocosin {\i J. A. Duke 830} 30 May 1958 (NCU); Graham Co., Joyce Kilmer Memorial Forest, {\i B. A. Ford 8929} 17 May 1989 (NYS); Halifax Co., Halifax, {\i H. E. Ahles 17151} 19 Jul 1956 (NCU); Henderson Co., Flat Rock, {\i F. R. Fosberg 18827} 17 Jun 1942 (NCU); Hertford Co., Harrelsville, {\i H. E. Ahles 41706} 30 May 1958 (NCU); Macon Co., Coweeta Hydrologic Lab, {\i Phillip E. Hyatt 8635} 28 May 1999 (MICH); Macon Co., Wayah Bald, {\i D. E. Boufford 16576} 20 Jun 1975 (NCU); Madison Co., Fairview Methodist Church, {\i J. B. Nelson 16,618} 16 Jun 1995 (MICH); Madison Co., Hot Springs, {\i J. B. Nelson 16618} 16 Jun 1995 (USCH); Mitchell Co., Spruce Pine, {\i H. E. Ahles 43190} 16 Jun 1958 (NCU); Northampton Co., US 158, {\i H. E. Ahles 41768} 31 May 1958 (NCU); Pasquotank Co., US 17-158, {\i H. E. Ahles 44412} 25 Jun 1958 (NCU); Surry Co., Low Gap, {\i A. E. Radford 13149} 23 Jun 1956 (NCU); Transylvania Co., Fork River Bridge, {\i A. E. Radford 44592} 10 Jun 1962 (WV).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Ohio: Brown Co., Sardinia, {\i Michael A. Vincent 4683} 22 May 1991 (WV); Cuyahoga Co., Westlake, {\i A. W. Cusick 31060A} 23 Jun 1993 (GH); Cuyahoga Co., Highland Heights, {\i Suneeti Jog 483} 18 Jun 2001 (KANU); Erie Co., Plum Brook Station, {\i A. W. Cusick 21,723} 22 Jun 1982 (MICH); Erie Co., Sandusky, {\i A. W. Cusick 31851} 14 Jul 1994 (VPI); Lake Co., Little Mountain, {\i J. M. Greenman 147} 2 Aug 1897 (GH); Lucas Co., Whitehouse Quad., {\i A. W. Cusick 31,090} 12 Jul 1993 (MICH); Portage Co., Gott Fen Preserve, {\i A. W. Cusick 23,563} 19 Jun 1984 (MICH); Portage Co., Nelson, {\i T. S. Cooperrider 5951} 27 Jun 1960 (NCU); Portage Co., Nelson-Kennedy Ledges SP, {\i A. W. Cusick 25,567} 21 Jul 1986 (MICH); Summit Co., Singer {\i A. W. Cusick 10090} 4 Jul 1969 (NCU); Wood Co., Steidtmann Sanctuary, {\i A. W. Cusick 21,780} 7 Jul 1982 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Oklahoma: Atoka Co., Boehler Community, {\i B. L. Lipscomb 1483} 15 May 1976 (MICH); Atoka Co., Sand Hills, {\i J. Taylor 33133} 28 May 1985 (BRIT); LeFlore Co., State Line Historical Site, C. T. Bryson 4306 10 May 1986 (VDB); Leflore Co., Honobia, {\i A. A. Reznicek 9352} 19 May 1993 (MICH); McCurtain Co., Battiest site, {\i L. K. Mcgrath 17845} 11 May 1990 (OKL); McCurtain Co., Battiest, {\i J. Taylor 26357} 4 Jun 1978 (SMU); McCurtain Co., Battiest site, {\i L. K. Magrath 17845} 11 May 1990 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Pennsylvania: West Plula, {\i A. MacElwee s.n.} 5 Jun 1892 (GH); Adams Co., Michaux SP, {\i J. E. Benedict 2854} 4 Jul 1934 (VPI); Bedford Co., Wolf Swamp Watershed, {\i Homer Duppstadt s.n.} 12 Jun 1970 (WV); Bedford Co., Robinsonville, {\i David Berkheimer 9787} 16 Jun 1948 (KANU); Berks Co., McKnights Gap, {\i D. Berkheimer 2555} 12 Jun 1941 (GH); Berks Co., Fleetwood, {\i W. C. Brumbach 433-33} 13 Jul 1933 (GH); Berks Co., Olney Furnace, {\i H. Wilkens 5843-a} 10 Jun 1939 (GH); Berks Co., Reading, {\i W. C. Brumbach 293-32} 9 Jun 1932 (GH); Berks Co., Reading, {\i H. Wilkens 115} 15 Jun 1929 (GH); Bradford Co., Albany {\i R. Naczi 4129} 14 Jun 1994 (MICH); Bradford Co., Burlington, {\i H. A. Wahl 19083} 18 Jun 1959 (NCU); Bradford Co., Le Roy, {\i H. A. Wahl 1057} 22 Jun 1941 (NEB); Bradford Co., New Albany, {\i R. Naczi 4129} 14 Jun 1994 (NKY); Bradford Co., Franklindale, {\i R. Naczi 2605} 15 Jun 1990 (MICH); Center Co., Coburn, {\i H. A. Wahl s.n.} 13 Jun 1934 (WIS); Centre Co., Ingleby, {\i H. A. Wahl 25166} 17 Jun 1936 (NCU); Centre Co., State Game Lands #176, {\i P. E. Rothrock 564} 19 Jun 1975 (MICH); Chester Co., Strafford, {\i J. W. Adams 765} 4 Jun 1927 (VPI); Chester Co., Kemblesville, {\i George R Proctor 1840} 15 Jun 1946 (KANU); Chester Co., Landenberg, {\i E. C. Earle 5109} 27 Jun 1958 (SMU); Clearfield Co., Ansonville, {\i E. B. Erle 2347} 13 Jun 1957 (NYS); Clinton Co., Rosecrans Bog Natural Area, {\i R. Naczi 7904} 4 Jul 1995 (MICH); Columbia Co., West Branch Fishing Creek, {\i F. R. Fosberg 16004} 5 Sep 1938 (GH); Delaware Co., Darby Creek, {\i F. J. Hermann 3182} 7 Jun 1932 (MICH); Delaware Co., Ringham, {\i R. R. Dreisbach 14929} 16 Jun 1923 (MICH); Delaware Co., Havenford, {\i H. E. Stone s.n.} 3 Jul 1926 (SMU); Delaware Co., Eagle Road, {\i J. M. Fogg Jr. 2192} 11 Jun 1927 (GH); Fayette Co., Ohiopyle, {\i J. Bright 8407} 26 Jun 1934 (SMU); Forest Co., Greene Township, {\i D. E. Boufford 21102} 17 Jun 1979 (NCU); Jefferson Co., Heath Twp., {\i A. W. Cusick 31,027} 14 Jun 1993 (MICH); Lackawanna Co., Old Forge, {\i P. E. Rothrock 572} 21 Jun 1975 (NCU); Lancaster Co., Blainsport, {\i C. S. Keener 3575} 26 Jun 1979 (MICH); Lancaster Co., Jenkins Corner, {\i G. L. Miller 7-46} 19 Oct 1963 (NCU); Lawrence Co., Portersville, {\i F. J. Hermann 9518} 29 Jun 1938 (GH); Lebanon Co., Twin Grove Park, {\i Carl S. Keener 131} 11 Jun 1959 (WV); Lehigh Co., Kuhn\rquote s Woods, {\i H. W. Pretz 12873} 18 Jul 1926 (MICH); Luzerne Co., Nuangola, {\i P. E. Rothrock 597} 22 Jun 1975 (NCU); Maercer Co., West Salem Twp., {\i A. W. Cusick 23,657} 11 Jul 1984 (MICH); Monroe Co., Pocono Plateau, {\i R. R. Tatnall 4266} 29 Jun 1939 (GH); Philadelphia Co., Fox Chase, {\i F. J. Hermann 3155} 4 Jun 1932 (OKL); Philadelphia Co., West Philadelphia, {\i F. J. Hermann 3147} 2 Jun 1932 (GH); Pike Co., Delaware State Forest, {\i R. Naczi 4873} 1 Jul 1995 (MICH); Pike Co., Greentown, {\i R. Naczi 4873} 1 Jul 1995 (NKY); Snyder Co., Meiserville, {\i P. E. Rothrock 513} 13 Jun 1975 (MICH); Somerset Co., Berlin. {\i L. E. McKinney 2201} 13 Jun 1986 (VDB); Sullivan Co., Eaglesmere, {\i T. S. Githens s.n.} 4 Aug 1945 (WV); Susquehanna Co., Susquehanna, {\i J. A. Graves s.n.} 1 Jul 1897 (NEB); Wayne Co., Cold Spring, {\i H. A. Wahl 14409} 24 Jul 1954 (SMU).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Rhode Island: Newport Co., Tiverton, {\i S. N. F. Sanford s.n.} 11 Jun 1912 (GH); Providence Co., Glocester, {\i F. C. Seymour 19,216} 14 Jun 1961 (SMU); Providence Co., North Smithfield, {\i F. W. Hunnewell 18680} 10 Jul 1947 (GH); Providence Co., Providence, {\i J. F. Collins s.n.} 19 Jun 1892 (GH); Washington Co., North of Ashaway, Hopkinton, {\i M. L. Fernald s.n.} 1 Sep 1919 (GH); Washington Co., Wyoming, {\i H. E. Ahles 79151} 19 Aug 1974 (WIS).\par {\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 South Carolina: Greenville Co., Table Rock Reservoir, {\i S. R. Hill 23492\lquote } 22 Jun 1992 (CLEMS); Oconee Co., Big Bend Road, {\i L. L. Gaddy s.n.} 30 May 1986 (CLEMS); Oconee Co., Whitewater Falls, {\i L. L. Gaddy s.n.} 13 Jun 1987 (CLEMS); Pickens Co., Cane Creek Watershed, {\i L. Waldrop W-277} 19 May 1998 (MICH); Pickens Co., NC-SC State line, {\i H. E. Ahles 14269} 6 Jun 1956 (KANU); Pickens Co., Wadakoe Mountain, {\i P. D. McMillan 6327} 30 Apr 2002 (CLEMS); Pickens Co., Wadakoe Mountain, {\i P. D. McMillan 6315} 30 Apr 2002 (CLEMS). }\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Tennessee: Bledsoe Co., Fall Creek Falls SP, {\i C. T. Bryson 11826} 27 Jun 1992 (VDB); Blount Co., Cades Cove, {\i R. D. Thomas s.n.} 24 Jul 1965 (NCU); Blount Co., Great Smoky Mountains NP, {\i R. E. Shanks 2301} 27 Jun 1943 (VDB); Blount Co., Great Smoky Mountains NP, {\i D. E. Boufford 22891} 28 May 1982 (BRIT); Blount Co., Great Smoky Mt. NP, {\i V. E. McNeilus s.n.} 21 Jun 1980 (WIS); Blount Co., Great Smoky Mt. NP, {\i V. E. McNeilus s.n.} 19 May 1984 (WIS); Blount Co., Great Smoky Mt. NP, {\i V. E. McNeilus s.n.} 15 Jun 1982 (WIS); Blount Co., Great Smoky Mt. NP, {\i V. E. McNeilus s.n.} 14 Jun 1981 (WIS); Blount Co., Great Smoky Mt. NP, {\i V. E. McNeilus s.n.} 12 Jul 1981 (WIS); Blount Co., Great Smokey Mt. NP, {\i V. E. McNeilus s.n.} 2 Aug 1980 (WIS); Blount Co., Great Smoky Mt. NP, {\i V. E. McNeilus s.n.} 21 Jun 1980 (WIS); Cannon Co., Short Mt., {\i L. E. McKinney 322} 15 Jun 1981 (VDB); Carroll Co., New Hope Church, {\i H. R. DeSelm s.n.} 22 Jun 1993 (EKY); Carter Co., Ripshin Bog, {\i P. Somers s.n.} 15 Jul 1982 (VDB); Cocke Co., Del Rio, {\i J. A. Churchill 88037} 8 Jul 1988 (MSC); Cocke Co., Great Smoky Mt. NP, {\i V. E. McNeilus s.n.} 22 Jun 1980 (WIS); Coffee Co., Manchester, {\i R. Kral 76194} 10 May 1989 (VDB); Cumberland Co., Cressville Airport, {\i R. Kral 42762} 21 May 1971 (VDB); Cumberland Co., Fairfield Glades, {\i R. Kral 82539} 29 May 1993 (VDB); Cumberland Co., Catoosa Game Refuge, {\i L. J. Uttal 8053} 12 Jun 1971 (VPI); Cumberland Co., Cressville Airport, {\i R. Kral 42762} 21 May 1971 (EKY); Fentress/Morgan Co., Clear Fork River, {\i D. D. Horn 336} 27 May 1979 (VDB); Franklin Co., Sewanee, {\i Anonymous s.n.} 4 Jul 1942 (VDB); Grainger Co., Hwy 25E, {\i A. A. Reznicek 9540} 22 Jun 1993 (MICH); Grundy Co., Monteagle, {\i R. Kral 46503} 17 May 1972 (VDB); Grundy Co., Collins Quad, {\i W. R. Jones 4785} 22 May 1987 (EKY); Grundy Co., Savage Gulf Natural Area, {\i T. S. Patrick 253} 11 Jul 1977 (VDB); Hickman Co., Bondswitch, {\i R. Kral 73999} 6 Jun 1987 (VDB); Humphreys Co., Cuba Landing, {\i R. Kral 80423} 10 May 1992 (VDB); Jackson Co., Gainsboro, {\i V. E. McNeilus 94-225} 19 May 1994 (WIS); Marion Co., Fiery Gizzard Gorges, {\i R. C. Clark 1873} 16 May 1965 (NCU); Monroe Co., Exit 62 along I-75, {\i V. E. McNeilus 92-445} 13 Jun 1992 (WIS); Monroe Co., Tellico, {\i V. E. McNeilus s.n.} 16 May 1982 (WIS); Monroe Co., Tellico Plains, {\i J. A. Churchill 93321} 11 May 1993 (MICH); Montgomery Co., Guthrie, {\i R. Kral 76639} 21 Jun 1989 (VDB); Montgomery Co., Guthrie, {\i R. Kral 52696} 16 May 1974 (VDB); Montgomery Co., Clarksville, {\i E. W. Chester 81-296} 2 Jun 1981 (NCU); Montgomery Co., Smith Branch Recreation Area, {\i E. W. Chester 81-296} 2 Jun 1981 (VDB); Morgan Co., Brewstertown Rd., {\i R. Kral 84766} 23 May 1995 (VDB); Morgan Co., Wartburg, {\i R. Kral 83487} 12 May 1994 (VDB); Morgan Co., Wartburg, {\i S. Jones 4971} 24 May 1990 (MICH); Morgan Co., Gatewood bridge area, {\i V. E. McNeilus s.n.} 20 Jun 1982 (WIS); Morgan Co., Rt. 27, {\i V. E. McNeilus 89-375} 10 Jun 1989 (WIS); Morgan Co., Lansing, {\i V. E. McNeilus 90-363} 19 Jun 1990 (WIS); Morgan Co., Rockwood, {\i V. E. McNeilus 94-288} 29 May 1994 (WIS); Morgan Co., Rugby, {\i J. K. U. 843} 28 May 1934 (MICH); Morgan Co., Cookeville, {\i R. Kral 82542} 29 May 1993 (MICH); Morgan Co., Vicinity of Lilly Bridge, {\i V. E. McNeilus 90-363} 19 Jun 1990 (VDB); Overton Co., East Branch of Obey River, {\i V. E. McNeilus 93-1131} 22 Jun 1993 (WIS); Overton Co., Livingston, {\i V. E. McNeilus 94-277} 31 May 1994 (WIS); Putnam Co., Monerey, {\i V. E. McNeilus 89-370} 10 Jun 1989 (WIS); Rhea Co., Whites Creek, {\i V. E. McNeilus 88-152} 9 Jun 1988 (WIS); Rhea Co., Dayton, {\i V. E. McNeilus s.n.} 23 May 1982 (WIS); Sequatchie Co., Dunlap, {\i R. Kral 77728} 29 May 1990 (VDB); Sevier Co., Chilhowee Mt., {\i R. D. Thomas s.n.} 9 Jun 1965 (SMU); Sevier Co., Elkmont Campground, GSMNP, {\i B. A. Ford 8942} 18 May 1989 (NYS); Sevier Co., Gatlinburg, {\i Ken E Rogers 34018} 22 May 1965 (KANU); Sevier Co., Great Smoky Mt. NP, {\i V. E. McNeilus 90-270} 6 Jun 1990 (VDB); Sevier Co., Great Smoky Mt. NP, {\i V. E. McNeilus s.n.} 24 May 1981 (WIS); Sevier Co., Great Smoky Mt. NP, {\i V. E. McNeilus s.n.} 26 Jul 1980 (WIS); Sevier Co., Great Smoky Mt. NP, {\i V. E. McNeilus s.n.} 22 May 1983 (WIS); Sevier Co., Great Smoky Mt. NP, {\i V. E. McNeilus s.n.} 24 May 1981 (WIS); Unicoi Co., Beauty Spot Mt., {\i A. J. Sharp 43469} 21 Jun 1969 (SMU); Unicoi Co., Ernestville, {\i J. A. Churchill 92-189} 10 Aug 1992 (MSC); Wayne Co., Natchez Trace, {\i R. Kral 55470} 18 May 1975 (VDB); White Co., Sparta, {\i V. E. McNeilus s.n.} 1 Jun 1980 (WIS).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Vermont: Bennington Co., Rupert, {\i M. P. Marshall 1219} 17 Jul 1976 (NCU); Burlington Co., North Pownal, {\i M. P. Marshall 1048} 12 Aug 1975 (NCU); Burlington Co., Rupert, {\i M. P. Marshall 1205} 17 Jul 1976 (NCU); Chittenden Co., Williston, {\i C. H. Knowlton s.n.} 12 Jul 1945 (GH); Rutland Co., Middleton Springs, {\i C. H. Knowlton s.n.} 13 Jun 1918 (GH); Windham Co., Brookline, {\i L. A. Wheeler 84401} 17 Jun 1911 (GH); Windham Co., Jamaica, {\i L. A. Wheeler 18} 11 Jul 1913 (GH); Windham Co., Marlboro, {\i R. J. Eaton 5849} 9 Sep 1965 (GH); Windham Co., Brookline, {\i L. A. Wheeler s.n.} 17 Jun 1911 (GH); Windham Co., Townshand, {\i L. A. Wheeler s.n.} 23 Jun 1912 (GH); Windsor Co., Woodstock, {\i E. M. Kittredge B1056} 18 Jul 1928 (GH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Virginia: City of Newport News, {\i P. K. Appler 552} 10 May 1973 (NCU); Albermarle Co., Keene, {\i C. E. Stevens 1132} 22 Jun 1969 (NCU); Albermarle Co., Keene, {\i C. E. Stevens 2225} 25 Jun 1970 (VPI); Albermarle Co., Scottsville, {\i C. E. Stevens 1899} 23 May 1970 (VPI); Alleghany Co., McGraw\rquote s Gap., {\i R. Kral 9329} 6 Aug 1959 (VDB); Arlington Co., Washington-Lee High School, {\i J. Higginson} 125 25 May 1946 (MARY); Bath Co., Armstrong, {\i C. E. Stevens 4018} 7 Aug 1971 (VPI); Bath Co., Armstrong, {\i C. E. Stevens 3663} 3 Jul 1971 (VPI); Caroline Co., Golansville, {\i T. Bradley 19122} 28 May 1983 (NCU); Carroll Co., Mt. Airy, {\i J. R. Manhart 311} 30 Apr 1981 (MICH); Charles City Co., Ruthville, {\i D. M. E. Ware 2340} 20 Jun 1969 (VDB); Craig Co., New Castle, {\i T. F. Wieboldt 5684} 17 Jul 1985 (MICH); Dickenson Co., Breaks SP, {\i R. Kral 12700} 14 Jun 1961 (VDB); Fauquier Co., Pond Mt., {\i H. A. Allard} (WV); Fauquier Co., Western slope of Bull Run Mountains, {\i H. A. Allard 1581} 24 May 1936 (VPI); Fauquier Co., Western slope of Bull Run Mountains, {\i H. A. Allard 5035} 12 Jun 1938 (VPI); Fauquier Co., Western slope of Bull Run Mountains, {\i H. A. Allard 744} 30 Jun 1935 (VPI); Floyd Co., Check, {\i G. P. Frank 615} 17 Jul 1981 (VPI); Giles Co., Mt. Lake, {\i R. Kral 10682} 29 Jun 1960 (VDB); Giles Co., Mt. Lake, {\i R. Kral 10657} 29 Jun 1960 (VDB); Giles Co., White Pine Lodge, {\i R. E. Shanks 15254} 13 Jun 1950 (VDB); Giles Co., Big Stoney Creek and Applachian Trail, {\i G. P. Frank 578} 24 Jun 1981 (VPI); Giles Co., Fork Mountain, {\i L. J. Uttal 10436} 11 Jun 1974 (NCU); Giles Co., Mt. Lake Biological Station, {\i L. J. Mussleman 4307} 21 Jun 1971 (NCU); Giles Co., Mt. Lake, {\i R Kral 10682} 29 Jun 1960 (NCU); Giles Co., Mt. Lake, {\i R Kral 10657} 29 Jun 1960 (NCU); Grayson Co., Whitetop, {\i T. F. Wieboldt 8925} 22 Jun 1994 (VPI); James City Co., College of William and Mary, {\i A. C. Barans 814} 14 May 1969 (NCU); King and Queen Co., Helmet, {\i T. Bradley 23645} 24 Jun 1990 (CLEMS); King and Queen Co., Salvia, {\i T. Bradley 23686} 24 Jun 1990 (CLEMS); King George Co., Caledon SP, {\i D. M. E. Ware 8175} 8 Jun 1983 (CLEMS); Lancaster Co., Devil\rquote s Bottom, {\i T. Weldy 376} 17 May 1994 (BRIT); Loudoun Co., Diabase, {\i H. A. Allard 21457} 24 May 1953 (WV); Mathews Co., North, {\i M. van Montfrans 321} 24 May 1979 (BRIT); Montgomery Co., Blacksburg, {\i T. F. Wieboldt 10283} 28 Jul 1999 (VPI); Nansemond Co., Blackwater River, {\i H. E. Ahles 58154} 22 Jun 1963 (NCU); Nansemond Co., Blackwater River, {\i H. E. Ahles 58178} 22 Jun 1963 (NCU); New Kent Co., Ware Creek, {\i M. S. Gillespie 709} 29 May 1970 (NCU); Orange Co., Rhoadesville, {\i T. Bradley 19216} 4 Jun 1983 (NCU); Orange Co., Steets Shop, {\i T. Bradley 23236} 21 May 1990 (CLEMS); Powhatan Co., Rt. 671, {\i C. M. Corcoran 612} 4 Jun 1976 (NCU); Pulaski Co., Radford Army Munitions Plant, New River, {\i T. F. Wieboldt 10009} 9 Jul 1998 (VPI); Roanoke Co., Haven\rquote s WMA, Ft. Lewis Mt., {\i N. A. Mason s.n.} 28 May 1991 (VPI); Shenandoah Co., Peters Run, {\i A. M. Harvill 21745} 24 Jun 1969 (NCU); Spotsylvania Co., Fredericksburg, {\i Hugh H. Iltis 2803} 16 Jun 1947 (WIS); Spottsylvania Co., Fredericksburg, {\i Hugh H. Iltis 2814} 16 Jun 1947 (WIS); Stafford Co., Mt. Joy, {\i C. L. Kelloff 550} 29 May 1988 (USCH); Tazewell Co., Cedar Bluff, {\i R. Kral 12919} 29 Jun 1961 (VDB); William Co., Occoquan Bay National Wildlife Refuge, {\i M. T. Strong 1608} 30 May 1998 (MICH); Wythe Co., Little Walker Mt., {\i T. F. Wieboldt 6385} 10 Jun 1987 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 West Virginia: Barbour Co., Nestorville, {\i Earl L. Core 5921} 14 Jul 1937 (WV); Fayette Co., Manns Creek, {\i William N. Grafton s.n.} 4 Jun 1995 (WV); Fayette Co., Stonecliff, {\i Violet S. Phillips s.n.} 6 Jul 1968 (WV); Fayette Co., Cunard, {\i Dale W. Suiter DWS 662} 18 Jun 1993 (WV); Grant Co., Gormania, {\i William N. Grafton s.n.} 16 Jun 1995 (WV); Grant Co., Mt. Storm, {\i Earl L. Core 6036} 15 Jul 1937 (WV); Kanawha Co., Camp Camelot, {\i Emily Williams s.n.} 25 May 1980 (WV); Kanawha Co., Kanawha State Forest, {\i Margaret E. Denison 68-161} 25 May 1968 (WV); Kanawha Co., Kanawha State Forest, {\i Margaret E. Denison 67-92} 19 Jul 1967 (WV); Kanawha Co., Kanawha State Forest, {\i Margaret E. Denison 67-87} 14 Jul 1967 (WV); Monongalia Co., SRC II site, {\i Forest L. Oserow 21342} 28 Jun 1979 (WV); Monongalia Co., Greer, {\i William N. Grafton s.n.} 4 Jul 1995 (WV); Monongalia Co., Cheat View, {\i Gene M. Silberhorn 1395} 29 May 1965 (WV); Morgan Co., Cacapon SP, {\i Wm. Homer Duppstadt s.n.} 1 Jun 1977 (WV); Morgan Co., Brosius, {\i R. M. Downs 2737} 1 Jul 1968 (NCU); Morgan Co., Cacapon Mt. SP, {\i T. F. Wieboldt 6212} 13 Aug 1986 (WIS); Nicholas Co., Meadow River, {\i William N. Grafton s.n.} 13 Jun 1992 (WV); Preston Co., Allbright, {\i William N. Grafton s.n.} 27 Jun 1988 (WV); Preston Co., WVU Forest, {\i William N. Grafton s.n.} 11 Jul 1997 (WV); Raleigh Co., Fairdale, {\i William N. Grafton s.n.} 30 Jun 1974 (WV); Randolph Co., Dolly Sods Mt., {\i H. A. Davis 4383} 25 Jun 1941 (WV); Randolph Co., Huttonsville, {\i Eugene E. Hutton s.n.} 1 Jun 1941 (WV); Randolph Co., Huttonville, {\i E. E. Hutton s.n.} 30 Jun 1960 (VPI); Randolph Co., Monangahela National Forest, {\i B. Walters 611} 8 Jul 1997 (MICH); Tucker Co., Clover Run, {\i William N. Grafton s.n.} 9 Jun 1995 (WV); Tucker Co., Camp Kidd near St. George, {\i William N. Grafton s.n.} 16 Jun 1997 (WV); Tucker Co., Canaan Valley, {\i H. A. Allard 11439} 30 Jul 1945 (WV); Tucker Co., Canaan Valley {\i Earl L. Core 2875} 29 Jun 1931 (WV); Upshur Co., Buckhannon, {\i G. B. Rossbach 1374} 21 Jun 1959 (WV); Upshur Co., Little Kanwha River, {\i H. A. Davis 6991} 8 Jun 1945 (WV); Webster Co., Cowen, {\i William N. Grafton s.n.} 11 Jun 1998 (WV); Webster Co., Curtin, {\i A. W. Cusick 28888} 31 May 1990 (WV).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Wisconsin: Kenosha Co., Berryville, {\i S. C. Wadmond 3088} 14 Jul 1900 (WIS); Waukesha Co., Upper Martins Woods, {\i Theodore S. Cochrane 10035} 19 Jun 1982 (WIS); Waushara Co., Little Silver Creek, {\i Katherine D. Rill 6091} 13 Aug 1983 (WIS).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 {\b {\scaps Carex virescens}}. Canada. Ontario: Elgin Co., Aldborough Township, {\i M. J. Oldham 15367} 9 Aug 1993 (MICH); Elgin Co., Straffordville, {\i M. J. Oldham 12782} 16 Jun 1991 (MICH); Elgin Co., Reive Bog, {\i M. J. Oldham 14910} 14 Jun 1993 (MICH); Elgin Co., Rodney, {\i M. J. Oldham 15300} 29 Jul 1993 (MICH); Elgin Co., Eagle, {\i M. J. Oldham 15914} 7 Oct 1993 (MICH); Elgin Co., Bayham Township, {\i M. J. Oldham 12782} 16 Jun 1991 (WIS); Elgin Co., Clearville, {\i V. R. Brownell 83-401} 10 Jul 1983 (CAN); Elgin Co., Goldie\rquote s Fern Woods, {\i I. D. Macdonald 17941} 9 Sep 1986 (MICH); Elgin Co., Port Butwell Provincial Park, {\i M. J. Oldham 10947} 6 Jun 1990 (MICH); Elgin Co., West Lorne, {\i M. J. Oldham 9480} 26 Jun 1989 (MICH); Elgin Co., West Lorne, {\i Jane M. Bowles KE861399} 3 Jul 1986 (MICH); Essex Co., Leamington, {\i M. J. Oldham 4036} 2 Aug 1983 (MICH); Haldimand-Norfolk Co., Deer Creek Conservation Area, {\i D. A. Sutherland 7123} 18 Jun 1986 (CAN); Kent Co., Clearville, {\i V. R. Brownell 83-462} 11 Jul 1983 (CAN); Middlesex Co., Skunk\rquote s Misery, {\i M. J. Oldham 14870} 7 Jun 1993 (MICH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 U. S. A. {\i F. F. Forbes 744} 29 Jul 1900 (OKL).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Alabama: Lauderdale Co., Zip City, {\i R. Kral 82304} 19 May 1993 (VDB); Lawrence Co., Bankhead National Forest, {\i C. T. Bryson 7589} 8 May 1988 (VDB); Madison Co., Monte Sano SP, {\i C. T. Bryson 2050} 27 May 1978 (VDB); Madison Co., Huntsville, {\i C. T. Bryson 3538} 23 May 1983 (MICH); Madison Co., Huntsville, {\i C. T. Bryson 3528} 22 May 1983 (MICH); Madison Co., Huntsville, {\i C. T. Bryson 3540} 23 May 1983 (MICH); Madison Co., Huntsville, {\i Charles T. Bryson 3897} 11 May 1985 (WIS); Madison Co., Huntsville, {\i C. T. Bryson 2039} 27 May 1978 (VDB); Madison Co., Monte Sano Mt., {\i J. R. Manhart 264} 9 May 1981 (MICH); Madison Co., Monte Sano Mt., {\i James R. Manhart 264} 9 May 1981 (WIS); Madison Co., Monte Sano Mt., {\i C. T. Bryson 2890} 8 May 1980 (GA); Madison Co., Monte Sano SP, {\i C. T. Bryson 3897} 11 May 1985 (VDB); Winston Co., Lawrence County Rd, {\i S. Jones 4855} 18 May 1990 (WIS); Winston Co., Sipsey River Rec. Area, {\i C. T. Bryson 4380} 23 May 1986 (VDB).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Connecticut: Fairfield Co., Danbury , {\i L. J. Mehrhoff 12644} 31 May 1989 (MICH); Fairfield Co., Easton, {\i E. H. Eames s.n.} 30 Jun 1901 (WIS); Fairfield Co., Huntington, {\i E. H. Eames s.n.} 25 Jun 1902 (GH); Fairfield Co., North Stamford, {\i P. S. Green 138/63} 23 Jun 1963 (GH); Hartford Co., Hartland, {\i C. A. Weatherby 5326} 9 Jul 1934 (GH); Hartford Co., New Britain - Plainsville, {\i C. Wright s.n.} 7 Jul 1882 (GH); Hartford Co., Southington, {\i L. Andrews 558} 27 Jun 1898 (GH); Hartford Co., Southington, {\i A. R. Hodgdan s.n.} 14 Jul 1964 (MTMG); Litchfield Co., Watertown, {\i A. E. Blewitt 543} 7 Jun 1910 (GH); Middlesex Co., East Haddaw, {\i C. A. Weatherby 2185} 23 Jun 1907 (GH); New Haven Co., Derby, {\i C. A. Weatherby D2037} 4 Jul 1920 (GH); New Haven Co., Guilford, {\i W. R. Dudley s.n.} 9 Jul 1904 (GH); New Haven Co., Oxford, {\i E. B. Harger 6945} 19 Jul 1917 (GH); New London Co., Voluntown, {\i L. J. Mehrhoff 15620} 12 Jun 1992 (MICH); Tolland Co., Bolton, {\i C. A. Weatherby s.n.} 12 Jul 1913 (GH); Windham Co., Pomfret, {\i C. A. Weatherby 5188} 24 Jun 1923 (GH); Windham Co., Windham, {\i C. A. Weatherby 534} 16 Jul 1932 (SMU); Windham Co., Windham, {\i C. A. Weatherby s.n.} 16 Jul 1932 (NCU).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Delaware: New Castle Co., Brandywine woods, {\i W. M. Canby s.n.} 18 Jun 1896 (NCU); New Castle Co., Mt Cuba, {\i A. C. s.n.} 22 Jun 1876 (MARY).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 District of Columbia: Fairfax Co., Dead Run Area, {\i E. H. Walker 538} 11 May 1930 (MARY).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Georgia: Dade Co., Cloudalnd Canyon SP, {\i J. R. Manhart 363} 12 Jun 1981 (MICH); Dade Co., Cloudland Canyon, {\i A. Cronquist 5160} 8 May 1948 (GA); Dawson Co., Etowah River Basin, {\i L. Kruse 02-131} 8 May 2002 (GA); Dawson Co., Etowah River Basin, {\i L. Kruse 02-131} 8 May 2002 (GA); Fannin Co., Cooper Creek Recreation Area, {\i E. W. Wood 17326} 15 Jul 1975 (NCU); Gilmer Co., Frosty Mt., {\i Phillip E. Hyatt 11476} 12 Jul 2003 (GA); Lumpkine Co., Etowah River Basin, {\i L. Kruse 01-595} 8 Aug 2001 (GA); Murray Co., Chattahoochee National Forest, {\i D. E. Boufford 22857} 17 May 1982 (VDB); Murray Co., Grassy Mt., {\i J. A. Moore 1035} 11 Aug 2001 (GA); Murray Co., Grassy Mt., {\i J. A. Moore 685} 11 May 2001 (GA); Murray Co., Grassy Mt., {\i J. A. Moore 1148} 22 Sep 2001 (GA); Rabun Co., Burton, {\i A. Cronquist 5533} 24 Jul 1948 (VDB); Rabun Co., Ellicott Rock, {\i D. M. DuMond 1084} 31 May 1968 (GA); Rabun Co., Black Rock Mt. SP, {\i A. A. Reznicek 9002} 25 May 1992 (MICH); Rabun Co., Pine Mt., {\i J. A. Churchill 91-268} 14 Jun 1991 (MSC); Rabun Co., Warwoman WMA, {\i Milsted 744} 22 May 1996 (GA); Rabun Co., Warwoman WMA, {\i Milsted 845} 12 Jun 1996 (GA); Rabun Co., Warwoman WMA, {\i Milsted 829} 12 Jun 1996 (GA); Stephens Co., Toccoa, {\i D. E. Boufford 16846} 30 Jun 1975 (NCU); Union Co., Wolfpen Gap, {\i A. Cronquist 4519} 1 Jun 1947 (SMU); Union Co., Coosa Bald, Cooper Creek WMA, {\i L. Chaffin 569B} 18 May 1987 (GA).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Illinois: Alexander Co., Gale, {\i R. A. Evers 90439} 16 May 1967 (NCU).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Indiana: Crawford Co., Grantsburg, {\i C. C. Deam 27,825} 8 Jun 1919 (MICH); Fountain Co., Portland Arch Nature Preserve, {\i A. W. Cusick 25,321} 3 Jun 1986 (MICH); Marion Co., Harrison, {\i H. H. Bartlett s.n.} 9 Jun 1903 (MICH); Montgomery Co., Shades, {\i D. Beal s.n.} 25 Aug 1890 (MSC).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Kentucky: Bath Co., Pergram Creek, {\i R. Hannan 6527} 26 May 1981 (EKY); Bell Co., Pineville, {\i R. Naczi 6700} 25 Jun 1997 (NKY); Carter Co., Grahn, {\i A. W. Cusick 26,526} 10 Jun 1987 (VDB); Clay Co., Bush, {\i A. A. Reznicek 9479} 28 May 1993 (MICH); Clay Co., Manchester, {\i John W. Thieret 55266} 23 Jun 1984 (NKY); Cumberland Co., Burkesville, {\i R. Naczi 7413} 17 Jun 1998 (MICH); Elliott Co., Bruin, {\i A. W. Cusick 30211} 15 May 1992 (VPI); Estill Co., Lily Mountain, {\i R. Hannan 6993} 10 Jun 1981 (EKY); Estill Co., Irvine, {\i R. Naczi 7816} 12 May 1999 (MICH); Fulton Co., Wilson Hill, {\i R. Athey 2306} 24 May 1973 (VDB); Garrard Co., Maywoods Environmental and Educational Laboratory, {\i D. A. Godbey 161} 26 May 1983 (EKY); Hardin Co., Summit, {\i R. Cranfill 717} 26 May 1978 (MICH); Hardin Co., Elizabethtown, {\i R. Naczi 6514} 15 Jun 1997 (NKY); Hardin Co., Muldraught\rquote s Hill, {\i R. Cranfill 689} 26 May 1978 (MICH); Harlan Co., Big Black Mt., {\i T. H. Kearney, Jr. s.n.} (MTMG); Harlan Co., Harlan, {\i Landon E. McKinney 5003} 20 May 1992 (NKY); Harlan Co., Harlan, {\i R. Naczi 6735} 26 Jun 1997 (NKY); Harlan Co., Pine Mt., {\i L. E. McKinney 5003} 20 May 1992 (EKY); Laurel Co., Boone National Forest, {\i L. E. McKinney 2192} 31 May 1986 (VDB); Laurel Co., Rock Creek Gorge and Uplands, {\i R. L. Thompson 89-1410} 4 Jul 1989 (EKY); Lawrence Co., Webbville, {\i John W. Thieret 53343} 23 May 1993 (NKY); Lee Co., Hwy 11, {\i Landon E. McKinney 5054} 23 May 1992 (NKY); Lee Co., Cathedral Domain, {\i T. J. Weckman 322} 28 May 1993 (EKY); Letcher Co., Cornett Woods Appalachian Ecological Research Station, {\i J. D. Sole 750} 12 May 1979 (EKY); Letcher Co., Lilley Cornett Woods Appalachian Ecological Research Station, {\i J. D. Sole 286} 7 Jun 1978 (EKY); Lewis Co., {\i M. E. Wharton 5482} 2 Jul 1940 (MICH); McCreary Co., Honeybee, {\i R. Naczi 6568} 19 Jun 1997 (NKY); Meade Co., Brandenburg, {\i R. C. Hoskinson 108} 10 Jul 1950 (NCU); Pike Co., Marrowbone Creek, {\i F. Levy s.n.} 3 Oct 1982 (NCU); Pike Co., Couper Mt., {\i F. Levy s.n.} 13 Sep 1982 (NCU); Pike Co., Varney, {\i F. Levy s.n.} 14 Aug 1982 (NCU); Powell Co., Clay City, {\i R. Naczi 7670} 19 Sep 1998 (NKY); Powell Co., Natural Bridge State Nature Preserve, {\i R. Naczi 6657} 22 Jun 1997 (NKY); Powell Co., Red River Gorge, {\i P. D. Higgins 1451} 11 Jun 1969 (NCU); Powell Co., Clay City, {\i M. E. Wharton 2041} 6 May 1938 (MICH); Pulaski Co., Hwy 80, {\i L. E. McKinney 2189} 31 May 1986 (VDB); Rowan Co., Morehead, {\i John W. Thieret 51149} 4 Aug 1979 (NKY); Taylor Co., Campbellsville, {\i R. Naczi 7432} 18 Jun 1998 (USCH); Wolfe Co., Pine Ridge, {\i J. Conrad 548} 23 Jul 1969 (NCU).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Maine: Cumberland Co., Falmouth, {\i E. B. Chamberlain 412} 7 Jul 1902 (GH); Knox Co., Mt. Megunticook, {\i R. C. Bean 13542} 13 Aug 1913 (GH); Knox Co., Mt. Megunticook, Camden, {\i M. L. Fernald 9042} 13 Aug 1913 (GH); York Co., Cornish, {\i M. L. Fernald s.n.} 21 Jul 1891 (GH); York Co., Seabury, {\i F. T. Hubbard s.n.} 5 Aug 1901 (GH); York Co., Tatnic, {\i J. Parlin s.n.} 11 Jul 1891 (GH); York Co., York River, {\i M. L. Fernald 13052} 9 Aug 1916 (GH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Maryland: Baltimore Co., Perry Hall, {\i C. Lea 1803} 29 May 2000 (MARY); Carroll Co., Patapsco River, {\i C. Lea 1544} 13 May 2000 (MARY); Frederick Co., Point of Rocks, {\i C. Lea 1716} 28 May 2000 (MARY); Frederick Co., Catoctin Mt., {\i F. J. Hermann 13753} 13 Jul 1957 (MICH); Frederick Co., Catoctin Mt. Park, {\i C. J. Hickey II 69} 22 Jul 1972 (NCU); Frederick Co., Foxville Tower, {\i E. Bolton 678} 28 Aug 1955 (MARY); Garrett Co., Allegheny Plateau, {\i C. T. Frye 1076} 23 Jun 1998 (TAWES); Garrett Co., Kelso Gap, {\i Earl L. Core s.n.} 24 Jun 1931 (WV); Harford Co., Rocks SP, {\i C. Lea 1854} 29 May 2000 (MARY); Harford Co., Winter\rquote s Run, {\i W. D. Longbottom 3128} 15 Jun 1992 (MARY); Howard Co., Burtonville, {\i W. H. Wagner Jr. 1071} 17 Jun 1942 (MARY); Howard Co., Savage Mills, {\i W. D. Longbottom 3067} 4 Jun 1992 (MARY); Montgomery Co., Burtonsville, {\i J. E. Benedict 4944} 30 Jun 1940 (MARY); Montgomery Co., Forest Glen, {\i Agnes Chase s.n.} 4 Jul 1904 (WIS); Montgomery Co., Forest Glenn, {\i Agnes Chase 19502} 4 Jul 1904 (WIS); Montgomery Co., Potomac Gorge, Vaso Island, {\i C. Lea 434} 7 May 1995 (TAWES); Montgomery Co., Potomac Valley, {\i A. Chase 2434} 4 Jul 1904 (MICH); Washington Co., Washington Monument SP, {\i C. Lea 1756} 28 May 2000 (MARY).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Massachusetts: Berkshire Co., North Cedars, {\i H. D. House 25881} 16 Jul 1938 (NYS); Franklin Co., Conway, {\i H. E. Ahles 64641} 14 Sep 1966 (NCU); Franklin Co., North Sugarloaf, {\i Anonymous s.n.} 1 Jul 1817 (MSC); Hampshire Co., Hatfield, {\i H. E. Ahles 77713} 7 Jul 1973 (TAES); Hampshire Co., Middlefield, {\i Merritt L. Fernald 9040} 26 Jun 1913 (KANU); Norfolk Co., Blue Hills Reservation, {\i Nathaniel T Kidder s.n.} 11 Aug 1919 (KANU); Norfolk Co., Blue Hills Reservation, {\i Nathaniel T Kidder s.n.} 30 Jun 1920 (KANU); Norfolk Co., Blue Hills Reservation, {\i Nathaniel T Kidder s.n.} 30 Jun 1920 (KANU); Norfolk Co., Milton, {\i F. F. Forbes s.n.} 22 Jun 1902 (WIS); Norfolk Co., Milton, {\i Geo. G. Kennedy s.n.} 9 Jun 1908 (WIS); Worcester Co., Auburn, {\i T. J. Rawinski 4401} 31 Jul 1986 (VPI).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Michigan: Berrien Co., Bridgeman, {\i J. Guidinger 7544} 23 Jul 1985 (MICH); Berrien Co., Bridgeman, {\i A. A. Reznicek 7120} 16 Oct 1982 (MICH); Berrien Co., Chikaming Twp., {\i G. W. Parmelee 1738} 18 Aug 1950 (MSC); Berrien Co., Harbert, {\i H. T. Darlington 1650} 22 Aug 1917 (MSC); Berrien Co., Paw Paw, {\i H. J. Darlington 1639} 15 Aug 1917 (MSC); Kent Co., Grand Rapids, {\i E. J. Cole s.n.} 15 Jul 1899 (MICH); Ottawa Co., Lake Shore Ave., {\i M. R. Penskar 1006} 14 Jun 1985 (MICH); Ottawa Co., Grand Haven, {\i C. W. Bazuin 1432} 30 Jun 1940 (MSC).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Mississippi: Tishomingo Co., Cave Spring, {\i C. T. Bryson 4401} 27 May 1986 (VDB).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Missouri: Cape Girardeau Co., Trail of Tears SP, {\i A. A. Reznicek 10162} 5 Jun 1996 (MICH); Iron Co., Dry Hollow Branch, {\i A. E. Brant 3714} 27 May 1997 (MO); Iron Co., Tom Sauk Mt. SP, {\i P. M. McKenzie 1492} 11 Aug 1994 (MICH); Iron Co., Tom Sauk Mt. SP, {\i P. M. McKenzie 1495} 11 Aug 1994 (MICH); Reynolds Co., Clark National Forest, {\i D. Castaner 2415} 24 Jun 1972 (NEB); Ste. Genevieve Co., Hickory Canyons Natural Area, {\i B. Summers 10029} 27 May 2003 (MO).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 New Hampshire: Belknap Co., Center Harbor, {\i A. R. Hodgdon 18119} 19 Jun 1969 (GH); Carroll Co., Bald Mt., Albany, {\i F. L. Steele s.n.} 18 Aug 1948 (GH); Carroll Co., Tuftonboro, {\i A. R. Hodgden 19471} 9 Aug 1972 (GH); Carroll Co., White\rquote s Ledge, Bartlett, {\i A. S. Pease 16631} 8 Sep 1915 (GH); Cheshire Co., Surry, {\i M. L. Fernald 243} 23 Jul 1899 (GH); Cheshire Co., Surry, {\i H. E. Ahles 75456} 22 Jun 1972 (NCU); Cheshire Co., Walpole, {\i R. G. Eaton 17159} 19 Jun 1932 (GH); Cheshire Co., Westmoreland, {\i R. J. Eaton s.n.} 18 Jun 1932 (GH); Rockingham Co., Nottingham, {\i A. R. Hodgdon 10446} 22 Jul 1958 (GH); Strafford Co., Barrington, {\i A. R. Hodgdon 3092} 13 Sep 1936 (OKL); Strafford Co., Rollinsford, {\i A. R. Hodgdon 11657} 29 Jun 1960 (GH); Sullican Co., across from Hartland Vt., {\i M. C. Cowden 1223} 9 Aug 1962 (GH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 New Jersey: Burlington Co., Pemberton, {\i B. Long 16212} 14 Jun 1917 (VPI); Monmouth? Co., Hornerstown, {\i R. R. Dreissbach 942} 29 May 1922 (MICH); Morris Co., Parsippany, {\i L. J. Mehrhoff 15740} 1 Jul 1992 (MICH); Warren Co., Coopersville, {\i R. L. Schaeffer 44310} 27 Jul 1953 (KANU).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 New York: Albany Co., Alcove, {\i C. L. Shear s.n.} 22 Jun 1892 (MSC); Albany Co., Town of Westerlo, {\i G. C. Tucker 6075} 17 Jun 1991 (NYS); Allegany Co., Alma Hill, {\i R. T. Clausen 3921} 18 Jun 1939 (NYS); Cattaraugus Co., Allegany SP, {\i W. P. Alexander 13138} 6 Aug 1926 (NYS); Cayuga Co., Chestnut Ridge, Moravia, {\i C. Atwood s.n.} 14 Aug 1881 (NYS); Chemung Co., Erin, {\i R. T. Clausen 2626} 27 Jun 1937 (NYS); Chemung Co., Far Rockaway, {\i S. J. Smith 4173} 18 Jun 1948 (NYS); Chemung Co., Ven Etten Jct., {\i S. J. Smith 3241} 21 Jun 1947 (NYS); Columbia Co., Hollowville, {\i R. McVaugh 3764} 29 Aug 1935 (NYS); Dutchess Co., Taconic SP, {\i W. J. Crins 7616} 10 Jun 1989 (NYS); Essex Co., Boxford, {\i S. K. Harris 18543} 11 Aug 1958 (NYS); Essex Co., Keene Valley, {\i H. D. House 28060} 5 Aug 1941 (NYS); Greene Co., Platte Cove, {\i L. J. Mehrhoff 13435} 22 Jun 1990 (MICH); Jefferson Co., Woodville, {\i H. D. House 19882} 14 Aug 1932 (NYS); Monroe Co., Greece, {\i R. E. Shanks 766} 3 Aug 1941 (VDB); Orange Co., Black Forest, {\i H. M. Raup 7444} 1 Jul 1936 (MICH); Orange Co., Black Forest, {\i H. M. Raup 7339} 26 Jun 1936 (MICH); Orange Co., Black Rock Forest, {\i K. Barringer 5511} 4 Aug 1992 (NYS); Orange Co., Harriman SP, {\i J. G. Barbour 1383} 13 Sep 1993 (NYS); Orange Co., Storm King Park, {\i J. G. Barbour 3159} 29 Jun 1996 (NYS); Oswego Co., Sandy Creek Township, {\i N. Hotchkiss 3031} 17 Jul 1928 (NYS); Putnam Co., East Mountain Trail, {\i T. Weldy 1895} 10 Jul 1997 (NYS); Putnam Co., McKeel Corners, {\i T. Weldy 1886} 9 Jul 1997 (NYS); Putnam Co., Philipstown, {\i R. E. Zaremba 2649} 22 Oct 1985 (NYS); Putnam Co., U. S. Military Academy Reservation: Constitution Island, {\i J. G. Barbour 732} 27 May 1993 (NYS); Rennsselaer Co., Petersburg, {\i H. D. House 19544} 19 Jul 1932 (NYS); Rensselaer Co., Town of Grafton, {\i P. Weatherbee 4525} 2 Jul 1997 (NYS); Rockland Co., Bear Mt. SP, {\i J. G. Barbour 2071} 22 Jun 1994 (NYS); Rockland Co., Harriman SP: Welch Pkwy., {\i R. S. Mitchell 8806} 15 Jun 1994 (NYS); Sullivan Co., Claryville, {\i R. H. True 4494} 9 Aug 1937 (NYS); Tompkins Co., Etna, {\i A. J. Eames 9473} 25 Jun 1918 (MICH); Ulster Co., Town of Olive, {\i J. Bierhorst 176} 14 Jun 1996 (NYS); Ulster Co., Town of Olive, {\i J. Bierhorst 177} 29 Jun 1996 (NYS); Warren Co., Lake George, {\i H. D. House 26756} 18 Jul 1939 (NYS); Washington Co., Lake George, {\i H. D. House 28615} 10 Jul 1943 (OKL); Washington Co., Lake George Region, {\i S. H. Burnham s.n.} 21 Jun 1897 (OKL); Washington Co., Putnam Mt., {\i W. J. Crins 7995} 16 Sep 1989 (NYS); Westchester Co., Cortlandt, {\i R. E. Zaremba 2619} 26 May 1986 (NYS).\par {\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 North Carolina: Alleghany Co., Air Bellows Rd, {\i P. D. McMillan 1865-b} 30 Jun 1996 (CLEMS); Alleghany Co., Roaring Gap, {\i J. R. Manhart 341} 31 May 1981 (MICH); Alleghany Co., Blue Ridge Parkway, {\i M. Denton 1417} 24 May 1968 (MSC); Avery Co., Pyatte, {\i H. E. Ahles 43668} 17 Jun 1958 (NCU); Avery Co., Senia, {\i H. E. Ahles 43537} 17 Jun 1958 (NCU); Buncombe Co., Hickory Gap, {\i W. W. Ashe 111} (NCU); Buncombe Co., Asheville, {\i Charles T. Bryson 6776} 27 Jul 1987 (WIS); Buncombe Co., Asheville, {\i Phillip E. Hyatt 8808} 28 Jul 1999 (NKY); Buncombe Co., Asheville vicinity, {\i Phillip E. Hyatt 8810} 28 Jul 1999 (MICH); Buncombe Co., Biltmore, {\i W. W. Ashe 5241a} 28 Jun 1897 (NCU); Buncombe Co., Blue Ridge, {\i H. K. Svenson 13,024} 4 Aug 1949 (SMU); Buncombe Co., Cedar Cliff, {\i D. E. Boufford 14404} 19 Jun 1974 (NCU); Caldwell Co., Blowing Rock, {\i H. A. Ahles 43977} 18 Jun 1958 (WV); Caldwell Co., Draco, {\i A. E. Radford 15108} 4 Aug 1956 (NCU); Clay Co., Buck Creek, {\i H. E. Ahles 13663} 2 Jun 1956 (NCU); Clay Co., Clay-Macon Co line, {\i Harry E. Ahles 13663} 2 Jun 1956 (KANU); Clay Co., Fires Creek, {\i A. E. Radford 6161} 5 Jun 1952 (NCU); Clay Co., Perry Gap, {\i D. E. Boufford 14156} 11 Jun 1974 (NCU); Clay Co., Perry Gap, {\i D. E. Boufford 14210} 11 Jun 1974 (NCU); Forsyth Co., Yadkin River Bridge, {\i J. R. Manhart 352} 30 May 1981 (MICH); Graham Co., Stecoach Gap, {\i C. T. Bryson 6832} 30 Jul 1987 (VDB); Graham Co., Round Top Mt., {\i H. E. Ahles 13189} 29 May 1956 (MICH); Graham Co., Round Top Mt., {\i A. E. Radford 11842} 29 May 1956 (SMU); Graham Co., Appalachian Trail, {\i C. T. Bryson 6832} 30 Jul 1987 (WIS); Graham Co., Robbinsville, {\i J. A. Churchill 86232} 5 Jul 1986 (WIS); Graham Co., Round Top Mt., {\i H. E. Ahles 13189} 29 May 1956 (NCU); Haywood Co., Crabtree, {\i H. E. Ahles 46656} 15 Jul 1958 (NCU); Haywood Co., Mt. Pisgah, {\i G. S. Ramseur 4552} 26 Jun 1958 (NCU); Haywood Co., Sunburst, {\i D. E. Boufford 15049} 23 May 1974 (NCU); Henderson Co., Fletcher Academy, {\i V. E. McNeilus s.n.} 19 Jul 1981 (WIS); Macon Co., Highlands, {\i R. K. Godfrey 51430} 21 Jul 1951 (MICH); Macon Co., Buck Creek, {\i D. E. Boufford 13759} 27 May 1974 (NCU); Macon Co., Coweeta, {\i J. R. Manhart 297} 16 May 1981 (MICH); Macon Co., Coweeta, {\i J. R. Manhart 58} 9 Jun 1980 (MICH); Macon Co., Coweeta Hydrologic Lab, {\i Phillip E. Hyatt 6643} 11 Jun 1995 (MICH); Macon Co., Coweeta Hydrologic Lab, {\i Phillip E. Hyatt 6096} 2 Jul 1994 (MICH); Macon Co., Coweeta Hydrologic Lab, {\i James R. Manhart 297} 16 May 1981 (WIS); Macon Co., Coweeta Hydrologic Lab, {\i Phillip E. Hyatt 8622} 28 May 1999 (USCH); Macon Co., Gneiss, {\i A. E. Radford s.n.} 31 May 1947 (NCU); Macon Co., Highlands, {\i D. E. Boufford 16129} 6 Jun 1975 (NCU); Macon Co., Hogback Gap, {\i A. E. Radford 6116} 3 Jun 1952 (NCU); Macon Co., Moore Knob, {\i P. D. McMillan 4540} 6 May 2000 (CLEMS); Macon Co., Nantahala, {\i A. E. Radford 5253} 7 Jun 1950 (NCU); Macon Co., Otto, {\i Phillip E. Hyatt 8196} 3 Jul 1998 (MICH); Madison Co., Big Laurel, {\i H. E. Ahles 42615} 6 Jun 1958 (VDB); McDowell Co., Mill Creek, {\i C. R. Bell 3487} 11 Jun 1956 (NCU); Mitchell Co., Spruce Pine, {\i H. E. Ahles 43158} 16 Jun 1958 (NCU); Polk Co., Melrose, {\i D. C. Peattie 656} 24 Jun 1921 (NCU); Polk Co., Tryon, {\i F. R. Fosberg 18898} 19 Jun 1942 (NCU); Polk Co., Tryon, {\i D. C. Peattie 2207} 20 May 1926 (NCU); Rutherford Co., Bat Cave Nature Preserve, {\i H. McIver 28} 16 Jul 1981 (NCU); Stokes Co., Hanging Rock SP, {\i H. E. Ahles 59485} 6 Jun 1965 (NCU); Surry Co., Low Gap, {\i A. E. Radford 13148} 23 Jun 1956 (NCU); Swain Co., Alarka, {\i C. R. Bell 3265} 6 Jun 1956 (NCU); Swain Co., Nantahala Gorge, {\i D. E. Boufford 13667} 26 May 1974 (NCU); Swain Co., Nantahala Gorge, {\i D. E. Boufford 13688} 26 May 1974 (NCU); Swain Co., Great Smoky Mt. NP, {\i V. E. McNeilus s.n.} 27 Jun 1982 (WIS); Transylvania Co., Horsepasture Gorge, {\i C. L. Rodgers 61397a} 9 Jul 1961 (NCU); Transylvania Co., Pilot Cove, {\i D. E. Boufford 16690} 23 Jun 1975 (NCU); Transylvania Co., Pink Beds, {\i D. E. Boufford 13487} 21 May 1974 (NCU); Transylvania Co., Thompson River Gorge, {\i D. M. E. Ware 3087} 10 Jul 1970 (VDB); Transylvania Co., Thompson River Gorge, {\i D. M. E. Ware 3142} 13 Jul 1970 (VDB); Watauga Co., Bethel, {\i H. E. Ahles 43871} 18 Jun 1958 (NCU); Watauga Co., Blowing Rock, {\i M. L. Smith 5861} 7 Aug 1981 (VPI); Watauga Co., Hanging Rock, {\i J. Rohrer 1934} 10 Jun 1978 (NCU); Yadkin Co., Yadkin River Bridge, {\i J. R. Manhart 320} 30 May 1981 (MICH); Yancey Co., Celo, {\i H. E. Ahles 46939} 16 Jul 1958 (NCU); Yancey Co., Huntdale, {\i H. E. Ahles 42818} 7 Jun 1958 (NCU). }\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Ohio: Belmont Co., Rock Run, {\i A. W. Cusick 22616} 23 Jun 1983 (MICH); Belmont Co., Wayne twp., {\i A. W. Cusick 9992} 21 Jun 1969 (NCU); Erie Co., Cedar Point, {\i G. B. Ashcroft s.n.} 1 Jul 1997 (WIS); Holmes Co., Killbuck, {\i A. W. Cusick 29,624} 5 Jun 1991 (VDB); Jefferson Co., Yellow Creek, {\i A. W. cusick 25,456} 1 Jul 1986 (MICH); Lake Co., Painesville, {\i H. C. Beardlee s.n.} (MSC); Lawrence Co., Lake Vesuvius Recreation Area, {\i G. M. Silberhorn 2258} 7 Jul 1968 (NCU).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Pennsylvania: Beaver Co., Moucea, {\i J. Bright 6341} 4 Jun 1932 (SMU); Beaver Co., Monaco, {\i John Bright 6338} 4 Jun 1932 (WIS); Bedford Co., Wolf Swamp Watershed, {\i Homer Duppstadt s.n.} 15 Jul 1970 (WV); Bedford Co., Bakers Summit, {\i D. Berkheimer 5900} 27 May 1945 (NCU); Bedford Co., Centerville, {\i David Berkheimer 5927} 28 May 1945 (KANU); Berks Co., Esterly, {\i W. C. Brumbach 3550} 27 Jun 1943 (VPI); Centre Co., Unionville, {\i H. A. Wahl 988} 2 Jun 1941 (NEB); Chester Co., Lenape, {\i L. A. Standley 1526} 21 Jun 1987 (MICH); Chester Co., Frazer, {\i H. E. Stone s.n.} 28 Jun 1925 (SMU); Chester Co., Landenberg, {\i E. C. Earle 5110} 27 Jun 1958 (SMU); Clarion Co., Driftwood, {\i H. A. Wahl. s.n.} 19 Jun 1934 (WIS); Clearfield Co., Penfield, {\i E. B. Ehrle 1562} 18 Sep 1955 (NYS); Delaware Co., Crum, {\i F. J. Hermann 3090} 29 May 1932 (MICH); Erie Co., Erie, {\i John Bright s.n.} 16 Jul 1927 (WV); Franklin Co., Tuscarora Summit, {\i J. E. Benedict, Jr. 2859} 5 Jul 1934 (VPI); Lackawanna Co., Ransom, {\i P. E. Rothrock 350} 3 Jun 1975 (NCU); Lancaster Co., Geiger\rquote s Quarry, {\i Earl L. Core 6745} 18 Jun 1938 (WV); Lehigh Co., Lehigh River, {\i H. W. Pretz 8948} 22 Jul 1917 (VDB); Lehigh Co., Emmaus, {\i Harold W. Pretz 13772} 22 Jun 1947 (KANU); Lehigh Co., Hosensack, {\i W. M. Benner s.n.} 17 Jun 1922 (GH); Lehigh Co., South Mountains, {\i H. W. Pretz 6655} 13 Jun 1914 (VDB); Northampton Co., Lower Saucon, {\i R. L. Schaeffer, Jr. 14398} 21 Jul 1941 (VPI); Northampton Co., 1.25 mi N of Lower Saucon, {\i R. L. Schaeffer 14267} 16 Jul 1941 (GH); Northampton Co., Wassergass, {\i R. L. Schaeffer 9564} 5 Aug 1940 (GH); Northampton Co., Easton, {\i J. K. Small s.n.} 4 Jul 1890 (NCU); Northampton Co., Easton, {\i N. L. Britton s.n.} 5 Jul 1889 (NEB); Northampton Co., Lower Saucon, {\i R L Schaeffer 12460} 11 Jun 1941 (KANU); Susquehanna Co., Susquehanna, {\i J. A. Graves s.n.} 1 Jul 1898 (NEB).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Rhode Island: Providence Co., Diamond Hill, Town of Cumberland, {\i E. J. Palmer 45584} 24 Aug 1941 (GH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 South Carolina: {\i W. W. Ashe 152} 16 Jul 1700 (NCU); Greenville Co., North Saluda Reservoir, {\i John B. Nelson 16527} 15 May 1995 (NKY); Greenville Co., North Saluda Reservoir, {\i J. B. Nelson 16,527} 15 May 1995 (MICH); Greenville Co., Bryant Mt., {\i J. B. Nelson 16,522} 15 May 1995 (MICH); Greenville Co., Table Rock Reservoir Watershed, {\i S. R. Hill 23617} 30 Jun 1992 (MICH); Greenville Co., Callahan/Hyde Mt., {\i J. F. Townsend 2151} 13 Jun 2000 (CLEMS); Greenville Co., Glassy Mt., {\i C. N. Horn 5251} 25 Jun 1992 (USCH); Greenville Co., Old Indian Mt., {\i J. B. Nelson 16512} 15 May 1995 (USCH); Greenville Co., Table Rock Reservoir, {\i S. R. Hill 23492} 22 Jun 1992 (CLEMS); Greenville Co., Table Rock Reservoir, {\i S. R. Hill 23617} 30 Jun 1992 (CLEMS); Oconee Co., Wright Creek, {\i D. M. E. Ware 2942} 8 May 1970 (VDB); Oconee Co., Chattooga Trail, {\i L. L. Gaddy s.n.} 26 May 1986 (CLEMS); Oconee Co., Oconee SP, {\i A. Darr 1927} 12 Jun 2003 (USCH); Oconee Co., Sumter National Forest, {\i S. R. Hill 25048} 22 May 1993 (MICH); Oconee Co., Sumter National Forest, {\i A. A. Reznicek 8982} 23 May 1992 (MICH); Oconee Co., Walhalla, {\i A. E. Hodge 226} 2 May 1982 (NCU); Pickens Co., Rt. 11, {\i S. R. Hill 19275} 9 May 1988 (VDB); Pickens Co., U. S. 178, {\i C. R. Bell 3317} 8 Jun 1956 (NCU); Pickens Co., U. S. 178 , {\i D. E. Boufford 20902} 14 May 1979 (VDB); Pickens Co., U. S. 178, {\i C. Horn 19275} 9 May 1988 (MICH); Pickens Co., Rt. 178, {\i S. R. Hill 19275} 9 May 1988 (CLEMS); Pickens Co., Chimneytop Gap, {\i A. Darr 1930} 18 May 2004 (USCH); Pickens Co., Eastatoe Creek Gorge, {\i D. E. Boufford 17371} 18 Jul 1975 (NCU); Pickens Co., Howell Mt., {\i P. D. McMillan 6345} 12 May 2002 (CLEMS); Pickens Co., Pinnacle Mt., {\i P. D. McMillan 7069} 19 Jun 2003 (CLEMS); Pickens Co., Sassafras Mt., {\i J. F. Townsend 2073} 4 May 2000 (CLEMS); Pickens Co., Sassafras Mt., {\i R. T. Clausen 3642} 16 Sep 1938 (NYS); Pickens Co., Table Rock Reservoir, {\i S. R. Hill 23692} 10 Jul 1992 (CLEMS); Pickens Co., Wadakoe Mt., {\i P. D. McMillan 6315} 30 Apr 2002 (CLEMS); Pickens Co., Wadakoe Mt., {\i P. D. McMillan 6392} 11 May 2002 (CLEMS).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Tennessee: Thompson\rquote s, {\i Anonymous 1002} 1 May 1896 (NCU); Great Smoky Mts {\i F. Rugel 107} 1 May 1844 (VDB); Anderson Co., Norris Dam, {\i V. E. McNeilus 90346} 13 Jun 1990 (WIS); Anderson Co., Norris Dam, {\i V. E. McNeilus 89-358} 13 Jun 1989 (MICH); Anderson Co., Norris Dam, {\i A. J. Sharp 2744} 24 Jul 1934 (NCU); Anderson Co., Norris Dam SP, {\i V. E. McNeilus 87-726} 12 May 1987 (BRIT); Blount Co., Cades Cove, {\i C. T. Bryson 10820} 30 Jun 1991 (CLEMS); Blount Co., Cherokee NF, {\i B. A. Ford 88926} 17 May 1989 (NYS); Blount Co., Great Smoky Mt. NP, {\i C. T. Bryson 10820} 30 Jun 1991 (MICH); Blount Co., Great Smoky Mt. NP, {\i S. Jones 4937} 22 May 1990 (WIS); Blount Co., Great Smoky Mt. NP, {\i R. Athey s.n.} 15 May 1973 (VDB); Blount Co., Great Smoky Mt. NP, {\i V. E. McNeilus s.n.} 6 Apr 1983 (WIS); Blount Co., Great Smokey Mt. NP, {\i V. E. McNeilus s.n.} 19 May 1984 (WIS); Carter Co., Watuga Lake, {\i J. R. Manhart 328} 31 May 1981 (MICH); Cheatham Co., Ashland City, {\i R. Kral 26782} 6 Jun 1966 (MICH); Cheatham Co., Ashland City, {\i T. Smith s.n.} 9 Jul 1982 (VDB); Clay Co., Celina, {\i V. E. McNeilus 91-755} 5 Aug 1991 (MICH); Clay Co., Celina, {\i V. E. McNeilus 91-340} 13 May 1991 (WIS); Coffee Co., Old Stone Fort SP, {\i D. F. Brunton 10338} 22 May 1991 (MICH); Cumberland Co., Brady Mt., {\i R. Kral 83559} 20 May 1994 (VDB); Cumberland Co., Brady Mt., {\i R. Kral 83558} 20 May 1994 (MICH); Davidson Co., TN 12, {\i R. Kral 77671} 22 May 1990 (VDB); Davidson Co., Joelton, {\i J. M. Shaver 2475} 9 May 1942 (VDB); Davidson Co., Vicinity of Long Hollow, {\i B. Bowen BB95-016} 1995 (VDB); Fentress Co., Clarkrange, {\i A. W. Cusick 11,778} 26 Jun 1971 (VDB); Franklin Co., Carter Mt., {\i P. Somers 1132} 21 May 1978 (VDB); Franklin Co., Wolf Cove, {\i R. K. Clements 479} 14 Aug 1985 (VDB); Greene Co., Carmel, {\i J. A. Churchill 93163} 13 Jun 1993 (WIS); Greene Co., Greene Mt., {\i B. Boom 556} 11 Jun 1980 (EKY); Grundy Co., Beershaba Springs, {\i K. Rogers 43586} 5 Jul 1969 (VDB); Grundy Co., Savage Creek Bridge, {\i T. S. Patrick 380} 21 Aug 1977 (EKY); Grundy Co., Monteagle Mt., {\i R. Kral 65036} 14 May 1980 (VDB); Grundy Co., Mt. View, {\i R. Kral 68636} 31 May 1982 (VDB); Grundy Co., Altamont, {\i R. Kral 77744} 29 May 1990 (VDB); Grundy Co., Monteagle, {\i R. Kral 46503} 17 May 1972 (WIS); Grundy Co., Savage Gulf Natural Area, {\i T. S. Patrick 379} 21 Aug 1977 (EKY); Grundy Co., Savage Gulf Natural Area, {\i T. S. Patrick 202} 8 Jun 1977 (VDB); Grundy Co., The Fiery Gizzard Gorges, {\i R. C. Clark 964} 26 Jun 1964 (NCU); Hamilton Co., Falling Water Falls State Natural Area, {\i P. Somers 2095} 21 Aug 1981 (VDB); Hawkins Co., Kyles Ford, {\i P. Somers 1789} 28 Jun 1979 (VDB); Jackson Co., Brimstone Creek Bridge, {\i R. Kral 80520} 14 May 1992 (VDB); Lawrence Co., Lawrenceburg, {\i R. Kral 77463} 5 May 1990 (VDB); Macon Co., {\i K. E. Blum 3446} 13 May 1969 (VDB); Monroe Co., Cherokee National Forest, {\i D. E. Boufford 23607} 18 May 1985 (VDB); Morgan Co., Stephen\rquote s, {\i K. E. Rogers 44696} 14 May 1966 (SMU); Morgan Co., Frozen Head SP, {\i V. E. McNeilus s.n.} 13 May 1984 (WIS); Morgan Co., Gatewood Bridge, {\i V. E. McNeilus s.n.} 20 Jun 1982 (WIS); Overton Co., Allred, {\i V. E. McNeilus 93-1112} 22 Jun 1993 (WIS); Polk Co., Hiawassee River, {\i V. E. McNeilus s.n.} 10 Apr 1984 (WIS); Polk Co., Wolf Creek, {\i J. K. Underwood 41183} 28 May 1966 (SMU); Putnam Co., I40, {\i L. E. McKinney 2132} 10 May 1986 (VDB); Rhea Co., Dayton, {\i V. E. McNeilus 88-328} 18 May 1988 (WIS); Rhea Co., Dayton, {\i V. E. McNeilus s.n.} 23 May 1982 (WIS); Roane Co., Clifty Creek, {\i V. E. McNeilus 87727} 13 May 1987 (WIS); Scott Co., Big South Fork Nat. Rec. area, {\i V. E. McNeilus 87-728} 6 May 1987 (MICH); Scott Co., Big South Fork National Recreation Area, {\i V. E. McNeilus 87530} 27 Jun 1987 (WIS); Scott Co., Big South Fork National River and Recreation Area, {\i A. A. Reznicek 9556} 22 Jun 1993 (MICH); Sequatchie Co., Dunlap, {\i R. Kral 77730} 29 May 1990 (VDB); Sevier Co., Gatlinburg, {\i S. Jones 4933} 22 May 1990 (VDB); Sevier Co., Great Smoky Mt. NP, {\i V. E. McNeilus s.n.} 23 May 1983 (WIS); Sevier Co., Great Smoky Mt. NP, {\i D. F. Brunton 7840} 9 May 1988 (MICH); Sevier Co., Greenbrier, {\i A. J. Sharp 1981} 5 Jul 1934 (NCU); Sevier Co., Great Smoky Mt. NP, Greenbriar School, {\i V. E. McNeilus s.n.} 24 May 1981 (WIS); Sevier Co., Great Smoky Mt. NP, Laurel Falls, {\i V. E. McNeilus s.n.} 24 May 1981 (WIS); Sevier Co., Great Smoky Mt. NP, {\i V. E. McNeilus s.n.} 29 Jun 1980 (WIS); Sevier Co., Great Smoky Mt. NP, {\i V. E. McNeilus s.n.} 22 May 1982 (WIS); Sevier Co., Sugarland, {\i Ken Rogers 43617} 29 Jun 1969 (WIS); Sumner Co., Westmoreland, {\i J. Alcorn 437} 19 May 1975 (VDB); Sumner Co., Taylor Hollow, {\i R. Carter 1830} 18 May 1979 (VDB); Unicoi Co., Devil\rquote s Creek, {\i B. Boom 543} 10 Jun 1980 (EKY); Unicoi Co., Unicoi, {\i H. E. Ahles 54696} 16 Jun 1961 (NCU); Van Buren Co., Spenser, {\i R. Kral 80571} 19 May 1992 (VDB); Williamson Co., Inman Branch , {\i R. Kral 88609} 2 Jun 1999 (VDB).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Vermont: Bennington Co., North Pownal, {\i D. E. Boufford 17829} 11 Aug 1975 (NCU); Bennington Co., North Pownal, {\i E. W. Wood 2319} 11 Aug 1975 (GH).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Virginia: Albermarle Co., Shenandoah NP, {\i C. E. Stevens 3780} 10 Jul 1971 (NCU); Alleghany Co., Peters Mt., {\i T. F. Wieboldt 6433} 14 Jul 1987 (VPI); Appoxattox Co., Stonewall, {\i A. M. Harvill 16845} 8 Jul 1967 (NCU); Bath Co., Nimrod Hall, {\i G. P. Fleming 13381} 25 Jun 1997 (VPI); Buchanan Co., Slate, {\i T. F. Wieboldt 8559} 20 May 1993 (VPI); Buchanon Co., Prater, {\i J. A. Churchill 8284} 16 Jun 1982 (WIS); Carroll Co., Burks Fork, {\i D. W. Ogle 6383} 30 May 1987 (VPI); Carroll Co., Galax, {\i G. B. Rossbach 2646} 18 Jun 1961 (WV); Carroll Co., Va 694, {\i L. J. Uttal 7168} 4 Jun 1970 (VPI); Clarke Co., Buzzard Hill; Bluemont, {\i G. P. Fleming 5465} 25 May 1991 (VPI); Craig Co., Potts Mt., {\i T. L. Sharik SM77-5389} 13 May 1977 (VPI); Dickinson Co., Bartlick, {\i T. F. Wieboldt 4512} 26 Aug 1982 (VPI); Fauquier Co., Bull Run Mountain, {\i H. A. Allard 11909} 15 Jun 1946 (WIS); Fauquier Co., Bull Run Mountains, {\i H. A. Allard 19604} 4 Jun 1950 (WV); Fauquier Co., Marshall, {\i G. P. Fleming 2290} 15 Jun 1986 (CLEMS); Fauquier Co., Western slope of Bull Run Mountains, {\i H. A. Allard 5317} 31 Jul 1938 (VPI); Fauquier Co., Hopewell Gap, {\i H. A. Allard 406} 26 May 1936 (VPI); Floyd Co., Rt. 648, {\i G. P. Frank 616} 17 Jul 1981 (VPI); Grayson Co., Bald Rock, {\i D. W. Ogle 1291} 28 Jul 1978 (VPI); Grayson Co., Bridle Creek, {\i T. F. Wieboldt 6159} 25 Jun 1986 (WIS); King George Co., Caledon Marsh, {\i D. M. E. Ware 8520} 6 Aug 1983 (VDB); King George Co., Caledon Swamp, {\i D. M. E. Ware 8186} 8 Jun 1983 (CLEMS); Lee Co., Stone Mt., {\i D. W. Ogle 5258} 2 Jun 1984 (VPI); Madison Co., Stony Man Mt., {\i H. D. House 4769} 13 Sep 1948 (NYS); Montgomery Co., McCoy, {\i R. Kral 10611} 22 Jun 1960 (VDB); Morgan Co., Cacapon Mt. SP, {\i T. F. Wieboldt 6211} 13 Aug 1986 (WIS); Page Co., Big Meadows, {\i J. A. Churchill s.n.} 20 Jun 1957 (MSC); Page Co., Blue Ridge Mts, {\i F. J. Hermann 11405} 15 Oct 1944 (MICH); Page Co., Knob Mt., {\i F. W. Hunnewell 19133} 24 Jun 1949 (VPI); Patrick Co., Dodson, {\i T. F. Wieboldt 9504} 25 Jul 1996 (VPI); Patrick Co., Philpott Reservoir, {\i T. F. Wieboldt 9504} 25 Jul 1996 (MICH); Pulaski Co., Big Walker Mt., {\i T. F. Wieboldt 9987} 2 Jul 1998 (VPI); Pulaski Co., Rt. 606, {\i J. A. Smith s.n.} 8 Aug 1975 (VPI); Rappahannock Co., Shenandoah NP, {\i F. R. Fosberg 41122} 3 Aug 1960 (SMU); Rappahannock Co., Shenandoah NP, {\i F. H. Sargent s.n.} 16 Jun 1951 (WIS); Rappahannock Co., Shenandoah NP, {\i F. R. Fosberg 48510} 4 Jun 1967 (MICH); Rappahannock Co., Shenandoah NP, {\i F. R. Fosberg 31000} 17 Jul 1949 (VDB); Rappahannock Co., Shenandoah NP, {\i F. R. Fosberg 45460} 6 Jun 1964 (MICH); Rappahannock Co., Shenandoah NP, {\i F. H. Sargent s.n.} 16 Jun 1951 (SMU); Roanoke Co., Haven\rquote s WMA, Ft. Lewis Mt., {\i N. A. Mason s.n.} 15 Jun 1991 (VPI); Roanoke Co., Poor Mt., {\i C. E. Stevens 2672} 7 Sep 1970 (VPI); Scott Co., Fort Blackmore, {\i R. Naczi 6889} 15 Aug 1997 (NKY); Shenandoah Co., Big Schloss, {\i C. E. Stevens 1231} 21 Jul 1969 (VPI); Smyth Co., Marion, {\i R. Kral 10900} 2 Aug 1960 (SMU); Tazewell Co., Flattop Mt., {\i L. J. Uttal 7130} 28 May 1970 (VPI); Wise Co., Guest River Gorge, {\i D. W. Ogle 5605} 14 Sep 1984 (VPI).\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 West Virginia: Mamonon, {\i John L. Sheldon s.n.} 20 Jul 1918 (WV); Braxton Co., Strange Creek, {\i W. V. University Biological Expedition s.n.} 17 Jun 1941 (WV); Fayette Co., New River Gorge, {\i Rodney L. Bartgis s.n.} 5 Jun 1983 (WV); Fayette Co., Beckwith, {\i Earl L. Core 4232} 8 Jul 1932 (WV); Fayette Co., Clifftop, {\i William N. Grafton s.n.} 4 Jun 1995 (WV); Fayette Co., Short, {\i Rodney L. Bartgis s.n.} 5 Jun 1983 (WV); Grant Co., Dolly Sods, {\i William N. Grafton s.n.} 3 Jun 1999 (WV); Hampshire Co., Nathaniel Mt., {\i Homer Duppstadtq s.n.} 30 Jun 1977 (WV); Hancock Co., Tomlinson Run SP, {\i J. Sumpstine s.n.} 1 Jul 1939 (WV); Hardy Co., Lost River, {\i H. A. Allard 6736} 8 Jun 1939 (WV); Harrison Co., Turtletree Fork , {\i William N. Grafton s.n.} 5 Jun 1980 (WV); Jefferson Co., Avon Bend, {\i Rodney Bartgis 1287} 26 May 1989 (WV); Lewis Co., Camden, {\i W. V. U. Botanical Expedition s.n.} 15 Jun 1928 (WV); McDowell Co., Payton, {\i William N. Grafton s.n.} 22 Jun 1996 (WV); Mercer Co., Camp Creek, {\i William N. Grafton s.n.} 9 Jun 1987 (WV); Monongalia Co., Chestnut Ridge Regional Park, {\i William N. Grafton s.n.} 28 Aug 1996 (WV); Monongalia Co., Dellslow, {\i John L. Sheldon s.n.} 10 Jun 1918 (WV); Morgan Co., Cacapon Mt. SP., {\i T. F. Wieboldt 6211} 13 Aug 1986 (VPI); Nicholas Co., Nettie, {\i William Basil Fox s.n.} 21 Jun 1940 (WV); Pendleton Co., Seneca Rocks, {\i H. A. Allard 20631} 3 Jul 1952 (WV); Pendleton Co., Seneca Rocks Trail, {\i William N. Grafton s.n.} 10 Aug 1997 (WV); Pendleton Co., Seneca, {\i Earl L. Core 6135} 16 Jul 1937 (WV); Raleigh Co., Ivy Knob, {\i William N. Grafton s.n.} 30 Jun 1974 (WV); Ritchie Co., U. S. 50, {\i William N. Grafton s.n.} 8 Jun 1999 (WV); Roane Co., Hungry Beech Preserve, {\i Emily Grafton s.n.} 23 Jun 1979 (WV); Tucker Co., Canaan Valley, {\i H. A. Allard 19539} 24 Jul 1949 (WV); Tyler Co., Sistersville, {\i Earl L. Core 4133} 24 Jun 1932 (WV); Upshur Co., Middle Fork River, {\i William N. Grafton s.n.} 3 Aug 1995 (WV); Wayne Co., Buffalo Creek, {\i Lewis Plymale 379} 7 May 1938 (WV); Wetzel Co., Littleton, {\i Oscar Haught 374} 11 Jun 1931 (WV); Wood Co., U. S. 50, {\i William N. Grafton s.n.} 8 Jun 1999 (WV).\par }} }}}latex2rtf-2.3.18/test/bib_apalike.tex0000777000175000017500000000113213050672360017645 0ustar wilfriedwilfried\documentclass[english]{article} \usepackage[T1]{fontenc} \usepackage[latin1]{inputenc} \usepackage{babel} \usepackage{apalike} \begin{document} \title{Demostration of 8-bit cite bug} \author{Harri Kiiskinen} \maketitle An example LyX citation \cite[110]{Thebert1985} \begin{thebibliography}{} \bibitem[Thébert, 1985]{Thebert1985} Thébert, Y. (1985). \newblock Vie privée et architecture domestique en afrique romaine. \newblock In Veyne, P., editor, {\em Histoire de la vie privée. Tome 1. De {l'Empire} romain ŕ l'an mil}, pages 301--398. Seuil, Paris. \end{thebibliography} \end{document} latex2rtf-2.3.18/test/bibentry_plain.tex0000777000175000017500000000115513050672360020431 0ustar wilfriedwilfried\documentclass[12pt,a4paper]{article} \usepackage[T1]{fontenc} \usepackage{natbib,bibentry} \begin{document} \bibliographystyle{plain} \nobibliography{bibentry_plain} \noindent Input: \begin{verbatim} \documentclass{article} \usepackage{natbib,bibentry} \begin{document} \bibliographystyle{plain} \nobibliography{bibentry_plain} \begin{itemize} \item \bibentry{zysk-conj}. \item \bibentry{ping-cata}. \end{itemize} \end{document} \end{verbatim} \noindent Output, after running \LaTeX\ and Bib\TeX: \begin{itemize} \item \bibentry{zysk-conj}. \item \bibentry{ping-cata}. \end{itemize} \end{document} latex2rtf-2.3.18/test/bib_authordate.tex0000777000175000017500000005322013050672360020404 0ustar wilfriedwilfried% -*-latex-*- % Document name: /usr/local/lib/tex/bibtex/authordate1.ltx % Creator: David Rhead [David_Rhead@vme.nott.ac.uk] % Creation Date: Sun 28 Jun 92 19:10:19 BST \documentstyle[authordate1-4]{report} \raggedright \begin{document} %\input{testadb.ltx} \chapter{Introduction} This document shows the effect of referring to some of the examples given by \cite{bs-1629}, \cite{bs-5605}, \cite{bs-6371}, \cite{butcher-81} and \cite{chicago-82}. \chapter{Examples given in BS 5605} \section{Citations from section 4} % Standard LaTeX provides \cite but not \shortcite. % Johnson \shortcite{johnson-74} describes \dots\\ In a recent study \cite{johnson-74}, it is described as \dots\\ % Howells \shortcite{howells-66-pop} discussed the subject briefly \dots\\ % In a further article \cite{howells-66-var}, greater attention was given \dots\\ % % BS 5605 uses &, whereas Chicago (page 402) would use "and" here. % Butcher (page 186) accepts either. Johnson and Howells \shortcite{johnson-howells} take a different view \dots\\ % This work \cite{johnson-etc} quotes \dots\\ % Elsewhere \cite{anon-67} it is shown \dots\\ % Howells \shortcite[p.\ 29]{howells-66-var} describes \dots\\ \section{Another reference from section 5} In \cite{howells-51} \dots\\ \section{References from section 6} \dots\ \cite{fletcher-hopkins} \dots\\ % \dots\ \cite{wright-63} \dots\\ % \dots\ \cite{feigl-58} \dots\\ \chapter{Examples given in BS 1629} \dots\ \cite{hoel-71-whole} \dots\\ % \dots\ \cite{hoel-71-portion} \dots\\ % \dots\ \cite{singer-whole} \dots\\ % \dots\ \cite{singer-portion-chapter} \dots\\ % \dots\ \cite{singer-portion-volume} \dots\\ % % BS 5605 says that "if a contribution is separately paginated ... the part % number should be inserted in parentheses". BibTeX cannot tell whether % a contribution is separately paginated but, if the number field is present % in the bib file, will produce a reference in the required form. \dots\ \cite{godfrey-59} \dots\\ % \dots\ \cite{ramsbottom-31} \dots\\ % \dots\ \cite{bs-2570-manual} \dots\\ % \dots\ \cite{bs-2570-techreport} \dots\\ % \dots\ \cite{bs-2570-inbook} \dots\\ % \dots\ \cite{ellis-walton} \dots\\ % \dots\ \cite{hanlon-72} \dots\\ % \dots\ \cite{winget-67} \dots\\ % \dots\ \cite{bry-afflerbach} \dots\\ % \dots\ \cite{ranganathan-51} \dots\\ % \dots\ \cite{mccolvin-nodate} \dots\\ \chapter{Examples given in BS 6371} \dots\ measures which the lords were urging on the king \cite[fol. 22]{exchequer-34-39}. Henry seems to have been ineffectual according to Traquair \shortcite{traquair-38}. With the appointment of a new receiver of rents \cite[fol. 2]{exchequer-34-39}, \dots\\ \dots\ \cite{pym-24} \dots\\ % \dots\ \cite{croft-78} \dots\\ \chapter{Examples given by Butcher} \dots\ the synthesis of amino acids \cite[pp.\ 131--8]{darcy-20-amaz} amazed \dots\\ % \dots\ the synthesis of amino acids by D'Arcy \shortcite[pp.\ 131--8]{darcy-20-amaz} amazed \dots\\ % \dots\ if more than one is included in one text reference, one says \shortcite{darcy-20-amaz,darcy-20-again}.\\ % \dots\ \cite{jones-n-h-r} \dots\\ % \dots\ \cite{jones-s-r} \dots\\ % \dots\ \cite{jones-65} \dots\\ % \dots\ \cite{jones-69} \dots\\ % \dots\ \cite{jones-abrams} \dots\\ % \dots\ \cite{jones-a-s} \dots\\ % \dots\ \cite{jones-smith} \dots\\ % \dots\ \cite{bloggs-60} \dots\\ % \dots\ \cite{bloggs-61} \dots\\ % \dots\ \cite{bloggs-jones} \dots\\ % \dots\ \cite{bloggs-s-j} \dots\\ % \dots\ \cite{brown-f-s} \dots\\ % \dots\ \cite{eckstein-zuckerman} \dots\\ % \dots\ \cite{heller-lederis} \dots\\ % \dots\ \cite{wood-61} \dots\\ \chapter{Examples given by Chicago} \section{Citations from chapter 15} \dots\ \cite[121--25]{pratt-75} \dots\\ % \dots\ \cite{light-72,light-wong,kingston-76} \dots\\ % \dots\ \cite{kelley-96-spring,kelley-96-autumn,kelley-07} \dots\\ \section{References from chapter 16} \dots\ \cite{brunswick-85} \dots\\ % \dots\ \cite{wright-78-book} \dots\\ % \dots\ \cite{wright-78-incollection} \dots\\ % \dots\ \cite{kendeigh-52} \dots\\ % \dots\ \cite{chapman-75} \dots\\ % \dots\ \cite{hershkovitz-62} \dots\\ % \dots\ \cite{ogilvy-65} \dots\\ % \dots\ \cite{mcneill-63} \dots\\ % \dots\ \cite{thomson-71} \dots\\ % \dots\ \cite{gordon-75} \dots\\ % \dots\ \cite{milton-24} \dots\\ % \dots\ \cite{chomsky-73} \dots\\ % \dots\ \cite{chave-64} \dots\\ % \dots\ \cite{smart-76} \dots\\ % \dots\ \cite{jackson-79} \dots\\ % \dots\ \cite{prufer-64} \dots\\ % \dots\ \cite{mann-68} \dots\\ % \dots\ \cite{maguire-76} \dots\\ % \dots\ \cite{downes-74} \dots\\ % \dots\ \cite{hunt-76} \dots\\ %\bibliographystyle{authordate1} %\bibliography{test} \begin{thebibliography}{} \bibitem[\protect\citename{Anon., }1967]{anon-67} Anon. 1967. \newblock {\em Title title title title title title title title title title}. \newblock Organization organization organization. \bibitem[\protect\citename{Bloggs, }1960]{bloggs-60} Bloggs, A.~J. 1960. \newblock Title title title title title title title title title title. \newblock {\em Journal journal journal}. \bibitem[\protect\citename{Bloggs, }1961]{bloggs-61} Bloggs, A.~J. 1961. \newblock Title title title title title title title title title title. \newblock {\em Journal journal journal}. \bibitem[\protect\citename{Bloggs \& Jones, }1959]{bloggs-jones} Bloggs, A.~J., \& Jones, X.~Y. 1959. \newblock Title title title title title title title title title title. \newblock {\em Journal journal journal}. \bibitem[\protect\citename{Bloggs {\em et~al.}, }1955]{bloggs-s-j} Bloggs, A.~J., Smith, R.~S., \& Jones, X.~Y. 1955. \newblock Title title title title title title title title title title. \newblock {\em Journal journal journal}. \bibitem[\protect\citename{Brown {\em et~al.}, }1900]{brown-f-s} Brown, H.~W., Forbes, A.~S., \& Smith, S.~D. 1900. \newblock Title title title title title title title title title title. \newblock {\em Journal journal journal}. \bibitem[\protect\citename{`Brunswick', }1985]{brunswick-85} `Brunswick'. 1985. \newblock {\em The piper and the rats: A musical experiment}. \newblock Tech. rept. 1984. Rodent Activities Termination Section (RATS), Pest Control Division, Brunswick Public Welfare Department, Hamelin. \bibitem[\protect\citename{Bry \& Afflerbach, }1968]{bry-afflerbach} Bry, I., \& Afflerbach, L. 1968. \newblock In search of an organizing principle for behavioural science literature. \newblock {\em Community Mental Health}, {\bf 4}(1), 75--84. \bibitem[\protect\citename{BSI, }1973a]{bs-2570-inbook} BSI. 1973a. \newblock {\em {BS} 2570: Natural Fibre Twines}. 3rd edn. \newblock London: British Standards Institution. \newblock {Table}~5. \bibitem[\protect\citename{BSI, }1973b]{bs-2570-manual} BSI. 1973b. \newblock {\em Natural Fibre Twines}. 3rd edn. \newblock British Standards Institution, London. \newblock BS 2570. \bibitem[\protect\citename{BSI, }1973c]{bs-2570-techreport} BSI. 1973c. \newblock {\em Natural Fibre Twines}. \newblock BS 2570. British Standards Institution, London. \newblock 3rd. edn. \bibitem[\protect\citename{BSI, }1976]{bs-1629} BSI. 1976. \newblock {\em Bibliographic References}. \newblock BS 1629. British Standards Institution. \bibitem[\protect\citename{BSI, }1978]{bs-5605} BSI. 1978. \newblock {\em Citing Publications by Bibliographic References}. \newblock BS 5606. British Standards Institution. \bibitem[\protect\citename{BSI, }1983]{bs-6371} BSI. 1983. \newblock {\em Citation of unpublished documents}. \newblock BS 6371. British Standards Institution. \bibitem[\protect\citename{Butcher, }1981]{butcher-81} Butcher, Judith. 1981. \newblock {\em Copy-editing}. 2nd edn. \newblock Cambridge University Press. \bibitem[\protect\citename{Chapman, }1975]{chapman-75} Chapman, Jefferson. 1975. \newblock {\em The {Icehouse Bottom} Site---{40MR23}}. \newblock University of Tennessee Department of Anthropology Publication, no. ~23. \newblock Knoxville: Univ. of Tennessee Press. \bibitem[\protect\citename{Chave, }1964]{chave-64} Chave, K.~E. 1964. \newblock Skeletal durability and preservation. \newblock {\em Pages 377--87 of:} Imbrie, J., \& Newel, N. (eds), {\em Approaches to paleoecology}. \newblock New York: Wiley. \bibitem[\protect\citename{`Chicago', }1982]{chicago-82} `Chicago'. 1982. \newblock {\em The {C}hicago Manual of Style}. 13th edn. \newblock University of Chicago Press. \bibitem[\protect\citename{Chomsky, }1973]{chomsky-73} Chomsky, N. 1973. \newblock Conditions on Transformations. \newblock {\em In:} Anderson, S.~R., \& Kiparsky, P. (eds), {\em A festschrift for {Morris Halle}}. \newblock New York: Holt, Rinehart \& Winston. \bibitem[\protect\citename{Croft, }1978]{croft-78} Croft, W.~B. 1978. \newblock {\em Organizing and searching large files of document descriptions}. \newblock Ph.D. thesis, Cambridge University. \bibitem[\protect\citename{D'Arcy, }1920a]{darcy-20-amaz} D'Arcy, Firstname. 1920a. \newblock {\em Title title title title title title title title title title}. \newblock Publisher publisher publisher. \bibitem[\protect\citename{D'Arcy, }1920b]{darcy-20-again} D'Arcy, Firstname. 1920b. \newblock {\em Title title title title title title title title title title}. \newblock Publisher publisher publisher. \bibitem[\protect\citename{Downes, }1974]{downes-74} Downes, W.~J. 1974. \newblock {\em Systemic grammar and structural sentence relatedness}. \newblock London School of Economics. Mimeo. \bibitem[\protect\citename{Eckstein \& Zuckermann, }1960]{eckstein-zuckerman} Eckstein, P., \& Zuckermann, S. 1960. \newblock Morphology of the Reproductive Tract. \newblock {\em Pages 43--154 of:} Parkes, A.~S. (ed), {\em Marshall's Physiology of Reproduction}, vol. 1. \newblock London: Longman. \bibitem[\protect\citename{Ellis \& Walton, }1971]{ellis-walton} Ellis, B., \& Walton, A.~K. 1971. \newblock {\em A Bibliography on Optical Modulators}. \newblock Tech. rept. RAE-TR-71009. Royal Aircraft Establishment. \bibitem[\protect\citename{Exchequer, }1634--1639]{exchequer-34-39} Exchequer. 1634--1639. \newblock {\em Act books}. \newblock Edinburgh, Scottish Record Office, E.4/5. \bibitem[\protect\citename{Feigl, }1958]{feigl-58} Feigl, F. 1958. \newblock {\em Spot Tests in Organic Analysis}. 5th edn. \newblock Publisher publisher. \newblock Chap.~6. \bibitem[\protect\citename{Fletcher \& Hopkins, }1907]{fletcher-hopkins} Fletcher, W.~M., \& Hopkins, F.~G. 1907. \newblock Lactic Acid in Amphibian Muscle. \newblock {\em J. Physiol.}, {\bf 35}, 247--309. \bibitem[\protect\citename{Godfrey, }1959]{godfrey-59} Godfrey, G.~Bernard. 1959. \newblock Joints in Tubular Structures. \newblock {\em Struct. Eng.}, {\bf 37}(4), 126--135. \bibitem[\protect\citename{Gordon, }1975]{gordon-75} Gordon, Robert. 1975. \newblock The Tunes of {Chicken Little}. \newblock {\em In:} Ballet, Arthur~H. (ed), {\em Playwrights for Tomorrow: A Collection of Plays}, vol. 13. \newblock Minneapolis: University of Minnesota Press. \newblock One of four plays included in vol. 13. \bibitem[\protect\citename{Hanlon, }1972]{hanlon-72} Hanlon, Joseph. 1972. \newblock Designing Buildings by Computer. \newblock {\em New Scientist}, 31~Aug., 429--432. \bibitem[\protect\citename{Heller \& Lederis, }1958]{heller-lederis} Heller, H., \& Lederis, K. 1958. \newblock Paper chromatography of small amounts of vasopressin and oxytocin. \newblock {\em Nature}, {\bf 182}, 1231--2. \bibitem[\protect\citename{Hershkovitz, }1962]{hershkovitz-62} Hershkovitz, P. 1962. \newblock {\em Evolution of {Neotropical} cricetine rodents ({Muridae}) with special reference to the phyllotine group}. \newblock Fieldiana: Zoology, vol. 46. \newblock Chicago: Field Museum of Natural History. \bibitem[\protect\citename{Hoel, }1971a]{hoel-71-whole} Hoel, Paul~Gerhard. 1971a. \newblock {\em Elementary Statistics}. 3rd edn. \newblock Wiley series in probability and mathematical statistics. \newblock New York, Chichester: Wiley. \newblock ISBN 0~471~40300. \bibitem[\protect\citename{Hoel, }1971b]{hoel-71-portion} Hoel, Paul~Gerhard. 1971b. \newblock {\em Elementary Statistics}. 3rd edn. \newblock Wiley series in probability and mathematical statistics. \newblock New York, Chichester: Wiley. \newblock ISBN 0~471~40300. \newblock Pages 19--33. \bibitem[\protect\citename{Howells, }1951]{howells-51} Howells, W.~W. 1951. \newblock Factors of Human Physique. \newblock {\em American Journal of Physical Anthropology}, {\bf 9}, 159--192. \bibitem[\protect\citename{Howells, }1966a]{howells-66-pop} Howells, W.~W. 1966a. \newblock Population Distances: Biological, Linguistic, Geographical and Environmental. \newblock {\em Current Anthropology}, {\bf 7}, 531--540. \bibitem[\protect\citename{Howells, }1966b]{howells-66-var} Howells, W.~W. 1966b. \newblock Variability in Family Lines vs. Population Variability. \newblock {\em Annals of the {New York Academy of Sciences}}, {\bf 134}, 624--631. \bibitem[\protect\citename{Jackson, }1979]{jackson-79} Jackson, Richard. 1979. \newblock Running down the up-escalator: Regional inequality in {Papua New Guinea}. \newblock {\em Australian Geographer}, {\bf 14}(May), 175--84. \bibitem[\protect\citename{Johnson, }1974]{johnson-74} Johnson, G.~B. 1974. \newblock Enzyme Polymorphism. \newblock {\em Science}, {\bf 184}, 28--37. \bibitem[\protect\citename{Johnson \& Howells, }1974]{johnson-howells} Johnson, G.~B., \& Howells, W.~W. 1974. \newblock Title title title title title title title title title title. \newblock {\em Journal journal journal}. \bibitem[\protect\citename{Johnson {\em et~al.}, }1976]{johnson-etc} Johnson, G.~B., Howells, W.~W., \& Other, A.~N. 1976. \newblock Title title title title title title title title title title. \newblock {\em Journal journal journal}. \bibitem[\protect\citename{Jones, }1965]{jones-65} Jones, Firstname. 1965. \newblock Title title title title title title title title title title. \newblock {\em Journal journal journal}. \bibitem[\protect\citename{Jones, }1969]{jones-69} Jones, Firstname. 1969. \newblock Title title title title title title title title title title. \newblock {\em Journal journal journal}. \bibitem[\protect\citename{Jones \& Abrams, }1968]{jones-abrams} Jones, Firstname, \& Abrams, Firstname. 1968. \newblock Title title title title title title title title title title. \newblock {\em Journal journal journal}. \bibitem[\protect\citename{Jones \& Smith, }1965]{jones-smith} Jones, Firstname, \& Smith, Firstname. 1965. \newblock Title title title title title title title title title title. \newblock {\em Journal journal journal}. \bibitem[\protect\citename{Jones {\em et~al.}, }1962a]{jones-n-h-r} Jones, Firstname, Norman, Firstname, Hazel, Firstname, \& Robinson, Firstname. 1962a. \newblock Title title title title title title title title title title. \newblock {\em Journal journal journal}. \bibitem[\protect\citename{Jones {\em et~al.}, }1962b]{jones-s-r} Jones, Firstname, Smith, Firstname, \& Robinson, Firstname. 1962b. \newblock Title title title title title title title title title title. \newblock {\em Journal journal journal}. \bibitem[\protect\citename{Jones {\em et~al.}, }1966]{jones-a-s} Jones, Firstname, Abrams, Firstname, \& Smith, Firstname. 1966. \newblock Title title title title title title title title title title. \newblock {\em Journal journal journal}. \bibitem[\protect\citename{Kelley, }1896a]{kelley-96-spring} Kelley, Firstname. 1896a. \newblock Title title title title title title title title title title. \newblock {\em Journal journal journal}. \bibitem[\protect\citename{Kelley, }1896b]{kelley-96-autumn} Kelley, Firstname. 1896b. \newblock Title title title title title title title title title title. \newblock {\em Journal journal journal}. \bibitem[\protect\citename{Kelley, }1907]{kelley-07} Kelley, Firstname. 1907. \newblock Title title title title title title title title title title. \newblock {\em Journal journal journal}. \bibitem[\protect\citename{Kendeigh, }1952]{kendeigh-52} Kendeigh, S.~C. 1952. \newblock {\em Parental care and its evolution in birds}. \newblock Illinois Biological Monographs, vol. 22, nos. 1--3. \newblock Champaign: Univ. of Illinois Press. \bibitem[\protect\citename{Kingston, }1976]{kingston-76} Kingston, Firstname. 1976. \newblock Title title title title title title title title title title. \newblock {\em Journal journal journal}. \bibitem[\protect\citename{Light, }1972]{light-72} Light, Firstname. 1972. \newblock Title title title title title title title title title title. \newblock {\em Journal journal journal}. \bibitem[\protect\citename{Light \& Wong, }1975]{light-wong} Light, Firstname, \& Wong, Firstname. 1975. \newblock Title title title title title title title title title title. \newblock {\em Journal journal journal}. \bibitem[\protect\citename{Maguire, }1976]{maguire-76} Maguire, J. 1976. \newblock {\em A taxonomic and ecological study of the living and fossil {Hystricidae} with particular reference to southern {Africa}}. \newblock Ph.D. diss., Department of Geology, University of the Witwatersrand, Johannesburg. \bibitem[\protect\citename{Mann, }1968]{mann-68} Mann, A.~E. 1968. \newblock {\em The palaeodemography of {Australopithecus}}. \newblock Ph.D. diss., University of California, Berkeley. \bibitem[\protect\citename{McColvin, }n.d.]{mccolvin-nodate} McColvin, L.~R. \newblock {\em Libraries in {Britain}}. \newblock London: {Longmans Green, for the British Council}. \bibitem[\protect\citename{McNeill, }1963]{mcneill-63} McNeill, William~H. 1963. \newblock The Era of {Middle Eastern} Dominance to 500 {\sc b.c.} \newblock {\em Part 1 of:} {\em The Rise of the {West}}. \newblock Chicago: {University of Chicago Press}. \bibitem[\protect\citename{Milton, }1924]{milton-24} Milton, John. 1924. \newblock Paradise Lost. \newblock {\em In:} Moody, William~Vaughn (ed), {\em The Complete Poetical Works of {John Milton}}, {Student's Cambridge} edn. \newblock Boston: Houghton Mifflin. \bibitem[\protect\citename{Ogilvy, }1965]{ogilvy-65} Ogilvy, David. 1965. \newblock The Creative Chef. \newblock {\em Pages 199--213 of:} Steiner, Gary~A. (ed), {\em The Creative Organization}. \newblock Chicago: University of Chicago Press. \bibitem[\protect\citename{Pratt, }1975]{pratt-75} Pratt, Firstname. 1975. \newblock {\em Title title title title title title title title title title}. \newblock Publisher publisher publisher. \bibitem[\protect\citename{Prufer, }1964]{prufer-64} Prufer, Olaf. 1964. \newblock The {Hopewell} Cult. \newblock {\em Scientific {American}}, Dec., 90--102. \bibitem[\protect\citename{[pseud.] Hunt, }1976]{hunt-76} [pseud.] Hunt, Horace. 1976. \newblock {\em Interview}. \newblock Tape recording, Pennsylvania Historical and Museum Commission, Harrisburg. \newblock Interview by {Ronald Schatz, 16 May 1976}. \bibitem[\protect\citename{Pym, }1624]{pym-24} Pym, J. 1624. \newblock {\em Diary}. \newblock Northampton, Northamptonshire Record Office, Finch-Hatton 50. \bibitem[\protect\citename{Ramsbottom, }1931]{ramsbottom-31} Ramsbottom, John. 1931. \newblock Fungi Pathogenic to Man. \newblock {\em Pages 11--70 of:} {\em A System of Bacteriology in relation to Medicine}, vol. 8. \newblock London: HMSO, for Medical Research Council. \bibitem[\protect\citename{Ranganthan, }1951]{ranganathan-51} Ranganthan, S.~R. 1951. \newblock Colon classification and its approach to documentation. \newblock {\em Pages 94--105 of:} Shera, Jesse~H., \& Egan, Margaret~E. (eds), {\em Bibliographic Organization}. \bibitem[\protect\citename{Singer {\em et~al.}, }1954--58a]{singer-whole} Singer, Charles~Joseph, Holmyard, E.~J., \& Hall, A.~R. (eds). 1954--58a. \newblock {\em A history of technology}. \newblock London: Oxford University Press. \newblock 5 vol. \bibitem[\protect\citename{Singer {\em et~al.}, }1954--58b]{singer-portion-chapter} Singer, Charles~Joseph, Holmyard, E.~J., \& Hall, A.~R. (eds). 1954--58b. \newblock The late nineteenth century. \newblock {\em Vol. 5 of:} Singer, Charles~Joseph, Holmyard, E.~J., \& Hall, A.~R. (eds), {\em A history of technology}. \newblock London: Oxford University Press. \bibitem[\protect\citename{Singer {\em et~al.}, }1954--58c]{singer-portion-volume} Singer, Charles~Joseph, Holmyard, E.~J., \& Hall, A.~R. (eds). 1954--58c. \newblock The late nineteenth century. \newblock {\em In:} Singer, Charles~Joseph, Holmyard, E.~J., \& Hall, A.~R. (eds), {\em A history of technology}, vol. 5. \newblock London: Oxford University Press. \bibitem[\protect\citename{Smart, }1976]{smart-76} Smart, Ninian. 1976. \newblock {\em The religious experience of mankind}. 2nd edn. \newblock New York: Schribner. \bibitem[\protect\citename{Thomson, }1971]{thomson-71} Thomson, Virgil. 1971. \newblock Cage and the Collage of Noises. \newblock {\em Chap. 8 of:} {\em American Music since 1910}. \newblock New York: Holt, Rinehart and Winston. \bibitem[\protect\citename{Traquair, }1638]{traquair-38} Traquair, {Earl of}. 1638. \newblock {\em Letter to {Marquess of Hamilton, 28 Aug.}} \newblock Lennoxlove (E.~Lothian), Muniments of Duke of Hamilton and Brandon, C.1, no. 963. \bibitem[\protect\citename{{Winget Ltd.}, }1967]{winget-67} {Winget Ltd.} 1967 (8~Mar.). \newblock {\em Detachable Bulldozer Attachment for Dumper Vehicles}. \newblock GB Patent Specification 1060631. \bibitem[\protect\citename{Wood, }1961]{wood-61} Wood, R.~H. 1961. \newblock {\em Plastic and Elastic Design of Slabs and Plates}. \newblock London: Thames \& Hudson. \bibitem[\protect\citename{Wright, }1963]{wright-63} Wright, R.~C. 1963. \newblock {\em Report Literature}. \newblock Pages 46--59. \bibitem[\protect\citename{Wright, }1978a]{wright-78-book} Wright, Sewall. 1978a. \newblock {\em Evolution and the genetics of populations}. \newblock Vol. 4. \newblock Chicago: Univ. of Chicago Press. \bibitem[\protect\citename{Wright, }1978b]{wright-78-incollection} Wright, Sewall. 1978b. \newblock Variability within and among natural populations. \newblock {\em Vol. 4 of:} {\em Evolution and the genetics of populations}. \newblock Chicago: Univ. of Chicago Press. \end{thebibliography} \end{document} latex2rtf-2.3.18/test/logo.rtf0000644000175000017500000001275013664476467016404 0ustar wilfriedwilfried{\rtf1\ansi\uc1\deff0\deflang1024 {\fonttbl{\f0\fnil\fcharset0 Times New Roman;} {\f1\fnil\fcharset0 Arial;} {\f2\fnil\fcharset0 Arial;} {\f3\fnil\fcharset0 Courier New;} {\f4\fnil\fcharset0 Zapf Chancery;} {\f5\fnil\fcharset0 STIXGeneral;} {\f6\fnil\fcharset0 MS Gothic;} } {\colortbl; \red0\green0\blue0; \red0\green0\blue255; \red0\green255\blue255; \red0\green255\blue0; \red255\green0\blue255; \red255\green0\blue0; \red255\green255\blue0; \red255\green255\blue255; } {\stylesheet {\s0\qj\widctlpar\f0\fs20 \snext0 Normal;} {\cs10 \additive\ssemihidden Default Paragraph Font;} {\s1\qc\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 Part;} {\s2\ql\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 heading 1;} {\s3\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 2;} {\s4\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 3;} {\s5\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 4;} {\s6\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 5;} {\s7\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 6;} {\s8\qr\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext8 rightpar;} {\s9\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext9 centerpar;} {\s10\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext10 leftpar;} {\s11\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equation;} {\s12\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationNum;} {\s13\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlign;} {\s14\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlignNum;} {\s15\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArray;} {\s16\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArrayNum;} {\s17\ql\sb120\sa120\keep\widctlpar\f0\fs20 \sbasedon0\snext0 theorem;} {\s18\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 bitmapCenter;} {\s20\qc\sb240\sa240\b\f0\fs36 \sbasedon0\snext21 Title;} {\s21\qc\sa120\f0\fs20 \sbasedon0\snext0 author;} {\s22\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext22 footer;} {\s23\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext23 header;} {\s30\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 caption;} {\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext0 Figure;} {\s32\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext32 Table;} {\s33\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext33 Tabular;} {\s34\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext34 Tabbing;} {\s35\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext35 Quote;} {\s38\ql\widctlpar\f3\fs20 \snext38 verbatim;} {\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext46 List;} {\s47\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext47 List 1;} {\s50\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 latex picture;} {\s51\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 subfigure;} {\s61\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext62 bibheading;} {\s62\ql\fi-567\li567\sb0\sa0\f0\fs20 \sbasedon0\snext62 bibitem;} {\s64\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext64 endnotes;} {\s65\ql\fi-113\li397\lin397\f0\fs20 \sbasedon0\snext65 footnote text;} {\s66\qj\fi-170\li454\lin454\f0\fs20 \sbasedon0\snext66 endnote text;} {\cs62\super \additive\sbasedon10 footnote reference;} {\cs63\super \additive\sbasedon10 endnote reference;} {\s67\ql\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext67 acronym;} {\s70\qc\sa120\b\f0\fs20 \sbasedon0\snext71 abstract title;} {\s71\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext0 abstract;} {\s80\ql\sb240\sa120\keepn\f0\b\fs20 \sbasedon0\snext0 contents_heading;} {\s81\ql\li425\tqr\tldot\tx8222\sb240\sa60\keepn\f0\fs20\b \sbasedon0\snext82 toc 1;} {\s82\ql\li512\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext83 toc 2;} {\s83\ql\li1024\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext84 toc 3;} {\s84\ql\li1536\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext85 toc 4;} {\s85\ql\li2048\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 5;} {\s86\ql\li2560\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 6;} } {\info {\title Original file was logo.tex} {\doccomm Created using latex2rtf 2.3.18 r1266 (released May 29, 2020) on Sat May 30 17:35:19 2020 } } {\footer\pard\plain\f0\fs20\qc\chpgn\par} \paperw12280\paperh15900\margl2680\margr2700\margt2540\margb1760\pgnstart0\widowctrl\qj\ftnbj\f0\aftnnar {\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi0 the sum is \'80{}10 or \'8010 or \'8010.00. \i0\scaps0\b0\f0 \par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 1 This is the first section\par \i0\scaps0\b0\f2 \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 \f2 This is in a sans serif font {\plain L{\up5\fs16 A}T{\dn6 E}X}.\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 \f2 1.1 The next big thing\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 \f2 Will this be in roman? And what does {\plain L{\up5\fs16 A}T{\dn6 E}X2{\dn6\u1013e}} look like?\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 \f2 1.2 The next big thing in bibliographies\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 \f2 Will this be in roman? And what does {\plain {\scaps Bib}T{\dn6 E}X} look like?\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 \f2 1.3 The next big thing in slides\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 \f2 Will this be in roman? And what does {\plain {\scaps Sli}T{\dn6 E}X} look like?\par }} }}}latex2rtf-2.3.18/test/logo.tex0000777000175000017500000000103613050672360016366 0ustar wilfriedwilfried\documentclass{article} \usepackage{eurosym} \usepackage{textcomp} \begin{document} the sum is \texteuro{}10 or \euro{10} or \EUR{10.00}. \rm \section{This is the first section} \sf This is in a sans serif font \LaTeX. \subsection{The next big thing} Will this be in roman? And what does \LaTeXe\ look like? \subsection{The next big thing in bibliographies} Will this be in roman? And what does \BibTeX\ look like? \subsection{The next big thing in slides} Will this be in roman? And what does \SLiTeX\ look like? \end{document} latex2rtf-2.3.18/test/hyperref.rtf0000644000175000017500000001517413664476470017265 0ustar wilfriedwilfried{\rtf1\ansi\uc1\deff0\deflang1024 {\fonttbl{\f0\fnil\fcharset0 Times New Roman;} {\f1\fnil\fcharset0 Arial;} {\f2\fnil\fcharset0 Arial;} {\f3\fnil\fcharset0 Courier New;} {\f4\fnil\fcharset0 Zapf Chancery;} {\f5\fnil\fcharset0 STIXGeneral;} {\f6\fnil\fcharset0 MS Gothic;} } {\colortbl; \red0\green0\blue0; \red0\green0\blue255; \red0\green255\blue255; \red0\green255\blue0; \red255\green0\blue255; \red255\green0\blue0; \red255\green255\blue0; \red255\green255\blue255; } {\stylesheet {\s0\qj\widctlpar\f0\fs20 \snext0 Normal;} {\cs10 \additive\ssemihidden Default Paragraph Font;} {\s1\qc\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 Part;} {\s2\ql\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 heading 1;} {\s3\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 2;} {\s4\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 3;} {\s5\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 4;} {\s6\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 5;} {\s7\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 6;} {\s8\qr\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext8 rightpar;} {\s9\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext9 centerpar;} {\s10\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext10 leftpar;} {\s11\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equation;} {\s12\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationNum;} {\s13\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlign;} {\s14\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlignNum;} {\s15\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArray;} {\s16\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArrayNum;} {\s17\ql\sb120\sa120\keep\widctlpar\f0\fs20 \sbasedon0\snext0 theorem;} {\s18\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 bitmapCenter;} {\s20\qc\sb240\sa240\b\f0\fs36 \sbasedon0\snext21 Title;} {\s21\qc\sa120\f0\fs20 \sbasedon0\snext0 author;} {\s22\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext22 footer;} {\s23\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext23 header;} {\s30\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 caption;} {\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext0 Figure;} {\s32\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext32 Table;} {\s33\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext33 Tabular;} {\s34\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext34 Tabbing;} {\s35\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext35 Quote;} {\s38\ql\widctlpar\f3\fs20 \snext38 verbatim;} {\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext46 List;} {\s47\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext47 List 1;} {\s50\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 latex picture;} {\s51\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 subfigure;} {\s61\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext62 bibheading;} {\s62\ql\fi-567\li567\sb0\sa0\f0\fs20 \sbasedon0\snext62 bibitem;} {\s64\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext64 endnotes;} {\s65\ql\fi-113\li397\lin397\f0\fs20 \sbasedon0\snext65 footnote text;} {\s66\qj\fi-170\li454\lin454\f0\fs20 \sbasedon0\snext66 endnote text;} {\cs62\super \additive\sbasedon10 footnote reference;} {\cs63\super \additive\sbasedon10 endnote reference;} {\s67\ql\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext67 acronym;} {\s70\qc\sa120\b\f0\fs20 \sbasedon0\snext71 abstract title;} {\s71\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext0 abstract;} {\s80\ql\sb240\sa120\keepn\f0\b\fs20 \sbasedon0\snext0 contents_heading;} {\s81\ql\li425\tqr\tldot\tx8222\sb240\sa60\keepn\f0\fs20\b \sbasedon0\snext82 toc 1;} {\s82\ql\li512\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext83 toc 2;} {\s83\ql\li1024\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext84 toc 3;} {\s84\ql\li1536\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext85 toc 4;} {\s85\ql\li2048\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 5;} {\s86\ql\li2560\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 6;} } {\info {\title Original file was hyperref.tex} {\doccomm Created using latex2rtf 2.3.18 r1266 (released May 29, 2020) on Sat May 30 17:35:20 2020 } } {\footer\pard\plain\f0\fs20\qc\chpgn\par} \paperw12280\paperh15900\margl2680\margr2700\margt2540\margb1760\pgnstart0\widowctrl\qj\ftnbj\f0\aftnnar {\pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 1 The first section\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 hello a {\f3 \field{\*\fldinst{ HYPERLINK "http://www-fourier.ujf-grenoble.fr:80/cgi-bin/zbfr/ZB/math-fr.html?AU=Taylor,+R&format=complete&type=html&maxdocs=10" }{{}}}{\fldrslt{weird}}} reference\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 a second reference {\f3 \field{\*\fldinst{ HYPERLINK "http://www.tug.org/" }{{}}}{\fldrslt{tug}}} to the {\plain T{\dn6 E}X}{} website \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 which when applied as follows:\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 {\*\bkmkstart BMrandomlabel}2{\*\bkmkend BMrandomlabel} Random Stuff\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 This is very dependent on \lquote Random Stuff\rquote (see p.{\field{\*\fldinst{\lang1024 PAGEREF BMrandomlabel \\* MERGEFORMAT }}{\fldrslt{randomlabel}}}).\par \pard\plain\s4\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb120 \fi0 2.1 url\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 We can use the {\b0\i0\scaps0\f3 \\url} command to do this as well like so: {\f3 \field{\*\fldinst{ HYPERLINK "http://www.tug.org" }{{}}}{\fldrslt{http://www.tug.org}}}. \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 The {\b0\i0\scaps0\f3 \\nolinkurl\{\}} is similar but non-functional: {\f3 http://www.tug.org}. \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Now this link {\f3 http://latex2rtf.sourceforge.net/some%20link.html} does not really exist, but it should show up in the RTF document without a hyperlink. It should still have a link in the PDF file created using {\f3 pdflatex}.\par \pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 3 About paragraph breaks\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 There should be a paragraph break between these two urls.\par {\f3 \field{\*\fldinst{ HYPERLINK "\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 \f3 http://www.tug.org/one" }{{}}}{\fldrslt{http://www.tug.org/one}}}. \par {\f3 \field{\*\fldinst{ HYPERLINK "\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 \f3 http://www.tug.org/two" }{{}}}{\fldrslt{http://www.tug.org/two}}}. \par }} }}}latex2rtf-2.3.18/test/enc_cp1252.tex0000777000175000017500000001201113050672360017162 0ustar wilfriedwilfried\documentclass[10pt]{article} \usepackage[T1]{fontenc} \usepackage[cp1252]{inputenc} \usepackage{times} \usepackage{textcomp} \begin{document} \begin{tabular}{ccrl} 80& &65535&unknown\\ 81& &65535&unknown\\ 82&‚&8218&SINGLE LOW-9 QUOTATION MARK\\ 83&ƒ&402&LATIN SMALL LETTER F WITH HOOK\\ 84&„&8222&DOUBLE LOW-9 QUOTATION MARK\\ 85&$…$&8230&HORIZONTAL ELLIPSIS\\ 86&†&8224&DAGGER\\ 87&‡&8225&DOUBLE DAGGER\\ 88&ˆ&710&MODIFIER LETTER CIRCUMFLEX ACCENT\\ 89&‰&8240&PER MILLE SIGN\\ 8A&Š&352&LATIN CAPITAL LETTER S WITH CARON\\ 8B&‹&8249&SINGLE LEFT-POINTING ANGLE QUOTATION MARK\\ 8C&Œ&338&LATIN CAPITAL LIGATURE OE\\ 8D& &65535&unknown\\ 8E& &65535&unknown\\ 8F& &65535&unknown\\ 90& &65535&unknown\\ 91&‘&8216&LEFT SINGLE QUOTATION MARK\\ 92&’&8217&RIGHT SINGLE QUOTATION MARK\\ 93&“&8220&LEFT DOUBLE QUOTATION MARK\\ 94&”&8221&RIGHT DOUBLE QUOTATION MARK\\ 95&•&8226&BULLET\\ 96&–&8211&EN DASH\\ 97&—&8212&EM DASH\\ 98&˜&732&SMALL TILDE\\ 99&™&8482&TRADE MARK SIGN\\ 9A&š&353&LATIN SMALL LETTER S WITH CARON\\ 9B&›&8250&SINGLE RIGHT-POINTING ANGLE QUOTATION MARK\\ 9C&œ&339&LATIN SMALL LIGATURE OE\\ 9D& &65535&unknown\\ 9E& &65535&unknown\\ 9F&Ÿ&376&LATIN CAPITAL LETTER Y WITH DIAERESIS\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} A0& &160&NO-BREAK SPACE\\ A1&Ą&161&INVERTED EXCLAMATION MARK\\ A2&˘&162&CENT SIGN\\ A3&Ł&163&POUND SIGN\\ A4&¤&164&CURRENCY SIGN\\ A5&Ľ&165&YEN SIGN\\ A6&Ś&166&BROKEN BAR\\ A7&§&167&SECTION SIGN\\ A8&¨&168&DIAERESIS\\ A9&$Š$&169©RIGHT SIGN\\ AA&Ş&170&FEMININE ORDINAL INDICATOR\\ AB&Ť&171&LEFT-POINTING DOUBLE ANGLE QUOTATION MARK\\ AC&$Ź$&172&NOT SIGN\\ AD&­&173&SOFT HYPHEN\\ AE&Ž&174®ISTERED SIGN\\ AF&Ż&175&MACRON\\ B0&°&176&DEGREE SIGN\\ B1&$ą$&177&PLUS-MINUS SIGN\\ B2&$˛$&178&SUPERSCRIPT TWO\\ B3&$ł$&179&SUPERSCRIPT THREE\\ B4&´&180&ACUTE ACCENT\\ B5&$ľ$&181&MICRO SIGN\\ B6&ś&182&PILCROW SIGN\\ B7&ˇ&183&MIDDLE DOT\\ B8&¸&184&CEDILLA\\ B9&$š$&185&SUPERSCRIPT ONE\\ BA&ş&186&MASCULINE ORDINAL INDICATOR\\ BB&ť&187&RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK\\ BC&ź&188&VULGAR FRACTION ONE QUARTER\\ BD&˝&189&VULGAR FRACTION ONE HALF\\ BE&ž&190&VULGAR FRACTION THREE QUARTERS\\ BF&ż&191&INVERTED QUESTION MARK\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} C0&Ŕ&192&LATIN CAPITAL LETTER A WITH GRAVE\\ C1&Á&193&LATIN CAPITAL LETTER A WITH ACUTE\\ C2&Â&194&LATIN CAPITAL LETTER A WITH CIRCUMFLEX\\ C3&Ă&195&LATIN CAPITAL LETTER A WITH TILDE\\ C4&Ä&196&LATIN CAPITAL LETTER A WITH DIAERESIS\\ C5&Ĺ&197&LATIN CAPITAL LETTER A WITH RING ABOVE\\ C6&Ć&198&LATIN CAPITAL LETTER AE\\ C7&Ç&199&LATIN CAPITAL LETTER C WITH CEDILLA\\ C8&Č&200&LATIN CAPITAL LETTER E WITH GRAVE\\ C9&É&201&LATIN CAPITAL LETTER E WITH ACUTE\\ CA&Ę&202&LATIN CAPITAL LETTER E WITH CIRCUMFLEX\\ CB&Ë&203&LATIN CAPITAL LETTER E WITH DIAERESIS\\ CC&Ě&204&LATIN CAPITAL LETTER I WITH GRAVE\\ CD&Í&205&LATIN CAPITAL LETTER I WITH ACUTE\\ CE&Î&206&LATIN CAPITAL LETTER I WITH CIRCUMFLEX\\ CF&Ď&207&LATIN CAPITAL LETTER I WITH DIAERESIS\\ D0&Đ&208&LATIN CAPITAL LETTER ETH\\ D1&Ń&209&LATIN CAPITAL LETTER N WITH TILDE\\ D2&Ň&210&LATIN CAPITAL LETTER O WITH GRAVE\\ D3&Ó&211&LATIN CAPITAL LETTER O WITH ACUTE\\ D4&Ô&212&LATIN CAPITAL LETTER O WITH CIRCUMFLEX\\ D5&Ő&213&LATIN CAPITAL LETTER O WITH TILDE\\ D6&Ö&214&LATIN CAPITAL LETTER O WITH DIAERESIS\\ D7&$×$&215&MULTIPLICATION SIGN\\ D8&Ř&216&LATIN CAPITAL LETTER O WITH STROKE\\ D9&Ů&217&LATIN CAPITAL LETTER U WITH GRAVE\\ DA&Ú&218&LATIN CAPITAL LETTER U WITH ACUTE\\ DB&Ű&219&LATIN CAPITAL LETTER U WITH CIRCUMFLEX\\ DC&Ü&220&LATIN CAPITAL LETTER U WITH DIAERESIS\\ DD&Ý&221&LATIN CAPITAL LETTER Y WITH ACUTE\\ DE&Ţ&222&LATIN CAPITAL LETTER THORN\\ DF&ß&223&LATIN SMALL LETTER SHARP S\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} E0&ŕ&224&LATIN SMALL LETTER A WITH GRAVE\\ E1&á&225&LATIN SMALL LETTER A WITH ACUTE\\ E2&â&226&LATIN SMALL LETTER A WITH CIRCUMFLEX\\ E3&ă&227&LATIN SMALL LETTER A WITH TILDE\\ E4&ä&228&LATIN SMALL LETTER A WITH DIAERESIS\\ E5&ĺ&229&LATIN SMALL LETTER A WITH RING ABOVE\\ E6&ć&230&LATIN SMALL LETTER AE\\ E7&ç&231&LATIN SMALL LETTER C WITH CEDILLA\\ E8&č&232&LATIN SMALL LETTER E WITH GRAVE\\ E9&é&233&LATIN SMALL LETTER E WITH ACUTE\\ EA&ę&234&LATIN SMALL LETTER E WITH CIRCUMFLEX\\ EB&ë&235&LATIN SMALL LETTER E WITH DIAERESIS\\ EC&ě&236&LATIN SMALL LETTER I WITH GRAVE\\ ED&í&237&LATIN SMALL LETTER I WITH ACUTE\\ EE&î&238&LATIN SMALL LETTER I WITH CIRCUMFLEX\\ EF&ď&239&LATIN SMALL LETTER I WITH DIAERESIS\\ F0&đ&240&LATIN SMALL LETTER ETH\\ F1&ń&241&LATIN SMALL LETTER N WITH TILDE\\ F2&ň&242&LATIN SMALL LETTER O WITH GRAVE\\ F3&ó&243&LATIN SMALL LETTER O WITH ACUTE\\ F4&ô&244&LATIN SMALL LETTER O WITH CIRCUMFLEX\\ F5&ő&245&LATIN SMALL LETTER O WITH TILDE\\ F6&ö&246&LATIN SMALL LETTER O WITH DIAERESIS\\ F7&$÷$&247&DIVISION SIGN\\ F8&ř&248&LATIN SMALL LETTER O WITH STROKE\\ F9&ů&249&LATIN SMALL LETTER U WITH GRAVE\\ FA&ú&250&LATIN SMALL LETTER U WITH ACUTE\\ FB&ű&251&LATIN SMALL LETTER U WITH CIRCUMFLEX\\ FC&ü&252&LATIN SMALL LETTER U WITH DIAERESIS\\ FD&ý&253&LATIN SMALL LETTER Y WITH ACUTE\\ FE&ţ&254&LATIN SMALL LETTER THORN\\ FF&˙&255&LATIN SMALL LETTER Y WITH DIAERESIS\\ \end{tabular} \end{document} latex2rtf-2.3.18/test/enc_koi8-r.tex0000777000175000017500000001510213050672360017363 0ustar wilfriedwilfried\documentclass[10pt]{article} \usepackage[russian]{babel} \usepackage[koi8-r]{inputenc} \begin{document} \begin{center} \begin{tabular}{ccrl} 80&&2500&BOX DRAWINGS LIGHT HORIZONTAL\\ 81&&2502&BOX DRAWINGS LIGHT VERTICAL\\ 82&&250C&BOX DRAWINGS LIGHT DOWN AND RIGHT\\ 83&&2510&BOX DRAWINGS LIGHT DOWN AND LEFT\\ 84&&2514&BOX DRAWINGS LIGHT UP AND RIGHT\\ 85&&2518&BOX DRAWINGS LIGHT UP AND LEFT\\ 86&&251C&BOX DRAWINGS LIGHT VERTICAL AND RIGHT\\ 87&&2524&BOX DRAWINGS LIGHT VERTICAL AND LEFT\\ 88&&252C&BOX DRAWINGS LIGHT DOWN AND HORIZONTAL\\ 89&&2534&BOX DRAWINGS LIGHT UP AND HORIZONTAL\\ 8A&&253C&BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL\\ 8B&&2580&UPPER HALF BLOCK\\ 8C&&2584&LOWER HALF BLOCK\\ 8D&&2588&FULL BLOCK\\ 8E&&258C&LEFT HALF BLOCK\\ 8F&&2590&RIGHT HALF BLOCK\\ 90&&2591&LIGHT SHADE\\ 91&&2592&MEDIUM SHADE\\ 92&&2593&DARK SHADE\\ 93&&2320&TOP HALF INTEGRAL\\ 94&”&25A0&BLACK SQUARE\\ 95&•&2022&BULLET\\ 96&$–$&221A&SQUARE ROOT\\ 97&$—$&2248&ALMOST EQUAL TO\\ 98&$˜$&2264&LESS-THAN OR EQUAL TO\\ 99&$™$&2265&GREATER-THAN OR EQUAL TO\\ 9A&š&A0&NO-BREAK SPACE\\ 9B&&2321&BOTTOM HALF INTEGRAL\\ 9C&œ&B0&DEGREE SIGN\\ 9D&$$&B2&SUPERSCRIPT TWO\\ 9E&ž&B7&MIDDLE DOT\\ 9F&$Ÿ$&F7&DIVISION SIGN\\ \end{tabular} \pagebreak \begin{tabular}{cccl} A0&&2550&BOX DRAWINGS DOUBLE HORIZONTAL\\ A1&&2551&BOX DRAWINGS DOUBLE VERTICAL\\ A2&&2552&BOX DRAWINGS DOWN SINGLE AND RIGHT DOUBLE\\ A3&Ł&451&CYRILLIC SMALL LETTER IO\\ A4&&2553&BOX DRAWINGS DOWN DOUBLE AND RIGHT SINGLE\\ A5&&2554&BOX DRAWINGS DOUBLE DOWN AND RIGHT\\ A6&&2555&BOX DRAWINGS DOWN SINGLE AND LEFT DOUBLE\\ A7&&2556&BOX DRAWINGS DOWN DOUBLE AND LEFT SINGLE\\ A8&&2557&BOX DRAWINGS DOUBLE DOWN AND LEFT\\ A9&&2558&BOX DRAWINGS UP SINGLE AND RIGHT DOUBLE\\ AA&&2559&BOX DRAWINGS UP DOUBLE AND RIGHT SINGLE\\ AB&&255A&BOX DRAWINGS DOUBLE UP AND RIGHT\\ AC&&255B&BOX DRAWINGS UP SINGLE AND LEFT DOUBLE\\ AD&&255C&BOX DRAWINGS UP DOUBLE AND LEFT SINGLE\\ AE&&255D&BOX DRAWINGS DOUBLE UP AND LEFT\\ AF&&255E&BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE\\ B0&&255F&BOX DRAWINGS VERTICAL DOUBLE AND RIGHT SINGLE\\ B1&&2560&BOX DRAWINGS DOUBLE VERTICAL AND RIGHT\\ B2&&2561&BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE\\ B3&ł&401&CYRILLIC CAPITAL LETTER IO\\ B4&&2562&BOX DRAWINGS VERTICAL DOUBLE AND LEFT SINGLE\\ B5&&2563&BOX DRAWINGS DOUBLE VERTICAL AND LEFT\\ B6&&2564&BOX DRAWINGS DOWN SINGLE AND HORIZONTAL DOUBLE\\ B7&&2565&BOX DRAWINGS DOWN DOUBLE AND HORIZONTAL SINGLE\\ B8&&2566&BOX DRAWINGS DOUBLE DOWN AND HORIZONTAL\\ B9&&2567&BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE\\ BA&&2568&BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE\\ BB&&2569&BOX DRAWINGS DOUBLE UP AND HORIZONTAL\\ BC&&256A&BOX DRAWINGS VERTICAL SINGLE AND HORIZONTAL DOUBLE\\ BD&&256B&BOX DRAWINGS VERTICAL DOUBLE AND HORIZONTAL SINGLE\\ BE&&256C&BOX DRAWINGS DOUBLE VERTICAL AND HORIZONTAL\\ BF&ż&A9©RIGHT SIGN\\ \end{tabular} \pagebreak \begin{tabular}{cccl} C0&Ŕ&44E&CYRILLIC SMALL LETTER YU\\ C1&Á&430&CYRILLIC SMALL LETTER A\\ C2&Â&431&CYRILLIC SMALL LETTER BE\\ C3&Ă&446&CYRILLIC SMALL LETTER TSE\\ C4&Ä&434&CYRILLIC SMALL LETTER DE\\ C5&Ĺ&435&CYRILLIC SMALL LETTER IE\\ C6&Ć&444&CYRILLIC SMALL LETTER EF\\ C7&Ç&433&CYRILLIC SMALL LETTER GHE\\ C8&Č&445&CYRILLIC SMALL LETTER HA\\ C9&É&438&CYRILLIC SMALL LETTER I\\ CA&Ę&439&CYRILLIC SMALL LETTER SHORT I\\ CB&Ë&43A&CYRILLIC SMALL LETTER KA\\ CC&Ě&43B&CYRILLIC SMALL LETTER EL\\ CD&Í&43C&CYRILLIC SMALL LETTER EM\\ CE&Î&43D&CYRILLIC SMALL LETTER EN\\ CF&Ď&43E&CYRILLIC SMALL LETTER O\\ D0&Đ&43F&CYRILLIC SMALL LETTER PE\\ D1&Ń&44F&CYRILLIC SMALL LETTER YA\\ D2&Ň&440&CYRILLIC SMALL LETTER ER\\ D3&Ó&441&CYRILLIC SMALL LETTER ES\\ D4&Ô&442&CYRILLIC SMALL LETTER TE\\ D5&Ő&443&CYRILLIC SMALL LETTER U\\ D6&Ö&436&CYRILLIC SMALL LETTER ZHE\\ D7&×&432&CYRILLIC SMALL LETTER VE\\ D8&Ř&44C&CYRILLIC SMALL LETTER SOFT SIGN\\ D9&Ů&44B&CYRILLIC SMALL LETTER YERU\\ DA&Ú&437&CYRILLIC SMALL LETTER ZE\\ DB&Ű&448&CYRILLIC SMALL LETTER SHA\\ DC&Ü&44D&CYRILLIC SMALL LETTER E\\ DD&Ý&449&CYRILLIC SMALL LETTER SHCHA\\ DE&Ţ&447&CYRILLIC SMALL LETTER CHE\\ DF&ß&44A&CYRILLIC SMALL LETTER HARD SIGN\\ \end{tabular} \pagebreak \begin{tabular}{cccl} E0&ŕ&42E&CYRILLIC CAPITAL LETTER YU\\ E1&á&410&CYRILLIC CAPITAL LETTER A\\ E2&â&411&CYRILLIC CAPITAL LETTER BE\\ E3&ă&426&CYRILLIC CAPITAL LETTER TSE\\ E4&ä&414&CYRILLIC CAPITAL LETTER DE\\ E5&ĺ&415&CYRILLIC CAPITAL LETTER IE\\ E6&ć&424&CYRILLIC CAPITAL LETTER EF\\ E7&ç&413&CYRILLIC CAPITAL LETTER GHE\\ E8&č&425&CYRILLIC CAPITAL LETTER HA\\ E9&é&418&CYRILLIC CAPITAL LETTER I\\ EA&ę&419&CYRILLIC CAPITAL LETTER SHORT I\\ EB&ë&41A&CYRILLIC CAPITAL LETTER KA\\ EC&ě&41B&CYRILLIC CAPITAL LETTER EL\\ ED&í&41C&CYRILLIC CAPITAL LETTER EM\\ EE&î&41D&CYRILLIC CAPITAL LETTER EN\\ EF&ď&41E&CYRILLIC CAPITAL LETTER O\\ F0&đ&41F&CYRILLIC CAPITAL LETTER PE\\ F1&ń&42F&CYRILLIC CAPITAL LETTER YA\\ F2&ň&420&CYRILLIC CAPITAL LETTER ER\\ F3&ó&421&CYRILLIC CAPITAL LETTER ES\\ F4&ô&422&CYRILLIC CAPITAL LETTER TE\\ F5&ő&423&CYRILLIC CAPITAL LETTER U\\ F6&ö&416&CYRILLIC CAPITAL LETTER ZHE\\ F7&÷&412&CYRILLIC CAPITAL LETTER VE\\ F8&ř&42C&CYRILLIC CAPITAL LETTER SOFT SIGN\\ F9&ů&42B&CYRILLIC CAPITAL LETTER YERU\\ FA&ú&417&CYRILLIC CAPITAL LETTER ZE\\ FB&ű&428&CYRILLIC CAPITAL LETTER SHA\\ FC&ü&42D&CYRILLIC CAPITAL LETTER E\\ FD&ý&429&CYRILLIC CAPITAL LETTER SHCHA\\ FE&ţ&427&CYRILLIC CAPITAL LETTER CHE\\ FF&˙&42A&CYRILLIC CAPITAL LETTER HARD SIGN\\ \end{tabular} \pagebreak \begin{verbatim} E0 ŕ 42E CYRILLIC CAPITAL LETTER YU E1 á 410 CYRILLIC CAPITAL LETTER A E2 â 411 CYRILLIC CAPITAL LETTER BE E3 ă 426 CYRILLIC CAPITAL LETTER TSE E4 ä 414 CYRILLIC CAPITAL LETTER DE E5 ĺ 415 CYRILLIC CAPITAL LETTER IE E6 ć 424 CYRILLIC CAPITAL LETTER EF E7 ç 413 CYRILLIC CAPITAL LETTER GHE E8 č 425 CYRILLIC CAPITAL LETTER HA E9 é 418 CYRILLIC CAPITAL LETTER I EA ę 419 CYRILLIC CAPITAL LETTER SHORT I EB ë 41A CYRILLIC CAPITAL LETTER KA EC ě 41B CYRILLIC CAPITAL LETTER EL ED í 41C CYRILLIC CAPITAL LETTER EM EE î 41D CYRILLIC CAPITAL LETTER EN EF ď 41E CYRILLIC CAPITAL LETTER O F0 đ 41F CYRILLIC CAPITAL LETTER PE F1 ń 42F CYRILLIC CAPITAL LETTER YA F2 ň 420 CYRILLIC CAPITAL LETTER ER F3 ó 421 CYRILLIC CAPITAL LETTER ES F4 ô 422 CYRILLIC CAPITAL LETTER TE F5 ő 423 CYRILLIC CAPITAL LETTER U F6 ö 416 CYRILLIC CAPITAL LETTER ZHE F7 ÷ 412 CYRILLIC CAPITAL LETTER VE F8 ř 42C CYRILLIC CAPITAL LETTER SOFT SIGN F9 ů 42B CYRILLIC CAPITAL LETTER YERU FA ú 417 CYRILLIC CAPITAL LETTER ZE FB ű 428 CYRILLIC CAPITAL LETTER SHA FC ü 42D CYRILLIC CAPITAL LETTER E FD ý 429 CYRILLIC CAPITAL LETTER SHCHA FE ţ 427 CYRILLIC CAPITAL LETTER CHE FF ˙ 42A CYRILLIC CAPITAL LETTER HARD SIGN \end{verbatim} \end{center} \end{document} latex2rtf-2.3.18/test/tabular.tex0000777000175000017500000002016513050672360017064 0ustar wilfriedwilfried\documentclass{article} \usepackage{lscape} \begin{document} \begin{table} \begin{center} \begin{tabular}{lcr} left & center & right \\ 1 & 123 & 1 \\ 12 & 12 & 12 \\ 123 & 1 & 123 \\ one & space & \\ no & spaces &\\ && blank\\ &&\\ one & last & line \end{tabular} \caption{Simple tabular environment to test three types of alignment.} \end{center} \end{table} \begin{table} \begin{center} \begin{tabular}{llr} \multicolumn{2}{c}{Item} & \multicolumn{1}{c}{Price} \\ gnat & (dozen) & 3.24\\ gnu & (each) & 24,985.47 \end{tabular} \caption{Simple example from the \LaTeX{} manual exhibiting multicolumn.} \end{center} \end{table} \begin{table} \begin{center} \begin{tabular}{||l|lr||} \hline gnats & gram & \$13.65 \\ \hline & each & .01 \\ \hline gnu & stuffed & 92.50 \\ \cline{1-1} \cline{3-3} emur & & 33.33 \\ armadillo & frozen & 8.99 \\ \hline \end{tabular} \caption{Simple example from the \LaTeX{} manual exhibiting horizontal and vertical lines.} \end{center} \end{table} \begin{table} \begin{center} \begin{tabular}{|r||r@{--}l|p{1.25in}|} \hline \multicolumn{4}{|c|}{GG\&A Hoofed Stock}\\ \hline\hline &\multicolumn{2}{c|}{Price}&\\ \cline{2-3} \multicolumn{1}{|c||}{Year} & \multicolumn{1}{r@{\,\vline\,}}{low} & high & \multicolumn{1}{c|}{Comments} \\ \hline 1971 & 97 & 245 & Bad year for farmers in the west \\ \hline 72 & 245 & 245 & Light trading due to a heavy winter \\ \hline 72 & 245 & 2001 & No gnus was very good gnus this year \\ \hline \multicolumn{4}{r}{\footnotesize Source: a friend of a friend of a friend} \end{tabular} \caption{The classic example from the \LaTeX{} manual.} \end{center} \end{table} \begin{table}[h] \begin{center} {\footnotesize \begin{tabular}{|c|cc|cc|cc|cc|} \hline & \multicolumn{2}{c|}{$x=10.3$} & \multicolumn{2}{c|}{$x=10.5$} & \multicolumn{2}{c|}{$x=21.7$} & \multicolumn{2}{c|}{$x=22.8$} \\ $q$ & \multicolumn{1}{c}{gmt} & \multicolumn{1}{c|}{jfk} & \multicolumn{1}{c}{fbi} & \multicolumn{1}{c|}{mac} & \multicolumn{1}{c}{fax} & \multicolumn{1}{c|}{era} & \multicolumn{1}{c}{ibm} & \multicolumn{1}{c|}{pdf}\\\hline $a/20$ & 117.01 & 117.02 & 318.31 & 318.27 & 29.83 & 29.85 & 36.35 & 36.40 \\ $d/40$ & 338.88 & 338.03 & 53.34 & 53.31 & 97.29 & 67.24 & 26.74 & 126.52 \\ $5e$ & 246.58 & 246.50 & 47.57 & 47.57 & 24.28 & 24.89 & 55.54 & 155.26 \\ $7f$ & 157.64 & 157.54 & 36.83 & 36.83 & 38.80 & 38.02 & 72.63 & 172.60 \\ $2g/3$ & 58.08 & 58.05 & 27.35 & 27.32 & 56.20 & 56.23 & 95.47 & 195.49 \\ $\lceil \log h \rceil h^2$ & 18.99 & 18.99 & 99.00 & 98.99 & 58.94 & 158.99 & 98.99 & 98.99 \\ \hline m.t. & 4.6 & 5.1 & 3.8 & 4.1 & 2.2 & 1.9 & 3.6 & 3.7 \\ \hline \end{tabular} } \end{center} \caption{\footnotesize Number of turns and distance between top and bottom.} \label{turns} \end{table} \begin{table}[h] \begin{center} \begin{tabular}{cccc} A & B & C & D \\ \multicolumn{1}{||c||}{A} & B & C & D \\ A & \multicolumn{2}{||c||}{BC} & D \\ \multicolumn{1}{||c||}{A} & \multicolumn{2}{|c|}{BC} & D \\ \multicolumn{1}{||c||}{A} & \multicolumn{2}{||c||}{BC} & D \\ \end{tabular} \end{center} \caption{Yet another table test.} \label{yatabletest} \end{table} \begin{landscape} \begin{center} \begin{tabular}{|r|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|} \multicolumn{16}{c} {\textbf{Factors useful in the Construction of Control Charts}} \\ \multicolumn{16}{c}{\ } \\ \hline & \multicolumn{3}{c|}{\textit{Chart for}} & \multicolumn{5}{c|}{\textit{Chart for standard deviations}} & \multicolumn{7}{c|}{\textit{Chart for Ranges}} \\ & \multicolumn{3}{c|}{\textit{Averages}} & \multicolumn{5}{c|}{\ } & \multicolumn{7}{c|}{\ } \\ \hline & \multicolumn{3}{c|}{\ } & \multicolumn{5}{c|}{\textit{Factors for:}} & \multicolumn{2}{c|}{\ } & \multicolumn{5}{c|}{\ } \\ \cline{5-9} & \multicolumn{3}{c|}{\textit{Factors for}} & \textit{Central} & \multicolumn{4}{c|}{\textit{Control Limits}} & \multicolumn{2}{c|}{\textit{Factors for}} & \multicolumn{5}{c|}{\textit{Factors for Control Limits}} \\ & \multicolumn{3}{c|}{\textit{Control Limits}} & \textit{Line} & \multicolumn{4}{c|}{\ } & \multicolumn{2}{c|}{\textit{Central Line}} & \multicolumn{5}{c|}{\ } \\ \hline & & & & & & & & & & & & & & & \\ n & A & A$_2$ & A$_3$ & c$_4$ & B$_3$ & B$_4$ & B$_5$ & B$_6$ & d$_2$ & 1/d$_2$ & d$_3$ & D$_1$ & D$_2$ & D$_3$ & D$_4$ \\ & & & & & & & & & & & & & & & \\ 2 & 2.121 & 1.880 & 2.659 & 0.7979 & 0 & 3.267 & 0 & 2.606 & 1.128 & 0.8862 & 0.852 & 0 & 3.686 & 0 & 3.266 \\ 3 & 1.732 & 1.023 & 1.954 & 0.8862 & 0 & 2.568 & 0 & 2.276 & 1.693 & 0.5908 & 0.888 & 0 & 4.357 & 0 & 2.574 \\ 4 & 1.500 & 0.729 & 1.628 & 0.9213 & 0 & 2.266 & 0 & 2.088 & 2.059 & 0.4857 & 0.879 & 0 & 4.697 & 0 & 2.281 \\ 5 & 1.342 & 0.577 & 1.427 & 0.9400 & 0 & 2.089 & 0 & 1.964 & 2.326 & 0.4299 & 0.864 & 0 & 4.918 & 0 & 2.114 \\ & & & & & & & & & & & & & & & \\ 6 & 1.225 & 0.483 & 1.287 & 0.9515 & 0.030 & 1.970 & 0.029 & 1.874 & 2.534 & 0.3946 & 0.848 & 0 & 5.078 & 0 & 2.003 \\ 7 & 1.134 & 0.419 & 1.182 & 0.9594 & 0.118 & 1.882 & 0.113 & 1.806 & 2.704 & 0.3698 & 0.833 & 0.206 & 5.203 & 0.076 & 1.924 \\ 8 & 1.061 & 0.373 & 1.099 & 0.9650 & 0.185 & 1.815 & 0.179 & 1.751 & 2.847 & 0.3512 & 0.819 & 0.389 & 5.306 & 0.137 & 1.863 \\ 9 & 1.000 & 0.337 & 1.032 & 0.9693 & 0.239 & 1.761 & 0.232 & 1.707 & 2.970 & 0.3367 & 0.807 & 0.548 & 5.392 & 0.184 & 1.816 \\ 10 & 0.949 & 0.308 & 0.975 & 0.9727 & 0.284 & 1.716 & 0.276 & 1.669 & 3.078 & 0.3249 & 0.797 & 0.688 & 5.467 & 0.223 & 1.777 \\ & & & & & & & & & & & & & & & \\ 11 & 0.905 & 0.285 & 0.927 & 0.9754 & 0.321 & 1.679 & 0.313 & 1.637 & 3.173 & 0.3152 & 0.787 & 0.813 & 5.533 & 0.256 & 1.744 \\ 12 & 0.866 & 0.266 & 0.886 & 0.9776 & 0.354 & 1.646 & 0.346 & 1.610 & 3.258 & 0.3069 & 0.778 & 0.924 & 5.593 & 0.284 & 1.716 \\ 13 & 0.832 & 0.249 & 0.850 & 0.9794 & 0.382 & 1.618 & 0.374 & 1.585 & 3.336 & 0.2998 & 0.770 & 1.026 & 5.646 & 0.307 & 1.693 \\ 14 & 0.802 & 0.235 & 0.817 & 0.9810 & 0.406 & 1.594 & 0.399 & 1.563 & 3.407 & 0.2935 & 0.763 & 1.119 & 5.695 & 0.328 & 1.672 \\ 15 & 0.775 & 0.223 & 0.789 & 0.9823 & 0.428 & 1.572 & 0.421 & 1.544 & 3.472 & 0.2880 & 0.756 & 1.204 & 5.739 & 0.347 & 1.653 \\ & & & & & & & & & & & & & & & \\ 21 & 0.655 & 0.173 & 0.663 & 0.9876 & 0.523 & 1.477 & 0.516 & 1.459 & 3.778 & 0.2647 & 0.724 & 1.607 & 5.950 & 0.425 & 1.575 \\ 22 & 0.640 & 0.167 & 0.647 & 0.9882 & 0.534 & 1.466 & 0.528 & 1.448 & 3.819 & 0.2618 & 0.719 & 1.661 & 5.978 & 0.435 & 1.565 \\ 23 & 0.626 & 0.162 & 0.633 & 0.9887 & 0.545 & 1.455 & 0.539 & 1.438 & 3.858 & 0.2592 & 0.715 & 1.712 & 6.004 & 0.444 & 1.556 \\ 24 & 0.612 & 0.157 & 0.619 & 0.9892 & 0.555 & 1.445 & 0.549 & 1.429 & 3.895 & 0.2567 & 0.712 & 1.761 & 6.030 & 0.452 & 1.548 \\ 25 & 0.600 & 0.153 & 0.606 & 0.9896 & 0.565 & 1.435 & 0.559 & 1.420 & 3.931 & 0.2544 & 0.708 & 1.807 & 6.055 & 0.460 & 1.540 \\ & & & & & & & & & & & & & & & \\ Over 25 & $3/\sqrt{n}$ & $3/d_2\sqrt{n}$ & $\cdots$ & $\cdots$ & * & ** & $\cdots$ & $\cdots$ & $\cdots$ & $\cdots$ & $\cdots$ & $\cdots$ & $\cdots$ & $\cdots$ & $\cdots$ \\ \hline \end{tabular} \[ *\ 1-\frac{3}{\sqrt{2n}} \qquad\qquad\qquad\qquad \mathrm{**}\ 1+\frac{3}{\sqrt{2n}} \] \end{center} \end{landscape} \end{document} latex2rtf-2.3.18/test/fig_testb.ps0000777000175000017500000751550613050672360017241 0ustar wilfriedwilfried%!PS-Adobe-3.0 %%Pages: (atend) %%BoundingBox: 0 0 226 182 %%HiResBoundingBox: 0.000000 0.999854 226.000000 182.000000 %......................................... %%Creator: AFPL Ghostscript 800 (pswrite) %%CreationDate: 2003/10/07 07:49:16 %%DocumentData: Clean7Bit %%LanguageLevel: 2 %%EndComments %%BeginProlog % This copyright applies to everything between here and the %%EndProlog: % Copyright (C) 2002 artofcode LLC, Benicia, CA. All rights reserved. %%BeginResource: procset GS_pswrite_2_0_1001 /GS_pswrite_2_0_1001 80 dict dup begin /PageSize 2 array def/setpagesize{ PageSize aload pop 3 index eq exch 4 index eq and{ pop pop pop}{ PageSize dup 1 5 -1 roll put 0 4 -1 roll put dup null eq {false} {dup where} ifelse{ exch get exec} { pop/setpagedevice where { pop 1 dict dup /PageSize PageSize put setpagedevice} { /setpage where{ pop PageSize aload pop pageparams 3 {exch pop} repeat setpage}if}ifelse}ifelse}ifelse} bind def /!{bind def}bind def/#{load def}!/N/counttomark # /rG{3{3 -1 roll 255 div}repeat setrgbcolor}!/G{255 div setgray}!/K{0 G}! /r6{dup 3 -1 roll rG}!/r5{dup 3 1 roll rG}!/r3{dup rG}! /w/setlinewidth #/J/setlinecap # /j/setlinejoin #/M/setmiterlimit #/d/setdash #/i/setflat # /m/moveto #/l/lineto #/c/rcurveto # /p{N 2 idiv{N -2 roll rlineto}repeat}! /P{N 0 gt{N -2 roll moveto p}if}! /h{p closepath}!/H{P closepath}! /lx{0 rlineto}!/ly{0 exch rlineto}!/v{0 0 6 2 roll c}!/y{2 copy c}! /re{4 -2 roll m exch dup lx exch ly neg lx h}! /^{3 index neg 3 index neg}! /f{P fill}!/f*{P eofill}!/s{H stroke}!/S{P stroke}! /q/gsave #/Q/grestore #/rf{re fill}! /Y{P clip newpath}!/Y*{P eoclip newpath}!/rY{re Y}! /|={pop exch 4 1 roll 3 array astore cvx exch 1 index def exec}! /|{exch string readstring |=}! /+{dup type/nametype eq{2 index 7 add -3 bitshift 2 index mul}if}! /@/currentfile #/${+ @ |}! /B{{2 copy string{readstring pop}aload pop 4 array astore cvx 3 1 roll}repeat pop pop true}! /Ix{[1 0 0 1 11 -2 roll exch neg exch neg]exch}! /,{true exch Ix imagemask}!/If{false exch Ix imagemask}!/I{exch Ix image}! /Ic{exch Ix false 3 colorimage}! /F{/Columns counttomark 3 add -2 roll/Rows exch/K -1/BlackIs1 true>> /CCITTFaxDecode filter}!/FX{< 1040 10 31 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqrr~> 1006 10 34 1 @X 8 Ic zzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 1040 10 34 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8N~> 993 11 47 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8Vrqrr~> 1040 11 47 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzz!!~> 980 12 60 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 12 60 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 979 13 61 1 @X 8 Ic zzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`q qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Q~> 1040 13 61 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz !!!!~> 972 13 68 1 @X 8 Ic zzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz !!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 13 68 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzz~> 964 14 76 1 @X 8 Ic zzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzz zz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 14 76 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq~> 250 255 r3 956 15 4 1 rf 960 15 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 15 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> K 1120 15 4 1 rf 250 255 r3 950 16 10 1 rf 960 16 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 16 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> K 1120 16 10 1 rf 949 16 11 1 @X 8 Ic !!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr~> 960 16 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 16 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 16 11 1 rf 943 17 17 1 @X 8 Ic zzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Q~> 960 17 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 17 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 17 17 1 rf 937 18 23 1 @X 8 Ic zzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr~> 960 18 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 18 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 18 23 1 rf 932 19 28 1 @X 8 Ic zzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 19 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 19 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 19 28 1 rf 926 20 34 1 @X 8 Ic qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!!~> 960 20 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 20 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 20 34 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzz!!!~> 921 21 39 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!!~> 960 21 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 21 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 21 39 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzz!!~> 921 21 39 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!!~> 960 21 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 21 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 21 39 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzz!!~> 916 22 44 1 @X 8 Ic zzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 22 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 22 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 22 44 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq~> 912 23 48 1 @X 8 Ic zzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 23 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 23 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 23 48 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 908 24 52 1 @X 8 Ic zzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 24 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 24 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 24 52 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!z~> 903 25 57 1 @X 8 Ic zzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz !!!!~> 960 25 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 25 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 25 57 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzz!!!!~> 899 26 61 1 @X 8 Ic zzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzz zz!!!!~> 960 26 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 26 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 26 61 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz!!!!~> 895 27 65 1 @X 8 Ic zzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzz zzzzz!!!!~> 960 27 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 27 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 27 65 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzz!!!!~> 892 28 68 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzz zzzz~> 960 28 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 28 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 28 68 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzz~> 891 28 69 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzz zzzzzzzz!!!!~> 960 28 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 28 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 28 69 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzz!!!!~> 887 29 73 1 @X 8 Ic qZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrq rr<$!zzzzzzzzzzzzzzzzzzzzz!!!!~> 960 29 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 29 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 29 73 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzz!!!!~> 884 30 76 1 @X 8 Ic zzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 30 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 30 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 30 76 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzz~> 880 31 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 31 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 31 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 31 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 876 32 4 1 rf 880 32 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 32 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 32 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 32 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 32 4 1 rf 873 33 7 1 rf 880 33 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 33 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 33 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 33 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 33 7 1 rf 869 34 11 1 rf 880 34 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 34 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 34 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 34 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 34 11 1 @X 8 Ic zzzzzzz!!)lqrr~> 866 35 14 1 rf 880 35 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 35 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 35 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 35 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 35 14 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8N~> 864 36 16 1 rf 880 36 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 36 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 36 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 36 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 36 16 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq~> 863 36 17 1 rf 880 36 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 36 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 36 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 36 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 36 17 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Q~> 860 37 20 1 rf 880 37 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 37 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 37 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 37 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 37 20 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 857 38 23 1 @X 8 Ic qZ$Tls8Vrqrr<$!zzzzzzzzzzzzzz!!~> 880 38 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 38 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 38 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 38 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 38 23 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz!!~> 854 39 26 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 880 39 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 39 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 39 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 39 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 39 26 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzz!!!~> 851 40 29 1 @X 8 Ic zzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzz!!!!~> 880 40 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 40 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 40 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 40 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 40 29 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Q~> 848 41 32 1 @X 8 Ic zzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 41 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 41 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 41 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 41 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 41 32 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!z~> 845 42 35 1 @X 8 Ic zzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!!~> 880 42 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 42 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 42 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 42 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 42 35 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzz!!~> 842 43 38 1 @X 8 Ic zzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 880 43 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 43 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 43 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 43 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 43 38 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzz!!!~> 839 44 41 1 @X 8 Ic zzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzz!!!!~> 880 44 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 44 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 44 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 44 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 44 41 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz!!!!~> 837 45 43 1 @X 8 Ic zzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!!~> 880 45 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 45 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 45 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 45 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 45 43 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzz!!~> 836 45 44 1 @X 8 Ic zzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 45 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 45 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 45 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 45 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 45 44 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzz~> 834 46 46 1 @X 8 Ic zzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 880 46 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 46 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 46 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 46 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 46 46 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz!!!~> 831 47 49 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzz!!!!~> 880 47 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 47 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 47 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 47 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 47 49 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzz!!!!~> 829 48 51 1 @X 8 Ic qZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!!~> 880 48 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 48 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 48 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 48 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 48 51 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzz!!~> 826 49 54 1 @X 8 Ic qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzz!!!~> 880 49 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 49 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 49 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 49 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 49 54 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzz!!!~> 823 50 57 1 @X 8 Ic zzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Q~> 880 50 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 50 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 50 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 50 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 50 57 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzz !!!!~> 821 51 59 1 @X 8 Ic zzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#q s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr~> 880 51 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 51 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 51 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 51 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 51 59 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzz !!~> 818 52 62 1 @X 8 Ic zzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 880 52 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 52 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 52 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 52 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 52 62 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzz !!!~> 816 53 64 1 @X 8 Ic zzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 53 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 53 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 53 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 53 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 53 64 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz z~> 813 54 67 1 @X 8 Ic zzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz !!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr~> 880 54 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 54 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 54 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 54 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 54 67 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzz!!~> 811 55 69 1 @X 8 Ic zzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz !;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Q~> 880 55 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 55 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 55 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 55 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 55 69 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzz!!!!~> 810 56 70 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 880 56 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 56 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 56 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 56 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 56 70 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!!~> 808 56 72 1 @X 8 Ic zzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz !!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 56 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 56 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 56 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 56 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 56 72 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cq~> 806 57 74 1 @X 8 Ic zzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzz zqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 880 57 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 57 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 57 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 57 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 57 74 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8N~> 804 58 76 1 @X 8 Ic zzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzz zz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 58 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 58 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 58 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 58 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 58 76 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq~> 802 59 78 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzz zzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 880 59 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 59 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 59 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 59 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 59 78 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 800 60 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 60 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 60 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 60 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 60 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 60 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 797 61 3 1 rf 800 61 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 61 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 61 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 61 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 61 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 61 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 250 255 r3 1280 61 3 1 rf K 795 62 5 1 rf 800 62 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 62 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 62 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 62 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 62 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 62 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 250 255 r3 1280 62 5 1 rf K 793 63 7 1 rf 800 63 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 63 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 63 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 63 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 63 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 63 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 250 255 r3 1280 63 7 1 rf K 791 64 9 1 rf 800 64 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 64 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 64 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 64 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 64 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 64 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 250 255 r3 1280 64 9 1 rf K 789 65 11 1 rf 800 65 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 65 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 65 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 65 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 65 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 65 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 65 11 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!!!~> 786 66 14 1 rf 800 66 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 66 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 66 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 66 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 66 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 66 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 66 14 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zz!!!~> 784 67 16 1 rf 800 67 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 67 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 67 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 67 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 67 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 67 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 67 16 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzz~> 784 68 16 1 rf 800 68 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 68 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 68 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 68 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 68 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 68 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 68 16 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzz~> 782 68 18 1 rf 800 68 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 68 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 68 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 68 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 68 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 68 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 68 18 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzz!!!~> 780 69 20 1 rf 800 69 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 69 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 69 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 69 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 69 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 69 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 69 20 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 778 70 22 1 @X 8 Ic qZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 800 70 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 70 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 70 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 70 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 70 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 70 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 70 22 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqz!!!~> 776 71 24 1 @X 8 Ic qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 71 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 71 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 71 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 71 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 71 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 71 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 71 24 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzz~> 774 72 26 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 800 72 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 72 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 72 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 72 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 72 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 72 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 72 26 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzz!!!~> 772 73 28 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 73 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 73 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 73 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 73 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 73 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 73 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 73 28 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzz~> 770 74 30 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 800 74 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 74 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 74 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 74 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 74 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 74 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 74 30 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 768 75 32 1 @X 8 Ic z!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 75 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 75 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 75 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 75 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 75 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 75 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 75 32 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzz~> 766 76 34 1 @X 8 Ic zzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 800 76 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 76 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 76 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 76 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 76 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 76 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 76 34 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzz!!!~> 765 77 35 1 @X 8 Ic zzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzz!!~> 800 77 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 77 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 77 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 77 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 77 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 77 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 77 35 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzz!!~> 763 78 37 1 @X 8 Ic zzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzz!!!!~> 800 78 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 78 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 78 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 78 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 78 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 78 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 78 37 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzz!!!!~> 761 79 39 1 @X 8 Ic zzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzz!!~> 800 79 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 79 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 79 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 79 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 79 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 79 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 79 39 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzz!!~> 759 80 41 1 @X 8 Ic zzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzz!!!!~> 800 80 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 80 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 80 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 80 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 80 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 80 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 80 41 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz!!!!~> 758 81 42 1 @X 8 Ic zzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 800 81 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 81 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 81 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 81 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 81 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 81 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 81 42 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzz!!!~> 757 81 43 1 @X 8 Ic zzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!!~> 800 81 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 81 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 81 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 81 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 81 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 81 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 81 43 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzz!!~> 755 82 45 1 @X 8 Ic zzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzz!!!!~> 800 82 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 82 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 82 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 82 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 82 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 82 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 82 45 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzz!!!!~> 753 83 47 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!!~> 800 83 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 83 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 83 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 83 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 83 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 83 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 83 47 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz!!~> 752 84 48 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 84 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 84 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 84 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 84 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 84 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 84 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 84 48 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzz~> 750 85 50 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 800 85 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 85 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 85 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 85 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 85 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 85 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 85 50 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 748 86 52 1 @X 8 Ic qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 800 86 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 86 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 86 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 86 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 86 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 86 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 86 52 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzz~> 746 87 54 1 @X 8 Ic qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzz!!!~> 800 87 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 87 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 87 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 87 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 87 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 87 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 87 54 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzz!!!~> 745 88 55 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Qqzzzzzzz!!~> 800 88 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 88 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 88 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 88 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 88 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 88 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 88 55 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzz!!~> 743 89 57 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8Vrqrr<$!zzzzzz!!!!~> 800 89 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 89 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 89 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 89 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 89 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 89 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 89 57 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzz !!!!~> 741 90 59 1 @X 8 Ic zzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#q s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr~> 800 90 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 90 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 90 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 90 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 90 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 90 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 90 59 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzz !!~> 740 91 60 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 91 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 91 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 91 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 91 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 91 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 91 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 91 60 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 738 92 62 1 @X 8 Ic zzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 800 92 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 92 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 92 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 92 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 92 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 92 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 92 62 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzz !!!~> 736 93 64 1 @X 8 Ic zzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 93 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 93 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 93 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 93 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 93 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 93 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 93 64 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz z~> 734 94 66 1 @X 8 Ic zzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 800 94 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 94 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 94 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 94 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 94 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 94 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 94 66 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zz!!!~> 734 95 66 1 @X 8 Ic zzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 800 95 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 95 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 95 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 95 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 95 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 95 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 95 66 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zz!!!~> 733 95 67 1 @X 8 Ic zzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz !!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr~> 800 95 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 95 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 95 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 95 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 95 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 95 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 95 67 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzz!!~> 731 96 69 1 @X 8 Ic zzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz !;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Q~> 800 96 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 96 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 96 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 96 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 96 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 96 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 96 69 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzz!!!!~> 730 97 70 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 800 97 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 97 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 97 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 97 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 97 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 97 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 97 70 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!!~> 728 98 72 1 @X 8 Ic zzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz !!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 98 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 98 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 98 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 98 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 98 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 98 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 98 72 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cq~> 726 99 74 1 @X 8 Ic zzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzz zqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 800 99 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 99 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 99 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 99 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 99 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 99 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 99 74 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8N~> 725 100 75 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Qqzzzzzzzzzzzzzzzzzzzzzz!!~> 800 100 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 100 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 100 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 100 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 100 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 100 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 100 75 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzz!!~> 723 101 77 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!!~> 800 101 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 101 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 101 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 101 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 101 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 101 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 101 77 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzz!!!!~> 722 102 78 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!!~> 800 102 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 102 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 102 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 102 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 102 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 102 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 102 78 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzz!!!~> 720 103 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 103 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 103 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 103 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 103 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 103 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 103 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 103 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 719 104 1 1 rf 720 104 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 104 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 104 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 104 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 104 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 104 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 104 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 104 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 250 255 r3 1360 104 1 1 rf K 717 105 3 1 rf 720 105 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 105 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 105 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 105 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 105 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 105 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 105 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 105 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 250 255 r3 1360 105 3 1 rf K 715 106 5 1 rf 720 106 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 106 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 106 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 106 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 106 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 106 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 106 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 106 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 250 255 r3 1360 106 5 1 rf K 714 107 6 1 rf 720 107 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 107 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 107 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 107 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 107 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 107 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 107 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 107 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 250 255 r3 1360 107 6 1 rf K 712 108 8 1 rf 720 108 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 108 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 108 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 108 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 108 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 108 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 108 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 108 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 250 255 r3 1360 108 8 1 rf K 711 109 9 1 rf 720 109 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 109 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 109 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 109 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 109 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 109 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 109 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 109 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 250 255 r3 1360 109 9 1 rf K 710 110 10 1 rf 720 110 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 110 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 110 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 110 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 110 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 110 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 110 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 110 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 110 10 1 rf 709 110 11 1 rf 720 110 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 110 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 110 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 110 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 110 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 110 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 110 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 110 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 110 11 1 @X 8 Ic zzzzzzz!!)lqrr~> 708 111 12 1 rf 720 111 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 111 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 111 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 111 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 111 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 111 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 111 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 111 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 111 12 1 @X 8 Ic zzzzzzz!!)lqs8)cq~> 706 112 14 1 rf 720 112 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 112 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 112 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 112 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 112 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 112 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 112 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 112 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 112 14 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8N~> 705 113 15 1 rf 720 113 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 113 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 113 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 113 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 113 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 113 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 113 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 113 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 113 15 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqrr~> 704 114 16 1 rf 720 114 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 114 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 114 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 114 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 114 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 114 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 114 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 114 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 114 16 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq~> 702 115 18 1 rf 720 115 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 115 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 115 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 115 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 115 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 115 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 115 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 115 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 115 18 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 701 116 19 1 rf 720 116 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 116 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 116 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 116 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 116 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 116 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 116 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 116 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 116 19 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr~> 699 117 21 1 @X 8 Ic qZ$Qqzzzzzzzzzzzzzz!!!!~> 720 117 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 117 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 117 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 117 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 117 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 117 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 117 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 117 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 117 21 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq!!!!~> 698 118 22 1 @X 8 Ic qZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 720 118 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 118 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 118 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 118 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 118 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 118 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 118 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 118 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 118 22 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqz!!!~> 697 119 23 1 @X 8 Ic qZ$Tls8Vrqrr<$!zzzzzzzzzzzzzz!!~> 720 119 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 119 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 119 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 119 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 119 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 119 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 119 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 119 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 119 23 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz!!~> 695 120 25 1 @X 8 Ic zzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzz!!!!~> 720 120 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 120 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 120 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 120 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 120 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 120 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 120 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 120 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 120 25 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Q~> 694 121 26 1 @X 8 Ic zzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 720 121 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 121 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 121 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 121 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 121 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 121 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 121 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 121 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 121 26 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8N~> 692 122 28 1 @X 8 Ic zzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 122 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 122 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 122 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 122 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 122 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 122 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 122 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 122 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 122 28 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 691 123 29 1 @X 8 Ic zzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzz!!!!~> 720 123 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 123 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 123 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 123 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 123 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 123 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 123 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 123 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 123 29 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Q~> 690 124 30 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 720 124 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 124 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 124 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 124 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 124 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 124 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 124 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 124 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 124 30 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 688 125 32 1 @X 8 Ic zzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 125 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 125 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 125 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 125 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 125 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 125 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 125 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 125 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 125 32 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!z~> 687 126 33 1 @X 8 Ic zzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzz!!!!~> 720 126 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 126 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 126 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 126 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 126 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 126 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 126 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 126 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 126 33 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!z!!!!~> 686 127 34 1 @X 8 Ic zzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 720 127 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 127 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 127 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 127 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 127 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 127 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 127 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 127 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 127 34 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zz!!!~> 685 127 35 1 @X 8 Ic zzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!!~> 720 127 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 127 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 127 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 127 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 127 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 127 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 127 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 127 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 127 35 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzz!!~> 684 128 36 1 @X 8 Ic zzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 128 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 128 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 128 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 128 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 128 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 128 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 128 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 128 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 128 36 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzz~> 683 129 37 1 @X 8 Ic zzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzz!!!!~> 720 129 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 129 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 129 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 129 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 129 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 129 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 129 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 129 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 129 37 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzz!!!!~> 682 130 38 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 720 130 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 130 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 130 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 130 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 130 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 130 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 130 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 130 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 130 38 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 680 131 40 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 131 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 131 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 131 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 131 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 131 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 131 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 131 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 131 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 131 40 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 679 132 41 1 @X 8 Ic qZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Q~> 720 132 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 132 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 132 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 132 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 132 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 132 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 132 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 132 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 132 41 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq!!!!~> 678 133 42 1 @X 8 Ic qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 720 133 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 133 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 133 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 133 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 133 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 133 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 133 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 133 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 133 42 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqz!!!~> 677 134 43 1 @X 8 Ic qZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrq rr~> 720 134 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 134 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 134 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 134 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 134 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 134 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 134 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 134 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 134 43 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz!!~> 675 135 45 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Q~> 720 135 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 135 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 135 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 135 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 135 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 135 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 135 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 135 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 135 45 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzz!!!!~> 674 136 46 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N~> 720 136 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 136 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 136 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 136 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 136 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 136 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 136 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 136 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 136 46 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzz!!!~> 673 137 47 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8Vrqrr~> 720 137 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 137 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 137 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 137 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 137 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 137 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 137 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 137 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 137 47 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzz!!~> 671 138 49 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Q~> 720 138 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 138 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 138 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 138 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 138 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 138 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 138 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 138 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 138 49 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzz!!!!~> 670 139 50 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N~> 720 139 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 139 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 139 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 139 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 139 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 139 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 139 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 139 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 139 50 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 669 140 51 1 @X 8 Ic zzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!!~> 720 140 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 140 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 140 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 140 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 140 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 140 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 140 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 140 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 140 51 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!!!~> 668 141 52 1 @X 8 Ic zzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 141 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 141 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 141 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 141 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 141 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 141 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 141 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 141 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 141 52 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!z~> 666 142 54 1 @X 8 Ic zzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!!~> 720 142 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 142 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 142 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 142 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 142 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 142 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 142 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 142 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 142 54 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zz!!!~> 665 143 55 1 @X 8 Ic zzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!!~> 720 143 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 143 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 143 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 143 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 143 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 143 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 143 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 143 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 143 55 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzz!!~> 664 144 56 1 @X 8 Ic zzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 144 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 144 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 144 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 144 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 144 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 144 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 144 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 144 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 144 56 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzz~> 664 144 56 1 @X 8 Ic zzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 144 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 144 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 144 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 144 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 144 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 144 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 144 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 144 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 144 56 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzz~> 663 145 57 1 @X 8 Ic zzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz !!!!~> 720 145 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 145 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 145 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 145 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 145 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 145 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 145 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 145 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 145 57 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzz!!!!~> 662 146 58 1 @X 8 Ic zzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz !!!~> 720 146 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 146 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 146 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 146 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 146 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 146 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 146 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 146 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 146 58 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzz!!!~> 660 147 60 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 147 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 147 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 147 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 147 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 147 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 147 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 147 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 147 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 147 60 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 659 148 61 1 @X 8 Ic zzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzz zz!!!!~> 720 148 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 148 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 148 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 148 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 148 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 148 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 148 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 148 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 148 61 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz!!!!~> 658 149 62 1 @X 8 Ic zzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz !!!~> 720 149 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 149 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 149 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 149 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 149 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 149 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 149 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 149 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 149 62 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzz!!!~> 657 150 63 1 @X 8 Ic qZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrq rr<$!zzzzzzzzzzzzzz!!~> 720 150 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 150 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 150 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 150 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 150 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 150 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 150 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 150 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 150 63 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz!!~> 656 151 64 1 @X 8 Ic qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 720 151 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 151 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 151 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 151 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 151 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 151 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 151 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 151 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 151 64 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzz~> 655 152 65 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Qqzzzzzzzzzzzzzz!!!!~> 720 152 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 152 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 152 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 152 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 152 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 152 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 152 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 152 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 152 65 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzz!!!!~> 653 153 67 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzz!!~> 720 153 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 153 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 153 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 153 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 153 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 153 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 153 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 153 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 153 66 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzz!!!~> 652 154 68 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 154 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 154 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 154 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 154 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 154 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 154 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 154 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 154 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 154 68 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzz~> 651 155 69 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzz!!!!~> 720 155 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 155 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 155 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 155 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 155 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 155 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 155 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 155 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 155 69 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzz!!!!~> 650 156 70 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 720 156 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 156 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 156 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 156 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 156 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 156 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 156 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 156 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 156 70 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 649 157 71 1 @X 8 Ic !!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzz!!~> 720 157 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 157 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 157 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 157 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 157 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 157 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 157 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 157 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 157 71 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzz!!~> 648 158 72 1 @X 8 Ic z!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 158 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 158 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 158 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 158 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 158 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 158 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 158 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 158 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 158 72 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzz~> 647 159 73 1 @X 8 Ic zz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzz!!!!~> 720 159 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 159 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 159 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 159 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 159 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 159 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 159 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 159 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 159 73 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzz!!!!~> 645 160 75 1 @X 8 Ic zzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`q qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!!~> 720 160 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 160 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 160 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 160 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 160 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 160 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 160 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 160 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 160 75 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzz!!~> 644 161 76 1 @X 8 Ic zzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 161 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 161 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 161 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 161 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 161 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 161 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 161 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 161 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 161 76 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzz~> 643 162 77 1 @X 8 Ic zzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz !!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzz!!!!~> 720 162 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 162 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 162 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 162 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 162 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 162 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 162 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 162 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 162 77 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzz!!!!~> 643 163 77 1 @X 8 Ic zzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz !!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzz!!!!~> 720 163 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 163 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 163 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 163 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 163 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 163 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 163 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 163 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 163 77 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzz!!!!~> 642 163 78 1 @X 8 Ic zzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz !!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 720 163 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 163 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 163 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 163 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 163 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 163 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 163 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 163 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 163 78 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzz!!!~> 641 164 79 1 @X 8 Ic zzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz !;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!!~> 720 164 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 164 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 164 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 164 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 164 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 164 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 164 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 164 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 164 79 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzz!!~> 640 165 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 165 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 165 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 165 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 165 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 165 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 165 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 165 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 165 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 165 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 639 166 1 1 rf 640 166 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 166 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 166 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 166 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 166 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 166 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 166 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 166 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 166 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 166 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 166 1 1 rf 638 167 2 1 rf 640 167 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 167 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 167 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 167 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 167 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 167 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 167 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 167 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 167 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 167 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 167 2 1 rf 637 168 3 1 rf 640 168 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 168 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 168 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 168 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 168 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 168 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 168 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 168 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 168 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 168 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 168 3 1 rf 636 169 4 1 rf 640 169 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 169 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 169 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 169 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 169 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 169 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 169 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 169 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 169 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 169 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 169 4 1 rf 250 255 r3 635 170 5 1 rf 640 170 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 170 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 170 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 170 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 170 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 170 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 170 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 170 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 170 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 170 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> K 1440 170 5 1 rf 250 255 r3 634 171 6 1 rf 640 171 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 171 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 171 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 171 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 171 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 171 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 171 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 171 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 171 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 171 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> K 1440 171 6 1 rf 250 255 r3 633 172 7 1 rf 640 172 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 172 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 172 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 172 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 172 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 172 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 172 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 172 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 172 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 172 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> K 1440 172 7 1 rf 250 255 r3 632 173 8 1 rf 640 173 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 173 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 173 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 173 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 173 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 173 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 173 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 173 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 173 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 173 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> K 1440 173 8 1 rf 250 255 r3 630 174 10 1 rf 640 174 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 174 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 174 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 174 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 174 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 174 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 174 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 174 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 174 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 174 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> K 1440 174 10 1 rf 629 175 11 1 @X 8 Ic !!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr~> 640 175 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 175 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 175 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 175 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 175 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 175 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 175 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 175 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 175 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 175 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 175 11 1 rf 628 176 12 1 @X 8 Ic z!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 176 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 176 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 176 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 176 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 176 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 176 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 176 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 176 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 176 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 176 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 176 12 1 rf 627 177 13 1 @X 8 Ic zz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Q~> 640 177 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 177 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 177 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 177 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 177 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 177 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 177 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 177 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 177 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 177 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 177 13 1 rf 626 178 14 1 @X 8 Ic zzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 640 178 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 178 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 178 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 178 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 178 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 178 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 178 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 178 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 178 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 178 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 178 14 1 rf 625 179 15 1 @X 8 Ic zzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr~> 640 179 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 179 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 179 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 179 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 179 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 179 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 179 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 179 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 179 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 179 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 179 15 1 rf 624 180 16 1 rf 640 180 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 180 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 180 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 180 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 180 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 180 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 180 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 180 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 180 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 180 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 180 16 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzz~> 623 181 17 1 rf 640 181 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 181 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 181 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 181 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 181 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 181 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 181 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 181 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 181 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 181 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 181 17 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzz!!!!~> 622 182 18 1 rf 640 182 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 182 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 182 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 182 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 182 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 182 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 182 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 182 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 182 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 182 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 182 18 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzz!!!~> 622 182 18 1 rf 640 182 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 182 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 182 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 182 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 182 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 182 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 182 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 182 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 182 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 182 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 182 18 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzz!!!~> 621 183 19 1 rf 640 183 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 183 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 183 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 183 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 183 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 183 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 183 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 183 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 183 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 183 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 183 19 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzz!!~> 620 184 20 1 rf 640 184 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 184 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 184 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 184 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 184 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 184 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 184 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 184 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 184 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 184 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 184 20 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 619 185 21 1 rf 640 185 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 185 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 185 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 185 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 185 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 185 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 185 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 185 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 185 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 185 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 185 21 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz!!!!~> 618 186 22 1 rf 640 186 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 186 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 186 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 186 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 186 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 186 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 186 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 186 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 186 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 186 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 186 22 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzz!!!~> 617 187 23 1 rf 640 187 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 187 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 187 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 187 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 187 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 187 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 187 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 187 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 187 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 187 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 187 23 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzz!!~> 616 188 24 1 rf 640 188 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 188 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 188 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 188 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 188 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 188 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 188 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 188 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 188 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 188 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 188 24 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzz~> 615 189 25 1 rf 640 189 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 189 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 189 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 189 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 189 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 189 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 189 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 189 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 189 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 189 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 189 25 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzz!!!!~> 614 190 26 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz ~> 640 190 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 720 190 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 800 190 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 880 190 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 960 190 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1040 190 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1120 190 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1200 190 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1280 190 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1360 190 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1440 190 26 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzz~> 613 192 27 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzz!!~> 640 192 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 192 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 192 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 192 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 192 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 192 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 192 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 192 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 192 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 192 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 192 27 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzz!!~> 612 193 28 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 193 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 193 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 193 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 193 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 193 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 193 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 193 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 193 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 193 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 193 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 193 28 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzz~> 611 194 29 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzz!!!!~> 640 194 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 194 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 194 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 194 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 194 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 194 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 194 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 194 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 194 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 194 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 194 29 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzz!!!!~> 610 195 30 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 640 195 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 195 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 195 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 195 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 195 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 195 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 195 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 195 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 195 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 195 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 195 30 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 609 196 31 1 @X 8 Ic !!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzz!!~> 640 196 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 196 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 196 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 196 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 196 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 196 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 196 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 196 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 196 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 196 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 196 31 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzz!!~> 608 197 32 1 @X 8 Ic z!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 197 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 197 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 197 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 197 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 197 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 197 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 197 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 197 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 197 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 197 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 197 32 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzz~> 607 198 33 1 @X 8 Ic zz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzz!!!!~> 640 198 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 198 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 198 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 198 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 198 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 198 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 198 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 198 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 198 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 198 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 198 33 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzz!!!!~> 606 199 34 1 @X 8 Ic zzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 640 199 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 199 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 199 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 199 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 199 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 199 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 199 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 199 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 199 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 199 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 199 34 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzz!!!~> 605 200 35 1 @X 8 Ic zzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!!~> 640 200 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 200 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 200 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 200 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 200 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 200 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 200 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 200 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 200 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 200 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 200 35 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzz!!~> 604 201 36 1 @X 8 Ic zzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 201 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 201 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 201 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 201 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 201 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 201 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 201 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 201 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 201 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 201 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 201 36 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzz~> 603 202 37 1 @X 8 Ic zzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzz!!!!~> 640 202 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 202 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 202 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 202 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 202 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 202 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 202 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 202 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 202 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 202 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 202 37 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzz!!!!~> 603 203 37 1 @X 8 Ic zzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzz!!!!~> 640 203 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 203 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 203 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 203 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 203 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 203 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 203 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 203 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 203 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 203 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 203 37 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzz!!!!~> 602 203 38 1 @X 8 Ic zzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 640 203 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 203 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 203 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 203 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 203 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 203 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 203 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 203 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 203 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 203 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 203 38 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzz!!!~> 601 204 39 1 @X 8 Ic zzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!!~> 640 204 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 204 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 204 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 204 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 204 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 204 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 204 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 204 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 204 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 204 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 204 39 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzz!!~> 600 205 40 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 205 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 720 205 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 800 205 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 880 205 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 960 205 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1040 205 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1120 205 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1200 205 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1280 205 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1360 205 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1440 205 40 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 599 207 41 1 @X 8 Ic zzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzz!!!!~> 640 207 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 207 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 207 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 207 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 207 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 207 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 207 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 207 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 207 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 207 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 207 41 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz!!!!~> 598 208 42 1 @X 8 Ic zzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 640 208 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 208 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 208 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 208 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 208 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 208 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 208 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 208 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 208 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 208 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 208 42 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzz!!!~> 597 209 43 1 @X 8 Ic zzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!!~> 640 209 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 209 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 209 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 209 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 209 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 209 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 209 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 209 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 209 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 209 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 209 43 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzz!!~> 596 210 44 1 @X 8 Ic qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 210 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 210 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 210 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 210 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 210 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 210 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 210 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 210 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 210 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 210 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 210 44 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzz~> 595 211 45 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Q~> 640 211 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 211 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 211 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 211 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 211 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 211 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 211 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 211 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 211 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 211 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 211 45 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzz!!!!~> 594 212 46 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N~> 640 212 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 212 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 212 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 212 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 212 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 212 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 212 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 212 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 212 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 212 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 212 46 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzz!!!~> 593 213 47 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8Vrqrr~> 640 213 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 213 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 213 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 213 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 213 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 213 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 213 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 213 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 213 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 213 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 213 46 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzz!!!~> 593 214 47 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8Vrqrr~> 640 214 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 214 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 214 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 214 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 214 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 214 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 214 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 214 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 214 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 214 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 214 47 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzz!!~> 592 215 48 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 640 215 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 215 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 215 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 215 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 215 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 215 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 215 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 215 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 215 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 215 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 215 48 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzz~> 591 216 49 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Q~> 640 216 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 216 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 216 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 216 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 216 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 216 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 216 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 216 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 216 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 216 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 216 49 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzz!!!!~> 590 217 50 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N~> 640 217 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 217 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 217 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 217 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 217 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 217 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 217 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 217 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 217 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 217 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 217 50 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 589 218 51 1 @X 8 Ic !!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr~> 640 218 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 218 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 218 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 218 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 218 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 218 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 218 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 218 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 218 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 218 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 218 51 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzz!!~> 588 219 52 1 @X 8 Ic z!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 219 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 219 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 219 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 219 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 219 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 219 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 219 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 219 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 219 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 219 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 219 52 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzz~> 587 220 53 2 @X 8 Ic zzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzzzzzz zzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!!~> 640 220 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 720 220 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 800 220 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 880 220 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 960 220 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1040 220 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1120 220 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1200 220 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1280 220 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1360 220 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1440 220 53 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!z!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzz zzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!z!!!~> 586 222 54 1 @X 8 Ic zzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!!~> 640 222 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 222 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 222 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 222 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 222 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 222 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 222 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 222 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 222 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 222 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 222 54 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zz!!!~> 585 223 55 1 @X 8 Ic zzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!!~> 640 223 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 223 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 223 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 223 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 223 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 223 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 223 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 223 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 223 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 223 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 223 55 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzz!!~> 584 224 56 1 @X 8 Ic zzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 224 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 224 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 224 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 224 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 224 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 224 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 224 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 224 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 224 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 224 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 224 56 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzz~> 584 224 56 1 @X 8 Ic zzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 224 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 224 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 224 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 224 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 224 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 224 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 224 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 224 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 224 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 224 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 224 56 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzz~> 583 225 57 1 @X 8 Ic zzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz !!!!~> 640 225 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 225 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 225 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 225 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 225 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 225 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 225 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 225 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 225 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 225 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 225 57 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzz!!!!~> 582 226 58 2 @X 8 Ic zzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzz zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 226 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 720 226 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 800 226 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 880 226 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 960 226 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1040 226 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1120 226 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1200 226 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1280 226 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1360 226 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1440 226 58 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzz zzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzz~> 581 228 59 1 @X 8 Ic zzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz !!~> 640 228 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 228 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 228 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 228 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 228 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 228 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 228 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 228 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 228 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 228 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 228 59 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzz!!~> 580 229 60 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 229 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 229 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 229 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 229 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 229 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 229 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 229 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 229 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 229 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 229 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 229 60 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 579 230 61 1 @X 8 Ic qZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzz zz!!!!~> 640 230 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 230 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 230 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 230 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 230 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 230 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 230 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 230 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 230 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 230 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 230 61 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq!!!!~> 578 231 62 2 @X 8 Ic qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzz!!)lqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzzzzzzzzzz~> 640 231 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 720 231 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 800 231 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 880 231 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 960 231 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1040 231 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1120 231 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1200 231 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1280 231 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1360 231 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1440 231 62 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'! zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!z~> 577 233 63 1 @X 8 Ic qZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrq rr<$!zzzzzzzzzzzzzz!!~> 640 233 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 233 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 233 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 233 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 233 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 233 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 233 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 233 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 233 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 233 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 233 63 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz!!~> 576 234 64 1 @X 8 Ic qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 640 234 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 234 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 234 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 234 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 234 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 234 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 234 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 234 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 234 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 234 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 234 64 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzz~> 575 235 65 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Qqzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 640 235 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 720 235 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 800 235 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 880 235 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 960 235 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1040 235 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1120 235 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1200 235 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1280 235 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1360 235 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1440 235 65 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzz!!!~> 574 237 66 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 640 237 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 237 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 237 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 237 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 237 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 237 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 237 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 237 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 237 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 237 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 237 66 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzz!!!~> 573 238 67 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzz!!~> 640 238 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 238 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 238 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 238 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 238 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 238 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 238 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 238 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 238 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 238 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 238 67 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzz!!~> 572 239 68 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 239 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 239 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 239 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 239 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 239 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 239 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 239 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 239 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 239 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 239 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 239 68 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzz~> 571 240 69 2 @X 8 Ic zzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#q s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzz!!!~> 640 240 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 720 240 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 800 240 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 880 240 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 960 240 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1040 240 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1120 240 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1200 240 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1280 240 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1360 240 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1440 240 69 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 570 242 70 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 640 242 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 242 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 242 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 242 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 242 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 242 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 242 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 242 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 242 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 242 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 242 70 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 569 243 71 1 @X 8 Ic zzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`q qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!!~> 640 243 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 243 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 243 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 243 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 243 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 243 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 243 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 243 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 243 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 243 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 243 71 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!!!~> 568 244 72 1 @X 8 Ic zzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 244 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 244 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 244 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 244 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 244 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 244 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 244 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 244 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 244 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 244 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 244 72 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!z~> 567 245 73 1 @X 8 Ic zzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz !!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzz!!!!~> 640 245 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 245 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 245 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 245 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 245 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 245 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 245 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 245 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 245 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 245 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 245 73 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!z!!!!~> 567 246 73 1 @X 8 Ic zzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz !!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzz!!!!~> 640 246 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 246 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 246 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 246 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 246 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 246 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 246 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 246 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 246 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 246 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 246 73 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!z!!!!~> 567 246 73 1 @X 8 Ic zzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz !!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzz!!!!~> 640 246 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 246 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 246 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 246 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 246 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 246 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 246 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 246 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 246 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 246 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 246 73 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!z!!!!~> 566 247 74 1 @X 8 Ic zzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 640 247 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 247 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 247 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 247 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 247 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 247 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 247 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 247 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 247 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 247 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 247 74 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zz!!!~> 565 248 75 2 @X 8 Ic zzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`q qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzz!!!~> 640 248 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 720 248 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 800 248 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 880 248 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 960 248 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1040 248 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1120 248 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1200 248 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1280 248 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1360 248 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1440 248 75 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Qqzzz!!!~> 564 250 76 1 @X 8 Ic zzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzz zz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 250 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 250 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 250 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 250 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 250 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 250 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 250 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 250 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 250 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 250 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 250 76 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq~> 563 251 77 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzz zzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Q~> 640 251 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 251 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 251 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 251 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 251 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 251 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 251 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 251 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 251 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 251 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 251 77 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Q~> 562 252 78 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzz zzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cq~> 640 252 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 720 252 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 800 252 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 880 252 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 960 252 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1040 252 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1120 252 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1200 252 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1280 252 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1360 252 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1440 252 78 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 561 254 79 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzz zzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr~> 640 254 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 254 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 254 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 254 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 254 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 254 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 254 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 254 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 254 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 254 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 254 79 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr~> 560 255 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 640 255 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 720 255 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 800 255 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 880 255 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 960 255 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1040 255 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1120 255 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1200 255 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1280 255 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1360 255 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1440 255 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 250 255 r3 559 257 1 1 rf 560 257 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 257 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 257 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 257 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 257 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 257 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 257 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 257 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 257 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 257 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 257 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 257 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> K 1520 257 1 1 rf 250 255 r3 558 258 2 1 rf 560 258 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 258 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 258 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 258 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 258 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 258 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 258 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 258 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 258 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 258 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 258 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 258 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> K 1520 258 2 1 rf 250 255 r3 557 259 3 1 rf 560 259 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 259 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 259 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 259 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 259 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 259 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 259 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 259 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 259 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 259 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 259 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 259 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> K 1520 259 3 1 rf 557 260 3 1 rf 560 260 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 260 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 260 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 260 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 260 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 260 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 260 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 260 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 260 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 260 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 260 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 260 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 250 255 r3 1520 260 3 1 rf K 556 261 4 1 rf 560 261 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 261 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 261 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 261 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 261 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 261 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 261 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 261 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 261 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 261 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 261 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 261 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 250 255 r3 1520 261 4 1 rf 555 262 5 2 @X 8 Ic zzzzzzz!!!~> 560 262 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 640 262 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 720 262 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 800 262 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 880 262 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 960 262 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1040 262 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1120 262 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1200 262 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1280 262 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1360 262 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1440 262 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1520 262 5 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> K 554 264 6 1 rf 560 264 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 264 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 264 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 264 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 264 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 264 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 264 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 264 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 264 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 264 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 264 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 264 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 250 255 r3 1520 264 6 1 rf K 553 265 7 1 rf 560 265 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 265 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 265 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 265 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 265 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 265 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 265 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 265 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 265 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 265 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 265 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 265 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 250 255 r3 1520 265 7 1 rf 552 266 8 2 @X 8 Ic zzzzzzzzzzzz~> 560 266 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 640 266 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 720 266 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 800 266 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 880 266 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 960 266 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1040 266 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1120 266 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1200 266 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1280 266 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1360 266 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1440 266 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1520 266 8 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> K 551 268 9 1 rf 560 268 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 268 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 268 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 268 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 268 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 268 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 268 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 268 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 268 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 268 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 268 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 268 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 250 255 r3 1520 268 9 1 rf K 550 269 10 1 rf 560 269 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 269 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 269 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 269 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 269 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 269 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 269 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 269 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 269 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 269 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 269 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 269 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 250 255 r3 1520 269 10 1 rf K 550 270 10 1 rf 560 270 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 270 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 270 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 270 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 270 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 270 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 270 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 270 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 270 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 270 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 270 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 270 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1520 270 10 1 rf 550 270 10 1 rf 560 270 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 270 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 270 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 270 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 270 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 270 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 270 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 270 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 270 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 270 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 270 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 270 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1520 270 10 1 rf 549 271 11 1 rf 560 271 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 271 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 271 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 271 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 271 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 271 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 271 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 271 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 271 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 271 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 271 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 271 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1520 271 11 1 @X 8 Ic zzzzzzz!!)lqrr~> 548 272 12 2 @X 8 Ic zzzzzzzzzzzzzzzzzz~> 560 272 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 640 272 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 720 272 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 800 272 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 880 272 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 960 272 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1040 272 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1120 272 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1200 272 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1280 272 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1360 272 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1440 272 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1520 272 12 2 @X 8 Ic zzzzzzz!!)lqs8)cqzzzzzzz!!)lqs8)cq~> 547 274 13 1 rf 560 274 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 274 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 274 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 274 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 274 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 274 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 274 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 274 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 274 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 274 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 274 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 274 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1520 274 13 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Q~> 546 275 14 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzz~> 560 275 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 640 275 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 720 275 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 800 275 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 880 275 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 960 275 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1040 275 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1120 275 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1200 275 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1280 275 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1360 275 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1440 275 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1520 275 14 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8N'!zzzzzzzqZ$Tls8Vrqs8)cq~> 545 277 15 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!!~> 560 277 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 640 277 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 720 277 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 800 277 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 880 277 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 960 277 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1040 277 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1120 277 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1200 277 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1280 277 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1360 277 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1440 277 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1520 277 15 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqrr<$!zzzzzz!!!#qs8Vrqs8)cqqZ$Tls8N~> 544 279 16 1 rf 560 279 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 279 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 279 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 279 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 279 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 279 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 279 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 279 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 279 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 279 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 279 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 279 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1520 279 16 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq~> 543 280 17 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 560 280 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 640 280 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 720 280 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 800 280 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 880 280 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 960 280 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1040 280 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1120 280 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1200 280 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1280 280 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1360 280 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1440 280 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1520 280 17 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzz!!!~> 542 282 18 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 560 282 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 282 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 282 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 282 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 282 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 282 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 282 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 282 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 282 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 282 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 282 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 282 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1520 282 18 1 rf 541 283 19 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzz!!!~> 560 283 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 640 283 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 720 283 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 800 283 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 880 283 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 960 283 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1040 283 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1120 283 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1200 283 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1280 283 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1360 283 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1440 283 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1520 283 19 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzz!!!~> 540 285 20 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 560 285 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 285 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 285 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 285 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 285 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 285 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 285 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 285 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 285 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 285 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 285 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 285 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1520 285 20 1 rf 539 286 21 2 @X 8 Ic !!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzz!!!~> 560 286 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 640 286 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 720 286 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 800 286 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 880 286 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 960 286 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1040 286 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1120 286 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1200 286 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1280 286 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1360 286 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1440 286 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1520 286 21 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Qqzzzzzzzzzzzzzz!!!#qs8N~> 538 288 22 2 @X 8 Ic z!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8N'!zzzzzzz~> 560 288 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 640 288 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 720 288 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 800 288 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 880 288 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 960 288 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1040 288 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1120 288 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1200 288 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1280 288 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1360 288 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1440 288 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1520 288 22 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cq~> 537 290 23 1 @X 8 Ic zzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr~> 560 290 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 290 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 290 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 290 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 290 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 290 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 290 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 290 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 290 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 290 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 290 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 290 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 290 23 1 rf 536 291 24 2 @X 8 Ic zzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzz!!)lqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 291 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 640 291 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 720 291 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 800 291 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 880 291 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 960 291 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1040 291 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1120 291 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1200 291 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1280 291 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1360 291 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1440 291 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1520 291 24 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz~> 535 293 25 1 @X 8 Ic zzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Q~> 560 293 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 293 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 293 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 293 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 293 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 293 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 293 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 293 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 293 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 293 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 293 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 293 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 293 25 1 rf 535 294 25 1 @X 8 Ic zzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Q~> 560 294 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 294 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 294 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 294 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 294 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 294 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 294 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 294 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 294 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 294 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 294 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 294 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 294 25 1 rf 534 294 26 2 @X 8 Ic zzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz!!)lqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 294 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 640 294 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 720 294 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 800 294 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 880 294 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 960 294 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1040 294 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1120 294 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1200 294 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1280 294 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1360 294 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1440 294 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1520 294 26 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz~> 533 296 27 2 @X 8 Ic zzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 560 296 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 640 296 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 720 296 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 800 296 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 880 296 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 960 296 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1040 296 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1120 296 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1200 296 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1280 296 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1360 296 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1440 296 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1520 296 27 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!!~> 532 298 28 2 @X 8 Ic zzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 298 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 640 298 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 720 298 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 800 298 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 880 298 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 960 298 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1040 298 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1120 298 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1200 298 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1280 298 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1360 298 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1440 298 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1520 298 28 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz~> 531 300 29 1 rf 560 300 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 300 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 300 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 300 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 300 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 300 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 300 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 300 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 300 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 300 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 300 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 300 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1520 300 29 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzz!!!!~> 530 301 30 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz~> 560 301 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 640 301 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 720 301 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 800 301 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 880 301 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 960 301 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1040 301 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1120 301 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1200 301 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1280 301 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1360 301 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1440 301 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1520 301 30 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 529 303 31 2 @X 8 Ic qZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qzzzzzzzzzzzzzzzzzzzzzz!!!~> 560 303 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 640 303 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 720 303 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 800 303 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 880 303 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 960 303 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1040 303 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1120 303 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1200 303 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1280 303 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1360 303 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1440 303 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1520 303 31 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzz!!!~> 528 305 32 1 @X 8 Ic qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 560 305 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 305 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 305 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 305 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 305 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 305 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 305 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 305 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 305 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 305 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 305 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 305 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1520 305 32 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzz~> 527 306 33 2 @X 8 Ic qZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!!~> 560 306 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 640 306 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 720 306 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 800 306 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 880 306 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 960 306 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1040 306 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1120 306 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1200 306 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1280 306 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1360 306 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1440 306 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1520 306 33 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzz!!!~> 526 308 34 2 @X 8 Ic qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz ~> 560 308 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 640 308 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 720 308 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 800 308 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 880 308 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 960 308 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1040 308 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1120 308 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1200 308 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1280 308 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1360 308 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1440 308 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1520 308 34 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzz~> 525 310 35 2 @X 8 Ic zzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 560 310 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 640 310 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 720 310 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 800 310 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 880 310 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 960 310 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1040 310 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1120 310 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1200 310 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1280 310 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1360 310 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1440 310 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1520 310 35 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzz!!!#qs8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzz!!!~> 524 312 36 1 @X 8 Ic zzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 560 312 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 312 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 312 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 312 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 312 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 312 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 312 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 312 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 312 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 312 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 312 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 312 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1520 312 36 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzz~> 523 313 37 2 @X 8 Ic zzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$QqzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 560 313 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 640 313 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 720 313 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 800 313 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 880 313 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 960 313 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1040 313 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1120 313 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1200 313 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1280 313 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1360 313 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1440 313 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1520 313 37 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzz!!!~> 522 315 38 2 @X 8 Ic zzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 560 315 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 640 315 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 720 315 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 800 315 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 880 315 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 960 315 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1040 315 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1120 315 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1200 315 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1280 315 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1360 315 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1440 315 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1520 315 38 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzz~> 521 317 39 1 @X 8 Ic zzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzz!!~> 560 317 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 317 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 317 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 317 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 317 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 317 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 317 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 317 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 317 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 317 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 317 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 317 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1520 317 39 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzz!!~> 521 318 39 1 @X 8 Ic zzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzz!!~> 560 318 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 318 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 318 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 318 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 318 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 318 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 318 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 318 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 318 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 318 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 318 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 318 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1520 318 39 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzz!!~> 521 318 39 1 @X 8 Ic zzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzz!!~> 560 318 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 318 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 318 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 318 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 318 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 318 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 318 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 318 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 318 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 318 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 318 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 318 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1520 318 39 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzz!!~> 520 319 40 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 560 319 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 640 319 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 720 319 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 800 319 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 880 319 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 960 319 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1040 319 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1120 319 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1200 319 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1280 319 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1360 319 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1440 319 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1520 319 40 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 519 321 41 2 @X 8 Ic zzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 560 321 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 640 321 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 720 321 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 800 321 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 880 321 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 960 321 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1040 321 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1120 321 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1200 321 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1280 321 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1360 321 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1440 321 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1520 321 41 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz !!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzz!!!~> 518 323 42 2 @X 8 Ic zzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzz zqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 560 323 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 640 323 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 720 323 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 800 323 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 880 323 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 960 323 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1040 323 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1120 323 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1200 323 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1280 323 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1360 323 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1440 323 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1520 323 42 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzz !!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzz~> 517 325 43 1 @X 8 Ic zzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!!~> 560 325 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 325 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 325 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 325 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 325 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 325 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 325 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 325 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 325 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 325 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 325 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 325 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1520 325 43 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzz!!~> 516 326 44 2 @X 8 Ic zzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzz zzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 560 326 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 640 326 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 720 326 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 800 326 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 880 326 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 960 326 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1040 326 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1120 326 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1200 326 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1280 326 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1360 326 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1440 326 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1520 326 44 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzz~> 515 328 45 2 @X 8 Ic zzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzz zzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 560 328 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 640 328 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 720 328 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 800 328 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 880 328 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 960 328 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1040 328 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1120 328 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1200 328 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1280 328 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1360 328 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1440 328 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1520 328 45 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz z!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzz!!!~> 514 330 46 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 560 330 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 640 330 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 720 330 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 800 330 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 880 330 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 960 330 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1040 330 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1120 330 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1200 330 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1280 330 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1360 330 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1440 330 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1520 330 46 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzz~> 513 332 47 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 560 332 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 640 332 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 720 332 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 800 332 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 880 332 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 960 332 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1040 332 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1120 332 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1200 332 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1280 332 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1360 332 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1440 332 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1520 332 47 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzz!!!~> 512 334 48 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 334 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 640 334 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 720 334 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 800 334 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 880 334 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 960 334 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1040 334 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1120 334 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1200 334 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1280 334 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1360 334 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1440 334 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1520 334 48 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzz~> 511 336 49 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 560 336 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 640 336 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 720 336 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 800 336 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 880 336 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 960 336 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1040 336 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1120 336 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1200 336 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1280 336 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1360 336 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1440 336 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1520 336 49 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzz!!!~> 510 338 50 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 338 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 640 338 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 720 338 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 800 338 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 880 338 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 960 338 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1040 338 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1120 338 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1200 338 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1280 338 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1360 338 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1440 338 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1520 338 50 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 509 340 51 2 @X 8 Ic zzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz !!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!!~> 560 340 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 640 340 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 720 340 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 800 340 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 880 340 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 960 340 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1040 340 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1120 340 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1200 340 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1280 340 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1360 340 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1440 340 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1520 340 51 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzz zzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qq!!!~> 508 342 52 2 @X 8 Ic zzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzzz zqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 560 342 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 640 342 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 720 342 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 800 342 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 880 342 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 960 342 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1040 342 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1120 342 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1200 342 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1280 342 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1360 342 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1440 342 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1520 342 52 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzz zzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!z~> 508 344 52 1 @X 8 Ic zzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 560 344 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 344 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 344 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 344 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 344 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 344 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 344 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 344 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 344 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 344 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 344 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 344 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1520 344 52 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!z~> 507 344 53 2 @X 8 Ic zzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzzzzzz zzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!!~> 560 344 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 640 344 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 720 344 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 800 344 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 880 344 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 960 344 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1040 344 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1120 344 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1200 344 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1280 344 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1360 344 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1440 344 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1520 344 53 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!z!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzz zzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!z!!!~> 506 346 54 3 @X 8 Ic zzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzz zzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz !!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!!~> 560 346 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 346 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 346 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 346 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 346 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 346 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 346 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 346 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 346 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 346 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 346 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 346 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1520 346 54 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzz zzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zz !!!~> 505 349 55 2 @X 8 Ic zzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 560 349 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 640 349 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 720 349 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 800 349 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 880 349 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 960 349 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1040 349 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1120 349 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1200 349 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1280 349 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1360 349 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1440 349 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1520 349 55 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrq rr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8N~> 504 351 56 2 @X 8 Ic zzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 560 351 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 640 351 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 720 351 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 800 351 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 880 351 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 960 351 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1040 351 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1120 351 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1200 351 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1280 351 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1360 351 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1440 351 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1520 351 56 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq~> 503 353 57 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 560 353 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 640 353 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 720 353 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 800 353 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 880 353 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 960 353 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1040 353 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1120 353 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1200 353 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1280 353 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1360 353 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1440 353 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1520 353 57 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzz zzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8N~> 502 355 58 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 560 355 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 640 355 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 720 355 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 800 355 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 880 355 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 960 355 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1040 355 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1120 355 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1200 355 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1280 355 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1360 355 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1440 355 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1520 355 58 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 501 357 59 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzz zzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzz zzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzz !!!!~> 560 357 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 357 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 357 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 357 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 357 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 357 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 357 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 357 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 357 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 357 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 357 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 357 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1520 357 59 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrq rr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Q~> 500 360 60 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 560 360 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 640 360 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 720 360 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 800 360 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 880 360 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 960 360 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1040 360 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1120 360 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1200 360 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1280 360 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1360 360 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1440 360 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1520 360 60 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 499 362 61 2 @X 8 Ic !!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrq s8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 560 362 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 640 362 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 720 362 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 800 362 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 880 362 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 960 362 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1040 362 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1120 362 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1200 362 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1280 362 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1360 362 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1440 362 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1520 362 61 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Qqzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzz zzzzzz!!!#qs8N~> 498 364 62 2 @X 8 Ic z!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzz zzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 560 364 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 640 364 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 720 364 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 800 364 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 880 364 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 960 364 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1040 364 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1120 364 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1200 364 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1280 364 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1360 364 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1440 364 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1520 364 62 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz zzzzzzz!!)lqs8)cq~> 497 366 63 2 @X 8 Ic zz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzz zzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 560 366 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 640 366 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 720 366 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 800 366 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 880 366 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 960 366 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1040 366 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1120 366 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1200 366 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1280 366 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1360 366 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1440 366 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1520 366 63 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqrr<$!zzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzz zzzzzzzzzzzz!;c`qqZ$Tls8N~> 496 368 64 2 @X 8 Ic zzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 560 368 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 640 368 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 720 368 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 800 368 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 880 368 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 960 368 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1040 368 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1120 368 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1200 368 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1280 368 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1360 368 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1440 368 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1520 368 64 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzz zzzzzzzzzzzzzqZ$Tls8Vrqs8)cq~> 496 370 64 1 @X 8 Ic zzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 370 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 370 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 370 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 370 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 370 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 370 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 370 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 370 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 370 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 370 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 370 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 370 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 370 64 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz z~> 496 370 64 1 @X 8 Ic zzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 370 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 370 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 370 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 370 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 370 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 370 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 370 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 370 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 370 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 370 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 370 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 370 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 370 64 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz z~> 495 371 65 2 @X 8 Ic zzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`q qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$QqzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 560 371 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 640 371 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 720 371 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 800 371 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 880 371 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 960 371 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1040 371 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1120 371 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1200 371 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1280 371 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1360 371 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1440 371 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1520 371 65 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzz zzz!!!~> 494 373 66 3 @X 8 Ic zzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz zzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 560 373 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 373 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 373 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 373 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 373 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 373 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 373 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 373 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 373 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 373 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 373 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 373 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 373 66 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz zzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzz zzzzzzz!!!~> 493 376 67 2 @X 8 Ic zzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz !!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8N~> 560 376 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 640 376 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 720 376 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 800 376 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 880 376 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 960 376 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1040 376 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1120 376 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1200 376 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1280 376 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1360 376 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1440 376 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1520 376 67 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzz zzzzzzzzzz!!!~> 492 378 68 3 @X 8 Ic zzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz !!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzz zz~> 560 378 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 378 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 378 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 378 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 378 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 378 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 378 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 378 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 378 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 378 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 378 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 378 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1520 378 68 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzz zzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzz~> 491 381 69 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzz zzzzzzzzzzzzz!!!~> 560 381 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 640 381 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 720 381 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 800 381 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 880 381 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 960 381 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1040 381 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1120 381 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1200 381 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1280 381 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1360 381 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1440 381 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1520 381 69 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrq rr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzz zzzzz!!!~> 490 383 70 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzz zzzzzzzzzzzzzzzz!!!~> 560 383 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 383 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 383 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 383 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 383 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 383 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 383 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 383 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 383 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 383 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 383 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 383 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1520 383 70 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 489 386 71 3 @X 8 Ic qZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzz zzzzzzzzzz!;c`qzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!!~> 560 386 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 386 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 386 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 386 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 386 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 386 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 386 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 386 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 386 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 386 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 386 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 386 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1520 386 71 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz!!!!~> 488 389 72 2 @X 8 Ic qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz !!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 560 389 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 640 389 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 720 389 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 800 389 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 880 389 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 960 389 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1040 389 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1120 389 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1200 389 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1280 389 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1360 389 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1440 389 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1520 389 72 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz zz~> 487 391 73 3 @X 8 Ic zz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$QqzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz zzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#q s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzz!!~> 560 391 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 391 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 391 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 391 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 391 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 391 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 391 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 391 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 391 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 391 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 391 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 391 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1520 391 73 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzz!!~> 486 394 74 2 @X 8 Ic zzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz zzzzzzzz~> 560 394 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 640 394 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 720 394 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 800 394 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 880 394 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 960 394 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1040 394 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1120 394 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1200 394 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1280 394 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1360 394 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1440 394 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1520 394 74 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzz~> 485 396 75 1 @X 8 Ic zzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzz!!~> 560 396 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 396 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 396 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 396 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 396 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 396 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 396 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 396 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 396 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 396 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 396 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 396 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1520 396 75 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzz!!~> 485 397 75 1 @X 8 Ic zzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzz!!~> 560 397 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 397 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 397 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 397 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 397 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 397 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 397 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 397 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 397 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 397 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 397 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 397 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1520 397 75 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzz!!~> 485 397 75 2 @X 8 Ic zzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zz zzzzzzzzzzzz!!!~> 560 397 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 640 397 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 720 397 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 800 397 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 880 397 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 960 397 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1040 397 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1120 397 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1200 397 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1280 397 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1360 397 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1440 397 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1520 397 75 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrq rr<$!zzzzzzzzzz!!!~> 484 399 76 3 @X 8 Ic zzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8N'!zzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzz zzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 560 399 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 399 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 399 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 399 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 399 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 399 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 399 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 399 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 399 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 399 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 399 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 399 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1520 399 76 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8N'!zzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzz zzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzz~> 483 402 77 3 @X 8 Ic zzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz !!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzz zzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!!~> 560 402 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 402 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 402 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 402 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 402 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 402 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 402 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 402 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 402 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 402 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 402 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 402 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1520 402 77 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzz zzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzz!!~> 482 405 78 3 @X 8 Ic zzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz !!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzz zzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 560 405 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 405 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 405 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 405 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 405 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 405 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 405 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 405 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 405 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 405 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 405 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 405 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1520 405 78 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzz zzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzz!!!~> 481 408 79 3 @X 8 Ic zzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz !;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qq zzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Q~> 560 408 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 408 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 408 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 408 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 408 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 408 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 408 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 408 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 408 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 408 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 408 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 408 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 408 79 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$QqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'! zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Q~> 480 411 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 411 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 411 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 411 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 411 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 411 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 411 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 411 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 411 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 411 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 411 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 411 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 411 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 411 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 479 414 1 3 @X 8 Ic qZ$Tls8Vrqrr~> 480 414 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 414 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 414 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 414 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 414 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 414 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 414 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 414 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 414 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 414 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 414 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 414 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 414 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 414 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1600 414 1 3 @X 8 Ic zz!!~> 478 417 2 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8N~> 480 417 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 417 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 417 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 417 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 417 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 417 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 417 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 417 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 417 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 417 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 417 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 417 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 417 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 417 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1600 417 2 3 @X 8 Ic zzzz!!!~> 477 420 3 3 @X 8 Ic zzzzzz!!!!~> 480 420 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 560 420 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 420 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 420 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 420 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 420 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 420 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 420 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 420 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 420 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 420 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 420 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 420 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1520 420 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1600 420 3 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Q~> 476 423 4 1 rf 480 423 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 560 423 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 423 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 423 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 423 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 423 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 423 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 423 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 423 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 423 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 423 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 423 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 423 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1520 423 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 250 255 r3 1600 423 4 1 rf K 476 424 4 1 rf 480 424 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 560 424 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 424 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 424 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 424 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 424 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 424 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 424 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 424 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 424 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 424 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 424 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 424 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1520 424 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 250 255 r3 1600 424 4 1 rf 476 424 4 2 @X 8 Ic zzzzzz~> 480 424 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 560 424 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 640 424 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 720 424 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 800 424 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 880 424 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 960 424 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1040 424 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1120 424 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1200 424 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1280 424 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1360 424 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1440 424 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1520 424 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1600 424 4 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 475 426 5 3 @X 8 Ic zzzzzzzzzzz!!~> 480 426 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 560 426 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 426 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 426 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 426 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 426 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 426 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 426 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 426 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 426 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 426 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 426 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 426 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1520 426 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1600 426 5 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr~> 474 429 6 4 @X 8 Ic zzzzzzzzzzzzzzzzzz~> 480 429 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 560 429 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 429 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 429 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 429 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 429 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 429 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 429 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 429 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 429 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 429 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 429 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 429 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1520 429 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1600 429 6 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzz~> 473 433 7 3 @X 8 Ic zzzzzzzzzzzzzzz!!!!~> 480 433 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 560 433 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 433 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 433 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 433 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 433 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 433 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 433 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 433 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 433 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 433 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 433 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 433 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1520 433 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1600 433 7 3 @X 8 Ic zzzzzzzzzzzzzzz!!!!~> 472 436 8 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzz~> 480 436 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 560 436 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 436 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 436 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 436 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 436 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 436 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 436 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 436 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 436 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 436 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 436 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 436 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1520 436 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1600 436 8 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzz~> 471 440 9 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzz~> 480 440 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 560 440 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 440 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 440 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 440 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 440 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 440 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 440 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 440 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 440 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 440 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 440 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 440 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1520 440 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1600 440 9 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzz~> 470 444 10 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!!~> 480 444 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 560 444 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 444 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 444 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 444 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 444 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 444 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 444 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 444 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 444 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 444 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 444 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 444 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1520 444 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1600 444 10 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!!~> 469 447 11 4 @X 8 Ic qZ$Qqzzzzzzz!;c`qzzzzzzz!!)lqrr<$!zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrq s8)cq~> 480 447 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 447 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 447 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 447 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 447 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 447 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 447 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 447 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 447 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 447 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 447 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 447 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 447 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 447 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1600 447 11 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz~> 468 451 12 1 @X 8 Ic z!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 480 451 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 451 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 451 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 451 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 451 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 451 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 451 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 451 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 451 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 451 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 451 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 451 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 451 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 451 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> K 1600 451 12 1 rf 468 452 12 1 @X 8 Ic z!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 480 452 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 452 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 452 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 452 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 452 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 452 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 452 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 452 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 452 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 452 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 452 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 452 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 452 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 452 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1600 452 12 1 rf 468 452 12 3 @X 8 Ic z!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrq s8)cqz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 480 452 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 452 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 452 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 452 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 452 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 452 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 452 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 452 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 452 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 452 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 452 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 452 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 452 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 452 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1600 452 12 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzz~> 467 455 13 4 @X 8 Ic zz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$QqzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8N'!z!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!z!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 480 455 80 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 455 80 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 455 80 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 455 80 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 455 80 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 455 80 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 455 80 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 455 80 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 455 80 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 455 80 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 455 80 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 455 80 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 455 80 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 455 80 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1600 455 13 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz~> 466 459 14 4 @X 8 Ic zzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz~> 480 459 80 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 560 459 80 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 459 80 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 459 80 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 459 80 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 459 80 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 459 80 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 459 80 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 459 80 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 459 80 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 459 80 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 459 80 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 459 80 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1520 459 80 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1600 459 14 4 @X 8 Ic zzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8N'!zz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzz~> 465 463 15 5 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!~> 480 463 80 5 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 560 463 80 5 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 463 80 5 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 463 80 5 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 463 80 5 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 463 80 5 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 463 80 5 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 463 80 5 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 463 80 5 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 463 80 5 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 463 80 5 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 463 80 5 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 463 80 5 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1520 463 80 5 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1600 463 15 5 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Qqzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8Vrqrr<$!zzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzz!!~> 464 468 16 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz~> 480 468 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 560 468 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 468 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 468 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 468 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 468 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 468 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 468 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 468 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 468 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 468 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 468 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 468 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1520 468 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1600 468 16 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8N'!zzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq~> 463 472 17 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz~> 480 472 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 560 472 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 472 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 472 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 472 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 472 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 472 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 472 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 472 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 472 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 472 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 472 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 472 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1520 472 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1600 472 17 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzz zzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 462 476 18 5 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrq s8)cqzzzzzzz!!!~> 480 476 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 560 476 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 640 476 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 720 476 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 800 476 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 880 476 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 960 476 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 1040 476 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 1120 476 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 1200 476 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 1280 476 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 1360 476 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 1440 476 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 1520 476 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 1600 476 18 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzzzzzzzz!!!~> 461 481 19 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!!~> 480 481 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 560 481 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 481 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 481 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 481 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 481 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 481 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 481 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 481 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 481 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 481 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 481 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 481 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1520 481 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1600 481 19 1 rf 461 481 19 5 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8N'!zzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!!~> 480 481 80 5 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 560 481 80 5 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 640 481 80 5 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 720 481 80 5 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 800 481 80 5 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 880 481 80 5 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 960 481 80 5 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 1040 481 80 5 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 1120 481 80 5 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 1200 481 80 5 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 1280 481 80 5 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 1360 481 80 5 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 1440 481 80 5 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 1520 481 80 5 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 1600 481 19 5 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!~> 460 486 20 6 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 480 486 80 6 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 486 80 6 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 486 80 6 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 486 80 6 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 486 80 6 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 486 80 6 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 486 80 6 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 486 80 6 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 486 80 6 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 486 80 6 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 486 80 6 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 486 80 6 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 486 80 6 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 486 80 6 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1600 486 20 6 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz zzzzzzzzzzz~> 459 492 21 5 @X 8 Ic zzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$QqzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzz !!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Q~> 480 492 80 5 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 492 80 5 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 492 80 5 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 492 80 5 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 492 80 5 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 492 80 5 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 492 80 5 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 492 80 5 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 492 80 5 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 492 80 5 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 492 80 5 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 492 80 5 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 492 80 5 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 492 80 5 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1600 492 21 5 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz !!!!~> 458 497 22 3 @X 8 Ic zzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzz!!)lqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 480 497 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 497 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 497 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 497 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 497 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 497 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 497 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 497 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 497 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 497 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 497 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 497 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 497 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 497 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1600 497 22 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!!~> 458 500 22 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!!~> 480 500 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 560 500 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 500 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 500 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 500 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 500 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 500 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 500 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 500 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 500 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 500 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 500 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 500 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1520 500 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1600 500 22 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzz!!!~> 457 503 23 6 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzzzzzzzzzzzz!!!~> 480 503 80 6 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 560 503 80 6 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 503 80 6 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 503 80 6 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 503 80 6 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 503 80 6 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 503 80 6 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 503 80 6 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 503 80 6 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 503 80 6 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 503 80 6 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 503 80 6 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 503 80 6 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1520 503 80 6 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1600 503 23 6 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Qqzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzz!!!#qs8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8N'!zzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzz!!!~> 456 509 24 1 rf 480 509 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 560 509 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 509 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 509 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 509 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 509 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 509 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 509 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 509 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 509 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 509 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 509 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 509 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1520 509 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1600 509 24 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzz~> 456 510 24 1 @X 8 Ic qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 480 510 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 560 510 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 510 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 510 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 510 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 510 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 510 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 510 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 510 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 510 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 510 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 510 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 510 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1520 510 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1600 510 24 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzz~> 456 510 24 6 @X 8 Ic qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqzzzz zzzzzzzzzzzqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqzzzzzzzzzzzzzzz~> 480 510 80 6 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 560 510 80 6 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 510 80 6 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 510 80 6 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 510 80 6 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 510 80 6 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 510 80 6 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 510 80 6 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 510 80 6 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 510 80 6 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 510 80 6 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 510 80 6 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 510 80 6 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1520 510 80 6 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1600 510 24 6 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzz z!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzz~> 455 516 25 8 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lq s8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzz!!!#q s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 480 516 80 8 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 560 516 80 8 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 516 80 8 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 516 80 8 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 516 80 8 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 516 80 8 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 516 80 8 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 516 80 8 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 516 80 8 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 516 80 8 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 516 80 8 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 516 80 8 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 516 80 8 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1520 516 80 8 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1600 516 25 8 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$QqzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzz zz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzqZ$Tls8Vrq s8)cqqZ$Qqzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tl s8Vrqrr<$!zzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cq~> 454 524 26 8 @X 8 Ic zzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzz zzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz!!)lqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 480 524 80 8 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 524 80 8 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 524 80 8 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 524 80 8 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 524 80 8 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 524 80 8 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 524 80 8 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 524 80 8 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 524 80 8 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 524 80 8 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 524 80 8 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 524 80 8 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 524 80 8 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 524 80 8 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1600 524 26 8 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz~> 453 532 27 7 @X 8 Ic zzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Qqzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzz!!!#qs8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Q~> 480 532 80 7 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 560 532 80 7 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 640 532 80 7 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 720 532 80 7 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 800 532 80 7 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 880 532 80 7 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 960 532 80 7 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1040 532 80 7 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1120 532 80 7 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1200 532 80 7 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1280 532 80 7 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1360 532 80 7 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1440 532 80 7 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1520 532 80 7 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1600 532 27 7 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!!!~> 453 539 27 1 @X 8 Ic zzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr~> 480 539 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 539 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 539 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 539 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 539 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 539 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 539 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 539 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 539 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 539 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 539 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 539 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 539 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 539 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1600 539 27 1 rf 453 539 27 1 @X 8 Ic zzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr~> 480 539 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 539 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 539 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 539 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 539 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 539 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 539 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 539 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 539 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 539 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 539 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 539 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 539 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 539 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1600 539 27 1 rf 452 540 28 13 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrq s8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 480 540 80 13 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 560 540 80 13 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 540 80 13 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 540 80 13 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 540 80 13 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 540 80 13 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 540 80 13 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 540 80 13 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 540 80 13 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 540 80 13 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 540 80 13 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 540 80 13 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 540 80 13 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1520 540 80 13 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1600 540 28 13 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8N'!zzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz zzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzz zzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!z zzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzz!!)lq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzz~> 451 553 29 13 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzz !;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Qqzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz !!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrq rr<$!zzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzz!;c`q qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$QqzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzz !!!!~> 480 553 80 13 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz zzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 560 553 80 13 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz zzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 553 80 13 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz zzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 553 80 13 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz zzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 553 80 13 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz zzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 553 80 13 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz zzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 553 80 13 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz zzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 553 80 13 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz zzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 553 80 13 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz zzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 553 80 13 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz zzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 553 80 13 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz zzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 553 80 13 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz zzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 553 80 13 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz zzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1520 553 80 13 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz zzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1600 553 29 13 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$QqzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'! zzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzz!!)lq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$QqzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzz zzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzz zzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Q~> 450 566 30 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzz!!!~> 480 566 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 560 566 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 566 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 566 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 566 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 566 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 566 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 566 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 566 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 566 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 566 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 566 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 566 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1520 566 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1600 566 30 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N~> 450 569 30 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 480 569 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 560 569 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 569 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 569 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 569 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 569 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 569 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 569 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 569 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 569 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 569 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 569 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 569 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1520 569 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1600 569 30 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 450 569 30 11 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 480 569 80 11 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 569 80 11 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 569 80 11 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 569 80 11 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 569 80 11 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 569 80 11 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 569 80 11 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 569 80 11 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 569 80 11 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 569 80 11 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 569 80 11 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 569 80 11 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 569 80 11 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 569 80 11 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1600 569 30 11 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!!~> 450 580 30 20 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrq s8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzz zzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzz zzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 480 580 80 20 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 560 580 80 20 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 580 80 20 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 580 80 20 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 580 80 20 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 580 80 20 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 580 80 20 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 580 80 20 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 580 80 20 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 580 80 20 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 580 80 20 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 580 80 20 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 580 80 20 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1520 580 80 20 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1600 580 30 20 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 450 600 30 31 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzz zzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 480 600 80 31 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 560 600 80 31 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 600 80 31 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 600 80 31 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 600 80 31 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 600 80 31 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 600 80 31 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 600 80 31 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 600 80 31 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 600 80 31 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 600 80 31 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 600 80 31 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 600 80 31 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1520 600 80 31 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1600 600 30 31 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrq s8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzz zzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzz zzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 450 630 30 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 480 630 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 560 630 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 630 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 630 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 630 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 630 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 630 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 630 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 630 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 630 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 630 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 630 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 630 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1520 630 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1600 630 30 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 450 631 30 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzz zzzzz!!!~> 480 631 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 560 631 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 631 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 631 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 631 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 631 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 631 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 631 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 631 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 631 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 631 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 631 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 631 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1520 631 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1600 631 30 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzz!!!~> 451 634 29 13 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzz !;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Qqzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzz zzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$QqzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrq rr<$!zzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzz!;c`q qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$QqzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzz !!!!~> 480 634 80 13 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 560 634 80 13 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 634 80 13 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 634 80 13 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 634 80 13 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 634 80 13 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 634 80 13 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 634 80 13 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 634 80 13 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 634 80 13 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 634 80 13 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 634 80 13 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 634 80 13 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1520 634 80 13 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1600 634 29 13 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$QqzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'! zzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzz!!)lq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzz zzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzz zzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Q~> 452 647 28 13 @X 8 Ic zzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzz zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrq s8)cqzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzz!!)lq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzz !!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 480 647 80 13 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 647 80 13 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 647 80 13 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 647 80 13 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 647 80 13 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 647 80 13 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 647 80 13 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 647 80 13 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 647 80 13 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 647 80 13 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 647 80 13 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 647 80 13 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 647 80 13 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 647 80 13 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1600 647 28 13 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz~> 453 660 27 1 rf 480 660 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 560 660 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 660 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 660 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 660 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 660 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 660 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 660 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 660 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 660 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 660 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 660 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 660 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1520 660 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1600 660 27 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz!!~> 453 660 27 1 rf 480 660 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 560 660 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 660 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 660 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 660 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 660 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 660 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 660 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 660 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 660 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 660 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 660 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 660 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1520 660 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1600 660 27 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz!!~> 453 661 27 7 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!!!~> 480 661 80 7 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 560 661 80 7 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 640 661 80 7 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 720 661 80 7 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 800 661 80 7 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 880 661 80 7 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 960 661 80 7 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1040 661 80 7 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1120 661 80 7 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1200 661 80 7 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1280 661 80 7 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1360 661 80 7 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1440 661 80 7 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1520 661 80 7 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1600 661 27 7 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Qqzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzz !!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzz!!!!~> 454 668 26 8 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz !!)lqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz !!)lqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz !!)lqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 480 668 80 8 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 560 668 80 8 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 668 80 8 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 668 80 8 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 668 80 8 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 668 80 8 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 668 80 8 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 668 80 8 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 668 80 8 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 668 80 8 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 668 80 8 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 668 80 8 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 668 80 8 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1520 668 80 8 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1600 668 26 8 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzz zzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzz~> 455 676 25 8 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lq s8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzz!!!#q s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 480 676 80 8 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 560 676 80 8 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 676 80 8 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 676 80 8 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 676 80 8 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 676 80 8 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 676 80 8 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 676 80 8 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 676 80 8 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 676 80 8 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 676 80 8 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 676 80 8 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 676 80 8 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1520 676 80 8 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1600 676 25 8 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$QqzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzz zz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzqZ$Tls8Vrq s8)cqqZ$Qqzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tl s8Vrqrr<$!zzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cq~> 456 684 24 6 @X 8 Ic zzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8N'!zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8N'!zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 480 684 80 6 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 560 684 80 6 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 684 80 6 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 684 80 6 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 684 80 6 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 684 80 6 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 684 80 6 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 684 80 6 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 684 80 6 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 684 80 6 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 684 80 6 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 684 80 6 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 684 80 6 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1520 684 80 6 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1600 684 24 6 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqzzzz zzzzzzzzzzzqZ$Tls8Vrqs8)cq~> 456 689 24 1 @X 8 Ic zzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 480 689 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 560 689 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 689 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 689 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 689 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 689 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 689 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 689 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 689 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 689 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 689 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 689 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 689 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1520 689 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1600 689 24 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq~> 456 690 24 1 @X 8 Ic zzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 480 690 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 690 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 690 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 690 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 690 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 690 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 690 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 690 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 690 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 690 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 690 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 690 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 690 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 690 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1600 690 24 1 rf 457 691 23 6 @X 8 Ic zzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzz zzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 480 691 80 6 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 691 80 6 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 691 80 6 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 691 80 6 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 691 80 6 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 691 80 6 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 691 80 6 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 691 80 6 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 691 80 6 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 691 80 6 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 691 80 6 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 691 80 6 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 691 80 6 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 691 80 6 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1600 691 23 6 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzzzzzzzzzzzz!!!~> 458 697 22 6 @X 8 Ic zzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzz!!)lqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz~> 480 697 80 6 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 560 697 80 6 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 697 80 6 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 697 80 6 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 697 80 6 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 697 80 6 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 697 80 6 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 697 80 6 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 697 80 6 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 697 80 6 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 697 80 6 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 697 80 6 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 697 80 6 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1520 697 80 6 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1600 697 22 6 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzz~> 459 703 21 5 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz !!!!~> 480 703 80 5 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 560 703 80 5 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 703 80 5 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 703 80 5 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 703 80 5 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 703 80 5 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 703 80 5 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 703 80 5 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 703 80 5 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 703 80 5 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 703 80 5 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 703 80 5 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 703 80 5 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1520 703 80 5 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1600 703 21 5 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqrr<$!zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzz!;c`q qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$QqzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8N'!zzzzzzz!!!!~> 460 708 20 6 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz zzzzzzzzzzz~> 480 708 80 6 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 560 708 80 6 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 708 80 6 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 708 80 6 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 708 80 6 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 708 80 6 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 708 80 6 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 708 80 6 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 708 80 6 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 708 80 6 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 708 80 6 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 708 80 6 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 708 80 6 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1520 708 80 6 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1600 708 20 6 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!)lq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrq s8)cqzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 461 714 19 5 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!~> 480 714 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 560 714 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 714 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 714 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 714 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 714 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 714 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 714 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 714 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 714 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 714 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 714 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 714 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1520 714 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1600 714 19 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8N'!zzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!;c`qqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr~> 461 718 19 1 rf 480 718 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 560 718 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 718 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 718 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 718 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 718 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 718 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 718 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 718 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 718 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 718 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 718 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 718 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1520 718 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1600 718 19 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr~> 462 719 18 5 @X 8 Ic zzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqzzzzzzz!!!~> 480 719 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 560 719 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 640 719 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 720 719 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 800 719 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 880 719 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 960 719 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 1040 719 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 1120 719 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 1200 719 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 1280 719 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 1360 719 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 1440 719 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 1520 719 80 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz ~> 1600 719 18 5 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzzzz!!!~> 463 724 17 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!)lq s8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 480 724 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 560 724 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 724 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 724 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 724 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 724 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 724 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 724 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 724 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 724 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 724 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 724 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 724 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1520 724 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1600 724 17 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz~> 464 728 16 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 480 728 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 728 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 728 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 728 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 728 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 728 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 728 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 728 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 728 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 728 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 728 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 728 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 728 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 728 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1600 728 16 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz~> 465 732 15 5 @X 8 Ic zzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8N'!zzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzz!!)lqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr~> 480 732 80 5 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 732 80 5 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 732 80 5 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 732 80 5 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 732 80 5 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 732 80 5 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 732 80 5 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 732 80 5 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 732 80 5 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 732 80 5 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 732 80 5 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 732 80 5 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 732 80 5 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 732 80 5 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1600 732 15 5 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!~> 466 737 14 3 @X 8 Ic zzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 480 737 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 737 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 737 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 737 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 737 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 737 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 737 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 737 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 737 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 737 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 737 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 737 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 737 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 737 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1600 737 14 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!!~> 466 740 14 1 rf 480 740 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 560 740 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 740 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 740 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 740 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 740 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 740 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 740 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 740 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 740 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 740 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 740 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 740 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1520 740 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1600 740 14 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zz!!!~> 467 741 13 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz~> 480 741 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 560 741 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 741 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 741 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 741 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 741 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 741 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 741 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 741 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 741 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 741 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 741 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 741 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1520 741 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1600 741 13 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!z!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqrr<$!z!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Qqzz~> 468 745 12 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzz~> 480 745 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 560 745 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 745 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 745 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 745 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 745 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 745 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 745 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 745 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 745 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 745 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 745 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 745 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1520 745 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1600 745 12 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8N'!zqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!z~> 468 747 12 1 rf 480 747 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 560 747 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 747 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 747 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 747 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 747 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 747 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 747 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 747 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 747 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 747 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 747 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 747 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1520 747 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1600 747 12 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!z~> 468 748 12 1 rf 480 748 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 560 748 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 748 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 748 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 748 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 748 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 748 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 748 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 748 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 748 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 748 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 748 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 748 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1520 748 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1600 748 12 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!z~> 469 749 11 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz~> 480 749 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 560 749 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 749 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 749 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 749 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 749 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 749 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 749 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 749 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 749 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 749 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 749 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 749 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1520 749 80 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1600 749 11 4 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz!!!#qs8N'!zzzzzzzqZ$Qqzzzzzzz !;c`q~> 470 753 10 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!!~> 480 753 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 560 753 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 753 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 753 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 753 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 753 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 753 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 753 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 753 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 753 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 753 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 753 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 753 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1520 753 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1600 753 10 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!!~> 471 756 9 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzz~> 480 756 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 560 756 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 756 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 756 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 756 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 756 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 756 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 756 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 756 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 756 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 756 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 756 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 756 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1520 756 80 4 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1600 756 9 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzz~> 472 760 8 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzz~> 480 760 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 560 760 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 760 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 760 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 760 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 760 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 760 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 760 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 760 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 760 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 760 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 760 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 760 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1520 760 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1600 760 8 4 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzz~> 473 764 7 3 @X 8 Ic zzzzzzzzzzzzzzz!!!!~> 480 764 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 560 764 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 764 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 764 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 764 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 764 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 764 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 764 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 764 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 764 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 764 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 764 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 764 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1520 764 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1600 764 7 3 @X 8 Ic zzzzzzzzzzzzzzz!!!!~> 474 767 6 4 @X 8 Ic zzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq~> 480 767 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 767 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 767 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 767 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 767 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 767 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 767 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 767 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 767 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 767 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 767 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 767 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 767 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 767 80 4 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1600 767 6 4 @X 8 Ic zzzzzzzzzzzzzzzzzz~> 475 771 5 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr~> 480 771 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 771 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 771 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 771 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 771 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 771 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 771 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 771 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 771 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 771 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 771 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 771 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 771 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 771 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1600 771 5 3 @X 8 Ic zzzzzzzzzzz!!~> 476 774 4 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 480 774 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 560 774 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 640 774 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 720 774 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 800 774 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 880 774 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 960 774 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1040 774 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1120 774 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1200 774 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1280 774 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1360 774 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1440 774 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1520 774 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1600 774 4 2 @X 8 Ic zzzzzz~> 250 255 r3 476 775 4 1 rf 480 775 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 775 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 775 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 775 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 775 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 775 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 775 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 775 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 775 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 775 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 775 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 775 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 775 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 775 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> K 1600 775 4 1 rf 250 255 r3 476 776 4 1 rf 480 776 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 776 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 776 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 776 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 776 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 776 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 776 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 776 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 776 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 776 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 776 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 776 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 776 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 776 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> K 1600 776 4 1 rf 477 777 3 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Q~> 480 777 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 777 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 777 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 777 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 777 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 777 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 777 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 777 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 777 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 777 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 777 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 777 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 777 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 777 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1600 777 3 3 @X 8 Ic zzzzzz!!!!~> 478 780 2 3 @X 8 Ic zzzz!!!~> 480 780 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 560 780 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 780 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 780 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 780 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 780 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 780 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 780 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 780 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 780 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 780 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 780 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 780 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1520 780 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1600 780 2 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8N~> 479 783 1 3 @X 8 Ic zz!!~> 480 783 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 560 783 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 783 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 783 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 783 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 783 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 783 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 783 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 783 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 783 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 783 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 783 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 783 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1520 783 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1600 783 1 3 @X 8 Ic qZ$Tls8Vrqrr~> 480 786 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 560 786 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 786 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 786 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 786 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 786 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 786 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 786 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 786 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 786 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 786 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 786 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 786 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1520 786 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 481 789 79 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$QqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz !;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzz!!!!~> 560 789 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 789 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 789 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 789 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 789 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 789 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 789 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 789 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 789 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 789 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 789 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 789 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1520 789 79 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzz zzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzz!!!!~> 482 792 78 3 @X 8 Ic zzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzz zzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 560 792 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 792 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 792 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 792 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 792 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 792 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 792 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 792 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 792 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 792 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 792 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 792 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1520 792 78 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zz zzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzz z!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzz!!!~> 483 795 77 3 @X 8 Ic zzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$QqzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zz zzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzz zzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzz!!~> 560 795 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 795 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 795 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 795 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 795 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 795 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 795 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 795 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 795 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 795 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 795 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 795 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1520 795 77 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzz zzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzz zqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz!!~> 484 798 76 3 @X 8 Ic zzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz zzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzz zzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 560 798 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz zzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 798 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz zzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 798 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz zzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 798 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz zzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 798 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz zzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 798 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz zzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 798 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz zzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 798 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz zzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 798 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz zzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 798 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz zzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 798 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz zzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 798 80 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz zzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1520 798 76 3 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz zzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzz zzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzz~> 485 801 75 2 @X 8 Ic zzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`q qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzz!!!~> 560 801 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 640 801 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 720 801 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 800 801 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 880 801 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 960 801 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1040 801 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1120 801 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1200 801 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1280 801 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1360 801 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1440 801 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1520 801 75 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Qqzzz!!!~> 485 802 75 1 @X 8 Ic zzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`q qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!!~> 560 802 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 802 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 802 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 802 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 802 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 802 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 802 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 802 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 802 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 802 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 802 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 802 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1520 802 75 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzz!!~> 485 803 75 1 @X 8 Ic zzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`q qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!!~> 560 803 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 803 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 803 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 803 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 803 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 803 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 803 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 803 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 803 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 803 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 803 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 803 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1520 803 75 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzz!!~> 486 804 74 2 @X 8 Ic zzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zz zzzzz~> 560 804 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 640 804 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 720 804 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 800 804 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 880 804 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 960 804 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1040 804 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1120 804 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1200 804 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1280 804 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1360 804 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1440 804 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1520 804 74 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrq s8)cqzzz~> 487 806 73 3 @X 8 Ic zzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz !!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzz zzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!!~> 560 806 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 806 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 806 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 806 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 806 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 806 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 806 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 806 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 806 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 806 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 806 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 806 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1520 806 73 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzz zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz!!~> 488 809 72 2 @X 8 Ic zzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrq s8)cq~> 560 809 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 640 809 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 720 809 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 800 809 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 880 809 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 960 809 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1040 809 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1120 809 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1200 809 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1280 809 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1360 809 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1440 809 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1520 809 72 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq~> 489 811 71 3 @X 8 Ic zzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzz zz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzz zzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Q~> 560 811 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 811 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 811 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 811 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 811 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 811 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 811 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 811 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 811 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 811 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 811 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 811 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 811 71 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrq rr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Q~> 490 814 70 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 560 814 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 814 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 814 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 814 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 814 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 814 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 814 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 814 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 814 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 814 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 814 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 814 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 814 70 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzz zzzzzzzzzzzzzzzz!!!~> 491 817 69 2 @X 8 Ic zzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz !;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$QqzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 560 817 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 640 817 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 720 817 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 800 817 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 880 817 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 960 817 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1040 817 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1120 817 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1200 817 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1280 817 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1360 817 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1440 817 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1520 817 69 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzz zzzzzzzzz!!!~> 492 819 68 1 @X 8 Ic zzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz !!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 819 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 819 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 819 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 819 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 819 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 819 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 819 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 819 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 819 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 819 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 819 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 819 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 819 68 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzz~> 492 820 68 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz zzzzzzzz~> 560 820 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 640 820 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 720 820 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 800 820 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 880 820 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 960 820 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1040 820 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1120 820 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1200 820 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1280 820 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1360 820 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1440 820 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1520 820 68 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!z zzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzz~> 493 822 67 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzz zzzzzz!!!~> 560 822 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 640 822 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 720 822 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 800 822 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 880 822 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 960 822 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1040 822 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1120 822 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1200 822 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1280 822 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1360 822 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1440 822 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1520 822 67 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzz zzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzz!!!~> 494 824 66 3 @X 8 Ic zzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzz zzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz zzzzzzz!!!~> 560 824 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 824 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 824 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 824 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 824 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 824 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 824 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 824 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 824 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 824 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 824 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 824 80 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1520 824 66 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzz zzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz!!!~> 495 827 65 2 @X 8 Ic zzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzz zzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz zzzzzzz!!!~> 560 827 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 640 827 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 720 827 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 800 827 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 880 827 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 960 827 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1040 827 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1120 827 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1200 827 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1280 827 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1360 827 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1440 827 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1520 827 65 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrq rr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzz zz!!!~> 496 829 64 1 @X 8 Ic zzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzz z~> 560 829 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 829 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 829 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 829 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 829 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 829 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 829 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 829 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 829 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 829 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 829 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 829 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1520 829 64 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzz~> 496 829 64 1 @X 8 Ic zzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzz z~> 560 829 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 829 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 829 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 829 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 829 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 829 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 829 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 829 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 829 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 829 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 829 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 829 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1520 829 64 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzz~> 496 830 64 2 @X 8 Ic qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 560 830 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 640 830 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 720 830 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 800 830 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 880 830 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 960 830 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1040 830 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1120 830 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1200 830 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1280 830 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1360 830 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1440 830 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1520 830 64 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrq s8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzz~> 497 832 63 2 @X 8 Ic qZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrq rr<$!zzzzzzzzzzzzzz!;c`qqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 560 832 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 640 832 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 720 832 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 800 832 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 880 832 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 960 832 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1040 832 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1120 832 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1200 832 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1280 832 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1360 832 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1440 832 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1520 832 63 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrq rr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!z!!!~> 498 834 62 2 @X 8 Ic qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzz!!)lqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq zzzzzzzzzzzzzzz~> 560 834 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 640 834 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 720 834 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 800 834 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 880 834 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 960 834 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1040 834 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1120 834 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1200 834 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1280 834 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1360 834 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1440 834 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1520 834 62 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'! zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!z~> 499 836 61 2 @X 8 Ic qZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzz zz!!!#qs8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzz zzzzzzzzz!!!~> 560 836 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 640 836 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 720 836 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 800 836 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 880 836 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 960 836 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1040 836 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1120 836 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1200 836 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1280 836 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1360 836 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1440 836 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1520 836 61 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqz zzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qq!!!~> 500 838 60 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 560 838 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 640 838 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 720 838 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 800 838 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 880 838 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 960 838 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1040 838 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1120 838 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1200 838 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1280 838 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1360 838 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1440 838 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1520 838 60 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 501 840 59 3 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrq rr<$!zzzzzz!!!!~> 560 840 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 840 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 840 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 840 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 840 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 840 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 840 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 840 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 840 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 840 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 840 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 840 80 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1520 840 59 3 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzzzzzzz zzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzz!!!!~> 502 843 58 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 560 843 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 640 843 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 720 843 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 800 843 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 880 843 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 960 843 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1040 843 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1120 843 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1200 843 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1280 843 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1360 843 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1440 843 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1520 843 58 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzz~> 503 845 57 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8Vrqrr<$!zzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz !!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 560 845 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 640 845 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 720 845 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 800 845 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 880 845 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 960 845 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1040 845 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1120 845 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1200 845 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1280 845 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1360 845 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1440 845 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1520 845 57 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzz!!!~> 504 847 56 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 560 847 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 640 847 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 720 847 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 800 847 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 880 847 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 960 847 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1040 847 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1120 847 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1200 847 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1280 847 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1360 847 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1440 847 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1520 847 56 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzz~> 505 849 55 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$QqzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 560 849 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 640 849 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 720 849 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 800 849 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 880 849 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 960 849 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1040 849 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1120 849 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1200 849 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1280 849 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1360 849 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1440 849 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1520 849 55 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzz!!!~> 506 851 54 3 @X 8 Ic zzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz zzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8N~> 560 851 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 851 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 851 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 851 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 851 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 851 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 851 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 851 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 851 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 851 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 851 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 851 80 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 851 54 3 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzz zzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzz!!!~> 507 854 53 2 @X 8 Ic zz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$QqzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 560 854 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 640 854 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 720 854 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 800 854 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 880 854 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 960 854 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1040 854 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1120 854 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1200 854 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1280 854 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1360 854 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1440 854 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1520 854 53 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzz!!!~> 508 855 52 1 @X 8 Ic z!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 855 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 855 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 855 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 855 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 855 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 855 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 855 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 855 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 855 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 855 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 855 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 855 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 855 52 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzz~> 508 856 52 2 @X 8 Ic z!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzz zzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 856 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 640 856 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 720 856 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 800 856 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 880 856 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 960 856 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1040 856 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1120 856 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1200 856 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1280 856 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1360 856 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1440 856 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1520 856 52 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzz~> 509 858 51 2 @X 8 Ic !!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzz zzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 560 858 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 640 858 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 720 858 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 800 858 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 880 858 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 960 858 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1040 858 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1120 858 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1200 858 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1280 858 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1360 858 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1440 858 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1520 858 51 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzz!!!~> 510 860 50 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 560 860 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 640 860 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 720 860 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 800 860 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 880 860 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 960 860 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1040 860 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1120 860 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1200 860 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1280 860 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1360 860 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1440 860 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1520 860 50 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz zzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 511 862 49 2 @X 8 Ic zzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzzzzzzzzz !!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!!~> 560 862 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 640 862 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 720 862 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 800 862 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 880 862 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 960 862 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1040 862 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1120 862 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1200 862 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1280 862 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1360 862 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1440 862 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1520 862 49 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzz zz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 512 864 48 2 @X 8 Ic zzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 560 864 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 640 864 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 720 864 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 800 864 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 880 864 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 960 864 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1040 864 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1120 864 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1200 864 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1280 864 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1360 864 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1440 864 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1520 864 48 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 513 866 47 2 @X 8 Ic zzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!!~> 560 866 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 640 866 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 720 866 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 800 866 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 880 866 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 960 866 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1040 866 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1120 866 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1200 866 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1280 866 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1360 866 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1440 866 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1520 866 47 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`q qZ$Tls8Vrqs8)cqqZ$Tls8N~> 514 868 46 2 @X 8 Ic zzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 560 868 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 640 868 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 720 868 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 800 868 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 880 868 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 960 868 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1040 868 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1120 868 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1200 868 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1280 868 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1360 868 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1440 868 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1520 868 46 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cq~> 515 870 45 2 @X 8 Ic zzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 560 870 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 640 870 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 720 870 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 800 870 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 880 870 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 960 870 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1040 870 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1120 870 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1200 870 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1280 870 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1360 870 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1440 870 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1520 870 45 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzz!;c`q qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzz!!!~> 516 872 44 2 @X 8 Ic zzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzz !!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 560 872 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 640 872 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 720 872 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 800 872 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 880 872 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 960 872 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1040 872 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1120 872 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1200 872 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1280 872 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1360 872 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1440 872 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1520 872 44 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzz!!)lq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzz~> 517 874 43 1 @X 8 Ic zzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzz!!~> 560 874 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 874 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 874 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 874 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 874 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 874 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 874 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 874 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 874 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 874 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 874 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 874 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1520 874 43 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz!!~> 518 875 42 2 @X 8 Ic zzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzz!!)lq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 560 875 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 640 875 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 720 875 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 800 875 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 880 875 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 960 875 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1040 875 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1120 875 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1200 875 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1280 875 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1360 875 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1440 875 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1520 875 42 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzz~> 519 877 41 2 @X 8 Ic zzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$QqzzzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 560 877 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 640 877 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 720 877 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 800 877 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 880 877 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 960 877 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1040 877 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1120 877 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1200 877 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1280 877 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1360 877 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1440 877 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1520 877 41 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzz!;c`q qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzz!!!~> 520 879 40 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 560 879 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 640 879 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 720 879 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 800 879 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 880 879 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 960 879 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1040 879 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1120 879 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1200 879 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1280 879 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1360 879 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1440 879 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1520 879 40 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 521 881 39 1 @X 8 Ic zzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!!~> 560 881 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 881 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 881 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 881 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 881 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 881 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 881 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 881 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 881 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 881 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 881 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 881 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1520 881 39 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzz!!~> 521 881 39 1 @X 8 Ic zzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!!~> 560 881 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 881 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 881 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 881 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 881 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 881 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 881 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 881 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 881 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 881 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 881 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 881 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1520 881 39 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzz!!~> 521 882 39 1 @X 8 Ic zzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!!~> 560 882 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 882 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 882 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 882 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 882 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 882 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 882 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 882 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 882 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 882 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 882 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 882 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1520 882 39 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzz!!~> 522 883 38 2 @X 8 Ic zzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 560 883 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 640 883 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 720 883 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 800 883 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 880 883 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 960 883 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1040 883 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1120 883 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1200 883 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1280 883 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1360 883 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1440 883 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1520 883 38 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzz !!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzz~> 523 885 37 2 @X 8 Ic zzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzz !!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 560 885 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 640 885 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 720 885 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 800 885 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 880 885 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 960 885 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1040 885 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1120 885 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1200 885 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1280 885 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1360 885 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1440 885 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1520 885 37 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzz!!!#q s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzz!!!~> 524 887 36 1 @X 8 Ic zzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 560 887 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 887 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 887 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 887 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 887 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 887 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 887 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 887 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 887 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 887 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 887 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 887 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1520 887 36 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzz~> 525 888 35 2 @X 8 Ic zzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 560 888 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 640 888 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 720 888 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 800 888 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 880 888 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 960 888 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1040 888 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1120 888 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1200 888 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1280 888 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1360 888 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1440 888 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1520 888 35 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzz!;c`q qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzz!!!~> 526 890 34 2 @X 8 Ic zzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzz !!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 890 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 640 890 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 720 890 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 800 890 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 880 890 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 960 890 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1040 890 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1120 890 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1200 890 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1280 890 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1360 890 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1440 890 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1520 890 34 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq ~> 527 892 33 2 @X 8 Ic zzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$QqzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 560 892 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 640 892 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 720 892 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 800 892 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 880 892 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 960 892 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1040 892 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1120 892 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1200 892 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1280 892 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1360 892 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1440 892 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1520 892 33 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8N~> 528 894 32 1 @X 8 Ic zzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 894 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 894 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 894 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 894 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 894 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 894 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 894 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 894 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 894 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 894 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 894 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 894 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 894 32 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq~> 529 895 31 2 @X 8 Ic zzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 560 895 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 640 895 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 720 895 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 800 895 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 880 895 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 960 895 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1040 895 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1120 895 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1200 895 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1280 895 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1360 895 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1440 895 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1520 895 31 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8N~> 530 897 30 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 897 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 640 897 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 720 897 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 800 897 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 880 897 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 960 897 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1040 897 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1120 897 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1200 897 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1280 897 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1360 897 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1440 897 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1520 897 30 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz~> 531 899 29 1 @X 8 Ic zzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Q~> 560 899 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 899 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 899 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 899 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 899 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 899 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 899 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 899 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 899 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 899 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 899 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 899 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1520 899 29 1 rf 532 900 28 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz~> 560 900 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 640 900 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 720 900 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 800 900 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 880 900 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 960 900 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1040 900 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1120 900 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1200 900 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1280 900 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1360 900 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1440 900 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1520 900 28 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8N'!zzzzzzzzzzzzz~> 533 902 27 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz!!!~> 560 902 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 640 902 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 720 902 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 800 902 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 880 902 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 960 902 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1040 902 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1120 902 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1200 902 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1280 902 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1360 902 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1440 902 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1520 902 27 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Qqzzzzzzzzzzzz!!!~> 534 904 26 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz~> 560 904 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 640 904 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 720 904 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 800 904 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 880 904 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 960 904 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1040 904 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1120 904 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1200 904 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1280 904 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1360 904 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1440 904 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1520 904 26 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzz~> 535 905 25 1 rf 560 905 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 905 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 905 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 905 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 905 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 905 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 905 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 905 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 905 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 905 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 905 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 905 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1520 905 25 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzz!!!!~> 535 906 25 1 rf 560 906 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 906 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 906 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 906 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 906 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 906 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 906 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 906 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 906 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 906 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 906 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 906 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1520 906 25 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzz!!!!~> 536 907 24 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz~> 560 907 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 640 907 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 720 907 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 800 907 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 880 907 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 960 907 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1040 907 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1120 907 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1200 907 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1280 907 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1360 907 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1440 907 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1520 907 24 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8N'!zzzzzzzzzz~> 537 909 23 1 rf 560 909 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 909 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 909 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 909 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 909 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 909 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 909 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 909 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 909 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 909 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 909 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 909 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1520 909 23 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzz!!~> 538 910 22 2 @X 8 Ic qZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqzzzzzzzzzzzzzzz~> 560 910 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 640 910 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 720 910 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 800 910 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 880 910 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 960 910 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1040 910 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1120 910 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1200 910 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1280 910 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1360 910 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1440 910 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1520 910 22 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!z~> 539 912 21 2 @X 8 Ic qZ$Qqzzzzzzzzzzzzzz!!!#qs8N'!zzzzzzzzzzzzzz!!!~> 560 912 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 640 912 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 720 912 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 800 912 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 880 912 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 960 912 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1040 912 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1120 912 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1200 912 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1280 912 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1360 912 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1440 912 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1520 912 21 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzz!;c`qqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Qq!!!~> 540 914 20 1 rf 560 914 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 914 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 914 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 914 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 914 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 914 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 914 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 914 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 914 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 914 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 914 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 914 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1520 914 20 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 541 915 19 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzzzzz!!!~> 560 915 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 640 915 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 720 915 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 800 915 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 880 915 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 960 915 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1040 915 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1120 915 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1200 915 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1280 915 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1360 915 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1440 915 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1520 915 19 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8N~> 542 917 18 1 rf 560 917 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 917 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 917 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 917 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 917 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 917 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 917 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 917 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 917 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 917 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 917 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 917 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1520 917 18 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 543 918 17 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzzzzz!!!~> 560 918 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 640 918 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 720 918 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 800 918 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 880 918 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 960 918 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1040 918 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1120 918 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1200 918 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1280 918 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1360 918 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1440 918 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1520 918 17 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8N~> 544 920 16 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 560 920 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 920 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 920 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 920 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 920 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 920 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 920 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 920 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 920 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 920 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 920 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 920 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1520 920 16 1 rf 545 921 15 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!;c`qqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 560 921 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 640 921 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 720 921 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 800 921 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 880 921 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 960 921 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1040 921 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1120 921 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1200 921 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1280 921 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1360 921 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1440 921 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1520 921 15 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!!~> 546 923 14 2 @X 8 Ic qZ$Tls8Vrqs8)cqzzzzzzz!!)lqs8)cqqZ$Tls8N'!zzzzzzz~> 560 923 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 640 923 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 720 923 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 800 923 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 880 923 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 960 923 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1040 923 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1120 923 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1200 923 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1280 923 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1360 923 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1440 923 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1520 923 14 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzz~> 547 925 13 1 @X 8 Ic qZ$Tls8Vrqrr<$!zzzzzz!!!!~> 560 925 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 925 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 925 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 925 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 925 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 925 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 925 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 925 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 925 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 925 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 925 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 925 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1520 925 13 1 rf 548 926 12 2 @X 8 Ic qZ$Tls8N'!zzzzzzzqZ$Tls8N'!zzzzzzz~> 560 926 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 640 926 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 720 926 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 800 926 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 880 926 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 960 926 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1040 926 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1120 926 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1200 926 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1280 926 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1360 926 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1440 926 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1520 926 12 2 @X 8 Ic zzzzzzzzzzzzzzzzzz~> 549 928 11 1 @X 8 Ic qZ$Qqzzzzzzz!!~> 560 928 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 928 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 928 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 928 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 928 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 928 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 928 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 928 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 928 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 928 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 928 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 928 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1520 928 11 1 rf 550 929 10 1 rf 560 929 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 929 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 929 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 929 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 929 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 929 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 929 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 929 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 929 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 929 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 929 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 929 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1520 929 10 1 rf 550 929 10 1 rf 560 929 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 929 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 929 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 929 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 929 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 929 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 929 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 929 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 929 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 929 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 929 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 929 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1520 929 10 1 rf 250 255 r3 550 930 10 1 rf 560 930 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 930 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 930 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 930 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 930 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 930 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 930 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 930 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 930 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 930 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 930 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 930 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> K 1520 930 10 1 rf 250 255 r3 551 931 9 1 rf 560 931 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 931 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 931 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 931 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 931 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 931 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 931 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 931 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 931 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 931 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 931 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 931 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> K 1520 931 9 1 rf 552 932 8 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 560 932 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 640 932 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 720 932 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 800 932 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 880 932 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 960 932 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1040 932 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1120 932 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1200 932 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1280 932 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1360 932 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1440 932 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1520 932 8 2 @X 8 Ic zzzzzzzzzzzz~> 250 255 r3 553 934 7 1 rf 560 934 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 934 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 934 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 934 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 934 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 934 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 934 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 934 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 934 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 934 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 934 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 934 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> K 1520 934 7 1 rf 250 255 r3 554 935 6 1 rf 560 935 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 935 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 935 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 935 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 935 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 935 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 935 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 935 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 935 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 935 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 935 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 935 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> K 1520 935 6 1 rf 555 936 5 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 560 936 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 640 936 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 720 936 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 800 936 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 880 936 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 960 936 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1040 936 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1120 936 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1200 936 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1280 936 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1360 936 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1440 936 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1520 936 5 2 @X 8 Ic zzzzzzz!!!~> 250 255 r3 556 938 4 1 rf 560 938 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 938 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 938 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 938 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 938 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 938 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 938 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 938 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 938 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 938 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 938 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 938 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> K 1520 938 4 1 rf 557 939 3 2 @X 8 Ic qZ$Tls8Vrqrr<$!z!!!~> 560 939 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 640 939 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 720 939 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 800 939 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 880 939 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 960 939 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1040 939 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1120 939 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1200 939 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1280 939 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1360 939 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1440 939 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1520 939 3 2 @X 8 Ic zz!;c`qqZ$Tls8N~> 558 941 2 1 rf 560 941 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 941 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 941 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 941 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 941 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 941 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 941 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 941 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 941 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 941 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 941 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 941 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 250 255 r3 1520 941 2 1 rf K 559 942 1 1 rf 560 942 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 942 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 942 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 942 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 942 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 942 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 942 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 942 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 942 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 942 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 942 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 942 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 250 255 r3 1520 942 1 1 rf 560 943 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 640 943 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 720 943 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 800 943 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 880 943 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 960 943 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1040 943 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1120 943 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1200 943 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1280 943 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1360 943 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1440 943 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 561 945 79 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!!~> 640 945 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 945 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 945 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 945 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 945 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 945 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 945 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 945 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 945 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 945 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 945 79 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzz!!~> 562 946 78 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 946 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 720 946 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 800 946 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 880 946 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 960 946 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1040 946 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1120 946 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1200 946 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1280 946 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1360 946 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1440 946 78 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz zzzzzzzzzzzzzz~> 563 948 77 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!!~> 640 948 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 948 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 948 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 948 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 948 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 948 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 948 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 948 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 948 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 948 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 948 77 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzz!!!!~> 564 949 76 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 949 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 949 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 949 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 949 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 949 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 949 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 949 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 949 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 949 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 949 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 949 76 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzz~> 565 950 75 2 @X 8 Ic zzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrq s8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zz zzzzzzzzzzzz!!!~> 640 950 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 720 950 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 800 950 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 880 950 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 960 950 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1040 950 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1120 950 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1200 950 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1280 950 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1360 950 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1440 950 75 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrq rr<$!zzzzzzzzzz!!!~> 566 952 74 1 @X 8 Ic zzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 640 952 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 952 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 952 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 952 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 952 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 952 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 952 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 952 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 952 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 952 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 952 74 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzz!!!~> 567 953 73 1 @X 8 Ic zz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzz!!!!~> 640 953 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 953 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 953 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 953 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 953 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 953 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 953 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 953 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 953 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 953 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 953 73 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzz!!!!~> 567 953 73 1 @X 8 Ic zz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzz!!!!~> 640 953 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 953 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 953 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 953 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 953 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 953 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 953 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 953 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 953 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 953 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 953 73 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzz!!!!~> 567 954 73 1 @X 8 Ic zz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzz!!!!~> 640 954 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 954 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 954 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 954 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 954 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 954 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 954 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 954 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 954 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 954 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 954 73 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzz!!!!~> 568 955 72 1 @X 8 Ic z!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 955 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 955 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 955 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 955 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 955 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 955 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 955 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 955 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 955 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 955 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 955 72 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzz~> 569 956 71 1 @X 8 Ic !!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzz!!~> 640 956 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 956 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 956 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 956 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 956 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 956 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 956 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 956 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 956 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 956 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 956 71 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzz!!~> 570 957 70 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 640 957 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 957 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 957 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 957 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 957 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 957 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 957 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 957 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 957 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 957 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 957 70 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 571 958 69 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzz zzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 640 958 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 720 958 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 800 958 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 880 958 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 960 958 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1040 958 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1120 958 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1200 958 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1280 958 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1360 958 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1440 958 69 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzz!!!~> 572 960 68 1 @X 8 Ic zzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 960 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 960 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 960 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 960 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 960 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 960 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 960 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 960 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 960 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 960 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 960 68 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 573 961 67 1 @X 8 Ic zzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!!~> 640 961 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 961 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 961 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 961 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 961 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 961 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 961 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 961 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 961 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 961 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 961 67 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr~> 574 962 66 1 @X 8 Ic zzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 640 962 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 962 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 962 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 962 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 962 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 962 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 962 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 962 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 962 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 962 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 962 66 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8N~> 575 963 65 2 @X 8 Ic zzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz !!!~> 640 963 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 720 963 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 800 963 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 880 963 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 960 963 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1040 963 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1120 963 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1200 963 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1280 963 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1360 963 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1440 963 65 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$! zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8N~> 576 965 64 1 @X 8 Ic zzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 965 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 965 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 965 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 965 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 965 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 965 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 965 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 965 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 965 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 965 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 965 64 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cq~> 577 966 63 1 @X 8 Ic zz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!!~> 640 966 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 966 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 966 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 966 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 966 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 966 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 966 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 966 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 966 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 966 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 966 63 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqrr~> 578 967 62 2 @X 8 Ic z!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzz zzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 967 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 720 967 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 800 967 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 880 967 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 960 967 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1040 967 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1120 967 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1200 967 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1280 967 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1360 967 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1440 967 62 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz zzzzzzz!!)lqs8)cq~> 579 969 61 1 @X 8 Ic !!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzz!!!!~> 640 969 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 969 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 969 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 969 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 969 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 969 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 969 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 969 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 969 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 969 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 969 61 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Q~> 580 970 60 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 970 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 970 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 970 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 970 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 970 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 970 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 970 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 970 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 970 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 970 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 970 60 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 581 971 59 1 @X 8 Ic zzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#q s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr~> 640 971 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 971 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 971 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 971 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 971 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 971 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 971 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 971 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 971 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 971 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 971 59 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzz !!~> 582 972 58 2 @X 8 Ic zzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzz zzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 972 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 720 972 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 800 972 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 880 972 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 960 972 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1040 972 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1120 972 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1200 972 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1280 972 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1360 972 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1440 972 58 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzz~> 583 974 57 1 @X 8 Ic zzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Q~> 640 974 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 974 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 974 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 974 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 974 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 974 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 974 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 974 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 974 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 974 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 974 57 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzz !!!!~> 584 975 56 1 @X 8 Ic zzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 975 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 975 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 975 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 975 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 975 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 975 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 975 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 975 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 975 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 975 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 975 56 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzz~> 584 975 56 1 @X 8 Ic zzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 975 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 975 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 975 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 975 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 975 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 975 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 975 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 975 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 975 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 975 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 975 56 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzz~> 585 976 55 1 @X 8 Ic zzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr~> 640 976 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 976 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 976 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 976 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 976 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 976 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 976 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 976 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 976 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 976 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 976 55 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzz!!~> 586 977 54 1 @X 8 Ic zzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 640 977 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 977 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 977 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 977 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 977 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 977 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 977 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 977 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 977 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 977 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 977 54 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzz!!!~> 587 978 53 2 @X 8 Ic zz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$QqzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz zzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 640 978 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 720 978 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 800 978 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 880 978 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 960 978 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1040 978 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1120 978 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1200 978 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1280 978 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1360 978 80 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 1440 978 53 2 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzz!!!~> 588 980 52 1 @X 8 Ic zzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 980 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 980 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 980 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 980 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 980 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 980 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 980 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 980 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 980 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 980 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 980 52 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!z~> 589 981 51 1 @X 8 Ic zzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!!~> 640 981 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 981 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 981 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 981 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 981 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 981 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 981 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 981 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 981 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 981 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 981 51 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!!!~> 590 982 50 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!!~> 640 982 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 982 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 982 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 982 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 982 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 982 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 982 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 982 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 982 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 982 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 982 50 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N~> 591 983 49 1 @X 8 Ic zzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!!~> 640 983 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 983 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 983 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 983 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 983 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 983 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 983 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 983 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 983 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 983 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 983 49 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Q~> 592 984 48 1 @X 8 Ic zzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 984 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 984 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 984 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 984 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 984 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 984 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 984 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 984 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 984 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 984 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 984 48 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 593 985 47 2 @X 8 Ic zzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzzzzzzz!!)lq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!!~> 640 985 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 720 985 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 800 985 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 880 985 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 960 985 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1040 985 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1120 985 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1200 985 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1280 985 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1360 985 80 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 1440 985 47 2 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`q qZ$Tls8Vrqs8)cqqZ$Tls8N~> 594 987 46 1 @X 8 Ic zzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!!~> 640 987 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 987 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 987 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 987 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 987 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 987 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 987 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 987 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 987 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 987 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 987 46 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8N~> 595 988 45 1 @X 8 Ic zzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!!~> 640 988 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 988 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 988 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 988 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 988 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 988 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 988 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 988 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 988 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 988 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 988 45 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Q~> 596 989 44 1 @X 8 Ic zzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 640 989 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 989 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 989 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 989 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 989 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 989 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 989 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 989 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 989 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 989 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 989 44 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq~> 597 990 43 1 @X 8 Ic zzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzz!!~> 640 990 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 990 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 990 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 990 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 990 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 990 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 990 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 990 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 990 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 990 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 990 43 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz!!~> 598 991 42 1 @X 8 Ic zzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 640 991 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 991 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 991 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 991 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 991 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 991 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 991 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 991 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 991 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 991 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 991 42 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzz!!!~> 599 992 41 1 @X 8 Ic zzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzz!!!!~> 640 992 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 992 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 992 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 992 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 992 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 992 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 992 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 992 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 992 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 992 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 992 41 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz!!!!~> 600 993 40 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 993 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 720 993 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 800 993 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 880 993 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 960 993 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1040 993 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1120 993 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1200 993 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1280 993 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1360 993 80 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzz~> 1440 993 40 2 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 601 995 39 1 @X 8 Ic zzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzz!!~> 640 995 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 995 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 995 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 995 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 995 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 995 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 995 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 995 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 995 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 995 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 995 39 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzz!!~> 602 996 38 1 @X 8 Ic zzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 640 996 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 996 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 996 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 996 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 996 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 996 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 996 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 996 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 996 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 996 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 996 38 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzz!!!~> 603 996 37 1 @X 8 Ic zzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzz!!!!~> 640 996 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 996 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 996 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 996 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 996 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 996 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 996 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 996 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 996 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 996 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 996 37 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzz!!!!~> 603 997 37 1 @X 8 Ic zzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzz!!!!~> 640 997 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 997 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 997 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 997 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 997 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 997 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 997 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 997 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 997 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 997 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 997 37 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzz!!!!~> 604 998 36 1 @X 8 Ic zzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 640 998 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 998 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 998 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 998 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 998 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 998 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 998 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 998 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 998 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 998 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 998 36 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzz~> 605 999 35 1 @X 8 Ic zzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzz!!~> 640 999 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 999 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 999 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 999 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 999 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 999 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 999 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 999 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 999 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 999 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 999 35 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzz!!~> 606 1000 34 1 @X 8 Ic zzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 640 1000 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 1000 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 1000 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1000 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1000 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1000 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1000 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1000 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 1000 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 1000 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 1000 34 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zz!!!~> 607 1001 33 1 @X 8 Ic zzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzz!!!!~> 640 1001 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 1001 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 1001 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1001 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1001 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1001 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1001 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1001 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 1001 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 1001 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 1001 33 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!z!!!!~> 608 1002 32 1 @X 8 Ic zzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 1002 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 1002 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 1002 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1002 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1002 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1002 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1002 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1002 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 1002 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 1002 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 1002 32 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!z~> 609 1003 31 1 @X 8 Ic zzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!!~> 640 1003 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 1003 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 1003 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1003 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1003 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1003 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1003 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1003 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 1003 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 1003 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 1003 31 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!!!~> 610 1004 30 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 640 1004 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 1004 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 1004 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1004 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1004 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1004 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1004 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1004 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 1004 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 1004 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 1004 30 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 611 1005 29 1 @X 8 Ic zzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzz!!!!~> 640 1005 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 1005 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 1005 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1005 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1005 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1005 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1005 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1005 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 1005 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 1005 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 1005 29 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Q~> 612 1006 28 1 @X 8 Ic zzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 1006 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 1006 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 1006 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1006 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1006 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1006 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1006 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1006 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 1006 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 1006 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 1006 28 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 613 1007 27 1 @X 8 Ic zzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!!~> 640 1007 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 1007 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 1007 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1007 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1007 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1007 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1007 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1007 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 1007 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 1007 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1440 1007 27 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr~> 614 1008 26 2 @X 8 Ic zzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 640 1008 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 720 1008 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 800 1008 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 880 1008 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 960 1008 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1040 1008 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1120 1008 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1200 1008 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1280 1008 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1360 1008 80 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzz~> 1440 1008 26 2 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq ~> 615 1010 25 1 @X 8 Ic zzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Q~> 640 1010 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 1010 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 1010 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1010 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1010 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1010 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1010 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1010 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 1010 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 1010 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> K 1440 1010 25 1 rf 616 1011 24 1 @X 8 Ic zzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 1011 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 1011 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 1011 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1011 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1011 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1011 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1011 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1011 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 1011 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 1011 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 1011 24 1 rf 617 1012 23 1 @X 8 Ic zzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr~> 640 1012 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 1012 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 1012 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1012 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1012 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1012 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1012 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1012 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 1012 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 1012 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 1012 23 1 rf 618 1013 22 1 @X 8 Ic zzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 640 1013 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 1013 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 1013 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1013 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1013 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1013 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1013 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1013 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 1013 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 1013 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 1013 22 1 rf 619 1014 21 1 @X 8 Ic zzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Q~> 640 1014 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 1014 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 1014 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1014 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1014 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1014 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1014 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1014 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 1014 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 1014 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 1014 21 1 rf 620 1015 20 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 1015 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 1015 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 1015 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1015 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1015 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1015 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1015 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1015 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 1015 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 1015 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 1015 20 1 rf 621 1016 19 1 @X 8 Ic zzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr~> 640 1016 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 1016 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 1016 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1016 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1016 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1016 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1016 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1016 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 1016 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 1016 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 1016 19 1 rf 622 1017 18 1 @X 8 Ic zzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 640 1017 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 1017 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 1017 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1017 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1017 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1017 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1017 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1017 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 1017 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 1017 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 1017 18 1 rf 622 1017 18 1 @X 8 Ic zzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 640 1017 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 1017 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 1017 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1017 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1017 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1017 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1017 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1017 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 1017 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 1017 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 1017 18 1 rf 623 1018 17 1 @X 8 Ic zzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Q~> 640 1018 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 1018 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 1018 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1018 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1018 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1018 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1018 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1018 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 1018 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 1018 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 1018 17 1 rf 624 1019 16 1 @X 8 Ic zzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 640 1019 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 1019 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 1019 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1019 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1019 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1019 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1019 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1019 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 1019 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 1019 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1440 1019 16 1 rf 625 1020 15 1 rf 640 1020 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 1020 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 1020 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 1020 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1020 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1020 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1020 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1020 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 1020 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 1020 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 1020 15 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzz!!~> 626 1021 14 1 rf 640 1021 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 1021 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 1021 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 1021 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1021 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1021 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1021 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1021 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 1021 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 1021 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 1021 14 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zz!!!~> 627 1022 13 1 rf 640 1022 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 1022 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 1022 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 1022 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1022 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1022 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1022 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1022 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 1022 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 1022 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 1022 13 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!z!!!!~> 628 1023 12 1 rf 640 1023 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 1023 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 1023 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 1023 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1023 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1023 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1023 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1023 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 1023 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 1023 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 1023 12 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!z~> 629 1024 11 1 rf 640 1024 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 1024 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 1024 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 1024 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1024 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1024 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1024 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1024 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 1024 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 1024 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1440 1024 11 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!!!~> 630 1025 10 1 rf 640 1025 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 1025 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 1025 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 1025 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1025 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1025 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1025 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1025 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 1025 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 1025 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 250 255 r3 1440 1025 10 1 rf K 632 1026 8 1 rf 640 1026 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 1026 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 1026 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 1026 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1026 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1026 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1026 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1026 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 1026 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 1026 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 250 255 r3 1440 1026 8 1 rf K 633 1027 7 1 rf 640 1027 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 1027 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 1027 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 1027 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1027 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1027 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1027 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1027 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 1027 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 1027 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 250 255 r3 1440 1027 7 1 rf K 634 1028 6 1 rf 640 1028 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 1028 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 1028 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 1028 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1028 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1028 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1028 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1028 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 1028 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 1028 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 250 255 r3 1440 1028 6 1 rf K 635 1029 5 1 rf 640 1029 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 1029 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 1029 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 1029 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1029 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1029 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1029 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1029 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 1029 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 1029 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 250 255 r3 1440 1029 5 1 rf K 636 1030 4 1 rf 640 1030 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 1030 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 1030 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 1030 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1030 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1030 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1030 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1030 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 1030 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 1030 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 1030 4 1 rf 637 1031 3 1 rf 640 1031 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 1031 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 1031 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 1031 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1031 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1031 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1031 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1031 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 1031 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 1031 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 1031 3 1 rf 638 1032 2 1 rf 640 1032 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 1032 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 1032 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 1032 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1032 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1032 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1032 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1032 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 1032 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 1032 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 1032 2 1 rf 639 1033 1 1 rf 640 1033 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 1033 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 1033 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 1033 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1033 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1033 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1033 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1033 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 1033 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 1033 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1440 1033 1 1 rf 640 1034 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 1034 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 1034 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 1034 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1034 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1034 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1034 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1034 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 1034 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 1034 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 641 1035 79 1 @X 8 Ic zzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#q s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzz!!~> 720 1035 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 1035 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 1035 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1035 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1035 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1035 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1035 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 1035 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 1035 79 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzz!!~> 642 1036 78 1 @X 8 Ic zzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 720 1036 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 1036 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 1036 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1036 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1036 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1036 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1036 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 1036 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 1036 78 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzz!!!~> 643 1036 77 1 @X 8 Ic zzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzz!!!!~> 720 1036 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 1036 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 1036 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1036 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1036 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1036 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1036 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 1036 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 1036 77 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzz!!!!~> 643 1037 77 1 @X 8 Ic zzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzz!!!!~> 720 1037 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 1037 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 1037 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1037 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1037 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1037 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1037 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 1037 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 1037 77 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzz!!!!~> 644 1038 76 1 @X 8 Ic zzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 1038 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 1038 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 1038 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1038 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1038 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1038 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1038 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 1038 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 1038 76 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzz~> 645 1039 75 1 @X 8 Ic zzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzz!!~> 720 1039 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 1039 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 1039 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1039 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1039 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1039 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1039 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 1039 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 1039 75 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzz!!~> 647 1040 73 1 @X 8 Ic zzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz !!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzz!!!!~> 720 1040 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 1040 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1040 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1040 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1040 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1040 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1040 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 1040 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 1040 73 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!z!!!!~> 648 1041 72 1 @X 8 Ic zzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 1041 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 1041 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1041 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1041 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1041 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1041 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1041 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 1041 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 1041 72 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!z~> 649 1042 71 1 @X 8 Ic zzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`q qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!!~> 720 1042 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 1042 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1042 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1042 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1042 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1042 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1042 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 1042 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 1042 71 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!!!~> 650 1043 70 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 720 1043 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 1043 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1043 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1043 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1043 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1043 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1043 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 1043 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 1043 70 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 651 1044 69 1 @X 8 Ic zzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#q s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzz!!!!~> 720 1044 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 1044 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1044 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1044 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1044 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1044 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1044 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 1044 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 1044 69 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Q~> 652 1045 68 1 @X 8 Ic zzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 1045 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 1045 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1045 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1045 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1045 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1045 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1045 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 1045 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 1045 68 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 653 1046 67 1 @X 8 Ic zzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!!~> 720 1046 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 1046 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1046 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1046 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1046 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1046 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1046 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 1046 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 1046 67 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr~> 655 1047 65 1 @X 8 Ic zzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzz!!!!~> 720 1047 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 1047 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1047 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1047 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1047 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1047 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1047 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 1047 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 1047 65 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Q~> 656 1048 64 1 @X 8 Ic zzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 1048 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 1048 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1048 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1048 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1048 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1048 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1048 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 1048 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 1048 64 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cq~> 657 1049 63 1 @X 8 Ic zz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!!~> 720 1049 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 1049 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1049 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1049 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1049 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1049 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1049 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 1049 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 1049 63 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqrr~> 658 1050 62 1 @X 8 Ic zzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 720 1050 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 1050 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1050 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1050 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1050 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1050 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1050 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 1050 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 1050 62 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzz !!!~> 659 1051 61 1 @X 8 Ic zzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`q qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Q~> 720 1051 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 1051 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1051 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1051 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1051 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1051 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1051 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 1051 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 1051 61 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz !!!!~> 660 1052 60 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 1052 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 1052 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1052 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1052 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1052 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1052 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1052 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 1052 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 1052 60 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 662 1053 58 1 @X 8 Ic zzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 720 1053 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 1053 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1053 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1053 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1053 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1053 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1053 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 1053 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 1053 58 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzz !!!~> 663 1054 57 1 @X 8 Ic zzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Q~> 720 1054 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 1054 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1054 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1054 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1054 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1054 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1054 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 1054 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 1054 57 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzz !!!!~> 664 1055 56 1 @X 8 Ic zzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 1055 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 1055 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1055 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1055 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1055 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1055 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1055 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 1055 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 1055 56 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzz~> 664 1055 56 1 @X 8 Ic zzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 1055 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 1055 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1055 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1055 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1055 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1055 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1055 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 1055 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 1055 56 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzz~> 665 1056 55 1 @X 8 Ic zzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr~> 720 1056 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 1056 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1056 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1056 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1056 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1056 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1056 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 1056 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 1056 55 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzz!!~> 666 1057 54 1 @X 8 Ic zzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 720 1057 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 1057 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1057 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1057 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1057 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1057 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1057 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 1057 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 1057 54 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzz!!!~> 668 1058 52 1 @X 8 Ic z!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 720 1058 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 1058 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1058 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1058 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1058 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1058 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1058 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 1058 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 1058 52 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzz~> 669 1059 51 1 @X 8 Ic !!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrq s8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr~> 720 1059 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 1059 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1059 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1059 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1059 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1059 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1059 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 1059 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1360 1059 51 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzz!!~> 670 1060 50 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!!~> 720 1060 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 1060 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 1060 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1060 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1060 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1060 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1060 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 1060 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 1060 50 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N~> 671 1061 49 1 @X 8 Ic zzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!!~> 720 1061 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 1061 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 1061 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1061 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1061 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1061 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1061 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 1061 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 1061 49 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Q~> 673 1062 47 1 @X 8 Ic zzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!!~> 720 1062 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 1062 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 1062 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1062 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1062 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1062 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1062 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 1062 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 1062 47 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqrr~> 674 1063 46 1 @X 8 Ic zzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!!~> 720 1063 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 1063 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 1063 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1063 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1063 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1063 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1063 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 1063 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 1063 46 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8N~> 675 1064 45 1 @X 8 Ic zzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!!~> 720 1064 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 1064 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 1064 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1064 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1064 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1064 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1064 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 1064 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 1064 45 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Q~> 677 1065 43 1 @X 8 Ic zz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!!~> 720 1065 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 1065 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 1065 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1065 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1065 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1065 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1065 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 1065 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 1065 43 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqrr~> 678 1066 42 1 @X 8 Ic z!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!!~> 720 1066 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 1066 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 1066 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1066 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1066 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1066 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1066 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 1066 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 1066 42 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8N~> 679 1067 41 1 @X 8 Ic !!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz!!!!~> 720 1067 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 1067 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 1067 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1067 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1067 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1067 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1067 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 1067 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 1067 41 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Q~> 680 1068 40 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 720 1068 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 1068 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 1068 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1068 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1068 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1068 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1068 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 1068 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 1068 40 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 682 1069 38 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!!~> 720 1069 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 1069 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 1069 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1069 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1069 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1069 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1069 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 1069 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1360 1069 38 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzz!!!~> 683 1070 37 1 @X 8 Ic zzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzz!!!!~> 720 1070 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 1070 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 1070 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1070 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1070 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1070 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1070 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 1070 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 1070 37 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzz!!!!~> 684 1071 36 1 @X 8 Ic zzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 1071 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 1071 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 1071 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1071 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1071 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1071 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1071 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 1071 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 1071 36 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzz~> 685 1072 35 1 @X 8 Ic zzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzz!!~> 720 1072 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 1072 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 1072 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1072 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1072 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1072 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1072 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 1072 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 1072 35 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzz!!~> 686 1072 34 1 @X 8 Ic zzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 720 1072 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 1072 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 1072 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1072 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1072 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1072 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1072 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 1072 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 1072 34 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzz!!!~> 687 1073 33 1 @X 8 Ic zz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzz!!!!~> 720 1073 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 1073 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 1073 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1073 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1073 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1073 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1073 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 1073 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 1073 33 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzz!!!!~> 688 1074 32 1 @X 8 Ic z!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 1074 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 1074 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 1074 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1074 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1074 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1074 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1074 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 1074 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 1074 32 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzz~> 690 1075 30 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 720 1075 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 1075 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 1075 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1075 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1075 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1075 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1075 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 1075 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 1075 30 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 691 1076 29 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzz!!!!~> 720 1076 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 1076 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 1076 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1076 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1076 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1076 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1076 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 1076 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 1076 29 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzz!!!!~> 692 1077 28 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 720 1077 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 1077 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 1077 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1077 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1077 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1077 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1077 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 1077 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 1077 28 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzz~> 694 1078 26 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 720 1078 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 1078 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 1078 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1078 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1078 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1078 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1078 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 1078 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 1078 26 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzz!!!~> 695 1079 25 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzz!!!!~> 720 1079 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 1079 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 1079 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1079 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1079 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1079 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1079 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 1079 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1360 1079 25 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzz!!!!~> 697 1080 23 1 @X 8 Ic zz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!!~> 720 1080 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 1080 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1080 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1080 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1080 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1080 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1080 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 1080 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 1080 23 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqrr~> 698 1081 22 1 @X 8 Ic z!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 720 1081 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 1081 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1081 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1081 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1081 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1081 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1081 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 1081 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 1081 22 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8N~> 699 1082 21 1 @X 8 Ic !!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzz!!!!~> 720 1082 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 1082 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1082 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1082 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1082 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1082 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1082 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 1082 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 1082 21 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Q~> 701 1083 19 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!!~> 720 1083 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 1083 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1083 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1083 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1083 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1083 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1083 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 1083 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 1083 19 1 rf 702 1084 18 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 720 1084 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 1084 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1084 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1084 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1084 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1084 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1084 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 1084 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 1084 18 1 rf 704 1085 16 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 720 1085 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 1085 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1085 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1085 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1085 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1085 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1085 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 1085 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 1085 16 1 rf 705 1086 15 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!!~> 720 1086 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 1086 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1086 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1086 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1086 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1086 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1086 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 1086 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 1086 15 1 rf 706 1087 14 1 @X 8 Ic qZ$Tls8Vrqs8)cqzzzzzzz!!!~> 720 1087 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 1087 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1087 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1087 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1087 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1087 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1087 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 1087 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 1087 14 1 rf 708 1088 12 1 @X 8 Ic qZ$Tls8N'!zzzzzzz~> 720 1088 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 1088 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1088 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1088 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1088 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1088 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1088 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 1088 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 1088 12 1 rf 709 1089 11 1 @X 8 Ic qZ$Qqzzzzzzz!!~> 720 1089 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 1089 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1089 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1089 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1089 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1089 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1089 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 1089 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 1089 11 1 rf 710 1089 10 1 rf 720 1089 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 1089 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1089 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1089 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1089 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1089 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1089 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 1089 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1360 1089 10 1 rf 250 255 r3 711 1090 9 1 rf 720 1090 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 1090 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1090 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1090 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1090 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1090 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1090 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 1090 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> K 1360 1090 9 1 rf 250 255 r3 712 1091 8 1 rf 720 1091 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 1091 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1091 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1091 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1091 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1091 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1091 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 1091 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> K 1360 1091 8 1 rf 250 255 r3 714 1092 6 1 rf 720 1092 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 1092 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1092 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1092 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1092 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1092 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1092 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 1092 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> K 1360 1092 6 1 rf 250 255 r3 715 1093 5 1 rf 720 1093 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 1093 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1093 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1093 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1093 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1093 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1093 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 1093 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> K 1360 1093 5 1 rf 250 255 r3 717 1094 3 1 rf 720 1094 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 1094 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1094 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1094 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1094 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1094 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1094 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 1094 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> K 1360 1094 3 1 rf 250 255 r3 719 1095 1 1 rf 720 1095 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 1095 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1095 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1095 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1095 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1095 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1095 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 1095 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> K 1360 1095 1 1 rf 720 1096 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 1096 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1096 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1096 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1096 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1096 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1096 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 1096 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 722 1097 78 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzz zzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 800 1097 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1097 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1097 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1097 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1097 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1097 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 1097 78 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 723 1098 77 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzz zzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Q~> 800 1098 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1098 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1098 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1098 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1098 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1098 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 1098 77 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Q~> 725 1099 75 1 @X 8 Ic zzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzz zzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr~> 800 1099 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1099 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1099 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1099 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1099 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1099 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 1099 75 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqrr~> 726 1100 74 1 @X 8 Ic qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!!~> 800 1100 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 1100 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1100 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1100 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1100 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1100 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 1100 74 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzz!!!~> 728 1101 72 1 @X 8 Ic qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 800 1101 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 1101 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1101 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1101 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1101 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1101 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 1101 72 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzz~> 730 1102 70 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!!~> 800 1102 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 1102 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1102 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1102 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1102 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1102 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 1102 70 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 731 1103 69 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzz zzzzzzzz!!!!~> 800 1103 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 1103 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1103 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1103 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1103 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1103 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 1103 69 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzz!!!!~> 733 1104 67 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzz zzz!!~> 800 1104 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 1104 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1104 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1104 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1104 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1104 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 1104 67 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz!!~> 734 1104 66 1 @X 8 Ic zzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzz zz!!!~> 800 1104 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 1104 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1104 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1104 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1104 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1104 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 1104 66 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz!!!~> 734 1105 66 1 @X 8 Ic zzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzz zz!!!~> 800 1105 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 1105 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1105 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1105 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1105 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1105 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 1105 66 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzz!!!~> 736 1106 64 1 @X 8 Ic zzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzz z~> 800 1106 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 1106 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1106 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1106 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1106 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1106 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 1106 64 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzz~> 738 1107 62 1 @X 8 Ic zzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz !!!~> 800 1107 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 1107 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1107 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1107 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1107 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1107 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 1107 62 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzz!!!~> 740 1108 60 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 800 1108 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 1108 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1108 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1108 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1108 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1108 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 1108 60 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 741 1109 59 1 @X 8 Ic zzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz !!~> 800 1109 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 1109 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1109 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1109 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1109 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1109 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1280 1109 59 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzz!!~> 743 1110 57 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzz !!!!~> 800 1110 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 1110 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1110 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1110 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1110 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1110 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 1110 57 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Q~> 745 1111 55 1 @X 8 Ic zzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzz !!~> 800 1111 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 1111 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1111 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1111 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1111 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1111 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 1111 55 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqrr~> 746 1112 54 1 @X 8 Ic zzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 800 1112 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 1112 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1112 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1112 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1112 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1112 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 1112 54 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8N~> 748 1113 52 1 @X 8 Ic zzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 1113 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 1113 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1113 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1113 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1113 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1113 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 1113 52 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq ~> 750 1114 50 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 800 1114 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 1114 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1114 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1114 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1114 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1114 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 1114 50 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!!~> 752 1115 48 1 @X 8 Ic zzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 800 1115 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 1115 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1115 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1115 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1115 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1115 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 1115 48 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzz~> 753 1116 47 1 @X 8 Ic zzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzz!!~> 800 1116 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 1116 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1116 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1116 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1116 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1116 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 1116 47 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzz!!~> 755 1117 45 1 @X 8 Ic zzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzz!!!!~> 800 1117 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 1117 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1117 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1117 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1117 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1117 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 1117 45 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzz!!!!~> 757 1118 43 1 @X 8 Ic zzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzz!!~> 800 1118 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 1118 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1118 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1118 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1118 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1118 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 1118 43 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz!!~> 758 1118 42 1 @X 8 Ic zzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 800 1118 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 1118 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1118 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1118 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1118 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1118 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 1118 42 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzz!!!~> 759 1119 41 1 @X 8 Ic zzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzz!!!!~> 800 1119 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 1119 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1119 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1119 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1119 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1119 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1280 1119 41 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz!!!!~> 761 1120 39 1 @X 8 Ic zzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!!~> 800 1120 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1120 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1120 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1120 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1120 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1120 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 1120 39 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzz!!~> 763 1121 37 1 @X 8 Ic zzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzz!!!!~> 800 1121 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1121 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1121 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1121 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1121 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1121 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 1121 37 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzz!!!!~> 765 1122 35 1 @X 8 Ic zzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!!~> 800 1122 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1122 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1122 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1122 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1122 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1122 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 1122 35 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzz!!~> 766 1123 34 1 @X 8 Ic zzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 800 1123 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1123 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1123 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1123 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1123 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1123 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 1123 34 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zz!!!~> 768 1124 32 1 @X 8 Ic zzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 1124 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1124 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1124 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1124 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1124 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1124 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 1124 32 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!z~> 770 1125 30 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 800 1125 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1125 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1125 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1125 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1125 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1125 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 1125 30 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 772 1126 28 1 @X 8 Ic zzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 1126 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1126 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1126 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1126 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1126 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1126 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 1126 28 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 774 1127 26 1 @X 8 Ic zzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 800 1127 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1127 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1127 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1127 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1127 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1127 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 1127 26 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8N~> 776 1128 24 1 @X 8 Ic zzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 800 1128 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1128 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1128 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1128 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1128 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1128 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 1128 24 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq~> 778 1129 22 1 @X 8 Ic z!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 800 1129 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1129 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1129 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1129 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1129 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1129 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1280 1129 22 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8N~> 780 1130 20 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 1130 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1130 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1130 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1130 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1130 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1130 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 1130 20 1 rf 782 1131 18 1 @X 8 Ic zzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 800 1131 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1131 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1131 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1131 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1131 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1131 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 1131 18 1 rf 784 1131 16 1 @X 8 Ic zzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 1131 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1131 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1131 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1131 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1131 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1131 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 1131 16 1 rf 784 1132 16 1 @X 8 Ic zzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 800 1132 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1132 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1132 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1132 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1132 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1132 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 1132 16 1 rf 786 1133 14 1 @X 8 Ic zzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 800 1133 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1133 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1133 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1133 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1133 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1133 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 1133 14 1 rf 789 1134 11 1 @X 8 Ic !!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr~> 800 1134 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1134 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1134 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1134 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1134 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1134 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1280 1134 11 1 rf 250 255 r3 791 1135 9 1 rf 800 1135 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1135 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1135 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1135 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1135 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1135 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> K 1280 1135 9 1 rf 250 255 r3 793 1136 7 1 rf 800 1136 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1136 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1136 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1136 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1136 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1136 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> K 1280 1136 7 1 rf 250 255 r3 795 1137 5 1 rf 800 1137 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1137 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1137 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1137 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1137 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1137 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> K 1280 1137 5 1 rf 250 255 r3 797 1138 3 1 rf 800 1138 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1138 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1138 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1138 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1138 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1138 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> K 1280 1138 3 1 rf 800 1139 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 880 1139 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1139 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1139 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1139 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1200 1139 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 802 1140 78 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!!~> 880 1140 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1140 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1140 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1140 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1140 78 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzz!!!~> 804 1141 76 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 880 1141 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1141 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1141 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1141 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1141 76 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzz~> 806 1142 74 1 @X 8 Ic qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzz zzzzzzzzzzzzzzzzzzzz!!!~> 880 1142 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1142 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1142 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1142 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1142 74 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzz!!!~> 808 1143 72 1 @X 8 Ic qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz zzzzzzzzzzzzzzz~> 880 1143 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1143 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1143 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1143 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1143 72 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzz~> 810 1143 70 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!!~> 880 1143 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1143 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1143 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1143 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1143 70 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 811 1144 69 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzz zzzzzzzz!!!!~> 880 1144 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1144 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1144 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1144 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1144 69 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzz!!!!~> 813 1145 67 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzz zzz!!~> 880 1145 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1145 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1145 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1145 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1145 67 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzz!!~> 816 1146 64 1 @X 8 Ic zzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzz z~> 880 1146 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1146 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1146 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1146 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1146 64 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzz~> 818 1147 62 1 @X 8 Ic zzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz !!!~> 880 1147 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1147 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1147 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1147 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1147 62 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzz!!!~> 821 1148 59 1 @X 8 Ic zzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz !!~> 880 1148 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1148 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1148 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1148 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1148 59 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzz!!~> 823 1149 57 1 @X 8 Ic zzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzzzz !!!!~> 880 1149 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 960 1149 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1149 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1149 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1200 1149 57 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzz!!!!~> 826 1150 54 1 @X 8 Ic zzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 880 1150 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1150 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1150 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1150 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1150 54 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8N~> 829 1151 51 1 @X 8 Ic zzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzz!!~> 880 1151 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1151 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1151 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1151 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1151 51 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqrr~> 831 1152 49 1 @X 8 Ic zzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzz!!!!~> 880 1152 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1152 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1152 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1152 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1152 49 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzz!!!!~> 834 1153 46 1 @X 8 Ic zzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 880 1153 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1153 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1153 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1153 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1153 46 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzz!!!~> 836 1154 44 1 @X 8 Ic zzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 1154 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1154 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1154 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1154 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1154 44 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzz~> 837 1154 43 1 @X 8 Ic zzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzz!!~> 880 1154 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1154 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1154 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1154 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1154 43 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz!!~> 839 1155 41 1 @X 8 Ic zzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzz!!!!~> 880 1155 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1155 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1155 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1155 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1155 41 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz!!!!~> 842 1156 38 1 @X 8 Ic zzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzz!!!~> 880 1156 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1156 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1156 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1156 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1156 38 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzz!!!~> 845 1157 35 1 @X 8 Ic zzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzz!!~> 880 1157 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1157 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1157 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1157 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1157 35 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzz!!~> 848 1158 32 1 @X 8 Ic z!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 880 1158 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1158 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1158 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1158 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1158 32 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzz~> 851 1159 29 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzz!!!!~> 880 1159 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 960 1159 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1040 1159 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1120 1159 80 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz~> 1200 1159 29 1 @X 8 Ic zzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzz!!!!~> 854 1160 26 1 @X 8 Ic zzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzz!!!~> 880 1160 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1160 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1160 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1160 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1160 26 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8N~> 857 1161 23 1 @X 8 Ic zz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzz!!~> 880 1161 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1161 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1161 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1161 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1161 23 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqrr~> 860 1162 20 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1162 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1162 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1162 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1162 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1162 20 1 rf 863 1163 17 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzz!!!!~> 880 1163 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1163 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1163 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1163 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1163 17 1 rf 864 1163 16 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 880 1163 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1163 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1163 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1163 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1163 16 1 rf 866 1164 14 1 @X 8 Ic qZ$Tls8Vrqs8)cqzzzzzzz!!!~> 880 1164 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1164 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1164 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1164 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1164 14 1 rf 869 1165 11 1 @X 8 Ic qZ$Qqzzzzzzz!!~> 880 1165 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1165 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1165 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1165 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1165 11 1 rf 873 1166 7 1 rf 880 1166 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1166 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1166 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1166 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1166 7 1 rf 876 1167 4 1 rf 880 1167 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1167 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1167 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1167 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1200 1167 4 1 rf 880 1168 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1168 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1168 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1168 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 884 1169 76 1 @X 8 Ic zzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 960 1169 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1040 1169 80 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 1120 1169 76 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzz~> 887 1170 73 1 @X 8 Ic zzzzzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz !;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Q~> 960 1170 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1170 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1170 73 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Q~> 891 1171 69 1 @X 8 Ic zzzzzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz !;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Q~> 960 1171 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1171 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1171 69 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzz!!!!~> 892 1171 68 1 @X 8 Ic zzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz !!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1171 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1171 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1171 68 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzz~> 895 1172 65 1 @X 8 Ic zzzzzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`q qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Q~> 960 1172 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1172 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1172 65 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz z!!!!~> 899 1173 61 1 @X 8 Ic zzzzzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`q qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Q~> 960 1173 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1173 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1173 61 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzz !!!!~> 903 1174 57 1 @X 8 Ic zzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!;c`qqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Q~> 960 1174 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1174 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1174 57 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzz !!!!~> 908 1175 52 1 @X 8 Ic z!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tl s8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1175 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1175 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1175 52 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzz~> 912 1176 48 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cq~> 960 1176 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1176 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1176 48 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzz~> 916 1177 44 1 @X 8 Ic qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 960 1177 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1177 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1177 44 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzz~> 921 1178 39 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr~> 960 1178 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1178 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1178 39 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr~> 921 1178 39 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr~> 960 1178 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1178 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1178 39 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr~> 926 1179 34 1 @X 8 Ic zzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N~> 960 1179 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1040 1179 80 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzz zzzzz!!)lqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq~> 1120 1179 34 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzz!!)lqs8)cqqZ$Tls8N~> 932 1180 28 1 rf 960 1180 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1180 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1180 28 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzz~> 937 1181 23 1 rf 960 1181 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1181 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1181 23 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzz!!~> 943 1182 17 1 rf 960 1182 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1182 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1182 17 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzz!!!!~> 949 1183 11 1 rf 960 1183 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1183 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1120 1183 11 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!!!~> 950 1183 10 1 rf 960 1183 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1183 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 250 255 r3 1120 1183 10 1 rf K 956 1184 4 1 rf 960 1184 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1184 80 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 250 255 r3 1120 1184 4 1 rf 964 1185 76 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cq qZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1185 76 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzz~> 972 1186 68 1 @X 8 Ic zzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzz zzzz~> 1040 1186 68 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzz~> 979 1186 61 1 @X 8 Ic zzzzzzzzzzzzzzz!!!#qs8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8Vrqrr<$!zzzzzzzzzzzzzzzzzzz zz!!!!~> 1040 1186 61 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz!!!!~> 980 1187 60 1 @X 8 Ic zzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzz~> 1040 1187 60 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzz~> 993 1188 47 1 @X 8 Ic zzzzz!;c`qqZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Qqzzzzzzzzzzzzzzzzzzzzzz!!~> 1040 1188 47 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzzzzzzzqZ$Tls8Vrqs8)cq qZ$Tls8Vrqrr~> 1006 1189 34 1 @X 8 Ic qZ$Tls8Vrqs8)cqzzzzzzzzzzzzzzzzzzzzzz!!!~> 1040 1189 34 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzzzz!!!~> 1009 1189 31 1 @X 8 Ic qZ$Qqzzzzzzzzzzzzzzzzzzzzzz!!~> 1040 1189 31 1 @X 8 Ic qZ$Tls8Vrqs8)cqqZ$Tls8Vrqs8)cqqZ$Tls8N'!zzzzzzzzzzzzzzz!!~> Q q 0 0 2270 2100 re Y 10 w K 1625 600 m 0 -323.09 -261.91 -585 -585 -585 c -323.09 0 -585 261.91 -585 585 c 0 323.09 261.91 585 585 585 c 323.09 0 585 -261.91 585 -585 c 0 0 0 0 v h S Q q 60 1460 810 460 re Y 0.36 i K 105.82 1809.98 210.94 0 5.1 -98.26 -12.13 0 P -7.97 57.77 -28.83 86.66 -62.58 86.66 c -6.8 0 -11.46 -1.17 -13.97 -3.52 c -2.52 -2.34 -3.78 -6.21 -3.78 -11.6 c 0 -207.77 p 0 -4.22 1.23 -7.32 3.69 -9.32 c 2.46 -1.99 6.5 -2.99 12.13 -2.99 c 26.19 0 0 -13.18 -120.76 0 ^ 29.88 0 p 3.98 0 7.03 1 9.14 2.99 c 2.11 1.99 3.16 4.63 3.16 7.91 c 0 210.76 p 0 4.45 -1.35 7.82 -4.04 10.11 c -2.7 2.29 -7.03 3.43 -13.01 3.43 c -16.99 0 -31.17 -8.03 -42.54 -24.08 c -9.37 -13.24 -16.11 -34.1 -20.21 -62.58 c -12.83 0 p f 496.29 1631.21 -117.95 0 P 0.59 -25.08 5.27 -42.77 14.06 -53.09 c 10.08 -11.6 22.91 -17.4 38.5 -17.4 c 22.97 0 41.43 13.07 55.37 39.2 c 11.43 -4.92 p -17.11 -33.28 -41.84 -49.92 -74.18 -49.92 c -22.03 0 -40.58 7.97 -55.63 23.91 c -15.06 15.94 -22.59 36.33 -22.59 61.17 c 0 26.72 7.41 48.31 22.24 64.78 c 14.82 16.46 33.08 24.7 54.76 24.7 c 15.94 0 29.71 -4.1 41.31 -12.3 c 11.6 -8.2 20.33 -19.98 26.19 -35.33 c 4.1 -10.78 6.27 -24.37 6.5 -40.78 c h 378.34 1643.69 71.37 0 P 4.22 0 7.5 1.44 9.84 4.31 c 2.34 2.87 3.52 7.76 3.52 14.68 c 0 12.89 -4.01 23.85 -12.04 32.87 c -8.03 9.02 -17.49 13.54 -28.39 13.54 c -12.19 0 -22.53 -5.45 -31.03 -16.35 c -8.5 -10.9 -12.92 -27.25 -13.27 -49.04 c f 518.44 1714.71 79.45 0 0 -12.13 P -12.89 -0.47 -19.34 -2.75 -19.34 -6.86 c 0 -1.87 1.05 -4.28 3.16 -7.21 c 28.48 -37.62 27.77 34.8 p 1.99 2.58 2.99 5.04 2.99 7.38 c 0 5.04 -7.09 8.2 -21.27 9.49 c 0 12.13 69.43 0 ^ p -16.76 -2.7 -29.59 -9.67 -38.5 -20.92 c -32.17 -40.43 50.8 -66.09 p 3.4 -4.34 7.09 -7.41 11.07 -9.23 c 3.98 -1.82 9.84 -2.72 17.58 -2.72 c 0 -13.18 -84.2 0 ^ 5.98 0 p 6.21 0 10.78 0.64 13.71 1.93 c 1.88 0.94 2.81 2.11 2.81 3.52 c 0 1.29 -1.11 3.46 -3.34 6.5 c -33.05 43.77 -26.54 -34.1 p -3.75 -4.8 -5.62 -8.67 -5.62 -11.6 c 0 -2.93 1.29 -5.16 3.87 -6.68 c 3.63 -2.11 9.79 -3.22 18.46 -3.34 c 0 -13.18 -71.54 0 ^ p 8.67 0.82 15.35 2.64 20.04 5.45 c 7.73 4.8 14.71 11.07 20.92 18.81 c 32.7 41.48 -48.34 62.58 p -5.39 7.03 -13.83 10.72 -25.31 11.07 c f 759.02 1781.86 11.95 0 0 -67.15 53.26 0 0 -16.17 ^ 0 -105.64 P 0 -9.14 2.17 -16.14 6.5 -21.01 c 4.34 -4.86 9.84 -7.29 16.52 -7.29 c 7.97 0 14.77 3.69 20.39 11.07 c 5.63 7.38 8.91 19.57 9.84 36.56 c 11.78 0 p -0.7 -21.91 -5.68 -38.17 -14.94 -48.78 c -9.26 -10.61 -21.27 -15.91 -36.04 -15.91 c -13.59 0 -24.23 3.72 -31.9 11.16 c -7.68 7.44 -11.51 17.2 -11.51 29.27 c 0 110.57 -28.65 0 0 12.3 p 13.01 2.23 22.91 7.68 29.71 16.35 c 10.08 13.01 15.53 31.23 16.35 54.67 c f Q q 0 0 2270 2100 re Y K 1700 2100 20 0 0 -20 -1350 -990 -20 0 0 20 f cleartomark end end pagesave restore showpage %%PageTrailer %%Trailer %%Pages: 1 %%EOF latex2rtf-2.3.18/test/report.tex0000777000175000017500000001643513050672360016752 0ustar wilfriedwilfried\documentclass{report} \title{Test Document for Documentclass Report} \author{The LaTeX2rtf team\thanks{Thanks to Donald Knuth for designing TeX}} \begin{document} \maketitle \tableofcontents \listoffigures \chapter{First Chapter} \section{Intro} Let the distance be 633\,nm or 633\,nm or 633\,nm or 633\,nm or 633\,nm or 633\,nm\ or 633\,nm or 633\,nm or 633\,nm or 633\,nm or 633\,nm or 633\,nm just to force a line break to test the non-breaking space. Let the distance be 633\thinspace{}nm or 633\thinspace{}nm or 633\thinspace{}nm or 633\thinspace{}nm or 633\thinspace{}nm or 633\thinspace{}nm\ or 633\thinspace{}nm or 633\thinspace{}nm or 633\thinspace{}nm or 633\thinspace{}nm or 633\thinspace{}nm or 633\thinspace{}nm just to force a line break to test the non-breaking space. Let the distance be 633\thinspace nm or 633\thinspace nm or 633\thinspace nm or 633\thinspace nm or 633\thinspace nm or 633\thinspace nm\ or 633\thinspace nm or 633\thinspace nm or 633\thinspace nm or 633\thinspace nm or 633\thinspace nm or 633\thinspace nm just to force a line break to test the non-breaking space. Lorem ipsum dolor sit amet,\footnote{the first} consectetuer adipiscing elit. Sed posuere, dui ut nonummy lobortis, leo dui laoreet arcu, sed blandit lectus libero sed elit. In non velit. Aenean dignissim aliquam felis. Curabitur nec velit. Donec vitae felis. Pellentesque faucibus suscipit dui. Nunc dictum, purus congue ultrices condimentum, diam enim accumsan dolor, et viverra risus odio et justo. Phasellus accumsan magna ac turpis. Nullam bibendum condimentum leo. Cras a tellus. Phasellus nulla ipsum, egestas at, tempor id, accumsan in, eros. Praesent tincidunt tellus ut risus. See Figure~\ref{fig1}. \begin{figure}[h] \begin{center} {\Large FIGURE} \label{fig1} \caption{This is figure 1} \end{center} \end{figure} Mauris lobortis.\footnote{the second} Pellentesque egestas nunc at ligula. Nulla ultrices magna quis neque. Aenean lobortis semper purus. In nonummy egestas urna. Nam sodales orci ac felis. Vestibulum vitae ante. Vivamus quis dui. Aenean suscipit. Sed mollis. Pellentesque erat ligula, dictum at, cursus et, accumsan fringilla, metus. Fusce ac neque id ipsum ornare sagittis. See Figure~\ref{fig1} and See Figure~\ref{fig3}. \begin{figure}[ht] \centering {\Large FIGURE2} \end{figure} Mauris lobortis.\footnote{the third} Pellentesque egestas nunc at ligula. Nulla ultrices magna quis neque. Aenean lobortis semper purus. In nonummy egestas urna. Nam sodales orci ac felis. Vestibulum vitae ante. Vivamus quis dui. Aenean suscipit. Sed mollis. Pellentesque erat ligula, dictum at, cursus et, accumsan fringilla, metus. Fusce ac neque id ipsum ornare sagittis. See Figure~\ref{fig1} and See Figure~\ref{fig3}. \begin{table}[ht] \centering {\Large TABLE} \end{table} Mauris lobortis. Pellentesque egestas nunc at ligula.\footnote{the fourth} Nulla ultrices magna quis neque. Aenean lobortis semper purus. In nonummy egestas urna. Nam sodales orci ac felis. Vestibulum vitae ante. Vivamus quis dui. Aenean suscipit. Sed mollis. Pellentesque erat ligula, dictum at, cursus et, accumsan fringilla, metus. Fusce ac neque id ipsum ornare sagittis. See Figure~\ref{fig1} and See Figure~\ref{fig3}. \section{Method} Mauris imperdiet. Duis scelerisque. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nulla facilisi. Vivamus sodales magna et nibh. Nulla non neque in quam mollis ornare. Vestibulum nonummy augue ut wisi. Curabitur adipiscing eros sit amet lorem. Cras auctor, tortor ut euismod iaculis, elit purus facilisis nibh, id tempus nulla libero in ipsum. Praesent vestibulum facilisis arcu. Curabitur quis augue ac mi dictum ultricies. Maecenas consectetuer. Mauris non lacus. Nunc et nisl sit amet ligula pretium dapibus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nullam ut metus in sapien mollis dignissim. Ut sem lacus, commodo nec, fermentum sit amet, porta sit amet, arcu. Nunc non eros. Vestibulum ullamcorper adipiscing risus.\footnote{the fifth} See Figure~\ref{fig2}. \begin{figure}[h] \begin{center} \vspace{2cm} \label{fig2} \caption{This is figure 2} \end{center} \end{figure} \chapter{Second Chapter} \section{Intro} Mauris lobortis. Pellentesque egestas nunc at ligula. Nulla ultrices magna quis neque. Aenean lobortis semper purus. In nonummy egestas urna. Nam sodales orci ac felis. Vestibulum vitae ante. Vivamus quis dui. Aenean suscipit. Sed mollis. Pellentesque erat ligula, dictum at, cursus et, accumsan fringilla, metus. Fusce ac neque id ipsum ornare sagittis.\footnote{the first in the second chapter} See Figure~\ref{fig1} and See Figure~\ref{fig3}. \begin{figure}[h] \begin{center} \vspace{2cm} \label{fig3} \caption{This is figure 3} \end{center} \end{figure} \section{Method} Maecenas gravida, massa id interdum semper, purus ipsum vulputate nibh, vel egestas diam ante sit amet metus. Etiam rutrum augue eleifend leo. Vestibulum a leo. Duis rhoncus orci quis tortor. Pellentesque id ipsum nec est vestibulum imperdiet. Etiam volutpat. Maecenas ornare laoreet mauris. Praesent feugiat. Donec pede elit, sollicitudin ut, vulputate a, venenatis eu, dui. Praesent mollis. Aenean enim dui, commodo at, tincidunt at, luctus suscipit, leo. Aenean urna. Praesent adipiscing. Quisque id arcu at velit tincidunt consectetuer. Phasellus gravida est sed felis. Proin mi tortor, suscipit et, convallis euismod, ultrices vitae, justo. Cras leo arcu, viverra at, dignissim nec, feugiat sed, ligula. See Figure~\ref{fig2} and See Figure~\ref{fig4}. \begin{figure}[h] \begin{center} \vspace{2cm} \label{fig4} \caption{This is figure 4} \end{center} \end{figure} Nunc leo justo, egestas id, sodales id, aliquam eget, massa. Mauris posuere nibh pulvinar neque feugiat porta. Morbi tempor faucibus nibh. Donec sit amet urna. Sed dictum dui ut justo. Vestibulum imperdiet. Morbi sed risus. Praesent sollicitudin. Vivamus ut est sit amet diam semper lacinia. Donec nec tortor a lacus placerat aliquet. Vestibulum quis turpis. Curabitur auctor libero. Nam sit amet felis nec mauris tempus imperdiet. Aenean est ipsum, molestie eget, vulputate tincidunt, tempus ac, lectus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nullam molestie rhoncus metus. Nunc sollicitudin ipsum nec urna. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos hymenaeos. In hac habitasse platea dictumst. \appendix \chapter{First Appendix} \section{Intro} Mauris lobortis. Pellentesque egestas nunc at ligula. Nulla ultrices magna quis neque. Aenean lobortis semper purus. In nonummy egestas urna. Nam sodales orci ac felis. Vestibulum vitae ante. Vivamus quis dui. Aenean suscipit. Sed mollis. Pellentesque erat ligula, dictum at, cursus et, accumsan fringilla, metus. Fusce ac neque id ipsum ornare sagittis. See Figure~\ref{fig1} and See Figure~\ref{fig3}. \chapter{Second Appendix} \section{Intro} Mauris lobortis. Pellentesque egestas nunc at ligula. Nulla ultrices magna quis neque. Aenean lobortis semper purus. In nonummy egestas urna. Nam sodales orci ac felis. Vestibulum vitae ante. Vivamus quis dui. Aenean suscipit. Sed mollis. Pellentesque erat ligula, dictum at, cursus et, accumsan fringilla, metus. Fusce ac neque id ipsum ornare sagittis. See Figure~\ref{fig1} and See Figure~\ref{fig3}. \end{document} latex2rtf-2.3.18/test/eqnnumber2.tex0000777000175000017500000000076113050672360017510 0ustar wilfriedwilfried\documentclass[11pt]{book} \begin{document} \chapter{Introduction} \section{one} Here are equations~\ref{eqn:one} and \ref{eqn:two}: \begin{equation} \label{eqn:one}y = 3x+2 \end{equation} \begin{equation} \label{eqn:two}y = 5x-2 \end{equation} \chapter{Discussion} \section{two} Here are equations~\ref{eqn:three} and \ref{eqn:four}: \subsection{two point one} \begin{equation} \label{eqn:three}y = 3x+2 \end{equation} \begin{equation} \label{eqn:four}y = 5x-2 \end{equation} \end{document} latex2rtf-2.3.18/test/percent.rtf0000644000175000017500000002047013664476470017074 0ustar wilfriedwilfried{\rtf1\ansi\uc1\deff0\deflang1024 {\fonttbl{\f0\fnil\fcharset0 Times New Roman;} {\f1\fnil\fcharset0 Arial;} {\f2\fnil\fcharset0 Arial;} {\f3\fnil\fcharset0 Courier New;} {\f4\fnil\fcharset0 Zapf Chancery;} {\f5\fnil\fcharset0 STIXGeneral;} {\f6\fnil\fcharset0 MS Gothic;} } {\colortbl; \red0\green0\blue0; \red0\green0\blue255; \red0\green255\blue255; \red0\green255\blue0; \red255\green0\blue255; \red255\green0\blue0; \red255\green255\blue0; \red255\green255\blue255; } {\stylesheet {\s0\qj\widctlpar\f0\fs20 \snext0 Normal;} {\cs10 \additive\ssemihidden Default Paragraph Font;} {\s1\qc\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 Part;} {\s2\ql\sb240\sa120\keepn\f0\b\fs40 \sbasedon0\snext0 heading 1;} {\s3\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 2;} {\s4\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext0 heading 3;} {\s5\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 4;} {\s6\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 5;} {\s7\ql\sb240\sa120\keepn\f0\b\fs24 \sbasedon0\snext0 heading 6;} {\s8\qr\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext8 rightpar;} {\s9\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext9 centerpar;} {\s10\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext10 leftpar;} {\s11\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equation;} {\s12\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationNum;} {\s13\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlign;} {\s14\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationAlignNum;} {\s15\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArray;} {\s16\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 equationArrayNum;} {\s17\ql\sb120\sa120\keep\widctlpar\f0\fs20 \sbasedon0\snext0 theorem;} {\s18\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 bitmapCenter;} {\s20\qc\sb240\sa240\b\f0\fs36 \sbasedon0\snext21 Title;} {\s21\qc\sa120\f0\fs20 \sbasedon0\snext0 author;} {\s22\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext22 footer;} {\s23\ql\tqc\tx4536\tqr\tx9072\f0\fs20 \sbasedon0\snext23 header;} {\s30\ql\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 caption;} {\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext0 Figure;} {\s32\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext32 Table;} {\s33\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext33 Tabular;} {\s34\qc\sb120\sa0\keep\widctlpar\f0\fs20 \sbasedon0\snext34 Tabbing;} {\s35\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext35 Quote;} {\s38\ql\widctlpar\f3\fs20 \snext38 verbatim;} {\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext46 List;} {\s47\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext47 List 1;} {\s50\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 latex picture;} {\s51\qc\sb120\sa120\keep\widctlpar\f0 \sbasedon0\snext0 subfigure;} {\s61\ql\sb240\sa120\keepn\f0\b\fs32 \sbasedon0\snext62 bibheading;} {\s62\ql\fi-567\li567\sb0\sa0\f0\fs20 \sbasedon0\snext62 bibitem;} {\s64\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20 \sbasedon0\snext64 endnotes;} {\s65\ql\fi-113\li397\lin397\f0\fs20 \sbasedon0\snext65 footnote text;} {\s66\qj\fi-170\li454\lin454\f0\fs20 \sbasedon0\snext66 endnote text;} {\cs62\super \additive\sbasedon10 footnote reference;} {\cs63\super \additive\sbasedon10 endnote reference;} {\s67\ql\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext67 acronym;} {\s70\qc\sa120\b\f0\fs20 \sbasedon0\snext71 abstract title;} {\s71\qj\li1024\ri1024\fi340\widctlpar\f0\fs20 \sbasedon0\snext0 abstract;} {\s80\ql\sb240\sa120\keepn\f0\b\fs20 \sbasedon0\snext0 contents_heading;} {\s81\ql\li425\tqr\tldot\tx8222\sb240\sa60\keepn\f0\fs20\b \sbasedon0\snext82 toc 1;} {\s82\ql\li512\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext83 toc 2;} {\s83\ql\li1024\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext84 toc 3;} {\s84\ql\li1536\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext85 toc 4;} {\s85\ql\li2048\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 5;} {\s86\ql\li2560\tqr\tldot\tx8222\sb60\sa60\keepn\f0\fs20 \sbasedon0\snext86 toc 6;} } {\info {\title Original file was percent.tex} {\doccomm Created using latex2rtf 2.3.18 r1266 (released May 29, 2020) on Sat May 30 17:35:20 2020 } } {\footer\pard\plain\f0\fs20\qc\chpgn\par} \paperw12280\paperh15900\margl2680\margr2700\margt2540\margb1760\pgnstart0\widowctrl\qj\ftnbj\f0\aftnnar {\pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb240 \fi0 1 Some simple comments to check percentage signs\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 Here is a comment embedded in text. Sometimes one just uses a comment to hide stuff.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 {\scaps0\b0\i This will work if the % is correctly ignored}\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Testing {\b0\i0\scaps0\f3 \\%} after this: % chance of failure.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi300 Testing {\b0\i0\scaps0\f3 \\\\%} after this: \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi0 Testing {\b0\i0\scaps0\f3 \\\\\\%} after this: \par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \fi0 % chance of failure.\par {\pard\plain\s31\qc\sb120\sa0\keep\widctlpar\f0\fs20\sl240\slmult1 \sb240 \fi300 \par \pard\plain\s30\ql\sb120\sa120\keep\widctlpar\f0\sl240\slmult1 \fi0 {Figure {\*\bkmkstart BMzoom}1{\*\bkmkend BMzoom}: The spatial distribution of the total energy density of ellipsoidal shaped FeSi-films; a:b:c = 10:10:1, {{\field{\*\fldinst{ EQ {\i K}\\s\\do5({\fs16 1})=29\i0\scaps0\b0\f0 kJ/m\\s\\up5({\fs16 3})}}{\fldrslt }} }, {{\field{\*\fldinst{ EQ {\i K}\\s\\do5({\fs16 2})=\u8722?9\i0\scaps0\b0\f0 kJ/m\\s\\up5({\fs16 3})}}{\fldrslt }} }; a) energy scale {{\field{\*\fldinst{ EQ {\i e}=500\i0\scaps0\b0\f0 kJ/m\\s\\up5({\fs16 3})}}{\fldrslt }} }, b), c), d) reducing the energy scale to 33% for each picture, the total energy reveals the magnetocrystalline energy in the film plane}{\field{\*\fldinst TC "1 The spatial distribution of the total energy density of ellipsoidal shaped FeSi-films; a:b:c = 10:10:1, {{\field{\*\fldinst{ EQ {\i K}\\s\\do5({\fs16 1})=29\i0\scaps0\b0\f0 kJ/m\\s\\up5({\fs16 3})}}{\fldrslt }} }, {{\field{\*\fldinst{ EQ {\i K}\\s\\do5({\fs16 2})=\u8722?9\i0\scaps0\b0\f0 kJ/m\\s\\up5({\fs16 3})}}{\fldrslt }} }; a) energy scale {{\field{\*\fldinst{ EQ {\i e}=500\i0\scaps0\b0\f0 kJ/m\\s\\up5({\fs16 3})}}{\fldrslt }} }, b), c), d) reducing the energy scale to 33% for each picture, the total energy reveals the magnetocrystalline energy in the film plane" \\f f}{\fldrslt }}\par }\pard\plain\s3\ql\sb240\sa120\keepn\f0\b\fs32\sl240\slmult1 \sb480 \fi0 2 Checks for the option bracket parameter\par {\pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {NEEDS}\tab testing {\b0\i0\scaps0\f3 [NEEDS]} \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {{[}NEEDS}\tab testing {\b0\i0\scaps0\f3 [\{[\}NEEDS]} \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {NEEDS{]}}\tab testing {\b0\i0\scaps0\f3 [NEEDS\{]\}]} \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {{[}NEEDS{]}}\tab testing {\b0\i0\scaps0\f3 [\{[\}NEEDS\{]\}]} \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {NEEDS\{}\tab testing {\b0\i0\scaps0\f3 [NEEDS\\\{]} \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {{{\b {\scaps \fs24 {[}NEEDS}}}}\tab testing {\b0\i0\scaps0\f3 [\{\\textbf\{\\textsc\{\\large \{[\}NEEDS\}\}\}]} \par \pard\plain\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f0\fs20\sl240\slmult1 \sb50 \li600\fi-300 {{noun{Compiler:}}}\tab testing {\b0\i0\scaps0\f3 [\{noun\{Compiler:\}\}]} \par }\pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb60 \fi0 Open the file specified by and include its contents at the current position. When the end of the file is reached, close the file and continue compilation. An error condition exists if the named file can not be opened, if an I/O exception occurs reading the file, or if an I/O exception occurs while closing the file.\par \pard\plain\s0\qj\widctlpar\f0\fs20\sl240\slmult1 \sb240 \fi0 {}\par }} }}}latex2rtf-2.3.18/test/fig_testf.png0000777000175000017500000006314513050672360017375 0ustar wilfriedwilfried‰PNG  IHDRBB,§¨ űiCCPICC ProfilexœVi4 ž3c—ąGƒ‰ą‡„ěk$ű2Ö Ś1v­Hśdße‰˛f—ěE–D)[TJ"’]Z˜ď‡÷;ďďźç{Ÿ_Ď}ΚϚ÷ţšă‚‘H@€ˇ™dŚ{sÁĘC;(@$Ţ ďGÔ01ÁÁ?b{ ŻO8‰„ěíóňm*BÓýÔ4ßN•¨˙s0‘.XY 0ŔážĎĺ€ĂyŸëG ™H@ŘŢĂÉA ’š™&"ĐîűźĐÎűźĐxw2b€†ÍÇĹÓ€v…vqőĂ0ŹŔ]<‘D`ź'ź˝}];@ô‚•5f̀y5äíż5Ť€Ju€ƒk"^ě­Í“kÀˇłŸ›Ź đPwR(ëZG€Ý! ĺw…˛›€Úč0Âű“ţş1 đ˙ęý=˙ €@ĆQłÓZĐ1Ć0%0Gąú°›pňœâNćŃĺÝ9’Ŕ/„Š<%Ô$,%R(J#vQź_s"P˛‹–>/“"űFžQáŒ"ůä=ĽQĺÝS˘Şú§}ÔâŐjôŸ™×m^i]}=;}żłQ9¸jĂŁ1ăY“ÓiłžsŐć „óz–‡-7.<łJˇö˛Qąe˛ąk°spsÔrqfuŢĂďşěšq¸c=Ě=Ă.–{˝÷ćň9ç›B|Kňó!ˇ0ÚՄ CÍ ./]•ťp˝ţĆ÷žHٛč¤[%Ń-1]ąýq]ńoßOHş˜h–$•ŒHI)HőH“NŰNoĚʔĎ\ÍŞČĆçđäźĘĚSĚ[ş›“o˜żWPYh[ÄXôřž{1gqwÉĽű|÷_<-+(‹*W,_¨ČŹ4¨ÜŤŞ{čQÍ_=^“TkXÇX÷ź>ŽÁ´ńPă§ŚşG‘Í6[8Z~´Nľ=mŻěČęŒí {BzząŰĽÇń™CŻCŸSżë€×óKƒÁ/ŽĹ 'żĚyuo¤ňuݛǣíc]ăO&ş&Űß>šŞ™.~—ůţćż›ęŸ„faöý猚„/îó§.,}íZL[ňřŚźĚ°<ńýţĘĽUĺ5ÔZďzě†á&ĂfßVřśňöڏ’‹Ÿ4?ëŮýŚţýđÉŸľÝä=ěŢŅB@˘:DÝGNŻÉ@9ƒ–dîbľ`{ËaĹ9ÉuŽť“˛}xĎ™ż]€K$Ô!Ě,bsŹHtYüřq‚ă3R‡°Ň×eŞd?Č3(Č+ڝ W*U~Žň]•é´¤šş—FęÍÇZcÚËştz|úŠgő ěqî†d#ă“@Ó3⹋ćx ëóŚ–:T­¤­EmřlÚĄí騑N(g:<‹Ë!Wa7iw5œ§ÍEOŻB´wśOšo;qřŇGŇ:™Ú˙`€hŕÉ ý`Ë÷P˙°đË W˛Ž]Ť¸^wŁ9ź-˘#˛ófGTŰ­ŚčژŇظĚřÄۡŽÝ JôMrOśOąL5LÓN?•!›)ž%ÍĂ”K•ť“ˇ|÷cţXAakŃĂ{ůĹÉ%á÷ÉđĽfeęĺ'*x+i*׍ŚöTWŐ¤Ö^ŠsŽ×khdn\oyTלô˜ŘbÔ*ÖFÝöŽ˝Ą#ŽÓž űžźxšÝíÚ#ŐóóYGďÍ>\?K˙č@Ćs›AžÁ/ †đĂBß_–źr96ňőu٨äčÚXýxđÄéIÔäŔۤ)ëiáéľwmďă?ŘÍH}D~ýt6äłŃœŔÜ֗ţůÜŇWEŢĹľĽŢoyËţß W„W(Ť“kőë „Mý-ŃmÚí…;•?ývřŁż+ˇ‡Ą0S(¨[4ôڌŰč`–'l?8išhšżń4öć;Ě_- ,ŘvTR8IdKTG,Yüç SÉ+R•Řé-Y69 yM E—“žJĘ—UŽ W˝zúŞZ şŸ†ÇGMs-}mU)]!=v}ZýgżLâz ˌĆŇĆó&ąŚ2ŚăfŢç¨ÎĺšËš÷XXYʜ°äąŹ˝`xaŐ*ĹZĹzËŚÁ6ĐÎÇţ˘ĂÇ\§NçNWˇ0÷FÍ‹ ^a„^_b#‰ŃϑÜ€Ä5‡ľ +˝źzUáš˙őŞŸ#X"UnZGߊ‰Î‰É-‰+ŒĎ˝–pűNdbH1Ů9Ĺ"U'M1]$ƒ#™ů=k*ť;çanFŢľťžůF …<…”˘Ů{˝Ĺĺ%q÷}—J•ą”­”UTVĆTy>ÔŽŞŚÔLŐ>ŞKŞ÷iĐojÜkTÓűŘĽE­•Ťuľ­ŻýnG`§AŚkóIĎӌnž“Ď融öő]ęW`}ž?HxĄ0CĂ)/í_‰žZiyńĆhôĐč§ąĘń ‰3“čɡoKŚHÓęďĐďŚßW|›1üČ˙qíÓÓŮÔĎsĘ_˜ž|˜ŻYˆřjš(ž¸ťôęŰ˝ĺ ď¸ĚĘćj˙ZŢ:yC“s{kpťčGčŽŮOń_¨_Óż˙ÜŮőÚÓĄR(ű˙EP¤`y Ŕ˛;DŇŘBLŔyź Ć;€4ć@ ,p$Al!rŕ)Ź"VˆtÄR„AÉĄň¨X¨bŠY¨óhh&hĂé”č~Ńw3d2pd2C2›°ŘąFłMpčrsyâäé>LäcâOÄěZ ŐӊX+ý#ntźHbWŇAęš´–̐œ—‚€âşŇŹĘĎÓJę4ľtôvpŒĆféçé­Ríäç]Š=źrž;~u!W<ݎFěޒŒ5ťí•š™›u'7=˙^QsÉTSĺšęÚzÉŚ-É‘Ołz۞ožÔ~Ó8iřžu–aAuš~#ŕg…(`]p‡xh†%ÄQQ†řÄ!  ‚Pߨ<¨–ŠCiŘhjimč˜čúéo3Ř1Ę8Ȅ`ÚDŻ2oąRłcˇćČá\ć2ŕnŕĺ-<"ŔWˆÁä =Z%˘zlDĚű8łÄ#IŹ ôœl|´˘ˇ’˝Š˝ŞˇZźF‹ćşŽ´^đŮ~CAăÓs×ósVD[ZűR'KvˇiĎ:B–ďRšUĐDçU×/oÚÄĐÄ%Ö¤Vdśĺβ—˜•eVÍŐI7…´´tŹtó÷Y f˝ü4Šźţnô“Ř—Ë‹C+źÎ? ~Q(€*`68 â  ĆŕP ƒđ !‰đDT v†Č '*†Š*ZŠú M­ÝAşuúi†×ŒăćŃ(f1{ÖĎěݜ‹ÜJ<ɇ_ó˝Ä8 ô ‰ž;vZ4Ulń¸şDډ)śJ†[6^žI!÷¤šŇśĘ3ŐZľv/ZGtœő ¸ ŁMčÍŇ-ä,gŹłěœ•đ|nŹžlŒď)’ŤvĐű0‰ŤQ7ÖoúĹ0Ä7&ú§ęfŠç)ŕ+–(ŐŞt­‰ohi^jç}‚{9Đ7ĚńÚcźgZt&yő5xysÝo{ëw0…°Ÿů€KK‡ĂČ`ąŇ:&M'‚§3ɉěęňßĹZ  8Ŕd X0 h‚ŔœN@Wpů~˙d× 2€Ś/1˜äéîAĆh‰WŒŚŻ7џěJ’Ŕčűŕ%%02XŹ,Ŕ~V`ŠČ§ĂšËăÚ3B˙Ç÷?ĚçÍIqV; IDATxœěÝ}]WyçűoˇÚˇ##ÚÓŽ˜ş‚Ë ´ 6 Œ_BEN…Drr+A.s‡ §{FâfОĺL‘şsZ$#WeRśy*e'šl†ŞAŠÂNńb$›0ąń¤c‡‰ î6BÂ/˛úţńœƒŽÚ}ÎyÖŢk헳ŸŞ]Čô:k­˝Ď>{?{íő2†Ů…ˆˆˆHł´'€6đŸŮrë""""R˜6ŔDç?ţ j‘f/ť""""eQ $"""Ľ@HDDDKˆˆˆ4–!i,B"""ŇX „DDD¤ą‰ˆˆHc)‘ĆR $"""Ľ@HDDDKˆˆˆ4–!i,B"""ŇX „DDD¤ą‰ˆˆHc)‘ĆR $"""Ľ@HDDDKˆˆˆ4–!iʉŸŢ<Š.U˛ř_ŔBŸżĎřěĎßîˆ[ĽBlt¤y8y-šKÇ_D¤`yĄGľą*RAťX9ŕÚC>;OýĄqŕ!GşUŔÉÄui"‘äy5öÝhľ¨Śc}ţ˙ĽBkQœQÝŻşĐń)ú‰ˆˆHc)‘ĆR $"""Ľ@HDDDKˆˆˆ4Vž@čUŃjQMg•]I+Ď‘ä „RňśđčőU\ח]†Óń)˜:K‹ˆˆHc)‘ĆR $"""Ľ@HDDDKˆˆˆ4VUG‰ŔésëŒKMŠĄă/"#O-Bĺj;ƒŘ\HK+lsŔ` °Ś”Zc ؊íëśď'{ś—:˙ť„ŤýŔ6`MFƒŽ¸qě7ź;ÝăśŇśƎďVěx‹H¨E¨xk€6p3} ¸Śł,>œˆ\ˇ-Ŕ™ţţě‚ËđqNí›×ZlÂÍŢI7ť€ăT­:ţőp!6ůĺĽŸYŰŮf8ýx> <­v"Ź]ŔŞd;ýŸŹzˇ%Ô­÷Ażmn…ĎM{Ÿ ŮvGÜŻqg™1Z'ąV°˜Ç˘wŰĄŽEÓńŻś1ü׼ŹŰNôp*R¤6°KŻĆŠąx¸*rž×aĐĎĽyxlŽö4jö˘N緎umĂ^ ޒ¸œąëÄnšűşQ¤pŁrĄŞ˛MŔ#‰Ëx‘z|—ąőáŠ0ƒőkIą o]éř‡Y¨ˇ\îuXŕUçc'Ru¸yÖŮŕž‚ĘúFAĺd5GÚVˆ~Ža7´ŚÓń3R™×;ózw¤ňDdBĹ8¸7B>˙Ιn{„˛ňz#Í ŘM4†%,Řć×#•Wu:ţá.q¤9BüeD.ŽœŸˆP ”ŢŕÉHyns¤kQţwťÁ‘ć›‘ËŒlŽ ˙pžcöÁĺzŽ-Ę˙M‹Œ$ý°Ňť5r~7GÎ/•łiKPî°ţn-šqŢëř‡óźŢűV˘˛$ĘWD†¨ęiT\ ĎGé^™ ěžy”Rôeúv‚<ëHÇ?ܰ×vóÄ{•("Ą@(­O%Čógşó”ۍğĺnŹ5dЖľĂú¨Ńń?ÝăCţţ…ÔBD Ľ@(CŔ‰ů.áe⠘Rů’3]ŠeHŽٚ@Ç?ÜeŔŞ[ĘiF^•0o@P:ˇ'ĚűلyÇň”3Ýf4GJ :ţٜ°Ľz-śŽrׂi4BéÜWvJ2‚č*ňĎÔ+§ÓńŻo”]‘&S ”Ž÷‰|Ty;u÷ڇݐgą%$;˙jÇÖ\@­A"ĽR ”ÎseW vdü\ $—°ő˜śa vjáÉ0:ţĺĂfޞĆ&L܆­x ~^Ŕ7“ľˆ$”uĄE[Oďbigë:‚M*ůl”OUG UŽ:cŔ™X˙žó€ˇaË`ź ˜)ą^"HPó4÷ąÜk‰Ű:6ÜŇóßG€?>‡=iËétüăYü6ś„MŤÜވH,z5–FFuĺyŕě„ůĎ`#ôžAý[V˘ăŸ_ˇ/Ď3ŘÜK­Rk#"Q)JCs‚œî(p6ˇRj˝ý[ś˘~- ăŸU €Ô—Gd„)’˘œŔ&Ź;ŸâÖUş {EŠaá:ţĄös(y „¤hOçwTć>ěÉ^绎˙0k°ÖŹk (ëp9ÖjVDkˆŹ &M Ŕ°Ľ .!ý`-6dYŒŽ˙ËM?J”÷"p›Ň`=vÜ/ŕÔėz.R“˛îÇ^یŻŢ |ß ęĄöb€˙SžĚůůCŔ?b-=_ž‹V/ UëE*K-BR%KŔÓŘ ć[°ó9Ŕ•Äką¸ úé§ÉÇ+áýćącs6vŹ.ŽĹćoz;–ĎŁ H¤ŇIŐ-`7ćn‹EŒłweviĆńĂ:v{ÎĹ^qݍĘ‘šR $uÓ{c^…u6ĚŁ…ő‘pŁxüC^^‰ľ–=¨."R0BRg'ąÎŚëą–ŠŸ}O’5˨˙9Ó݀ąŁe9DJŁ@HFĹö¤~“3ýŰÖĽ‰ęzüÇđ!óŔ'ŐA}ˆDJ¤@HR˜°M“öľČőř^Ő\:Ÿ¨ě*Đń÷óźƒřăVŕĆČyŠH „$ďâ•ßIPö,ž5ŁŞŇ"‘‚Žżß‚3]›xk¤í$lIIH¤˛Ă‘ŚĚď<܎ݰ†ŮŠź*Óń÷ťÓ™nX—ŁœéNY[‚4ń˘H „$•?sŚkaٌ6ć(kvƒšĹ™ţă9ĘŞ żŮ€´Ď`Ÿ×p1v|ž _Ť’wňG  @HR9‰ŻU˘ë!ě‰w'öä<čÜÞ̷w>óţĚŐŔ‰€zՕŽżßŁ„-{ §ŽŐ§ŽŐÖďj [nd?ö=|™8ŻŐž6a#ţZ2Ś"ä+ŇxmŞ×TÝ˝ŔŰv–Pˇ1G˝ć×á°Ł­Ŕ<=űľDxđěÉsĐvťĄěbÇ6k^Ţţ eĐń/W‹üÇ*ë6—ŁüŮčGB¤9ÚŔŽTŁFDşÖ“/0œ!ŢĘÜoˆ”Očřű̡הPîúŸ?Š"ĽWc’ÚŞýŔ™îťIką˛%GšÔ Jzň÷.ĐĺŮŻt+yťáߐ#yŕÍŘwžúIÇżZŽ'_ߝĺnÎƎɠ٬Żď¤őJąô‡H㴊ި1}ÝůUögäÍ6‚FÉ}tüý6’í8ĆťgyŕœvcÇuĽc˝[ŚcuĆ}‘Nü3ÖůÇ8žaER™Ţ źĽôl”ŃňĺÇ€Żwś'¨ŢÜ4uŁă?ÜđěřlŢÔóˇc-a˙€§˜­aÝW§umaŠ˘60Ž@HDDDš¨ ŒWľˆˆˆHr „DDD¤ą‰ˆˆHc)‘ĆR $"""Ľ@HDDDKˆˆˆ4–!i,B"""ŇX „DDD¤ą‰ˆˆHc)‘ĆR $"""Ľ@HDDDKˆˆˆ4–!i,B"""ŇX „DDD¤ą‰ˆˆHc)‘ĆR $"""Ľ@HDDDKˆˆˆ4–!i,B"""ŇX „DDD¤ą‰ˆˆHc)‘ĆR $"""Ľ@HDDDKˆˆˆ4–!i,B"""ŇX „DDD¤ą‰ˆˆHc)‘ĆR $"""Ľ@HDDDKˆˆˆ4–!i,B"""ŇX „DDD¤ą&ĘŽ@Dłţö3Ŕˇ€; ЉH:[€Ë€H3[LUDDęo hc-Cí’ë’Ç8đҐ4óŔúôUIjh Ił 8™ž*""ľÖĆGĺŐŘRŮ)ČłeW@Dd”ŒJ $"""Lˆˆˆ4–!i,B"""ŇX „DDD¤ą‰ˆˆHc)‘ĆR $"""Ľ@HDDDKˆˆˆ4–!i,B"""ŇX „DDD¤ą‰ˆˆHcM”])Ä8p° xxđđ"p˛ÄzIuŒ-űďĽRj!˝Ć–ý{ }/"ŃUąEhŘě怅Î˙öóň vl-`'p°SöŇ Ű°ŘŹI\ŸPăŔ`;fKXĐóp ~ŽuţűĽÎßہé⫛˰—Ÿ+ í ö]ś"•7‰›ť;yĎől ŘńŢlíÔ­Ş&€‹ąşÎaçŔÉeŰś?ť ŃCSjSŘyÓď;y‰SßËv-܆ýfS_EFÚĐĆnžíůÍďč󡳁÷öůűp p͐2VńňVŒąţżĺćő}ţśŰ˙ë†äŃĎ"đŕSŔ‰Œy侸 Ř!Ż›€O`ÜöůűßcçŇJƀˇg(wđg„ľ‚żÝ Öf(óěź>žáł+9 Ě IłŇoěůoŔĽË>|¸?ă癞üh@šG€ë” v 80 üaׯ,Ś€3üšçqŘ<!/‘ŚčĆ?´ąP Ý'™~ŰÎ>ŸťxČçzˇ•ZąĆŸ›[ásXk‚ˇlĎśť˙áIâˆu_žÖEŽď¸ŁÜ•ž+°'ćűľŐYם‘Ę[ÂÎłOîÝVžßH‹ţ­›YˇMöeyłžE•ßďújkQLőťÝŠž"ŁŽ ěŠýjěŮ ŸŮ |9r=<6`Ż‰ŽŠœďuŘĹ(őŤ„qěbú@Â2f€gčß:“ĹR†ĎL`7Áť"Őá., čgVĎ#•vžVGĚÓc7v체f rv cç/FʧęĺoĹ^Mgm•ó؇}7Uěú R9e˙P“ýuT›°fö”^$ÝńÂú ¤ź˜öjc- “•×k v,[‘óaĺ`hüĽňéűttƒÍÔżŻ읊r¨*9Hź`~˜ěQĆoV¤VĘ „<}R؂=Íá ňÜ<• ßaÖbO˛­Ë\Çŕ>#yÍpúëŽéd€űçż k*ę÷őŞu4Gq.˝ŽQ|+¤H­”ÍR|ô-,ˆŘW`™3ŘȎX6P̍z9ŹOWJcď”-3]7b­N“¤íƒŇëRŇöăHт6Ěv~ĘËíĽÜ@ąˆVH‘Ú*zHěÓŘpĎvÁĺ‚ŚŠ1˘*ÔíŔÝä54Mö héóĎŔQěĆ˙.˛Ł_."Ý•K˙(luęgýGwŐŐ#Ř誣eW¤B6’­â!Ź˙ߏó°ßě[Éţ›Ý‡:Q‹ôŐ&ިąa#ZfÉ?z%먹Ń=bžńNޝ˙ބ ýÍsOŕq\nu†2ť-7ÂÝud•Ľ˙Á°ď*äü؉ľBŹélÓŘw”rDÎně¸Nc}c6`­~sňږářyFyĎó źüü˜čě[Ös"ë” ÓŽźç2ćŤü,ŁĆBĎ-Ď(Íî|VĄçBÝć I­M'ţůé?"ˆu‘^ÂnfłŘÍb{çßý柉mĂß|<7!ůçiš9Ž dżŕm (g‰Á#Żúń|WÂĄŽrV7 şĐQćşŔ2çy.—÷76KŘ+ńŠ-ş[–ĄőŁy§{ŘOöÖů–łŒŹżW‘QÖŚ‚Đn˛@Éí%{_Šíĺ´2–2Oа‰ =Ć kÝđ%˝ň|WYžČóCŰ3”P†vdÍú[ űœPĄçÄR†2F1ň´nĆř͎á˙~bĎ &Rgm*&ßȆŹ7דÂy'dĚ:›w_fރ•y_Q…ž Éú]…\yË["_×YgĄű•ĺ7ś7Ç~ôňŢl—ďP?jĐ¤#ż%âuböžçEOř*RemL¨˜ĹmŔŔó—{>qŚË˙wÎtYZ<Żcş.ː˙ Ţ×kkɤx<œńłKŔ•˜ĎX&ŔqŚűőexÜ| R^˙* í_E*łŽŢăHsv~ư\îH—ú|Š˛ĄŰ€kK(wđd¤źNbű1L‹đăýgşóóő8Žď iozWÍłéwD(Ó{^|(g9ƒ>1ż“Ŕ›i[4ű5Œg*oF.3ć:h"Qf 4O9AŔ­‘óť9r~`}ĽZŽtˇ/¨[î^lĄÍafHwӋч"tę‚?P&Ŕß:ŇdY–Ćë˙NçŁřËßNP~]œĺHóX‚r‡ushQţ°HĽ”ůƒřš’Ę˝:Až:Ó˝2 ĎßsŚűH@žYüš3]ě5ŰŔZƒbńt`7’XŻ+ţΑćU‘ĘZnp"QŢżĺL÷ŃDĺׁgβ÷'(÷Ű ňieBw’˙ŐCVŸJç ÎtŢWXcřֈ:Dţ‰‡™wŚť&AٟOç07\^ŞĄ?L”/ŘĨóŽtkQëĂ 7ĆçťąÖ¨AŰ(Mâ)’[YО^‰"ÍSňžƒ7`z3]Q ÖzFÎ÷˘~€¸ěO;Ó=+rěăvž§|ŕmąd‘eBG(o ţŰćóÉŢŰIůď#–9ˆwřőڈe~6b^`‹Oă}}[ě@č÷#緒Ď9ӕő źlޅ‘7ozÉ Œ@Č3’&•űJ,;„gˆëâőeĆŰŠóËź/b^^ŢVŁŞűFe<Ż4ö´u2‚ë*졏ľŔDJPF ô…Ęěň>Ľ•Í3ÝM^‹SNâk-y{Ä2ż1ŻŚůIAĺxZíš:owEŻ}X@4KśöE$ƒ2Ą2ƒ‘çJ,Űkß+ڞ^ăĺŲ+PSó×Rř-Gš”ÓTݎŒŸkc×ÉîŒń۰ NcżBĘ „ęŒ”É;˛ě‡IkńržŚ~ĎÜ)’Ö_XÖ=Ž4ŠŚ¨ƒ[Ĺœy\Šőm|k™=ŒÍRßB#ňD˘hŇižz őś„˝/˙äHk–äyęń]U‘§Sx,g8Ň4šE൑ó›nÁÖ]{ ŒśŃěYźEriR 4J䪞Ľc,Ăy^s§˜ NžÎN˜˙ Öbô ę_$’I“ĄQj˘ŻęžTľ^’†ˇSv“!°éBÎŔćwJ­ˇŃVtěE†jR TMwEd”ŔŚ8ŸâZtďÂ^1kXžČ „ęÉ3ZG$5OkĂ<ęďŐëIŕŕlŠĄ"ěÖ4Ňő^dúaTĎëiޖź/癚˙+Ék!UňGő[Ůđ`p é_›­Ĺ:W‹Č2 „ŞÇłtA7ĎÄx÷'Ż… Sä¨1ĎGőě$öťš ťŸ \‰ÍŸ‚–óYFxyZŞ4PůŽ)°ŹQúž˝ëűĽ´<­ ż{őxĹj1ş ›ƒHD:ŐÓLÁĺ9ËünęŠHĽlr¤ů›äľˆc˛ě ôą€F—/0úR„z‰Œ BŐ㙤ŠýîÎtŚűť¤ľ"çíńÇ›źqýp‘Uo`´ kɚĚŁEu?‘Â)ŞďbŁç%­ĹéźCú˙%i-Äëg *gŤ#Íד×"ĎžTÍIlé›őXKQHż˘÷$Š‘H )ޞçń­OTdŸ†íÎt'’ÖBźŠhÝXoqŕ'RW$‚q|űRe Xż˘›œéߞ°."ľ˘@¨šr¤i'ŻĹ)W9Ҥĺ"á>X@żčHłHÜŕ8ŐhIĎ4!ŚlÓ¤}-u=žWe—&ʃH­(ŞŚŰiZóžڙîż&­…„(bäŘÇiţŸ¨l‘ÚQ TmpŚkű#–;‹.š?‹XŽÄw)°'B>›đˇĆüVĆ2źů߅ EĎj#đĺŸĆŰÇ/ĹĚ,ž9‘Ô"$ŇĄ@¨ÚžÄ˙”ź8ĄĚřGŃěŔ×9TĘu 0ŹËřůíř;_ űM6¤ƒ÷S„CXP虧+/OKi ű^b]‡ˇăűízűŠ4‚Ąę ar)öŠ!K'ٍŘEŮÓśëÖ ĺHZýf%oĎ`-‡žšĄĆ°óh‰°~9żvš|łŞw=ěex@4…@/2|ŽĽňńś”ś°Q^s”ľűízż§ç(Kdä(ŞžăŘjÓ!îÁn`{° ě$/•3]„g;ięüˇ×9u’bŹeđÍ|36Š_÷ü؊Í9´ë7łkYççg°VźÍŘŤďVŽźbŻŠ&2ŐË€ŰJ,˙JâŽN“řŚ€G šŐřG7z-—GÎłŸÄŻŻyěáĄlëą)9DdBős-öžżh? Ü]Bš’Íݤ†v‘.ˆ¸—ôçůŇÎĚŢľß$‡ŠœCŘr'"2*wzţQqp~Ae^IźŮŁ›ö]•én,€Má"ŹSrJw&€˜Ç‚ƒ"G=Ţœ[`y`­]ă¨oČ@ą!ĎB~K‘Ëôć™z‘AOţ/F,ďI,¨HŐě~kNż€ü#z•ő]yf:ţnä2_pŚ ůM|oČߗĎáó0°Šx"ŽĆŽEőť8ƒ83˜/bÜzVž=äóÇr–˙4ö› ]‡-Ô<ÖOl iގ"#§&Ř-ň,;Œ]bš…P $""RéBZpźźý….ĽfÓI()ÖXĎ6NÍ."RŞw:Óݟ ěăآŤľşŽUuĄ)ŕW°wďƐ[äÔBraÍtŸć#”7 źř%ŕ"ŕ =[ |[Í÷o/áď}_„qŹž?ŤwŻâÔąZţ;f_ĽZő_Žť?ż źxý›‚Šöw3źřě\n Hťˆ]ź> Üü36zCŠ5ý–~‹ÓŻ=Ďߎ žßKďďębŕ­ŘuNíăăŔŔ_cżŠŁĹWłŻ5X§Ýîőŕ)ŕ\ŕg€Âî ˙,”Tż˘\ěH3Ÿ°üŻ` ŻŽ”1lýxçóÚ?äď̨ˇČ6ünđg„MV6ü°‡l+őŢ܂EÉEÇŏaYeq'ö]ÄčLÅ؄tY&óZîđQlhŃŚ€çbq›ăëÁyuM_~4 Í#¤{Ͽۯ~埍×YFşĚďȘďö{ö˝­˘˙uf pć€Ďţ„á×ČĺĽ?ř0ƒĎóŔÍd˙]•y›~¸.đs7Äŕ‡˘uôo8AuŞ9†÷ş‰tżßiŕ GşAż“*éĆ?Ń&TgřdKs}>ťŐńYĎśŐYם‘Ę[öR\3ŕj,p‹U÷Ŕ}č5lĎPߐm'Ĺ´|Nb“–ĽÚ!łƒ´eőűUţΌyĎeĚ7drş~Ý <׿AŸĎšgż}Ú°Ožm?Ĺ˝AŘ@śÉüV:[+äď9ŽUí6âšţoOXţ´Łü*żĺÚDžPq)Ăg&°“őŽHu¸ 8<ŕďë°zŢŠ<°yN’~î„mŔs¤i–܇íCŹ›­ÇśN™ˇ$.çFlQŔݤ öśLjӚŐĎ>ěÜÎű›}1B]ŞZţłĂ“źĚnÂ&§ë'Ëő/EžŤąkę=‘ë˛űîÖEΡ×8p=‚dÔ -ěX,oUKń]ĺ]%—FÉĺ'QfÔśűaľ"ç;ĂĘÁĐŕ™ČeőzŽ47ÚqěÇ|{‚ź—‹ułd5v!*bz]‡^“‘ó=Hź@~˜ŕ%âďCS&üľK•ľ°ëP+aϐćü›ÂÎíÍ ňތ]sşŤľęț§QVďwŚŤU°YV ´ŽÁ}ňšáô&ăö”‘Ú}‘ó[ƒ]Z‘ó$ĺÍvťP—éńšřçHŰ ÔĎ1j8{kĹ&{˙ş*ş˜´Ż4{‹œßFŹósjĎa׾:ô]éçӎ4W%,˙ŁŽ4ó(čq잲eŚëF,˜¤¸ ÄĽÄ{˝”:XćńƒĄďDÎ/ŤőŘKąęrŠZ ›`–Ń ‚žĆZťcźŢ ą;R>ą_E9†Ýęę+Ît&({žE‘ ě¤Š>)đż ,݌@bů{ĚŻĄ˜`q˜cÄëýż•ěĂN çý1pđ˛ˇĆ´:őš;ăç7’íŠë6<šťk°aĚYoĘű(ś_WÝ=uöl—]‘ˆŠ~ĹÜuĂGf łbƒ Ž20óú†3ÝÄPňžUš#rš…hgÔŘƒ{‘/ ůűň‘°Ĺěⵉ´ŁrvcÍËÓŘűę X‡Ţ,Łśĺ8Ž9ę?ÍË[ůĆąÖĽ-Řë€,#/ň ݧ…N}=-RŤąs#Ë÷”őBú˝x:˜Nvö#ô;šŹťgÔGŒďŽ-ť‘ýjäüb/ÜŮÂ7ÍMÄ_ôô~lúŠQł€ýö”Pö"vMœ/Ąě¨Ęşx^1/ďÍn˝ĆđwŽ4Ż Čď/i‘vĽxďw:ÉâŻůű<ńž—Ô<Ťw úßNgÓý\ŮˆlńgLţš3çŕœéţ“3]¨ßH”oٖ°Výó ,sÖÚQIeBŸ/ĄĚ› .ĎŰ"4ď)é9ęâń°3]č äń!ŻÝ,¤CÜHü‰ĚîĆn6ƒś:/P´;‰ßâPśŰäy{ęćՎ4cř&!Ýœp¤ËâiF őb€ő–őIťŚYĄĘ„÷˘íY{ěG]¤|7Äßq¤YžĚWĎĹ4´ĚeŘěÔýśýÓú i•óř’3ÝžČĺ‚=y ÚÄoÔ^‰ ]đđÝHůźÎ™.őëď&Îż -ŹU¨ČeVÖvʋ1â˛teBŸœŸgŔŘ}Eź<Đ‡iźMĘyÝěHăŠďr'lŠ^‹­#~'>‰;ŤŤÄs„âŠRKů0ËĺŽ4‹¤˙nž˜8˙˘ÍRÜZš+™ÁÖ=L5ŕĽeB÷•PŚˇŐ¨hăřn֟I\.O¤őXěÓť&Oˆ{Ň^ĹŠw÷R)^!•íűeWŔaX_AČžö_ˆŒÎëąĂTgÝź‡°éljЌ@¨?Ú˘xŢ­Ăđ~6ąźŕLWŐ@hœSÓëˇ䟥łú>, š%űŹĹĎĘŽ@u¸ŚžÍ‘ڍžŘo%Ęp˜ě‹5ß\‚uŽ>ˇł\Ü@ö@ń.ň­łYš2ĄK(łŞź'rQa—đ 1őމm {=uÔۆÍs ~^ÂV]öt>ĎjGĆĎľąWkKŘdf۰ý¨jP9ŞźŻ7%ž1|&EuaH5]GQvÁ:SaÓ"܏ő;}şł= <|˛“îl˛ő׺NޘuÁ<‰Ă{Â쥸~ —:Ňźš4őÎÄú÷œ‡=Ežxٟ~bťřů‚­K9ý8Á^Ů|kýÓ°tž+ť‘-RýóĺLgş&­Ĺ)÷TN ×~ć̈́ˇfĹŚ˙„Mďâń×ő5{Ŕ+:š§ú?Ú"˝Ď™îš¤ľ(×:ࡹY›[ĺVĹíľÄ˝ĄÎˇôü÷ŕĎ1zĂź%ŽXŁşR:ˇě ŒŇŢIţiWNtňřCʐ×VŠéó…fŁ-×ëËŽ@‰ş}yžÁćŢi•Z›0ĎcMÇŠĚ`MĚĎ ţE2Xě)"Rđt‡˜§¸‡ä3 *'ś7w ëqWIJ“S $EkaPęž<ŠĹ.¨ELŰßŰżh+5kvqY’(Ż' ,+&Ď `AeěĺQŔć+ YćéÂuHBi6çE ^'° #ϧ¸ŽžwaOΖ/’MťgŹĂÝ|gÂz<Š]łŞ íJdńšŔôk°ÖŒ"ú:Á&oُEŸ.ÎÁŢËa§\Šť7XÖy–‹wAÝŘ(°”źŻÜꋉ—NQÉ"äŸ~”¨‹Ř6äst'>,ş˙Äv‘X…Íӑ:[‹M Rwž5͚ěéţ}ŇZ˜ŁřŻmĄ‹t—BĂçëáę˛+ĐcŠÓG8 “w´CŔ?b-=_ÇFÉü›üąŞŤÖŸÄćé¸ k™z đ^ŕƒ¤yJÚKúEyER*˛PyG˙sŇZœr žŠVÎĽ3y+Şž#ŔeW"Ł­„÷š~[hքZšŞďćÔpŇuŘëťř.&Ă\|”\pđ­9%’RÝFăťŽÎSÜĂĄwęZĐŤąrňSĐaC(`O뱀a‚ ~°}춝\IžWiuš0Ő˘Š\˘ňEöúĺˊÁÜܚ´§ű3]hŇR(*—'P˜ĄžßSČ+ +ąQPŠ;ůUUo`´ k5™ĚŁE=‚ŒŞĚ.Ĺń,k˛–âŽsŁĎŠďż—źđ;”›w&ů%­Ĺéb__KĽ@¨\'đ͟ą'uE:ZŘűü~ŰÄ]CćŤóZîßDĚkœáÇ冈ĺ­äýŽ4o‹TVŞ~iŰä)őđYGšÍ¤_>Ś6ł÷đśnˇ(îžţ&gşcIk‰Ąňýš#ÍZŠYtóin‹X^ĘÉ?‘0ď•lHœ˙áHů|?R>ĄĆ¨çMHâ¸Ď™.eëw]ű§-á_ÂççRV¤‡w޲Z €Q Tž›é>ž´°›f˜űiŽ;Ň,’ŽĎ$ń^om"ď„gYy‚FĎ+-ď1Ý/­Čf{ŠžÇéţ*QůăÔlEôe>íL÷™¤ľ8ĹóPSÔGš)*ßź3Ý5X°’ĘŸ8Óyć÷ń,m‘r¸ěä9ěG˝[S-•W8Ňx.–ŢWŢľ<ƁŰ#ć'ősß:|-`c‚ň˙4AžEúœ3]‹4ÇŻ—wÁçÝIk‘Ąj¸Ň™îż'*ßÜŢ~0/:ÓĽ尓¸­A]ž§Éë”Űu‰#§ÚŰ"˛ŒĘ0ŸŠ˜—Ô×Ngş‡ˆ{oşúĎôX@ڇ’Őž—}δ“°Q)ŞosćfüѸ׏łŻ‡ˇŐČój â[#çŮĺy"k“nŮĎ9ňyGš%üMÖ1úT\Œď•ŤŒž'ń/ŽúĂHeNDĘŤLŢľŽý‰ęáÁţNŕůDuˆNP5,aëNyěÞpb˜Âż2üü'ö‚3]kʍa'iűxýN‚˛gńÍżăí˜čmíš‹|ô7_Îńy=ŢľćÖsäEśߏÖuá˝G€=4Ç †Ćƒř[ŰCęZ:BŐňűňˇ m"ě"şŽ÷ée[„4ŤéNY[‚B:l{~Ü-Ź>ą~[ŰńuLܐç=iŸ"<šŔŚ|HŮD/őô ţVĄÖ:"svÓľóo°Qť›;ŸÉŰwq6XĂ݉˙a¸UÇpQ@ú}؏=ô&5 ĹšŽ,ŹĂëě†ď5†˝r™Ă^ëľ>ť\ČLłćL×Â.y:-nŔöĎŰz2Şp˙Í,ÚËđsm €^dxŸŒňe´„Îwőö[ŘD˙#Ť;?Œ]ORôŹ‚˙˜~-Ö꿇°{E÷ť@Ř˝ŕ7ÓWB›°§É~ư›ů m.B9Ëmw”ëí¤ç5í(s‰lć^g޽ۜ°ĄăăŘ÷1ŢůďX`šďaÍrsĘۉý`ťÇn ka˜ÂZÁög܏AŰ&슊Ő)cĐĂsž­´OÓ >ư'Ů,ůoo?[3”ÓÝb#Bf;˙{0G^1݇y§zřó\˙BË/ëšÚËsL[ňÝéČwŘ~&Ű5&ö÷T´ ɡoűąkƅŘw×ÂŽy-ň_c7%ÚçTÚt⟟ţ#'Bń~Ląo,Yˇź“řľJŹű\Žňg‡ěWŒăşżł$ßŧž=äóĂúhősŃŮPŢ|CĘ/ëšÚë{Ž4Ţ%u<ŽcçřYd˙MÝœ]ÓîTŻ:¸kůJ=™áĺŘą­ĹĘň^mŇ5IJÓä5°ĐůütŃﱑlĂ4bC4łńSŘ~Ż4ZjĄSŸ­d_Üś;÷FŹ!ţ ŘSržŮłšî”=ç¨gď9UF]e´u§ŮŠ(܉üęţďlęďďvĂĎĺQ°áűr*ó~‘JŘ5ÖůÇ8žŮkĽz&ˇďÄF#őNx´ł=|{WţCŞŐL<źŤűNÉôcŹ%ä1ŕ°–†˜OôÝWŠZ –7oÁFy-_.cx›1üëí ŕD˘z…ÎĞŇĎÂZÎčüíYěŤJ]E†9Œýű9BţłU3 ü+Źőżßľhű=kIű2đ(ŁŮˇŞŤ Œ+‘Ścřƒŕ!l }m`\ŁĆDD¤)^áHSönR0B""Ňot¤ůJňZHĽL”]i„Il´Ń ß'mFϤžEĚy&˘@HDDŠđ$/(°Ü%¤ňîé ›gśvŠ!˝‘"üš#Íö„ĺ{f7/kY#)‘!)¡iŽ"Í}iŘçHws‚˛Ľâ‰ˆHîqŚť1AŮ:Óy‚51 „DD¤O:Ó]‡Í$ËnO Řué&W• S $""Eń.€üž>=ƒL`ËÝ\çLż;gyRS „DD¤(˙9 í>lmÁĐ5ŽŚ˝ŘR0›Ÿšľ5–†Ď‹ˆHQŽcŻ źý€.ĹÖݸřŔ˙ž^čü˙ë°ľÁ~ ëlępo†ĎɈĐZc""R´†Ď)T”UTk!j)ŽÖ‘Rźśě tźA§@HDDŠöźŒÂ9=Čśoż…í_÷đ,đ=ŕ tN7ĆĐĆNúv„üśgřűO€ýyJ6đaŕái67—–Űup ĹcX€đ—Ź „X~“đcż’1†_¸çő}ţś;׎ËXţ"đŕSŔ‰ŒyÄ0ü đ1`&cwłŔŁ‘ęj ř8`çuŘ<!Ż2lţŻvíÚ|†lżŐŔ˙‹ýnĘT—szxGŸżŐ˙Ţ>ŸŔŽçĂÎůUT3@•¸şńmě–×8§šÎm!ý’Źé“çÖÚ1pŠó9ďwâŮöbý”Ö`çĹXgÖ`-eű3äšÇšƒLdܟÝŘů´üǞķŕ딻|ËóĘ7´ţžÁ“Ř÷ş/Ó9ö#ľ,ßËJŰ6ě.\Ćąýߙ1ßźçő(ÓĂʛ%˙ “Qx["Ăľ‘QcĂNříř_ýLe}­úC }š'l¸ú‚3߁Đ6üO¸„íÍűôzĚ–îw$ IDAT9Ix°:›a?ź#ÄňL Ń Ř‡ĂË(BŢ@čâŔňśd(#ĎĐúQ9§!^Đş„=ĚÎbפíǘoMęĄÍˆBýś9˛wŇ ™c%Kg㐋ŕůžNś”ĺٗ<ßÉŢű˛­Œe@ř *Ďt ëËę×؏'؎5ÉćœŁŹźÇ+ĽŹ7×<-5c„ľzf $G霆üĐnʙŻIާÍB{sŹŮ„y{[i†ń>ŠyŽ[ÖďdS„ýđśpe‡%dßbľn„ź˛ Z&yĆęÄě=veL‚é‘ĺćk_B‚ĄĐř(Ó]YĄĂŒÎF‰ŁÍˆB1‚ đ7ů‡+!Og1GWxË&ËwŤoˆwöňšŒů{[ňô [IČS´÷Bî™ń8öÄ}ž2ł~7Š…Ţ\c=¤tĽşžŇ9ݕ%ŠŃwPFO› „bżŰőţŕBöÉŰ7hk”=8eŁłÜaMŐĄßÉöČűáí/ú .dżRđČŢŕĹsŒŃJˇÜ°2ç”CčÍ5ö+žV@ŮŢţ\ŁvNw…~W ‚¤Ÿ6#Ĺîéď]GČ[n˙_Ş “'ÖO(ô;‰ÍЅž ދśwt]sÎ:xxF'ľâUý§fĺVqDNČÍ5VŤórŢWdއ¤Q;§ťBžŤšÜ{ ŁŹÍˆ-ąąƒřó>|͙î,gş?pŚťČ™.Ôo:ŇüRÄňŽŽ˜W—wUëWćű—Ž4‡ĘĎâ g:Ď+Ó͎4ďw–âŰ ňʚkĺëů}|ԙnÔÎé,~.Qž2bڌF‹PŞ…7=­(-G>e7SƒŻí°že'ŢňCžr§y1ާžĄÚޑ)f|ž˛U‘ˇ•!őĐęXßŰ(žÓ]Ţď*U˝ŒŽ6#Ô"t8‘(ďďFĘçuÎt7D*o%ž—c­Guˆ4ßɧϨÝĎ yţŽ#Í"đd@žYÝćHăéŰó%gy)–A9>dŤłÔ‹wzó͐żâ9*U˝Œ˜T­(E‹Ń˘•ÚĺÎtw¤Źö ńMŘŇ +‰ľ ěí‘ňYÉł‘óű#÷ľf^7× Ió!†OŰŕ]t3öäügúŚűNâü˝CŘg€{ü}ĎéG€Łó“6*Đ÷ËŽ€ĂŻ;Óý i-ŕÖÄůwÝWP9yă{ľů™Äőčňô×hqęa?ƒn’Ë]ŐŮŽ@łęr„´ŻŽÁZQç~NţýżăQ=§CxZĄD€jŽŢȢçxÚ˘x[$ĘöjgşÇ“Öâď+˝a}D˛t€Ý‡łhćݕü‚ĘůGšAVŁzN‡řBÄźdčJ TuăřV .ŞŠşϕ]'ďŠăE­D˝„őŻĆ3RqGĆ:´ą@śŰy~ÖŠ6EÇę: ieËăż9Ň z=<Ęç´W]ĤFáŐŘ"Ĺý ł:ϙîď’ÖBVâ]ś‡âúx:Źżšáőšřž |P]zës{íđŹEĄęż˝˜ŽTާ…űUţ6Ęç´W]ĤF!Š5ŞŤ Î(ť‘ĚSŸäűœé†uöŹŞ×÷Ś0ÜŇóßG€?>Güe'Ş&Ö@‚ľú9-Ő(źôdT7?,ť‘ÄՕŇëËŽ@bĎg'Ě!ř ę_‹çh†ţŻ*Gýœ‰jĄQRĽ'ÎB"М.Χ¸ž.waŻHˇTިđŽ•Ś"ĽR TŒ7•]9ĂfîçIŕŕŕÎxŐhÖ¨Îכ#TŤßŰ(MľŃ•őœÉĽÎŚ:Ń\bó,Ş:Č6›ô*ŕŇż6[ ꔏŒQáYŽg_?ç=§E2…QcuPÔü#’ÎŐeW Ç§ÜĘă$p?öÚl Úß |47Śş.ç᝛§NFőœ ˘@¨ŢNĐŁÖÔ=*ސ~ ¸*Xžîîlë°uňvgAŢŤ€â[8ˇjĆŠÖëą<šrN‹ ĽWcՒgâ;ÉŚNCý˰€EÝŁs€+É÷*íKę5Ę< 4:ouN‹P T ďD‰ŁřŢżęîr¤™Aż•ŽŢŔhvӞĚŁLF­Őhi9Ň|zŔßtN‹ĐĄO8ÓýrŇZ˜)lݨ~[Ó&ĂűA٨ą“X˙ˇőXKс€Ďž'IŇ*jŒ9Ň|eŔßtN‹P TŒؚhĂx§ĆĎă),0ëˇ5mąBďúnš j°lž ›œéߞ°.ŠüjeŒăkzdŔßtN‹P Tœűi6“vśŘՎ4EĚ>\%˙âL÷o“ÖâtSśi†żVĘűů<ŽÇ÷Ş,FÇ뢹6׿vŚÔę3Šç´H2 „ŠóWÎt˙gÂ:\âHăé_0Jź­u{RW¤Ł…ľĘő۞`đw4îřü iŞţSďw¤y[â:¤PDżš?p¤™gđÓQ;§E’R Tœ/:ÓÍ&ŹĂnGš&ÎyôçŽ4k)Ś˙”çFx[Î26äüü0‡ç_Ś”}›&đÍÝôŽ4M;§E2S TœŁřžŇŽ"ÍüNSř&…ű§eWÝÍÎtOZ {uy•#Ý}ţć™ç&u_4Ď Ňuâ˝?aŢŢWow8ҌŇ9-’”ĄbýŚ3ÝG”}#Í<ÖŹŢ4óÎt×ŕëg•ŐŸ8Óň÷aýźÖkœeeń GšAĂżŤl-pq‚|ÇńĎŹ<) ÔçœIFPą>ďLw#qoTâk údÄ2ëćJgş˙ž¨üi|-žţ=žţ×9Ňdĺé‹ötÂňSű2ń5x'™ éß5Jç´HRm`W„|ư|Ăśŕ˓ç\„şrŘQ‡V@~łŽüş[ ĺy‚ŻQüNŔţ.aĂÄcZPśçé}ڙWŞ%veWmž*Ď9ŐťĹ|Eś; ÜŃUŁtN÷ň|Wzȏ6°K'KńBŢÉĚYÖ8đ˘3í!šÝ<˝„­§ĺąke‹a ř‘3íŕyGş'ů}Ǚ.Ä,žĽbęÜ"ÖŠy{„|vâoť8÷(Ó"IľQ‹Đ )Zv:ňěnÉÖ ż. Œ%üŻâFő;°'čOћË ąÝ™çńžž˝eÎF*/ŚĐĄîś›ěŻÉö–•eŽQ:§ťÔ"$ą´éÄ??ýGN „„^pˇá{•1AX Ő˝˜{ňwöTrěţšgÚšyög<0˙ů÷ڀ}ç޲R˝’Ë#k Ôűűô^ŰBƒ…%ě7Ő¨œÓ] „$–6 „\RÝt§ůŽ´Ć.ş9ľ>؅ŘÓx֋yˆQţNşBŸÔ—°~1;ą `;ĎÇ:˙;‰}_łň]"{ Ў…ŚwۉSƒ~§cX‹c–üˇeܗÔňBÝm?ÖŞ2ľ˛NaÇęblĂ,y.DŘżQ9§AÄÓFK•ZRlӁuőď¤ë ŁŒ"śź“Ć(g;HXËĎň-Ć =o äé{‹5ź}TÎiBKu–.݃Ŕ%–9ţŽľMsaŤŠ§0\3ő9??ƒu ތ­Öʑ×rÖĽl7áëÓšÄëL<*ç´HT „ʡ HŠvÍ\N#Äʛú˙ůƒ°O™Áv×zę?*ń°ßMQÎ'ţčşQ8§E˘R T ÷o.¨ŹEŕlŹ5J†ť–≍‰;ŻË~|“Śrţ™ŽŤě,ěw“:š^IşÖÚQ8§E˘‰Şi5UžUő(pi›ŽŻĆ:nćy2oŇwŇľ ç—łˆ w$Čű~ě5K‘`ט*÷ ĘâAŇËŤąV“ÔsëŒÂ9-EĚ@h)r:oÚԋ7~ϑĆ;iá0'°§Śó‰íVçbT…ďēŹď¤ë(vƒşßâš!ą›u¤ žĆŮÔKĚc-œ[ű˝×ÉÓŘő3Öąź kş#R~u=§=ż˙Q=ď$‘6qFI|؜#ű •ąę-c0JŚ [aĽŃGť ľË6¤;ôÜ´?łÔ÷œË3qŘJřˆşěwšrŃÓu?§EBľ]cŒwţWŞm5𬩹÷âů#ě"ô#4]}&ˇďÄFY˝ŽçoG;ŰcŔ7#Ŕ“×q˜ĺűđl”×ňQR‹ŔăŔŔ×;ŰXkffřÂÄëţ*i56ďÎ;°Ŕé Üü3Ł ­Ţ źSÇfx7đ}ŕŰŔׁ'€ĹW/łqŕ ŔĎcűň.ŕUŔÚÎ߁ǁ_ž.ź–""ŇEBSŔǁk?ˇŘÜŮşť€ăTí§śgřűO€ý‘ËěÚĚW~î6˙ŃßRÍqřŕcŔ̐´kąŔďRN?OîĎͣńŤ'""M×ƂŠT&ƒœzŐ{ŰŠžăÎňb÷ŤÚę,׳m_!˙iÇçZ‘÷ `5°'âžő~ßZEDDňjťRw–Ţ ÞđSŮ&€RtkJŤSć]󼥓纈yfą xŽđÖ?}Ř2'ą`i°”ĐAâŢä™^ÂZŸę`+0—0˙g°WmEÇöëöƊ‹ˆHƒĽş‰Ě‘ś¨ŸcŘ+™*ŰN1â#X0tꀞŔ:xżDš×lýÔ-‘ŠIíĽŘ›árĎQÝ>$[ą×WEyříĘYü¨€rú9†‚!É ö¨ą„z8<ü8k]x+ĂGőłęő!Ů@qŻ ť—ą{WścŔ*Ź˙ˆˆˆ[ĚQc!ŁvăëÔ; lÂúƒ„ä?X÷ŢIc[X÷ŢmpqgÖ`ÇlöŠm.Gž1FMd,owg–ËńÎţm!üű^"mż+-?bBŢaŕűÉŢŐr–ą„ÝHC¤ „BoęsXëšÇěudPh 6KŘkËI,h -CDDd˜čĐž (Ż1ü7ŕa䊥‹ůvˇmůwm,'o ´%°Œ-¸y>ö:ŤwaݛƖďéœűŞäľ8e‰âž‘ZI˝ÄƓŔŘjčw&.ŤkÖ¨ŹĹVżâH“§CyŢ_Łč5eW@DDŞŤ¨`a[jp é_›­%^'áP?ëHSdĄ˛ÂŞđ,,"" {ÔŘ0'űą×fcŘÓú{’憾—ô €VÝRÁĺ]]pyƒLqú¨C‘ÓőZÂÖÂşťłÍÁs969ŁgŽ˜aŽ> ĚGČ+Ś7–]DŽw”] ŻŞ˝6YŔ‚˘n‹Ń9Ŕ•ä{•öĽőŠm-Ĺű×EĘçŮHůˆü˙íÝMhœEŔńŇÖHĄŇZ*h°$—*b­=čÁďBA×BŠĹ[ďÎÔ_Šn~ö$I+@Ý@¨Ÿ(qąŘăđLÍ>Zy4ĄÍ­…Ç0߇‰íR+şˇëŒ×ú—(ŰĘńŒ}.eˆÖŸ˝”ź&IRƒubiŹô—ýŮÂ×oÇ{‰íŽ”đVć뽝Đf=)„űbB›7‹B’´ŹŐ „ŚÚńBĄ1|Pŕšă‰íöQ.Ŕx9ąÝĽ‚c$­9Ą”<ŒCúYĚ˝ m.ě1Ď&ś;D$öćtĺÄOlW"ƒ¸WűڕÎM“$­}Ŕ´yA"1ľ•5DÂmn´Žć~­ƒĄ>ҖúV%śř™ôĺŠ*×]Ę&"Y¸ŠaŇg{RďŔĂŔXĹą,eđGbŰŤżŰě'eĚ7A¸łN’´<ý9jýšŘîâ 7§#´‚ ;3Bß%śý‰ú÷gՃ ŞŚ‰Zp)ĹLOwg2ô[%Ŕ;HűAP?é€7b $IËZŽ]cÚ 3$šú<@Ú,ÖhŚţÚń=Qˆ4Ĺ1ťŐnnÍéł%u˝^Ąí—Äá—uě¤Z€÷ZžŚk7×93ß÷?×9GăÄўţv~˙›ëŸLc€X’&ś×çŢŠ6IĚ6n ý€ˇ•*ďďŸ…Ć Ię Ę:ŘGÔż#žhę>&ˆ-ÖUĎĽéUŤ'‰×Uő^ĽˇďĂ 1Ć:ďőQň×c“$5Ű0š{ű|ŞľŔ-ŔÄ.ą›‰]^óËeLż§1ó¸@÷Ď*iöŢěś;Íf]ž>'ś‹÷bBřRćżď7ĚůŰĽ™ÇÄk<üNgóœ$IÍQdű|ŞżˆůrÔ ZiVň˝YÉŻM’´ •Ě’$IęiB’$Šą „$IRcI’¤Ć2’$Ie $I’Ë@H’$5–$Ij,!I’ÔXB’$Šą „$IRcI’¤Ć2’$Ie $I’Ë@H’$5–$Ij,!I’ÔXB’$Šą „$IRc­žů÷pWG!I’ÔY‡çúf~éćH$I’ş`ô?Š=üëIENDŽB`‚latex2rtf-2.3.18/test/dblspace.tex0000777000175000017500000001246713050672355017221 0ustar wilfriedwilfried\documentclass{report} \usepackage{setspace} \doublespacing \begin{document} \tableofcontents \listoffigures \chapter{First Chapter} \section{Intro} Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed posuere, dui ut nonummy lobortis, leo dui laoreet arcu, sed blandit lectus libero sed elit. In non velit. Aenean dignissim aliquam felis. Curabitur nec velit. Donec vitae felis. Pellentesque faucibus suscipit dui. Nunc dictum, purus congue ultrices condimentum, diam enim accumsan dolor, et viverra risus odio et justo. Phasellus accumsan magna ac turpis. Nullam bibendum condimentum leo. Cras a tellus. Phasellus nulla ipsum, egestas at, tempor id, accumsan in, eros. Praesent tincidunt tellus ut risus. See Figure~\ref{fig1}. \begin{figure}[h] \begin{center} {\Large FIGURE} \label{fig1} \caption{This is figure 1} \end{center} \end{figure} Mauris lobortis. Pellentesque egestas nunc at ligula. Nulla ultrices magna quis neque. Aenean lobortis semper purus. In nonummy egestas urna. Nam sodales orci ac felis. Vestibulum vitae ante. Vivamus quis dui. Aenean suscipit. Sed mollis. Pellentesque erat ligula, dictum at, cursus et, accumsan fringilla, metus. Fusce ac neque id ipsum ornare sagittis. See Figure~\ref{fig1} and See Figure~\ref{fig3}. \begin{figure}[ht] \centering {\Large FIGURE2} \end{figure} Mauris lobortis. Pellentesque egestas nunc at ligula. Nulla ultrices magna quis neque. Aenean lobortis semper purus. In nonummy egestas urna. Nam sodales orci ac felis. Vestibulum vitae ante. Vivamus quis dui. Aenean suscipit. Sed mollis. Pellentesque erat ligula, dictum at, cursus et, accumsan fringilla, metus. Fusce ac neque id ipsum ornare sagittis. See Figure~\ref{fig1} and See Figure~\ref{fig3}. \begin{table}[ht] \centering {\Large TABLE} \end{table} Mauris lobortis. Pellentesque egestas nunc at ligula. Nulla ultrices magna quis neque. Aenean lobortis semper purus. In nonummy egestas urna. Nam sodales orci ac felis. Vestibulum vitae ante. Vivamus quis dui. Aenean suscipit. Sed mollis. Pellentesque erat ligula, dictum at, cursus et, accumsan fringilla, metus. Fusce ac neque id ipsum ornare sagittis. See Figure~\ref{fig1} and See Figure~\ref{fig3}. \section{Method} Mauris imperdiet. Duis scelerisque. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nulla facilisi. Vivamus sodales magna et nibh. Nulla non neque in quam mollis ornare. Vestibulum nonummy augue ut wisi. Curabitur adipiscing eros sit amet lorem. Cras auctor, tortor ut euismod iaculis, elit purus facilisis nibh, id tempus nulla libero in ipsum. Praesent vestibulum facilisis arcu. Curabitur quis augue ac mi dictum ultricies. Maecenas consectetuer. Mauris non lacus. Nunc et nisl sit amet ligula pretium dapibus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nullam ut metus in sapien mollis dignissim. Ut sem lacus, commodo nec, fermentum sit amet, porta sit amet, arcu. Nunc non eros. Vestibulum ullamcorper adipiscing risus. See Figure~\ref{fig2}. \begin{figure}[h] \begin{center} \vspace{2cm} \label{fig2} \caption{This is figure 2} \end{center} \end{figure} \chapter{Second Chapter} \section{Intro} Mauris lobortis. Pellentesque egestas nunc at ligula. Nulla ultrices magna quis neque. Aenean lobortis semper purus. In nonummy egestas urna. Nam sodales orci ac felis. Vestibulum vitae ante. Vivamus quis dui. Aenean suscipit. Sed mollis. Pellentesque erat ligula, dictum at, cursus et, accumsan fringilla, metus. Fusce ac neque id ipsum ornare sagittis. See Figure~\ref{fig1} and See Figure~\ref{fig3}. \begin{figure}[h] \begin{center} \vspace{2cm} \label{fig3} \caption{This is figure 3} \end{center} \end{figure} \section{Method} Maecenas gravida, massa id interdum semper, purus ipsum vulputate nibh, vel egestas diam ante sit amet metus. Etiam rutrum augue eleifend leo. Vestibulum a leo. Duis rhoncus orci quis tortor. Pellentesque id ipsum nec est vestibulum imperdiet. Etiam volutpat. Maecenas ornare laoreet mauris. Praesent feugiat. Donec pede elit, sollicitudin ut, vulputate a, venenatis eu, dui. Praesent mollis. Aenean enim dui, commodo at, tincidunt at, luctus suscipit, leo. Aenean urna. Praesent adipiscing. Quisque id arcu at velit tincidunt consectetuer. Phasellus gravida est sed felis. Proin mi tortor, suscipit et, convallis euismod, ultrices vitae, justo. Cras leo arcu, viverra at, dignissim nec, feugiat sed, ligula. See Figure~\ref{fig2} and See Figure~\ref{fig4}. \begin{figure}[h] \begin{center} \vspace{2cm} \label{fig4} \caption{This is figure 4} \end{center} \end{figure} Nunc leo justo, egestas id, sodales id, aliquam eget, massa. Mauris posuere nibh pulvinar neque feugiat porta. Morbi tempor faucibus nibh. Donec sit amet urna. Sed dictum dui ut justo. Vestibulum imperdiet. Morbi sed risus. Praesent sollicitudin. Vivamus ut est sit amet diam semper lacinia. Donec nec tortor a lacus placerat aliquet. Vestibulum quis turpis. Curabitur auctor libero. Nam sit amet felis nec mauris tempus imperdiet. Aenean est ipsum, molestie eget, vulputate tincidunt, tempus ac, lectus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nullam molestie rhoncus metus. Nunc sollicitudin ipsum nec urna. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos hymenaeos. In hac habitasse platea dictumst. \end{document} latex2rtf-2.3.18/test/bib_apacite3.bib0000777000175000017500000000044513050672357017700 0ustar wilfriedwilfried@ARTICLE(warren&gibson&russell2009, AUTHOR = "Ben Warren and Gabriella Gibson and Ian J. Russell", TITLE = "Sex Recognition through Midflight Mating Duets in \emph{Culex} Mosquitoes Is Mediated by Acoustic Distortion", YEAR = 2009, JOURNAL = "Curr. Biol.", VOLUME = 19, PAGES = "485-491") latex2rtf-2.3.18/test/include4.tex0000777000175000017500000000253213050672360017137 0ustar wilfriedwilfried\subsubsection{This is the first subsubsection from file \texttt{include4.tex}} \label{section41} Here is some text to create a paragraph or two so that we can see if this works or not. It will be interesting to see if the labels work properly. As I create these testing files I realize that I need to add parsing support for \verb#\input# and \verb#\include# in the getSection function. Furthermore, after reading the \LaTeX{} book, I see that \verb#\include# files will all start on a new page. This is not the case for \verb#\input# files. Here is a reference to the next subsubsection \ref{section42} and one in the next input file \ref{section52}. \subsubsection{This is the second subsubsection from file \texttt{include4.tex}} \label{section42} Here is some text to create a paragraph or two so that we can see if this works or not. It will be interesting to see if the labels work properly. As I create these testing files I realize that I need to add parsing support for \verb#\input# and \verb#\include# in the getSection function. Furthermore, after reading the \LaTeX{} book, I see that \verb#\include# files will all start on a new page. This is not the case for \verb#\input# files. Here is a reference to the previous subsubsection \ref{section41}. Here is a reference to the first subsection from \texttt{include1.tex} \ref{section11}. latex2rtf-2.3.18/test/bib_harvard.tex0000777000175000017500000000247713050672360017703 0ustar wilfriedwilfried\documentclass{article} \usepackage{harvard} \begin{document} \begin{table} \begin{tabular}{l} \hline \verb#\cite{btxdoc}# \\ \cite{btxdoc} \\ (Patashnik 1988)\\ \hline \verb#\cite{aharanov1995}# \\ \cite{aharanov1995} \\ (Aharanov, Whitehead, Kelemen \& Spiegelman 1995)\\ \hline \verb#\cite[Annex~B]{latex}# \\ \cite[Annex~B]{latex} \\ (Lamport 1986, Annex B)\\ \hline \verb#\cite{btxdoc,latex}# \\ \cite{btxdoc,latex} \\ (Patashnik 1988, Lamport 1986)\\ \hline \verb#\cite[Annex~B]{btxdoc,latex}# \\ \cite[Annex~B]{btxdoc,latex} \\ (Patashnik 1988, Lamport 1986, Annex B)\\ \hline \verb#\citeasnoun{btxdoc}# \\ \citeasnoun{btxdoc} \\ Patashnik (1988)\\ \hline \verb#\citeasnoun[Annex~B]{latex}# \\ \citeasnoun[Annex~B]{latex} \\ Lamport (1986, Annex B)\\ \hline \verb#\possessivecite{btxdoc}# \\ \possessivecite{btxdoc} \\ Patashnik's (1988)\\ \hline \verb#\citeaffixed{latex,btxdoc}{e.g.}# \\ \citeaffixed{latex,btxdoc}{e.g.} \\ (e.g. Lamport 1986, Patashnik 1988)\\ \hline \verb#\citeyear{latex}# \\ \citeyear{latex} \\ (1986)\\ \hline \verb#\citeyear*{latex}# \\ \citeyear*{latex} \\ 1986\\ \hline \verb#\citeyear{latex,btxdoc}# \\ \citeyear{latex,btxdoc} \\ (1986, 1988)\\ \hline \verb#\citename{btxdoc}# \\ \citename{btxdoc} \\ Patashnik\\ \end{tabular} \end{table} \bibliographystyle{agsm} \bibliography{bib_harvard} \end{document}latex2rtf-2.3.18/test/align.tex0000777000175000017500000000357213050672357016535 0ustar wilfriedwilfried\documentclass{article} \begin{document} Here we test the center environment. The \verb#\begin{center}...\end{center}# sequence should allow the sans serif font to leak out into the text that follows the centered environment. \begin{center} \sf\bfseries Some \verb#\sf\bfseries# centered text --- voil\'a \end{center} This should now be in plain roman font with the paragraph justified. We need a lot of text to test the justification. A short sentence would not really be enough. A couple of short sentences should do the trick. \begin{flushleft} \sc Small caps flush left on line 1 \\ Small caps flush left on line 2 \\ .\\ .\\ .\\ \end{flushleft} Now we only have the \verb#\begin{flushright}...\end{flushright}# environment to deal with. This paragraph should be justified on both margins. The next should be flush with the right margin. \begin{flushright} \itshape Italics text flush right on line 1 \\ Italics text flush right on line 2 \\ .\\ .\\ .\\ \end{flushright} More roman text at the end. More roman text at the end. More roman text at the end. More roman text at the end. More roman text at the end. More roman text at the end. More roman text at the end. More roman text at the end. More roman text at the end. More roman text at the end. More roman text at the end. More roman text at the end. {\raggedright Ragged right text ragged right text Ragged right text ragged right text Ragged right text ragged right text Ragged right text ragged right text Ragged right text ragged right text Ragged right text ragged right text\par} More roman text at the end. More roman text at the end. More roman text at the end. More roman text at the end. More roman text at the end. More roman text at the end. More roman text at the end. More roman text at the end. More roman text at the end. More roman text at the end. More roman text at the end. More roman text at the end. \end{document} latex2rtf-2.3.18/test/enc_cp865.tex0000777000175000017500000001277313050672357017140 0ustar wilfriedwilfried\documentclass[10pt]{article} \usepackage[T1]{fontenc} \usepackage[cp865]{inputenc} \usepackage{times} \usepackage{textcomp} \begin{document} \begin{tabular}{ccrl} 80&€&199&LATIN CAPITAL LETTER C WITH CEDILLA\\ 81&&252&LATIN SMALL LETTER U WITH DIAERESIS\\ 82&‚&233&LATIN SMALL LETTER E WITH ACUTE\\ 83&ƒ&226&LATIN SMALL LETTER A WITH CIRCUMFLEX\\ 84&„&228&LATIN SMALL LETTER A WITH DIAERESIS\\ 85&…&224&LATIN SMALL LETTER A WITH GRAVE\\ 86&†&229&LATIN SMALL LETTER A WITH RING ABOVE\\ 87&‡&231&LATIN SMALL LETTER C WITH CEDILLA\\ 88&ˆ&234&LATIN SMALL LETTER E WITH CIRCUMFLEX\\ 89&‰&235&LATIN SMALL LETTER E WITH DIAERESIS\\ 8A&Š&232&LATIN SMALL LETTER E WITH GRAVE\\ 8B&‹&239&LATIN SMALL LETTER I WITH DIAERESIS\\ 8C&Œ&238&LATIN SMALL LETTER I WITH CIRCUMFLEX\\ 8D&&236&LATIN SMALL LETTER I WITH GRAVE\\ 8E&Ž&196&LATIN CAPITAL LETTER A WITH DIAERESIS\\ 8F&&197&LATIN CAPITAL LETTER A WITH RING ABOVE\\ 90&&201&LATIN CAPITAL LETTER E WITH ACUTE\\ 91&‘&230&LATIN SMALL LETTER AE\\ 92&’&198&LATIN CAPITAL LETTER AE\\ 93&“&244&LATIN SMALL LETTER O WITH CIRCUMFLEX\\ 94&”&246&LATIN SMALL LETTER O WITH DIAERESIS\\ 95&•&242&LATIN SMALL LETTER O WITH GRAVE\\ 96&–&251&LATIN SMALL LETTER U WITH CIRCUMFLEX\\ 97&—&249&LATIN SMALL LETTER U WITH GRAVE\\ 98&˜&255&LATIN SMALL LETTER Y WITH DIAERESIS\\ 99&™&214&LATIN CAPITAL LETTER O WITH DIAERESIS\\ 9A&š&220&LATIN CAPITAL LETTER U WITH DIAERESIS\\ 9B&›&248&LATIN SMALL LETTER O WITH STROKE\\ 9C&œ&163&POUND SIGN\\ 9D&&216&LATIN CAPITAL LETTER O WITH STROKE\\ 9E&ž&8359&PESETA SIGN\\ 9F& &57379&\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} A0& &225&LATIN SMALL LETTER A WITH ACUTE\\ A1&Ą&237&LATIN SMALL LETTER I WITH ACUTE\\ A2&˘&243&LATIN SMALL LETTER O WITH ACUTE\\ A3&Ł&250&LATIN SMALL LETTER U WITH ACUTE\\ A4&¤&241&LATIN SMALL LETTER N WITH TILDE\\ A5&Ľ&209&LATIN CAPITAL LETTER N WITH TILDE\\ A6&Ś&170&FEMININE ORDINAL INDICATOR\\ A7&§&186&MASCULINE ORDINAL INDICATOR\\ A8&¨&191&INVERTED QUESTION MARK\\ A9& &8976&REVERSED NOT SIGN\\ AA&$Ş$&172&NOT SIGN\\ AB&Ť&189&VULGAR FRACTION ONE HALF\\ AC&Ź&188&VULGAR FRACTION ONE QUARTER\\ AD&­&161&INVERTED EXCLAMATION MARK\\ AE&Ž&171&LEFT-POINTING DOUBLE ANGLE QUOTATION MARK\\ AF&Ż&187&RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK\\ B0& &9617&LIGHT SHADE\\ B1& &9618&MEDIUM SHADE\\ B2& &9619&DARK SHADE\\ B3& &9474&BOX DRAWINGS LIGHT VERTICAL\\ B4& &9508&BOX DRAWINGS LIGHT VERTICAL AND LEFT\\ B5& &9509&BOX DRAWINGS VERTICAL LIGHT AND LEFT HEAVY\\ B6& &9512&BOX DRAWINGS VERTICAL HEAVY AND LEFT LIGHT\\ B7& &9490&BOX DRAWINGS DOWN HEAVY AND LEFT LIGHT\\ B8& &9489&BOX DRAWINGS DOWN LIGHT AND LEFT HEAVY\\ B9& &9515&BOX DRAWINGS HEAVY VERTICAL AND LEFT\\ BA& &9475&BOX DRAWINGS HEAVY VERTICAL\\ BB& &9491&BOX DRAWINGS HEAVY DOWN AND LEFT\\ BC& &9499&BOX DRAWINGS HEAVY UP AND LEFT\\ BD& &9498&BOX DRAWINGS UP HEAVY AND LEFT LIGHT\\ BE& &9497&BOX DRAWINGS UP LIGHT AND LEFT HEAVY\\ BF& &9488&BOX DRAWINGS LIGHT DOWN AND LEFT\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} C0& &9492&BOX DRAWINGS LIGHT UP AND RIGHT\\ C1& &9524&BOX DRAWINGS LIGHT UP AND HORIZONTAL\\ C2& &9516&BOX DRAWINGS LIGHT DOWN AND HORIZONTAL\\ C3& &9500&BOX DRAWINGS LIGHT VERTICAL AND RIGHT\\ C4& &9472&BOX DRAWINGS LIGHT HORIZONTAL\\ C5& &9532&BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL\\ C6& &9501&BOX DRAWINGS VERTICAL LIGHT AND RIGHT HEAVY\\ C7& &9504&BOX DRAWINGS VERTICAL HEAVY AND RIGHT LIGHT\\ C8& &9495&BOX DRAWINGS HEAVY UP AND RIGHT\\ C9& &9487&BOX DRAWINGS HEAVY DOWN AND RIGHT\\ CA& &9531&BOX DRAWINGS HEAVY UP AND HORIZONTAL\\ CB& &9523&BOX DRAWINGS HEAVY DOWN AND HORIZONTAL\\ CC& &9507&BOX DRAWINGS HEAVY VERTICAL AND RIGHT\\ CD& &9473&BOX DRAWINGS HEAVY HORIZONTAL\\ CE& &9547&BOX DRAWINGS HEAVY VERTICAL AND HORIZONTAL\\ CF& &9527&BOX DRAWINGS UP LIGHT AND HORIZONTAL HEAVY\\ D0& &9528&BOX DRAWINGS UP HEAVY AND HORIZONTAL LIGHT\\ D1& &9519&BOX DRAWINGS DOWN LIGHT AND HORIZONTAL HEAVY\\ D2& &9520&BOX DRAWINGS DOWN HEAVY AND HORIZONTAL LIGHT\\ D3& &9494&BOX DRAWINGS UP HEAVY AND RIGHT LIGHT\\ D4& &9493&BOX DRAWINGS UP LIGHT AND RIGHT HEAVY\\ D5& &9485&BOX DRAWINGS DOWN LIGHT AND RIGHT HEAVY\\ D6& &9486&BOX DRAWINGS DOWN HEAVY AND RIGHT LIGHT\\ D7& &9538&BOX DRAWINGS VERTICAL HEAVY AND HORIZONTAL LIGHT\\ D8& &9535&BOX DRAWINGS VERTICAL LIGHT AND HORIZONTAL HEAVY\\ D9& &9496&BOX DRAWINGS LIGHT UP AND LEFT\\ DA& &9484&BOX DRAWINGS LIGHT DOWN AND RIGHT\\ DB& &9608&FULL BLOCK\\ DC& &9604&LOWER HALF BLOCK\\ DD& &9612&LEFT HALF BLOCK\\ DE& &9616&RIGHT HALF BLOCK\\ DF& &9600&UPPER HALF BLOCK\\ \end{tabular} \pagebreak \begin{tabular}{ccrl} E0&$ŕ$&945&GREEK SMALL LETTER ALPHA\\ E1&$á$&946&GREEK SMALL LETTER BETA\\ E2&$â$&915&GREEK CAPITAL LETTER GAMMA\\ E3&$ă$&960&GREEK SMALL LETTER PI\\ E4&$ä$&931&GREEK CAPITAL LETTER SIGMA\\ E5&$ĺ$&963&GREEK SMALL LETTER SIGMA\\ E6&$ć$&956&GREEK SMALL LETTER MU\\ E7&$ç$&964&GREEK SMALL LETTER TAU\\ E8&$č$&934&GREEK CAPITAL LETTER PHI\\ E9&$é$&920&GREEK CAPITAL LETTER THETA\\ EA&$ę$&937&GREEK CAPITAL LETTER OMEGA\\ EB&$ë$&948&GREEK SMALL LETTER DELTA\\ EC&$ě$&8734&INFINITY\\ ED&$í$&8709&EMPTY SET\\ EE&$î$&949&GREEK SMALL LETTER EPSILON\\ EF&$ď$&8745&INTERSECTION\\ F0&$đ$&8801&IDENTICAL TO\\ F1&$ń$&177&PLUS-MINUS SIGN\\ F2&$ň$&8805&GREATER-THAN OR EQUAL TO\\ F3&$ó$&8804&LESS-THAN OR EQUAL TO\\ F4& &8992&TOP HALF INTEGRAL\\ F5& &8993&BOTTOM HALF INTEGRAL\\ F6&$ö$&247&DIVISION SIGN\\ F7&$÷$&8776&ALMOST EQUAL TO\\ F8&ř&8728&RING OPERATOR\\ F9&ů&183&MIDDLE DOT\\ FA&ú&8729&BULLET OPERATOR\\ FB&$ű$&8730&SQUARE ROOT\\ FC&$ü$&8319&SUPERSCRIPT LATIN SMALL LETTER N\\ FD&$ý$&178&SUPERSCRIPT TWO\\ FE&ţ&9632&BLACK SQUARE\\ FF&˙&160&NO-BREAK SPACE\\ \end{tabular} \end{document} latex2rtf-2.3.18/test/cyrillic.tex0000777000175000017500000000454513050672357017256 0ustar wilfriedwilfried\documentclass{article} % I tried a lot of packages and settings % but none makes LaTeX successfully compile this file. % However latex2rtf converts it successfully. \usepackage[T2A,T2B,T2C]{fontenc} \usepackage[russian,english]{babel} %\usepackage{amsmath} %\usepackage{amssymb} \usepackage{ucs} \usepackage{unicode} %\usepackage{textcomp} \usepackage{tipa} \begin{document} \begin{table} \begin{center} \begin{tabular}{lll} command & unicode & actual symbol\\ \verb#\CYRBuki# & 1041 & \CYRBuki\\ \verb#\CYRGlagol# & 1043 & \CYRGlagol\\ \verb#\CYRJu# & 1046 & \CYRJu\\ \verb#\CYRSemlja# & 1047 & \CYRSemlja\\ \verb#\CYRIsche# & 1048 & \CYRIsche\\ \verb#\CYRSchiwete# & 1049 & \CYRSchiwete\\ \verb#\CYRKako# & 1050 & \CYRKako\\ \verb#\CYRLjudi# & 1051 & \CYRLjudi\\ \verb#\CYRPakoy# & 1055 & \CYRPakoy\\ \verb#\CYRU# & 1059 & \CYRU\\ \verb#\CYRFert# & 1060 & \CYRFert\\ \verb#\CYRTscherw# & 1061 & \CYRTscherw\\ \verb#\CYRZui# & 1062 & \CYRZui\\ \verb#\CYRScha# & 1064 & \CYRScha\\ \verb#\CYRSchtscha# & 1065 & \CYRSchtscha\\ \verb#\CYRJerr# & 1066 & \CYRJerr\\ \verb#\CYRJerui# & 1067 & \CYRJerui\\ \verb#\CYRJher# & 1068 & \CYRJher\\ \verb#\CYRDsche# & 1069 & \CYRDsche\\ \verb#\CYRtjsche# & 1070 & \CYRtjsche\\ \verb#\CYRZelo# & 1071 & \CYRZelo\\ \verb#\CYRbuki# & 1073 & \CYRbuki\\ \verb#\CYRwjedi# & 1074 & \CYRwjedi\\ \verb#\CYRglagol# & 1075 & \CYRglagol\\ \verb#\CYRdobro# & 1076 & \CYRdobro\\ \verb#\CYRju# & 1078 & \CYRju\\ \verb#\CYRsemlja# & 1079 & \CYRsemlja\\ \verb#\CYRische# & 1080 & \CYRische\\ \verb#\CYRschiwete# & 1081 & \CYRschiwete\\ \verb#\CYRkako# & 1082 & \CYRkako\\ \verb#\CYRljudi# & 1083 & \CYRljudi\\ \verb#\CYRmuislette# & 1084 & \CYRmuislette\\ \verb#\CYRnasch# & 1085 & \CYRnasch\\ \verb#\CYRpakoy# & 1087 & \CYRpakoy\\ \verb#\CYRtwerdo# & 1090 & \CYRtwerdo\\ \verb#\CYRfert# & 1092 & \CYRfert\\ \verb#\CYRtscherw# & 1093 & \CYRtscherw\\ \verb#\CYRzui# & 1094 & \CYRzui\\ \verb#\CYRscha# & 1096 & \CYRscha\\ \verb#\CYRschtscha# & 1097 & \CYRschtscha\\ \verb#\CYRjerr# & 1098 & \CYRjerr\\ \verb#\CYRjerui# & 1099 & \CYRjerui\\ \verb#\CYRjher# & 1100 & \CYRjher\\ \verb#\CYRsemlja# & 1101 & \CYRsemlja\\ \verb#\CYRJa# & 1102 & \CYRJa\\ \verb#\CYRzelo# & 1103 & \CYRzelo\\ \end{tabular} \end{center} \caption{Testing Cyrillic} \end{table} \end{document} latex2rtf-2.3.18/test/german.tex0000777000175000017500000000510713050672355016706 0ustar wilfriedwilfried\documentclass[11pt]{report} % ergaenze `twoside', wenn gewuenscht! \usepackage{ngerman} \title{Test-Dokument f"ur "`german.sty"'} \author{Wilfried Hennings} \date{2001-09-10} \begin{document} \maketitle \tableofcontents \chapter{Einleitung} Dies ist ein nicht besonders intelligenter Text zum Testen von Dokumenten, die die Besonderheiten des Pakets "`german.sty"' verwenden. Das Paket muss mit folgender Syntax in der Preambel des Dokuments eingebunden werden:\\ \verb|\usepackage{german}|\\ f"ur die "`alte"' Rechtschreibung oder \\ \verb|\usepackage{ngerman}|\\ f"ur die "`neue"' Rechtschreibung \chapter{Die Besonderheiten deutscher Texte} \section{Umlaute} Wichtig in deutschen Texten sind vor allem die Umlaute. \subsection{Umlaute ohne das Paket "`german.sty"'} Ohne das Paket "`german.sty"' m"ussen Umlaute so kodiert werden, wie in Tabelle~\ref{T1} auf Seite \pageref{T1} dargestellt. \begin{table}[ht] \"A = \verb|\"A|\\ \"O = \verb|\"O|\\ \"U = \verb|\"U|\\ \"a = \verb|\"a|\\ \"o = \verb|\"o|\\ \"u = \verb|\"u|\\ \ss{} = \verb|\ss{}| \caption{Tabelle der Umlaute in Standard-LaTeX} \label{T1} \end{table} \subsection{Umlaute mit dem Paket "`german.sty"'} Mit dem Paket "`german.sty"' k"onnen Umlaute auch so kodiert werden, wie in Tabelle~\ref{T2} auf Seite \pageref{T2} dargestellt. \begin{table}[ht] "A = \verb|"A|\\ "O = \verb|"O|\\ "U = \verb|"U|\\ "a = \verb|"a|\\ "o = \verb|"o|\\ "u = \verb|"u|\\ "s = \verb|"s|\\ \caption{Tabelle der Umlaute mit dem Paket "`german.sty"'} \label{T2} \end{table} \section{Beschriftungen} Eine weitere Anpassung ist f"ur Beschriftungen der Elemente eines Dokuments erforderlich. Zum Beispiel soll aus dem englischen "`page"' das deutsche "`Seite"' werden, aus dem englischen "`bibliography"' das deutsche "`Literatur"'. Um dies zu testen, sind in diesem Dokument verschiedene "Uberschriften, eine Abbildung (Abbildung~\ref{A1} auf Seite \pageref{A1}), zwei Tabellen (Tabelle~\ref{T1} auf Seite \pageref{T1} und Tabelle~\ref{T2} auf Seite \pageref{T2}) sowie eine Bibliographie eingef"ugt. Einige Beispiele sind der "`LaTeX2e-Kurzbeschreibung"' \cite{l2kurz} entnommen. \begin{figure}[tb] \vspace{4cm} \caption{Landschaft im Nebel} \label{A1} \end{figure} \section{Anf"uhrungszeichen} Schlie"slich sehen in deutschen Texten die Anf"uhrungszeichen anders aus. W"ahrend im Englischen die doppelten Anf"uhrungszeichen ``so'' aussehen, sollen sie im Deutschen "`so"' aussehen. \begin{thebibliography}{9} \bibitem{l2kurz} Walter Schmidt, J"org Knappen, Hubert Partl, Irene Hyna:\\ \textit{LaTeX2e-Kurzbeschreibung} \end{thebibliography} \end{document} latex2rtf-2.3.18/test/qualisex.tex0000777000175000017500000006403513050672355017275 0ustar wilfriedwilfried\documentclass[twoside,12pt]{report} \usepackage[T1]{fontenc} \usepackage[cp850]{inputenc} \usepackage[french]{babel} \global\tolerance10000 \global\pretolerance500 \title{\Large\bf CHARTE de QUALIT\'E\\Sites sportifs d'escalade \\ {\normalsize\bf(Projet)} } \author{\large\rm G\'erard \sc Decorps\\\large\rm Daniel \sc Taupin \\\large\rm Jo\"el \sc Thomine} \begin{document} \maketitle\tableofcontents\setcounter{secnumdepth}{3} \chapter{Remarques pr\'eambulatoires} La demande, ‚manant de minist\`eres par l'interm‚diaire du Conseil Sup‚rieur des Sport de Montagne, de <<~chartes de qualit‚~>> des {\sl sites\/} et des {\sl topos-guides\/} d'escalade appellent deux remarques de la part des r‚dacteurs de ces {\sl chartes\/}~: \begin{enumerate} \item les <<~sites d'escalade~>> ont-ils une existence administrative, \`a d\'efaut de <<~l\'egale~>>~? \item l'\'evaluation (quantitative) de la qualit\'e d'un site d'escalade donn\'e \end{enumerate} \section{Historique : le vocable <<~site d'escalade~>> entre dans le vocabulaire minist\'eriel~!} Il est int\'eressant de souligner que, pour la premi\`ere fois, les pouvoirs publics interrogent et s'interrogent sur la qualit\'e -- donc l'existence -- des <<~sites d'escalade~>>. On ose alors esp\'erer que cette premi\`ere \'ebauche d'action pourrait conduire \`a des incitations \'economiques et \`a des officialisations r‚glementaires, voire l\'egales.\label{historique}Label"historique". LIGNE VIDE. Il est int\'eressant de souligner que, pour la premi\`ere fois, les pouvoirs publics interrogent et s'interrogent sur la qualit\'e -- donc l'existence -- des <<~sites d'escalade~>>. On ose alors esp\'erer que cette premi\`ere \'ebauche d'action pourrait conduire \`a des incitations \'economiques et \`a (en plus) LIGNE VIDE. \begin{center}\small \begin{tabular}{|c|c|c|c|} \hline Cotation & Signification & Couleur & Difficult\'e des\\ d'ensemble & & & passages\\ \hline E & Circuit pour enfants & Blanc & ---\\ \cline{1-1}\cline{3-3} F & Facile & Jaune & 1--2c\\ PD& Peu difficile & Jaune & 2a--3a\\ \cline{2-3} AD& Assez difficile & Orange & 3a--4a\\ D & Difficile & Bleu & 4a--5a\\ TD& Tr\`es difficile & Rouge & 4c--6a\\ ED& Extr\^emement difficile & Noir ou Blanc& 5c--8a\\ \hline ABO& \multicolumn2{c|}{Pas d'ABO … Bleau}& 7c--8a\\ \hline \end{tabular} \end{center} \begin{center}\small \begin{tabular}{|c|c|c|c|} \hline Cotation & Signification & Couleur & Difficult\'e des\\ d'ensemble & & & passages\\ \hline E & Circuit pour enfants & Blanc & ---\\ \cline{1-1}\cline{3-3} F & Facile & Jaune & 1--2c\\ PD& Peu difficile & Jaune & 2a--3a\\ \cline{2-3} AD& Assez difficile & Orange & 3a--4a\\ D & Difficile & Bleu & 4a--5a\\ TD& Tr\`es difficile & Rouge & 4c--6a\\ ED& Extr\^emement difficile & Noir ou Blanc& 5c--8a\\ \hline ABO& \multicolumn2{c|}{Pas d'ABO … Bleau}& 7c--8a\\ \hline D & DIFFICILE & BLEU & 4a--5a\\ \hline \end{tabular} \end{center} \begin{center}\small \begin{tabular}{|c|c|c|c|} \hline Cotation & Signification & Couleur & Difficult\'e des\\ d'ensemble & & & passages\\ \hline E & Circuit pour enfants & Blanc & ---\\ \cline{1-1}\cline{3-3} F & Facile & Jaune & 1--2c\\ PD& Peu difficile & Jaune & 2a--3a\\ \cline{2-3} AD& Assez difficile & Orange & 3a--4a\\ D & Difficile & Bleu & 4a--5a\\ TD& Tr\`es difficile & Rouge & 4c--6a\\ ED& Extr\^emement difficile & Noir ou Blanc& 5c--8a\\ \cline{1-1}\cline{3-3} ABO& \multicolumn2{c|}{PAS D'ABO ˇ BLEAU}& 7c--8a\\ \hline \end{tabular} \end{center} %{\sl Correspondance entre la difficult\'e moyenne %(cotation <>) des circuits et leur couleur.} %\caption %\label{tabldiff} %\hrule Alors que le littoral fran\c cais, sa protection et les activit\'es qu'il supporte, b\'en\'eficient aujourd'hui des actions d'un <<~Conservatoire~>> et que les espaces montagnards, leur sauvegarde et l'activit\'e humaine qui s'y d‚roule, poss\`edent une l\'egislation sp\'ecifique, la <<~loi montagne~>>, il serait int\'eressant que les pouvoirs publics s'interrogent sur la qualit\'e d'<<~usage social~>> des {\sl sites naturels d'escalade\/}, d'ailleurs comparables \`a de nombreux autres espaces utilis\'e pour les activit\'es de pleine nature~: canyons, rivi\`eres, espaces souterrains... \medskip Ici medskip. Or le droit \`a l'<<~usage sportif~>> de ces espaces reste \`a inventer. En effet, actuellement, le droit \`a l'usage -- et surtout \`a l'am\'enagement pour un minimum de s\'ecurit\'e -- de ces lieux d\'epend essentiellement du {\sl bon vouloir\/} des propri\'etaires~: propri\'etaires particuliers \'evidemment, mais aussi propri\'etaires <<~publics~>> dans la mesure o\`u beaucoup de ces sites sont la {\sl propri\'et\'e priv\'ee\/} des collectivit\'es locales ou de l'\'Etat (cas des {\sl for\^ets domaniales\/}). Et dans le cas de terrains <<~ouverts au public~>> le droit d'usage peut souvent \^etre remis en question par le maire, {\sl premier responsable de la s\'ecurit\'e\/} sur sa commune en fonction d'arguments parfois discutables... sans qu'on ait pour autant l'occasion d'en discuter avec lui. Sans compter que les arguments des escaladeurs deviennent souvent irrecevables par un maire d\`es lors que les demandeurs ne sont ni \'electeurs ni contribuables sur sa commune... \bigskip Ici bigskip. Heureusement, ce <<~bon vouloir~>> est souvent orient\'e dans un sens favorable aux activit\'es de pleine nature, dont l'escalade, dans la mesure o\`u ces activit\'es repr\'esentent un <<~produit touristique~>> valorisable dans la r\'egion. Ceci est vrai dans le sud-est de la France et le Midi-Pyr\'en\'ees, ceci l'est beaucoup moins dans le nord-ouest agricole.(voir \ref{charq}, p. \pageref{charq}) \smallskip Ici smallskip. On se prend donc \`a esp\'erer -- alors que les <<~sites naturels d'escalade~>> existent\footnote{Hors alpinisme et activit\'es pr\'eparatoires \`a la pratique de l'alpinisme.} depuis plus de cinquante ans -- que les minist\`eres, en collaboration avec les f\'ed\'erations sportives et les organismes de {\sl protection de la nature\/}, donneront peut-\^etre un cadre institutionnel minimum \`a des pratiques. \section{De la charte de qualit\'e \`a l'\'evaluation de la qualit\'e} Si le terme <<~charte de qualit\'e~>>, qui peut aussi se comprendre <<~charte d'am\'enagement~>>, reste le plus ad‚quat pour d\'esigner le pr\'esent travail, il faut souligner que reste pos\'e le probl\`eme de l'{\sl\'evaluation\/} de cette qualit\'e, que ce soit pour des sites existants ou pour de nouveaux sites. \vspace{1.5cm} Ici vspace 1.5cm. Th\'eoriquement,\label{charq} il suffit pour ce faire de prendre alin\'ea par alin\'ea la charte de qualit\'e propos\'ee ci-apr\`es pour les <<~sites d'escalade~>>, mais il faut ensuite {\sl pond\'erer\/} les r\'eponses donn\'ees\footnote{Pour autant que l'on dispose d'informations valables et r\'ecentes.}. Or, s'il est \'evident qu'une r\'eponse <<~oui~>> \`a la question sur l'ensoleillement sera n\'egligeable face \`a une r\'eponse <<~non~>> quant \`a la fiabilit\'e de l'\'equipement, le choix de la pond\'eration -- voire de son signe alg\'ebrique -- est un probl\`eme de nature politique, pour lequel il n'est pas possible de proposer m\^eme un embryon de r\'eponse... dans les d\'elais impartis. Parmi les points sujets \`a controverse, citons \`a titre d'exemple~: \begin{itemize} \item les {\sl voies de plusieurs longueurs\/} sont tr\`es pris\'ees des grimpeurs correctement form\'es, mais un s\'erieux handicap pour les groupes scolaires ou de d‚butants~; \item les \'equipements rapproch\'es (<<~surprotection~>>) sont peu appr\'eci\'es, voire m\'epris\'es, par les escaladeurs de culture {\sl alpiniste\/}, mais consid\'er\'es comme une qualit\'e pour les groupes nombreux dont l'encadrement est limit\'e par des raisons \'economiques. \item le cadre <<~naturel~>> est appr\'eci\'e d'une majorit\'e d'escaladeurs, mais sera sujet \`a objection de la part des {\sl d\'efenseurs inconditionnels\/}\footnote{On peut aussi lire~: <<~int\'egristes~>>.} de la nature ainsi que, \`a l'autre extr\'emit\'e, de la part de ceux qui veulent rapprocher l'escalade de la culture des banlieues <<~\`a probl\`emes~>>. \end{itemize} Tout ceci pour dire que l'{\sl\'evaluation\/} doit faire l'objet d'une \'etude compl\'ementaire avant d'\^etre propos\'ee aux instances demanderesses... \chapter{Charte de qualit\'e des sites sportifs d'escalade} Contrairement \`a ce que beaucoup de grimpeurs et d'am\'enageurs peuvent penser, il convient d'insister sur le fait que la qualit‚ globale d'un {\sl site sportif\/} d'escalade\footnote{Il est d'ailleurs permis de s'\'etonner ici que des minist\`eres veuillent commanditer une telle {\sl charte de qualit\'e\/} alors que les <<~sites d'escalade~>> -- qu'ils soient <<~sportifs~>> ou <<~d'aventure~>> n'ont aucune existence l\'egale ou administrative. Mais on pourra se consoler en notant que les <<~pistes de ski~>> n'ont pas plus d'existence...} n'est pas seulement fonction de de son \'equipement mais aussi de la qualit\'e de ses acc\`es, de la propret\'e du rocher et des conditions g\'en\'erales de pratique. \section{Le choix du site} \begin{itemize} \item Le choix du site doit \^etre tel que l'escalade puisse s'y pratiquer commod\'ement une bonne partie de l'ann\'ee sur du rocher sec. \item Le rocher doit \^etre solide, {\sl au moins apr\`es \'elimination des blocs et prises instables\/}. Ceci exclut les roches fractur\'ees ou fissur\'ees en altitude, o\`u les gels nocturnes peuvent d\'esceller des blocs ou des prises \`a une cadence qui exc\`ede les possibilit\'es de maintenance pr‚ventive. \item Sous r\'eserve des conditions d'acc\`es pour la maintenance et les secours, la hauteur des rochers et des parois n'est pas un param\`etre crucial, toutefois~: \begin{quote} \small \begin{itemize} \item Sauf dans les r\'egions pauvres en rochers, les hauteurs entre 5 et 12~m sont … \'eviter car de telles voies sont trop courtes pour \^etre int\'eressantes pour l'escalade <<~en t\^ete~>> et trop dangereuses pour la pratique {\sl de bloc\/}, c'est-\`a-dire <<~en solo~>>. \item Les hauteurs exc\'edant deux <<~longueurs~>> (soit 90~m) peuvent poser des probl\`emes de dur\'ee, notamment en p\'eriode hivernale (journ\'ees courtes)~; ceci implique de pr\'evoir des possibilit\'es de <<~retraite~>> ou d'acc\`es \`a la partie sup\'erieure des voies, selon le cas. \end{itemize} \end{quote} \item Le site d'escalade doit \^etre \`a l'abri des {\sl dangers objectifs\/}, c'est-\`a-dire des chutes de pierres ou de s\'eracs, des \'eboulements, des avalanches, des l\^achers d'eau impr\'evisibles (gorges, bords de rivi\`eres) et des d\'echarges d\'elictueuses d'objets dangereux (gravats, ordures et voitures vol\'ees au-dessous des routes). \item La pratique de l'escalade ne doit pas -- du moins en permanence -- \^etre l'occasion de conflits d'usage des lieux avec d'autres int\'er\^ets <<~l‚gitimes\footnote{L\'egitimit\'e \`a \'evaluer en chaque cas, le cas \'ech\'eant par jugement ou d\'ecision des autorit\'es l\'egales.}~>>~: \begin{itemize} \item chasseurs~; \item esp\`eces animales -- notamment oiseaux -- prot\'eg\'es ou en voie de disparition, esp\`eces v\'eg\'etales rares~; \item nuisance inacceptable aux riverains du site~; \item d\'eparts de voies trop pr\`es des routes~; \item autres contraintes de d\'efense de l'environnement, notamment d'esth\'etique dans le cas de {\sl sites class\'es\/}~; \item absence d'autorisation -- au moins tacite -- du propri\'etaire des lieux. \end{itemize} \end{itemize} \section{Les h\'ebergements} L'h\'ebergement ou le camping des grimpeurs ne fait pas directement partie de la qualit\'e d'un site d'escalade. Toutefois, l'impossibilit\'e de se loger ou de camper \`a faible distance\footnote{Sachant que les p\'eriodes o\`u l'on grimpe ne co\"\i{}ncident pas forc\'ement avec la <<~saison touristique~>> o\`u les campings et les g\^\i{}tes sont ouverts.} peut \^etre un s\'erieux inconv\'enient pr\'ejudiciable \`a la qualit\'e globale d'un site. \medskip\noindent Ici medskip/noindent. R\'esoudre ces probl\`emes d'h\'ebergement fait donc partie de la responsabilit\'e des am\'enageurs, et l'information correspondante {\sl doit figurer\/} dans les topos-guides. \section{Les acc\`es au site} \subsection{Les modalit\'es d'acc\`es doivent \^etre acceptables par toutes les parties} \begin{itemize} \item Le chemin d'acc\`es ne doit emprunter que des chemins publics ou autoris\'es par les propri\'etaires. Si cette autorisation n'est que tacite, il faut disposer d'itin\'eraires de rechange au cas o\`u le propri\'etaire changerait d'avis\footnote{Notamment en cas de vente ou d'h\'eritage.}. \item Le point de d\'epart de la partie p\'edestre de l'acc\`es doit comporter des possibilit\'es de stationnement en rapport avec la fr\'equentation attendue, en des lieux ne g\^enant pas les autres usagers des lieux (circulation automobile, troupeaux, engins agricoles, terres cultiv\'ees, etc.). Si ce stationnement n'est pas localis\'e de mani\`ere <<~\'evidente~>>, il doit \^etre clairement balis\'e. \item En accord avec les autorit\'es locales, des dispositions doivent \^etre prises, ou des dispositifs install\'es pour emp\^echer le {\sl stationnement g\^enant\/} et la circulation des v\'ehicules (y compris 4$\times$4) sur les chemins et routes non autoris\'es. \end{itemize} \subsection{Les acc\`es ne doivent pas \^etre dangereux} \begin{itemize} \item L'acc\`es peut \^etre long, mais il ne doit pas pr\'esenter de dangers objectifs (gu\'es al\'eatoires, risques d'avalanches, travers\'ees de routes \`a grande circulation). \item Aux p\'eriodes normales d'utilisation pour l'escalade, l'itin\'eraire d'acc\`es ne doit pas n\'ecessiter d'autres techniques que celles de la randonn\'ee ou de l'escalade facile. En particulier les techniques alpines de neige ou de terrain instables sont \`a exclure, ainsi que la marche sur glacier. \item Si la cr\'eation de l'acc\`es a n\'ecessit\'e de couper des arbustes, ceux-ci doivent \^etre coup\'es suffisamment ras pour \'eviter que le public se blesse gravement en cas de chute. \item L'itin\'eraire d'acc\`es peut n\'ecessiter de franchir quelques pas d'escalade, \`a condition que leur difficult\'e soit mod\'er\'ee (acc\`es des secours ou de public accompagnant les grimpeurs) et qu'ils ne soient pas {\sl dangereux\/}. Si n\'ecessaire -- et sous r\'eserve de respect de l'environnement -- un \'equipement sp\'ecifique (c\^ables, \'echelles, cordes ou cha\^\i{}nes fixes) peut faciliter l'acc\`es du public. \end{itemize} \section{Signalisation} \begin{itemize} \item S'il n'est pas \'evident (acc\`es \`a vue depuis le bord de route), l'acc\`es au site doit \^etre balis\'e pour \'eviter les acc\`es multiples et <<~sauvages~>>. Souvent, un petit panneau indicateur peut diriger les visiteurs vers un sentier \'evident... une fois trouv\'e le d\'epart. \item Si un panneau plus important est install\'e, il doit proposer les informations suivantes~: \begin{itemize} \item le nom de la ou des communes~; \item le nom et les coordonn\'ees des associations prenant en charge le site et son \'equipement~; \item les possibilit\'es d'appel des secours~: num\'eros de t\'el\'ephone et situation de la cabine t\'el\'ephonique la plus proche. \end{itemize} \item Les panneaux et la signalisation doivent repr\'esenter un bon compromis entre la visibilit\'e et la discr\'etion. \item Que ce soit par un {\sl num\'ero\/} renvoyant au topo-guide, que ce soit par l'indication peinte (caract\`eres n'exc\'edant jamais 40~mm de haut) ou par d'autres m\'ethodes efficaces mais discr\`etes, la localisation des d\'eparts de voies doit se faire sans ambiguit\'e, y compris pour les grimpeurs qui y viennent pour la premi\`ere fois. \end{itemize} \section{Secours} S'il n'est pas question d'amener une route au pied et au sommet de chaque rocher d'escalade, ni d'y installer des aires d'atterrisage d'h\'elicopt\`ere, le sauvetage des accident\'es pr\'evisibles doit \^etre organis\'e. \begin{itemize} \item Mise au courant -- et le cas \'ech\'eant formation -- des services locaux de s\'ecurit\'e (pompiers, gendarmerie, PGHM, etc.). \item Indication (panneaux ou topo-guides) de l'emplacement des cabines t\'el\'ephoniques les plus proches, avec {\sl rappel du num\'ero d'appel\/} des services de secours. \end{itemize} \section{\'Equipement pour l'escalade} \subsection{Nettoyage g\'en\'eral} Sachant que les grimpeurs passent plus de la moiti\'e de leur temps au pied des voies, que ce soit pour assurer un coll\`egue, pour examiner la documentation ou chercher l'itin\'eraire de leur choix, la zone situ\'ee au pied des rochers d'escalade doit \^etre particuli\`erement prot\'eg\'ee des chutes de pierres. Ceci implique non seulement un nettoyage des voies proprement dites, mais aussi la purge de tout rocher susceptible de tomber sous l'effet du vent, du gel ou d'une fr\'equentation accidentelle du secteur. Ceci implique aussi la purge de pentes d'\'eboulis situ\'ees au-dessus des zones d'escalade et -- le cas \'ech\'eant -- d'en interdire l'acc\`es. \subsection{Circulation au pied des rochers} \begin{itemize} \item Le sentier permettant d'acc\'eder aux voies doit \^etre tel que la circulation des uns ne perturbe pas l'assurage des grimpeurs d\'ej\`a engag\'es dans des voies. \item Si le site est susceptible d'\^etre fr\'equent\'e par des groupes, ceux-ci doivent disposer de zones de repos ou de stationnement hors des zones de d\'epart de voies ou d'assurage. \end{itemize} \subsection{Nettoyage des voies} \begin{itemize} \item\'elimination des blocs susceptibles de tomber spontan\'ement ou quand on les touche, f\^ut-ce par erreur~; \item\'elimination de la v\'eg\'etation {\sl g\^enante\/} pour l'escalade ou la s\'ecurit\'e\footnote{Ce qui ne signifie pas d'\'eliminer {\sl toute\/} v\'eg\'etation de la paroi. Tout ceci est une affaire de mesure et de bon sens.}~; \item bris pr\'eventif ou \'elimination de prises susceptibles de rompre sous l'effort d'un grimpeur lourd ou <<~muscl\'e~>>~; \item\'elimination de la terre aux endroits o\`u les grimpeurs sont susceptibles de mettre leurs pieds, leurs mains ou... leur post\'erieur~; \item les souches restantes et les moignons de branches coup\'ees ne doivent pas pr\'esenter de danger pour les grimpeurs en cas de chute. \end{itemize} \subsection{Choix des voies propos\'ees} Un site sportif peut s'adresser pr\'ef\'erentiellement aux grimpeurs de haut niveau, aux grimpeurs <<~moyens~>> ou au d\'ebutants. Quel que soit ce choix, il n'ob\`ere pas la qualit\'e du site. En revanche, dans la gamme de difficult\'es choisie, il est souhaitable d'offrir divers types d'escalade, c'est-\`a-dire pas uniquement des dalles, des di\`edres ou des surplombs. D'autre part, malgr\'e la mode diffus\'ee par des grimpeurs excessivement sp\'ecialis\'es dans les courtes voies <<~dures~>>, il convient de garder \`a l'esprit que les voies de plusieurs longueurs\footnote{De difficult\'es relativement homog\`enes...} restent appr\'eci\'ees d'un grand nombre d'escaladeurs. Aussi -- et sous r\'eserve des probl\`emes de s\'ecurit\'e -- est-il souhaitable d'exploiter toute la hauteur de falaises mesurant plus de 40~m\`etres. \subsection{Les points d'assurage} \subsubsection{Les performances requises} Texte de v\'erification de la police. \begin{itemize} \item Leur r\'esistance dans la direction (approximativement) verticale doit {\sl imp\'erativement\/} \^etre de 2500~daN (2,5 tonnes). Il va sans dire que cette r\'esistance requise est celle de l'ensemble [rocher + scellement + pi\`ece m\'etallique] et qu'il ne suffit pas de mettre une plaquette garantie \`a 2500~daN sur un scellement insuffisant, d\'efectueux ou inadapt\'e \`a la r\'esistance m\'ecanique de la roche. Ceci signifie que le choix du type d'amarrage doit dans tous les cas se faire en fonction de la nature de la roche et que des scellements valables par exemple dans du b\'eton <<~normalis\'e~>> ne sont pas forc\'ement acceptables dans certaines roches tendres. \item Dans les directions autres que celle de la chute\footnote{Compte tenu des \'eventuels <<~renvois~>>.} la r\'esistance des points d'assurage peut \^etre un peu plus faible. Elle ne saurait toutefois descendre au-dessous de 1500~daN. \item Le mat\'eriau doit \^etre naturellement r\'esistant \`a la corrosion, ou bien efficacement prot\'eg\'e contre la corrosion par un traitement de surface\footnote{Cf. Norme UIAA.}. Ce mat\'eriau peut \^etre un acier {\sl inox\/} de qualit\'e suffisante ou un acier galvanis\'e ou cadmi\'e~; en revanche une simple <<~peinture~>> est insuffisante. Le niveau de protection requis contre la corrosion d\'epend des lieux~: une protection suffisante pour un site ensoleill\'e et sec sera sans doute inad\'equate en bord de mer ou dans une zone d'industries chimiques polluantes. \item Les parties \'emergentes -- notamment les <<~plaquettes d'assurage~>> -- ne doivent pas pr\'esenter d'angles dangereux et celles distantes de plus de 12~mm du rocher doivent respecter les Normes UIAA, c'est-\`a-dire pr\'esenter au moins un rayon de courbure de plus de 10~mm. \end{itemize} \subsubsection{Les techniques et technologies \`a proscrire}\label{proscrire}Label"proscrire". Il n'est pas possible, dans une <<~charte de qualit\'e~>> de donner une liste\footnote{Mise \`a jour r\'eguli\`erement par la FFME et l'ENSA.} exhaustive -- donc limitative -- des technologies correspondant aux performances requises ci-dessus. En revanche, on peut passer en revue un certain nombre de techniques malheureusement trop fr\'equentes et qui sont \`a exclure des sites sportifs d'escalade pr\'etendant \`a offrir un \'equipement de qualit\'e~: \begin{itemize} \item les scellements par expansion ne doivent pas r\'ealiser cette expansion en prenant appui sur le fond du forage\footnote{Cf. Norme UIAA.}. Ceci exclut d\'efinitivement les {\sl chevilles autoforeuses\/}\footnote{D'autant plus qu'elles se r\'ev\`elent irr\'ecup\'erables lors d'une r\'enovation ou d'une suppression de l'\'equipement.}, quel que soit leur diam\`etre. \item les pitons <<~classiques~>>, rarement correctement prot\'eg\'es contre la corrosion, et dont la solidit\'e d\'ej\`a faible d\'epend en plus de l'\'evolution de la fissure o\`u ils sont plant\'es, sous l'effet du gel ou des mouvements de terrain. \item les plaquettes destin\'ees \`a la sp\'el\'eologie et, d'une mani\`ere g\'en\'erale, toutes les plaquettes dont la r\'esistance affich\'ee est soit insuffisante, soit inexistante. \item les goujons \`a auto-expansion de diam\`etre inf\'erieur \`a 12~mm. \item les r\'esines polyester pour les scellements chimiques (mauvais collage sur m\'etal et mauvaise r\'esistance \`a l'humidit\'e). \item le scellement de pi\`eces lisses (notamment inox) \`a la r\'esine {\sl\'epoxyacrylique\/}\footnote{Notamment C100 de Hilti.}. \end{itemize} \subsubsection{La localisation des points d'assurage} Du fait de l'extr\^eme vari\'et\'e des configurations et des << client\`eles~>> de grimpeurs, il n'existe pas de {\sl norme\/} d'espacement des points d'assurage. Toutefois la FFME appelle\footnote{{\sl\'Equipement et am\'enagement d'un site naturel d'escalade\/}, COSIROC/FFME, mise-\`a-jour continuelle.} <<~protection normale~>> la situation ou l'{\sl espacement des points d'assurage est compris entre 2,5 et 5 m\`etres ET o\`u il n'y a pas de chute vraisemblable\footnote{Y compris par possible retour au sol apr\`es avoir mousquetonn\'e plusieurs points d'assurage...} de plus de 4 m\`etres (pas plus de 1,5 m\`etre si chute au sol ou sur une vire plane)\/}. Aussi, dans le cas o\`u l'\'equipement est plus <<~engag\'e~>> ou << expos\'e~>> toutes dispositions doivent \^etres prises, notamment dans la r\'edaction du topo-guide, pour que les escaladeurs ne s'engagent dans de telles voies qu'en {\sl parfaite connaissance de cause\/}. \subsection{Les relais} Ils doivent offrir au moins {\sl deux\/} ancrages r\'esistant \`a 2500~daN. Compte tenu des multiples renvois de forces, cette r\'esistance est requise {\sl dans toutes les directions\/}. Les exigences de forme et de r\'esistance \`a la corrosion sont les m\^emes que pour les points d'assurage ordinaires. D'autre part, ces ancrages doivent permettre l'ancrage direct et simultan\'e -- avec les r\'esistances ci-dessus -- d'au moins {\sl quatre\/} mousquetons de taille normale. Si les ancrages multiples d'un relais sont reli\'es par une cha\^\i{}ne, celle-ci doit non seulement avoir une r\'esistance d'au moins 2000~daN, mais sa configuration doit {\sl inciter\/} les escaladeurs \`a s'amarrer aux ancrages directs plut\^ot qu'\`a la cha\^\i{}ne, et surtout \`a ne jamais passer une corde {\sl autour\/} de la cha\^\i{}ne. Les exclusions relatives aux points d'assurage (voir paragraphe \ref{proscrire}, p. \pageref{proscrire}) sont {\sl a fortiori\/} valables pour les relais. \subsection{Les points de rappel et de <<~moulinette~>>} S'ils sont en milieu de paroi et susceptibles d'\^etre confondus avec des ancrages de relais pour d'autres voies, existantes, futures ou envisageables, ils doivent \^etre am\'enag\'es {\sl comme des relais\/}. Un ou plusieurs maillons rapides\footnote{Ferm\'es, pour r\'esister \`a un choc \'eventuel.} peuvent \^etre ajout\'es pour faciliter rappel ou moulinette. S'ils sont en sommet de paroi\footnote{Sommet topographique et non sommet de la zone d'usage actuel.} ils peuvent \^etre \'equip\'es de dispositifs permettant l'installation d'une moulinette sans se d\'ecorder. La r\'esistance requise pour ces dispositifs est du m\^eme ordre que pour les mousquetons lorsque le doigt est ouvert, c'est-\`a-dire 700~daN au minimum. Ils doivent en outre \^etre en mat\'eriau r\'esistant \`a l'usure par les cordes et les particules solides qu'elles entra\^\i{}nent usuellement~; ils ne doivent donc jamais \^etre constitu\'es d'{\sl alliage l\'eger\/} et ils doivent d'autre part faire l'objet d'inspections p\'eriodiques\footnote{Tous les trois mois dans les zones \`a forte fr\'equentation.}.(voir \S\ref{historique}, p. \pageref{historique}) \section{Maintenance} Elle doit \^etre assur\'ee r\'eguli\`erement~: \begin{itemize} \item pour remplacer les ancrages corrod\'es ou us\'es, \item pour purger -- notamment \`a chaque printemps -- les blocs et prises devenues instables du fait des \'el\'ements atmosph\'eriques, \item pour \'eliminer la v\'eg\'etation g\^enante. \end{itemize} Ceci suppose en pratique que cette maintenance soit confi\'ee \`a une groupe stable de personnes, facilement joignables si une grave anomalie est constat\'ee. \end{document} latex2rtf-2.3.18/test/fonttest.tex0000777000175000017500000000127113050672360017275 0ustar wilfriedwilfried\documentclass{article} \parindent=0pt \begin{document} \textbf{Examples with no Special Fonts or unicode} Equation that does not use fields in RTF: $A = B$ Equation that uses fields in RTF: $A_2 = B$ \textbf{Symbol} Equation that does not generate fields in RTF: $A\equiv B$ Equation that uses fields in RTF: $A_2 \equiv B$ \textbf{MT Extra font} Equation that uses MT Extra, unicode, and no fields: $A = \ddots$ Equation that uses MT Extra, no unicode, and no fields: $A = \ddots$ \textbf{MT Extra problems: Click on equations} Equation that uses MT Extra, unicode, and fields: $A_2 = \ddots$ Equation that uses MT Extra, no unicode, and fields: $A_2 = \ddots$ \end{document} latex2rtf-2.3.18/test/babel_spanish.tex0000777000175000017500000003415513050672357020236 0ustar wilfriedwilfried%% LyX 1.1 created this file. For more info, see http://www.lyx.org/. %% Do not edit unless you really know what you are doing. \documentclass{article} \usepackage[spanish]{babel} \usepackage[T1]{fontenc} \usepackage[latin1]{inputenc} \usepackage{graphicx} \setlength\parskip{\medskipamount} \setlength\parindent{0pt} \makeatletter %%%%%%%%%%%%%%%%%%%%%%%%%%%%%% LyX specific LaTeX commands. \providecommand{\LyX}{L\kern-.1667em\lower.25em\hbox{Y}\kern-.125emX\@} \addto\extrasspanish{\bbl@deactivate{~}} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%% User specified LaTeX commands. \usepackage{hyperlatex} \htmltitle{Jorge Leon} \htmladdress{\xlink{Georg Lehner}{mailto:Jorge.Lehner@gmx.net} - \xlink{homepage}{/\~{}jorge}} \htmldirectory{html} \htmlname{dns_intro} \makeatother \begin{document} \title{Domain Name Service} \date{24 de Febrero del 2002} \author{Georg Lehner} \maketitle \abstract{ El servicio primario para el funcionamiento de INTERNET es el Domain Name Service. Este documento resume de forma breve su funcionamiento y da algunas referencias a otra información } \section{Qué es DNS} Cada computadora conectada a Internet tiene (al menos) un número de identificación asociado: su \emph{número IP}. En todo Internet no se repite un número en diferentes computadoras. Cada computadora tiene (generalmente) un nombre. Grupos de computadoras están organizados en \emph{dominios} lo que permite que diferentes computadora tengan el mismo nombre, siempre y cuando se encuentran en diferentes dominios. El nombre calificado \emph{(fully qualified domain name~--~fqdn}) \emph{}de una computadora es la concatenación del nombre con el dominio, mediante un punto '.' de separación, ejemplo: puma.felinos.net = computadora puma, dominio felinos.net Existe una base de datos distribuida en Internet, de la cual se puede obtener el número IP de una computadora de la cual se conoce el fqdn mediante un \emph{query}; este tipo de query se llama \emph{forward resolution} (resolución de nombre directo). Teniendo un número IP se puede obtener el fqdn de la computadora correspondiente mediante un \emph{reverse query} (resolución inversa). Es responsabilidad de la administración de un dominio proveer este servicio de resolución de nombres para las computadoras conectados. Esto involucra dos tareas: instalación de servidores de nombres y actualización constante de los registros de nombres en el dominio administrado. Una buena administración del DNS puede hacer más fiable y eficiente el funcionamiento del dominio. Muchas veces esto también involucra tareas de configuración de las computadoras clientes del dominio. \section{Una base de datos distribuida} En el dibujo \ref{domain_fig} apreciamos la vista a dos dominios (ficticios) de Internet. Cada computadora tiene un nombre y un número IP asignado. Por más conveniencia, todas las computadoras en una red física utilizan números de un grupo común: 12.206.3.{[}0\ldots{}255{]} corresponde al dominio felinos.net, 97.3.3.{[}0\ldots{}255{]} a mujeres.org, y por ende 198.27.37.{[}0\ldots{}255{]} a ispex.com. \begin{figure} \label{domain_fig}\resizebox*{0.8\textwidth}{!}{Some missing figure} \end{figure} En la figura \ref{dns_fig} observamos de forma esquemática la agrupación de la información sobre un dominio en una tabla, manejado por una computadora, el servidor DNS. \begin{figure} \label{dns_fig}\resizebox*{0.8\textwidth}{!}{Some other missing figure} \end{figure} En vez de crear una tabla completa de todos los números de todas las computadoras que podrían estar conectados a Internet y manejar esta tabla inmensa en todas las computadoras se manejan tablas de los {}``vecinos cercanos'', que de todas formas se requieren más frecuentemente. Para obtener la información sobre computadoras remotas se establece un sistema de búsqueda jerárquica explicados más adelante. El número de computadoras en un dominio puede ser grande, y con ello la frecuencia de consultas que se hacen al servidor de base de datos que maneja la tabla para el dominio. Esto puede causar un retraso significativo en el acceso a la red. Para aliviar esta situación, se maneja la información sobre nombres y números IP en uno o varios cachés. El caché realiza la búsqueda correspondiente a una consulta hecha por un cliente y entrega el resultado, pero a la vez guarda el resultado localmente en memoria o en el disco duro. Si se repite la misma consulta ya no se realiza una búsqueda en las tablas {}``oficiales'', sino se entrega el resultado guardado. El problema de un caché es, que su información puede hacerse obsoleta: una computadora puede desaparecer, cambiar su nombre o su número IP. Por esto cada resultado grabado contiene un tiempo de expiración (TTL - Time To Live), después del cual está descartado de la memoria del caché, una subsiguiente consulta del dato resulta en una búsqueda en los Servidores DNS y por lo tanto (ojalá) en una respuesta auténtica. El programa caché puede ser instalado en todas las computadoras (óptimo), o puede instalarse solo en alguna(s), las cuales entonces sirven dentro de un dominio como la fuente de información DNS: son los servidores de nombre del dominio, o \emph{nameserver}. \subsection{Jerarquía de la base de datos distribuida} Una serie de servidores root (por redundancia no es solo uno) manejan \emph{delegaciones} de dominios, que son listas de cuales Servidores DNS manejan cual dominio. Estos Servidores pueden delegar a su vez la resolución de nombres de sub-dominios a Servidores DNS subordinados. \begin{figure} \resizebox*{0.8\textwidth}{!}{Another missing figure} \label{root_server} \end{figure} En la figura \ref{root_server} solamente se muestra la delegación de un (1) servidor raíz (root server) en la parte izquierda arriba, todas las flechas sólidas que indican la delegación a los dominios primarios, tienen que duplicarse en cada uno de los servidores raíz (puntos negros conectados con una línea punteada). Se puede apreciar entonces, que el tiempo de respuesta del DNS se mejora, ya que cualquier consulta a los servidores root en promedio toma la vía de acceso media en la red global. Regresando a la imagen \ref{dns_fig} podemos ver dos vías que caracterizan el sistema DNS: La distribución jerárquica de los servidores DNS que garantiza (teóricamente) que todos los datos pueden ser encontrados, aunque recursivamente (líneas punteadas), y la jerarquía de búsqueda de los nameserver (cachés), que forman {}``ventanas restringidas'' pero adaptables a la base de datos completa (líneas sólidas). Los cachés son cercanos a la computadora cliente, y pueden ascender de un caché al siguiente hacia {}``arriba''. Si encuentran la respuesta en algún caché superior en el camino, no necesitan recurrir al servidor root. \section{Escenarios comunes} La práctica común en Internet es configuración minimista, deficiente y arcaica, por lo que muchos administradores no están en conocimiento de la práctica óptima (best practice). Software popular de clientes y servidores DNS se adapta a las prácticas deficientes y dificulta así el uso eficiente y la divulgación de la práctica óptima. Estoy tratando de resumir en esta sección \emph{best} \emph{practice} para algunos casos comunes (NO para todas las situaciones), lo que no concuerda necesariamente con la experiencia de lectores experimentados en Internet. En corto: Lo presentado es solo mi punto de vista, nada mas. Términos usados: \begin{description} \item [Caché~local]un programa que consulta la base de datos DNS a solicitud de un programa cliente en la computadora local, le retorna el resultado requerido o una respuesta negativa, y memoriza la respuesta durante un cierto tiempo para acelerar futuros queries sobre la misma computadora \item [Caché~externo]realiza la misma función como un caché local, pero también acepta queries de programas clientes en computadoras remotas. \item [Servidor~DNS]un programa que maneja una parte de la base de datos DNS y que acepta queries de clientes locales o remotos, pero solo contesta queries para los cuales tiene un registro disponible. \item [Servidor~DNS~local]solo acepta queries desde la computadora local, normalmente desde un cache local o externo. \item [Servidor~DNS~externo]acepta queries desde computadoras remotas. \item [LAN/Red~privada]una red, en la cual se utilizan números IP reservados para crear dominios en redes aislados. Estos números no se utilizan en Internet, y pueden re-utilizarse en diferentes redes físicas. Estas redes y los números IP se denominan \emph{redes} \emph{privadas}. \end{description} \subsection{Configuración de computadora cliente} \begin{description} \item [Sistemas~Operativos~Unix]configurar un caché local \item [Otros]utilizan cachés externos (remotos) \end{description} En ambos casos se configura uno o más números de cachés o servidores remotos (\emph{nameserver}) a los cuales se envían queries. En muchos sistemas Unix es común seguir también la segunda práctica. \subsection{LAN sin conexión externa} \label{LAN_sin_conext} Configuración de un servidor DNS externo en una o mas computadoras en la LAN. Opcional: Configuración de uno o varios servidores DNS locales y en la misma computadora un cache externo, que envía sus queries al servidor local y a los otros caches externos. \subsection{LAN con conexión externa} Es como la configuración opcional en \ref{LAN_sin_conext}. Los cachés externos además de enviar queries a los servidores de la LAN envían queries a cachés externos. Este escenario en muchos casos es reducido de tal forma, que todos los clientes locales de la LAN utilizan uno o varios cachés externos. \subsection{Dominio público} \label{dominio_publico} Configuración de uno o varios servidores DNS externos. Estos son consultados por cachés de dominios remotos sobre registros del dominio. Configuración de uno o varios caches externos, estos son consultados por computadoras del mismo dominio. \subsection{Dominio público asegurado} La práctica común es, seccionar el dominio en una parte con contacto directo al Internet, incluyendo un gateway (pasarela) que contacta con una parte {}``interna'' del dominio. El gateway restringe el acceso de computadoras de dominios remotos a las computadoras {}``internas'' realizando así la función de un \emph{firewall}. La configuración del DNS es idéntico a \ref{dominio_publico}, con la salvedad que los servidores y uno o más cachés externos están detrás del firewall en la parte {}``interna''. El firewall permite a todos los clientes, internos o del Internet remoto acceso a los cachés externos. \section{Redundancia} Hay básicamente dos razones por los cuales se introducen servidores de bases de datos redundantes: \begin{itemize} \item Si uno de ellos falla, uno de los servidores redundantes puede asumir el servicio y \item Se puede distribuir la carga de solicitudes a dos o más servidores y de esta manera acelerar el acceso de los clientes a la información requerida. \end{itemize} La parte negativa de la redundancia es, que hay que mantener copias idénticas de la información en todo servidor redundante. Este corresponde a mayor trabajo administrativo y riesgo adicional de fallas. La mejor práctica es, utilizar un mecanismo automatizado para la actualiqzación de un dominio, e incluir en este la duplicación de los datos en los servidores secundarios con cada cambio realizado. La transferencia de los archivos necesarios debe hacerse con un programa que no permite la modificación involuntaria de su contenido - ejemplo: ssh. Para minimizar la cantidad de información transferida se puede usar un programa de compresión y/o transferencia diferential, ejemplo: rsync. En una sola frase: rsync bajo ssh es actualmente la mejor forma de actualizar datos remotos de manera confiable. Tradicionalmente se realiza esta duplicación mediante {}``transferencias de zonas'' (zone transfer) a través de un protocolo que es parte del sistema DNS. Este protocolo no es eficiente ni confiable. \section{BIND, djbdns y otro(s)} El programa {}``oficial'' para el servicio DNS en Internet es BIND - Berkeley Internet Name Daemon. BIND combina la función de servidor y caché en un solo programa. En toda la historia de su desarrollo se han visto problemas de seguridad y problemas de fiabilidad. Dan Bernstein es el autor del paquete de programas djbdns, que son optimizados en seguridad, velocidad y fiabilidad. djbdns separa las tareas de servidor DNS y caché (nameserver) en diferentes programas. La configuración de djbdns es completamente diferente a la de BIND y requiere aprendizaje desde cero, una desventaja para administradores que conocen este primer programa bien. Existe por lo menos otra alternativa: maradns que provee también un servidor DNS diseńado para seguridad. \section{Referencias} Existe una gran cantidad de literatura en papel y en forma electrónica sobre DNS. Para la documentación oficial de BIND recomiendo visitar las páginas Web de los servidores sam.uni.edu.ni, magma.com.ni, loghog.uni.edu.ni y visitar el directorio doc/bind-doc. La página Web de Daniel Bernstein, que tiene una excelente y compacta discusión de \xlink{DNS, BIND y sus problemas se encuentra en }{http://cr.yp.to/djbdns.html} junto con mucha otra información valiosa. \xlink{Linux-Howtos}{http://www.linuxdoc.org/HOWTO/DNS-HOWTO.html} (también en los servidores arriba mencionados en doc/HOWTO/) \xlink{http://axs.org/\~{}cp/DNS.html}{http://axs.org/\~{}cp/DNS.html} \xlink{http://www.dns.net/dnsrd/docs/ }{http://www.dns.net/dnsrd/docs/} \xlink{http://www.psionic.com/}{http://www.psionic.com/} \section{Copias y Legalidades} Georg Lehner mantiene los derechos de autor de este documento, bajo la Licencia Publica de Documentación. Cabe seńalar, que prácticamente toda la información brindada aquí es extraída de fuentes externos, como los creadores de Internet y las personas que lo siguen desarrollando. Newton decía {}``Si veo lejos es, porque estoy sentado en los hombros de gigantes. El documento fue elaborado durante una asesoría para la Universidad Nacional de Ingeniería y el proyecto ICT financiado por SIDA - Suecia, y forma parte de la documentación elaborado a fin de proveer información y formación básica a todo el equipo de trabajo y al grupo meta involucrado. Puede bajarlo en formato \xlink{PDF (Acrobat) aquí}{dns_intro.pdf}, o en formato html empacado en \xlink{un archivo zip}{dns_intro.zip}. \end{document} latex2rtf-2.3.18/test/direct.tex0000777000175000017500000003724213050672355016714 0ustar wilfriedwilfried\documentclass{article} \usepackage[T1]{fontenc} \usepackage[english]{babel} \usepackage{amsmath} \usepackage{amssymb} %\usepackage{textcomp} %\usepackage{tipa} \begin{document} AA \AA{} aa \aa{} AE \AE{} ae \ae{} aleph \aleph{} Alpha \Alpha{} alpha \alpha{} amalg \amalg{} angle \angle{} approx \approx{} approxeq \approxeq{} arccos \arccos{} arcsin \arcsin{} arctan \arctan{} arg \arg{} ast \ast{} asymp \asymp{} backepsilon \backepsilon{} backprime \backprime{} backsim \backsim{} backsimeq \backsimeq{} backslash \backslash{} barwedge \barwedge{} because \because{} beta \beta{} Beta \Beta{} beth \beth{} between \between{} bigcap \bigcap{} bigcirc \bigcirc{} bigcup \bigcup{} bigodot \bigodot{} bigoplus \bigoplus{} bigotimes \bigotimes{} bigskip \bigskip{} bigsqcup \bigsqcup{} bigstar \bigstar{} bigtriangledown \bigtriangledown{} bigtriangleup \bigtriangleup{} biguplus \biguplus{} bigvee \bigvee{} bigwedge \bigwedge{} blackcircle \blackcircle{} blacksquare \blacksquare{} blacktriangle \blacktriangle{} blacktriangledown \blacktriangledown{} blacktriangleleft \blacktriangleleft{} blacktriangleright \blacktriangleright{} bmod \bmod{} bot \bot{} bowtie \bowtie{} Box \Box{} boxdot \boxdot{} boxminus \boxminus{} boxplus \boxplus{} boxtimes \boxtimes{} bullet \bullet{} Bumpeq \Bumpeq{} bumpeq \bumpeq{} cap \cap{} Cap \Cap{} cdot \cdot{} cdots \cdots{} centerdot \centerdot{} Chi \Chi{} chi \chi{} circ \circ{} circeq \circeq{} circlearrowleft \circlearrowleft{} circlearrowright \circlearrowright{} circledS \circledS{} circledast \circledast{} circledcirc \circledcirc{} circleddash \circleddash{} clubsuit \clubsuit{} colon \colon{} Colon \Colon{} coloneq \coloneq{} complement \complement{} cong \cong{} coprod \coprod{} copyright \copyright{} cos \cos{} cosh \cosh{} cot \cot{} coth \coth{} csc \csc{} cup \cup{} Cup \Cup{} curlyeqprec \curlyeqprec{} curlyeqsucc \curlyeqsucc{} curlyvee \curlyvee{} curlywedge \curlywedge{} curvearrowleft \curvearrowleft{} curvearrowright \curvearrowright{} CYRBuki \CYRBuki{} CYRbuki \CYRbuki{} CYRdobro \CYRdobro{} CYRDsche \CYRDsche{} CYRFert \CYRFert{} CYRfert \CYRfert{} CYRGlagol \CYRGlagol{} CYRglagol \CYRglagol{} CYRIsche \CYRIsche{} CYRische \CYRische{} CYRJa \CYRJa{} CYRJerr \CYRJerr{} CYRjerr \CYRjerr{} CYRJerui \CYRJerui{} CYRjerui \CYRjerui{} CYRJher \CYRJher{} CYRjher \CYRjher{} CYRJu \CYRJu{} CYRju \CYRju{} CYRKako \CYRKako{} CYRkako \CYRkako{} CYRLjudi \CYRLjudi{} CYRljudi \CYRljudi{} CYRmuislette \CYRmuislette{} CYRnasch \CYRnasch{} CYRPakoy \CYRPakoy{} CYRpakoy \CYRpakoy{} CYRScha \CYRScha{} CYRscha \CYRscha{} CYRSchiwete \CYRSchiwete{} CYRschiwete \CYRschiwete{} CYRSchtscha \CYRSchtscha{} CYRschtscha \CYRschtscha{} CYRSemlja \CYRSemlja{} CYRsemlja \CYRsemlja{} CYRtjsche \CYRtjsche{} CYRTscherw \CYRTscherw{} CYRtscherw \CYRtscherw{} CYRtwerdo \CYRtwerdo{} CYRU \CYRU{} CYRwjedi \CYRwjedi{} CYRZelo \CYRZelo{} CYRzelo \CYRzelo{} CYRZui \CYRZui{} CYRzui \CYRzui{} dag \dag{} dagger \dagger{} daleth \daleth{} dashleftarrow \dashleftarrow{} dashrightarrow \dashrightarrow{} dashv \dashv{} ddag \ddag{} ddagger \ddagger{} ddddot \ddddot{} ddots \ddots{} deg \deg{} degree \degree{} degrees \degrees{} degres \degres{} Delta \Delta{} delta \delta{} det \det{} diagdown \diagdown{} diagup \diagup{} Diamond \Diamond{} diamond \diamond{} diamondsuit \diamondsuit{} digamma \digamma{} dim \dim{} div \div{} divideontimes \divideontimes{} dlcorn \dlcorn{} dlcorner \dlcorner{} doteq \doteq{} Doteq \Doteq{} doteqdot \doteqdot{} dotminus \dotminus{} dotplus \dotplus{} dots \dots{} doublecap \doublecap{} doublecup \doublecup{} Downarrow \Downarrow{} downarrow \downarrow{} downdownarrows \downdownarrows{} downharpoonleft \downharpoonleft{} downharpoonright \downharpoonright{} drcorn \drcorn{} drcorner \drcorner{} ell \ell{} emptyset \emptyset{} epsilon \epsilon{} eqcirc \eqcirc{} eqcolon \eqcolon{} eqsim \eqsim{} eqslantless \eqslantless{} equiv \equiv{} eta \eta{} eth \eth{} exists \exists{} exp \exp{} fallingdotseq \fallingdotseq{} Finv \Finv{} flat \flat{} forall \forall{} frown \frown{} Gamma \Gamma{} gamma \gamma{} gcd \gcd{} ge \ge{} geq \geq{} geqq \geqq{} geqslant \geqslant{} gets \gets{} gg \gg{} Gg \Gg{} ggg \ggg{} gggtr \gggtr{} gimel \gimel{} gneqq \gneqq{} gnsim \gnsim{} gtrdot \gtrdot{} gtreqless \gtreqless{} gtrless \gtrless{} gtrsim \gtrsim{} guillemotleft \guillemotleft{} guillemotright \guillemotright{} guilsinglleft \guilsinglleft{} guilsinglright \guilsinglright{} hbar \hbar{} heartsuit \heartsuit{} hom \hom{} hookleftarrow \hookleftarrow{} hookrightarrow \hookrightarrow{} hslash \hslash{} iff \iff{} iint \iint{} Im \Im{} imath \imath{} in \in{} inf \inf{} infty \infty{} int \int{} intercal \intercal{} iota \iota{} jmath \jmath{} Join \Join{} kappa \kappa{} ker \ker{} L \L{} l \l{} Lambda \Lambda{} lambda \lambda{} land \land{} langle \langle{} lbrack \lbrack{} lbrace \lbrace{} lceil \lceil{} le \le{} leadsto \leadsto{} Leftarrow \Leftarrow{} leftarrow \leftarrow{} leftarrowtail \leftarrowtail{} leftarrowtail \leftarrowtail{} leftharpoondown \leftharpoondown{} leftharpoonup \leftharpoonup{} leftleftarrows \leftleftarrows{} Leftrightarrow \Leftrightarrow{} leftrightarrow \leftrightarrow{} leftrightarrows \leftrightarrows{} leftrightharpoons \leftrightharpoons{} leftrightsquigarrow \leftrightsquigarrow{} leftthreetimes \leftthreetimes{} leq \leq{} leqq \leqq{} leqslant \leqslant{} lessdot \lessdot{} lesseqgtr \lesseqgtr{} lessgtr \lessgtr{} lesssim \lesssim{} lfloor \lfloor{} lg \lg{} lhd \lhd{} lim \lim{} liminf \liminf{} limsup \limsup{} ll \ll{} Ll \Ll{} llcorn \llcorn{} llcorner \llcorner{} Lleftarrow \Lleftarrow{} lll \lll{} llless \llless{} ln \ln{} lneqq \lneqq{} lnot \lnot{} lnsim \lnsim{} log \log{} Longleftarrow \Longleftarrow{} longleftarrow \longleftarrow{} Longleftrightarrow \Longleftrightarrow{} longleftrightarrow \longleftrightarrow{} longmapsto \longmapsto{} Longrightarrow \Longrightarrow{} longrightarrow \longrightarrow{} looparrowleft \looparrowleft{} looparrowright \looparrowright{} lor \lor{} lozenge \lozenge{} lrcorn \lrcorn{} lrcorner \lrcorner{} Lsh \Lsh{} ltimes \ltimes{} maltese \maltese{} mapsto \mapsto{} max \max{} measuredangle \measuredangle{} medskip \medskip{} mho \mho{} mid \mid{} min \min{} minus \minus{} models \models{} mp \mp{} mu \mu{} multimap \multimap{} nabla \nabla{} napprox \napprox{} natural \natural{} ncong \ncong{} ne \ne{} nearrow \nearrow{} neg \neg{} neq \neq{} nequiv \nequiv{} newline \newline{} nexists \nexists{} ngeq \ngeq{} ngeqslant \ngeqslant{} ngtr \ngtr{} ni \ni{} nleftarrow \nleftarrow{} nLeftarrow \nLeftarrow{} nleftrightarrow \nleftrightarrow{} nLeftrightarrow \nLeftrightarrow{} nleq \nleq{} nleqslant \nleqslant{} nless \nless{} nmid \nmid{} notin \notin{} nparallel \nparallel{} nprec \nprec{} npreceq \npreceq{} nrightarrow \nrightarrow{} nRightarrow \nRightarrow{} nsim \nsim{} nsimeq \nsimeq{} nsubset \nsubset{} nsubseteq \nsubseteq{} nsucc \nsucc{} nsucceq \nsucceq{} nsupset \nsupset{} ntriangleleft \ntriangleleft{} ntrianglelefteq \ntrianglelefteq{} ntriangleright \ntriangleright{} ntrianglerighteq \ntrianglerighteq{} nu \nu{} nvdash \nvdash{} nvDash \nvDash{} nVdash \nVdash{} nVDash \nVDash{} nwarrow \nwarrow{} O \O{} o \o{} odot \odot{} OE \OE{} oe \oe{} oint \oint{} Omega \Omega{} omega \omega{} omicron \omicron{} ominus \ominus{} oplus \oplus{} oslash \oslash{} otimes \otimes{} owns \owns{} P \P{} parallel \parallel{} partial \partial{} perp \perp{} Phi \Phi{} phi \phi{} Pi \Pi{} pi \pi{} pitchfork \pitchfork{} pm \pm{} pounds \pounds{} Pr \Pr{} prec \prec{} preceq \preceq{} precnsim \precnsim{} precsim \precsim{} preccurlyeq \preccurlyeq{} prime \prime{} prod \prod{} propto \propto{} Psi \Psi{} psi \psi{} questeq \questeq{} quotedblbase \quotedblbase{} quotesinglbase \quotesinglbase{} rangle \rangle{} rbrack \rbrack{} rbrace \rbrace{} rceil \rceil{} Re \Re{} rfloor \rfloor{} rhd \rhd{} rho \rho{} Rightarrow \Rightarrow{} rightarrow \rightarrow{} rightarrowtail \rightarrowtail{} rightharpoondown \rightharpoondown{} rightharpoonup \rightharpoonup{} rightleftarrows \rightleftarrows{} rightleftharpoons \rightleftharpoons{} rightrightarrows \rightrightarrows{} rightthreetimes \rightthreetimes{} risingdotseq \risingdotseq{} Rrightarrow \Rrightarrow{} Rsh \Rsh{} rtimes \rtimes{} S \S{} searrow \searrow{} sec \sec{} setminus \setminus{} sharp \sharp{} shortmid \shortmid{} shortparallel \shortparallel{} Sigma \Sigma{} sigma \sigma{} sim \sim{} simeq \simeq{} sin \sin{} sinh \sinh{} slash \slash{} smallfrown \smallfrown{} smallsetminus \smallsetminus{} smallskip \smallskip{} smallsmile \smallsmile{} smile \smile{} spadesuit \spadesuit{} sphericalangle \sphericalangle{} sqcap \sqcap{} sqcup \sqcup{} sqsubset \sqsubset{} sqsubseteq \sqsubseteq{} sqsupset \sqsupset{} sqsupseteq \sqsupseteq{} square \square{} ss \ss{} star \star{} subset \subset{} Subset \Subset{} subseteq \subseteq{} subsetneq \subsetneq{} succ \succ{} succcurlyeq \succcurlyeq{} succeq \succeq{} succnsim \succnsim{} succsim \succsim{} sum \sum{} sup \sup{} supset \supset{} Supset \Supset{} supseteq \supseteq{} supsetneq \supsetneq{} surd \surd{} swarrow \swarrow{} tan \tan{} tanh \tanh{} tau \tau{} textalpha \textalpha{} textasciicircum \textasciicircum{} textasciitilde \textasciitilde{} textbackslash \textbackslash{} textbar \textbar{} textbeta \textbeta{} textbullet \textbullet{} textcent \textcent{} textchi \textchi{} textcompwordmark \textcompwordmark{} textcopyright \textcopyright{} textcurrency \textcurrency{} textdegree \textdegree{} textDelta \textDelta{} textdelta \textdelta{} textdiv \textdiv{} textellipsis \textellipsis{} textemdash \textemdash{} textendash \textendash{} textepsilon \textepsilon{} texteta \texteta{} texteuro \texteuro{} textexclamdown \textexclamdown{} textGamma \textGamma{} textgamma \textgamma{} textgreater \textgreater{} textIJlig \textIJlig{} textijlig \textijlig{} textiota \textiota{} textkappa \textkappa{} textLambda \textLambda{} textlambda \textlambda{} textless \textless{} textminus \textminus{} textmonetary \textmonetary{} textmu \textmu{} textmultiply \textmultiply{} textnu \textnu{} textOmega \textOmega{} textonesuperior \textonesuperior{} textordfeminine \textordfeminine{} textordmasculine \textordmasculine{} textparagraph \textparagraph{} textperiodcentered \textperiodcentered{} textperthousand \textperthousand{} textPhi \textPhi{} textPi \textPi{} textpi \textpi{} textpm \textpm{} textPsi \textPsi{} textpsi \textpsi{} textquestiondown \textquestiondown{} textquotedbl \textquotedbl{} textquotedblleft \textquotedblleft{} textquotedblright \textquotedblright{} textquoteleft \textquoteleft{} textquoteright \textquoteright{} textregistered \textregistered{} textsection \textsection{} textSigma \textSigma{} textsigma \textsigma{} texttau \texttau{} textTheta \textTheta{} textthreesuperior \textthreesuperior{} texttimes \texttimes{} texttrademark \texttrademark{} texttwosuperior \texttwosuperior{} textunderscore \textunderscore{} textvisiblespace \textvisiblespace{} textXi \textXi{} textzeta \textzeta{} times \times{} therefore \therefore{} Theta \Theta{} theta \theta{} to \to{} top \top{} triangle \triangle{} triangledown \triangledown{} triangleleft \triangleleft{} trianglelefteq \trianglelefteq{} triangleq \triangleq{} triangleright \triangleright{} trianglerighteq \trianglerighteq{} twoheadleftarrow \twoheadleftarrow{} twoheadrightarrow \twoheadrightarrow{} ulcorn \ulcorn{} ulcorner \ulcorner{} unlhd \unlhd{} unrhd \unrhd{} Uparrow \Uparrow{} uparrow \uparrow{} upharpoonleft \upharpoonleft{} upharpoonright \upharpoonright{} uplus \uplus{} updownarrow \updownarrow{} Updownarrow \Updownarrow{} Upsilon \Upsilon{} upsilon \upsilon{} upuparrows \upuparrows{} urcorn \urcorn{} urcorner \urcorner{} varepsilon \varepsilon{} varkappa \varkappa{} varnothing \varnothing{} varsigma \varsigma{} vartheta \vartheta{} varrho \varrho{} varphi \varphi{} varpi \varpi{} varpropto \varpropto{} vartriangle \vartriangle{} vartriangleleft \vartriangleleft{} vartriangleright \vartriangleright{} vdash \vdash{} vDash \vDash{} Vdash \Vdash{} vdots \vdots{} vee \vee{} veebar \veebar{} Vert \Vert{} vert \vert{} vfill \vfill{} Vvdash \Vvdash{} wedge \wedge{} wedgeq \wedgeq{} wp \wp{} wr \wr{} xi \xi{} Xi \Xi{} zeta \zeta{} | \|{} \end{document} latex2rtf-2.3.18/test/bib_natbib3.tex0000777000175000017500000001701413050672360017567 0ustar wilfriedwilfried\documentclass{article} \usepackage{natbib} \bibliographystyle{apalike} \parindent=0.0in \begin{document} \begin{table} \begin{center} \begin{tabular}{l} \verb#\citep{allen1995a}# \\ \citep{allen1995a} \\ (Allen and Carifio, 1995b)\\ \hline \verb#\citep[chap.~3]{allen1995a}# \\ \citep[chap.~3]{allen1995a} \\ (Allen and Carifio, 1995b, chap.~3)\\ \hline \verb#\citep[chap.~2]{chung2002}#\\ \citep[chap.~2]{chung2002} \\ (Chung and Worster, 2002, chap.~2)\\ \hline \verb#\citep[in][chap.~3]{allen1995a}# \\ \citep[in][chap.~3]{allen1995a} \\ (in Allen and Carifio, 1995b, chap.~3)\\ \hline \verb#\citep[in][]{allen1995a}# \\ \citep[in][]{allen1995a} \\ (in Allen and Carifio, 1995b)\\ \hline \verb#\citep[][chap.~3]{allen1995a}# \\ \citep[][chap.~3]{allen1995a} \\ (Allen and Carifio, 1995b, chap.~3)\\ \hline \verb#\citep[e.g.][chap.~2]{bustos1999}#\\ \citep[e.g.][chap.~2]{bustos1999} \\ (e.g. Bustos et al., 1999, chap. 2)\\ \hline \verb#\citep[e.g.][]{chung2002}#\\ \citep[e.g.][]{chung2002} \\ (e.g. Chung and Worster, 2002)\\ \end{tabular} \end{center} \caption{Citation \texttt{citep} entries with a single entry} \end{table} \begin{table} \begin{center} \begin{tabular}{l} \verb#\citep{allen1995a,allen1995b}# \\ \citep{allen1995a,allen1995b} \\ (Allen and Carifio, 1995b,a) \\ \hline \verb#\citep{allen1995a,allen1996}# \\ \citep{allen1995a,allen1996} \\ (Allen and Carifio, 1995b, 1996) \\ \hline \verb#\citep[e.g.][]{allen1995a,allen1996}# \\ \citep[e.g.][]{allen1995a,allen1996} \\ (e.g. Allen and Carifio, 1995b, 1996) \\ \hline \verb#\citep{hooper1986,ortony1988,russell1979}# \\ \citep{hooper1986,ortony1988,russell1979} \\ (Hooper, 1986; Ortony et al., 1988; Russell, 1979)\\ \hline \verb#\citep[e.g.][]{chung2002, biot1941}#\\ \citep[e.g.][]{chung2002, biot1941} \\ (e.g. Chung and Worster, 2002; Biot, 1941)\\ \hline \verb#\citep[e.g.][]{chung2002, biot1941}#\\ \citep[e.g.][]{chung2002, biot1941} \\ (e.g. Chung and Worster, 2002; Biot, 1941)\\ \hline \verb#\citep[e.g.][]{bustos1999, chung2002, biot1941}#\\ \citep[e.g.][]{bustos1999, chung2002, biot1941} \\ (e.g. Bustos et al., 1999; Chung and Worster, 2002; Biot, 1941)\\ \end{tabular} \end{center} \caption{Citation \texttt{citep} entries with a multiple entries} \end{table} \begin{table} \begin{center} \begin{tabular}{l} \verb#\citep[chap.~3]{allen1995a,allen1995b}# \\ \citep[chap.~3]{allen1995a,allen1995b} \\ (Allen and Carifio, 1995b,a, chap.~3) \\ \hline \verb#\citep[in][chap.~3]{allen1995a,hooper1986}# \\ \citep[in][chap.~3]{allen1995a,hooper1986} \\ (in Allen and Carifio, 1995b; Hooper, 1986, chap.~3)\\ \hline \verb#\citep[in][chap.~3]{allen1995a,allen1995b}# \\ \citep[in][chap.~3]{allen1995a,allen1995b} \\ (in Allen and Carifio, 1995b,a, chap.~3)\\ \end{tabular} \end{center} \caption{Citation \texttt{citep} entries that fail in latex2rtf. I don't think that these can be used too often...how many times do you want to refer to chapter three in two different sources? These probably will not get fixed because they are rarely used and are difficult to implement in a one-pass conversion engine.} \end{table} \begin{center} \begin{tabular}{l} %% Let's test one option on a book citation %% According to p. 7 of Daly's natbib guide, a single %% option is a post--note. 1.9.14 makes it a pre--note and omits comma \verb#\citet[chap.~5]{bustos1999}#\\ \citet[chap.~5]{bustos1999}\\ Bustos et al. (1999, chap. 5)\\ \hline %% Try the starred versions \verb#\citet*{chung2002, biot1941}#\\ \citet*{chung2002, biot1941}\\ Chung and Worster (2002); Biot (1941)\\ \hline \verb#\citep*{chung2002, biot1941}#\\ \citep*{chung2002, biot1941}\\ (Chung and Worster, 2002; Biot, 1941)\\ \end{tabular} \end{center} % added by DW Monday, October 4, 2004 \begin{table} \begin{center} \begin{tabular}{l} \verb#\citealt{allen1995a}# \\ \citealt{allen1995a} \\ Allen and Carifio 1995b\\ \hline \verb#\citealt[99]{allen1995a}# \\ \citealt[99]{allen1995a} \\ Allen and Carifio 1995b, 99\\ \hline \verb#\citealt[e.g.,][99]{allen1995a}# \\ \citealt[e.g.,][99]{allen1995a} \\ Allen and Carifio e.g., 1995b, 99\\ \hline \hline \verb#\citealp{allen1995a}# \\ \citealp{allen1995a} \\ Allen and Carifio, 1995b\\ \hline \verb#\citealp[99]{allen1995a}# \\ \citealp[99]{allen1995a} \\ Allen and Carifio, 1995b, 99\\ \hline \verb#\citealp[e.g.,][99]{allen1995a}# \\ \citealp[e.g.,][99]{allen1995a} \\ e.g., Allen and Carifio, 1995b, 99\\ \end{tabular} \end{center} \caption{Citation \texttt{citealt} entries} \end{table} %\bibliography{bib_natbib3.bib} \begin{thebibliography}{} \bibitem[Allen and Carifio(1995{\natexlab{a}})]{allen1995b} B.~D. Allen and J.~Carifio. \newblock The relationship between emotional states and solving complex mathematical problems. \newblock May 1995{\natexlab{a}}. \bibitem[Allen and Carifio(1995{\natexlab{b}})]{allen1995a} Bradford~D. Allen and Jim Carifio. \newblock A {M}ethodology for the {A}nalysis of {E}motion {E}xperiences during {M}athematical {P}roblem {S}olving. \newblock March 1995{\natexlab{b}}. \bibitem[Allen and Carifio(1996)]{allen1996} Bradford~D. Allen and Jim Carifio. \newblock Fake title for testing. \newblock March 1996. \bibitem[Biot, 1941]{biot1941} Biot, M.~A. (1941). \newblock General theory of three-dimensional consolidation. \newblock {\em Journal of Applied Physics}, 12:155--165. \bibitem[Bustos et~al., 1999]{bustos1999} Bustos, M.~C., Concha, F., B\"{u}rger, R., and Tory, E.~M. (1999). \newblock {\em Sedimentation and Thickening: Phenomenological Foundation and Mathematical Theory}, volume~8 of {\em Mathematical Modelling: Theory and Applications}. \newblock Kluwer Academic Publishers, Dordrecht. \bibitem[Chung and Worster, 2002]{chung2002} Chung, C.~A. and Worster, M.~G. (2002). \newblock Steady-state chimneys in a mushy layer. \newblock {\em Journal of Fluid Mechanics}, 455:387--411. \bibitem[Hooper(1986)]{hooper1986} J.~Hooper. \newblock {\em The 3-{P}ound {U}niverse}. \newblock Teacher, Inc, Los Angeles, 1986. \bibitem[Ortony et~al.(1988)Ortony, Clore, and Collins]{ortony1988} A.~Ortony, G.~Clore, and A.~Collins. \newblock {\em The {C}ognitive {S}tructure of {E}motions}. \newblock Cambridge University Press, New York, 1988. \bibitem[Russell(1979)]{russell1979} J.~A. Russell. \newblock Affect {S}pace is {B}ipolar. \newblock {\em Journal of Personality and Social Psychology}, 37\penalty0 (3):\penalty0 345--356, 1979. \end{thebibliography} \end{document} %% bib_natbib3.bib %% @article{biot1941, %% Author = {M. A. Biot}, %% Journal = {Journal of Applied Physics}, %% Keywords = {consolidation}, %% Pages = {155-165}, %% Title = {General theory of three--dimensional consolidation}, %% Volume = {12}, %% Year = {1941}} %% %% @article{chung2002, %% Author = {C. A. Chung and M. Grae Worster}, %% Journal = {Journal of Fluid Mechanics}, %% Keywords = {settling}, %% Pages = {387-411}, %% Title = {Steady-state chimneys in a mushy layer}, %% Volume = {455}, %% Year = {2002}} %% %% @book{bustos1999, %% Address = {Dordrecht}, %% Author = {Mar\'{\i}a Cristina Bustos and Fernando Concha and Raimund B\"{u}rger and Elmer M. Tory}, %% Keywords = {settling, constitutive, consolidation}, %% Publisher = {Kluwer Academic Publishers}, %% Series = {Mathematical Modelling: Theory and Applications}, %% Title = {Sedimentation and Thickening: Phenomenological Foundation and Mathematical Theory}, %% Volume = {8}, %% Year = {1999}} latex2rtf-2.3.18/test/bib_simple.bib0000777000175000017500000000244613050672360017475 0ustar wilfriedwilfried@article{known, author = {A. Known and G. K{\"o}nig}, title = {Fast reactions in LaTeX conversion}, journal = {J Nonreproducible Results}, volume = {24}, pages = {319--34}, year = {1978}, } @article{known2, author = {A. Known and B. Betterknown}, title = {Fast reactions in LaTeX conversion, a reprise}, journal = {J Nonreproducible Results}, volume = {34}, pages = {119--34}, year = {1979}, } @article{known3, author = {A. Knšwn and B. Betterknown}, title = {Fast reactions in LaTeX conversion, a reprise}, journal = {J Nonreproducible Results}, volume = {34}, pages = {119--34}, year = {1979}, } @article{known4, author = {B. Known and B. Betterknown}, title = {Fast reactions in LaTeX conversion, a reposte}, journal = {J Nonreproducible Results}, volume = {34}, pages = {119--34}, year = {1979}, } @article{known5, author = {C. Known and B. Betterknown}, title = {Fast reactions in LaTeX conversion, a remise}, journal = {J Nonreproducible Results}, volume = {34}, pages = {119--34}, year = {1979}, } @article{known6, author = {D. Known and B. Betterknown}, title = {Fast reactions in LaTeX conversion, a stop hit}, journal = {J Nonreproducible Results}, volume = {34}, pages = {119--34}, year = {1979}, } latex2rtf-2.3.18/test/linux.log0000644000175000017500000007264313664476467016600 0ustar wilfriedwilfriedThis is pdfTeX, Version 3.14159265-2.6-1.40.18 (TeX Live 2017/Debian) (preloaded format=latex 2019.1.18) 30 MAY 2020 17:35 entering extended mode restricted \write18 enabled. %&-line parsing enabled. **linux (./linux.tex LaTeX2e <2017-04-15> Babel <3.18> and hyphenation patterns for 8 language(s) loaded. (/usr/share/texlive/texmf-dist/tex/latex/base/report.cls Document Class: report 2014/09/29 v1.4h Standard LaTeX document class (/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo File: size10.clo 2014/09/29 v1.4h Standard LaTeX file (size option) ) \c@part=\count79 \c@chapter=\count80 \c@section=\count81 \c@subsection=\count82 \c@subsubsection=\count83 \c@paragraph=\count84 \c@subparagraph=\count85 \c@figure=\count86 \c@table=\count87 \abovecaptionskip=\skip41 \belowcaptionskip=\skip42 \bibindent=\dimen102 ) (/usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty Package: inputenc 2015/03/17 v1.2c Input encoding file \inpenc@prehook=\toks14 \inpenc@posthook=\toks15 (/usr/share/texlive/texmf-dist/tex/latex/base/latin1.def File: latin1.def 2015/03/17 v1.2c Input encoding file )) (/usr/share/texlive/texmf-dist/tex/latex/a4wide/a4wide.sty Package: a4wide 1994/08/30 (/usr/share/texlive/texmf-dist/tex/latex/ntgclass/a4.sty Package: a4 2004/04/15 v1.2g A4 based page layout )) (/usr/share/texlive/texmf-dist/tex/latex/url/url.sty \Urlmuskip=\muskip10 Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc. ) (/usr/share/texlive/texmf-dist/tex/generic/babel/babel.sty Package: babel 2018/02/14 3.18 The Babel package (/usr/share/texlive/texmf-dist/tex/generic/babel/switch.def File: switch.def 2018/02/14 3.18 Babel switching mechanism ) (/usr/share/texlive/texmf-dist/tex/generic/babel-english/english.ldf Language: english 2017/06/06 v3.3r English support from the babel system (/usr/share/texlive/texmf-dist/tex/generic/babel/babel.def File: babel.def 2018/02/14 3.18 Babel common definitions \babel@savecnt=\count88 \U@D=\dimen103 (/usr/share/texlive/texmf-dist/tex/generic/babel/txtbabel.def) \bbl@dirlevel=\count89 ) \l@british = a dialect from \language\l@english \l@UKenglish = a dialect from \language\l@english \l@canadian = a dialect from \language\l@american \l@australian = a dialect from \language\l@british \l@newzealand = a dialect from \language\l@british )) (/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty Package: graphicx 2017/06/01 v1.1a Enhanced LaTeX Graphics (DPC,SPQR) (/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty Package: keyval 2014/10/28 v1.15 key=value parser (DPC) \KV@toks@=\toks16 ) (/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty Package: graphics 2017/06/25 v1.2c Standard LaTeX Graphics (DPC,SPQR) (/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty Package: trig 2016/01/03 v1.10 sin cos tan (DPC) ) (/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/graphics.cfg File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration ) Package graphics Info: Driver file: dvips.def on input line 99. (/usr/share/texlive/texmf-dist/tex/latex/graphics-def/dvips.def File: dvips.def 2017/06/20 v3.1d Graphics/color driver for dvips )) \Gin@req@height=\dimen104 \Gin@req@width=\dimen105 ) (/usr/share/texlive/texmf-dist/tex/latex/graphics/epsfig.sty Package: epsfig 2017/06/25 v1.7b (e)psfig emulation (SPQR) \epsfxsize=\dimen106 \epsfysize=\dimen107 ) (/usr/share/texlive/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty Package: fancyhdr 2017/06/30 v3.9a Extensive control of page headers and footer s \f@nch@headwidth=\skip43 \f@nch@O@elh=\skip44 \f@nch@O@erh=\skip45 \f@nch@O@olh=\skip46 \f@nch@O@orh=\skip47 \f@nch@O@elf=\skip48 \f@nch@O@erf=\skip49 \f@nch@O@olf=\skip50 \f@nch@O@orf=\skip51 ) (/usr/share/texlive/texmf-dist/tex/latex/psfrag/psfrag.sty Package: psfrag 1998/04/11 v3.04 PSfrag (MCG) \pfg@pcount=\count90 \pfg@scount=\count91 \pfg@temp=\write3 ) (/usr/share/texlive/texmf-dist/tex/latex/psnfss/times.sty Package: times 2005/04/12 PSNFSS-v9.2a (SPQR) ) (/usr/share/texlive/texmf-dist/tex/latex/base/makeidx.sty Package: makeidx 2014/09/29 v1.0m Standard LaTeX package ) \@indexfile=\write4 \openout4 = `linux.idx'. Writing index file linux.idx (/usr/share/texlive/texmf-dist/tex/latex/tools/enumerate.sty Package: enumerate 2015/07/23 v3.00 enumerate extensions (DPC) \@enLab=\toks17 ) (./linux.aux) \openout1 = `linux.aux'. LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 108. LaTeX Font Info: ... okay on input line 108. LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 108. LaTeX Font Info: ... okay on input line 108. LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 108. LaTeX Font Info: ... okay on input line 108. LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 108. LaTeX Font Info: ... okay on input line 108. LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 108. LaTeX Font Info: ... okay on input line 108. LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 108. LaTeX Font Info: ... okay on input line 108. LaTeX Font Info: Try loading font information for OT1+ptm on input line 108. (/usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1ptm.fd File: ot1ptm.fd 2001/06/04 font definitions for OT1/ptm. ) LaTeX Font Info: External font `cmex10' loaded for size (Font) <12> on input line 117. LaTeX Font Info: External font `cmex10' loaded for size (Font) <8> on input line 117. LaTeX Font Info: External font `cmex10' loaded for size (Font) <6> on input line 117. LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <9> not available (Font) Font shape `OT1/ptm/b/n' tried instead on input line 121. Underfull \hbox (badness 10000) in paragraph at lines 122--123 [] Underfull \hbox (badness 10000) in paragraph at lines 122--123 [] [1 ] LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <14.4> not available (Font) Font shape `OT1/ptm/b/n' tried instead on input line 136. [2 ] LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <24.88> not available (Font) Font shape `OT1/ptm/b/n' tried instead on input line 142. (./linux.toc LaTeX Font Info: External font `cmex10' loaded for size (Font) <7> on input line 2. LaTeX Font Info: External font `cmex10' loaded for size (Font) <5> on input line 2. LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <10> not available (Font) Font shape `OT1/ptm/b/n' tried instead on input line 10. [3 ] Overfull \hbox (1.70981pt too wide) detected at line 51 \OT1/ptm/m/n/10 VIII [] ) \tf@toc=\write5 \openout5 = `linux.toc'. [4] LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <12> not available (Font) Font shape `OT1/ptm/b/n' tried instead on input line 149. Overfull \hbox (5.83408pt too wide) in paragraph at lines 149--149 []\OT1/ptm/b/n/12 REQUIREMENTS ON BOTH UN-MOD-I-FIED AND MOD-I-FIED VER-SIONS [] LaTeX Font Info: Try loading font information for OMS+ptm on input line 155. (/usr/share/texlive/texmf-dist/tex/latex/psnfss/omsptm.fd File: omsptm.fd ) LaTeX Font Info: Font shape `OMS/ptm/m/n' in size <10> not available (Font) Font shape `OMS/cmsy/m/n' tried instead on input line 155. LaTeX Font Info: Try loading font information for OT1+phv on input line 155. (/usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1phv.fd File: ot1phv.fd 2001/06/04 scalable font definitions for OT1/phv. ) [5 ] [6] [7] [8] Chapter 1. LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <20.74> not available (Font) Font shape `OT1/ptm/b/n' tried instead on input line 256. [1 ] [2] Chapter 2. LaTeX Warning: `h' float specifier changed to `ht'. [3 ] [4] [5] Overfull \hbox (2.37025pt too wide) in paragraph at lines 375--376 []\OT1/ptm/m/n/10 is a set of pro-gram-ming in-ter-face that [] [6] Overfull \hbox (1.25029pt too wide) in paragraph at lines 396--397 []\OT1/ptm/m/n/10 allow for a user-space pro-gram to record de-tailed in-for-ma -tion about [] Overfull \hbox (8.37985pt too wide) in paragraph at lines 399--400 \OT1/ptm/m/n/10 The nor-mal us-age of dis-tributed sys-tems is to archive high- performance sys-tems, load-balancing[] [] [7] [8] [9] Overfull \hbox (1.08055pt too wide) in paragraph at lines 494--495 []\OT1/ptm/m/n/10 provides an ab-strac-tion of the phys-i-cal disks that [] [10] [11] [12] Overfull \hbox (1.77095pt too wide) in paragraph at lines 569--570 []\OT1/ptm/m/n/10 allows use of Path MTU Dis-cov-ery (see above) over [] Overfull \hbox (8.8097pt too wide) in paragraph at lines 569--570 \OT1/ptm/m/n/10 Uni-ver-sal Data Packet (UDP) con-nec-tions, rather than the ty p-i-cal In-ter-net Pro-to-col (IP).[[]] [] [13] Chapter 3. [14 ] [15] Chapter 4. [16 ] Chapter 5. LaTeX Font Warning: Font shape `OMS/ptm/bx/n' undefined (Font) using `OMS/ptm/m/n' instead (Font) for symbol `textbullet' on input line 643. Underfull \hbox (badness 10000) in paragraph at lines 651--651 []\OT1/ptm/m/n/10 Supported [] Underfull \hbox (badness 10000) in paragraph at lines 651--651 []\OT1/ptm/m/n/10 i386, al-pha, [] Underfull \hbox (badness 10000) in paragraph at lines 651--651 \OT1/ptm/m/n/10 cris, sparc, [] Underfull \hbox (badness 1231) in paragraph at lines 651--651 \OT1/ptm/m/n/10 ppc, arm, sh4, [] Underfull \hbox (badness 10000) in paragraph at lines 651--651 \OT1/ptm/m/n/10 s390, mips, [] Underfull \hbox (badness 10000) in paragraph at lines 651--651 \OT1/ptm/m/n/10 HP parisc, [] Underfull \hbox (badness 10000) in paragraph at lines 651--651 \OT1/ptm/m/n/10 ia64, DEC [] Underfull \hbox (badness 1122) in paragraph at lines 651--651 []\OT1/ptm/m/n/10 sparc and i386 [] Underfull \hbox (badness 10000) in paragraph at lines 652--652 []\OT1/ptm/m/n/10 Maximum [] Underfull \hbox (badness 3323) in paragraph at lines 652--652 \OT1/ptm/m/n/10 phys-i-cal Mem- [] Underfull \hbox (badness 2644) in paragraph at lines 652--652 \OT1/ptm/m/n/10 ory tested and [] Underfull \hbox (badness 10000) in paragraph at lines 652--652 \OT1/ptm/m/n/10 sup-ported in [] Underfull \hbox (badness 10000) in paragraph at lines 653--653 []\OT1/ptm/m/n/10 Maximum [] Underfull \hbox (badness 10000) in paragraph at lines 653--653 \OT1/ptm/m/n/10 sup-ported and [] Underfull \hbox (badness 7814) in paragraph at lines 653--653 \OT1/ptm/m/n/10 tested size of [] Underfull \hbox (badness 5924) in paragraph at lines 653--653 \OT1/ptm/m/n/10 file sys-tem in [] Overfull \hbox (87.66916pt too wide) in paragraph at lines 649--656 [] [] Underfull \hbox (badness 10000) in paragraph at lines 662--662 []\OT1/ptm/m/n/10 Cryptographic [] Underfull \hbox (badness 10000) in paragraph at lines 662--662 \OT1/ptm/m/n/10 hard-ware sup- [] Underfull \hbox (badness 10000) in paragraph at lines 663--663 []\OT1/ptm/m/n/10 Kernel threads [] Underfull \hbox (badness 10000) in paragraph at lines 664--664 []\OT1/ptm/m/n/10 Hot--swap [] Underfull \hbox (badness 10000) in paragraph at lines 665--665 []\OT1/ptm/m/n/10 SysV IPC [] Underfull \hbox (badness 10000) in paragraph at lines 666--666 []\OT1/ptm/m/n/10 Dynamic [] Underfull \hbox (badness 10000) in paragraph at lines 666--666 \OT1/ptm/m/n/10 Pro-ces-sor Re- [] Underfull \hbox (badness 10000) in paragraph at lines 667--667 \OT1/ptm/m/n/10 ory Re-silience [] Underfull \hbox (badness 10000) in paragraph at lines 668--668 []\OT1/ptm/m/n/10 Dynamic Page [] Underfull \hbox (badness 10000) in paragraph at lines 669--669 []\OT1/ptm/m/n/10 Live Up-grade [] Underfull \hbox (badness 2922) in paragraph at lines 670--670 []\OT1/ptm/m/n/10 Alternative I/O [] Underfull \hbox (badness 10000) in paragraph at lines 671--671 []\OT1/ptm/m/n/10 BSD Pro-cess [] Underfull \hbox (badness 10000) in paragraph at lines 671--671 \OT1/ptm/m/n/10 Ac-count-ing [] Overfull \hbox (87.66916pt too wide) in paragraph at lines 658--673 [][] [] [17 ] Underfull \hbox (badness 10000) in paragraph at lines 678--678 []\OT1/ptm/m/n/10 Maximum [] Underfull \hbox (badness 10000) in paragraph at lines 680--680 []\OT1/ptm/m/n/10 RAID \OMS/cmsy/m/n/10 f\OT1/ptm/m/n/10 2.5.4[]\OMS/cmsy/m/n/1 0 g [] Underfull \hbox (badness 3199) in paragraph at lines 681--681 []\OT1/ptm/m/n/10 Journaling File [] Underfull \hbox (badness 10000) in paragraph at lines 682--682 []\OT1/ptm/m/n/10 Logical Vol- [] Underfull \hbox (badness 10000) in paragraph at lines 682--682 \OT1/ptm/m/n/10 ume Man-ager [] Underfull \hbox (badness 10000) in paragraph at lines 684--684 []\OT1/ptm/m/n/10 Memory File [] Underfull \hbox (badness 10000) in paragraph at lines 685--685 []\OT1/ptm/m/n/10 CacheFS [] Overfull \hbox (87.66916pt too wide) in paragraph at lines 676--688 [] [] Underfull \hbox (badness 10000) in paragraph at lines 691--691 []\OT1/ptm/m/n/10 Supported file [] Underfull \hbox (badness 10000) in paragraph at lines 691--691 []\OT1/ptm/m/n/10 ISO9660, [] Underfull \hbox (badness 10000) in paragraph at lines 691--691 \OT1/ptm/m/n/10 Rock-ridge, [] Underfull \hbox (badness 10000) in paragraph at lines 691--691 \OT1/ptm/m/n/10 Ext2, VFAT, [] Underfull \hbox (badness 10000) in paragraph at lines 691--691 \OT1/ptm/m/n/10 FATCVF, [] Underfull \hbox (badness 10000) in paragraph at lines 691--691 \OT1/ptm/m/n/10 UFS, FFS, [] Underfull \hbox (badness 10000) in paragraph at lines 691--691 \OT1/ptm/m/n/10 HPFS, NTFS, [] Underfull \hbox (badness 10000) in paragraph at lines 691--691 \OT1/ptm/m/n/10 AFFS,ADFS, [] Underfull \hbox (badness 10000) in paragraph at lines 691--691 \OT1/ptm/m/n/10 BFS, [] Underfull \hbox (badness 10000) in paragraph at lines 691--691 \OT1/ptm/m/n/10 CRAMFS, [] Underfull \hbox (badness 10000) in paragraph at lines 691--691 \OT1/ptm/m/n/10 PROC, [] Underfull \hbox (badness 10000) in paragraph at lines 691--691 \OT1/ptm/m/n/10 ROMFS, [] Underfull \hbox (badness 10000) in paragraph at lines 691--691 \OT1/ptm/m/n/10 SYSV--FS, [] Underfull \hbox (badness 3138) in paragraph at lines 691--691 \OT1/ptm/m/n/10 UDF, UM-DOS [] Underfull \hbox (badness 10000) in paragraph at lines 691--691 []\OT1/ptm/m/n/10 CFS [[]], [] Underfull \hbox (badness 10000) in paragraph at lines 691--691 \OT1/ptm/m/n/10 XCDR, [] Underfull \hbox (badness 10000) in paragraph at lines 691--691 \OT1/ptm/m/n/10 DVDFS,[[]], [] Underfull \hbox (badness 10000) in paragraph at lines 691--691 \OT1/ptm/m/n/10 FFM , DFS, [] Underfull \hbox (badness 10000) in paragraph at lines 691--691 \OT1/ptm/m/n/10 EFS, FDFS, [] Underfull \hbox (badness 10000) in paragraph at lines 691--691 \OT1/ptm/m/n/10 PROCFS, [] Underfull \hbox (badness 10000) in paragraph at lines 691--691 \OT1/ptm/m/n/10 SYSV, UFS, [] Underfull \hbox (badness 1783) in paragraph at lines 691--691 \OT1/ptm/m/n/10 MFS, ISO9660 [] Underfull \hbox (badness 10000) in paragraph at lines 691--691 \OT1/ptm/m/n/10 [[]], CDFS [] Underfull \hbox (badness 10000) in paragraph at lines 691--691 \OT1/ptm/m/n/10 [[]], HFS [] Underfull \hbox (badness 10000) in paragraph at lines 691--691 \OT1/ptm/m/n/10 [[]], LOFS [] Underfull \hbox (badness 10000) in paragraph at lines 691--691 \OT1/ptm/m/n/10 [[]], DOS [] Underfull \hbox (badness 1648) in paragraph at lines 691--691 \OT1/ptm/m/n/10 [[]], ISO9660, [] Underfull \hbox (badness 10000) in paragraph at lines 691--691 \OT1/ptm/m/n/10 Rock-ridge, [] Underfull \hbox (badness 10000) in paragraph at lines 691--691 \OT1/ptm/m/n/10 High Sierra, [] Overfull \hbox (87.66916pt too wide) in paragraph at lines 689--693 [][] [] [18] Underfull \hbox (badness 10000) in paragraph at lines 697--697 []\OT1/ptm/m/n/10 Support for [] Underfull \hbox (badness 3148) in paragraph at lines 697--697 \OT1/ptm/m/n/10 IP v4 and v6 [] Underfull \hbox (badness 4582) in paragraph at lines 698--698 []\OT1/ptm/m/n/10 Traffic Con-trol [] Underfull \hbox (badness 10000) in paragraph at lines 699--699 []\OT1/ptm/m/n/10 Bonding [] Underfull \hbox (badness 10000) in paragraph at lines 704--704 []\OT1/ptm/m/n/10 AppleTalk [] Underfull \hbox (badness 10000) in paragraph at lines 705--705 []\OT1/ptm/m/n/10 NetWare [] Underfull \hbox (badness 10000) in paragraph at lines 710--710 []\OT1/ptm/m/n/10 Ethernet [] Underfull \hbox (badness 10000) in paragraph at lines 711--711 []\OT1/ptm/m/n/10 Token Ring [] Underfull \hbox (badness 10000) in paragraph at lines 713--713 []\OT1/ptm/m/n/10 Simultaneous [] Underfull \hbox (badness 10000) in paragraph at lines 713--713 \OT1/ptm/m/n/10 IPv4/IPv6 [] Underfull \hbox (badness 10000) in paragraph at lines 713--713 \OT1/ptm/m/n/10 stacks on the [] Underfull \hbox (badness 10000) in paragraph at lines 713--713 \OT1/ptm/m/n/10 same net-work [] Underfull \hbox (badness 10000) in paragraph at lines 714--714 []\OT1/ptm/m/n/10 IPv6 Gate- [] Underfull \hbox (badness 10000) in paragraph at lines 714--714 \OT1/ptm/m/n/10 way fa-cil-i-ties [] Underfull \hbox (badness 5460) in paragraph at lines 716--716 []\OT1/ptm/m/n/10 Integrated Ser- [] Underfull \hbox (badness 10000) in paragraph at lines 716--716 \OT1/ptm/m/n/10 vices(IntServ) [] Overfull \hbox (87.66916pt too wide) in paragraph at lines 695--718 [] [] [19] Underfull \hbox (badness 10000) in paragraph at lines 721--721 []\OT1/ptm/m/n/10 Differentiated [] Underfull \hbox (badness 10000) in paragraph at lines 721--721 \OT1/ptm/m/n/10 Ser-vices [] Underfull \hbox (badness 10000) in paragraph at lines 722--722 \OT1/ptm/m/n/10 / ``alias-ing'' [] Underfull \hbox (badness 10000) in paragraph at lines 723--723 [][] [] Underfull \hbox (badness 10000) in paragraph at lines 724--724 []\OT1/ptm/m/n/10 TCP se-lec-tive [] Underfull \hbox (badness 10000) in paragraph at lines 724--724 \OT1/ptm/m/n/10 ac-knowl-edge- [] Underfull \hbox (badness 10000) in paragraph at lines 724--724 \OT1/ptm/m/n/10 ment (SACK) [] Underfull \hbox (badness 10000) in paragraph at lines 726--726 []\OT1/ptm/m/n/10 Multilink PPP [] Underfull \hbox (badness 10000) in paragraph at lines 727--727 []\OT1/ptm/m/n/10 TCP Large [] Underfull \hbox (badness 7907) in paragraph at lines 728--728 []\OT1/ptm/m/n/10 TCP/IP Gra-tu- [] Underfull \hbox (badness 10000) in paragraph at lines 729--729 \OT1/ptm/m/n/10 cov-ery (RFC [] Underfull \hbox (badness 10000) in paragraph at lines 730--730 [][] [] Underfull \hbox (badness 2302) in paragraph at lines 730--730 \OT1/ptm/m/n/10 Dis-cov-ery over [] Underfull \hbox (badness 10000) in paragraph at lines 731--731 [][] [] Underfull \hbox (badness 10000) in paragraph at lines 731--731 [] [] Underfull \hbox (badness 10000) in paragraph at lines 731--731 \OT1/ptm/m/n/10 ([] [] Underfull \hbox (badness 10000) in paragraph at lines 732--732 [][] [] Overfull \hbox (87.66916pt too wide) in paragraph at lines 719--734 [][] [] [20] [21] [22] Chapter 6. [23 ] Overfull \hbox (0.55629pt too wide) in paragraph at lines 772--772 []\OT1/ptm/b/n/14.4 RECEIVED RE-SULTS VER-SUS EX-PECTED RE-SULT [] [24] Chapter 7. [25 ] Chapter 8. [26 ] Underfull \hbox (badness 3168) in paragraph at lines 828--829 \OT1/phv/m/n/10 ds9a . nl / 2 . 4Networking / HOWTO / /cvs / 2 . 4routing / out put / 2 . 4routing . html$ \OT1/ptm/m/n/10 (avail-able [] Underfull \hbox (badness 10000) in paragraph at lines 839--840 \OT1/phv/m/n/10 py ? mpn = B2355-[]90703 & service = hpux & path = . . /B2355-[ ]90703 / 00 / 00 / 19 & title = [] Underfull \hbox (badness 1442) in paragraph at lines 843--844 []\OT1/ptm/m/it/10 HP-UX 11i Op-er-at-ing En-vi-ron-ments\OT1/ptm/m/n/10 , Hewl ett--Packard, $\OT1/phv/m/n/10 http : / / docs . hp . com / hpux / [] Underfull \hbox (badness 10000) in paragraph at lines 843--844 \OT1/phv/m/n/10 onlinedocs / os / 11i / oe[]presentation[]Dec1[]external . pdf$ \OT1/ptm/m/n/10 (avail-able 2001--05--25), [] Underfull \hbox (badness 10000) in paragraph at lines 847--848 \OT1/phv/m/n/10 hp . com / cgi-[]bin / swdepot[]parser . cgi / cgi / displayPro ductInfo . pl ? productNumber = [] [1 ] Underfull \hbox (badness 10000) in paragraph at lines 849--850 \OT1/phv/m/n/10 swdepot[]parser . cgi / cgi / displayProductInfo . pl ? product Number = T1305AA$ \OT1/ptm/m/n/10 (avail- [] Underfull \hbox (badness 5105) in paragraph at lines 851--852 []\OT1/ptm/m/it/10 HP MPI User's guide -- Mes-sage la-tency and band-width\OT1/ ptm/m/n/10 , Hewlett--Packard, [] Underfull \hbox (badness 10000) in paragraph at lines 851--852 \OT1/phv/m/n/10 http : / / docs . hp . com / cgi-[]bin / fsearch / framedisplay ? top = /hpux / onlinedocs / [] Underfull \hbox (badness 10000) in paragraph at lines 851--852 \OT1/phv/m/n/10 B6060-[]96002 / B6060-[]96002[]top . html & con = /hpux / onlin edocs / B6060-[]96002 / [] Underfull \hbox (badness 10000) in paragraph at lines 851--852 \OT1/phv/m/n/10 00 / 00 / 25-[]con . html & toc = /hpux / onlinedocs / B6060-[] 96002 / 00 / 00 / 25-[]toc . html & [] Underfull \hbox (badness 1424) in paragraph at lines 853--854 []\OT1/ptm/m/it/10 Solaris 8 press re-lease\OT1/ptm/m/n/10 , Sun Mi-crosys-tems Inc, $\OT1/phv/m/n/10 http : / / www . sun . com / smi / Press / [] Underfull \hbox (badness 10000) in paragraph at lines 855--856 []\OT1/ptm/m/it/10 Sun trunk-ing overview\OT1/ptm/m/n/10 , Sun Micro--systems, $\OT1/phv/m/n/10 http : / / www . sun . com / [] Underfull \hbox (badness 1033) in paragraph at lines 857--858 []\OT1/ptm/m/it/10 Trusted So-laris 8 Op-er-at-ing En-vi-ron-ment -- A Tech-ni- cal Overview\OT1/ptm/m/n/10 , White Pa-per, [] Underfull \hbox (badness 8038) in paragraph at lines 887--888 []\OT1/ptm/m/n/10 Joshua Drake, \OT1/ptm/m/it/10 Linux Net-work-ing HOWTO\OT1/p tm/m/n/10 , $\OT1/phv/m/n/10 http : / / www . linuxports . com / howto / [] [2] Underfull \hbox (badness 1509) in paragraph at lines 888--889 []\OT1/ptm/m/n/10 Harald Milz, \OT1/ptm/m/it/10 Linux High Avail-abil-ity HOWTO \OT1/ptm/m/n/10 , $\OT1/phv/m/n/10 http : / / www . ibiblio . org / pub / Linux / [] Underfull \hbox (badness 1394) in paragraph at lines 892--893 []\OT1/ptm/m/it/10 Visual Threads Doc-u-men-ta-tion\OT1/ptm/m/n/10 , Com-paq In c, $\OT1/phv/m/n/10 http : / / www . compaq . com / products / [] LaTeX Font Info: Try loading font information for OT1+pcr on input line 896. (/usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1pcr.fd File: ot1pcr.fd 2001/06/04 font definitions for OT1/pcr. ) Overfull \hbox (8.04279pt too wide) in paragraph at lines 914--915 []\OT1/ptm/m/n/10 See ker-nel source doc-u-ment [][]\OT1/pcr/m/n/10 linux/Docum entation/network/ip-sysctl.txt[]\OT1/ptm/m/n/10 . [] [3] Underfull \hbox (badness 1292) in paragraph at lines 934--935 \OT1/ptm/b/n/10 com / zdnn / stories / news / 0 ,[] 4586 ,[] 2671714 ,[] 00 . h tml$ \OT1/ptm/m/n/10 (avail-able 2001-05-19), Jan-uary 5 [] [4] Appendix A. Overfull \hbox (20.41379pt too wide) in paragraph at lines 1053--1053 []\OT1/pcr/m/n/10 There are patches for hot swap cpu support, but I haven't se en any CPU[] [] Overfull \hbox (20.41379pt too wide) in paragraph at lines 1053--1053 []\OT1/pcr/m/n/10 RAM fault tolerance? There was a patch a long time ago whic h detected[] [] Overfull \hbox (2.41379pt too wide) in paragraph at lines 1053--1053 []\OT1/pcr/m/n/10 bad ram, and would mark those memory clusters as unuseable a t boot.[] [] Overfull \hbox (14.41379pt too wide) in paragraph at lines 1053--1053 []\OT1/pcr/m/n/10 If your memory croaks, your kernel will experience random co rruptions[] [] [5 ] Overfull \hbox (14.41379pt too wide) in paragraph at lines 1053--1053 []\OT1/pcr/m/n/10 LOBOS will let one Linux kernel boot another,but that requir es a boot[] [] [6] Overfull \hbox (26.41379pt too wide) in paragraph at lines 1094--1094 []\OT1/pcr/m/n/10 >LOBOS will let one Linux kernel boot another, but that requ ires a boot[] [] Overfull \hbox (50.41379pt too wide) in paragraph at lines 1094--1094 []\OT1/pcr/m/n/10 If you build nearly everything (except, obviously what you n eed to boot) as[] [] Overfull \hbox (44.41379pt too wide) in paragraph at lines 1094--1094 []\OT1/pcr/m/n/10 modules, you can unload modules, build new versions, and rel oad them. So,[] [] Overfull \hbox (2.41379pt too wide) in paragraph at lines 1094--1094 []\OT1/pcr/m/n/10 you could say that partial support for "live upgrades" is in cluded.[] [] Overfull \hbox (20.41379pt too wide) in paragraph at lines 1094--1094 []\OT1/pcr/m/n/10 It works, too - I unloaded my OV511 driver a few weeks ago, copied the[] [] Overfull \hbox (50.41379pt too wide) in paragraph at lines 1094--1094 []\OT1/pcr/m/n/10 source for the new one in, built it, and re-inserted it. Sa me goes for the[] [] Overfull \hbox (26.41379pt too wide) in paragraph at lines 1094--1094 []\OT1/pcr/m/n/10 DRM module a couple of weeks before that. Now, the machine in question[] [] Overfull \hbox (32.41379pt too wide) in paragraph at lines 1094--1094 []\OT1/pcr/m/n/10 gets rebooted fairly often in any case, but those were thing s I *didn't*[] [] Overfull \hbox (26.41379pt too wide) in paragraph at lines 1094--1094 []\OT1/pcr/m/n/10 Get VNC Server for Macintosh from http://www.chromatix.uklin ux.net/vnc/[] [] Overfull \hbox (44.41379pt too wide) in paragraph at lines 1094--1094 []\OT1/pcr/m/n/10 GCS$/E/S dpu(!) s:- a20 C+++ UL++ P L+++ E W+ N- o? K? w--- O-- M++$ V? PS[] [] Overfull \hbox (32.41379pt too wide) in paragraph at lines 1127--1127 [] \OT1/pcr/m/n/10 Cc: cesar.da.silva@cyberdude.com, linux-kernel@vge r.kernel.org[] [] Overfull \hbox (8.41379pt too wide) in paragraph at lines 1127--1127 []\OT1/pcr/m/n/10 > >LOBOS will let one Linux kernel boot another, but that re quires a[] [] [7] Overfull \hbox (8.41379pt too wide) in paragraph at lines 1127--1127 []\OT1/pcr/m/n/10 > If you build nearly everything (except, obviously what you need to[] [] Overfull \hbox (26.41379pt too wide) in paragraph at lines 1127--1127 []\OT1/pcr/m/n/10 > modules, you can unload modules, build new versions, and r eload them.[] [] Overfull \hbox (14.41379pt too wide) in paragraph at lines 1127--1127 []\OT1/pcr/m/n/10 > you could say that partial support for "live upgrades" is included.[] [] Overfull \hbox (26.41379pt too wide) in paragraph at lines 1127--1127 []\OT1/pcr/m/n/10 Modules are unloaded/reloaded all the time during my driver development[] [] [8] Overfull \hbox (2.41379pt too wide) in paragraph at lines 1231--1231 [] \OT1/pcr/m/n/10 Cc: cesar.da.silva@cyberdude.com, linux-kernel@vger.ker nel.org[] [] Overfull \hbox (8.41379pt too wide) in paragraph at lines 1231--1231 []\OT1/pcr/m/n/10 > There are patches for hot swap cpu support, but I haven't seen any[] [] Overfull \hbox (26.41379pt too wide) in paragraph at lines 1231--1231 []\OT1/pcr/m/n/10 The S/390 has this; presumably it applies to Linux as well a s the other[] [] Overfull \hbox (14.41379pt too wide) in paragraph at lines 1231--1231 []\OT1/pcr/m/n/10 > bad ram, and would mark those memory clusters as unuseable at boot.[] [] Overfull \hbox (26.41379pt too wide) in paragraph at lines 1231--1231 []\OT1/pcr/m/n/10 > If your memory croaks, your kernel will experience random corruptions[] [] Overfull \hbox (14.41379pt too wide) in paragraph at lines 1231--1231 []\OT1/pcr/m/n/10 ECC can be supported by the hardware; no support for mapping out duff[] [] Overfull \hbox (2.41379pt too wide) in paragraph at lines 1231--1231 []\OT1/pcr/m/n/10 > LOBOS will let one Linux kernel boot another, but that req uires a[] [] Overfull \hbox (20.41379pt too wide) in paragraph at lines 1231--1231 []\OT1/pcr/m/n/10 Live SOFTWARE upgrade, or live HARDWARE upgrade? If the latt er, things[] [] [9] Overfull \hbox (20.41379pt too wide) in paragraph at lines 1231--1231 []\OT1/pcr/m/n/10 be usable with Linux on an S/390 - they are hardware feature s, though,[] [] Overfull \hbox (2.41379pt too wide) in paragraph at lines 1252--1252 [] \OT1/pcr/m/n/10 Cc: cesar.da.silva@cyberdude.com, linux-kernel@vger.ker nel.org[] [] Overfull \hbox (2.41379pt too wide) in paragraph at lines 1283--1283 [] \OT1/pcr/m/n/10 Cc: cesar.da.silva@cyberdude.com, linux-kernel@vger.ker nel.org[] [] [10] Overfull \hbox (62.41379pt too wide) in paragraph at lines 1283--1283 [] \OT1/pcr/m/n/10 the galaxy. [taken from: David Brin - Sundiver][] [] Overfull \hbox (14.41379pt too wide) in paragraph at lines 1306--1306 []\OT1/pcr/m/n/10 > bad ram, and would mark those memory clusters as unuseable at boot.[] [] Overfull \hbox (26.41379pt too wide) in paragraph at lines 1306--1306 []\OT1/pcr/m/n/10 (http://rick.vanrein.org/linux/badram/), it doesn't detect t he bad ram,[] [] Overfull \hbox (26.41379pt too wide) in paragraph at lines 1306--1306 []\OT1/pcr/m/n/10 memtest86 does that part (and does it well) -- you enter the n enter the[] [] Overfull \hbox (2.41379pt too wide) in paragraph at lines 1306--1306 []\OT1/pcr/m/n/10 badram clusters as boot param. But I have to say badram patc h works[] [] Overfull \hbox (14.41379pt too wide) in paragraph at lines 1306--1306 []\OT1/pcr/m/n/10 marvellously (thanks, Rick.) Shame it didn't find its way to standard[] [] [11] (./linux.aux) LaTeX Font Warning: Some font shapes were not available, defaults substituted. LaTeX Warning: Label(s) may have changed. Rerun to get cross-references right. ) Here is how much of TeX's memory you used: 1831 strings out of 494872 23075 string characters out of 6178408 105581 words of memory out of 5000000 5144 multiletter control sequences out of 15000+600000 17084 words of font info for 44 fonts, out of 8000000 for 9000 14 hyphenation exceptions out of 8191 25i,12n,43p,1281b,340s stack positions out of 5000i,500n,10000p,200000b,80000s Output written on linux.dvi (45 pages, 152568 bytes). latex2rtf-2.3.18/test/enc_moroz_ot2.tex0000777000175000017500000000212513050672355020211 0ustar wilfriedwilfried%%%%%%%%%%%%%%%%%%%%%%%%% -*-LaTeX-*- %%% Moroz_OT2.tex %%% %%%%%%%%%%%%%%%%%%%%%%%%% %% %% Date: 9-Aug-2002 %% Author: wd (Wolfgang.Dobler@ncl.ac.uk) % \documentclass[a4paper,12pt]{article} \usepackage[T2A,OT1]{fontenc} \usepackage[ot2enc]{inputenc} \usepackage[russian,english]{babel} \sloppy % Hyphenation is a problem.. \author{A. S. Pushkin} \title{{\cyr Zimnee utro} (winter morning)} \begin{document} \maketitle \section{A section} \noindent{\cyr Moroz i solnce, den\cyrsftsn{} chudesny\U{i}!\\ Eshch\"e ty dremlesh\cyrsftsn{}, drug prelestny\U{i}?\\ Pora, krasavica, prosnis\cyrsftsn!} \subsection{Accented characters} You can still use accents and diacritica as usual: \begin{quote} \"Uberm\"a{\ss}iger Lik\"orgenuss in der \"Offentlichkeit f\"uhrt zu \"Arger \end{quote} \begin{quote} \^Etre ou ne pas \^etre --- c'est une question tr\`es int\'eressante en Fran\c{c}ais \end{quote} \subsection{\cyr Shrifty} \cyr {\sc Konechno} {\bf vse} {\em varianty} {\TeX}ovskih {\sl shriftov} dostupny i s {\sf kirillice\U{i}}. \end{document} latex2rtf-2.3.18/cfg.c0000777000175000017500000003711313050672355014641 0ustar wilfriedwilfried /* cfg.c - Read config files and provide lookup routines Copyright (C) 1995-2002 The Free Software Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. This file is available from http://sourceforge.net/projects/latex2rtf/ Authors: 1995-1997 Ralf Schlatterbeck 1998-2000 Georg Lehner 2001-2002 Scott Prahl * LEG200698 I would have prefered to make the reading of the language file * separate, since the language is known some steps after reading the * configuration files. Since the search functions rely on the index into * configinfo this is not trivial. So I reread the language file to the array * at the moment the name is known. */ #include #include #include #include #include #include "main.h" #include "convert.h" #include "funct1.h" #include "cfg.h" #include "utils.h" typedef struct ConfigInfoT { char *filename; ConfigEntryT **config_info; int config_info_size; int remove_leading_backslash; } ConfigInfoT; static ConfigInfoT configinfo[] = { {"direct.cfg", NULL, 0, FALSE}, {"fonts.cfg", NULL, 0, FALSE}, {"ignore.cfg", NULL, 0, FALSE}, {"style.cfg", NULL, 0, FALSE}, {"english.cfg", NULL, 0, FALSE}, }; #define CONFIG_SIZE 5 #define BUFFER_INCREMENT 1024 char *ReadUptoMatch(FILE * infile, const char *scanchars); /**************************************************************************** * purpose: compare-function for bsearch * params: el1, el2: Config Entries to be compared ****************************************************************************/ static int cfg_compare(ConfigEntryT ** el1, ConfigEntryT ** el2) { /*diagnostics(1, "'%s'<=>'%s'", (**el1).TexCommand, (**el2).TexCommand);*/ return strcmp((**el1).TexCommand, (**el2).TexCommand); } /**************************************************************************** * purpose: append path to .cfg file name and open return NULL upon failure, return filepointer otherwise ****************************************************************************/ static FILE *try_path(const char *path, const char *cfg_file) { char *both; FILE *fp; char separator[2]; separator[0] = PATHSEP; separator[1] = '\0'; if (path == NULL || cfg_file == NULL) return NULL; /* fix path ending if needed */ if (path[strlen(path)] != PATHSEP) both = strdup_together3(path,separator,cfg_file); else both = strdup_together(path,cfg_file); diagnostics(2, "trying to open '%s'", both); fp = fopen(both, "rb"); free(both); return fp; } /***************************************************** * run through 'path' (from environment, e.g. $PATH) * try to find a file called 'name' * if 'subdir' is given, prepend it to 'name' *****************************************************/ static FILE *open_path(const char *path, const char* name, const char* subdir) { FILE *fp = NULL; char *pf = strdup(path); char *p = pf; while (NULL != p) { char *p1 = strchr(p, ENVSEP); if (NULL != p1) *p1 = '\0'; if (NULL != subdir) { char *pft = strdup_together(p, subdir); fp = try_path(pft, name); free(pft); } else { fp = try_path(p, name); } if (NULL != fp) break; p = (p1) ? p1 + 1 : NULL; } free(pf); return fp; } /* * if the environment variable 'env' is defined * try to find a file called 'name' using it's contents * as a path. if subdir is given prepend it to 'name' */ static FILE *open_env(const char *env, const char* name, const char*subdir) { FILE *result = NULL; char *p = getenv(env); if (NULL != p) result = open_path(p,name,subdir); return result; } FILE *open_cfg(const char *name, int quit_on_error) /**************************************************************************** purpose: open config by trying multiple paths ****************************************************************************/ { FILE *fp; /* try path specified on the line */ fp = try_path(g_config_path, name); if (fp) return fp; /* try the environment variable RTFPATH */ fp = open_env("RTFPATH", name, NULL); if (NULL != fp) return fp; /* try the environment variable PROGRAMFILES */ fp = open_env("PROGRAMFILES", name, "/latex2rtf/cfg"); if (NULL != fp) return fp; /* last resort. try CFGDIR */ fp = open_path(CFGDIR, name, NULL); if (NULL != fp) return fp; /* failed ... give some feedback */ if (quit_on_error) { diagnostics(WARNING, "Cannot open the latex2rtf config file '%s'",name); diagnostics(WARNING, "Locate the directory containing the .cfg files and"); diagnostics(WARNING, " (1) define the environment variable RTFPATH, *or*"); diagnostics(WARNING, " (2) use command line path option \"-P /path/to/cfg/file\", *or*"); diagnostics(WARNING, " (3) recompile latex2rtf with CFGDIR defined properly"); diagnostics(WARNING, "Current RTFPATH: %s", getenv("RTFPATH")); diagnostics(WARNING, "Current CFGDIR: %s", CFGDIR); diagnostics(ERROR, " Giving up. Please don't hate me."); } return NULL; } static int read_cfg(FILE * cfgfile, ConfigEntryT *** pointer_array, int do_remove_backslash) /**************************************************************************** * purpose: Read config file and provide sorted lookup table ****************************************************************************/ { int bufindex = 0, bufsize = 0; char *line, *cmdend; if (*pointer_array == NULL) { *pointer_array = (struct ConfigEntryT **) malloc(BUFFER_INCREMENT * sizeof(char *)); bufsize = BUFFER_INCREMENT; if (*pointer_array == NULL) diagnostics(ERROR, "Cannot allocate memory for pointer list"); } while ((line = ReadUptoMatch(cfgfile, "\n")) != NULL) { /* skip newline */ getc(cfgfile); /* Skip leading white space */ while (isspace((unsigned char) *line)) line++; /* Skip comment line */ if (*line == '#') continue; /* Skip blank line */ if (*line == '\0') continue; /* Find period that terminates command */ cmdend = strrchr(line, '.'); if (cmdend == NULL){ diagnostics(ERROR, "Bad config file, missing final period\nBad line is \"%s\"", line); exit(1); } /* Replace period with NULL */ *cmdend = '\0'; /* Skip backslash if specified */ if (do_remove_backslash) { if (*line != '\\') diagnostics(ERROR, "Bad config file, missing initial'\\'\nBad line is\"%s\"", line); else line++; } /* resize buffer if needed */ if (bufindex >= bufsize) { bufsize += BUFFER_INCREMENT; *pointer_array = (struct ConfigEntryT **) realloc(*pointer_array, bufsize * sizeof(char *)); if (*pointer_array == NULL) diagnostics(ERROR, "Cannot allocate memory for pointer list"); } /* find start of definition */ line = strdup(line); cmdend = strchr(line, ','); if (cmdend == NULL) { diagnostics(ERROR, "Bad config file, missing ',' between elements\nBad line is\"%s\"", line); exit(1); } /* terminate command */ *cmdend = '\0'; (*pointer_array)[bufindex] = (struct ConfigEntryT *) malloc(sizeof(ConfigEntryT)); if ((*pointer_array)[bufindex] == NULL) diagnostics(ERROR, "Cannot allocate memory for config entry"); (*pointer_array)[bufindex]->TexCommand = line; (*pointer_array)[bufindex]->RtfCommand = cmdend + 1; (*pointer_array)[bufindex]->original_id = bufindex; bufindex++; diagnostics(6,"%3d Tex='%s' RTF='%s'", bufindex, line, cmdend+1); } qsort(*pointer_array, bufindex, sizeof(**pointer_array), (fptr) cfg_compare); return bufindex; } void ReadCfg(void) /**************************************************************************** * purpose: opens config-files & reads them * globals: Direct-, Font- IgnoreArray[Size/Root] ****************************************************************************/ { int i; FILE *fp; char *fname; for (i = 0; i < CONFIG_SIZE; i++) { fname = configinfo[i].filename; fp = (FILE *) open_cfg(fname, TRUE); configinfo[i].config_info_size = read_cfg(fp, &(configinfo[i].config_info) , configinfo[i].remove_leading_backslash); (void) fclose(fp); diagnostics(2, "read %d entries for file %s", configinfo[i].config_info_size, fname); } } ConfigEntryT **SearchCfgEntry(const char *theTexCommand, int WhichCfg) /**************************************************************************** * purpose: search theTexCommand in specified config data and return * pointer to the data ****************************************************************************/ { ConfigEntryT compare_item; ConfigEntryT *compare_ptr, **p, **base; int size; compare_item.TexCommand = theTexCommand; compare_item.RtfCommand = ""; compare_item.original_id= 0; compare_ptr = &compare_item; size = configinfo[WhichCfg].config_info_size; base = configinfo[WhichCfg].config_info; if (theTexCommand == NULL) return NULL; assert(WhichCfg >= 0 && WhichCfg < CONFIG_SIZE); assert(configinfo[WhichCfg].config_info != NULL); diagnostics(5, "seeking '%s' in %d of size %d ", theTexCommand, WhichCfg, size); p = (ConfigEntryT **) bsearch(&compare_ptr, base, size, sizeof(compare_ptr), (fptr) cfg_compare); if (p) diagnostics(5, "seeking '%s' found '%s'", theTexCommand, (**p).TexCommand); return p; } ConfigEntryT **SearchCfgEntryByID(const int id, int WhichCfg) /**************************************************************************** * purpose: Get the entry with the given id ****************************************************************************/ { int i, max; ConfigEntryT ** entry; max = configinfo[WhichCfg].config_info_size; if (id > (int) max) return NULL; /* now iterate through all the entries looking for the right one */ entry = (ConfigEntryT **) configinfo[WhichCfg].config_info; for (i=0; i (ConfigEntryT **) configinfo[WhichCfg].config_info + configinfo[WhichCfg].config_info_size - 1) return NULL; return last; } ConfigEntryT **CfgNextByInsertion(int WhichCfg, ConfigEntryT ** last) /**************************************************************************** * purpose: Get the next entry from specified configuration data ****************************************************************************/ { int next_id; if (last == NULL) next_id = 0; else next_id = (**last).original_id + 1; return SearchCfgEntryByID(next_id, WhichCfg); } /**************************************************************************** * opens and reads the language configuration file named in lang Opens language file & builds a search tree for the translation of "Hardcoded" latex headings like "Part", "References", ... The file format is: LATEXTOKEN,Translation. ****************************************************************************/ void ReadLanguage(char *lang) { FILE *fp; char *langfn; if (lang == NULL) return; langfn = strdup_together(lang, ".cfg"); fp = (FILE *) open_cfg(langfn, TRUE); free(langfn); if (fp == NULL) return; configinfo[LANGUAGE_A].config_info_size = read_cfg(fp, &(configinfo[LANGUAGE_A].config_info), configinfo[LANGUAGE_A].remove_leading_backslash); (void) fclose(fp); } /**************************************************************************** purpose : returns a pointer to the Printout name of a Heading, since this is read from a language file it provides translation capability. params : name, name of heading. ****************************************************************************/ void ConvertBabelName(char *name) { char *s = SearchCfgRtf(name, LANGUAGE_A); if (s != NULL) ConvertString(s); } char *GetBabelName(char *name) { char *s = NULL; s = SearchCfgRtf(name, LANGUAGE_A); return s; } static char *buffer = NULL; static int bufsize = 0; #define CR (char) 0x0d #define LF (char) 0x0a /* * This function assumes there are no '\0' characters in the input. * if there are any, they are ignored. */ char *ReadUptoMatch(FILE * infile, const char *scanchars) { int bufindex = 0; int c; if (feof(infile) != 0) return NULL; if (buffer == NULL) { buffer = (char *) malloc(BUFFER_INCREMENT * sizeof(char)); if (buffer == NULL) { diagnostics(ERROR, "Cannot allocate memory for input buffer"); exit(1); } bufsize = BUFFER_INCREMENT; } while ((c = getc(infile)) != EOF) { if (c == CR || c == LF) c = '\n'; if (strchr(scanchars, c)) break; if (c == (int) '\0') continue; buffer[bufindex++] = (char) c; if (bufindex >= bufsize) { bufsize += BUFFER_INCREMENT; buffer = (char *) realloc(buffer, bufsize); if (buffer == NULL) { diagnostics(ERROR, "Cannot allocate memory for input buffer"); exit(1); } } } buffer[bufindex] = '\0'; if (c != EOF) ungetc(c, infile); return buffer; } latex2rtf-2.3.18/funct1.c0000777000175000017500000021420713664233324015303 0ustar wilfriedwilfried /* funct1.c - interpret various LaTeX commands and produce RTF Copyright (C) 1995-2002 The Free Software Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. This file is available from http://sourceforge.net/projects/latex2rtf/ Authors: 1995 Fernando Dorner, Andreas Granzer, Freidrich Polzer, Gerhard Trisko 1995-1997 Ralf Schlatterbeck 1998-2000 Georg Lehner 2001-2002 Scott Prahl */ #include #include #include #include "main.h" #include "convert.h" #include "funct1.h" #include "commands.h" #include "stack.h" #include "fonts.h" #include "cfg.h" #include "ignore.h" #include "utils.h" #include "encodings.h" #include "parser.h" #include "counters.h" #include "lengths.h" #include "definitions.h" #include "preamble.h" #include "xrefs.h" #include "equations.h" #include "direct.h" #include "styles.h" #include "graphics.h" #include "vertical.h" #define ARABIC_NUMBERING 0 #define ALPHA_NUMBERING 1 #define ROMAN_NUMBERING 2 char *roman_item(int n, int upper); static int g_chapter_numbering = ARABIC_NUMBERING; static int g_section_numbering = ARABIC_NUMBERING; static int g_appendix = 0; int g_processing_list_environment = FALSE; void CmdNewDef(int code) /****************************************************************************** purpose : handles \def \newcommand \renewcommand ******************************************************************************/ { char *name=NULL, *opt_param=NULL, *def=NULL, cThis; char *params = NULL; int param = 0; if (code == DEF_DEF) { name = getSimpleCommand(); if (name == NULL) { diagnostics(WARNING, "Definition does not start with '\\' skipping"); return; } /* handle simple parameters (discard delimiters) e.g., #1#2#3 */ while ((cThis = getTexChar()) && cThis != '{') { if (isdigit((int) cThis)) param++; } ungetTexChar('{'); opt_param = NULL; def = getBraceParam(); UpdateLineNumber(def); newDefinition(name + 1, opt_param, def, param); } if (code == DEF_NEW || code == DEF_RENEW) { name = getBraceParam(); params = getBracketParam(); opt_param = getBracketParam(); def = getBraceParam(); UpdateLineNumber(name); UpdateLineNumber(params); if (opt_param) UpdateLineNumber(opt_param); UpdateLineNumber(def); param = 0; if (params) { if ('0' <= *params && *params <= '9') param = *params - '0'; else diagnostics(ERROR, "non-numeric number of parameters in newcommand"); } if (code == DEF_NEW) newDefinition(name + 1, opt_param, def, param); else renewDefinition(name + 1, opt_param, def, param); } diagnostics(4, "CmdNewDef name=<%s> param=%d opt_param=<%s> def=<%s>", (name) ? name : "", param, (opt_param) ? opt_param : "", (def) ? def : ""); free(name); free(def); if (params) free(params); if (opt_param) free(opt_param); } void CmdNewEnvironment(int code) { char *name, *opt_param, *begdef, *enddef, *params; int param; name = getBraceParam(); params = getBracketParam(); opt_param = getBracketParam(); begdef = getBraceParam(); enddef = getBraceParam(); UpdateLineNumber(name); UpdateLineNumber(params); if (opt_param) UpdateLineNumber(opt_param); UpdateLineNumber(begdef); UpdateLineNumber(enddef); param = 0; if (params) { if ('0' <= *params && *params <= '9') param = *params - '0'; else diagnostics(ERROR, "non-numeric number of parameters in newcommand"); } diagnostics(2, "CmdNewEnvironment name=<%s> param=%d", name, param); diagnostics(2, "CmdNewEnvironment begdef=<%s>", begdef); diagnostics(2, "CmdNewEnvironment enddef=<%s>", enddef); if (code == DEF_NEW) newEnvironment(name, opt_param, begdef, enddef, param); else renewEnvironment(name, opt_param, begdef, enddef, param); if (opt_param) free(opt_param); free(name); free(begdef); free(enddef); if (params) free(params); } void CmdNewTheorem(int code) { char *name, *caption, *numbered_like, *within; name = getBraceParam(); numbered_like = getBracketParam(); caption = getBraceParam(); within = getBracketParam(); UpdateLineNumber(name); UpdateLineNumber(numbered_like); UpdateLineNumber(caption); UpdateLineNumber(within); diagnostics(2, "CmdNewTheorem name=<%s>", name); diagnostics(2, "CmdNewTheorem caption=<%s>", caption); diagnostics(2, "CmdNewTheorem like=<%s>", (numbered_like) ? numbered_like : ""); newTheorem(name, caption, numbered_like, within); free(name); free(caption); if (numbered_like) free(numbered_like); if (within) free(within); } void CmdBeginEnd(int code) /*************************************************************************** purpose: reads the parameter after the \begin or \end-command; ( see also getBraceParam ) after reading the parameter the CallParamFunc-function calls the handling-routine for that special environment parameter: code: CMD_BEGIN: start of environment CMD_END: end of environment ***************************************************************************/ { int i; char *str, *option; char *s = getBraceParam(); if (code == CMD_BEGIN) diagnostics(5, "\\begin{%s}", s); else diagnostics(5, "\\end{%s}", s); if (strcmp(s, "document") == 0) { CmdEndParagraph(0); free(s); EndSource(); /* done! */ return; } /* hack to avoid problems with multicols */ if (strcmp(s, "multicols") == 0) { free(s); return; } /* user defined environments */ i = existsEnvironment(s); if (i > -1) { diagnostics(WARNING, "starting user-defined environment '%s'", s); str = expandEnvironment(i, code); ConvertString(str); free(str); free(s); return; } /* theorem environment */ i = existsTheorem(s); if (i > -1) { if (code == CMD_BEGIN) { option = getBracketParam(); str = expandTheorem(i, option); CmdEndParagraph(0); CmdVspace(VSPACE_SMALL_SKIP); startParagraph("theorem", PARAGRAPH_FIRST); fprintRTF("{\\b %s} {\\i ", str); PushBrace(); if (option) free(option); free(str); } else { PopBrace(); fprintRTF("}"); CmdEndParagraph(0); CmdVspace(VSPACE_SMALL_SKIP); CmdIndent(INDENT_INHIBIT); } free(s); return; } /* usual environments */ if (code == CMD_BEGIN) { diagnostics(5, "\\begin{%s}", s); (void) CallParamFunc(s, ON); } else { diagnostics(5, "\\end{%s}", s); (void) CallParamFunc(s, OFF); if (strcmp(s, "setspace") != 0 && strcmp(s, "doublespace") != 0) CmdIndent(INDENT_INHIBIT); } free(s); } void CmdToday(int code) /****************************************************************************** purpose: converts LaTeX \today into RTF \chdate ******************************************************************************/ { if (getTexMode() == MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); fprintRTF("\\chdate "); } void CmdIgnore(int code) /****************************************************************************** purpose: allows handling of constructs that do not require changes to RTF ******************************************************************************/ { } void Environment(int code) /****************************************************************************** purpose: pushes/pops the new environment-commands on/from the stack parameter: code includes the type of the environment ******************************************************************************/ { if (code & ON) { code &= ~(ON); /* mask MSB */ diagnostics(4, "Entering Environment (%d)", code); PushEnvironment(GENERIC_MODE); } else { /* off switch */ CmdEndParagraph(0); diagnostics(4, "Exiting Environment (%d)", code); PopEnvironment(); } } static char *FormatNumber(int formatting, int n) { char label[20]; switch (formatting) { case ALPHA_NUMBERING: snprintf(label, 20, "%c", (char) (n + (int) 'A' - 1) ); break; case ARABIC_NUMBERING: snprintf(label, 20, "%d", n); break; case ROMAN_NUMBERING: return roman_item(n, TRUE); } return strdup(label); } static char *FormatSection(void) { return FormatNumber(g_section_numbering, getCounter("section")); } static char *FormatChapter(void) { return FormatNumber(g_chapter_numbering, getCounter("chapter")); } char *FormatUnitNumber(char *name) /****************************************************************************** purpose: returns the x.x.x number for the specified sectional unit. ******************************************************************************/ { char label[20]; char *s = NULL; if (g_document_type == FORMAT_APA) { /* no numbers in apa at all! */ return strdup(""); } label[0] = '\0'; if (strcmp(name, "part") == 0) return roman_item(getCounter(name), TRUE); if (strcmp(name, "chapter") == 0) return FormatChapter(); if (strcmp(name, "section") == 0) { if (g_document_type == FORMAT_ARTICLE) { return FormatSection(); } else { s = FormatChapter(); snprintf(label, 20, "%s.%d", s, getCounter("section")); } } else if (strcmp(name, "subsection") == 0) { if (g_document_type == FORMAT_ARTICLE) { s = FormatSection(); snprintf(label, 20, "%s.%d", s, getCounter("subsection")); } else { s = FormatChapter(); snprintf(label, 20, "%s.%d.%d", s, getCounter("section"), getCounter("subsection")); } } else if (strcmp(name, "subsubsection") == 0) { if (g_document_type == FORMAT_ARTICLE) { s = FormatSection(); snprintf(label, 20, "%s.%d.%d", s, getCounter("subsection"), getCounter("subsubsection")); } else { s = FormatChapter(); snprintf(label, 20, "%s.%d.%d.%d", s, getCounter("section"), getCounter("subsection"), getCounter("subsubsection")); } } else if (strcmp(name, "paragraph") == 0) { if (g_document_type == FORMAT_ARTICLE) { s = FormatSection(); snprintf(label, 20, "%s.%d.%d.%d", s, getCounter("subsection"), getCounter("subsubsection"), getCounter("paragraph")); } else { s = FormatChapter(); snprintf(label, 20, "%s.%d.%d.%d.%d", s, getCounter("section"), getCounter("subsection"), getCounter("subsubsection"), getCounter("paragraph")); } } else if (strcmp(name, "subparagraph") == 0) { if (g_document_type == FORMAT_ARTICLE) { s = FormatSection(); snprintf(label, 20, "%s.%d.%d.%d.%d",s, getCounter("subsection"), getCounter("subsubsection"), getCounter("paragraph"), getCounter("subparagraph")); } else { s = FormatChapter(); snprintf(label, 20, "%s.%d.%d.%d.%d.%d", s, getCounter("section"), getCounter("subsection"), getCounter("subsubsection"), getCounter("paragraph"), getCounter("subparagraph")); } } if (s) free(s); return strdup(label); } void CmdAppendix(int code) /****************************************************************************** purpose: handles \appendix ******************************************************************************/ { g_chapter_numbering = ALPHA_NUMBERING; if (g_document_type == FORMAT_ARTICLE) g_section_numbering = ALPHA_NUMBERING; g_appendix=1; setCounter("chapter",0); setCounter("section", 0); } void CmdSection(int code) /****************************************************************************** purpose: converts the LaTeX-section-commands into similar Rtf-styles parameter: code: type of section-recursion-level ******************************************************************************/ { char *toc_entry; char *heading; char *unit_label; char *chapter_name=NULL; toc_entry = getBracketParam(); heading = getBraceParam(); if (toc_entry) { diagnostics(4, "entering CmdSection [%s]{%s}", toc_entry, heading); free(toc_entry); } else diagnostics(4, "entering CmdSection {%s}", heading); CmdEndParagraph(0); /*protect current font settings from abuse by titles */ switch (code) { case SECT_PART: case SECT_PART_STAR: if (getCounter("part") > 0) CmdNewPage(NewPage); startParagraph("part", PARAGRAPH_SECTION_TITLE); ConvertBabelName("PARTNAME"); if (code == SECT_PART) { incrementCounter("part"); unit_label = FormatUnitNumber("part"); fprintRTF(" %s\\par ", unit_label); free(unit_label); } ConvertString(heading); CmdEndParagraph(0); CmdNewPage(NewPage); break; case SECT_CHAPTER: case SECT_CHAPTER_STAR: unit_label = NULL; if (getCounter("chapter") > 0) CmdNewPage(NewPage); startParagraph("chapter0", PARAGRAPH_SECTION_TITLE); if (g_appendix) chapter_name=GetBabelName("APPENDIXNAME"); else chapter_name=GetBabelName("CHAPTERNAME"); ConvertString(chapter_name); if (code == SECT_CHAPTER && getCounter("secnumdepth") >= -1) { incrementCounter("chapter"); setCounter("section", 0); setCounter("figure",0); setCounter("table",0); setCounter("equation",0); resetTheoremCounter("chapter"); unit_label = FormatUnitNumber("chapter"); fprintRTF(" "); InsertBookmark(g_section_label, unit_label); } CmdEndParagraph(0); CmdVspace(VSPACE_BIG_SKIP); startParagraph("chapter", PARAGRAPH_SECTION_TITLE); ConvertString(heading); CmdEndParagraph(0); /* InsertContentMark('c', chapter_name, " ", unit_label, " ", heading);*/ CmdVspace(VSPACE_BIG_SKIP); if (unit_label) free(unit_label); break; case SECT_NORM: case SECT_NORM_STAR: CmdVspace(VSPACE_BIG_SKIP); if (g_document_type == FORMAT_APA) { startParagraph("section", PARAGRAPH_SECTION_TITLE); } else { startParagraph("section", PARAGRAPH_SECTION_TITLE); if (code == SECT_NORM && getCounter("secnumdepth") >= 0) { incrementCounter("section"); setCounter("subsection", 0); resetTheoremCounter("section"); unit_label = FormatUnitNumber("section"); InsertBookmark(g_section_label, unit_label); fprintRTF(" "); free(unit_label); } } ConvertString(heading); CmdEndParagraph(0); CmdVspace(VSPACE_SMALL_SKIP); break; case SECT_SUB: case SECT_SUB_STAR: CmdVspace(VSPACE_MEDIUM_SKIP); if (g_document_type == FORMAT_APA) { startParagraph("subsection", PARAGRAPH_SECTION_TITLE); } else { startParagraph("subsection", PARAGRAPH_SECTION_TITLE); if (code == SECT_SUB && getCounter("secnumdepth") >= 1) { incrementCounter("subsection"); setCounter("subsubsection", 0); resetTheoremCounter("subsection"); unit_label = FormatUnitNumber("subsection"); InsertBookmark(g_section_label, unit_label); fprintRTF(" "); free(unit_label); } } ConvertString(heading); CmdEndParagraph(0); CmdVspace(VSPACE_SMALL_SKIP); break; case SECT_SUBSUB: case SECT_SUBSUB_STAR: CmdVspace(VSPACE_MEDIUM_SKIP); if (g_document_type == FORMAT_APA) { startParagraph("subsubsection", PARAGRAPH_GENERIC); fprintRTF("{\\i "); ConvertString(heading); fprintRTF(".} "); } else { startParagraph("subsubsection", PARAGRAPH_SECTION_TITLE); if (code == SECT_SUBSUB && (getCounter("secnumdepth") > 2 || (g_document_type == FORMAT_ARTICLE && getCounter("secnumdepth") == 2))) { incrementCounter("subsubsection"); setCounter("paragraph", 0); setCounter("subparagraph", 0); resetTheoremCounter("subsubsection"); unit_label = FormatUnitNumber("subsubsection"); InsertBookmark(g_section_label, unit_label); fprintRTF(" "); free(unit_label); } ConvertString(heading); CmdEndParagraph(0); CmdVspace(VSPACE_SMALL_SKIP); } break; case SECT_SUBSUBSUB: case SECT_SUBSUBSUB_STAR: CmdVspace(VSPACE_MEDIUM_SKIP); startParagraph("paragraph", PARAGRAPH_SECTION_TITLE); if (code == SECT_SUBSUBSUB && getCounter("secnumdepth") >= 3) { incrementCounter("paragraph"); resetTheoremCounter("paragraph"); unit_label = FormatUnitNumber("paragraph"); setCounter("subparagraph", 0); InsertBookmark(g_section_label, unit_label); fprintRTF(" "); free(unit_label); } ConvertString(heading); CmdEndParagraph(0); CmdVspace(VSPACE_SMALL_SKIP); break; case SECT_SUBSUBSUBSUB: case SECT_SUBSUBSUBSUB_STAR: CmdVspace(VSPACE_MEDIUM_SKIP); startParagraph("subparagraph", PARAGRAPH_SECTION_TITLE); if (code == SECT_SUBSUBSUBSUB && getCounter("secnumdepth") >= 4) { incrementCounter("subparagraph"); resetTheoremCounter("subparagraph"); unit_label = FormatUnitNumber("subparagraph"); InsertBookmark(g_section_label, unit_label); fprintRTF(" "); free(unit_label); } ConvertString(heading); CmdEndParagraph(0); CmdVspace(VSPACE_SMALL_SKIP); break; } if (heading) free(heading); if (g_section_label) { free(g_section_label); g_section_label = NULL; } } /****************************************************************************** purpose: converts \caption from LaTeX to Rtf ******************************************************************************/ void CmdCaption(int code) { char *thecaption; char *lst_entry; int n, vspace; char old_align; char number[20]; char c; old_align = getAlignment(); setAlignment(CENTERED); lst_entry = getBracketParam(); thecaption = getBraceParam(); if (lst_entry) { diagnostics(4, "entering \\caption[%s]{}", lst_entry); show_string(4, thecaption, "caption"); free(lst_entry); } else { diagnostics(4, "entering \\caption{}"); show_string(4, thecaption, "caption"); } if (getTexMode() != MODE_VERTICAL) CmdEndParagraph(0); vspace = getLength("abovecaptionskip"); setVspace(vspace); startParagraph("caption", PARAGRAPH_FIRST); fprintRTF("{"); if (g_processing_figure) { incrementCounter("figure"); ConvertBabelName("FIGURENAME"); fprintRTF(" "); n = getCounter("figure"); c = 'f'; } else { incrementCounter("table"); ConvertBabelName("TABLENAME"); fprintRTF(" "); n = getCounter("table"); c = 't'; } if (g_document_type != FORMAT_ARTICLE && g_document_type != FORMAT_APA) snprintf(number, 20, "%d.%d", getCounter("chapter"), n); else snprintf(number, 20, "%d", n); if (g_processing_figure && g_figure_label) InsertBookmark(g_figure_label, number); else if (g_processing_table && g_table_label) InsertBookmark(g_table_label, number); else fprintRTF("%s", number); fprintRTF(": "); ConvertString(thecaption); fprintRTF("}"); InsertContentMark(c, number, " ", thecaption); free(thecaption); CmdEndParagraph(0); vspace = getLength("belowcaptionskip") + getLength("textfloatsep"); setVspace(vspace); setAlignment(old_align); diagnostics(4, "exiting CmdCaption"); } void CmdCounter(int code) /****************************************************************************** purpose: handles \newcounter, \setcounter, \addtocounter, \value ******************************************************************************/ { char *s, *s2, *s3, *s4; int num; s = getBraceParam(); diagnostics(4, "Entering CmdCounter(), <%s>", s); if (code == COUNTER_ADD || code == COUNTER_SET) { s2 = getBraceParam(); if ((s3 = strchr(s2, '{')) && (s4 = strchr(s2, '}'))) { s3++; *s4 = '\0'; diagnostics(4, "CmdCounter() processing \\value{%s}", s3); num = getCounter(s3); } else if (sscanf(s2, "%d", &num) != 1) { diagnostics(WARNING, "\nBad parameter in set/addcounter{%s}{%s}", s, s2); free(s2); free(s); return; } free(s2); if (code == COUNTER_ADD) setCounter(s, getCounter(s) + num); else setCounter(s, num); } else if (code == COUNTER_NEW) { setCounter(s, 0); } else if (code == COUNTER_INCR) { incrementCounter(s); } free(s); } void CmdLength(int code) /****************************************************************************** purpose: handles \newlength, \setlength, \addtolength purpose: handle \textwidth=0.8in or \moveright0.1\textwidth ******************************************************************************/ { char *s, *s1; char cThis; int num; if (code == LENGTH_ADD || code == LENGTH_SET || code == LENGTH_NEW) { s = getBraceParam(); if (strlen(s) <= 1) { free(s); diagnostics(WARNING, "missing argument in \\newlength \\addtolength or \\setlength"); return; } s1 = s + 1; /* skip initial '\\' */ diagnostics(4, "Entering CmdLength(), <%s>", s1); if (code == LENGTH_ADD || code == LENGTH_SET) { cThis = getNonSpace(); if (cThis == '{') { num = getDimension(); diagnostics(4, "size is <%d> twips", num); cThis = getTexChar(); while (cThis && cThis != '}') cThis = getTexChar(); if (code == LENGTH_ADD) setLength(s1, getLength(s1) + num); else setLength(s1, num); } else diagnostics(WARNING, "bad parameter to \\addtolength or \\setlength"); } else setLength(s1, 0); free(s); } else { skipSpaces(); cThis = getTexChar(); if (cThis == '=') /* optional '=' */ skipSpaces(); else ungetTexChar(cThis); getDimension(); /* discard for now */ } } void CmdQuote(int code) /****************************************************************************** purpose: handles \begin{quote} ... \end{quote} \begin{quotation} ... \end{quotation} globals: indent which is the left-indent-position ******************************************************************************/ { int true_code = code & ~ON; CmdEndParagraph(0); if (code & ON) { if (true_code == QUOTATION) { PushEnvironment(QUOTE_MODE); diagnostics(4, "Entering \\begin{quotation}"); CmdVspace(VSPACE_SMALL_SKIP); setLeftMarginIndent(getLeftMarginIndent()+512); setRightMarginIndent(getRightMarginIndent()+512); setLength("parindent", 15 * DefaultFontSize()); } else { PushEnvironment(QUOTATION_MODE); diagnostics(4, "Entering \\begin{quote}"); CmdVspace(VSPACE_SMALL_SKIP); setLeftMarginIndent(getLeftMarginIndent()+512); setRightMarginIndent(getRightMarginIndent()+512); setLength("parindent", 15 * DefaultFontSize()); } } else { PopEnvironment(); diagnostics(4, "Exiting \\end{quote} or \\end{quotation}"); CmdIndent(INDENT_INHIBIT); CmdVspace(VSPACE_SMALL_SKIP); } } void CmdList(int code) /****************************************************************************** purpose : set indentation and counters for itemize, description and enumerate globals : indent ******************************************************************************/ { int vspace; int amount = 300; vspace = getLength("topsep") + getLength("parskip"); if (code != (INPARAENUM_MODE | ON) && code != (INPARAENUM_MODE | OFF) ) { if (getTexMode() == MODE_VERTICAL) vspace += getLength("partopsep"); else CmdEndParagraph(0); } switch (code) { case (ITEMIZE_MODE | ON): setVspace(vspace); PushEnvironment(ITEMIZE_MODE); setLength("parindent", -amount); setLeftMarginIndent(getLeftMarginIndent() + 2 * amount); CmdIndent(INDENT_USUAL); break; case (ENUMERATE_MODE | ON): setVspace(vspace); PushEnvironment(ENUMERATE_MODE); g_enumerate_depth++; CmdItem(RESET_ITEM_COUNTER); setLength("parindent", -amount); setLeftMarginIndent(getLeftMarginIndent() + 2 * amount); CmdIndent(INDENT_USUAL); break; case (DESCRIPTION_MODE | ON): setVspace(vspace); PushEnvironment(DESCRIPTION_MODE); setLength("parindent", -amount); setLeftMarginIndent(getLeftMarginIndent() + 2 * amount); CmdIndent(INDENT_USUAL); break; case (INPARAENUM_MODE | ON): PushEnvironment(INPARAENUM_MODE); g_enumerate_depth++; CmdItem(RESET_ITEM_COUNTER); break; case (INPARAENUM_MODE | OFF): g_enumerate_depth--; PopEnvironment(); g_processing_list_environment = FALSE; break; case (ENUMERATE_MODE | OFF): g_enumerate_depth--; /* fall through */ case (ITEMIZE_MODE | OFF): case (DESCRIPTION_MODE | OFF): PopEnvironment(); CmdIndent(INDENT_INHIBIT); /* need to reset INDENT_NONE from CmdItem */ g_processing_list_environment = FALSE; setVspace(vspace); break; } } void CmdItem(int code) /****************************************************************************** purpose : handles \item command. Since the \item command is delimited by a later \item command or the ending of an environment (\end{itemize}) this routine will get called recursively. ******************************************************************************/ { char *itemlabel, thechar; static int item_number[5]; int vspace; if (code == RESET_ITEM_COUNTER) { if (g_enumerate_depth < 4) item_number[g_enumerate_depth] = 1; return; } diagnostics(4, " CmdItem depth=%d #=%d (%s)", g_enumerate_depth, item_number[g_enumerate_depth], (code==ENUMERATE_MODE)?"enumerate": (code==ITEMIZE_MODE)?"itemize": (code==DESCRIPTION_MODE)?"description": (code==INPARAENUM_MODE)?"inparaenum":"not enum"); g_processing_list_environment = TRUE; /* suppress vertical space for inparaenum */ if (code != INPARAENUM_MODE) { CmdEndParagraph(0); vspace = getLength("itemsep") + getLength("parsep"); setVspace(vspace); CmdIndent(INDENT_USUAL); startParagraph("item", PARAGRAPH_LIST); } itemlabel = getBracketParam(); if (itemlabel) { /* \item[label] */ fprintRTF("{"); if (code == DESCRIPTION_MODE) fprintRTF("\\b "); diagnostics(5, "Entering ConvertString from CmdItem"); ConvertString(itemlabel); diagnostics(5, "Exiting ConvertString from CmdItem"); fprintRTF("}"); if (code != DESCRIPTION_MODE && code != INPARAENUM_MODE) fprintRTF("\\tab\n"); } switch (code) { case ITEMIZE_MODE: if (!itemlabel) { if (FrenchMode) fprintRTF("\\endash\\tab\n"); else fprintRTF("\\bullet\\tab\n"); } break; case INPARAENUM_MODE: case ENUMERATE_MODE: if (itemlabel) break; switch (g_enumerate_depth) { case 1: fprintRTF("%d.", item_number[g_enumerate_depth]); break; case 2: fprintRTF("(%c)", 'a' + item_number[g_enumerate_depth] - 1); break; case 3: fprintRTF("%s.", roman_item(item_number[g_enumerate_depth], FALSE)); break; case 4: fprintRTF("%c.", 'A' + item_number[g_enumerate_depth] - 1); break; default: break; } if (code != INPARAENUM_MODE) fprintRTF("\\tab\n"); else fprintRTF(" "); item_number[g_enumerate_depth]++; break; case DESCRIPTION_MODE: fprintRTF(" "); break; } if (itemlabel) free(itemlabel); thechar = getNonBlank(); ungetTexChar(thechar); if (code != INPARAENUM_MODE) CmdIndent(INDENT_INHIBIT); } void CmdResizeBox(int code) { char *size, *options, *content; size = getBraceParam(); options = getBraceParam(); content = getBraceParam(); free(size); free(options); ConvertString(content); free(content); } void CmdBox(int code) /****************************************************************************** purpose: converts the LaTeX \box-commands into an similar Rtf-style ******************************************************************************/ { char BoxName[7][10] = { "hbox", "vbox", "mbox", "fbox", "parbox", "makebox", "framebox" }; int mode = getTexMode(); diagnostics(4, "Entering CmdBox() [%s]", BoxName[code - 1]); /* if (g_processing_fields) g_processing_fields++; hack to stop fields within fields */ if (code == BOX_HBOX || code == BOX_MBOX) changeTexMode(MODE_RESTRICTED_HORIZONTAL); if (code == BOX_PARBOX) { char *position, *width; position = getBracketParam(); width = getBraceParam(); if (position) free(position); free(width); } if (code == BOX_MAKEBOX || code == BOX_FRAMEBOX) { char *position, *width; position = getBracketParam(); width = getBracketParam(); if (position) free(position); if (width) free(width); } diagnostics(4, "Entering Convert() from CmdBox"); Convert(); diagnostics(4, "Exiting Convert() from CmdBox"); /* if (g_processing_fields) g_processing_fields--;*/ if (code == BOX_VBOX) { CmdEndParagraph(0); CmdIndent(INDENT_INHIBIT); } else { changeTexMode(mode); } diagnostics(4, "Exited CmdBox() [%s]", BoxName[code - 1]); } void CmdVerb(int code) /****************************************************************************** purpose: converts the LaTeX-verb-environment to a similar Rtf-style ******************************************************************************/ { char cThis; char markingchar='#'; int num; if (getTexMode() == MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); num = TexFontNumber("Typewriter"); fprintRTF("{\\b0\\i0\\scaps0\\f%d ", num); if (code == VERB_STAR || code == VERB_VERB) { while ((cThis = getRawTexChar())) { if ((cThis != ' ') && (cThis != '*') && !isalpha((int) cThis)) { markingchar = cThis; break; } } } while ((cThis = getRawTexChar()) && cThis != markingchar) putRtfCharEscaped(cThis); fprintRTF("}"); } void CmdVerbatim(int code) /****************************************************************************** convert characters 1:1 until \end{verbatim} or \end{Verbatim} is reached VERBATIM_1 for \begin{verbatim} ... \end{verbatim} VERBATIM_2 for \begin{Verbatim} ... \end{Verbatim} ******************************************************************************/ { char *verbatim_text, *endtag=NULL; /* int num; */ int true_code = code & ~ON; if (code & ON) { diagnostics(4, "Entering CmdVerbatim"); if (true_code != VERBATIM_4) { PushEnvironment(VERBATIM_MODE); CmdEndParagraph(0); CmdIndent(INDENT_NONE); startParagraph("verbatim", PARAGRAPH_GENERIC); } switch (true_code) { case VERBATIM_1: endtag = strdup("\\end{verbatim}"); break; case VERBATIM_2: endtag = strdup("\\end{Verbatim}"); break; case VERBATIM_3: endtag = strdup("\\end{alltt}"); break; case VERBATIM_4: endtag = strdup("\\end{comment}"); break; } verbatim_text = getTexUntil(endtag, 1); UpdateLineNumber(verbatim_text); if (true_code == VERBATIM_3) /* alltt environment */ ConvertAllttString(verbatim_text); else if (true_code == VERBATIM_1 || true_code == VERBATIM_2) { show_string(5, verbatim_text, "verbatim"); putRtfStrEscaped(verbatim_text); } free(verbatim_text); ConvertString(endtag); free(endtag); } else { diagnostics(4, "Exiting CmdVerbatim"); if (true_code != VERBATIM_4) { PopEnvironment(); CmdEndParagraph(0); CmdVspace(VSPACE_SMALL_SKIP); skipWhiteSpace(); } } } void CmdVerse(int code) /****************************************************************************** purpose: converts the LaTeX-Verse-environment to a similar Rtf-style ******************************************************************************/ { CmdEndParagraph(0); switch (code) { case ON: PushEnvironment(VERSE_MODE); CmdIndent(INDENT_USUAL); setLeftMarginIndent(getLeftMarginIndent() + 1134); setLength("parindent", 0); break; case OFF: PopEnvironment(); diagnostics(4, "Exiting \\end{verse}"); CmdIndent(INDENT_INHIBIT); CmdVspace(VSPACE_SMALL_SKIP); break; } } void CmdIgnoreDef( /* @unused@ */ int code) /***************************************************************************** purpose: newenvironments or newcommands which are defined by the user aren't converted into Rtf and so they must be ignored ******************************************************************************/ { char cThis; while ((cThis = getTexChar()) && cThis != '{') { } parseBrace(); } void TranslateGerman(void) /*************************************************************************** purpose: called on active german-mode and " character in input file to handle " as an active (meta-)character. ***************************************************************************/ { char cThis; cThis = getTexChar(); switch (cThis) { case 'a': fprintRTF("\\'e4"); break; case 'o': fprintRTF("\\'f6"); break; case 'u': fprintRTF("\\'fc"); break; case 's': fprintRTF("\\'df"); break; case 'A': fprintRTF("\\'c4"); break; case 'O': fprintRTF("\\'d6"); break; case 'U': fprintRTF("\\'dc"); break; case '|': break; /* ignore */ case '-': break; /* ignore */ case '"': break; /* ignore */ case '\'': fprintRTF("\\ldblquote "); break; case '`': fprintRTF("{\\'84}"); break; case '<': fprintRTF("\\'ab"); break; case '>': fprintRTF("\\'bb"); break; default: fprintRTF("%c", cThis); } } void GermanPrint(int code) { switch (code) { case GP_CK: fprintRTF("ck"); break; case GP_LDBL: fprintRTF("{\\'84}"); break; case GP_L: fprintRTF(","); break; case GP_R: fprintRTF("\\lquote"); break; case GP_RDBL: fprintRTF("\\ldblquote"); } } void CmdIgnoreLet(int code) /****************************************************************************** purpose : ignore \let Format: \let\XXXXX = \YYYYYY or \let\XXXXX\YYYYYY ******************************************************************************/ { char t[100]; char cThis; int i; char *s; s = getSimpleCommand(); cThis = getNonBlank(); if (cThis == '=') cThis = getNonBlank(); t[0] = cThis; for (i=1; i<100; i++) { t[i] = getTexChar(); if (t[i]==' ' || t[i]=='\n') break; } t[i]='\0'; newDefinition(s+1,NULL,t,0); free(s); } typedef struct iftag { char *if_name; /* LaTeX newif name without \newif\if */ int is_true; /* if this name is set to true */ int did_push_env; /* keep track which of 'if' or 'else' is true */ } IfName; /* ifCommands maintains all the \newif CONDitions */ static int iIfNameCount = 0; /* number of if condition names */ static IfName ifCommands[100] = { {NULL,0, 0} }; /* ifEnvs/iIfDepth is used to handle nested conditions. */ static IfName ifEnvs[100]; static int iIfDepth = 0; /* number of nested if conditions */ void CmdNewif( /* @unused@ */ int code) /****************************************************************************** purpose : initiate handing of \newif\ifsomething : \newif\ifSOMETHING : => create a new ENTRY with SOMETHING with false : \SOMETHINGfalse : => set SOMETHING to false : \SOMETHINGtrue : => set SOMETHING to true : \ifSOMETHING : => if SOMETHING is true, process it. : \else : => if SOMETHING is NOT true, process it. : \fi ******************************************************************************/ { char *s; s = getSimpleCommand(); diagnostics(4,"discarding %s",s); if(strncmp(s, "\\if", 3) == 0) { int i; for(i = 0; i < iIfNameCount; i++) { if(strcmp(ifCommands[i].if_name, &s[3]) == 0) break; } if(i < iIfNameCount) diagnostics(WARNING, "Duplicated \\newif command '%s'", s); else { ifCommands[iIfNameCount].if_name = strdup(&s[3]); ifCommands[iIfNameCount].is_true = FALSE; ifCommands[iIfNameCount].did_push_env = FALSE; iIfNameCount++; } } else diagnostics(WARNING, "Mystery \\newif command '%s'", s); if (s) free(s); } void CmdElse( /* @unused@ */ int code) { iIfDepth--; if(ifEnvs[iIfDepth].did_push_env) /* if-closure is true, so else is false */ { fprintRTF("\" }"); ifEnvs[iIfDepth].did_push_env = FALSE; } else /* if-closure is false, so else is true */ { ifEnvs[iIfDepth].did_push_env = TRUE; fprintRTF("{\\v \""); } iIfDepth++; } void CmdFi( /* @unused@ */ int code) { iIfDepth--; if(ifEnvs[iIfDepth].did_push_env) { fprintRTF("\" }"); } } int TryConditionSet(char *command) { int i; if(strncmp(command, "if", 2) == 0) { for(i = 0; i < iIfNameCount; i++) { if(strcmp(&command[2], ifCommands[i].if_name) == 0) { ifEnvs[iIfDepth] = ifCommands[i]; if(ifCommands[i].is_true) { /* no-op */; } else { ifEnvs[iIfDepth].did_push_env = TRUE; fprintRTF("{\\v \""); } iIfDepth++; return TRUE; } } } for(i = 0; i < iIfNameCount; i++) { char *s = ifCommands[i].if_name; char *t = strdup_together(s, "true"); char *f = strdup_together(s, "false"); if(strcmp(command, t) == 0) { ifCommands[i].is_true = TRUE; free(t); free(f); return TRUE; } else if(strcmp(command, f) == 0) { ifCommands[iIfNameCount].is_true = FALSE; free(t); free(f); return TRUE; } free(t); free(f); } return FALSE; } void CmdQuad(int kk) /****************************************************************************** purpose: inserts kk quad spaces ******************************************************************************/ { int z; fprintRTF("{"); for (z = 0; z <= kk; z++) fprintRTF(" "); fprintRTF("}"); } void CmdSpace(float kk) /****************************************************************************** purpose: inserts a space of width kk*space ******************************************************************************/ { int size = (int) (CurrentFontSize() * kk); if (getTexMode() == MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); fprintRTF("{\\fs%d }", size); } /****************************************************************************** purpose: handles \kern command ******************************************************************************/ void CmdKern(int code) { int size = getDimension()*2; /* size is in quarter-points */ fprintRTF("\\expnd%d\\expndtw%d ",size,size); } void CmdFigure(int code) /****************************************************************************** purpose: Process \begin{figure} ... \end{figure} environment This is only complicated because we need to know what to label the caption before the caption is processed. So we just slurp the figure environment, extract the tag, and then process the environment as usual. ******************************************************************************/ { char *figure_contents, *lines, *position, *width; char endfigure[50]; static char oldalignment; int real_code = code & ~ON; switch (real_code) { case FIGURE: strcpy(endfigure, "\\end{figure}"); break; case FIGURE_1: strcpy(endfigure, "\\end{figure*}"); break; case WRAP_FIGURE: strcpy(endfigure, "\\end{wrapfigure}"); break; } if (code & ON) { setCounter("subfigure", 0); CmdEndParagraph(0); oldalignment = getAlignment(); setAlignment(JUSTIFIED); CmdVspace(VSPACE_BIG_SKIP); if (real_code == WRAP_FIGURE) { lines = getBracketParam(); position = getBraceParam(); width = getBraceParam(); if (lines) free(lines); if (position) free(position); if (width) free(width); } else { char * loc = getBracketParam(); diagnostics(4, "entering CmdFigure [%s]", (loc) ? loc : ""); if (loc) free(loc); } g_processing_figure = TRUE; figure_contents = getTexUntil(endfigure, TRUE); g_figure_label = ExtractLabelTag(figure_contents); if (g_endfloat_figures) { if (g_endfloat_markers) { setAlignment(CENTERED); startParagraph("endfloat", PARAGRAPH_GENERIC); incrementCounter("endfloatfigure"); /* two separate counters */ fprintRTF("["); /* one for figures and one for */ ConvertBabelName("FIGURENAME"); /* endfloat figures */ fprintRTF(" "); if (g_document_type != FORMAT_ARTICLE) fprintRTF("%d.", getCounter("chapter")); fprintRTF("%d about here]", getCounter("endfloatfigure")); } } else if (g_latex_figures) { char *caption, *new_caption, *label; caption = ExtractAndRemoveTag("\\caption", figure_contents); label = ExtractAndRemoveTag("\\label", figure_contents); PrepareDisplayedBitmap("figure"); WriteLatexAsBitmapOrEPS("\\begin{figure}", figure_contents, "\\end{figure}", BITMAP); FinishDisplayedBitmap(); new_caption = strdup_together3("\\caption{", caption, "}"); ConvertString(new_caption); safe_free(label); safe_free(caption); safe_free(new_caption); } else { startParagraph("figure", PARAGRAPH_GENERIC); ConvertString(figure_contents); } free(figure_contents); ConvertString(endfigure); } else { safe_free(g_figure_label); g_processing_figure = FALSE; diagnostics(4, "exiting CmdFigure"); setAlignment(oldalignment); CmdEndParagraph(0); CmdVspace(VSPACE_BIG_SKIP); } } void CmdSubFigure(int code) { char *caption, *contents; diagnostics(4,"CmdSubFigure"); caption = getBracketParam(); contents = getBraceParam(); startParagraph("subfigure", PARAGRAPH_FIRST); /* insert the figure */ ConvertString(contents); free(contents); CmdEndParagraph(0); /* now the caption */ if (caption) { int n; startParagraph("subfigure", PARAGRAPH_FIRST); n = getCounter("subfigure"); fprintRTF("(%c) ", (char) (n + (int) 'a')); ConvertString(caption); CmdEndParagraph(0); free(caption); } incrementCounter("subfigure"); } static void FixTildes(char *s) { char *p, *p3; while ((p = strstr(s, "\\~{}")) != NULL) { *p = '~'; p++; p3 = p + 3; while (*p3) { *p++ = *p3++; } *p = '\0'; } } void CmdLink(int code) /****************************************************************************** purpose: hyperlatex support for \link{anchor}[ltx]{label} and \xlink{anchor}[printed reference]{URL} ******************************************************************************/ { char *anchor, *latex, *url; diagnostics(4, "Entering hyperlatex \\link command"); anchor = getBraceParam(); latex = getBracketParam(); url = getBraceParam(); FixTildes(url); fprintRTF("{\\field\\fldedit{\\*\\fldinst { HYPERLINK \"%s\" \\\\* MERGEFORMAT }}", url); fprintRTF("{\\fldrslt {\\cs15\\ul\\cf2 "); ConvertString(anchor); fprintRTF("}}}"); if (latex) free(latex); free(anchor); free(url); } void CmdColumn(int code) /****************************************************************************** purpose: chooses between one/two-columns parameter: number of columns globals: twocolumn: true if twocolumn-mode is set ******************************************************************************/ { switch (code) { case One_Column: fprintRTF("\\page\n\\colsx709\\endnhere "); /* new page & one column */ twocolumn = FALSE; break; case Two_Column: fprintRTF("\\page\n\\cols2\\colsx709\\endnhere "); /* new page & two * columns */ twocolumn = TRUE; break; } /* switch */ } void Cmd_OptParam_Without_braces( /* @unused@ */ int code) /****************************************************************************** purpose: gets an optional parameter which isn't surrounded by braces but by spaces ******************************************************************************/ { char cNext = ' '; char cLast = ' '; do { cLast = cNext; cNext = getTexChar(); } while ((cNext != ' ') && (cNext != '\\') && (cNext != '{') && (cNext != '\n') && (cNext != ',') && ((cNext != '.') || (isdigit((int) cLast))) && /* * . doesn't mean the end of an command inside an number of the type * real */ (cNext != '}') && (cNext != '\"') && (cNext != '[') && (cNext != '$')); ungetTexChar(cNext); } void CmdBottom(int code) /****************************************************************************** purpose: ignore raggedbottom command ******************************************************************************/ { } /****************************************************************************** parameter: code: on/off-option globals : article and titlepage from the documentstyle ******************************************************************************/ void CmdAbstract(int code) { static char oldalignment; if (code == ABSTRACT_PRELUDE_BEGIN || code == ABSTRACT_SIMPLE || code == (ABSTRACT_BEGIN_END | ON) ) { CmdEndParagraph(0); oldalignment = getAlignment(); if (g_document_type == FORMAT_REPORT || titlepage) CmdNewPage(NewPage); startParagraph("abstract_title", PARAGRAPH_GENERIC); ConvertBabelName("ABSTRACTNAME"); setLeftMarginIndent(getLeftMarginIndent() + 1024); setRightMarginIndent(getRightMarginIndent() + 1024); setAlignment(JUSTIFIED); CmdEndParagraph(0); CmdIndent(INDENT_USUAL); startParagraph("Normal", PARAGRAPH_GENERIC); } if (code == ABSTRACT_SIMPLE) { char *s = getBraceParam(); ConvertString(s); free(s); } if (code == ABSTRACT_PRELUDE_END || code == (ABSTRACT_BEGIN_END | OFF) ) { CmdIndent(INDENT_USUAL); CmdEndParagraph(0); setLeftMarginIndent(getLeftMarginIndent() - 1024); setRightMarginIndent(getRightMarginIndent() - 1024); setAlignment(oldalignment); CmdVspace(VSPACE_MEDIUM_SKIP); /* put \medskip after abstract */ } } /* * Keywords */ void CmdKeywords(int code) { char *keywords = getBraceParam(); if (NULL != keywords) { CmdEndParagraph(0); CmdVspace(VSPACE_SMALL_SKIP); startParagraph("Normal", PARAGRAPH_FIRST); fprintRTF("{{\\b "); ConvertBabelName("KEYWORDS"); fprintRTF("}\\tab\n"); fprintRTF("%s",keywords); fprintRTF("\n}\n"); CmdEndParagraph(0); CmdVspace(VSPACE_SMALL_SKIP); free(keywords); } } void CmdAcknowledgments(int code) { static char oldalignment; CmdEndParagraph(0); if (code == ON) { CmdVspace(VSPACE_BIG_SKIP); startParagraph("acknowledgments", PARAGRAPH_GENERIC); fprintRTF("\n{\\b "); fprintRTF("Acknowledgments"); /* should be in cfg file, but it is not */ fprintRTF("}\n"); CmdEndParagraph(0); oldalignment = getAlignment(); setAlignment(JUSTIFIED); } else { setAlignment(oldalignment); CmdVspace(VSPACE_BIG_SKIP); /* put \medskip after acknowledgments */ } } void CmdTitlepage(int code) /****************************************************************************** purpose: \begin{titlepage} ... \end{titlepage} add pagebreaks before and after this environment need to add code to supress page numbering and display ******************************************************************************/ { CmdNewPage(NewPage); } void CmdMinipage(int code) /****************************************************************************** purpose: recognize and parse Minipage parameters currently this does nothing ******************************************************************************/ { char *v_align, *width; switch (code) { case ON: v_align = getBracketParam(); width = getBraceParam(); if (v_align) free(v_align); free(width); break; case OFF: break; } } void CmdColsep(int code) /*************************************************************************** * purpose: hyperlatex support, handles '&' as in Convert() in convert.c only called by \S ***************************************************************************/ { if (!g_processing_tabular) { fprintRTF("{\\'a7}"); return; } diagnostics(0, "CmdColsep called"); /* actCol++;*/ if (getTexMode() == MODE_DISPLAYMATH || getTexMode() == MODE_MATH) { /* in an eqnarray or array environment */ fprintRTF("\\tab\n"); } else { fprintRTF("\\cell}{\\pard\\intbl "); /* if (colFmt == NULL) diagnostics(WARNING, "Fatal, Fatal! CmdColsep called whith colFmt == NULL."); else fprintRTF("\\q%c ", colFmt[actCol]); */ } } void CmdVerbosityLevel(int code) /*************************************************************************** * purpose: insert \verbositylevel{5} in the tex file to set the verbosity in the LaTeX file! ***************************************************************************/ { char *s = getBraceParam(); g_verbosity_level = atoi(s); free(s); } /* convert integer to roman number --- only works up correctly up to 39 */ char *roman_item(int n, int upper) { char s[50]; int i = 0; while (n >= 10) { n -= 10; s[i] = (upper) ? 'X' : 'x'; i++; } if (n == 9) { s[i] = (upper) ? 'I' : 'i'; i++; s[i] = (upper) ? 'X' : 'x'; i++; s[i] = '\0'; return strdup(s); } if (n >= 5) { n -= 5; s[i] = (upper) ? 'V' : 'v'; i++; } if (n == 4) { s[i] = (upper) ? 'I' : 'i'; i++; s[i] = (upper) ? 'V' : 'v'; i++; s[i] = '\0'; return strdup(s); } while (n >= 1) { n -= 1; s[i] = (upper) ? 'I' : 'i'; i++; } s[i] = '\0'; return strdup(s); } void CmdNonBreakSpace(int code) { char cThis; /* int size = CurrentFontSize() * ((float) code / 100.0);*/ cThis = getNonSpace(); ungetTexChar(cThis); if (getTexMode() == MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); /* fprintRTF("{\\fs%d\\~}", size);*/ if (code == 100) fprintRTF("\\~ "); else fprintRTF("{\\charscalex%d\\~}", code); } void CmdIf(int code) /****************************************************************************** purpose: handles \ifx by skippint to next \fi ******************************************************************************/ { char *s = getTexUntil("\\fi", FALSE); safe_free(s); } /****************************************************************************** purpose: handles \endinput ******************************************************************************/ void CmdEndInput(int code) { PopSource(); } /****************************************************************************** purpose: handles \textfont ******************************************************************************/ void CmdTextFont(int code) { char *s = getBraceParam(); free(s); } /****************************************************************************** purpose: ignores \the ******************************************************************************/ void CmdThe(int code) { } /****************************************************************************** purpose: reads \rule[raise-height]{width}{height} The \rule command generates a rectangular "blob of ink." It can be used to produce horizontal or vertical lines. The arguments are raise-height specifies how high to raise the rule (optional) width specifies the length of the rule (mandatory) height specifies the height of the rule (mandatory) The default value for raise-height is zero; a negative value lowers the rule. The reference point of the rule box is the lower left-hand corner. ******************************************************************************/ void CmdRule(int code) { char *raise, *width, *height; int dim,n,i; raise = getBracketParam(); width = getBraceParam(); height = getBraceParam(); dim = getStringDimension(width); n = dim / CurrentFontSize()/5; for (i=0; i", entire_if); free(entire_if); } static int NumForColor(char * color) { int n = -1; if (strcmp(color, "black") == 0) n = 1; else if (strcmp(color, "blue") == 0) n = 2; else if (strcmp(color, "cyan") == 0) n = 3; else if (strcmp(color, "green") == 0) n = 4; else if (strcmp(color, "magenta") == 0) n = 5; else if (strcmp(color, "red") == 0) n = 6; else if (strcmp(color, "yellow") == 0) n = 7; else if (strcmp(color, "white") == 0) n = 8; else if (strcmp(color, "gray") == 0) n = 16; else if (strcmp(color, "Almond") == 0) n = 17; else if (strcmp(color, "AntiqueBrass") == 0) n = 18; else if (strcmp(color, "Apricot") == 0) n = 19; else if (strcmp(color, "Aquamarine") == 0) n = 20; else if (strcmp(color, "Asparagus") == 0) n = 21; else if (strcmp(color, "AtomicTangerine") == 0) n = 22; else if (strcmp(color, "BananaMania") == 0) n = 23; else if (strcmp(color, "Beaver") == 0) n = 24; else if (strcmp(color, "Bittersweet") == 0) n = 25; else if (strcmp(color, "Black") == 0) n = 26; else if (strcmp(color, "Blue") == 0) n = 27; else if (strcmp(color, "BlueBell") == 0) n = 28; else if (strcmp(color, "BlueGreen") == 0) n = 29; else if (strcmp(color, "BlueViolet") == 0) n = 30; else if (strcmp(color, "Blush") == 0) n = 31; else if (strcmp(color, "BrickRed") == 0) n = 32; else if (strcmp(color, "Brown") == 0) n = 33; else if (strcmp(color, "BurntOrange") == 0) n = 34; else if (strcmp(color, "BurntSienna") == 0) n = 35; else if (strcmp(color, "CadetBlue") == 0) n = 36; else if (strcmp(color, "Canary") == 0) n = 37; else if (strcmp(color, "CaribbeanGreen") == 0) n = 38; else if (strcmp(color, "CarnationPink") == 0) n = 39; else if (strcmp(color, "Cerise") == 0) n = 40; else if (strcmp(color, "Cerulean") == 0) n = 41; else if (strcmp(color, "Chestnut") == 0) n = 42; else if (strcmp(color, "Copper") == 0) n = 43; else if (strcmp(color, "Cornflower") == 0) n = 44; else if (strcmp(color, "CottonCandy") == 0) n = 45; else if (strcmp(color, "Dandelion") == 0) n = 46; else if (strcmp(color, "Denim") == 0) n = 47; else if (strcmp(color, "DesertSand") == 0) n = 48; else if (strcmp(color, "Eggplant") == 0) n = 49; else if (strcmp(color, "ElectricLime") == 0) n = 50; else if (strcmp(color, "Fern") == 0) n = 51; else if (strcmp(color, "ForestGreen") == 0) n = 52; else if (strcmp(color, "Fuchsia") == 0) n = 53; else if (strcmp(color, "FuzzyWuzzyBrown") == 0) n = 54; else if (strcmp(color, "Gold") == 0) n = 55; else if (strcmp(color, "Goldenrod") == 0) n = 56; else if (strcmp(color, "GrannySmithApple") == 0) n = 57; else if (strcmp(color, "Gray") == 0) n = 58; else if (strcmp(color, "Green") == 0) n = 59; else if (strcmp(color, "GreenYellow") == 0) n = 60; else if (strcmp(color, "HotMagenta") == 0) n = 61; else if (strcmp(color, "InchWorm") == 0) n = 62; else if (strcmp(color, "Indigo") == 0) n = 63; else if (strcmp(color, "JazzberryJam") == 0) n = 64; else if (strcmp(color, "JungleGreen") == 0) n = 65; else if (strcmp(color, "LaserLemon") == 0) n = 66; else if (strcmp(color, "Lavender") == 0) n = 67; else if (strcmp(color, "MacaroniandCheese") == 0) n = 68; else if (strcmp(color, "Magenta") == 0) n = 69; else if (strcmp(color, "Mahogany") == 0) n = 70; else if (strcmp(color, "Manatee") == 0) n = 71; else if (strcmp(color, "MangoTango") == 0) n = 72; else if (strcmp(color, "Maroon") == 0) n = 73; else if (strcmp(color, "Mauvelous") == 0) n = 74; else if (strcmp(color, "Melon") == 0) n = 75; else if (strcmp(color, "MidnightBlue") == 0) n = 76; else if (strcmp(color, "MountainMeadow") == 0) n = 77; else if (strcmp(color, "NavyBlue") == 0) n = 78; else if (strcmp(color, "NeonCarrot") == 0) n = 79; else if (strcmp(color, "OliveGreen") == 0) n = 80; else if (strcmp(color, "Orange") == 0) n = 81; else if (strcmp(color, "Orchid") == 0) n = 82; else if (strcmp(color, "OuterSpace") == 0) n = 83; else if (strcmp(color, "OutrageousOrange") == 0) n = 84; else if (strcmp(color, "PacificBlue") == 0) n = 85; else if (strcmp(color, "Peach") == 0) n = 86; else if (strcmp(color, "Periwinkle") == 0) n = 87; else if (strcmp(color, "PiggyPink") == 0) n = 88; else if (strcmp(color, "PineGreen") == 0) n = 89; else if (strcmp(color, "PinkFlamingo") == 0) n = 90; else if (strcmp(color, "PinkSherbet") == 0) n = 91; else if (strcmp(color, "Plum") == 0) n = 92; else if (strcmp(color, "PurpleHeart") == 0) n = 93; else if (strcmp(color, "PurpleMountainMajesty") == 0) n = 94; else if (strcmp(color, "PurplePizzazz") == 0) n = 95; else if (strcmp(color, "RadicalRed") == 0) n = 96; else if (strcmp(color, "RawSienna") == 0) n = 97; else if (strcmp(color, "RazzleDazzleRose") == 0) n = 98; else if (strcmp(color, "Razzmatazz") == 0) n = 99; else if (strcmp(color, "Red") == 0) n = 100; else if (strcmp(color, "RedOrange") == 0) n = 101; else if (strcmp(color, "RedViolet") == 0) n = 102; else if (strcmp(color, "RobinEggBlue") == 0) n = 103; else if (strcmp(color, "RoyalPurple") == 0) n = 104; else if (strcmp(color, "Salmon") == 0) n = 105; else if (strcmp(color, "Scarlet") == 0) n = 106; else if (strcmp(color, "ScreaminGreen") == 0) n = 107; else if (strcmp(color, "SeaGreen") == 0) n = 108; else if (strcmp(color, "Sepia") == 0) n = 109; else if (strcmp(color, "Shadow") == 0) n = 110; else if (strcmp(color, "Shamrock") == 0) n = 111; else if (strcmp(color, "ShockingPink") == 0) n = 112; else if (strcmp(color, "Silver") == 0) n = 113; else if (strcmp(color, "SkyBlue") == 0) n = 114; else if (strcmp(color, "SpringGreen") == 0) n = 115; else if (strcmp(color, "Sunglow") == 0) n = 116; else if (strcmp(color, "SunsetOrange") == 0) n = 117; else if (strcmp(color, "Tan") == 0) n = 118; else if (strcmp(color, "TickleMePink") == 0) n = 119; else if (strcmp(color, "Timberwolf") == 0) n = 120; else if (strcmp(color, "TropicalRainForest") == 0) n = 121; else if (strcmp(color, "Tumbleweed") == 0) n = 122; else if (strcmp(color, "TurquoiseBlue") == 0) n = 123; else if (strcmp(color, "UnmellowYellow") == 0) n = 124; else if (strcmp(color, "Violet(Purple)") == 0) n = 125; else if (strcmp(color, "VioletRed") == 0) n = 126; else if (strcmp(color, "VividTangerine") == 0) n = 127; else if (strcmp(color, "VividViolet") == 0) n = 128; else if (strcmp(color, "White") == 0) n = 129; else if (strcmp(color, "WildBlueYonder") == 0) n = 130; else if (strcmp(color, "WildStrawberry") == 0) n = 131; else if (strcmp(color, "WildWatermelon") == 0) n = 132; else if (strcmp(color, "Wisteria") == 0) n = 133; else if (strcmp(color, "Yellow") == 0) n = 134; else if (strcmp(color, "YellowGreen") == 0) n = 135; else if (strcmp(color, "YellowOrange") == 0) n = 136; return n; } /****************************************************************************** purpose: support for \color{thecolor} and \textcolor{color}{words to be in color} horrible implementation ... but who uses color anyhow?? ******************************************************************************/ void CmdTextColor(int code) { char *color, *text, *color1, *text1; int n; diagnostics(4, "Entering CmdTextColor"); color1 = getBraceParam(); color = strdup_noendblanks(color1); n = NumForColor(color); free(color1); free(color); if (code) { /* non-zero code indicates \textcolor */ text1 = getBraceParam(); text = strdup_noendblanks(text1); fprintRTF("{"); if (n > 0) fprintRTF("\\cf%d ", n); ConvertString(text); fprintRTF("}"); free(text); free(text1); } else { if (n > 0) fprintRTF("\\cf%d ", n); } } /****************************************************************************** purpose: parse \rlap{text} or \llap{text} , but ignore spacing changes ******************************************************************************/ void CmdLap(int code) { char *s = getBraceParam(); ConvertString(s); free(s); } latex2rtf-2.3.18/vertical.c0000777000175000017500000005606713050672355015724 0ustar wilfriedwilfried/* vertical.c - routines that handle vertical space issues Copyright (C) 2002 The Free Software Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. This file is available from http://sourceforge.net/projects/latex2rtf/ ************************************************************************** The tricky part is that latex2rtf is a one-pass converter. The right thing must be done with each character. Consider the sequence \vspace{1cm}\noindent New paragraph. When latex2rtf reaches the 'N', then a new paragraph should be started. We know it is a new paragraph because \vspace should have put the converter into a MODE_VERTICAL and characters are only emitted in MODE_HORIZONTAL. RTF needs to set up the entire paragraph at one time and the * text alignment * line spacing * vertical space above * left margin * right margin * paragraph indentation must all be emitted at this time. This file contains routines that affect these quantities ******************************************************************************/ #include #include #include #include #include "main.h" #include "funct1.h" #include "cfg.h" #include "utils.h" #include "parser.h" #include "lengths.h" #include "vertical.h" #include "convert.h" #include "commands.h" #include "styles.h" #include "fonts.h" #include "stack.h" #include "xrefs.h" #include "counters.h" #include "fields.h" #include "acronyms.h" static int g_TeX_mode = MODE_VERTICAL; static int g_line_spacing = 240; static int g_paragraph_no_indent = FALSE; static int g_paragraph_inhibit_indent = FALSE; static int g_vertical_space_to_add = 0; static int g_right_margin_indent; static int g_left_margin_indent; static int g_page_new = FALSE; static int g_column_new = FALSE; static int g_alignment = JUSTIFIED; static int g_par_brace = 0; char TexModeName[7][25] = { "bad", "internal vertical", "horizontal", "restricted horizontal", "math", "displaymath", "vertical" }; char ParOptionName[8][13] = { "bad", "FIRST", "GENERIC", "SECTION", "EQUATION", "SLASHSLASH", "LIST", "ENVIRONMENT"}; /****************************************************************************** left and right margin accessor functions ******************************************************************************/ void setLeftMarginIndent(int indent) { g_left_margin_indent = indent; } void setRightMarginIndent(int indent) { g_right_margin_indent = indent; } int getLeftMarginIndent(void) { return g_left_margin_indent; } int getRightMarginIndent(void) { return g_right_margin_indent; } /****************************************************************************** paragraph alignment accessor functions ******************************************************************************/ void setAlignment(int align) { g_alignment = align; } int getAlignment(void) { return g_alignment; } /****************************************************************************** vertical space between paragraph accessor functions ******************************************************************************/ void setVspace(int space) { g_vertical_space_to_add = space; } int getVspace(void) { return g_vertical_space_to_add; } /****************************************************************************** line spacing accessor functions ******************************************************************************/ static void setLineSpacing(int spacing) { g_line_spacing = spacing; } static int getLineSpacing(void) { return g_line_spacing; } /****************************************************************************** TeX has six modes: MODE_VERTICAL Building the main vertical list, from which the pages of output are derived MODE_INTERNAL_VERTICAL Building a vertical list from a vbox MODE_HORIZONTAL Building a horizontal list for a paragraph MODE_RESTICTED_HORIZONTAL Building a horizontal list for an hbox MODE_MATH Building a mathematical formula to be placed in a horizontal list MODE_DISPLAYMATH Building a mathematical formula to be placed on a line by itself, temporarily interrupting the current paragraph LaTeX has three modes: paragraph mode, math mode, or left-to-right mode. This is not a particularly useful, since paragraph mode is a combination of vertical and horizontal modes. Why bother keeping track of modes? Mostly so that paragraph indentation gets handled correctly, as well as vertical and horizontal space. The mode is also the primary way that the end of a paragraph is signalled. ******************************************************************************/ void setTexMode(int mode) { diagnostics(6, "TeX mode setting from [%s] -> [%s]", TexModeName[g_TeX_mode], TexModeName[mode]); g_TeX_mode = mode; } int getTexMode(void) { return g_TeX_mode; } void changeTexMode(int mode) { diagnostics(6, "TeX mode changing from [%s] -> [%s]", TexModeName[g_TeX_mode], TexModeName[mode]); if (g_TeX_mode == MODE_VERTICAL && mode == MODE_HORIZONTAL) startParagraph("Normal", PARAGRAPH_GENERIC); if (g_TeX_mode == MODE_HORIZONTAL && mode == MODE_VERTICAL) CmdEndParagraph(0); g_TeX_mode = mode; } /****************************************************************************** RTF codes to create a new paragraph. If the paragraph should not be indented then emit \fi0 otherwise use the current value of \parindent as the indentation of the first line. style describes the type of paragraph ... "Normal" "caption" "author" "bibitem" "section" etc. indenting describes how this paragraph and (perhaps) the following paragraph should be indented PARAGRAPH_SECTION_TITLE (do not indent this paragraph or the next) PARAGRAPH_FIRST (do not indent this paragraph but indent the next) PARAGRAPH_GENERIC (indent as needed) PARAGRAPH_LIST (the first paragraph of a list item) PARAGRAPH_SLASHSLASH PARAGRAPH_ENVIRONMENT (include topsep before and after final --- not impl.) Sometimes it is necessary to influence the next paragraph will be before it has been parsed. For example, a section command should create a paragraph for the section title and then the next paragraph encountered should be handled like as a first paragraph. The problem arises because "\n\n" means different things in different contexts. After \section{aaa} "\n\n" does not indicate that the next paragraph should be indented. However after \end{itemize} "\n\n" means that the next paragraph should be indented. Now CmdEndParagraph() will set g_paragraph_inhibit_indent to FALSE so that the common case of starting new paragraphs is handled appropriately. For PARAGRAPH_FIRST, then it is the first paragraph in a section. Usually the first paragraph is not indented. However, when the document is being typeset in french it should have normal indentation. Another special case occurs when the paragraph being typeset is in a list environment. In this case, we need to indent according to the current parindent to obtain the proper hanging indentation The default is to indent according to the current parindent. However, if the g_paragraph_inhibit_indent flag or the g_paragraph_no_indent flag is TRUE, then do not indent the next line. Typically these flags are set just after a figure or equation or table. ******************************************************************************/ void startParagraph(const char *style, int indenting) { int width, a, b, c; int parindent,parskip; static char last_style[50] = "Normal"; static char the_style[50] = "Normal"; static int last_indent = 0; static int next_paragraph_after_section = TRUE; int orig_font_family = CurrentFontFamily(); int orig_font_size = CurrentFontSize(); int orig_font_series = CurrentFontSeries(); int orig_font_shape = CurrentFontShape(); /* special style "last" will just repeat previous */ if (strcmp(style,"last")==0) { diagnostics(4,"using last style = '%s'",last_style); if (indenting != PARAGRAPH_SLASHSLASH) indenting = last_indent; strcpy(the_style,last_style); } else { diagnostics(4,"using style = '%s'",style); last_indent = indenting; strcpy(last_style,style); strcpy(the_style,style); } parindent = getLength("parindent"); parskip = getLength("parskip"); if (g_par_brace !=0 ) diagnostics(5,"******************* starting %s paragraph with braces = %d", style, g_par_brace); if (g_par_brace == 1) CmdEndParagraph(0); width = getLength("textwidth"); a = (int) (0.45 * width); b = (int) (0.50 * width); c = (int) (0.55 * width); switch(indenting) { case PARAGRAPH_SECTION_TITLE: /* titles are never indented */ diagnostics(5, "PARAGRAPH_SECTION_TITLE"); parindent = 0; break; case PARAGRAPH_FIRST: /* French indents first paragraph */ diagnostics(5, "PARAGRAPH_FIRST"); if (!FrenchMode) parindent = 0; break; case PARAGRAPH_EQUATION: /* typically centered with no indent */ diagnostics(5, "PARAGRAPH_EQUATION"); parindent = 0; break; case PARAGRAPH_SLASHSLASH: /* \\ is a line break, don't indent */ diagnostics(5, "PARAGRAPH_SLASHSLASH"); parindent = 0; break; case PARAGRAPH_LIST: /* first paragraph in a list, don't monkey */ diagnostics(5, "PARAGRAPH_LIST"); /* with indenting */ break; default: /* Worry about not indenting */ diagnostics(5, "PARAGRAPH_GENERIC"); if (next_paragraph_after_section || g_paragraph_no_indent || g_paragraph_inhibit_indent || g_processing_list_environment) parindent = 0; break; } if (g_processing_preamble) { diagnostics(5,"Encountered StartParagraph() in preamble"); return; } if (g_par_brace != 0) diagnostics(5,"starting paragraph with braces = %d", g_par_brace); g_par_brace++; diagnostics(5, "Paragraph mode %s", TexModeName[getTexMode()]); diagnostics(5, "Paragraph option %s", ParOptionName[indenting]); diagnostics(5, "Noindent is %s", (g_paragraph_no_indent) ? "TRUE" : "FALSE"); diagnostics(5, "Inhibit is %s", (g_paragraph_inhibit_indent) ? "TRUE" : "FALSE"); diagnostics(5, "left indent is %d", g_left_margin_indent); diagnostics(5, "right indent is %d", g_right_margin_indent); diagnostics(5, "current parindent %d", getLength("parindent")); diagnostics(5, "this parindent %d", parindent); diagnostics(5, "current style is %s", the_style); diagnostics(6, "current family %d", CurrentFontFamily()); diagnostics(6, "current font size %d", CurrentFontSize()); diagnostics(6, "current font series %d", CurrentFontSeries()); diagnostics(6, "current font shape %d", CurrentFontShape()); if (g_page_new) { fprintRTF("\\page\n"); /* causes new page */ g_page_new = FALSE; g_column_new = FALSE; } if (g_column_new) { fprintRTF("\\column\n"); /* causes new column */ g_column_new = FALSE; } fprintRTF("\\pard\\plain"); InsertStyle(the_style); if (strcmp(the_style,"equation")==0) fprintRTF("\\tqc\\tx%d", b); if (strcmp(the_style,"equationNum")==0) fprintRTF("\\tqc\\tx%d\\tqr\\tx%d", b, width); if (strcmp(the_style,"equationAlign")==0) fprintRTF("\\tqr\\tx%d\\tql\\tx%d", a, b); if (strcmp(the_style,"equationAlignNum")==0) fprintRTF("\\tqr\\tx%d\\tql\\tx%d\\tqr\\tx%d", a, b, width); if (strcmp(the_style,"equationArray")==0) fprintRTF("\\tqr\\tx%d\\tqc\\tx%d\\tql\\tx%d", a, b, c); if (strcmp(the_style,"equationArrayNum")==0) fprintRTF("\\tqr\\tx%d\\tqc\\tx%d\\tql\\tx%d\\tqr\\tx%d", a, b, c, width); if (strcmp(the_style,"bitmapCenter")==0) fprintRTF("\\tqc\\tx%d\\tqr\\tx%d", b, width); /* TODO change width/6 with hint */ if (strcmp(the_style,"acronym")==0) fprintRTF("\\tx%d\\tqr\\tldot\\tx%d", acronymHint(width), width); fprintRTF("\\sl%i\\slmult1 ", getLineSpacing()); if (getVspace() > 0) fprintRTF("\\sb%d ", getVspace()); setVspace(parskip); if (g_left_margin_indent != 0) fprintRTF("\\li%d", g_left_margin_indent); if (g_right_margin_indent != 0) fprintRTF("\\ri%d", g_right_margin_indent); fprintRTF("\\fi%d ", parindent); /* these are strstr because might end in 0 */ if (strstr("part",the_style) == NULL && strstr("title",the_style) == NULL && strstr("chapter",the_style) == NULL && strstr("section",the_style) == NULL ) { if (CurrentFontFamily() != orig_font_family) fprintRTF("\\f%d ", orig_font_family); if (CurrentFontSize() != orig_font_size) fprintRTF("\\fs%d ", orig_font_size); if (CurrentFontSeries() != orig_font_series) CmdFontSeries(orig_font_series); if (CurrentFontShape() != orig_font_shape) CmdFontShape(orig_font_shape); } setTexMode(MODE_HORIZONTAL); if (!g_processing_list_environment) { g_paragraph_no_indent = FALSE; if (indenting == PARAGRAPH_SECTION_TITLE) g_paragraph_inhibit_indent = TRUE; else g_paragraph_inhibit_indent = FALSE; } if (indenting == PARAGRAPH_SECTION_TITLE && !FrenchMode) next_paragraph_after_section = TRUE; else next_paragraph_after_section = FALSE; } void CmdEndParagraph(int code) /****************************************************************************** purpose : ends the current paragraph and return to MODE_VERTICAL. ******************************************************************************/ { int mode = getTexMode(); diagnostics(5, "CmdEndParagraph mode = %s, braces=%d", TexModeName[mode], g_par_brace); if (g_par_brace == 1) { endAllFields(); fprintRTF("\\par\n"); setTexMode(MODE_VERTICAL); g_par_brace=0; g_paragraph_inhibit_indent = FALSE; } else { if (getTexMode() != MODE_VERTICAL) diagnostics(5,"*********************** ending paragraph with braces = %d", g_par_brace); g_paragraph_inhibit_indent = FALSE; } } void CmdHfill(int code) /****************************************************************************** purpose : should do something about the paragraph style but for now, just make sure that we are in horizontal mode. ******************************************************************************/ { if (getTexMode()==MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); } void CmdVspace(int code) /****************************************************************************** purpose : vspace, vspace*, and vskip note that \vskip3mm will end a paragraph, but \vspace{1cm} will not. ******************************************************************************/ { int vspace=0; char *s; switch (code) { case VSPACE_VSPACE: s = getBraceParam(); vspace = getStringDimension(s); free(s); break; case VSPACE_VSKIP: vspace = getDimension(); if (getTexMode() != MODE_VERTICAL) { CmdEndParagraph(0); CmdIndent(INDENT_INHIBIT); } break; case VSPACE_SMALL_SKIP: vspace = getLength("smallskipamount"); if (getTexMode() != MODE_VERTICAL) { CmdEndParagraph(0); CmdIndent(INDENT_INHIBIT); } break; case VSPACE_MEDIUM_SKIP: vspace = getLength("medskipamount"); if (getTexMode() != MODE_VERTICAL) { CmdEndParagraph(0); CmdIndent(INDENT_INHIBIT); } break; case VSPACE_BIG_SKIP: vspace = getLength("bigskipamount"); if (getTexMode() != MODE_VERTICAL) { CmdEndParagraph(0); CmdIndent(INDENT_INHIBIT); } break; } if (getTexMode() == MODE_VERTICAL) setVspace(getVspace()+vspace); } void CmdIndent(int code) /****************************************************************************** purpose : set flags so that startParagraph() does the right thing INDENT_INHIBIT allows the next paragraph to be indented if a paragraph break occurs before startParagraph() is called INDENT_NONE tells startParagraph() to not indent the next paragraph INDENT_USUAL has startParagraph() use the value of \parindent ******************************************************************************/ { diagnostics(5, "CmdIndent TeX Mode = %s", TexModeName[getTexMode()]); if (code == INDENT_NONE) g_paragraph_no_indent = TRUE; else if (code == INDENT_INHIBIT) g_paragraph_inhibit_indent = TRUE; else if (code == INDENT_USUAL) { g_paragraph_no_indent = FALSE; g_paragraph_inhibit_indent = FALSE; } diagnostics(5, "Noindent is %d", (int) g_paragraph_no_indent); diagnostics(5, "Inhibit is %d", (int) g_paragraph_inhibit_indent); } void CmdNewPage(int code) /****************************************************************************** purpose: starts a new page parameter: code: newpage or newcolumn-option ******************************************************************************/ { diagnostics(5, "CmdNewPage mode = %d", getTexMode()); switch (code) { case NewPage: g_page_new = TRUE; break; case NewColumn: g_column_new = TRUE; break; } } /****************************************************************************** purpose: support for \singlespacing, \onehalfspacing, and \doublespacing ******************************************************************************/ void CmdLineSpacing(int code) { setLineSpacing(code); } /****************************************************************************** purpose: support \begin{spacing}{xx} ... \end{spacing} ******************************************************************************/ void CmdSpacingEnviron(int code) { char *sizeParam; static int originalSpacing=240; float spacing; int true_code = code & ~ON; if (code & ON) { originalSpacing = getLineSpacing(); if (true_code==2) setLineSpacing(480); else { sizeParam = getBraceParam(); if (*sizeParam) { sscanf(sizeParam, "%f", &spacing); setLineSpacing((int)240*spacing); free(sizeParam); } } PushEnvironment(SPACING_MODE); return; } CmdEndParagraph(0); PopEnvironment(); setLineSpacing(originalSpacing); } void CmdAlign(int code) /***************************************************************************** purpose : sets the alignment for a paragraph parameter : code: alignment centered, justified, left or right ********************************************************************************/ { char *s; static char old_alignment_before_center = JUSTIFIED; static char old_alignment_before_right = JUSTIFIED; static char old_alignment_before_left = JUSTIFIED; static char old_alignment_before_centerline = JUSTIFIED; if (code == PAR_VCENTER) { int restart_field=0; if (EQ_field_active()) { diagnostics(4,"ending field due to \\vcenter"); restart_field = 1; endCurrentField(); } s = getBraceParam(); ConvertString(s); free(s); if (restart_field) startField(FIELD_EQ); return; } CmdEndParagraph(0); switch (code) { case (PAR_CENTERLINE): old_alignment_before_centerline = getAlignment(); setAlignment(CENTERED); fprintRTF("{"); diagnostics(4, "Entering Convert from CmdAlign (centerline)"); Convert(); diagnostics(4, "Exiting Convert from CmdAlign (centerline)"); setAlignment(old_alignment_before_centerline); CmdEndParagraph(0); fprintRTF("}"); break; case (PAR_RAGGEDRIGHT): old_alignment_before_centerline = getAlignment(); setAlignment(LEFT); diagnostics(4, "Entering Convert from CmdAlign (raggedright)"); Convert(); diagnostics(4, "Exiting Convert from CmdAlign (raggedright)"); setAlignment(old_alignment_before_centerline); CmdEndParagraph(0); break; case (PAR_CENTER | ON): CmdIndent(INDENT_NONE); old_alignment_before_center = getAlignment(); setAlignment(CENTERED); break; case (PAR_CENTER | OFF): setAlignment(old_alignment_before_center); CmdEndParagraph(0); CmdIndent(INDENT_INHIBIT); break; case (PAR_RIGHT | ON): old_alignment_before_right = getAlignment(); setAlignment(RIGHT); CmdIndent(INDENT_NONE); break; case (PAR_RIGHT | OFF): setAlignment(old_alignment_before_right); CmdIndent(INDENT_INHIBIT); break; case (PAR_LEFT | ON): old_alignment_before_left = getAlignment(); setAlignment(LEFT); CmdIndent(INDENT_NONE); break; case (PAR_LEFT | OFF): setAlignment(old_alignment_before_left); CmdIndent(INDENT_INHIBIT); break; case (PAR_CENTERING): CmdIndent(INDENT_NONE); old_alignment_before_center = getAlignment(); setAlignment(CENTERED); break; } } latex2rtf-2.3.18/equations.h0000777000175000017500000000321213050672360016104 0ustar wilfriedwilfried#define EQN_DOLLAR 2 /* ('$') */ #define EQN_RND_OPEN 3 /* ('/(') */ #define EQN_BRACKET_OPEN 4 /* ('/[') */ #define EQN_RND_CLOSE 5 /* ('/)') */ #define EQN_BRACKET_CLOSE 6 /* ('/]') */ #define EQN_ARRAY 8 /* eqnarray environment */ #define EQN_ARRAY_STAR 9 /* eqnarray* environment */ #define EQN_EQUATION 10 /* equation environment */ #define EQN_EQUATION_STAR 11 /* equation* environment */ #define EQN_MATH 12 /* \begin{math} ... \end{math} */ #define EQN_DISPLAYMATH 13 /* \begin{displaymath} ... \end{displaymath} */ #define EQN_DOLLAR_DOLLAR 14 /* \begin{displaymath} ... \end{displaymath} */ #define EQN_NO_NUMBER 15 /* \nonumber */ #define EQN_ENSUREMATH 16 /* \ensuremath */ #define EQN_ALIGN 17 /* align environment */ #define EQN_ALIGN_STAR 18 /* align* environment */ #define LEFT_RIGHT 1 #define RIGHT_LEFT 2 #define LONG_LEFTRIGHT 3 #define LONG_RIGHTLEFT 4 #define LEFT_LEFT 5 #define RIGHT_RIGHT 6 #define LONG_LEFT 7 #define LONG_RIGHT 8 #define RIGHT_LEFT_HARPOONS 9 void CmdEquation(int code); void CmdFraction(int code); void CmdRoot(int code); void CmdLim(int code); void CmdIntegral(int code); void CmdSuperscript(int code); void CmdSubscript(int code); void CmdNonumber(int code); void CmdArray(int code); void CmdLeftRight(int code); void CmdMatrix(int code); void CmdStackrel(int code); void CmdArrows(int code); int script_shift(void); int script_size(void); void CmdEnsuremath(int code); void CmdOverLine(int code); void CmdSlashSlash(int code); void CmdArraySlashSlash(int height); void CmdEqnArraySlashSlash(int height); latex2rtf-2.3.18/counters.h0000777000175000017500000000024313664233060015740 0ustar wilfriedwilfriedvoid setCounter(char * s, int d); int getCounter(char * s); void incrementCounter(char * s); void zeroKeyCounters(char *key); int TryTheCounter(char *theCommand); latex2rtf-2.3.18/rtf.c0000777000175000017500000000377313050672360014676 0ustar wilfriedwilfried#include #include "main.h" #include "utils.h" #include "convert.h" #include "labels.h" #include "rtf.h" /****************************************************************************** purpose: emit RTF code for a bookmark ******************************************************************************/ void emitBookmark(char *extra, char *presignet,char *signet,char *text) { fprintRTF ("{%s\\*\\bkmkstart %s%s}", extra,presignet,signet); ConvertString(text); fprintRTF ("{\\*\\bkmkend %s%s}", presignet,signet); } /****************************************************************************** purpose: emit RTF code to reference a bookmark ******************************************************************************/ void InsertReference(char *text, referenceGetter *getRef) { char *s = getRef(text); ConvertString(NULL != s ? s : "\\textbf{??}"); safe_free(s); } /* referenceBookmark("REF","\\\\* MERGEFORMAT","BM",signet,text,getLabelSection); referenceBookmark("REF","\\\\* MERGEFORMAT","BIB_",signet,t,NULL); referenceBookmark("PAGEREF","\\\\p","BM",signet,text,NULL); referenceBookmark("PAGEREF","\\\\* MERGEFORMAT","BM",signet,text,NULL); */ static void callBookmark(char *pre, char *post, char *type, char *signet, char *text, referenceGetter *getRef) { fprintRTF("{\\field{\\*\\fldinst{\\lang1024 %s %s%s %s }}", pre,type,signet,post); if (NULL != text) { fprintRTF ("{\\fldrslt{"); if (NULL == getRef) { fprintRTF(text); } else { InsertReference(text,getRef); } fprintRTF("}}"); } fprintRTF("}"); } void referenceBookmark(char *type, char *signet, char *text, referenceGetter *getRef) { callBookmark("REF","\\\\* MERGEFORMAT",type,signet,text,getRef); } void pageBookmark(char *type, char *signet) { callBookmark("PAGEREF","\\\\* MERGEFORMAT",type,signet,NULL,NULL); } latex2rtf-2.3.18/scripts/0000777000175000017500000000000013664230746015422 5ustar wilfriedwilfriedlatex2rtf-2.3.18/scripts/test4.tex0000777000175000017500000000031213050672354017200 0ustar wilfriedwilfried%INLINE_DOT_ON_BASELINE \documentclass{article} \thispagestyle{empty} \begin{document} \setcounter{equation}{0} $$ .\quad\nabla^2 \phi -{1\over c} {\partial \phi\over \partial t} = 0 $$ \end{document} latex2rtf-2.3.18/scripts/README0000777000175000017500000000262113050672354016300 0ustar wilfriedwilfriedlatex2png file will convert a latex file into a PNG image. Breaking with the unix tradition of having separate utilities for separate functions, latex2png will also convert EPS files to PNG images. The reason is that the latex2png script already has the code to do this conversion *and* this conversion was needed to support images *and* I did not want to add yet another dependency by requiring the existing scripts eps2png or epstopng *and* I did not want to add yet another piece that could go wrong. By default latex2png assumes that the input file is a latex file, however, if the extension is .eps, then the file is treated an EPS file. The most recent script latex2png does not need netpbm but needs TeX, dvips and ImageMagick. Furthermore there are two older, slightly different scripts latex2png_1 and latex2png_2. Both require a TeX and dvips. In addition the netpbm utilities are needed from http://sourceforge.net/projects/netpbm/ latex2png_1 requires ImageMagick to be installed. The second script does not need ImageMagick, but runs much slower. When the latex file contains the tag 'INLINE_DOT_ON_BASELINE' then a dot is assumed to have been placed at the beginning of a latex file. This dot is used to locate the baseline of the equation for alignment in the RTF file. This shell script will create a PBM (portable bitmap) file that can be used to determine the height of the equation baseline latex2rtf-2.3.18/scripts/latex2png0000777000175000017500000002236113050672354017252 0ustar wilfriedwilfried#!/bin/bash # Part of latex2rtf by Scott Prahl (Nov 2009) # # This version uses latex and dvips # with convert (Part of ImageMagick) # # This script file will convert a latex file into a PNG image. # Because latex2rtf also needs to convert EPS files, these are # also converted. By default latex2png assumes that the input # file is a latex file, however, if the extension is .eps, then # the file is treated an EPS file. # # When the latex file contains the tag 'INLINE_DOT_ON_BASELINE' then # a dot is assumed to have been placed at the beginning of a latex # This dot is used to locate the baseline of the equation for # alignment in the RTF file. This shell script will create a PGN # (portable gray map) file that can be used to determine the # height of the equation baseline # #set -x # uncomment for debugging # DVIPS="dvips -q -l 1 -E -R" LATEX="latex --interaction batchmode --output-format dvi" PDFLATEX="latex --interaction batchmode --output-format pdf" XELATEX="xelatex --interaction batchmode" CONVERT="convert" PDF2EPS="eps2eps" GREP="grep" AWK="awk" SED="sed" # !!!!!!!!!!!!!!!! Note !!!!!!!!!!!!!! # Under MS Windows, although this script runs under bash shell, # LaTeX is run in the Windows environment and thus needs the ";" as separator. TEXINPSEP=":" #Unix #TEXINPSEP=";" #MS Windows VERSION="1.50" help() { cat < /dev/null if [ -e "$name.pdf" ] ; then $PDF2EPS $name.pdf $name.eps if [ ! -e "$name.eps" ] ; then echo "latex2png: error: eps2eps failed to translate $name.pdf to $name.eps" exit 1 fi else if [ $opt_k -eq 1 ] ; then echo "latex2png: pdflatex failed to translate $name.tex to $name.pdf, trying xelatex" fi $XELATEX $name > /dev/null if [ -e "$name.pdf" ] ; then $PDF2EPS $name.pdf $name.eps if [ ! -e "$name.eps" ] ; then echo "latex2png: error: eps2eps failed to translate $name.pdf to $name.eps" exit 1 fi else if [ $opt_k -eq 1 ] ; then echo "latex2png: xelatex failed to translate $name.tex to $name.dvi, trying latex" fi $LATEX $name > /dev/null if [ -e "$name.dvi" ] ; then $DVIPS -o $name.eps $name.dvi if [ ! -e "$name.eps" ] ; then if [ $opt_k -eq 1 ] ; then echo "latex2png: error: dvips failed to translate $name.dvi to $name.eps" exit 1 fi exit 1 fi else echo "latex2png: error: pdflatex, xelatex and latex all failed to translate $name.tex" exit 1 fi fi fi if [ $opt_eps ] ; then if [ $inline -eq 1 ] ; then # extract the BoundingBox of the eps with adjustment stuff # parameters are: llx lly urx ury bbb=`${GREP} -C 0 %%BoundingBox: $name.eps` llydraft=$(echo $bbb | $AWK -F" " '{print $3}' ) urydraft=$(echo $bbb | $AWK -F" " '{print $5}' ) # now create an eps without the adjustment stuff $SED -e "s/\^I_g//" $name.tex >$name.tmp rm $name.tex rm -f $name.pdf rm $name.eps mv $name.tmp $name.tex $PDFLATEX $name > /dev/null if [ -e "$name.pdf" ] ; then $PDF2EPS $name.pdf $name.eps else if [ $opt_k -eq 1 ] ; then echo "latex2png: pdflatex failed to translate $name.tex w/o adj to $name.pdf, trying xelatex" fi $XELATEX $name > /dev/null if [ -e "$name.pdf" ] ; then $PDF2EPS $name.pdf $name.eps else if [ $opt_k -eq 1 ] ; then echo "latex2png: error: xelatex failed to translate $name.tex w/o adj to $name.pdf, trying latex" fi $LATEX $name > /dev/null if [ -e "$name.dvi" ] ; then $DVIPS -o $name.eps $name.dvi else echo "latex2png: pdflatex, xelatex and latex all failed to translate $name.tex w/o adj" exit 1 fi fi fi if [ ! -e "$name.eps" ] ; then echo "latex2png: error: failed to translate $name.tex to $name.eps" exit 1 fi # extract the BoundingBox of the eps without adjustment stuff bbb=`${GREP} -C 0 %%BoundingBox: $name.eps` llyfin=$(echo $bbb | $AWK -F" " '{print $3}' ) uryfin=$(echo $bbb | $AWK -F" " '{print $5}' ) # use the maximum y extension if [ "$llydraft" -lt "$llyfin" ] ; then $SED -b -e "/%%BoundingBox:/s/$llyfin/$llydraft/" $name.eps >$name.tmp rm $name.eps mv $name.tmp $name.eps fi if [ "$urydraft" -gt "$uryfin" ] ; then $SED -b -e "/%%BoundingBox:/s/$uryfin/$urydraft/" $name.eps >$name.tmp rm $name.eps mv $name.tmp $name.eps fi fi if [ $opt_k -eq 0 ] ; then rm -f $name.pdf $name.dvi $name.aux $name.log $name.out fi exit 0 fi fi # WH: added "-type TrueColor" to ensure compatibility with older versions of Word and with IrfanView $CONVERT -units PixelsPerInch -density ${opt_d}x${opt_d} -trim +repage $name.eps -type TrueColor $out $name.png if [ ! -e "$name.png" ] ; then echo "latex2png: error: convert (ImageMagick) failed to translate $name.eps to $name.png" exit 1 fi # -i is for images of equations that include an extra dot on the baseline # this dot must be cropped out, and its height must be determined. # The height is determined from $name.pbm --- the first column of the image # The dot is cropped out of $name-tmp.png and any extra white space # is removed to create the final image $name.png # if [ $inline -eq 1 ] ; then mv $name.png $name-tmp.png # remove fewer pixels from the left side on small images width=`identify -format "%[fx:w-2]" $name-tmp.png` if [ ${width} -gt ${opt_o} ] ; then width=${opt_o} fi # strip the initial dot and white space on the left # we must keep the white space on the bottom so we add border on the east # so that the bottom does not get trimmed away $CONVERT $name-tmp.png -chop ${width}x0 -gravity East -background white -splice 1x0 -trim +repage $name.png # extract first column of png and stick it in a bitmap $CONVERT $name-tmp.png -crop 1x0 +repage $name.pbm if [ $opt_k -eq 0 ] ; then rm -f $name-tmp.ppm fi fi if [ $opt_k -eq 0 ] ; then rm -f $name-tmp.png if [ $ext = "tex" ] ; then rm -f $name.dvi $name.aux $name.log $name.out $name.pdf $name.eps fi fi exit 0 latex2rtf-2.3.18/scripts/test3.tex0000777000175000017500000000014013050672354017176 0ustar wilfriedwilfried\documentclass{article} \thispagestyle{empty} \begin{document} \input test3a.tex \end{document} latex2rtf-2.3.18/scripts/test3a.tex0000777000175000017500000000006313050672354017343 0ustar wilfriedwilfried$$ \int_0^\infty {\sin^2 x\over x^2}\, dx = \pi $$ latex2rtf-2.3.18/scripts/test1fig.eps0000777000175000017500000000106113050672354017654 0ustar wilfriedwilfried%!PS-Adobe-3.0 EPSF-3.0 %%BoundingBox: 29 25 249 178 gsave /helvetica findfont 10 scalefont setfont /ps{(PostScript ) show} def /rad {ps ps ps ps ps} def gsave 30 30 translate 1 .7 scale newpath 110 110 100 0 360 arc gsave stroke grestore clip 1 1.43 scale 45 rotate -70 70 moveto {10 -10 rmoveto gsave rad grestore currentpoint pop 100 ge{exit}if} loop grestore /Times-Roman findfont 150 scalefont setfont .7 setgray /tex {(T) show -35 -35 rmoveto (E) show -35 35 rmoveto (X) show} def 30 60 moveto 0 setgray tex 27 63 moveto .7 setgray tex grestore showpage latex2rtf-2.3.18/scripts/test2.tex0000777000175000017500000000025413050672354017203 0ustar wilfriedwilfried\documentclass{article} \thispagestyle{empty} \begin{document} \setcounter{equation}{0} $$ \nabla^2 \phi -{1\over c} {\partial \phi\over \partial t} = 0 $$ \end{document} latex2rtf-2.3.18/scripts/l2rprep.bat0000777000175000017500000000126313050672354017477 0ustar wilfriedwilfriedrem set folder containing latex2rt.exe and shell executables here: set l2rpath=C:\Progra~1\latex2rtf set rtfpath=%l2rpath%\cfg rem set folder containing LaTeX and dvips executables here: %l2rpath%\which latex >nul if errorlevel 1 SET PATH=C:\MiKTeX2.9\miktex\bin;%PATH% rem set folder containing Ghostscript executables here: %l2rpath%\which gswin32c >nul if errorlevel 1 SET PATH=C:\Progra~1\gs\gs9.15\bin;C:\Progra~1\gs\gs9.15\lib;%PATH% rem set folder containing ImageMagick executables here: %l2rpath%\which identify >nul if errorlevel 1 SET PATH=C:\Progra~1\ImageM~1;%PATH% %l2rpath%\which latex2rt >nul if errorlevel 1 SET PATH=%l2rpath%;%PATH% set l2rpath= latex2rtf-2.3.18/scripts/latex2png_20000777000175000017500000001145413050672354017474 0ustar wilfriedwilfried#!/bin/sh # Part of latex2rtf by Scott Prahl (Nov 2002) # # This version uses latex with dvips # and ghostscript # and various netpbm utilities # # This script file will convert a latex file into a PNG image. # Because latex2rtf also needs to convert EPS files, these are # also converted. By default latex2png assumes that the input # file is a latex file, however, if the extension is .eps, then # the file is treated an EPS file. # # When the latex file contains the tag 'INLINE_DOT_ON_BASELINE' then # a dot is assumed to have been placed at the beginning of a latex # This dot is used to locate the baseline of the equation for # alignment in the RTF file. This shell script will create a PGN # (portable gray map) file that can be used to determine the # height of the equation baseline # #set -x # uncomment for debugging # DVIPS="dvips -q -l 1 -E -R" GHOSTSCRIPT="gs -dQUIET -dNOPAUSE -dBATCH -dSAFER" LATEX="latex --interaction batchmode" PNMCROP="pnmcrop" PNMCUT="pnmcut" PNMTOPNG="pnmtopng" PPMTOPGM="ppmtopgm" PGMTOPBM="pgmtopbm" TEXINPSEP=":" GREP="grep" VERSION="1.2" help() { cat < /dev/null if [ ! -e "$name.dvi" ] ; then echo "error: latex failed to translate $name.tex to $name.dvi" exit 1 fi $DVIPS -o $name.eps $name.dvi if [ ! -e "$name.eps" ] ; then echo "error: dvips failed to translate $name.dvi to $name.eps" exit 1 fi fi $GHOSTSCRIPT -sDEVICE=$out -r${opt_d} -sOutputFile=$name.$out $name.eps 2> /dev/null if [ ! -e "$name.$out" ] ; then echo "error: ghostscript failed to translate $name.eps to $name.$out" exit 1 fi # $inline is for images of equations that include an extra dot on the baseline # this dot must be cropped out, and its height must be determined. # The height is determined from $name.pbm --- the first column of the image # The dot is then cropped out of $name.tmp.png and finally extra white space # in $name.tmp.png is removed to create the final image $name.png # if [ $inline -eq 1 ] ; then rm -f $name.pbm $name.tmp.$out $PNMCROP $name.$out > $name.tmp.$out $PNMCUT -width 1 $name.tmp.$out | $PPMTOPGM | $PGMTOPBM > $name.pbm # offset=`expr ${opt_d} / 72 + 2` $PNMCUT -left $opt_o $name.tmp.$out | $PNMCROP | $PNMTOPNG > $name.png if [ $opt_k -eq 0 ] ; then rm -f $name.tmp.$out fi else $PNMCROP $name.$out | $PNMTOPNG > $name.png fi if [ ! -e "$name.png" ] ; then echo "error: pnmcrop or pnmtopng failed to crop and translate $name.$out to $name.png" exit 1 fi if [ $opt_k -eq 0 ] ; then rm -f $name.dvi $name.aux $name.log if [ $ext != "eps" ] ; then rm -f $name.eps fi if [ $inline -eq 0 -o $out != "pbm" ] ; then rm -f $name.$out fi fi exit 0 latex2rtf-2.3.18/scripts/Makefile0000777000175000017500000000160213050672354017056 0ustar wilfriedwilfried# # Initial version 28 May 2001 Scott Prahl # LATEX2PNG= ./latex2png TMP= ../tmp PNG= test1.png test2.png test3.png test4.png $(TMP)/test1.png test1fig.png all: mkdir -p $(TMP) $(MAKE) png png: $(PNG) %.png: %.tex $(LATEX2PNG) $< test1.png: test1.tex $(LATEX2PNG) test1 $(LATEX2PNG) test1.tex $(LATEX2PNG) -d 200 test1 $(LATEX2PNG) -m test1 $(LATEX2PNG) -c test1 $(LATEX2PNG) -g test1 $(LATEX2PNG) -d 200 -g test1 test3.png: test3.tex test3a.tex $(TMP)/test1.png: test1.tex cp test1.tex $(TMP) $(LATEX2PNG) -H . $(TMP)/test1 cp test1fig.eps $(TMP) $(LATEX2PNG) $(TMP)/test1 test1fig.png: test1fig.eps $(LATEX2PNG) test1fig.eps $(LATEX2PNG) -d 200 test1fig.eps $(LATEX2PNG) -m test1fig.eps $(LATEX2PNG) -c test1fig.eps $(LATEX2PNG) -g test1fig.eps $(LATEX2PNG) -d 200 -g test1fig.eps clean: rm -f *.png *.pbm *.aux *.log *.dvi *.map rm -rf $(TMP) .PHONY: clean all latex2rtf-2.3.18/scripts/pdf2pnga0000777000175000017500000000255713050672354017054 0ustar wilfriedwilfried#!bash # Part of latex2rtf by Wilfried Hennings (Oct 2007) # usage: pdf2pnga pdf_input_file png_output_file density # echo "pdf2pnga" $1 $2 $3 $4 $5 >> pdf2pnga.log if [ -z "$1" ] ; then echo " " echo "!!! pdf2pnga: error: no input file specified !!!" exit 1 fi if [ -z "$2" ] ; then echo " " echo "!!! pdf2pnga: error: no output file specified !!!" exit 1 fi # does the input file exist? if [ ! -f "$1" ] ; then echo " " echo "!!! pdf2pnga: error: input file $1 not found !!!" exit 1 fi if [ -z $3 ] ; then dpi=300 else dpi=$3 fi # Under DOS, Ghostscript isn't available at all. # Under Windows, the executable is named gswin32c.exe # The use of the _.at file is necessary because of the # restricted command line length under Windows. # The way to do this was taken over from the batch files # in the Ghostscript distribution for Windows. if which gswin32c.exe >NUL ; then echo -dNOPAUSE -dBATCH -dSAFER -sDEVICE#pngalpha -r$dpi >_.at gswin32c -q "-sOutputFile#$2" @_.at "$1" rm -f _.at elif [ -e /usr/bin/sips ] ; then # If sips is available (which is the case in newer MacOSX systems), then use it. /usr/bin/sips -s format png -s dpiHeight $dpi -s dpiWidth $dpi --out "$2" "$1" else gs -q -dNOPAUSE -dBATCH -dSAFER -sDEVICE=pngalpha -r$dpi "-sOutputFile=$2" "$1" fi latex2rtf-2.3.18/scripts/test1.tex0000777000175000017500000000023713050672354017203 0ustar wilfriedwilfried\documentclass{article} \thispagestyle{empty} \usepackage{graphicx} \begin{document} \begin{figure} \includegraphics{test1fig.eps} \end{figure} \end{document} latex2rtf-2.3.18/scripts/latex2png_10000777000175000017500000001131313050672354017465 0ustar wilfriedwilfried#!/bin/sh # Part of latex2rtf by Scott Prahl (Nov 2002) # # This version uses latex and dvips # with ps2ps (part of Ghostscript) # with convert (Part of ImageMagick) # # This script file will convert a latex file into a PNG image. # Because latex2rtf also needs to convert EPS files, these are # also converted. By default latex2png assumes that the input # file is a latex file, however, if the extension is .eps, then # the file is treated an EPS file. # # When the latex file contains the tag 'INLINE_DOT_ON_BASELINE' then # a dot is assumed to have been placed at the beginning of a latex # This dot is used to locate the baseline of the equation for # alignment in the RTF file. This shell script will create a PGN # (portable gray map) file that can be used to determine the # height of the equation baseline # #set -x # uncomment for debugging # DVIPS="dvips -q -l 1 -E -R" LATEX="latex --interaction batchmode" CONVERT="convert" EPS2EPS="eps2eps" TEXINPSEP=":" GREP="grep" VERSION="1.2" help() { cat < /dev/null if [ ! -e "$name.dvi" ] ; then echo "error: latex failed to translate $name.tex to $name.dvi" exit 1 fi $DVIPS -o $name.tmp.eps $name.dvi if [ ! -e "$name.tmp.eps" ] ; then echo "error: dvips failed to translate $name.dvi to $name.tmp.eps" exit 1 fi #helps convert work with eps figures $EPS2EPS $name.tmp.eps $name.eps if [ ! -e "$name.eps" ] ; then echo "error: eps2eps (Ghostscript) failed to translate $name.tmp.eps from $name.eps" exit 1 fi fi $CONVERT -crop 0x0 $out -density ${opt_d}x${opt_d} $name.eps $name.png if [ ! -e "$name.png" ] ; then echo "error: convert (ImageMagick) failed to translate $name.eps from $name.png" exit 1 fi # -i is for images of equations that include an extra dot on the baseline # this dot must be cropped out, and its height must be determined. # The height is determined from $name.gray --- the first column of the image # The dot is then cropped out in $name.tmp.png and finally extra white space # in $name.tmp.png is removed to create the final image $name.png # if [ $inline -eq 1 ] ; then rm -f $name.ppm $name.pbm pngtopnm $name.png > $name.ppm pnmcut -width 1 $name.ppm | ppmtopgm | pgmtopbm > $name.pbm # offset=`expr ${opt_d} / 72 + 2` pnmcut -left $opt_o $name.ppm | pnmcrop -left | pnmtopng > $name.png 2> /dev/null if [ $opt_k -eq 0 ] ; then rm -f $name.ppm fi fi if [ $opt_k -eq 0 ] ; then rm -f $name.dvi $name.aux $name.log $name.tmp.eps if [ $ext = "tex" ] ; then rm -f $name.eps fi fi exit 0 latex2rtf-2.3.18/scripts/WordMacro_InsertEPSfromNames.txt0000777000175000017500000000272613050672354023630 0ustar wilfriedwilfriedSub InsertEPSfromNames() ' ' replaces [###filename.eps###] by the actual eps graphic ' Dim epsnamlen, mypos As Integer Dim epsname As String Selection.Find.ClearFormatting Selection.HomeKey Unit:=wdStory Do While Selection.Find.Execute _ (FindText:="[###", _ Forward:=True, _ Wrap:=wdFindStop, _ Format:=False, _ MatchCase:=False, _ MatchWholeWord:=False, _ MatchWildcards:=False, _ MatchSoundsLike:=False, _ MatchAllWordForms:=False) = True Selection.Extend With Selection.Find .Text = "###]" .Replacement.Text = "" .Forward = True .Wrap = wdFindStop .Format = False .MatchCase = False .MatchWholeWord = False .MatchWildcards = False .MatchSoundsLike = False .MatchAllWordForms = False End With Selection.Find.Execute epsname = Application.Selection.Text epsnamlen = Len(epsname) - 8 epsname = Mid(epsname, 5, epsnamlen) mypos = Selection.Font.Position With Selection .ExtendMode = False End With Selection.InlineShapes.AddPicture _ FileName:=epsname, _ LinkToFile:=False, SaveWithDocument:=True Selection.MoveLeft Unit:=wdCharacter, Count:=1, Extend:=wdExtend With Selection.Font .Position = mypos End With Selection.MoveRight Unit:=wdCharacter, Count:=1, Extend:=wdMove Loop End Sub latex2rtf-2.3.18/ToDo0000777000175000017500000000052413050672360014516 0ustar wilfriedwilfriedFit & Finish: last line tabular in one column mode extra spaces around \hline in tabular Potential Features: Expand -f support to array Expand -f support to weird characters New diagnostic level to replace Warning for expected stuff add style support for superscript natbib entries support \hsize add support for \hspace latex2rtf-2.3.18/chars.h0000777000175000017500000000503713050672360015203 0ustar wilfriedwilfried#define CMD_TEX 1 #define CMD_LATEX 2 #define CMD_SLITEX 3 #define CMD_BIBTEX 4 #define CMD_LATEXE 5 #define CMD_AMSTEX 6 #define CMD_AMSLATEX 7 #define CMD_LYX 8 void CmdCedillaChar(int code); void CmdUmlauteChar(int code); void CmdGraveChar(int code); void CmdAcuteChar(int code); void CmdDoubleAcuteChar(int code); void CmdTildeChar(int code); void CmdUnderdotChar(int code); void CmdCaronChar(int code); void CmdRingChar(int code); void CmdHatChar(int code); void CmdMacronChar(int code); void CmdVecChar(int code); void CmdBreveChar(int code); void CmdWideBreveChar(int code); void CmdDotChar(int code); void CmdUnderbarChar(int code); void CmdDotlessChar(int code); void CmdSymbol(int code); void CmdUnicodeChar(int code); void CmdLogo(int code); void CmdFrenchAbbrev(int code); void CmdCzechAbbrev(int code); void CmdLatin2Char(int code); void CmdEuro(int code); void CmdDegreeCelsius(int code); void CmdNot(int code); #define IERF 1 #define IEREF 2 #define IERSF 3 #define IERESF 4 #define IEMEF 5 #define IEMESF 6 #define DEGREE 7 #define NUMERO 8 #define NUMEROS 9 #define CNUMERO 10 #define CNUMEROS 11 #define PRIMO 12 #define SECUNDO 13 #define TERTIO 14 #define QUARTO 15 #define FUP 16 #define INFERIEURA 17 #define SUPERIEURA 18 #define FRENCH_LQ 19 #define FRENCH_RQ 20 #define FRENCH_LQQ 21 #define FRENCH_RQQ 22 #define POINT_VIRGULE 23 #define POINT_EXCLAMATION 24 #define POINT_INTERROGATION 25 #define DITTO_MARK 26 #define DEUX_POINTS 27 #define LCS 28 #define FCS 29 #define FRENCH_OG 30 #define FRENCH_FG 31 #define MTEXTRA_TRIANGLELEFT 60 #define MTEXTRA_TRIANGLERIGHT 62 #define MTEXTRA_COPROD 67 #define MTEXTRA_MHO 74 #define MTEXTRA_CDOTS 76 #define MTEXTRA_VDOTS 77 #define MTEXTRA_DDOTS 79 #define MTEXTRA_NEARROW 90 #define MTEXTRA_SWARROW 91 #define MTEXTRA_SEARROW 93 #define MTEXTRA_NWARROW 94 #define MTEXTRA_MAPSTO 97 #define MTEXTRA_UPDOWNARROW 98 #define MTEXTRA_HBAR 104 #define MTEXTRA_ELL 108 #define MTEXTRA_MP 109 #define MTEXTRA_SUCC 102 #define MTEXTRA_PREC 112 #define MTEXTRA_SIMEQ 59 #define MTEXTRA_LL 61 #define MTEXTRA_GG 63 #define MTEXTRA_DOTEQ 66 #define MTEXTRA_BECAUSE 81 #define MTEXTRA_MEASUREDANGLE 82 #define MTEXTRA_DOUBLEUPDOWNARROW 99 #define MTEXTRA_RIGHTLEFTARROWS 196 #define MTEXTRA_RIGHTLEFTHARPOONS 201 #define MTEXTRA_RIGHTHARPOONUP 220 #define MTEXTRA_LEFTHARPOONDOWN 225 latex2rtf-2.3.18/encoding_tables.h0000777000175000017500000007654613050672360017240 0ustar wilfriedwilfried#ifndef _ENCODING_TABLES_INCLUDED #define _ENCODING_TABLES_INCLUDED 1 int appleUnicode[128] = { 0x00C4, 0x00C5, 0x00C7, 0x00C9, 0x00D1, 0x00D6, 0x00DC, 0x00E1, 0x00E0, 0x00E2, 0x00E4, 0x00E3, 0x00E5, 0x00E7, 0x00E9, 0x00E8, 0x00EA, 0x00EB, 0x00ED, 0x00EC, 0x00EE, 0x00EF, 0x00F1, 0x00F3, 0x00F2, 0x00F4, 0x00F6, 0x00F5, 0x00FA, 0x00F9, 0x00FB, 0x00FC, 0x2020, 0x00B0, 0x00A2, 0x00A3, 0x00A7, 0x2022, 0x00B6, 0x00DF, 0x00AE, 0x00A9, 0x2122, 0x00B4, 0x00A8, 0x2260, 0x00C6, 0x00D8, 0x221E, 0x00B1, 0x2264, 0x2265, 0x00A5, 0x00B5, 0x2202, 0x2211, 0x220F, 0x03C0, 0x222B, 0x00AA, 0x00BA, 0x03A9, 0x00E6, 0x00F8, 0x00BF, 0x00A1, 0x00AC, 0x221A, 0x0192, 0x2248, 0x2206, 0x00AB, 0x00BB, 0x2026, 0x00A0, 0x00C0, 0x00C3, 0x00D5, 0x0152, 0x0153, 0x2013, 0x2014, 0x201C, 0x201D, 0x2018, 0x2019, 0x00F7, 0x25CA, 0x00FF, 0x0178, 0x2044, 0x20AC, 0x2039, 0x203A, 0xFB01, 0xFB02, 0x2021, 0x00B7, 0x201A, 0x201E, 0x2030, 0x00C2, 0x00CA, 0x00C1, 0x00CB, 0x00C8, 0x00CD, 0x00CE, 0x00CF, 0x00CC, 0x00D3, 0x00D4, 0xF8FF, 0x00D2, 0x00DA, 0x00DB, 0x00D9, 0x0131, 0x02C6, 0x02DC, 0x00AF, 0x02D8, 0x02D9, 0x02DA, 0x00B8, 0x02DD, 0x02DB, 0x02C7 }; int appleCEUnicode[128] = { 0x00C4, 0x0100, 0x0101, 0x00C9, 0x0104, 0x00D6, 0x00DC, 0x00E1, 0x0105, 0x010C, 0x00E4, 0x010D, 0x0106, 0x0107, 0x00E9, 0x0179, 0x017A, 0x010E, 0x00ED, 0x010F, 0x0112, 0x0113, 0x0116, 0x00F3, 0x0117, 0x00F4, 0x00F6, 0x00F5, 0x00FA, 0x011A, 0x011B, 0x00FC, 0x2020, 0x00B0, 0x0118, 0x00A3, 0x00A7, 0x2022, 0x00B6, 0x00DF, 0x00AE, 0x00A9, 0x2122, 0x0119, 0x00A8, 0x2260, 0x0123, 0x012E, 0x012F, 0x012A, 0x2264, 0x2265, 0x012B, 0x0136, 0x2202, 0x2211, 0x0142, 0x013B, 0x013C, 0x013D, 0x013E, 0x0139, 0x013A, 0x0145, 0x0146, 0x0143, 0x00AC, 0x221A, 0x0144, 0x0147, 0x2206, 0x00AB, 0x00BB, 0x2026, 0x00A0, 0x0148, 0x0150, 0x00D5, 0x0151, 0x014C, 0x2013, 0x2014, 0x201C, 0x201D, 0x2018, 0x2019, 0x00F7, 0x25CA, 0x014D, 0x0154, 0x0155, 0x0158, 0x2039, 0x203A, 0x0159, 0x0156, 0x0157, 0x0160, 0x201A, 0x201E, 0x0161, 0x015A, 0x015B, 0x00C1, 0x0164, 0x0165, 0x00CD, 0x017D, 0x017E, 0x016A, 0x00D3, 0x00D4, 0x016B, 0x016E, 0x00DA, 0x016F, 0x0170, 0x0171, 0x0172, 0x0173, 0x00DD, 0x00FD, 0x0137, 0x017B, 0x0141, 0x017C, 0x0122, 0x02C7 }; int appleCyrrilicUnicode[128] = { 0x0410, 0x0411, 0x0412, 0x0413, 0x0414, 0x0415, 0x0416, 0x0417, 0x0418, 0x0419, 0x041A, 0x041B, 0x041C, 0x041D, 0x041E, 0x041F, 0x0420, 0x0421, 0x0422, 0x0423, 0x0424, 0x0425, 0x0426, 0x0427, 0x0428, 0x0429, 0x042A, 0x042B, 0x042C, 0x042D, 0x042E, 0x042F, 0x2020, 0x00B0, 0x0490, 0x00A3, 0x00A7, 0x2022, 0x00B6, 0x0406, 0x00AE, 0x00A9, 0x2122, 0x0402, 0x0452, 0x2260, 0x0403, 0x0453, 0x221E, 0x00B1, 0x2264, 0x2265, 0x0456, 0x00B5, 0x0491, 0x0408, 0x0404, 0x0454, 0x0407, 0x0457, 0x0409, 0x0459, 0x040A, 0x045A, 0x0458, 0x0405, 0x00AC, 0x221A, 0x0192, 0x2248, 0x2206, 0x00AB, 0x00BB, 0x2026, 0x00A0, 0x040B, 0x045B, 0x040C, 0x045C, 0x0455, 0x2013, 0x2014, 0x201C, 0x201D, 0x2018, 0x2019, 0x00F7, 0x201E, 0x040E, 0x045E, 0x040F, 0x045F, 0x2116, 0x0401, 0x0451, 0x044F, 0x0430, 0x0431, 0x0432, 0x0433, 0x0434, 0x0435, 0x0436, 0x0437, 0x0438, 0x0439, 0x043A, 0x043B, 0x043C, 0x043D, 0x043E, 0x043F, 0x0440, 0x0441, 0x0442, 0x0443, 0x0444, 0x0445, 0x0446, 0x0447, 0x0448, 0x0449, 0x044A, 0x044B, 0x044C, 0x044D, 0x044E, 0x20AC }; int cp437Unicode[128] = { 0x00c7, 0x00fc, 0x00e9, 0x00e2, 0x00e4, 0x00e0, 0x00e5, 0x00e7, 0x00ea, 0x00eb, 0x00e8, 0x00ef, 0x00ee, 0x00ec, 0x00c4, 0x00c5, 0x00c9, 0x00e6, 0x00c6, 0x00f4, 0x00f6, 0x00f2, 0x00fb, 0x00f9, 0x00ff, 0x00d6, 0x00dc, 0x00a2, 0x00a3, 0x00a5, 0x20a7, 0x0192, 0x00e1, 0x00ed, 0x00f3, 0x00fa, 0x00f1, 0x00d1, 0x00aa, 0x00ba, 0x00bf, 0x2310, 0x00ac, 0x00bd, 0x00bc, 0x00a1, 0x00ab, 0x00bb, 0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x2561, 0x2562, 0x2556, 0x2555, 0x2563, 0x2551, 0x2557, 0x255d, 0x255c, 0x255b, 0x2510, 0x2514, 0x2534, 0x252c, 0x251c, 0x2500, 0x253c, 0x255e, 0x255f, 0x255a, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256c, 0x2567, 0x2568, 0x2564, 0x2565, 0x2559, 0x2558, 0x2552, 0x2553, 0x256b, 0x256a, 0x2518, 0x250c, 0x2588, 0x2584, 0x258c, 0x2590, 0x2580, 0x03b1, 0x00df, 0x0393, 0x03c0, 0x03a3, 0x03c3, 0x00b5, 0x03c4, 0x03a6, 0x0398, 0x03a9, 0x03b4, 0x221e, 0x03c6, 0x03b5, 0x2229, 0x2261, 0x00b1, 0x2265, 0x2264, 0x2320, 0x2321, 0x00f7, 0x2248, 0x00b0, 0x2219, 0x00b7, 0x221a, 0x207f, 0x00b2, 0x25a0, 0x00a0 }; int cp850Unicode[128] = { 0x00c7, 0x00fc, 0x00e9, 0x00e2, 0x00e4, 0x00e0, 0x00e5, 0x00e7, 0x00ea, 0x00eb, 0x00e8, 0x00ef, 0x00ee, 0x00ec, 0x00c4, 0x00c5, 0x00c9, 0x00e6, 0x00c6, 0x00f4, 0x00f6, 0x00f2, 0x00fb, 0x00f9, 0x00ff, 0x00d6, 0x00dc, 0x00f8, 0x00a3, 0x00d8, 0x00d7, 0x0192, 0x00e1, 0x00ed, 0x00f3, 0x00fa, 0x00f1, 0x00d1, 0x00aa, 0x00ba, 0x00bf, 0x00ae, 0x00ac, 0x00bd, 0x00bc, 0x00a1, 0x00ab, 0x00bb, 0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x00c1, 0x00c2, 0x00c0, 0x00a9, 0x2563, 0x2551, 0x2557, 0x255d, 0x00a2, 0x00a5, 0x2510, 0x2514, 0x2534, 0x252c, 0x251c, 0x2500, 0x253c, 0x00e3, 0x00c3, 0x255a, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256c, 0x00a4, 0x00f0, 0x00d0, 0x00ca, 0x00cb, 0x00c8, 0x0131, 0x00cd, 0x00ce, 0x00cf, 0x2518, 0x250c, 0x2588, 0x2584, 0x00a6, 0x00cc, 0x2580, 0x00d3, 0x00df, 0x00d4, 0x00d2, 0x00f5, 0x00d5, 0x00b5, 0x00fe, 0x00de, 0x00da, 0x00db, 0x00d9, 0x00fd, 0x00dd, 0x00af, 0x00b4, 0x00ad, 0x00b1, 0x2017, 0x00be, 0x00b6, 0x00a7, 0x00f7, 0x00b8, 0x00b0, 0x00a8, 0x00b7, 0x00b9, 0x00b3, 0x00b2, 0x25a0, 0x00a0 }; int cp852Unicode[128] = { 0x00c7, 0x00fc, 0x00e9, 0x00e2, 0x00e4, 0x016f, 0x0107, 0x00e7, 0x0142, 0x00eb, 0x0150, 0x0151, 0x00ee, 0x0179, 0x00c4, 0x0106, 0x00c9, 0x0139, 0x013a, 0x00f4, 0x00f6, 0x013d, 0x013e, 0x015a, 0x015b, 0x00d6, 0x00dc, 0x0164, 0x0165, 0x0141, 0x00d7, 0x010d, 0x00e1, 0x00ed, 0x00f3, 0x00fa, 0x0104, 0x0105, 0x017d, 0x017e, 0x0118, 0x0119, 0x00ac, 0x017a, 0x010c, 0x015f, 0x00ab, 0x00bb, 0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x00c1, 0x00c2, 0x011a, 0x015e, 0x2563, 0x2551, 0x2557, 0x255d, 0x017b, 0x017c, 0x2510, 0x2514, 0x2534, 0x252c, 0x251c, 0x2500, 0x253c, 0x0102, 0x0103, 0x255a, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256c, 0x00a4, 0x0111, 0x0110, 0x010e, 0x00cb, 0x010f, 0x0147, 0x00cd, 0x00ce, 0x011b, 0x2518, 0x250c, 0x2588, 0x2584, 0x0162, 0x016e, 0x2580, 0x00d3, 0x00df, 0x00d4, 0x0143, 0x0144, 0x0148, 0x0160, 0x0161, 0x0154, 0x00da, 0x0155, 0x0170, 0x00fd, 0x00dd, 0x0163, 0x00b4, 0x00ad, 0x02dd, 0x02db, 0x02c7, 0x02d8, 0x00a7, 0x00f7, 0x00b8, 0x00b0, 0x00a8, 0x02d9, 0x0171, 0x0158, 0x0159, 0x25a0, 0x00a0 }; int cp855Unicode[128] = { 0x0452, 0x0402, 0x0453, 0x0403, 0x0451, 0x0401, 0x0454, 0x0404, 0x0455, 0x0405, 0x0456, 0x0406, 0x0457, 0x0407, 0x0458, 0x0408, 0x0459, 0x0409, 0x045a, 0x040a, 0x045b, 0x040b, 0x045c, 0x040c, 0x045e, 0x040e, 0x045f, 0x040f, 0x044e, 0x042e, 0x044a, 0x042a, 0x0430, 0x0410, 0x0431, 0x0411, 0x0446, 0x0426, 0x0434, 0x0414, 0x0435, 0x0415, 0x0444, 0x0424, 0x0433, 0x0413, 0x00ab, 0x00bb, 0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x0445, 0x0425, 0x0438, 0x0418, 0x2563, 0x2551, 0x2557, 0x255d, 0x0439, 0x0419, 0x2510, 0x2514, 0x2534, 0x252c, 0x251c, 0x2500, 0x253c, 0x043a, 0x041a, 0x255a, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256c, 0x00a4, 0x043b, 0x041b, 0x043c, 0x041c, 0x043d, 0x041d, 0x043e, 0x041e, 0x043f, 0x2518, 0x250c, 0x2588, 0x2584, 0x041f, 0x044f, 0x2580, 0x042f, 0x0440, 0x0420, 0x0441, 0x0421, 0x0442, 0x0422, 0x0443, 0x0423, 0x0436, 0x0416, 0x0432, 0x0412, 0x044c, 0x042c, 0x2116, 0x00ad, 0x044b, 0x042b, 0x0437, 0x0417, 0x0448, 0x0428, 0x044d, 0x042d, 0x0449, 0x0429, 0x0447, 0x0427, 0x00a7, 0x25a0, 0x00a0 }; int cp857Unicode[128] = { 0x20AC, 0x0020, 0x0020, 0x0020, 0x0020, 0x2026, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x2018, 0x2019, 0x201C, 0x201D, 0x2022, 0x2013, 0x2014, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x00A0, 0x0E01, 0x0E02, 0x0E03, 0x0E04, 0x0E05, 0x0E06, 0x0E07, 0x0E08, 0x0E09, 0x0E0A, 0x0E0B, 0x0E0C, 0x0E0D, 0x0E0E, 0x0E0F, 0x0E10, 0x0E11, 0x0E12, 0x0E13, 0x0E14, 0x0E15, 0x0E16, 0x0E17, 0x0E18, 0x0E19, 0x0E1A, 0x0E1B, 0x0E1C, 0x0E1D, 0x0E1E, 0x0E1F, 0x0E20, 0x0E21, 0x0E22, 0x0E23, 0x0E24, 0x0E25, 0x0E26, 0x0E27, 0x0E28, 0x0E29, 0x0E2A, 0x0E2B, 0x0E2C, 0x0E2D, 0x0E2E, 0x0E2F, 0x0E30, 0x0E31, 0x0E32, 0x0E33, 0x0E34, 0x0E35, 0x0E36, 0x0E37, 0x0E38, 0x0E39, 0x0E3A, 0x0020, 0x0020, 0x0020, 0x0020, 0x0E3F, 0x0E40, 0x0E41, 0x0E42, 0x0E43, 0x0E44, 0x0E45, 0x0E46, 0x0E47, 0x0E48, 0x0E49, 0x0E4A, 0x0E4B, 0x0E4C, 0x0E4D, 0x0E4E, 0x0E4F, 0x0E50, 0x0E51, 0x0E52, 0x0E53, 0x0E54, 0x0E55, 0x0E56, 0x0E57, 0x0E58, 0x0E59, 0x0E5A, 0x0E5B, 0x0020, 0x0020, 0x0020, 0x0020 }; int cp865Unicode[128] = { 0x00c7, 0x00fc, 0x00e9, 0x00e2, 0x00e4, 0x00e0, 0x00e5, 0x00e7, 0x00ea, 0x00eb, 0x00e8, 0x00ef, 0x00ee, 0x00ec, 0x00c4, 0x00c5, 0x00c9, 0x00e6, 0x00c6, 0x00f4, 0x00f6, 0x00f2, 0x00fb, 0x00f9, 0x00ff, 0x00d6, 0x00dc, 0x00f8, 0x00a3, 0x00d8, 0x20a7, 0x0192, 0x00e1, 0x00ed, 0x00f3, 0x00fa, 0x00f1, 0x00d1, 0x00aa, 0x00ba, 0x00bf, 0x2310, 0x00ac, 0x00bd, 0x00bc, 0x00a1, 0x00ab, 0x00a4, 0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x2561, 0x2562, 0x2556, 0x2555, 0x2563, 0x2551, 0x2557, 0x255d, 0x255c, 0x255b, 0x2510, 0x2514, 0x2534, 0x252c, 0x251c, 0x2500, 0x253c, 0x255e, 0x255f, 0x255a, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256c, 0x2567, 0x2568, 0x2564, 0x2565, 0x2559, 0x2558, 0x2552, 0x2553, 0x256b, 0x256a, 0x2518, 0x250c, 0x2588, 0x2584, 0x258c, 0x2590, 0x2580, 0x03b1, 0x00df, 0x0393, 0x03c0, 0x03a3, 0x03c3, 0x00b5, 0x03c4, 0x03a6, 0x0398, 0x03a9, 0x03b4, 0x221e, 0x03c6, 0x03b5, 0x2229, 0x2261, 0x00b1, 0x2265, 0x2264, 0x2320, 0x2321, 0x00f7, 0x2248, 0x00b0, 0x2219, 0x00b7, 0x221a, 0x207f, 0x00b2, 0x25a0, 0x00a0 }; int cp866Unicode[128] = { 0x0410, 0x0411, 0x0412, 0x0413, 0x0414, 0x0415, 0x0416, 0x0417, 0x0418, 0x0419, 0x041a, 0x041b, 0x041c, 0x041d, 0x041e, 0x041f, 0x0420, 0x0421, 0x0422, 0x0423, 0x0424, 0x0425, 0x0426, 0x0427, 0x0428, 0x0429, 0x042a, 0x042b, 0x042c, 0x042d, 0x042e, 0x042f, 0x0430, 0x0431, 0x0432, 0x0433, 0x0434, 0x0435, 0x0436, 0x0437, 0x0438, 0x0439, 0x043a, 0x043b, 0x043c, 0x043d, 0x043e, 0x043f, 0x2591, 0x2592, 0x2593, 0x2502, 0x2524, 0x2561, 0x2562, 0x2556, 0x2555, 0x2563, 0x2551, 0x2557, 0x255d, 0x255c, 0x255b, 0x2510, 0x2514, 0x2534, 0x252c, 0x251c, 0x2500, 0x253c, 0x255e, 0x255f, 0x255a, 0x2554, 0x2569, 0x2566, 0x2560, 0x2550, 0x256c, 0x2567, 0x2568, 0x2564, 0x2565, 0x2559, 0x2558, 0x2552, 0x2553, 0x256b, 0x256a, 0x2518, 0x250c, 0x2588, 0x2584, 0x258c, 0x2590, 0x2580, 0x0440, 0x0441, 0x0442, 0x0443, 0x0444, 0x0445, 0x0446, 0x0447, 0x0448, 0x0449, 0x044a, 0x044b, 0x044c, 0x044d, 0x044e, 0x044f, 0x0401, 0x0451, 0x0404, 0x0454, 0x0407, 0x0457, 0x040e, 0x045e, 0x00b0, 0x2219, 0x00b7, 0x221a, 0x2116, 0x00a4, 0x25a0, 0x00a0 }; int cp1250Unicode[128] = { 0x20AC, 0x0020, 0x201A, 0x0020, 0x201E, 0x2026, 0x2020, 0x2021, 0x0020, 0x2030, 0x0160, 0x2039, 0x015A, 0x0164, 0x017D, 0x0179, 0x0020, 0x2018, 0x2019, 0x201C, 0x201D, 0x2022, 0x2013, 0x2014, 0x0020, 0x2122, 0x0161, 0x203A, 0x015B, 0x0165, 0x017E, 0x017A, 0x00A0, 0x02C7, 0x02D8, 0x0141, 0x00A4, 0x0104, 0x00A6, 0x00A7, 0x00A8, 0x00A9, 0x015E, 0x00AB, 0x00AC, 0x00AD, 0x00AE, 0x017B, 0x00B0, 0x00B1, 0x02DB, 0x0142, 0x00B4, 0x00B5, 0x00B6, 0x00B7, 0x00B8, 0x0105, 0x015F, 0x00BB, 0x013D, 0x02DD, 0x013E, 0x017C, 0x0154, 0x00C1, 0x00C2, 0x0102, 0x00C4, 0x0139, 0x0106, 0x00C7, 0x010C, 0x00C9, 0x0118, 0x00CB, 0x011A, 0x00CD, 0x00CE, 0x010E, 0x0110, 0x0143, 0x0147, 0x00D3, 0x00D4, 0x0150, 0x00D6, 0x00D7, 0x0158, 0x016E, 0x00DA, 0x0170, 0x00DC, 0x00DD, 0x0162, 0x00DF, 0x0155, 0x00E1, 0x00E2, 0x0103, 0x00E4, 0x013A, 0x0107, 0x00E7, 0x010D, 0x00E9, 0x0119, 0x00EB, 0x011B, 0x00ED, 0x00EE, 0x010F, 0x0111, 0x0144, 0x0148, 0x00F3, 0x00F4, 0x0151, 0x00F6, 0x00F7, 0x0159, 0x016F, 0x00FA, 0x0171, 0x00FC, 0x00FD, 0x0163, 0x02D9 }; int cp1251Unicode[128] = { 0x0402, 0x0403, 0x201A, 0x0453, 0x201E, 0x2026, 0x2020, 0x2021, 0x20AC, 0x2030, 0x0409, 0x2039, 0x040A, 0x040C, 0x040B, 0x040F, 0x0452, 0x2018, 0x2019, 0x201C, 0x201D, 0x2022, 0x2013, 0x2014, 0x0020, 0x2122, 0x0459, 0x203A, 0x045A, 0x045C, 0x045B, 0x045F, 0x00A0, 0x040E, 0x045E, 0x0408, 0x00A4, 0x0490, 0x00A6, 0x00A7, 0x0401, 0x00A9, 0x0404, 0x00AB, 0x00AC, 0x00AD, 0x00AE, 0x0407, 0x00B0, 0x00B1, 0x0406, 0x0456, 0x0491, 0x00B5, 0x00B6, 0x00B7, 0x0451, 0x2116, 0x0454, 0x00BB, 0x0458, 0x0405, 0x0455, 0x0457, 0x0410, 0x0411, 0x0412, 0x0413, 0x0414, 0x0415, 0x0416, 0x0417, 0x0418, 0x0419, 0x041A, 0x041B, 0x041C, 0x041D, 0x041E, 0x041F, 0x0420, 0x0421, 0x0422, 0x0423, 0x0424, 0x0425, 0x0426, 0x0427, 0x0428, 0x0429, 0x042A, 0x042B, 0x042C, 0x042D, 0x042E, 0x042F, 0x0430, 0x0431, 0x0432, 0x0433, 0x0434, 0x0435, 0x0436, 0x0437, 0x0438, 0x0439, 0x043A, 0x043B, 0x043C, 0x043D, 0x043E, 0x043F, 0x0440, 0x0441, 0x0442, 0x0443, 0x0444, 0x0445, 0x0446, 0x0447, 0x0448, 0x0449, 0x044A, 0x044B, 0x044C, 0x044D, 0x044E, 0x044F }; int cp1252Unicode[128] = { 0x20AC, 0x0020, 0x201A, 0x0192, 0x201E, 0x2026, 0x2020, 0x2021, 0x02C6, 0x2030, 0x0160, 0x2039, 0x0152, 0x0020, 0x017D, 0x0020, 0x0020, 0x2018, 0x2019, 0x201C, 0x201D, 0x2022, 0x2013, 0x2014, 0x02DC, 0x2122, 0x0161, 0x203A, 0x0153, 0x0020, 0x017E, 0x0178, 0x00A0, 0x00A1, 0x00A2, 0x00A3, 0x00A4, 0x00A5, 0x00A6, 0x00A7, 0x00A8, 0x00A9, 0x00AA, 0x00AB, 0x00AC, 0x00AD, 0x00AE, 0x00AF, 0x00B0, 0x00B1, 0x00B2, 0x00B3, 0x00B4, 0x00B5, 0x00B6, 0x00B7, 0x00B8, 0x00B9, 0x00BA, 0x00BB, 0x00BC, 0x00BD, 0x00BE, 0x00BF, 0x00C0, 0x00C1, 0x00C2, 0x00C3, 0x00C4, 0x00C5, 0x00C6, 0x00C7, 0x00C8, 0x00C9, 0x00CA, 0x00CB, 0x00CC, 0x00CD, 0x00CE, 0x00CF, 0x00D0, 0x00D1, 0x00D2, 0x00D3, 0x00D4, 0x00D5, 0x00D6, 0x00D7, 0x00D8, 0x00D9, 0x00DA, 0x00DB, 0x00DC, 0x00DD, 0x00DE, 0x00DF, 0x00E0, 0x00E1, 0x00E2, 0x00E3, 0x00E4, 0x00E5, 0x00E6, 0x00E7, 0x00E8, 0x00E9, 0x00EA, 0x00EB, 0x00EC, 0x00ED, 0x00EE, 0x00EF, 0x00F0, 0x00F1, 0x00F2, 0x00F3, 0x00F4, 0x00F5, 0x00F6, 0x00F7, 0x00F8, 0x00F9, 0x00FA, 0x00FB, 0x00FC, 0x00FD, 0x00FE, 0x00FF }; int decmultiUnicode[128] = { 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x0020, 0x00A1, 0x00A2, 0x00A3, 0x0020, 0x00A5, 0x0020, 0x00A7, 0x00A4, 0x00A9, 0x00AA, 0x00AB, 0x0020, 0x0020, 0x0020, 0x0020, 0x00B0, 0x00B1, 0x00B2, 0x00B3, 0x0020, 0x00B5, 0x00B6, 0x00B7, 0x0020, 0x00B9, 0x00BA, 0x00BB, 0x00BC, 0x00BD, 0x0020, 0x00BF, 0x00C0, 0x00C1, 0x00C2, 0x00C3, 0x00C4, 0x00C5, 0x00C6, 0x00C7, 0x00C8, 0x00C9, 0x00CA, 0x00CB, 0x00CC, 0x00CD, 0x00CE, 0x00CF, 0x0020, 0x00D1, 0x00D2, 0x00D3, 0x00D4, 0x00D5, 0x00D6, 0x0152, 0x00D8, 0x00D9, 0x00DA, 0x00DB, 0x00DC, 0x0178, 0x0020, 0x00DF, 0x00E0, 0x00E1, 0x00E2, 0x00E3, 0x00E4, 0x00E5, 0x00E6, 0x00E7, 0x00E8, 0x00E9, 0x00EA, 0x00EB, 0x00EC, 0x00ED, 0x00EE, 0x00EF, 0x0020, 0x00F1, 0x00F2, 0x00F3, 0x00F4, 0x00F5, 0x00F6, 0x0153, 0x00F8, 0x00F9, 0x00FA, 0x00FB, 0x00FC, 0x00FF, 0x0020, 0x0020 }; int koi8rUnicode[128] = { 0x2500, 0x2502, 0x250C, 0x2510, 0x2514, 0x2518, 0x251C, 0x2524, 0x252C, 0x2534, 0x253C, 0x2580, 0x2584, 0x2588, 0x258C, 0x2590, 0x2591, 0x2592, 0x2593, 0x2320, 0x25A0, 0x2219, 0x221A, 0x2248, 0x2264, 0x2265, 0x00A0, 0x2321, 0x00B0, 0x00B2, 0x00B7, 0x00F7, 0x2550, 0x2551, 0x2552, 0x0451, 0x2553, 0x2554, 0x2555, 0x2556, 0x2557, 0x2558, 0x2559, 0x255A, 0x255B, 0x255C, 0x255D, 0x255E, 0x255F, 0x2560, 0x2561, 0x0401, 0x2562, 0x2563, 0x2564, 0x2565, 0x2566, 0x2567, 0x2568, 0x2569, 0x256A, 0x256B, 0x256C, 0x00A9, 0x044E, 0x0430, 0x0431, 0x0446, 0x0434, 0x0435, 0x0444, 0x0433, 0x0445, 0x0438, 0x0439, 0x043A, 0x043B, 0x043C, 0x043D, 0x043E, 0x043F, 0x044F, 0x0440, 0x0441, 0x0442, 0x0443, 0x0436, 0x0432, 0x044C, 0x044B, 0x0437, 0x0448, 0x044D, 0x0449, 0x0447, 0x044A, 0x042E, 0x0410, 0x0411, 0x0426, 0x0414, 0x0415, 0x0424, 0x0413, 0x0425, 0x0418, 0x0419, 0x041A, 0x041B, 0x041C, 0x041D, 0x041E, 0x041F, 0x042F, 0x0420, 0x0421, 0x0422, 0x0423, 0x0416, 0x0412, 0x042C, 0x042B, 0x0417, 0x0428, 0x042D, 0x0429, 0x0427, 0x042A }; int koi8uUnicode[128] = { 0x2500, 0x2502, 0x250C, 0x2510, 0x2514, 0x2518, 0x251C, 0x2524, 0x252C, 0x2534, 0x253C, 0x2580, 0x2584, 0x2588, 0x258C, 0x2590, 0x2591, 0x2592, 0x2593, 0x2320, 0x25A0, 0x2219, 0x221A, 0x2248, 0x2264, 0x2265, 0x00A0, 0x2321, 0x00B0, 0x00B2, 0x00B7, 0x00F7, 0x2550, 0x2551, 0x2552, 0x0451, 0x0454, 0x2554, 0x0456, 0x0457, 0x2557, 0x2558, 0x2559, 0x255A, 0x255B, 0x0491, 0x255D, 0x255E, 0x255F, 0x2560, 0x2561, 0x0401, 0x0404, 0x2563, 0x0406, 0x0407, 0x2566, 0x2567, 0x2568, 0x2569, 0x256A, 0x0490, 0x256C, 0x00A9, 0x044E, 0x0430, 0x0431, 0x0446, 0x0434, 0x0435, 0x0444, 0x0433, 0x0445, 0x0438, 0x0439, 0x043A, 0x043B, 0x043C, 0x043D, 0x043E, 0x043F, 0x044F, 0x0440, 0x0441, 0x0442, 0x0443, 0x0436, 0x0432, 0x044C, 0x044B, 0x0437, 0x0448, 0x044D, 0x0449, 0x0447, 0x044A, 0x042E, 0x0410, 0x0411, 0x0426, 0x0414, 0x0415, 0x0424, 0x0413, 0x0425, 0x0418, 0x0419, 0x041A, 0x041B, 0x041C, 0x041D, 0x041E, 0x041F, 0x042F, 0x0420, 0x0421, 0x0422, 0x0423, 0x0416, 0x0412, 0x042C, 0x042B, 0x0417, 0x0428, 0x042D, 0x0429, 0x0427, 0x042A }; int latin2Unicode[128] = { 0x0080, 0x0081, 0x0082, 0x0083, 0x0084, 0x0085, 0x0086, 0x0087, 0x0088, 0x0089, 0x008A, 0x008B, 0x008C, 0x008D, 0x008E, 0x008F, 0x0090, 0x0091, 0x0092, 0x0093, 0x0094, 0x0095, 0x0096, 0x0097, 0x0098, 0x0099, 0x009A, 0x009B, 0x009C, 0x009D, 0x009E, 0x009F, 0x00A0, 0x0104, 0x02D8, 0x0141, 0x00A4, 0x013D, 0x015A, 0x00A7, 0x00A8, 0x0160, 0x015E, 0x0164, 0x0179, 0x00AD, 0x017D, 0x017B, 0x00B0, 0x0105, 0x02DB, 0x0142, 0x00B4, 0x013E, 0x015B, 0x02C7, 0x00B8, 0x0161, 0x015F, 0x0165, 0x017A, 0x02DD, 0x017E, 0x017C, 0x0154, 0x00C1, 0x00C2, 0x0102, 0x00C4, 0x0139, 0x0106, 0x00C7, 0x010C, 0x00C9, 0x0118, 0x00CB, 0x011A, 0x00CD, 0x00CE, 0x010E, 0x0110, 0x0143, 0x0147, 0x00D3, 0x00D4, 0x0150, 0x00D6, 0x00D7, 0x0158, 0x016E, 0x00DA, 0x0170, 0x00DC, 0x00DD, 0x0162, 0x00DF, 0x0155, 0x00E1, 0x00E2, 0x0103, 0x00E4, 0x013A, 0x0107, 0x00E7, 0x010D, 0x00E9, 0x0119, 0x00EB, 0x011B, 0x00ED, 0x00EE, 0x010F, 0x0111, 0x0144, 0x0148, 0x00F3, 0x00F4, 0x0151, 0x00F6, 0x00F7, 0x0159, 0x016F, 0x00FA, 0x0171, 0x00FC, 0x00FD, 0x0163, 0x02D9 }; int latin3Unicode[128] = { 0x0080, 0x0081, 0x0082, 0x0083, 0x0084, 0x0085, 0x0086, 0x0087, 0x0088, 0x0089, 0x008A, 0x008B, 0x008C, 0x008D, 0x008E, 0x008F, 0x0090, 0x0091, 0x0092, 0x0093, 0x0094, 0x0095, 0x0096, 0x0097, 0x0098, 0x0099, 0x009A, 0x009B, 0x009C, 0x009D, 0x009E, 0x009F, 0x00A0, 0x0126, 0x02D8, 0x00A3, 0x00A4, 0x0020, 0x0124, 0x00A7, 0x00A8, 0x0130, 0x015E, 0x011E, 0x0134, 0x00AD, 0x0020, 0x017B, 0x00B0, 0x0127, 0x00B2, 0x00B3, 0x00B4, 0x00B5, 0x0125, 0x00B7, 0x00B8, 0x0131, 0x015F, 0x011F, 0x0135, 0x00BD, 0x0020, 0x017C, 0x00C0, 0x00C1, 0x00C2, 0x0020, 0x00C4, 0x010A, 0x0108, 0x00C7, 0x00C8, 0x00C9, 0x00CA, 0x00CB, 0x00CC, 0x00CD, 0x00CE, 0x00CF, 0x0020, 0x00D1, 0x00D2, 0x00D3, 0x00D4, 0x0120, 0x00D6, 0x00D7, 0x011C, 0x00D9, 0x00DA, 0x00DB, 0x00DC, 0x016C, 0x015C, 0x00DF, 0x00E0, 0x00E1, 0x0020, 0x00E2, 0x00E4, 0x010B, 0x0109, 0x00E7, 0x00E8, 0x00E9, 0x00EA, 0x00EB, 0x00EC, 0x00ED, 0x00EE, 0x00EF, 0x0020, 0x00F1, 0x00F2, 0x00F3, 0x00F4, 0x0121, 0x00F6, 0x00F7, 0x011D, 0x00F9, 0x00FA, 0x00FB, 0x00FC, 0x016D, 0x015D, 0x02D9 }; int latin4Unicode[128] = { 0x0080, 0x0081, 0x0082, 0x0083, 0x0084, 0x0085, 0x0086, 0x0087, 0x0088, 0x0089, 0x008A, 0x008B, 0x008C, 0x008D, 0x008E, 0x008F, 0x0090, 0x0091, 0x0092, 0x0093, 0x0094, 0x0095, 0x0096, 0x0097, 0x0098, 0x0099, 0x009A, 0x009B, 0x009C, 0x009D, 0x009E, 0x009F, 0x00A0, 0x0104, 0x0138, 0x0156, 0x00A4, 0x0128, 0x013B, 0x00A7, 0x00A8, 0x0160, 0x0112, 0x0122, 0x0166, 0x00AD, 0x017D, 0x00AF, 0x00B0, 0x0105, 0x02DB, 0x0157, 0x00B4, 0x0129, 0x013C, 0x02C7, 0x00B8, 0x0161, 0x0113, 0x0123, 0x0167, 0x014A, 0x017E, 0x014B, 0x0100, 0x00C1, 0x00C2, 0x00C3, 0x00C4, 0x00C5, 0x00C6, 0x012E, 0x010C, 0x00C9, 0x0118, 0x00CB, 0x0116, 0x00CD, 0x00CE, 0x012A, 0x0110, 0x0145, 0x014C, 0x0136, 0x00D4, 0x00D5, 0x00D6, 0x00D7, 0x00D8, 0x0172, 0x00DA, 0x00DB, 0x00DC, 0x0168, 0x016A, 0x00DF, 0x0101, 0x00E1, 0x00E2, 0x00E3, 0x00E4, 0x00E5, 0x00E6, 0x012F, 0x010D, 0x00E9, 0x0119, 0x00EB, 0x0117, 0x00ED, 0x00EE, 0x012B, 0x0111, 0x0146, 0x014D, 0x0137, 0x00F4, 0x00F5, 0x00F6, 0x00F7, 0x00F8, 0x0173, 0x00FA, 0x00FB, 0x00FC, 0x0169, 0x016B, 0x02D9 }; int latin5Unicode[128] = { 0x0080, 0x0081, 0x0082, 0x0083, 0x0084, 0x0085, 0x0086, 0x0087, 0x0088, 0x0089, 0x008A, 0x008B, 0x008C, 0x008D, 0x008E, 0x008F, 0x0090, 0x0091, 0x0092, 0x0093, 0x0094, 0x0095, 0x0096, 0x0097, 0x0098, 0x0099, 0x009A, 0x009B, 0x009C, 0x009D, 0x009E, 0x009F, 0x00A0, 0x00A1, 0x00A2, 0x00A3, 0x00A4, 0x00A5, 0x00A6, 0x00A7, 0x00A8, 0x00A9, 0x00AA, 0x00AB, 0x00AC, 0x00AD, 0x00AE, 0x00AF, 0x00B0, 0x00B1, 0x00B2, 0x00B3, 0x00B4, 0x00B5, 0x00B6, 0x00B7, 0x00B8, 0x00B9, 0x00BA, 0x00BB, 0x00BC, 0x00BD, 0x00BE, 0x00BF, 0x00C0, 0x00C1, 0x00C2, 0x00C3, 0x00C4, 0x00C5, 0x00C6, 0x00C7, 0x00C8, 0x00C9, 0x00CA, 0x00CB, 0x00CC, 0x00CD, 0x00CE, 0x00CF, 0x011E, 0x00D1, 0x00D2, 0x00D3, 0x00D4, 0x00D5, 0x00D6, 0x00D7, 0x00D8, 0x00D9, 0x00DA, 0x00DB, 0x00DC, 0x0130, 0x015E, 0x00DF, 0x00E0, 0x00E1, 0x00E2, 0x00E3, 0x00E4, 0x00E5, 0x00E6, 0x00E7, 0x00E8, 0x00E9, 0x00EA, 0x00EB, 0x00EC, 0x00ED, 0x00EE, 0x00EF, 0x011F, 0x00F1, 0x00F2, 0x00F3, 0x00F4, 0x00F5, 0x00F6, 0x00F7, 0x00F8, 0x00F9, 0x00FA, 0x00FB, 0x00FC, 0x0131, 0x015F, 0x00FF }; int latin9Unicode[128] = { 0x0080, 0x0081, 0x0082, 0x0083, 0x0084, 0x0085, 0x0086, 0x0087, 0x0088, 0x0089, 0x008A, 0x008B, 0x008C, 0x008D, 0x008E, 0x008F, 0x0090, 0x0091, 0x0092, 0x0093, 0x0094, 0x0095, 0x0096, 0x0097, 0x0098, 0x0099, 0x009A, 0x009B, 0x009C, 0x009D, 0x009E, 0x009F, 0x00A0, 0x00A1, 0x00A2, 0x00A3, 0x20AC, 0x00A5, 0x0160, 0x00A7, 0x0161, 0x00A9, 0x00AA, 0x00AB, 0x00AC, 0x00AD, 0x00AE, 0x00AF, 0x00B0, 0x00B1, 0x00B2, 0x00B3, 0x017D, 0x00B5, 0x00B6, 0x00B7, 0x017E, 0x00B9, 0x00BA, 0x00BB, 0x0152, 0x0153, 0x0178, 0x00BF, 0x00C0, 0x00C1, 0x00C2, 0x00C3, 0x00C4, 0x00C5, 0x00C6, 0x00C7, 0x00C8, 0x00C9, 0x00CA, 0x00CB, 0x00CC, 0x00CD, 0x00CE, 0x00CF, 0x00D0, 0x00D1, 0x00D2, 0x00D3, 0x00D4, 0x00D5, 0x00D6, 0x00D7, 0x00D8, 0x00D9, 0x00DA, 0x00DB, 0x00DC, 0x00DD, 0x00DE, 0x00DF, 0x00E0, 0x00E1, 0x00E2, 0x00E3, 0x00E4, 0x00E5, 0x00E6, 0x00E7, 0x00E8, 0x00E9, 0x00EA, 0x00EB, 0x00EC, 0x00ED, 0x00EE, 0x00EF, 0x00F0, 0x00F1, 0x00F2, 0x00F3, 0x00F4, 0x00F5, 0x00F6, 0x00F7, 0x00F8, 0x00F9, 0x00FA, 0x00FB, 0x00FC, 0x00FD, 0x00FE, 0x00FF }; int latin10Unicode[128] = { 0x0080, 0x0081, 0x0082, 0x0083, 0x0084, 0x0085, 0x0086, 0x0087, 0x0088, 0x0089, 0x008A, 0x008B, 0x008C, 0x008D, 0x008E, 0x008F, 0x0090, 0x0091, 0x0092, 0x0093, 0x0094, 0x0095, 0x0096, 0x0097, 0x0098, 0x0099, 0x009A, 0x009B, 0x009C, 0x009D, 0x009E, 0x009F, 0x00A0, 0x0104, 0x0105, 0x0141, 0x20AC, 0x201E, 0x0160, 0x00A7, 0x0161, 0x00A9, 0x0218, 0x00AB, 0x0179, 0x00AD, 0x017A, 0x017B, 0x00B0, 0x00B1, 0x010C, 0x0142, 0x017D, 0x201D, 0x00B6, 0x00B7, 0x017E, 0x010D, 0x0219, 0x00BB, 0x0152, 0x0153, 0x0178, 0x017C, 0x00C0, 0x00C1, 0x00C2, 0x0102, 0x00C4, 0x0106, 0x00C6, 0x00C7, 0x00C8, 0x00C9, 0x00CA, 0x00CB, 0x00CC, 0x00CD, 0x00CE, 0x00CF, 0x0110, 0x0143, 0x00D2, 0x00D3, 0x00D4, 0x0150, 0x00D6, 0x015A, 0x0170, 0x00D9, 0x00DA, 0x00DB, 0x00DC, 0x0118, 0x021A, 0x00DF, 0x00E0, 0x00E1, 0x00E2, 0x0103, 0x00E4, 0x0107, 0x00E6, 0x00E7, 0x00E8, 0x00E9, 0x00EA, 0x00EB, 0x00EC, 0x00ED, 0x00EE, 0x00EF, 0x0111, 0x0144, 0x00F2, 0x00F3, 0x00F4, 0x0151, 0x00F6, 0x015B, 0x0171, 0x00F9, 0x00FA, 0x00FB, 0x00FC, 0x0119, 0x021B, 0x00FF }; int nextUnicode[128] = { 0x00a0, 0x00c0, 0x00c1, 0x00c2, 0x00c3, 0x00c4, 0x00c5, 0x00c7, 0x00c8, 0x00c9, 0x00ca, 0x00cb, 0x00cc, 0x00cd, 0x00ce, 0x00cf, 0x00d0, 0x00d1, 0x00d2, 0x00d3, 0x00d4, 0x00d5, 0x00d6, 0x00d9, 0x00da, 0x00db, 0x00dc, 0x00dd, 0x00de, 0x00b5, 0x00d7, 0x00f7, 0x00a9, 0x00a1, 0x00a2, 0x00a3, 0x2044, 0x00a5, 0x0192, 0x00a7, 0x00a4, 0x2019, 0x201c, 0x00ab, 0x2039, 0x203a, 0xfb01, 0xfb02, 0x00ae, 0x2013, 0x2020, 0x2021, 0x00b7, 0x00a6, 0x00b6, 0x2022, 0x201a, 0x201e, 0x201d, 0x00bb, 0x2026, 0x2030, 0x00ac, 0x00bf, 0x00b9, 0x02cb, 0x00b4, 0x02c6, 0x02dc, 0x00af, 0x02d8, 0x02d9, 0x00a8, 0x00b2, 0x02da, 0x00b8, 0x00b3, 0x02dd, 0x02db, 0x02c7, 0x2014, 0x00b1, 0x00bc, 0x00bd, 0x00be, 0x00e0, 0x00e1, 0x00e2, 0x00e3, 0x00e4, 0x00e5, 0x00e7, 0x00e8, 0x00e9, 0x00ea, 0x00eb, 0x00ec, 0x00c6, 0x00ed, 0x00aa, 0x00ee, 0x00ef, 0x00f0, 0x00f1, 0x0141, 0x00d8, 0x0152, 0x00ba, 0x00f2, 0x00f3, 0x00f4, 0x00f5, 0x00f6, 0x00e6, 0x00f9, 0x00fa, 0x00fb, 0x0131, 0x00fc, 0x00fd, 0x0142, 0x00f8, 0x0153, 0x00df, 0x00fe, 0x00ff, 0xfffd, 0xfffd }; /* these are for the lower 128 characters in Computer Modern */ int cmrUnicode[128] = { 0x0393, 0x0394, 0x0398, 0x039B, 0x039E, 0x03A0, 0x03A3, 0x03A5, 0x03A6, 0x03A8, 0x03A9, 0xFB00, 0xFB01, 0xFB02, 0xFB03, 0xFB04, 0x0131, 0xF8FF, 0x0300, 0x0301, 0x030C, 0x0306, 0x0305, 0x030A, 0x0327, 0x00DF, 0x00E6, 0x0153, 0x00F8, 0x00C6, 0x0152, 0x00D8, 0x0337, 0x0021, 0x2010, 0x0023, 0x0024, 0x0025, 0x0026, 0x0027, 0x0028, 0x0029, 0x002A, 0x002B, 0x002C, 0x002D, 0x002E, 0x002F, 0x0030, 0x0031, 0x0032, 0x0033, 0x0034, 0x0035, 0x0036, 0x0037, 0x0038, 0x0039, 0x003A, 0x003B, 0x00A1, 0x003D, 0x00BF, 0x003F, 0x0040, 0x0041, 0x0042, 0x0043, 0x0044, 0x0045, 0x0046, 0x0047, 0x0048, 0x0049, 0x004A, 0x004B, 0x004C, 0x004D, 0x004E, 0x004F, 0x0050, 0x0051, 0x0052, 0x0053, 0x0054, 0x0055, 0x0056, 0x0057, 0x0058, 0x0059, 0x005A, 0x005B, 0x201C, 0x005D, 0x0302, 0x0307, 0x2018, 0x0061, 0x0062, 0x0063, 0x0064, 0x0065, 0x0066, 0x0067, 0x0068, 0x0069, 0x006A, 0x006B, 0x006C, 0x006D, 0x006E, 0x006F, 0x0070, 0x0071, 0x0072, 0x0073, 0x0074, 0x0075, 0x0076, 0x0077, 0x0078, 0x0079, 0x007A, 0x2013, 0x2014, 0x030B, 0x0303, 0x0308 }; int cmttUnicode[128] = { 0x0393, 0x0394, 0x0398, 0x039B, 0x039E, 0x03A0, 0x03A3, 0x03A5, 0x03A6, 0x03A8, 0x03A9, 0x2191, 0x2193, 0xF8FE, 0x00A1, 0x00BF, 0x0131, 0xF8FF, 0x0300, 0x0301, 0x030C, 0x0306, 0x0305, 0x030A, 0x0327, 0x00DF, 0x00E6, 0x0153, 0x00F8, 0x00C6, 0x0152, 0x00D8, 0x2422, 0x0021, 0x0022, 0x0023, 0x0024, 0x0025, 0x0026, 0x0027, 0x0028, 0x0029, 0x002A, 0x002B, 0x002C, 0x002D, 0x002E, 0x002F, 0x0030, 0x0031, 0x0032, 0x0033, 0x0034, 0x0035, 0x0036, 0x0037, 0x0038, 0x0039, 0x003A, 0x003B, 0x003C, 0x003D, 0x003E, 0x003F, 0x0040, 0x0041, 0x0042, 0x0043, 0x0044, 0x0045, 0x0046, 0x0047, 0x0048, 0x0049, 0x004A, 0x004B, 0x004C, 0x004D, 0x004E, 0x004F, 0x0050, 0x0051, 0x0052, 0x0053, 0x0054, 0x0055, 0x0056, 0x0057, 0x0058, 0x0059, 0x005A, 0x005B, 0x005C, 0x005D, 0x0302, 0x0332, 0x2018, 0x0061, 0x0062, 0x0063, 0x0064, 0x0065, 0x0066, 0x0067, 0x0068, 0x0069, 0x006A, 0x006B, 0x006C, 0x006D, 0x006E, 0x006F, 0x0070, 0x0071, 0x0072, 0x0073, 0x0074, 0x0075, 0x0076, 0x0077, 0x0078, 0x0079, 0x007A, 0x007B, 0x007C, 0x007D, 0x0303, 0x0308 }; int ot2Unicode[128] = { 0x040A, 0x0409, 0x040F, 0x042D, 0x0406, 0x0404, 0x0402, 0x040B, 0x045A, 0x0459, 0x045F, 0x044D, 0x0456, 0x0454, 0x0452, 0x045B, 0x042E, 0x0416, 0x0419, 0x0401, 0x0474, 0x0472, 0x0405, 0x042F, 0x044E, 0x0436, 0x0439, 0x0451, 0x0475, 0x0473, 0x0455, 0x044F, 0x00A8, 0x0021, 0x201D, 0x0462, 0xF6D4, 0x0025, 0x00B4, 0x2019, 0x0028, 0x0029, 0x002A, 0x0463, 0x002C, 0x002D, 0x002E, 0x002F, 0x0030, 0x0031, 0x0032, 0x0033, 0x0034, 0x0035, 0x0036, 0x0037, 0x0038, 0x0039, 0x003A, 0x003B, 0x00AB, 0x0131, 0x00BB, 0x003F, 0x02D8, 0x0410, 0x0411, 0x0426, 0x0414, 0x0415, 0x0424, 0x0413, 0x0425, 0x0418, 0x0408, 0x041A, 0x041B, 0x041C, 0x041D, 0x041E, 0x041F, 0x0427, 0x0420, 0x0421, 0x0422, 0x0423, 0x0412, 0x0429, 0x0428, 0x042B, 0x0417, 0x005B, 0x201C, 0x005D, 0x042C, 0x042A, 0x2018, 0x0430, 0x0431, 0x0446, 0x0434, 0x0435, 0x0444, 0x0433, 0x0445, 0x0438, 0x0458, 0x043A, 0x043B, 0x043C, 0x043D, 0x043E, 0x043F, 0x0447, 0x0440, 0x0441, 0x0442, 0x0443, 0x0432, 0x0449, 0x0448, 0x044B, 0x0437, 0x2013, 0x2014, 0x2116, 0x044C, 0x044A }; int t2aUnicode[256] = { 0x0060, 0x00B4, 0x02C6, 0x02DC, 0x00A8, 0x02DD, 0x02DA, 0x02C7, 0x02D8, 0x00AF, 0x02D9, 0x00B8, 0x02DB, 0x04C0, 0x2329, 0x232A, 0x201C, 0x201D, 0xF6D5, 0xF6D6, 0xF6D4, 0x2013, 0x2014, 0xFEFF, 0x2080, 0x0131, 0x0237, 0xFB00, 0xFB01, 0xFB02, 0xFB03, 0xFB04, 0x0020, 0x0021, 0x0022, 0x0023, 0x0024, 0x0025, 0x0026, 0x2019, 0x0028, 0x0029, 0x002A, 0x002B, 0x002C, 0x002D, 0x002E, 0x002F, 0x0030, 0x0031, 0x0032, 0x0033, 0x0034, 0x0035, 0x0036, 0x0037, 0x0038, 0x0039, 0x003A, 0x003B, 0x003C, 0x003D, 0x003E, 0x003F, 0x0040, 0x0041, 0x0042, 0x0043, 0x0044, 0x0045, 0x0046, 0x0047, 0x0048, 0x0049, 0x004A, 0x004B, 0x004C, 0x004D, 0x004E, 0x004F, 0x0050, 0x0051, 0x0052, 0x0053, 0x0054, 0x0055, 0x0056, 0x0057, 0x0058, 0x0059, 0x005A, 0x005B, 0x005C, 0x005D, 0x005E, 0x005F, 0x2018, 0x0061, 0x0062, 0x0063, 0x0064, 0x0065, 0x0066, 0x0067, 0x0068, 0x0069, 0x006A, 0x006B, 0x006C, 0x006D, 0x006E, 0x006F, 0x0070, 0x0071, 0x0072, 0x0073, 0x0074, 0x0075, 0x0076, 0x0077, 0x0078, 0x0079, 0x007A, 0x007B, 0x007C, 0x007D, 0x007E, 0x002D, 0x0490, 0x0492, 0x0402, 0x040B, 0x04BA, 0x0496, 0x0498, 0x0409, 0x0407, 0x049A, 0x04A0, 0x049C, 0x04D4, 0x04A2, 0x04A4, 0x0405, 0x04E8, 0x04AA, 0x040E, 0x04AE, 0x04B0, 0x04B2, 0x040F, 0x04B8, 0x04B6, 0x0404, 0x04D8, 0x040A, 0x0401, 0x2116, 0x00A4, 0x00A7, 0x0491, 0x0493, 0x0452, 0x045B, 0x04BB, 0x0497, 0x0499, 0x0459, 0x0457, 0x049B, 0x04A1, 0x049D, 0x04D5, 0x04A3, 0x04A5, 0x0455, 0x04E9, 0x04AB, 0x045E, 0x04AF, 0x04B1, 0x04B3, 0x045F, 0x04B9, 0x04B7, 0x0454, 0x04D9, 0x045A, 0x0451, 0x201E, 0x00AB, 0x00BB, 0x0410, 0x0411, 0x0412, 0x0413, 0x0414, 0x0415, 0x0416, 0x0417, 0x0418, 0x0419, 0x041A, 0x041B, 0x041C, 0x041D, 0x041E, 0x041F, 0x0420, 0x0421, 0x0422, 0x0423, 0x0424, 0x0425, 0x0426, 0x0427, 0x0428, 0x0429, 0x042A, 0x042B, 0x042C, 0x042D, 0x042E, 0x042F, 0x0430, 0x0431, 0x0432, 0x0433, 0x0434, 0x0435, 0x0436, 0x0437, 0x0438, 0x0439, 0x043A, 0x043B, 0x043C, 0x043D, 0x043E, 0x043F, 0x0440, 0x0441, 0x0442, 0x0443, 0x0444, 0x0445, 0x0446, 0x0447, 0x0448, 0x0449, 0x044A, 0x044B, 0x044C, 0x044D, 0x044E, 0x044F }; int t2bUnicode[256] = { 0x0060, 0x00B4, 0x02C6, 0x02DC, 0x00A8, 0x02DD, 0x02DA, 0x02C7, 0x02D8, 0x00AF, 0x02D9, 0x00B8, 0x02DB, 0x04C0, 0x2329, 0x232A, 0x201C, 0x201D, 0xF6D5, 0xF6D6, 0xF6D4, 0x2013, 0x2014, 0xFEFF, 0x2080, 0x0131, 0x0237, 0xFB00, 0xFB01, 0xFB02, 0xFB03, 0xFB04, 0x0020, 0x0021, 0x0022, 0x0023, 0x0024, 0x0025, 0x0026, 0x2019, 0x0028, 0x0029, 0x002A, 0x002B, 0x002C, 0x002D, 0x002E, 0x002F, 0x0030, 0x0031, 0x0032, 0x0033, 0x0034, 0x0035, 0x0036, 0x0037, 0x0038, 0x0039, 0x003A, 0x003B, 0x003C, 0x003D, 0x003E, 0x003F, 0x0040, 0x0041, 0x0042, 0x0043, 0x0044, 0x0045, 0x0046, 0x0047, 0x0048, 0x0049, 0x004A, 0x004B, 0x004C, 0x004D, 0x004E, 0x004F, 0x0050, 0x0051, 0x0052, 0x0053, 0x0054, 0x0055, 0x0056, 0x0057, 0x0058, 0x0059, 0x005A, 0x005B, 0x005C, 0x005D, 0x005E, 0x005F, 0x2018, 0x0061, 0x0062, 0x0063, 0x0064, 0x0065, 0x0066, 0x0067, 0x0068, 0x0069, 0x006A, 0x006B, 0x006C, 0x006D, 0x006E, 0x006F, 0x0070, 0x0071, 0x0072, 0x0073, 0x0074, 0x0075, 0x0076, 0x0077, 0x0078, 0x0079, 0x007A, 0x007B, 0x007C, 0x007D, 0x007E, 0x002D, 0x04FA, 0x0492, 0x04F6, 0x0494, 0x04BA, 0x0496, 0x0394, 0x04E0, 0x0409, 0x049A, 0x04C5, 0x04C3, 0x0512, 0x04A2, 0x04A4, 0x04C7, 0x04E8, 0x0421, 0x040E, 0x04AE, 0x04FE, 0x04B2, 0x04FC, 0x04CB, 0x04B6, 0x040A, 0x04D8, 0x0395, 0x0401, 0x2116, 0x00A4, 0x00A7, 0x04FB, 0x0493, 0x04F7, 0x0495, 0x04BB, 0x0497, 0x03B4, 0x04E1, 0x0459, 0x049B, 0x04C6, 0x04C4, 0x051C, 0x04A3, 0x04A5, 0x04C8, 0x04E9, 0x0441, 0x045E, 0x04AF, 0x04FF, 0x04B3, 0x04FD, 0x04CC, 0x04B7, 0x045A, 0x04D9, 0x03B5, 0x0451, 0x201E, 0x00AB, 0x00BB, 0x0410, 0x0411, 0x0412, 0x0413, 0x0414, 0x0415, 0x0416, 0x0417, 0x0418, 0x0419, 0x041A, 0x041B, 0x041C, 0x041D, 0x041E, 0x041F, 0x0420, 0x0421, 0x0422, 0x0423, 0x0424, 0x0425, 0x0426, 0x0427, 0x0428, 0x0429, 0x042A, 0x042B, 0x042C, 0x042D, 0x042E, 0x042F, 0x0430, 0x0431, 0x0432, 0x0433, 0x0434, 0x0435, 0x0436, 0x0437, 0x0438, 0x0439, 0x043A, 0x043B, 0x043C, 0x043D, 0x043E, 0x043F, 0x0440, 0x0441, 0x0442, 0x0443, 0x0444, 0x0445, 0x0446, 0x0447, 0x0448, 0x0449, 0x044A, 0x044B, 0x044C, 0x044D, 0x044E, 0x044F }; #endif latex2rtf-2.3.18/stack.h0000777000175000017500000000027413050672360015206 0ustar wilfriedwilfriedextern int BraceLevel; void InitializeStack(void); void PushLevels(void); int PopLevels(void); void CleanStack(void); void PushBrace(void); int PopBrace(void); void myprintStack(void); latex2rtf-2.3.18/fields.c0000777000175000017500000001153313050672354015345 0ustar wilfriedwilfried/* fields.c - handle MS Word fields Copyright (C) 2008 The Free Software Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. This file is available from http://sourceforge.net/projects/latex2rtf/ Authors: 2008 Scott Prahl */ #include #include #include #include "main.h" #include "fields.h" #define FIELD_MAX_DEPTH 20 int g_equation_field_EQ_in_effect = 0; int g_fields_use_EQ = 1; int g_fields_use_REF = 1; int g_fields_use_SYMBOL = 1; int g_fields_use_PAGE = 1; int g_fields_use_PAGE_REF = 1; int g_fields_use_COMMENT = 1; int g_fields_allowed = 1; char g_field_separator = ','; int g_field_depth = -1; int g_field[FIELD_MAX_DEPTH]; /* OK there are a bunch of possible states g_fields_allowed : should fields be used at all g_fields_use_EQ : is the EQ type of field allowed g_fields_use_REF : is the REF type of field allowed g_fields_use_SYMBOL: is the SYMBOL type of field allowed g_field_depth : 0 if not processing field g_field_type : EQ fields should never be nested */ int EQ_field_active(void) { int i; for (i=0; i<=g_field_depth; i++) { if (g_field[i] == FIELD_EQ) return 1; } return 0; } void startField(int type) { if (!g_fields_allowed) return; switch (type) { case FIELD_EQ: diagnostics(4,"starting EQ field"); diagnostics(6, "EQ fields allowed = %d",g_fields_use_EQ); if (!g_fields_use_EQ) return; if (EQ_field_active()) diagnostics(1,"nested EQ fields ???"); fprintRTF("{\\field{\\*\\fldinst{ EQ "); break; case FIELD_REF: diagnostics(4,"starting REF field"); if (!g_fields_use_REF) return; break; case FIELD_SYMBOL: diagnostics(4,"starting SYMBOL field"); if (!g_fields_use_SYMBOL) return; break; case FIELD_PAGE: diagnostics(4,"starting PAGE field"); if (!g_fields_use_PAGE) return; break; case FIELD_PAGE_REF: diagnostics(4,"starting PAGE_REF field"); if (!g_fields_use_PAGE_REF) return; break; case FIELD_COMMENT: diagnostics(4,"starting COMMENT field"); if (!g_fields_use_COMMENT) return; fprintRTF("{\\field{\\*\\fldinst{ COMMENTS \" "); break; } g_field_depth++; g_field[g_field_depth] = type; if (g_field_depth >= FIELD_MAX_DEPTH) diagnostics(0, "Nesting of fields is excessive!"); } void endCurrentField(void) { diagnostics(4, "end Field"); if (!g_fields_allowed) return; if (g_field_depth < 0) { diagnostics(1, "oops, looks like fields are too shallow!"); return; } switch (g_field[g_field_depth]) { case FIELD_EQ: if (!g_fields_use_EQ) return; fprintRTF("}}{\\fldrslt }}\n"); break; case FIELD_REF: if (!g_fields_use_REF) return; break; case FIELD_SYMBOL: if (!g_fields_use_SYMBOL) return; break; case FIELD_PAGE: if (!g_fields_use_PAGE) return; break; case FIELD_PAGE_REF: if (!g_fields_use_PAGE_REF) return; break; case FIELD_COMMENT: if (!g_fields_use_COMMENT) return; fprintRTF("\" }}{\\fldrslt }}\n"); break; } g_field_depth--; } void endAllFields(void) { if (!g_fields_allowed) return; while (g_field_depth >= 0) endCurrentField(); } void fprintfRTF_field_separator(void) { fprintRTF("%c", g_field_separator); } void set_field_separator(char c) { g_field_separator = c; } void set_fields_use_REF(int i) { g_fields_use_REF = i; } int fields_use_REF(void) { return g_fields_use_REF; } void set_fields_use_EQ(int i) { g_fields_use_EQ = i; } int fields_use_EQ(void) { return g_fields_use_EQ; } int processing_fields(void) { if (g_field_depth >= 0) return 1; else return 0; } latex2rtf-2.3.18/Copyright0000777000175000017500000000574413050672360015632 0ustar wilfriedwilfriedLaTeX2rtf is ``free,'' this means that everyone is free to use it and free to redistribute it on certain conditions. LaTeX2rtf is not in the public domain; it is copyrighted and there are restrictions on its distribution. The changes from 1.8a and upwards will fall under the GNU General Public License and are Copyright (c) Scott Prahl In 1998 Georg Lehner updated and extended the program and took over maintainence from Ralf Schlatterbeck . The changes from Version 1.7 upwards will fall under the GNU General Public License and are Copyright (c) Georg Lehner. For the authors of the older versions and their copying policy see their Copyright Note at the bottom of this file. --- GPL Stuff ---> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. A copy of the GNU General Public License is available with the sources in the file "doc/copying.txt". You can also obtain it by writing to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. --- original Copyright note form the authors --> All files in this distribution are Copyright (c) 1994 Andreas Granzer and Fernando Dorner 1995 Friedrich Polzer and Gerhard Trisko All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the Author nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. latex2rtf-2.3.18/mygetopt.c0000777000175000017500000000443413050672360015746 0ustar wilfriedwilfried /* * my_getopt is supposed to emulate the C Library getopt (which, according * to the man pages, is written by Henry Spencer to emulate the Bell Lab * version). * * my_getopt is scanning argv[optind] (and, perhaps, following arguments), * looking for the first option starting with `-' and a character from * optstring[]. Therefore, if you are looking for options in argv[1] etc., * you should initialize optind with 1 (not 0, as the manual erroneously * claims). * * Experiments with getopt() established that when an argument consists of more * than one option, getopt() stores the pointer to the beginning of the * argument as a static variable, for re-use later. * * See the getopt manual pages for more information on getopt. * * Written by V.Menkov, IU, 1995 */ #include #include #include "main.h" #include "mygetopt.h" char *optarg = 0; int optind = 1; int my_getopt(int argc, char **argv, char *optstring) { char *q; static char *rem = NULL; int c; int needarg = 0; optarg = NULL; diagnostics(4, "Processing option `%s'", argv[optind]); /* * printf("optind = %d\n", optind); if (rem) printf("rem=`%s'\n", * rem); */ if (!rem) { if (optind < argc && argv[optind][0] == '-') { rem = argv[optind] + 1; if (*rem == 0) return EOF; /* Treat lone "-" as a non-option arg */ if (*rem == '-') { optind++; return EOF; } /* skip "--" and terminate */ } else return EOF; } c = *rem; q = strchr(optstring, c); if (q && c != ':') { /* matched */ needarg = (q[1] == ':'); if (needarg) { if (rem[1] != 0) optarg = rem + 1; else { optind++; if (optind < argc) optarg = argv[optind]; else { diagnostics(ERROR, "Missing argument after -%c\n", c); } } } else rem++; } else { diagnostics(WARNING, "%s: illegal option -- %c\n", argv[0], c); c = '?'; rem++; } if (needarg || *rem == 0) { rem = NULL; optind++; } return c; } latex2rtf-2.3.18/cfg.h0000777000175000017500000000213013050672360014631 0ustar wilfriedwilfried#ifndef _CFG_H_INCLUDED #define _CFG_H_INCLUDED 1 #include /* for FILE* */ #if defined(VMS) && defined(NEED_SNPRINTF) #include #endif enum { DIRECT_A = 0, FONT_A, IGNORE_A, STYLE_A, LANGUAGE_A }; #ifndef CFGDIR #ifdef VMS #define CFGDIR "L2RCFGDIR:" #else #define CFGDIR "" #endif #endif typedef int (*fptr) (const void*, const void*); typedef struct ConfigEntryT { const char *TexCommand; const char *RtfCommand; int original_id; } ConfigEntryT; void ReadLanguage(char *lang); void ConvertBabelName(char *name); char *GetBabelName(char *name); void ReadCfg (void); ConfigEntryT **SearchCfgEntry(const char *theTexCommand, int WhichCfg); char *SearchCfgRtf(const char *theCommand, int WhichArray); ConfigEntryT **SearchCfgEntryByID(const int id, int WhichCfg); ConfigEntryT **CfgStartIterate (void); ConfigEntryT **CfgNext (int WhichCfg, ConfigEntryT **last); ConfigEntryT **CfgNextByInsertion(int WhichCfg, ConfigEntryT ** last); FILE * open_cfg(const char *name, int quit_on_error); #endif latex2rtf-2.3.18/README.Mac0000777000175000017500000000234413050672360015307 0ustar wilfriedwilfriedLaTeX2RTF version 1.5 by Ralf Schlatterbeck version 1.8a by Georg Lehner version 1.9 by Scott Prahl There is a Classic PPC Mac port of the 1.9h of latex2rtf. There is no reason that a 68K port is impossible, I just accidently deleted the 68K project from my Codewarrior project. The standard unix distribution compiles and works fine under MacOS X. If you are running Mac OS X, then do not read this file, read the main README. LaTeX2RTF is not great but it is getting better. USING LaTeX2RTF 1 Search and replace any non-standard definitions or environments with standard LaTeX commands. 2 LaTeX your file to ensure that it has no LaTeX errors and also to ensure that all the references are correct in the .aux file (i.e., run BibTeX and LaTeX enough times so that there are no undefined labels). 3 Make sure the .cfg files are in the same folder as the latex2rtf application. 4 Drag your LaTeX file onto the latex2rtf icon and a .rtf file should be created in the same folder as the .tex file. 5 Be dismayed at the errors and warning messages are sent to the console. 6 Send patches for the code to me. This application and source code is available at http://sourceforge.net/projects/latex2rtf/ Scott Prahl latex2rtf-2.3.18/equations.c0000777000175000017500000015166313073466676016135 0ustar wilfriedwilfried/* equations.c - Translate TeX equations Copyright (C) 1995-2010 The Free Software Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. This file is available from http://sourceforge.net/projects/latex2rtf/ Authors: 1995-1997 Ralf Schlatterbeck 1998-2000 Georg Lehner 2001-2002 Scott Prahl */ #include #include #include #include "main.h" #include "convert.h" #include "commands.h" #include "stack.h" #include "fonts.h" #include "cfg.h" #include "ignore.h" #include "parser.h" #include "equations.h" #include "counters.h" #include "funct1.h" #include "lengths.h" #include "utils.h" #include "graphics.h" #include "xrefs.h" #include "chars.h" #include "preamble.h" #include "vertical.h" #include "fields.h" int g_equation_column = 1; int g_amsmath_package = FALSE; int g_multiline_equation_type = 0; int g_current_eqn_needs_EQ = 0; int script_shift(void) { return (int) (CurrentFontSize() / 3.0); } int script_size(void) { return (int) (CurrentFontSize() / 1.2); } void CmdNonumber(int code) /****************************************************************************** purpose : Handles \nonumber to suppress numbering in equations ******************************************************************************/ { if (g_processing_eqnarray || !g_processing_tabular) g_suppress_equation_number = TRUE; } static char *SlurpDollarEquation(void) /****************************************************************************** purpose : reads an equation delimited by $...$ this routine is needed to handle $ x \mbox{if $x$} $ ******************************************************************************/ { int brace = 0; int slash = 0; int i; char *s, *t, *u; s = (char *) malloc(1024 * sizeof(char)); t = s; for (i = 0; i < 1024; i++) { *t = getTexChar(); if (*t == '\\') slash++; else if (*t == '{' && even(slash) && !(i > 5 && strncmp(t - 5, "\\left{", 6) == 0) && !(i > 6 && strncmp(t - 6, "\\right{", 7) == 0)) brace++; else if (*t == '}' && even(slash) && !(i > 5 && !strncmp(t - 5, "\\left}", 6)) && !(i > 6 && !strncmp(t - 6, "\\right}", 7))) brace--; else if (*t == '$' && even(slash) && brace == 0) { break; } else slash = 0; t++; } *t = '\0'; u = strdup(s); /* return much smaller string */ free(s); /* release the big string */ return u; } static void SlurpEquation(int code, char **pre, char **eq, char **post) { int true_code = code & ~ON; switch (true_code) { case EQN_MATH: diagnostics(4, "SlurpEquation() --- \\begin{math}"); *pre = strdup("\\begin{math}"); *post = strdup("\\end{math}"); *eq = getTexUntil(*post, 0); break; case EQN_DOLLAR: diagnostics(4, "SlurpEquation() --- $"); *pre = strdup("$"); *post = strdup("$"); *eq = SlurpDollarEquation(); break; case EQN_RND_OPEN: diagnostics(4, "SlurpEquation() --- \\("); *pre = strdup("\\("); *post = strdup("\\)"); *eq = getTexUntil(*post, 0); break; case EQN_DISPLAYMATH: diagnostics(4, "SlurpEquation --- displaymath"); *pre = strdup("\\begin{displaymath}"); *post = strdup("\\end{displaymath}"); *eq = getTexUntil(*post, 0); break; case EQN_EQUATION_STAR: diagnostics(4, "SlurpEquation() --- equation*"); *pre = strdup("\\begin{equation*}"); *post = strdup("\\end{equation*}"); *eq = getTexUntil(*post, 0); break; case EQN_DOLLAR_DOLLAR: diagnostics(4, "SlurpEquation() --- $$"); *pre = strdup("$$"); *post = strdup("$$"); *eq = getTexUntil(*post, 0); break; case EQN_BRACKET_OPEN: diagnostics(4, "SlurpEquation() --- \\["); *pre = strdup("\\["); *post = strdup("\\]"); *eq = getTexUntil(*post, 0); break; case EQN_EQUATION: diagnostics(4, "SlurpEquation() --- equation"); *pre = strdup("\\begin{equation}"); *post = strdup("\\end{equation}"); *eq = getTexUntil(*post, 0); break; case EQN_ARRAY_STAR: diagnostics(4, "SlurpEquation() --- eqnarray* "); *pre = strdup("\\begin{eqnarray*}"); *post = strdup("\\end{eqnarray*}"); *eq = getTexUntil(*post, 0); break; case EQN_ARRAY: diagnostics(4, "SlurpEquation() --- eqnarray"); *pre = strdup("\\begin{eqnarray}"); *post = strdup("\\end{eqnarray}"); *eq = getTexUntil(*post, 0); break; case EQN_ALIGN_STAR: diagnostics(4, "SlurpEquation() --- align* "); *pre = strdup("\\begin{align*}"); *post = strdup("\\end{align*}"); *eq = getTexUntil(*post, 0); break; case EQN_ALIGN: diagnostics(4, "SlurpEquation() --- align"); *pre = strdup("\\begin{align}"); *post = strdup("\\end{align}"); *eq = getTexUntil(*post, 0); break; } } static int EquationNeedsFields(char *eq) /****************************************************************************** purpose : Determine if equation needs EQ field for RTF conversion ******************************************************************************/ { if (EQ_field_active()) return 0; if (strstr(eq, "\\frac")) return 1; if (strstr(eq, "\\sum")) return 1; if (strstr(eq, "\\int")) return 1; if (strstr(eq, "\\iint")) return 1; if (strstr(eq, "\\iiint")) return 1; if (strstr(eq, "\\prod")) return 1; if (strstr(eq, "\\begin{array}")) return 1; if (strstr(eq, "\\left")) return 1; if (strstr(eq, "\\right")) return 1; if (strstr(eq, "\\root")) return 1; if (strstr(eq, "\\sqrt")) return 1; if (strstr(eq, "\\over")) return 1; if (strstr(eq, "\\stackrel")) return 1; if (strstr(eq, "_") || strstr(eq, "^")) return 1; if (strstr(eq, "\\dfrac")) return 1; if (strstr(eq, "\\lim")) return 1; if (strstr(eq, "\\liminf")) return 1; if (strstr(eq, "\\limsup")) return 1; if (strstr(eq, "\\overline")) return 1; return 0; } /****************************************************************************** purpose : Writes equation to RTF file as text of COMMENT field ******************************************************************************/ static void WriteEquationAsComment(char *pre, char *eq, char *post) { diagnostics(3,"WriteEquationAsComment"); startField(FIELD_COMMENT); putRtfStrEscaped(pre); putRtfStrEscaped(eq); putRtfStrEscaped(post); endCurrentField(); } /****************************************************************************** purpose : Call before emitting bitmap or RTF for equation ******************************************************************************/ static void PrepareRtfEquation(int code, int EQ_Needed) { g_current_eqn_needs_EQ = EQ_Needed; diagnostics(4, "PrepareRtfEquation ..."); switch (code) { case EQN_MATH: diagnostics(4, "PrepareRtfEquation ... \\begin{math}"); if (getTexMode() == MODE_VERTICAL) startParagraph("Normal", PARAGRAPH_GENERIC); setTexMode(MODE_MATH); break; case EQN_DOLLAR: diagnostics(4, "PrepareRtfEquation ... $"); if (getTexMode() == MODE_VERTICAL) startParagraph("Normal", PARAGRAPH_GENERIC); fprintRTF("{"); setTexMode(MODE_MATH); break; case EQN_ENSUREMATH: diagnostics(4, "PrepareRtfEquation ... \\ensuremath{}"); if (getTexMode() == MODE_VERTICAL) startParagraph("Normal", PARAGRAPH_GENERIC); fprintRTF("{"); setTexMode(MODE_MATH); break; case EQN_RND_OPEN: diagnostics(4, "PrepareRtfEquation ... \\("); if (getTexMode() == MODE_VERTICAL) startParagraph("Normal", PARAGRAPH_GENERIC); fprintRTF("{"); setTexMode(MODE_MATH); break; case EQN_DOLLAR_DOLLAR: case EQN_BRACKET_OPEN: case EQN_DISPLAYMATH: case EQN_EQUATION_STAR: if (code == EQN_DISPLAYMATH) diagnostics(4, "PrepareRtfEquation -- $$"); if (code == EQN_DISPLAYMATH) diagnostics(4, "PrepareRtfEquation -- displaymath"); if (code == EQN_BRACKET_OPEN) diagnostics(4, "PrepareRtfEquation -- \\["); if (code == EQN_EQUATION_STAR) diagnostics(4, "PrepareRtfEquation -- equation*"); g_show_equation_number = FALSE; startParagraph("equation", PARAGRAPH_EQUATION); fprintRTF("\\tab\n"); setTexMode(MODE_DISPLAYMATH); break; case EQN_EQUATION: diagnostics(4, "PrepareRtfEquation -- equation"); g_equation_column = 5; /* avoid adding \tabs when finishing */ g_show_equation_number = TRUE; g_suppress_equation_number = FALSE; startParagraph("equationNum", PARAGRAPH_EQUATION); fprintRTF("\\tab\n"); setTexMode(MODE_DISPLAYMATH); break; case EQN_ALIGN_STAR: case EQN_ARRAY_STAR: if (code == EQN_ARRAY_STAR) diagnostics(4, "PrepareRtfEquation -- eqnarray* "); if (code == EQN_ALIGN_STAR) diagnostics(4, "PrepareRtfEquation -- align* "); g_show_equation_number = FALSE; g_processing_eqnarray = TRUE; g_processing_tabular = TRUE; g_equation_column = 1; g_multiline_equation_type = code; if (g_equation_display_bitmap) startParagraph("bitmapCenter", PARAGRAPH_EQUATION); else if (code == EQN_ALIGN_STAR) startParagraph("equationAlign", PARAGRAPH_EQUATION); else startParagraph("equationArray", PARAGRAPH_EQUATION); fprintRTF("\\tab\n"); setTexMode(MODE_DISPLAYMATH); break; case EQN_ALIGN: case EQN_ARRAY: if (code == EQN_ALIGN) diagnostics(4, "PrepareRtfEquation --- eqnarray"); if (code == EQN_ARRAY) diagnostics(4, "PrepareRtfEquation --- align"); g_show_equation_number = TRUE; g_processing_eqnarray = TRUE; g_processing_tabular = TRUE; g_equation_column = 1; g_multiline_equation_type = code; if (g_equation_display_bitmap) startParagraph("bitmapCenter", PARAGRAPH_EQUATION); else if (code == EQN_ALIGN) startParagraph("equationAlignNum", PARAGRAPH_EQUATION); else startParagraph("equationArrayNum", PARAGRAPH_EQUATION); fprintRTF("\\tab\n"); setTexMode(MODE_DISPLAYMATH); break; default: diagnostics(ERROR, "calling PrepareRtfEquation with OFF code"); break; } if (g_current_eqn_needs_EQ && !processing_fields()) startField(FIELD_EQ); } static char *CreateEquationLabel(void) { char *number = (char *) malloc(30); if (g_document_type == FORMAT_REPORT || g_document_type == FORMAT_BOOK ) snprintf(number, 29, "%d.%d", getCounter("chapter"), getCounter("equation")); else snprintf(number, 29, "%d", getCounter("equation")); return number; } /****************************************************************************** purpose : Call after emitting bitmap or RTF for equation ******************************************************************************/ static void FinishRtfEquation(int code, int EQ_Needed) { diagnostics(4, "FinishRtfEquation ..."); if (EQ_Needed) { endCurrentField(); g_current_eqn_needs_EQ = 0; } switch (code) { case EQN_MATH: diagnostics(4, "FinishRtfEquation -- \\end{math}"); CmdIndent(INDENT_INHIBIT); setTexMode(MODE_HORIZONTAL); break; case EQN_DOLLAR: diagnostics(4, "FinishRtfEquation -- $"); fprintRTF("}"); setTexMode(MODE_HORIZONTAL); break; case EQN_ENSUREMATH: diagnostics(4, "FinishRtfEquation -- \\ensuremath{}"); fprintRTF("}"); setTexMode(MODE_HORIZONTAL); break; case EQN_RND_OPEN: diagnostics(4, "FinishRtfEquation -- \\)"); fprintRTF("}"); setTexMode(MODE_HORIZONTAL); break; case EQN_DOLLAR_DOLLAR: diagnostics(4, "FinishRtfEquation -- $$"); CmdEndParagraph(0); CmdIndent(INDENT_INHIBIT); break; case EQN_BRACKET_OPEN: case EQN_DISPLAYMATH: if (code == EQN_DISPLAYMATH) diagnostics(4, "FinishRtfEquation -- displaymath"); else diagnostics(4, "FinishRtfEquation -- \\]"); CmdEndParagraph(0); CmdIndent(INDENT_INHIBIT); break; case EQN_EQUATION_STAR: diagnostics(4, "FinishRtfEquation -- equation*"); CmdEndParagraph(0); CmdIndent(INDENT_INHIBIT); break; case EQN_ARRAY_STAR: diagnostics(4, "FinishRtfEquation -- eqnarray* "); CmdEndParagraph(0); CmdIndent(INDENT_INHIBIT); g_processing_eqnarray = FALSE; g_processing_tabular = FALSE; g_multiline_equation_type = 0; break; case EQN_ALIGN_STAR: diagnostics(4, "FinishRtfEquation -- align* "); CmdEndParagraph(0); CmdIndent(INDENT_INHIBIT); g_processing_eqnarray = FALSE; g_processing_tabular = FALSE; g_multiline_equation_type = 0; break; case EQN_EQUATION: case EQN_ARRAY: case EQN_ALIGN: diagnostics(4, "FinishRtfEquation --- equation or eqnarray or align"); if (g_show_equation_number && !g_suppress_equation_number) { char *number; incrementCounter("equation"); if (!g_equation_display_bitmap) { for (; g_equation_column < 3; g_equation_column++) fprintRTF("\\tab\n"); } fprintRTF("\\tab{\\b0 ("); number = CreateEquationLabel(); InsertBookmark(g_equation_label, number); free(number); if (g_equation_label) { free(g_equation_label); g_equation_label = NULL; } fprintRTF(")}"); } g_multiline_equation_type = 0; g_processing_eqnarray = FALSE; g_processing_tabular = FALSE; CmdEndParagraph(0); CmdIndent(INDENT_INHIBIT); break; default: diagnostics(ERROR, "calling FinishRtfEquation with OFF code"); break; } } static char *scanback(char *s, char *t) /****************************************************************************** purpose : Find '{' that starts a fraction designated by \over Consider \int_0 { \{a_{x+y} + b \} \over a_{x+y} } ^ ^ ^ s result t ******************************************************************************/ { int braces = 1; if (!s || !t || t < s) return NULL; while (braces && s < t) { if (*t == '{' && !(*(t - 1) == '\\') && /* avoid \{ */ !(s + 5 <= t && !strncmp(t - 5, "\\left", 5)) && /* avoid \left{ */ !(s + 6 <= t && !strncmp(t - 6, "\\right", 6)) /* avoid \right{ */ ) braces--; if (*t == '}' && !(*(t - 1) == '\\') && /* avoid \} */ !(s + 5 <= t && !strncmp(t - 5, "\\left", 5)) && /* avoid \left} */ !(s + 6 <= t && !strncmp(t - 6, "\\right", 6)) /* avoid \right} */ ) braces++; if (braces) t--; } return t; } static char *scanahead(char *s) /****************************************************************************** purpose : Find '}' that ends a fraction designated by \over Consider \int_0 { \{a_{x+y} + b \} \over a_{x+y} } ^ ^ s t ******************************************************************************/ { char *t; int braces = 1; int slashes = 0; if (!s) return NULL; t = s; while (braces && t && *t != '\0') { if (even(slashes)) { if (*t == '}' && !(s + 5 <= t && !strncmp(t - 5, "\\left", 5)) && /* avoid \left} */ !(s + 6 <= t && !strncmp(t - 6, "\\right", 6)) /* avoid \right} */ ) braces--; if (*t == '{' && !(s + 5 <= t && !strncmp(t - 5, "\\left", 5)) && /* avoid \left{ */ !(s + 6 <= t && !strncmp(t - 6, "\\right", 6)) /* avoid \right{ */ ) braces++; } if (*t == '\\') slashes++; else slashes = 0; if (braces) t++; } return t; } static void ConvertOverToFrac(char **equation) /****************************************************************************** purpose : Convert {A \over B} to \frac{A}{B} ******************************************************************************/ { char cNext, *eq, *mid, *first, *last, *s, *p, *t; eq = *equation; p = eq; diagnostics(4, "ConvertOverToFrac before <%s>", p); while ((mid = strstr(p, "\\over")) != NULL) { diagnostics(5, "Matched at <%s>", mid); cNext = *(mid + 5); diagnostics(5, "Next char is <%c>", cNext); if (!isalpha((int) cNext)) { first = scanback(eq, mid); diagnostics(6, "first = <%s>", first); last = scanahead(mid); diagnostics(6, "last = <%s>", last); strncpy(mid, " }{ ", 5); diagnostics(6, "mid = <%s>", mid); s = (char *) malloc(strlen(eq) + sizeof("\\frac{}") + 1); t = s; strncpy(t, eq, (size_t) (first - eq)); /* everything up to {A\over B} */ t += first - eq; strncpy(t, "\\frac", 5); /* insert new \frac */ t += 5; if (*first != '{') { *t = '{'; t++; } /* add { if missing */ strncpy(t, first, (size_t) (last - first)); /* copy A}{B */ t += last - first; if (*last != '}') { *t = '}'; t++; } /* add } if missing */ my_strcpy(t, last); /* everything after {A\over B} */ free(eq); eq = s; p = eq; } else p = mid + 5; diagnostics(6, "ConvertOverToFrac current <%s>", eq); } *equation = eq; diagnostics(4, "ConvertOverToFrac after <%s>", eq); } static int EquationGetsNoNumber(const char *s) { if (strstr(s, "\\nonumber")) return TRUE; if (strstr(s, "\\notag")) return TRUE; return FALSE; } /****************************************************************************** purpose : Insert equation as latex ******************************************************************************/ static void WriteEquationAsLatex(int true_code, int inline_equation, const char *pre, const char *eq, const char *post) { if (inline_equation) { fprintRTF("$"); putRtfStrEscaped(eq); fprintRTF("$"); } else { char *eq1 = strdup(eq); str_delete(eq1,"\\nonumber"); str_delete(eq1,"\\notag"); fprintRTF("\\\\["); if (true_code == EQN_DOLLAR_DOLLAR || true_code == EQN_BRACKET_OPEN || true_code == EQN_EQUATION || true_code == EQN_EQUATION_STAR || true_code == EQN_DISPLAYMATH ) putRtfStrEscaped(eq1); else if (true_code == EQN_ARRAY || true_code == EQN_ARRAY_STAR) { putRtfStrEscaped("\\begin{align}"); putRtfStrEscaped(eq1); putRtfStrEscaped("\\end{align}"); } else { putRtfStrEscaped(pre); putRtfStrEscaped(eq1); putRtfStrEscaped(post); } fprintRTF("\\\\]"); free(eq1); } } /****************************************************************************** purpose : search an equation and determine the first label that appears ******************************************************************************/ static void SetEquationLabel(char *eq) { char *t; if (g_suppress_equation_number) return; if (eq==NULL || *eq=='\0') return; t = strstr(eq,"\\label"); if (t) { t += strlen("\\label"); g_equation_label=getStringBraceParam(&t); diagnostics(4, "Bitmap equation label = '%s'", g_equation_label); } } /****************************************************************************** purpose : Insert equation as latex ******************************************************************************/ static void WriteEquationAsBitmapOrEPS(int true_code, char *pre, char *eq, char *post, conversion_t convertTo) { if (true_code == EQN_ARRAY) { char *s, *t; s = eq; diagnostics(4, "eqnarray whole = <%s>", s); do { /* each line becomes separate bitmap */ t = strstr(s, "\\\\"); if (t) *t = '\0'; g_suppress_equation_number = EquationGetsNoNumber(s); PrepareRtfEquation(true_code, FALSE); WriteLatexAsBitmapOrEPS("\\begin{eqnarray*}", s, "\\end{eqnarray*}",convertTo); SetEquationLabel(s); FinishRtfEquation(true_code, FALSE); if (t) s = t + 2; } while (t); } else if (true_code == EQN_ALIGN) { char *s; s = eq; diagnostics(4, "align whole = <%s>", s); PrepareRtfEquation(true_code, FALSE); WriteLatexAsBitmapOrEPS("\\begin{align*}", s, "\\end{align*}",convertTo); SetEquationLabel(s); FinishRtfEquation(true_code, FALSE); } else { PrepareRtfEquation(true_code, FALSE); if (true_code == EQN_EQUATION && g_amsmath_package) g_suppress_equation_number = EquationGetsNoNumber(eq); if (true_code == EQN_ENSUREMATH) WriteLatexAsBitmapOrEPS("\\ensuremath{", eq, "}", convertTo); else WriteLatexAsBitmapOrEPS(pre, eq, post, convertTo); SetEquationLabel(eq); FinishRtfEquation(true_code, FALSE); } } static void WriteEquationAsRTF(int code, char **eq) /****************************************************************************** purpose : Translate equation to RTF ******************************************************************************/ { int EQ_Needed; EQ_Needed = EquationNeedsFields(*eq); PrepareRtfEquation(code, EQ_Needed); ConvertOverToFrac(eq); /* fprintRTF("{");*/ ConvertString(*eq); /* fprintRTF("}"); */ FinishRtfEquation(code, EQ_Needed); } #ifdef MTEF_IMPLEMENTED static void WriteEquationAsMTEF(int code, char **eq) /****************************************************************************** purpose : Translate equation to MTEF ******************************************************************************/ { int EQ_Needed; EQ_Needed = EquationNeedsFields(*eq); PrepareRtfEquation(code, EQ_Needed); ConvertOverToFrac(eq); /* ConvertString(*eq); */ FinishRtfEquation(code, EQ_Needed); } #endif /****************************************************************************** purpose : Handle everything associated with equations ******************************************************************************/ void CmdEquation(int code) { int inline_equation, number, true_code; char *pre = NULL; char *eq = NULL; char *post = NULL; true_code = code & ~ON; if (!(code & ON || code==EQN_ENSUREMATH)) return; if (code==EQN_ENSUREMATH) eq = getBraceParam(); else SlurpEquation(code, &pre, &eq, &post); diagnostics(4, "Entering CmdEquation --------%x\n<%s>\n<%s>\n<%s>", code, pre, eq, post); inline_equation = (true_code == EQN_MATH) || (true_code == EQN_DOLLAR) || (true_code == EQN_RND_OPEN) || (true_code == EQN_ENSUREMATH); number = getCounter("equation"); diagnostics(4, "inline=%d inline_bitmap=%d", inline_equation, g_equation_inline_bitmap); diagnostics(4, "inline=%d display_bitmap=%d", inline_equation, g_equation_display_bitmap); diagnostics(4, "inline=%d inline_rtf =%d", inline_equation, g_equation_inline_rtf); diagnostics(4, "inline=%d display_rtf =%d", inline_equation, g_equation_display_rtf); diagnostics(4, "inline=%d inline_eps =%d", inline_equation, g_equation_inline_eps); diagnostics(4, "inline=%d display_eps =%d", inline_equation, g_equation_display_eps); if (g_equation_comment) WriteEquationAsComment(pre, eq, post); if (g_equation_raw_latex) WriteEquationAsLatex(true_code, inline_equation, pre, eq, post); /* bitmap versions of equations */ if (( inline_equation && g_equation_inline_bitmap ) || (!inline_equation && g_equation_display_bitmap)) WriteEquationAsBitmapOrEPS(true_code, pre, eq, post, BITMAP); if ((inline_equation && g_equation_inline_eps) || (!inline_equation && g_equation_display_eps)) WriteEquationAsBitmapOrEPS(true_code, pre, eq, post, EPS); if ((inline_equation && g_equation_inline_rtf) || (!inline_equation && g_equation_display_rtf)) { setCounter("equation", number); WriteEquationAsRTF(true_code, &eq); } /* balance \begin{xxx} with \end{xxx} call */ if (true_code == EQN_MATH || true_code == EQN_DISPLAYMATH || true_code == EQN_EQUATION || true_code == EQN_EQUATION_STAR || true_code == EQN_ARRAY || true_code == EQN_ARRAY_STAR || true_code == EQN_ALIGN || true_code == EQN_ALIGN_STAR) ConvertString(post); free(pre); free(eq); free(post); } /****************************************************************************** purpose : Handle \ensuremath ******************************************************************************/ void CmdEnsuremath(int code) { int mode = getTexMode(); diagnostics(4, "Entering CmdEnsuremath"); if (mode == MODE_MATH || mode == MODE_DISPLAYMATH) { char *eq = getBraceParam(); diagnostics(4, "already in math mode <%s>", eq); ConvertString(eq); free(eq); } else { diagnostics(4, "need to start new equation"); CmdEquation(EQN_ENSUREMATH); } } void CmdRoot(int code) /****************************************************************************** purpose: converts \sqrt{x} or \root[\alpha]{x+y} ******************************************************************************/ { char *root = NULL; char *power = NULL; power = getBracketParam(); root = getBraceParam(); if (fields_use_EQ()) { fprintRTF(" \\\\R("); if (power && strlen(power) > 0) ConvertString(power); fprintRTF("%c", g_field_separator); ConvertString(root); fprintRTF(")"); } else { if (power && strlen(power) > 0) { fprintRTF("{\\up%d\\fs%d ", script_shift(), script_size()); ConvertString(power); fprintRTF("}"); } ConvertString("\\surd"); fprintRTF("("); ConvertString(root); fprintRTF(")"); } if (power) free(power); if (root) free(root); } void CmdFraction(int code) /****************************************************************************** purpose: converts \frac{x}{y} ******************************************************************************/ { char *denominator, *numerator, *nptr, *dptr; numerator = getBraceParam(); nptr = strdup_noendblanks(numerator); skipSpaces(); denominator = getBraceParam(); dptr = strdup_noendblanks(denominator); free(numerator); free(denominator); diagnostics(4, "CmdFraction -- numerator = <%s>", nptr); diagnostics(4, "CmdFraction -- denominator = <%s>", dptr); if (fields_use_EQ()) { fprintRTF(" \\\\F("); ConvertString(nptr); fprintRTF("%c", g_field_separator); ConvertString(dptr); fprintRTF(")"); } else { fprintRTF(" "); ConvertString(nptr); fprintRTF("/"); ConvertString(dptr); fprintRTF(" "); } free(nptr); free(dptr); } void CmdArrows(int code) /****************************************************************************** converts: amssymb \leftrightarrows and \rightleftarrows ******************************************************************************/ { int size = (int) (CurrentFontSize() / 4.5); switch (code) { case LEFT_RIGHT: fprintRTF(" \\\\o ({\\up%d ", size); ConvertString("\\leftarrow"); fprintRTF("}%c{\\dn%d ", g_field_separator, size); ConvertString("\\rightarrow"); fprintRTF("}) "); break; case RIGHT_LEFT: fprintRTF(" \\\\o ({\\up%d ", size); ConvertString("\\rightarrow"); fprintRTF("}%c{\\dn%d ", g_field_separator, size); ConvertString("\\leftarrow"); fprintRTF("}) "); break; case RIGHT_LEFT_HARPOONS: fprintRTF(" \\\\o ({\\up%d ", size); ConvertString("\\leftharpoonup"); fprintRTF("}%c{\\dn%d ", g_field_separator, size); ConvertString("\\rightharpoondown"); fprintRTF("}) "); break; case RIGHT_RIGHT: fprintRTF(" \\\\o ({\\up%d ", size); ConvertString("\\rightarrow"); fprintRTF("}%c{\\dn%d ", g_field_separator, size); ConvertString("\\rightarrow"); fprintRTF("}) "); break; case LEFT_LEFT: fprintRTF(" \\\\o ({\\up%d ", size); ConvertString("\\leftarrow"); fprintRTF("}%c{\\dn%d ", g_field_separator, size); ConvertString("\\leftarrow"); fprintRTF("}) "); break; case LONG_LEFTRIGHT: ConvertString("\\longleftarrow"); ConvertString("\\longrightarrow"); break; case LONG_RIGHTLEFT: fprintRTF(" \\\\o ({\\up%d ", size); ConvertString("\\longrightarrow"); fprintRTF("}%c{\\dn%d ", g_field_separator, size); ConvertString("\\longleftarrow"); fprintRTF("}) "); break; case LONG_LEFT: ConvertString("\\leftarrow"); CmdUnicodeChar(9135); break; case LONG_RIGHT: CmdUnicodeChar(9135); ConvertString("\\rightarrow"); break; } } void CmdLim(int code) /****************************************************************************** purpose: handles \lim parameter: 0=\lim, 1=\limsup, 2=\liminf ******************************************************************************/ { char cThis, *s, *lower_limit = NULL; cThis = getNonBlank(); if (cThis == '_') lower_limit = getBraceParam(); else ungetTexChar(cThis); if (code == 0) s = strdup("lim"); else if (code == 1) s = strdup("lim sup"); else s = strdup("lim inf"); if (fields_use_EQ()) { if (lower_limit) fprintRTF("\\\\a\\\\ac("); fprintRTF("%s", s); if (lower_limit) { fprintRTF("%c", g_field_separator); ConvertString(lower_limit); fprintRTF(")"); } } else { fprintRTF("%s ", s); if (lower_limit) { fprintRTF("{\\dn%d\\fs%d ", script_shift(), script_size()); ConvertString(lower_limit); fprintRTF("}"); } } free(s); } void CmdIntegral(int code) /****************************************************************************** purpose: converts integral symbol and the "exponent" and "subscript" fields parameter: type of operand ******************************************************************************/ { char *upper_limit = NULL; char *lower_limit = NULL; int possible_limits = TRUE; char * command = NULL; char cThis; diagnostics(4, "Entering CmdIntegral"); /* is there an exponent/subscript ? */ cThis = getNonBlank(); possible_limits = TRUE; /* WH added 2017-04-12 */ if (cThis == '\\') { /* accept \nolimits and \limits */ ungetTexChar(cThis); command = getSimpleCommand(); if (strcmp(command, "\\nolimits") == 0) { free(command); command = NULL; possible_limits = FALSE; } else if (strcmp(command, "\\limits") == 0) { free(command); command = NULL; cThis = getNonBlank(); } else { possible_limits = FALSE; } } if (possible_limits) { if (cThis == '_') lower_limit = getBraceParam(); else if (cThis == '^') upper_limit = getBraceParam(); else ungetTexChar(cThis); if (upper_limit || lower_limit) { cThis = getNonBlank(); if (cThis == '_') lower_limit = getBraceParam(); else if (cThis == '^') upper_limit = getBraceParam(); else ungetTexChar(cThis); } } if (fields_use_EQ()) { fprintRTF(" \\\\i "); switch (code) { case 4: if (upper_limit || lower_limit) fprintRTF("( %c %c )\\\\i", g_field_separator, g_field_separator); else fprintRTF("\\\\in( %c %c )\\\\i", g_field_separator, g_field_separator); /* \iiint --- fall through */ case 3: if (upper_limit || lower_limit) fprintRTF("( %c %c )\\\\i", g_field_separator, g_field_separator); else fprintRTF("\\\\in( %c %c )\\\\i", g_field_separator, g_field_separator); /* \iint --- fall through */ case 0: if (upper_limit || lower_limit) fprintRTF("("); else fprintRTF("\\\\in("); break; case 1: fprintRTF("\\\\su("); break; case 2: fprintRTF("\\\\pr("); break; default: diagnostics(ERROR, "Illegal code to CmdIntegral"); } if (lower_limit) ConvertString(lower_limit); fprintRTF("%c", g_field_separator); if (upper_limit) ConvertString(upper_limit); fprintRTF("%c )", g_field_separator); } else { switch (code) { case 0: CmdUnicodeChar(8747); /* integral */ break; case 1: CmdUnicodeChar(8721); /* sum */ break; case 2: CmdUnicodeChar(8719); /* product */ break; case 3: /* \iint */ CmdUnicodeChar(8747); /* integral */ CmdUnicodeChar(8747); /* integral */ break; case 4: /* \iiint */ CmdUnicodeChar(8747); /* integral */ CmdUnicodeChar(8747); /* integral */ CmdUnicodeChar(8747); /* integral */ break; default: diagnostics(ERROR, "Illegal code to CmdIntegral"); } if (lower_limit) { fprintRTF("{\\dn%d\\fs%d ", script_shift(), script_size()); ConvertString(lower_limit); fprintRTF("}"); } if (upper_limit) { fprintRTF("{\\up%d\\fs%d ", script_shift(), script_size()); ConvertString(upper_limit); fprintRTF("}"); } } if (command) { if (strcmp(command, "\\left") == 0) { /* WH added 2017-04-11 */ CmdLeftRight(0); /* WH added 2017-04-11 */ } /* WH added 2017-04-11 */ else if (strcmp(command, "\\right") == 0) { /* WH added 2017-04-11 */ CmdLeftRight(1); /* WH added 2017-04-11 */ } /* WH added 2017-04-11 */ else if (strcmp(command, "\\frac") == 0) { /* WH added 2017-04-12 */ CmdFraction(0); /* WH added 2017-04-12 */ } /* WH added 2017-04-12 */ else{ /* WH added 2017-04-11 */ ConvertString(command); } /* WH added 2017-04-11 */ free(command); } if (lower_limit) free(lower_limit); if (upper_limit) free(upper_limit); } static void SubSupWorker(int big) /****************************************************************************** purpose : Stack a superscript and a subscript together ******************************************************************************/ { int vertical_shift; char cThis; char *upper_limit = NULL; char *lower_limit = NULL; diagnostics(4, "SubSupWorker() ... big=%d",big); for (;;) { cThis = getNonBlank(); if (cThis == '_') { if (lower_limit) diagnostics(WARNING, "Double subscript"); lower_limit = getBraceParam(); } else if (cThis == '^') { if (upper_limit) diagnostics(WARNING, "Double superscript"); upper_limit = getBraceParam(); } else { ungetTexChar(cThis); break; } } diagnostics(4, "...subscript ='%s'",lower_limit ? lower_limit : ""); diagnostics(4, "...superscript='%s'",upper_limit ? upper_limit : ""); if (big) vertical_shift = (int) (CurrentFontSize() / 1.4); else vertical_shift = CurrentFontSize() / 4; if (upper_limit && lower_limit) { fprintRTF("\\\\s\\\\up({\\fs%d ", script_size()); ConvertString(upper_limit); if (big) fprintRTF("%c %c", g_field_separator, g_field_separator); else fprintRTF("%c", g_field_separator); ConvertString(lower_limit); fprintRTF("})"); } else if (lower_limit) { fprintRTF("\\\\s\\\\do%d({\\fs%d ", vertical_shift, script_size()); ConvertString(lower_limit); fprintRTF("})"); } else if (upper_limit) { fprintRTF("\\\\s\\\\up%d({\\fs%d ", vertical_shift, script_size()); ConvertString(upper_limit); fprintRTF("})"); } if (lower_limit) free(lower_limit); if (upper_limit) free(upper_limit); } /****************************************************************************** purpose : Emit simple RTF for sub or super- script ******************************************************************************/ static void simpleRTFScript(int super) { char *s = NULL; if (getTexMode()==MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); s=getBraceParam(); fprintRTF("{\\%s%d\\fs%d ", super ? "up" : "dn", script_shift(), script_size()); ConvertString(s); fprintRTF("}"); free(s); } /****************************************************************************** purpose : Emit either a field or simple RTF for sub or super- script ******************************************************************************/ static void maybeFieldScript(int super) { if (fields_use_EQ()) { if (super) ungetTexChar('^'); else ungetTexChar('_'); SubSupWorker(FALSE); } else simpleRTFScript(super); } /****************************************************************************** purpose : Handles superscripts ^\alpha, ^a, ^{a} code=0 \textsuperscript{a} code=1 ******************************************************************************/ void CmdSuperscript(int code) { switch (code) { case 0: diagnostics(4, "CmdSuperscript() code==0, equation "); maybeFieldScript(1); break; case 1: diagnostics(4, "CmdSuperscript() code==1, \\textsuperscript "); simpleRTFScript(1); break; } } /****************************************************************************** purpose : Handles subscripts _\alpha, _a, _{a}, code=0 \textsubscript{script} code=1 \lower4emA code=2 ******************************************************************************/ void CmdSubscript(int code) { char *s = NULL; int size; switch (code) { case 0: diagnostics(4, "CmdSubscript() code==0, equation "); maybeFieldScript(0); break; case 1: diagnostics(4, "CmdSubscript() code==1, \\textsubscript "); simpleRTFScript(0); break; case 2: diagnostics(4, "CmdSubscript() code==2, \\lower "); size = getDimension(); /* size is in half-points */ fprintRTF("{\\dn%d ", size); s=getBraceParam(); if (strcmp(s,"\\hbox")==0) CmdBox(BOX_HBOX); else ConvertString(s); fprintRTF("}"); free(s); break; } } /* slight extension of getSimpleCommand to allow \{ and \| */ static void getDelimOrCommand(char *delim, char **s) { *delim = '\0'; ungetTexChar('\\'); *s = getSimpleCommand(); /* handle special cases \{ \} and \| */ if (strlen(*s) == 1) { free(*s); *s = (char *) malloc(3 * sizeof(char)); (*s)[0] = '\\'; (*s)[1] = getTexChar(); (*s)[2] = '\0'; } /* commands have a simple delimiter should just use the delimiter */ if (*s) { if (strcmp(*s,"\\{") ==0 || strcmp(*s,"\\lbrace")==0) *delim = '{'; if (strcmp(*s,"\\}") ==0 || strcmp(*s,"\\rbrace")==0) *delim = '}'; if (strcmp(*s,"\\bracevert")==0) *delim = '|'; if (strcmp(*s,"\\langle") ==0) *delim = '<'; if (strcmp(*s,"\\rangle") ==0) { *delim ='>'; } if (*delim) { free (*s); *s = NULL; } } } /****************************************************************************** purpose : Handles \left \right to properly handle \left. or \right. would require prescanning the entire equation. ******************************************************************************/ void CmdLeftRight(int code) { char ldelim, rdelim; char *contents; char *lcommand = NULL; char *rcommand = NULL; diagnostics(4, "CmdLeftRight() ... "); ldelim = getNonSpace(); if (ldelim=='\0') { PopSource(); ldelim = getNonSpace(); } if (ldelim == '\\') getDelimOrCommand(&ldelim, &lcommand); contents = getLeftRightParam(); rdelim = getNonSpace(); if (rdelim == '\\') getDelimOrCommand(&rdelim, &rcommand); if (code == 1) diagnostics(ERROR, "\\right without opening \\left"); diagnostics(4, "CmdLeftRight() ... \\left <%c> \\right <%c>", ldelim, rdelim); if (fields_use_EQ()) { fprintRTF(" \\\\b "); /* these first four cases () {} [] <> are most common and work best without \lc and \rc */ if (ldelim == '(' && rdelim == ')') { fprintRTF("("); goto finish; } if (ldelim == '{' && rdelim == '}') { fprintRTF("\\\\bc\\\\\\{ ("); goto finish; } if (ldelim == '[' && rdelim == ']') { fprintRTF("\\\\bc\\\\[ ("); goto finish; } if (ldelim == '<' && rdelim == '>') { fprintRTF("\\\\bc\\\\< ("); goto finish; } /* insert left delimiter if it is not a '.' */ if (ldelim == '{' || ldelim == '}' || ldelim == '(' || ldelim == ')') fprintRTF("\\\\lc\\\\\\%c", ldelim); else if (ldelim && ldelim != '.') fprintRTF("\\\\lc\\\\%c", ldelim); else if (lcommand) { fprintRTF("\\\\lc\\\\"); ConvertString(lcommand); } /* insert right delimiter if it is not a '.' */ if (rdelim == '{' || rdelim == '}' || rdelim == '(' || rdelim == ')') fprintRTF("\\\\rc\\\\\\%c", rdelim); else if (rdelim && rdelim != '.') fprintRTF("\\\\rc\\\\%c", rdelim); else if (rcommand) { fprintRTF("\\\\rc\\\\"); ConvertString(rcommand); } /* start bracketed equation */ fprintRTF(" ("); finish: ConvertString(contents); fprintRTF(")"); SubSupWorker(TRUE); /* move super or subscripts a lot */ } else { /* not using fields */ putRtfCharEscaped(ldelim); ConvertString(contents); putRtfCharEscaped(rdelim); } safe_free(contents); safe_free(lcommand); safe_free(rcommand); } void CmdArray(int code) /****************************************************************************** purpose : Handles \begin{array}[c]{ccc} ... \end{array} ******************************************************************************/ { char *v_align, *col_align, *s; int n = 0; if (code & ON) { v_align = getBracketParam(); col_align = getBraceParam(); diagnostics(4, "CmdArray() ... \\begin{array}[%s]{%s}", v_align ? v_align : "", col_align); if (v_align) free(v_align); /* count columns */ s = col_align; while (*s) { if (*s == 'c' || *s == 'l' || *s == 'r') n++; s++; } fprintRTF(" \\\\a \\\\a%c \\\\co%d (", *col_align, n); free(col_align); if (v_align) free(v_align); g_processing_arrays++; } else { fprintRTF(")"); diagnostics(4, "CmdArray() ... \\end{array}"); g_processing_arrays--; } } void CmdMatrix(int code) /****************************************************************************** purpose : Does not handle plain tex \matrix command, but does not produce improper RTF either. ******************************************************************************/ { char *contents; fprintRTF(" matrix not implemented "); contents = getBraceParam(); free(contents); } void CmdStackrel(int code) /****************************************************************************** purpose : Handles \stackrel{a}{=} ******************************************************************************/ { char *numer, *denom; int size; size = (int) (CurrentFontSize() / 1.2); numer = getBraceParam(); denom = getBraceParam(); diagnostics(4, "CmdStackrel() ... \\stackrel{%s}{%s}", numer, denom); if (fields_use_EQ()) { fprintRTF(" \\\\a ({\\fs%d ", size); ConvertString(numer); fprintRTF("}%c", g_field_separator); ConvertString(denom); fprintRTF(") "); } else { diagnostics(WARNING, "sorry stackrel requires fields"); fprintRTF("{"); ConvertString(numer); fprintRTF(" "); ConvertString(denom); fprintRTF("}"); } free(numer); free(denom); } /****************************************************************************** purpose : Handles \overline{a} ******************************************************************************/ void CmdOverLine(int code) { char *argument; argument = getBraceParam(); diagnostics(4, "CmdOverLine() ... \\overline{%s}", argument); if (fields_use_EQ()) { fprintRTF(" \\\\x\\\\to( "); ConvertString(argument); fprintRTF(") "); } else { diagnostics(WARNING, "sorry overline requires fields"); fprintRTF("{"); ConvertString(argument); fprintRTF("}"); } free(argument); } /*************************************************************************** purpose: handle \\, \\[1pt], \\*[1pt] in \begin{array} ... \end{array} context ***************************************************************************/ void CmdArraySlashSlash(int height) { char cThis = getNonBlank(); ungetTexChar(cThis); diagnostics(4, "CmdArraySlashSlash height = %d, multiline=%d", height,g_multiline_equation_type); fprintRTF("%c", g_field_separator); } /*************************************************************************** purpose: handle \\, \\[1pt], \\*[1pt] in \begin{eqnarray} ... \end{eqnarray} context ***************************************************************************/ void CmdEqnArraySlashSlash(int height) { int restart_field=0; diagnostics(4, "CmdEqnArraySlashSlash height = %d, multiline=%d", height,g_multiline_equation_type); if (EQ_field_active()) { diagnostics(4,"ending field due to \\\\"); restart_field = 1; endCurrentField(); } if (g_show_equation_number && !g_suppress_equation_number) { char number[20]; for (; g_equation_column < 3; g_equation_column++) fprintRTF("\\tab\n"); incrementCounter("equation"); fprintRTF("\\tab{\\b0 ("); snprintf(number, 20, "%d", getCounter("equation")); InsertBookmark(g_equation_label, number); if (g_equation_label) { free(g_equation_label); g_equation_label = NULL; } fprintRTF(")}"); } switch (g_multiline_equation_type) { case EQN_ALIGN_STAR: startParagraph("equationAlign", PARAGRAPH_EQUATION); setTexMode(MODE_DISPLAYMATH); g_processing_eqnarray = TRUE; break; case EQN_ARRAY_STAR: startParagraph("equationArray", PARAGRAPH_EQUATION); setTexMode(MODE_DISPLAYMATH); g_processing_eqnarray = TRUE; break; case EQN_ALIGN: startParagraph("equationAlignNum", PARAGRAPH_EQUATION); setTexMode(MODE_DISPLAYMATH); g_processing_eqnarray = TRUE; break; case EQN_ARRAY: startParagraph("equationArrayNum", PARAGRAPH_EQUATION); setTexMode(MODE_DISPLAYMATH); g_processing_eqnarray = TRUE; break; default : diagnostics(0, "something wrong with multiline equation"); break; } fprintRTF("\\tab\n"); if (restart_field) startField(FIELD_EQ); g_suppress_equation_number = FALSE; g_equation_column = 1; } /*************************************************************************** purpose: handle \\, \\[1pt], \\*[1pt] ***************************************************************************/ void CmdSlashSlash(int height) { int restart_field=0; diagnostics(4, "CmdSlashSlash height = %d", height); if (g_processing_tabbing) { diagnostics(3," I don't think this should happen anymore! "); PopBrace(); PushBrace(); g_tab_counter = 0; return; } if (EQ_field_active()) { diagnostics(4,"ending field due to \\\\"); restart_field = 1; endCurrentField(); } if (height>0) setVspace(getVspace()+height); /* we are ending a line in an environment that is unknown so just start a new line with the whatever was used last */ // parindent = getLength("parindent"); // CmdIndent(INDENT_NONE); startParagraph("last", PARAGRAPH_SLASHSLASH); // CmdIndent(parindent); if (restart_field) startField(FIELD_EQ); } latex2rtf-2.3.18/lengths.h0000777000175000017500000000072413050672360015545 0ustar wilfriedwilfried#define SL_HOFFSET 1 #define SL_VOFFSET 2 #define SL_PARINDENT 3 #define SL_PARSKIP 4 #define SL_BASELINESKIP 5 #define SL_TOPMARGIN 6 #define SL_TEXTHEIGHT 7 #define SL_HEADHEIGHT 8 #define SL_HEADSEP 9 #define SL_TEXTWIDTH 10 #define SL_ODDSIDEMARGIN 11 #define SL_EVENSIDEMARGIN 12 #define SL_LINEWIDTH 13 void setLength(char * s, int d); int getLength(char * s); void CmdSetTexLength(int code); latex2rtf-2.3.18/parser.h0000777000175000017500000000302113050672360015366 0ustar wilfriedwilfried/* * Description: Contains declarations for generic recursive parsering * routines and other help routines for parsing LaTeX code * * 26th June 1998 - Created initial version - fb LEG * 070798 adapted Frank Barnes contribution to r2l coding conventions SAP */ #ifndef _PARSER_H_INCLUDED #define _PARSER_H_INCLUDED 1 char *CurrentFileName(void); int PushSource(const char * filename, const char * string); int StillSource(void); void PopSource(void); char getRawTexChar(void); char getTexChar(void); char getNonSpace(void); char getNonBlank(void); int getSameChar(char c); void ungetTexChar(char c); void skipToEOL(void); void skipSpaces(void); void skipWhiteSpace(void); int skipBOM(int cThis); void CmdIgnoreParameter(int); void CmdInclude(int code); char *getBraceParam(void); char *getBraceRawParam(void); char *getLeftRightParam(void); char *getBracketParam(void); char *getSimpleCommand(void); char *getTexUntil(char * target, int raw); char *getSpacedTexUntil(char *target, int raw); int getDimension(void); void parseBrace(void); char *getDelimitedText(char left, char right, int raw); int CurrentLineNumber(void); void PushTrackLineNumber(int flag); void PopTrackLineNumber(void); void UpdateLineNumber(char *s); void EndSource(void); int CurrentFileDescriptor(void); int getParserDepth(void); int getSlashSlashParam(void); void ignoreBraceParam(void); void ignoreBracketParam(void); #endif latex2rtf-2.3.18/convert.c0000777000175000017500000006445113664232427015572 0ustar wilfriedwilfried/* convert.c - high level routines for LaTeX to RTF conversion Copyright (C) 2002 The Free Software Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. This file is available from http://sourceforge.net/projects/latex2rtf/ */ #include #include #include #include #include "main.h" #include "convert.h" #include "commands.h" #include "chars.h" #include "funct1.h" #include "fonts.h" #include "stack.h" #include "tables.h" #include "equations.h" #include "direct.h" #include "ignore.h" #include "cfg.h" #include "encodings.h" #include "utils.h" #include "parser.h" #include "lengths.h" #include "counters.h" #include "preamble.h" #include "vertical.h" #include "fields.h" static int ret = 0; static void TranslateCommand(void); void ConvertString(const char *string) /****************************************************************************** purpose : converts string in TeX-format to Rtf-format ******************************************************************************/ { if (string == NULL || string == '\0') return; if (PushSource(NULL, string) == 0) { diagnostics(5, "Entering Convert() from ConvertString()"); show_string(4, string, "converting"); while (StillSource()) Convert(); PopSource(); diagnostics(5, "Exiting Convert() from ConvertString()"); } } void ConvertAllttString(char *s) /****************************************************************************** purpose : converts string in TeX-format to Rtf-format according to the alltt environment, which is like verbatim environment except that \, {, and } have their usual meanings ******************************************************************************/ { char cThis; if (s == NULL) return; diagnostics(3, "Entering Convert() from StringAllttConvert()"); if (PushSource(NULL, s) == 0) { while (StillSource()) { cThis = getRawTexChar(); /* it is a verbatim like environment */ switch (cThis) { case '\\': PushLevels(); TranslateCommand(); CleanStack(); break; case '{': PushBrace(); fprintRTF("{"); break; case '}': ret = RecursionLevel - PopBrace(); fprintRTF("}"); break; default: fprintRTF("%c",cThis); break; } } PopSource(); } diagnostics(3, "Exiting Convert() from StringAllttConvert()"); } void Convert(void) /**************************************************************************** purpose: converts inputfile and writes result to outputfile ****************************************************************************/ { char cThis = '\n'; char cLast = '\0'; char cNext; int count; diagnostics(3, "Entering Convert ret = %d", ret); RecursionLevel++; PushLevels(); while ((cThis = getTexChar()) && cThis != '\0') { if (cThis == '\n') diagnostics(6, "Current character is '\\n' mode = %d ret = %d level = %d", getTexMode(), ret, RecursionLevel); else diagnostics(6, "Current character is '%c' mode = %d ret = %d level = %d", cThis, getTexMode(), ret, RecursionLevel); /* preliminary support for utf8 sequences. Thanks to CSH */ if ((cThis & 0x8000) && (CurrentFontEncoding() == ENCODING_UTF8)) { uint8_t byte; uint16_t len, value, i; /* Get the number of bytes in the sequence */ /* Must use an unsigned character for comparisons */ byte = cThis; len = 0; value = 0; if (byte >= 0xF0) { len = 3; value = byte & ~0xF0; } else if (byte >= 0xE0) { len = 2; value = byte & ~0xE0; } else if (byte >= 0xC0) { len = 1; value = byte & ~0xC0; } /* reassemble the character */ for ( i=0; i 1) { diagnostics(3, "Exiting Convert via TranslateCommand ret = %d level = %d", ret, RecursionLevel); ret--; RecursionLevel--; return; } break; case '{': if (getTexMode() == MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); CleanStack(); PushBrace(); fprintRTF("{"); break; case '}': CleanStack(); ret = RecursionLevel - PopBrace(); fprintRTF("}"); if (ret > 1) { diagnostics(3, "Exiting Convert via '}' ret = %d level = %d", ret, RecursionLevel); ret--; RecursionLevel--; return; } break; case ' ': if (getTexMode() == MODE_VERTICAL || getTexMode() == MODE_MATH || getTexMode() == MODE_DISPLAYMATH) cThis = cLast; else if (cLast != ' ' && cLast != '\n') { if (getTexMode() == MODE_RESTRICTED_HORIZONTAL) fprintRTF("\\~"); else fprintRTF(" "); } break; case '\n': g_tab_counter = 0; if (getTexMode() == MODE_MATH || getTexMode() == MODE_DISPLAYMATH) { cNext = getNonBlank(); ungetTexChar(cNext); } else { cNext = getNonSpace(); if (cNext == '\n') { /* new paragraph ... skip all ' ' and '\n' */ CmdEndParagraph(0); } else { /* add a space if needed */ ungetTexChar(cNext); if (getTexMode() != MODE_VERTICAL && cLast != ' ') fprintRTF(" "); } } break; case '$': cNext = getTexChar(); diagnostics(5, "Processing $, next char <%c>", cNext); if (cNext == '$' && getTexMode() != MODE_MATH) CmdEquation(EQN_DOLLAR_DOLLAR | ON); else { ungetTexChar(cNext); CmdEquation(EQN_DOLLAR | ON); } break; case '&': /* should occur in array, align, or eqnarray environments */ /* are we are in the middle of \begin{array} ... \end{array} */ if (g_processing_arrays) { fprintRTF("%c", g_field_separator); break; } /* must be in 'eqnarray' or 'align' environment */ if (EQ_field_active()) { diagnostics(4,"ending/restarting field before alignment '&'"); endCurrentField(); fprintRTF("\\tab\n"); startField(FIELD_EQ); } else { diagnostics(4,"tabbing to match '&'"); fprintRTF("\\tab\n"); } g_equation_column++; break; case '~': fprintRTF("\\~"); break; case '^': CmdSuperscript(0); break; case '_': CmdSubscript(0); break; case '-': if (getTexMode() == MODE_MATH || getTexMode() == MODE_DISPLAYMATH) CmdUnicodeChar(8722); /* MINUS SIGN */ else { changeTexMode(MODE_HORIZONTAL); count = getSameChar('-') + 1; if (count == 1) fprintRTF("-"); else if (count == 2) fprintRTF("\\endash "); else if (count == 3) fprintRTF("\\emdash "); else while (count--) fprintRTF("-"); } break; case '|': if (getTexMode() == MODE_MATH || getTexMode() == MODE_DISPLAYMATH) fprintRTF("|"); else fprintRTF("\\emdash "); break; case '\'': if (getTexMode() == MODE_MATH || getTexMode() == MODE_DISPLAYMATH) fprintRTF("'"); else { changeTexMode(MODE_HORIZONTAL); count = getSameChar('\'') + 1; if (count == 2) fprintRTF("\\rdblquote "); else while (count--) fprintRTF("\\rquote "); } break; case '`': if (getTexMode() == MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); count = getSameChar('`') + 1; if (count == 2) fprintRTF("\\ldblquote "); else while (count--) fprintRTF("\\lquote "); break; case '\"': changeTexMode(MODE_HORIZONTAL); if (GermanMode) TranslateGerman(); else fprintRTF("\""); break; case '<': if (getTexMode() == MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); if (getTexMode() == MODE_HORIZONTAL) { cNext = getTexChar(); if (cNext == '<') { fprintRTF("\\'ab"); } else { ungetTexChar(cNext); fprintRTF("<"); } } else fprintRTF("<"); break; case '>': if (getTexMode() == MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); if (getTexMode() == MODE_HORIZONTAL) { cNext = getTexChar(); if (cNext == '>') fprintRTF("\\'bb"); else { ungetTexChar(cNext); fprintRTF(">"); } } else fprintRTF(">"); break; case '!': if (getTexMode() == MODE_MATH || getTexMode() == MODE_DISPLAYMATH) fprintRTF("!"); else { changeTexMode(MODE_HORIZONTAL); if ((cNext = getTexChar()) && cNext == '`') { fprintRTF("\\'a1 "); } else { fprintRTF("!"); /* WH 2014-06-16: Blank removed, was fprintRTF("! ") */ ungetTexChar(cNext); } } break; case '?': changeTexMode(MODE_HORIZONTAL); if ((cNext = getTexChar()) && cNext == '`') { fprintRTF("\\'bf "); } else { fprintRTF("?"); ungetTexChar(cNext); /* WH 2014-06-16: Blank removed, was fprintRTF("? ") */ } break; case ':': if (getTexMode() == MODE_MATH || getTexMode() == MODE_DISPLAYMATH) fprintRTF(":"); else { changeTexMode(MODE_HORIZONTAL); if (FrenchMode) fprintRTF("\\~:"); else fprintRTF(":"); } break; case '.': if (getTexMode() == MODE_MATH || getTexMode() == MODE_DISPLAYMATH) fprintRTF("."); else { changeTexMode(MODE_HORIZONTAL); fprintRTF("."); /* try to simulate double spaces after sentences */ cNext = getTexChar(); if (0 && cNext == ' ' && (isalpha((int) cLast) && !isupper((int) cLast))) fprintRTF(" "); ungetTexChar(cNext); } break; case '\t': diagnostics(WARNING, "This should not happen, ignoring \\t"); cThis = ' '; break; case '\r': diagnostics(WARNING, "This should not happen, ignoring \\r"); cThis = ' '; break; case '%': /*diagnostics(WARNING, "This should not happen, ignoring %%");*/ skipToEOL(); cThis = ' '; break; case '(': if (processing_fields() && g_escape_parens) fprintRTF("\\\\("); else fprintRTF("("); break; case ')': if (processing_fields() && g_escape_parens) fprintRTF("\\\\)"); else fprintRTF(")"); break; case ';': if (g_field_separator == ';' && processing_fields()) fprintRTF("\\\\;"); else if (FrenchMode) fprintRTF("\\~;"); else fprintRTF(";"); break; case ',': if (g_field_separator == ',' && processing_fields()) { if (g_processing_arrays) { /* this is crazy, fields fail if \, is present in EQ array! */ /* substitute semi-colon because it is least worst option */ fprintRTF(";"); } else { fprintRTF("\\\\,"); } } else { /* ,, is \quotedblbase nearly always */ if ((cNext = getTexChar()) && cNext == ',') { fprintRTF("\\'84"); } else { fprintRTF(","); ungetTexChar(cNext); } } break; default: if (getTexMode() == MODE_MATH || getTexMode() == MODE_DISPLAYMATH) { if (('a' <= cThis && cThis <= 'z') || ('A' <= cThis && cThis <= 'Z')) { if (CurrentFontSeries() == F_SERIES_BOLD) /* do not italicize */ fprintRTF("%c", cThis); else if (CurrentFontShape() == F_SHAPE_MATH_UPRIGHT) fprintRTF("%c", cThis); else fprintRTF("{\\i %c}", cThis); } else fprintRTF("%c", cThis); } else { if (getTexMode()==MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); if (CurrentFontEncoding() != ENCODING_OT2) fprintRTF("%c", cThis); else CmdOT2Transliteration(cThis); } break; } g_tab_counter++; cLast = cThis; } RecursionLevel--; diagnostics(3, "Exiting Convert via exhaustion ret = %d", ret); } static void TranslateCommand(void) /**************************************************************************** purpose: The function is called on a backslash in input file and tries to call the command-function for the following command. returns: success or not ****************************************************************************/ { char cCommand[MAXCOMMANDLEN]; int i, mode, height; int cThis,cNext; cThis = getTexChar(); mode = getTexMode(); diagnostics(4, "Beginning TranslateCommand() \\%c", cThis); switch (cThis) { case 'a': if (!g_processing_tabbing) break; cNext = getTexChar(); if (cNext=='=' ) {CmdMacronChar(0); return;} if (cNext=='\'') {CmdAcuteChar(0); return;} if (cNext=='`' ) {CmdAcuteChar(0); return;} ungetTexChar(cNext); break; case '}': if (mode == MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); fprintRTF("\\}"); return; case '{': if (mode == MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); fprintRTF("\\{"); return; case '#': if (mode == MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); fprintRTF("#"); return; case '$': if (mode == MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); fprintRTF("$"); return; case '&': if (mode == MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); fprintRTF("&"); return; case '%': if (mode == MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); fprintRTF("%%"); return; case '_': if (mode == MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); fprintRTF("_"); return; case '\\': /* \\[1mm] or \\*[1mm] possible */ diagnostics(5,"here we are in TranslateCommand with '\\\\'"); height = getSlashSlashParam(); if (g_processing_arrays) /* \begin{array} ... \end{array} */ CmdArraySlashSlash(height); /* may be contained in eqnarray environment */ else if (g_processing_eqnarray) CmdEqnArraySlashSlash(height); else if (g_processing_tabbing) diagnostics(1,"should not be processing \\\\ in tabbing here"); else if (g_processing_tabular) diagnostics(1,"should not be processing \\\\ in tabular here"); else CmdSlashSlash(height); return; case 0x0D: /*handle any CRLF that might have snuck in*/ cNext = getTexChar(); if (cNext != 0x0A) ungetTexChar(cNext); /* fall through */ case '\t': /* tabs should already be spaces */ case ' ': case 0x0A: if (mode == MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); fprintRTF(" "); /* ordinary interword space */ skipSpaces(); return; /* \= \> \< \+ \- \' \` all have different meanings in a tabbing environment */ case '-': if (mode == MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); if (g_processing_tabbing) { (void) PopBrace(); PushBrace(); } else fprintRTF("\\-"); return; case '+': if (mode == MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); if (g_processing_tabbing) { (void) PopBrace(); PushBrace(); } return; case '<': if (mode == MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); if (g_processing_tabbing) { (void) PopBrace(); PushBrace(); } return; case '>': if (mode == MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); if (g_processing_tabbing) { (void) PopBrace(); CmdTabjump(); PushBrace(); } else CmdSpace((float)0.50); /* medium space */ return; case '`': if (mode == MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); if (g_processing_tabbing) { (void) PopBrace(); PushBrace(); } else CmdGraveChar(0); return; case '\'': if (mode == MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); if (g_processing_tabbing) { (void) PopBrace(); PushBrace(); return; } else CmdAcuteChar(0); /* char ' =?= \' */ return; case '=': if (mode == MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); if (g_processing_tabbing) { (void) PopBrace(); CmdTabset(); PushBrace(); } else CmdMacronChar(0); return; case '~': if (mode == MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); CmdTildeChar(0); return; case '^': if (mode == MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); cThis = getTexChar(); if (cThis=='^') { /* usually \^^M ... just replace with a blank */ getTexChar(); fprintRTF(" "); } else { ungetTexChar(cThis); CmdHatChar(0); } return; case '.': if (mode == MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); CmdDotChar(0); return; case '\"': if (mode == MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); CmdUmlauteChar(0); return; case '(': CmdEquation(EQN_RND_OPEN | ON); /* PushBrace(); */ return; case '[': CmdEquation(EQN_BRACKET_OPEN | ON); /* PushBrace(); */ return; case ')': CmdEquation(EQN_RND_CLOSE | OFF); /* ret = RecursionLevel - PopBrace(); */ return; case ']': CmdEquation(EQN_BRACKET_CLOSE | OFF); /* ret = RecursionLevel - PopBrace(); */ return; case '/': CmdIgnore(0); /* italic correction */ return; case '!': CmdIgnore(0); /* \! negative thin space */ return; case ',': if (mode == MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); CmdNonBreakSpace(50); /* \, produces a small space = 50% */ return; case ';': if (mode == MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); CmdSpace((float)0.75); /* \; produces a thick space */ return; case '@': CmdIgnore(0); /* \@ produces an "end of sentence" space */ return; case '3': if (mode == MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); fprintRTF("{\\'df}"); /* german symbol 'á' */ return; } /* Commands consist of letters and can have an optional * at the end */ for (i = 0; i < MAXCOMMANDLEN-1; i++) { if (!isalpha((int) cThis) && (cThis != '*')) { int found_nl = FALSE; if (cThis == '%') { /* put the % back and get the next char */ ungetTexChar('%'); cThis = getTexChar(); } /* all spaces after commands are ignored, a single \n may occur */ while (cThis == ' ' || (0 && cThis == '\n' && !found_nl)) { if (cThis == '\n') found_nl = TRUE; cThis = getTexChar(); } ungetTexChar(cThis); /* put back first non-space char after command */ break; /* done skipping spaces */ } else cCommand[i] = cThis; cThis = getRawTexChar(); /* Necessary because % ends a command */ } cCommand[i] = '\0'; /* mark end of string with zero */ diagnostics(4, "TranslateCommand() <%s>", cCommand); if (i==MAXCOMMANDLEN-1) { diagnostics(WARNING, "Skipping absurdly long command <%s>", cCommand); return; } if (i == 0) return; if (strcmp(cCommand, "begin") == 0) { fprintRTF("{"); PushBrace(); } if (CallCommandFunc(cCommand)) { /* call handling function for command */ if (strcmp(cCommand, "end") == 0) { diagnostics(4, "before PopBrace()"); ret = RecursionLevel - PopBrace(); diagnostics(4, "after PopBrace(), ret=%d",ret); fprintRTF("}"); } return; } if (TryDirectConvert(cCommand)) return; if (TryVariableIgnore(cCommand)) return; if (TryTheCounter(cCommand)) return; diagnostics(WARNING, "Unknown command '\\%s'", cCommand); } latex2rtf-2.3.18/biblio.h0000777000175000017500000000134413050672360015340 0ustar wilfriedwilfried#ifndef _BIBLIO_INCLUDED #define _BIBLIO_INCLUDED 1 typedef enum { BIBLIO_BIBCITE = 0, BIBLIO_HARVARD, BIBLIO_NATBIB } BiblioType; typedef struct _biblioElem { char *biblioKey; char *biblioN; char *biblioFull; char *biblioAbbr; char *biblioYear; BiblioType biblioType; } biblioElem; biblioElem *getBiblio(char *cite); biblioElem *newBibCite(char *cite, char *tag); biblioElem *newHarvardCite(char *cite,char *full,char* abbr,char *year); biblioElem *newNatBibCite(char *cite,char *full,char* abbr,char *year,char *n); char *getBiblioRef(char *key); char *getBiblioFirst(char *key); void CmdBibCite(int code); void CmdAuxHarvardCite(int code); #endif latex2rtf-2.3.18/fonts.h0000777000175000017500000000531513050672360015233 0ustar wilfriedwilfried#define F_FAMILY_ROMAN 1 #define F_FAMILY_ROMAN_1 2 #define F_FAMILY_ROMAN_2 3 #define F_FAMILY_ROMAN_3 4 #define F_FAMILY_ROMAN_4 17 #define F_FAMILY_SANSSERIF 5 #define F_FAMILY_SANSSERIF_1 6 #define F_FAMILY_SANSSERIF_2 7 #define F_FAMILY_SANSSERIF_3 8 #define F_FAMILY_SANSSERIF_4 18 #define F_FAMILY_TYPEWRITER 9 #define F_FAMILY_TYPEWRITER_1 10 #define F_FAMILY_TYPEWRITER_2 11 #define F_FAMILY_TYPEWRITER_3 12 #define F_FAMILY_TYPEWRITER_4 19 #define F_FAMILY_CALLIGRAPHIC 13 #define F_FAMILY_CALLIGRAPHIC_1 14 #define F_FAMILY_CALLIGRAPHIC_2 15 #define F_FAMILY_CALLIGRAPHIC_3 16 #define F_SHAPE_SLANTED 1 #define F_SHAPE_SLANTED_1 2 #define F_SHAPE_SLANTED_2 3 #define F_SHAPE_SLANTED_3 4 #define F_SHAPE_SLANTED_4 17 #define F_SHAPE_ITALIC 5 #define F_SHAPE_ITALIC_1 6 #define F_SHAPE_ITALIC_2 7 #define F_SHAPE_ITALIC_3 8 #define F_SHAPE_ITALIC_4 18 #define F_SHAPE_CAPS 9 #define F_SHAPE_CAPS_1 10 #define F_SHAPE_CAPS_2 11 #define F_SHAPE_CAPS_3 12 #define F_SHAPE_CAPS_4 19 #define F_SHAPE_UPRIGHT 13 #define F_SHAPE_UPRIGHT_1 14 #define F_SHAPE_UPRIGHT_2 15 #define F_SHAPE_UPRIGHT_3 16 #define F_SHAPE_MATH_UPRIGHT 17 #define F_SERIES_MEDIUM 1 #define F_SERIES_MEDIUM_1 2 #define F_SERIES_MEDIUM_2 3 #define F_SERIES_MEDIUM_3 4 #define F_SERIES_BOLD 5 #define F_SERIES_BOLD_1 6 #define F_SERIES_BOLD_2 7 #define F_SERIES_BOLD_3 8 #define F_SERIES_BOLD_4 9 #define F_TEXT_NORMAL 1 #define F_TEXT_NORMAL_1 2 #define F_TEXT_NORMAL_2 3 #define F_TEXT_NORMAL_3 4 #define F_EMPHASIZE_1 2 #define F_EMPHASIZE_2 3 #define F_EMPHASIZE_3 4 #define F_SMALLER -1 #define F_LARGER -2 void InitializeDocumentFont(int family, int size, int shape, int series, int encoding); void CmdFontFamily(int code); int CurrentFontFamily(void); int DefaultFontFamily(void); void CmdFontShape(int code); int CurrentFontShape(void); int DefaultFontShape(void); void CmdFontSeries(int code); int CurrentFontSeries(void); int DefaultFontSeries(void); void CmdFontSize(int code); int CurrentFontSize(void); int DefaultFontSize(void); void CmdFontSizeEnviron(int code); void CmdFontEncoding(int code); int CurrentFontEncoding(void); int DefaultFontEncoding(void); void CmdEmphasize(int code); void CmdUnderline(int code); void CmdTextNormal(int code); int TexFontNumber(const char *Fname); int RtfFontNumber(const char *Fname); void PushFontSettings(void); void PopFontSettings(void); void MonitorFontChanges(const unsigned char *text); latex2rtf-2.3.18/main.h0000777000175000017500000000737113050672360015032 0ustar wilfriedwilfried#ifndef _MAIN_H_INCLUDED #define _MAIN_H_INCLUDED 1 #if defined(UNIX) #define ENVSEP ':' #define PATHSEP '/' #define HAS_STRDUP #endif #if defined(MSDOS) || defined(OS2) #define ENVSEP ';' #define PATHSEP '\\' #endif #if defined(VMS) #define ENVSEP ',' #define PATHSEP '' #endif #ifdef HAS_STRDUP #else #define strdup my_strdup #endif #ifndef SEEK_SET #define SEEK_SET 0 #define SEEK_CUR 1 #endif #define ERROR 0 #define WARNING 1 #define MAXCOMMANDLEN 100 /* available values for alignment */ #define LEFT 'l' #define RIGHT 'r' #define CENTERED 'c' #define JUSTIFIED 'j' #define PATHMAX 255 /*** error constants ***/ #include #include #include /*** handy boolean type definition ***/ #ifndef TRUE typedef enum { FALSE = 0, TRUE } boolean; #endif /*** interpret comment lines that follow the '%' with this string ***/ extern const char * InterpretCommentString; void diagnostics(int level, char *format,...); extern char *g_aux_name; extern char *g_toc_name; extern char *g_lof_name; extern char *g_lot_name; extern char *g_bbl_name; extern char *g_home_dir; extern char *progname; /* name of the executable file */ extern int GermanMode; extern int FrenchMode; extern int RussianMode; extern int CzechMode; extern int pagenumbering; extern int headings; extern int g_verbosity_level; extern int RecursionLevel; /* table & tabbing variables */ extern long pos_begin_kill; extern int g_tab_counter; extern int g_equation_column; extern int twocolumn; extern int titlepage; extern int g_processing_equation; extern int g_processing_preamble; extern int g_processing_figure; extern int g_processing_table; extern int g_processing_tabbing; extern int g_processing_tabular; extern int g_processing_eqnarray; extern int g_processing_arrays; extern uint16_t g_dots_per_inch; extern int g_document_type; extern int g_document_bibstyle; extern int g_equation_number; extern int g_escape_parens; extern int g_show_equation_number; extern int g_enumerate_depth; extern int g_suppress_equation_number; extern int g_aux_file_missing; extern int g_bbl_file_missing; extern int g_graphics_package; extern int g_amsmath_package; extern char *g_figure_label; extern char *g_table_label; extern char *g_equation_label; extern char *g_section_label; extern char *g_config_path; extern char *g_script_dir; extern char g_field_separator; extern char *g_preamble; extern double g_png_equation_scale; extern double g_png_figure_scale; extern int g_latex_figures; extern int g_endfloat_figures; extern int g_endfloat_tables; extern int g_endfloat_markers; extern int g_equation_inline_rtf; extern int g_equation_display_rtf; extern int g_equation_inline_bitmap; extern int g_equation_display_bitmap; extern int g_equation_comment; extern int g_equation_raw_latex; extern int g_equation_inline_eps; extern int g_equation_display_eps; extern int g_equation_mtef; extern int g_figure_include_direct; extern int g_figure_include_converted; extern int g_figure_comment_direct; extern int g_figure_comment_converted; extern int g_tabular_display_rtf; extern int g_tabular_display_bitmap; extern int g_little_endian; extern int g_tableofcontents; void fprintRTF(char *format, ...); void putRtfCharEscaped(char cThis); void putRtfStrEscaped(const char * string); char *getTmpPath(void); char *my_strdup(const char *str); FILE *my_fopen(char *path, char *mode); void debug_malloc(void); #endif latex2rtf-2.3.18/doc/0000777000175000017500000000000013664471447014505 5ustar wilfriedwilfriedlatex2rtf-2.3.18/doc/latex2pn.txt0000644000175000017500000000347213664471447017005 0ustar wilfriedwilfriedLATEX2PNG(1) User LATEX2PNG(1) NAME latex2png - manual page for latex2png 1.1 DESCRIPTION latex2png -- Convert a LaTeX file to a PNG image USAGE: latex2png [-d density] [-h] [-k] [-c] [-g] [-m] [-H home dir] file[.tex|.eps] The latex2png command converts a LaTeX file into a PNG image. The first page is translated into an image at the specified resolution. latex2png can also be used to convert encapsulated postscript (EPS) files to PNG images. OPTIONS: -c produce color image -d density density is the number of dots per inch to use in the created image (default 144 dpi) -g produce gray images -h help -H home_dir home_dir is a directory to be included in search path (default is directory that contains the LaTeX file). This is used to create PNG images in another directory (e.g., /tmp) and still allow LaTeX to find files that it needs to include. -k keep intermediate files (for debugging) -m produce monochrome (black and white) image (default) -v version EXAMPLES: latex2png -d 144 /tmp/file #create /tmp/file.png at 144 dpi latex2png file.eps #create file.png latex2png file.tex #create file.png via latex latex2png -H . /tmp/file #search the cwd for image files SEE ALSO latex2png is a part of latex2rtf and has a special mode to assist in finding the baseline of a latex equation. Documentation for latex2rtf may be found in latex2rtf.info, the PDF file latex2rtf.pdf or the HTML file latex2rtf.html which are made from the TeXInfo source file latex2rtf.texi. latex2png 1.90 October 2012 LATEX2PNG(1) latex2rtf-2.3.18/doc/latex2png.10000777000175000017500000000326413050672354016470 0ustar wilfriedwilfried.TH LATEX2PNG "1" "October 2012" "latex2png 1.9\n" "User Commands" .SH NAME latex2png \- manual page for latex2png 1.1 .SH DESCRIPTION latex2png \fB\-\-\fR Convert a LaTeX file to a PNG image .PP USAGE: latex2png [-d density] [-h] [-k] [-c] [-g] [-m] [-H home dir] file[.tex|.eps] .PP The .I latex2png command converts a LaTeX file into a PNG image. The first page is translated into an image at the specified resolution. .I latex2png can also be used to convert encapsulated postscript (EPS) files to PNG images. .SS "OPTIONS:" .HP \fB\-c\fR produce color image .TP \fB\-d\fR density .I density is the number of dots per inch to use in the created image (default 144 dpi) .HP \fB\-g\fR produce gray images .TP \fB\-h\fR help .TP \fB\-H\fR home_dir .I home_dir is a directory to be included in search path (default is directory that contains the LaTeX file). This is used to create PNG images in another directory (e.g., /tmp) and still allow LaTeX to find files that it needs to include. .TP \fB\-k\fR keep intermediate files (for debugging) .TP \fB\-m\fR produce monochrome (black and white) image (default) .TP \fB\-v\fR version .SS "EXAMPLES:" .TP latex2png \fB\-d\fR 144 /tmp/file #create /tmp/file.png at 144 dpi .TP latex2png file.eps #create file.png .TP latex2png file.tex #create file.png via latex .TP latex2png \fB\-H\fR . /tmp/file #search the cwd for image files .SH "SEE ALSO" .B latex2png is a part of .B latex2rtf and has a special mode to assist in finding the baseline of a latex equation. Documentation for .B latex2rtf may be found in .B latex2rtf.info, the PDF file .B latex2rtf.pdf or the HTML file .B latex2rtf.html which are made from the TeXInfo source file .BR latex2rtf.texi.latex2rtf-2.3.18/doc/latex2rtf.pdf0000777000175000017500000170021113664242065017110 0ustar wilfriedwilfried%PDF-1.5 %ĐÔĹŘ 1 0 obj << /Length 587 /Filter /FlateDecode >> stream xÚmTM˘@˝ó+z&ÎÁą?tBL$ń°ăd4›˝*´.‰<řďˇ_•čĚf’WŻ_wŐŤîrđăc;Šňę`GćUŠOŰV×&łŁřçžöƒ¤ĘŽ[vďÖć6ďWŰ7ńŃTŮÖvbŻ“uYt/Nź.łó5ˇ˝ę˙˘Ľ=ĺS‚> stream xÚmTM˘@˝ó+z&ÎÁą?tBL0ń°ăd4›˝*´.‰<Ěżß~U˘Îf’WŻ_u˝Şîvđăc;ZäŐÁŽĚŤŸś­ŽMfGńĎ}í I•]/śěŢ­ÍmŢŻśo⣊˛­íÄ0^'ë˛č^œx]fçkn{Ő˙EK{*ʇuÄpg6;ľŢ$4ť˘;ťľgZ8, ’ü˛M[Tĺ›PŻRJG¤eWxm˝ń­ž÷ŽE™7ˇ˘â žŇ"/˛îŃ7ť¸Ś‘źýj;{Y—Çʋ"1ţt‹m×|‘ŁoźirŰĺI ɑcś×ş>[TқĎEnn#×ŰűţbĹřš‘űŇBSŹŘEVĺś­÷™möĺÉz‘”s…ŤšgËüŸľ)gŽĎRŠđ133wÄ xAÄbęí;ŹŇaGL6K& 0+‡}&ö"?‘á°(ŇŚŇa/ Ącě,•!Ł˝Ľ‰î-fö3¤Ů*IĂx {aސůđ”sIC%ŇđhSô˘¨7ĺŁĹ}­HĎ=ŤIYƒš(îƒęjŧ ˙Zóéŕü4{ÖŘSOŘá5˜‡áZ äŽekxvKşˇÇŹü÷…Ü@2aÂ> stream xÚmSÁnâ0˝ç+ź$z Ř¨"¤€ÄaKU˘Ő^C<ĐHŕDN8đ÷őĚŠV{Hôüćç=üú؏S`žJń m}u%ŒŇßE Y]^/`ťwŚśoâĂŐĺ:1LˇŮÖV݋omyžčU˙­ŕTŮ ÖĂţŽvšĘó‘DM^ug{Ś…Ç‚° ÉpmUŰ7Ą^Ľ”žX[“ÖôÚă{=1î+kÜ˝¨8 …@iaŞ˛ťŻč_^|Ó˜źżľ\śöXq,ß>ŘvîFŽ^‚ńÎp•=‰!9ňĚţÚ4gŔęBËĽ0pôůŢދ ˆńs#P~k@hZ+vQÖÚŚ(ÁöA,ĺRÄŃf€5˙ÄŚœq8>KĽÂ_¸—žX NˆHćžĐÔ3$¤Çž˜{<Ý0Š*˘5cŐ~˙P÷őĘŻÂůÝ5WÂ42^!ž0^#žrq‰xƘœE„3xÎü ń Şz“)cŇgl1BĚîҰő•?ŸXqű!ňŠNA‡¨WšťA*dý1ůÔ)iȧΰĹç“Đžó â9璆NVf¤Ą–kôŻVäaŠžUJü†ôě?%͚5Řťb˙TWŁ=јŤąŽ–žŒżÉ5ëń2éfč&p2pjłV^ócHŁMc†VYxLS7˜E=›ţ1âjˇ žgČČ endstream endobj 6 0 obj << /Length 477 /Filter /FlateDecode >> stream xڍS]kŰ0}÷ŻĐŁ ľŞďÇšŽŃÁ–V{pc;MěNq7öďweىSĘ(~Đĺęčœsd†(| 9ŠŒÄI‹6‡ŒŽÝ°EŠXßelÂIÁaý/¤ˆ˜‚˝ƒŹŐÂđ‘ďC™]݌Fœ­ŹBe=)͈ӨŹŃ|Ÿ˙,?]Ż,1šE”3ˆŁTBU őЉ0kPą€•†'Ü:p ,Š;÷…Bçî_çNârwłŰ2űuš!š”ŽČyŇ8<ŒşĄAmö5 ˛ŒG‹v„†Ě"% ąbŇ¸É !Ţô]Î ţs‹›04!ľŰĐRuŽaÁh-aB"F$u9\ +B•„ť9ĂRšPÍb>B^äűhŃ}H†>ŽŻs;‡‚ a%1Rfš09ąÔ~đ0ĐxŠCřˆĽ 4OŢöӐϡ߆ęČ§ާóŕŽ1ŐUW'ÔËó龙ٚÇ9A@K8ľIáŽéĂ…ď›]ׄŤˇŇĄށšu54u}ŒŽţŚúťßˇÁ7“‹M×ůn{ź0'đˇM? ŠüŞÝţ*Ą˙řaˇ¸l‹‡ŕ_bPÇ×BöOťĘď'–¸Ńď}ŐŸü›o‘Q‰‰ĺk„?ȉů5ţ˛ę endstream endobj 5 0 obj << /Type /Page /Contents 6 0 R /Resources 4 0 R /MediaBox [0 0 612 792] /Parent 10 0 R >> endobj 4 0 obj << /Font << /F76 7 0 R /F82 8 0 R /F55 9 0 R >> /ProcSet [ /PDF /Text ] >> endobj 13 0 obj << /Length 874 /Filter /FlateDecode >> stream xڍTQÓ0 ~߯¨xę$VšŚYŰWwĐ †xŕxČÚŹ‹ŽkŚ4;¸'ťŒęCl׎óٟ͒>–4yRqž5e´‡Eî­śOHř|˝`ÁŻäœ/şŹDQ$ŤŮmo7‹7WB$,ϚźaÉf‡éŠ‚eUS%›.ůžž3ÇeQ§V÷{ÜňÇćc"ĘŹ¨x’gźhČŻEű›Ťu9żlĹłœCޙß]Κ>ĎËĘL”kxŚ÷bMS݊œŐËç<˝VĆö(–éÚĘž&ű7=ěŹViÔ8걟ÂĎ/­qŽ‚n­Üţ፾ȪşNVl1Ţt‹Ŕ”=čiŇf„QŚz“§˝•ŁÇíłŔgčÇAŢű0˛Ęą#s§'gőöäéˢ‚ťˇŇé%KäݚŁV!Ů…{÷1ĺ2žä@ŽÖ ţ ;’¸˝ňhrŔÁ3&XčÁ_˝ňčGătŤ¨(ôNÎc:ř}\ŽüŸŕ˙cƒp´jR–…kČ|†…–NŮů•/TťdŻvYäĎŤ?°ÚxzhUúHšGÂźÚ¨ŔÂ; 4+㔳MdÁšc:ˇ‡§ĆÜó˛ŁÓiě” ŻřW˝ÇNťp-ŻÓą$̚~ Kl đčYŽCW+ěj,WGŽr˜ In/]” oŇIľł„ŠŠĽÝ BđăĺťX+Ŕ6öŻ(Kvú_ú ˝Ťj3-Ď:PnOŰAˇ$ßĆI˝"ř‚ŰáD¤Mý’­ƒĎ]čôP0@N=ʇ´Dű$Żúů“éĹTŠş<ƒˇ^)ó48HČҞ,Đ?MÍď(ä'*ĆޓćnD"ˆ;ďŔ͏mąä}Î뀻‰žGpJ:Žž|sj×çIşP{€ ´žč8•†Ś(N'˜úŻ)ŕ‹1x>›"ŽĹ3˛4_{ćS$x‘:ˆŸˆ†TœˇJóińš)ىW¨—˝„zc’˝zMĺ‰S&b…q™n}!‰aɖBÄyƒĆĐ€‰FbüäWóÉc˜C?ů!ŸúŐŞŁ‹ ĺYňd÷đ‚ůn<Ȱ–PĄg‡?““.nIśŞ ]~Şo؞ÇH˙€Ö/ş’úE+[Ń5WKbUĐž˜C/OîóŽhT×§ńZźß,~ݝ9n endstream endobj 12 0 obj << /Type /Page /Contents 13 0 R /Resources 11 0 R /MediaBox [0 0 612 792] /Parent 10 0 R >> endobj 11 0 obj << /Font << /F55 9 0 R /F64 14 0 R >> /ProcSet [ /PDF /Text ] >> endobj 20 0 obj << /Length 3029 /Filter /FlateDecode >> stream xÚÍZYÜĆ~ׯ˜řĹ\`‡â}$A”ŘŽâ81Ź5ĂÖwŘ3CˆCNxxwƒüř|u4‡3˕DbwuMwÝ]U˝ţĘĂ?•{Ť4 Ý<ĘV›Ă3ĄÝn%ƒžyć+Ţˆë招gĎżŽă•ďšš—űŤ›í*ö7Žâiż›rőłă_˝šůËłŻnŚâ řŔ óёi˛ňS7đ㈎QIš~ŮÓÖq8/›ŤĐw†Ž˝Ză[Ž›Ąj"ä’dđdŽ—ëĎ˙*8Y0Ç Ü ߍź\°ŠĽb×`=Cť!´Uâz qĂHÁ_Ŕ3č?‚Ž˛ĐšůújÄšSőň-đILz$ě=Ĺr—%›SG‰ĆËén„:˙ŁT°č˙ćF řX‰¤ćŚ(ANKŽ^˛ÍP›+\÷›ş¨bc@ißjAű÷oóŮj˘lDrČJ ™öý`ÚrŔËΈ$„˘í>ŕhj—‰{lŮ]y˙ÁnŚ™Ű?­P ?@ÝîČů4KşqCaH‘ˇ–LѸżĐĎŁT†ÂůúžŞmcŸhIÓYçžSH(SŽSřžÚžŠ‰ÖČęgUÁlďYÇgřŰâŔ†OcfK˛5ż—ć6‰u!ž˘Ž§d9j`%Š˜)Ë;´˝œ”ţi9i&Kľkć;%„¤Â§{Ą¨éîßím×L+TjřSYŤ÷;âźXJmtCÜS­Ÿc%ŸĽ'“Ů&Ňň8]iíB^lîŤŰڜqMřę_ŚÔĘ7@1’$2w˛ęЗç€0°śv-Py$!x!€ţPP`%H?ŢrבĆl%Ą?“3A÷E/`5JŁg Ž5{îهňîB¸%_aůŋ=ÜÄ—Ż…Qęqo †Č˘{÷‹ĄĹ^ĎĐ*/7C6ňJČÔdŽŻžœéŽsAţücóˆ+2ÚŻébŃüäÍľ6Š–AA~É\ăœß$tó÷ńf‘×'ěÖ.śdr!ZŞÍÁFzŃą|%ů>ńĐW\‰˜ŽĹmUŁbcŻ™Ą,{MÓöňϚ™śiH ŒI‚9ť8˝TmÚă”|‘zîdř”ý%9â@Š?uÓô˝ö§Řëú’ý]lznDMć†jŠîxfßj ŽAó2č7x­˝… öćç9Ѱ ÂČM‚÷đb‘×'ěV.śź´ˇQ;šhežT…RTŕ[ČçĐJWIšĐˆ˙Eˇ3\fGÓ#çŚĐnzxöćM Ł{Ę3˝ôĂ"Nk!]}{dߝŽj̝ p嘆Z–4m¸­§+hŚ [ŽüN:7¨ęúË&k>ďŹrJŻď39ĺCĽÓšéŹđĘŚ§nŠäţ¸­KAĎmƒ§”…Go‰ëÄçˇóĽűťZ‹{ę äöÉ9ŽŃ*l¨6˝ŹÉ[ݜşÄ–‰”ú€Ä`äŐř)ˇHŕ‰ŽquxzZJlüiL'Mš 'âŕRů,-m×I!˜?ŇűůŠDŔ‚VHMň¤Î—Z $ÉÇZë4‚–˛ËT `,•”ď<§ŒF@Ź6=fEEÝ ĄĆĎŢçt íô'U˝ř`ŢŞŸ8 íł Ľúś5Qł(%‚„[âXgřĄƒœě­V ÇEx˝ÔČ˝Tńéűţ:ÇbŻgč ’ł^ĹŌ҆ăoŸ?§Úě>膭ŰoÝĆ ĎEß.Gąň.Šţ!h endstream endobj 19 0 obj << /Type /Page /Contents 20 0 R /Resources 18 0 R /MediaBox [0 0 612 792] /Parent 10 0 R /Annots [ 15 0 R 23 0 R 16 0 R 24 0 R 17 0 R ] >> endobj 15 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [470.989 274.334 522 285.243] /A << /S /GoTo /D (Unimplemented\040Features) >> >> endobj 23 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [90 261.183 258.121 272.092] /A << /S /GoTo /D (Unimplemented\040Features) >> >> endobj 16 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [469.947 245.044 522 255.953] /A << /S /GoTo /D (Known\040Bugs) >> >> endobj 24 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [90 231.893 199.909 242.802] /A << /S /GoTo /D (Known\040Bugs) >> >> endobj 17 0 obj << /Type /Annot /Border [0 0 0] /Rect [307.455 163.454 444.908 173.454] /Subtype /Link /A << /S /URI /URI (http://latex2rtf.sf.net/) >> >> endobj 21 0 obj << /D [19 0 R /XYZ 90 720 null] >> endobj 22 0 obj << /D [19 0 R /XYZ 90 720 null] >> endobj 18 0 obj << /Font << /F55 9 0 R /F76 7 0 R /F82 8 0 R /F56 25 0 R >> /ProcSet [ /PDF /Text ] >> endobj 30 0 obj << /Length 49 /Filter /FlateDecode >> stream xÚ3T0BCKscc=K …ä\.°hQş„äÎeUgbl¤ą*OS endstream endobj 29 0 obj << /Type /Page /Contents 30 0 R /Resources 28 0 R /MediaBox [0 0 612 792] /Parent 10 0 R >> endobj 31 0 obj << /D [29 0 R /XYZ 90 720 null] >> endobj 28 0 obj << /ProcSet [ /PDF ] >> endobj 38 0 obj << /Length 2926 /Filter /FlateDecode >> stream xÚ˝ZÝoÜFĎ_ąč“ xǚ/}p˝ĆI}W'Eă\\ďAŢŐîꢕ6’śŽűăr´’,ÇŽ)dG‡3CrČ)ËE˙ä" ąÖ"5Ébľ:jł]Đŕ—×/$ó-q9ŕüŰ͋‹WÖ.d(Ň0•‹›ÍÂĘHXc{y7ëĹż}öż¸źéYĽžš"r>X2Ž2JZƒKÂŚ˘ÄŠ ­ŚÎ–6RÁUŐvYYf]QW¸>M3B›Há48Š‘0Ëň,!iŢëźĘ›Ź¤)ăĂÁ™ ŠřX7ťülŠ´ Ö5üĆÁęl)ƒă™ ö8ČŤ3•­l:¨7ÄŢůy‡ŚŢ6ٞŢ-7őąZÓ°ŕ‰8ś ˇŁ´2EUšíŹëŐĹÜŽ•ĆŚ=WŃ䍎nî.áż…Ň”łËĽ ­¨—ŠÍ?ŤŚŰř-ćÖ]j+E"SPšŇJš‡ j҂Ŕź~óž(7g‰ňWŐŚ&ÂŚnöY'Ζ&‚WřśnčÍ=Şś>6$aU;U˙Ž˙ĺU‘WŤüßXĎÇl/Gű-§"T„;ÖčaěřăÍőOsoLŹgĘf%))tÚëę痯f cD,űŐhűM îŇ"7č/5BĹzŹ?t"í ŚÁ`ű̝ţ.ë_49 ł–Xîœč˛NnČIޛşË˙*6n ąwť˘%'Ůçţ¸7/ÜĺÍžsi#¸œĘěťšł[ŤřĄOÎH3JÄIňEaŠĐ‘yhńe‘_ˇ§M]ŽófVRü›ńŚ8śůšÔVP\țţî˛j›gˇĺ=şˇ˜‹SYbp&ƒT„2ňáŠĂÜ[Œ5ˇ]v)Ş˘ÚÂ"ą Řo5”$Ăâ]ź"•š÷7ˇb$tœ€“œŘnœă$ÂBŒ]‚ď$/= ČÔ/gŠ nf˝œOŠHŮq,lx i‘Ŕ@ ŚŁíNÍZ”vbŁíF"Œ@ipŹŃny@Ĺ͂îałp b†I`)RldE ʉźÁ„||5î‰üž*>ýgŒ¸Z¸1&Žü„„.,r\g+öşÝ1:íXţőťĺˡďÎ)¨6MéŞ<ŽÉâx×Kž˙Gâ>Ž8Š×ďČ…ĺ%&-`źk)(€ůSƅô­ ĺžň›QÖĹúśŁń@<P:ţÎZ]ÎÂuăČ'Lhœ ĺԂň+M;q&„_oBK&„3;+*Pw7E$ÚhéoaĂvĽŸ@%ž{9`ŸCSĄnłď o­rNg[ÖđoĄ çbM‰(ęƒßŽëŤá~_ô˙GAë˘ăČĺIp–†jě7UŢ]đřDÜö˘ĎâłČoj —‡MĘŠŢ ‹vhR-bŤžĐ›ç^ŘgôŚ ŇŠT÷Bű¸žÔĄ ţ‹?Ô HFŽĐÖűœFëźĚřVöœŕĄÍřC%  |˙†gŕؘýtäb+ΧÇŕ$ÂP>óxžűáńĆm"ôdۋ‹ťť;oźˆ… ˇÎŞ.ë|şO€ąľŔ I("˜ôĺ}zîĺ€}Ć R§€M/”đGó`mŤžfmć~¸öCŒ…Nu´ę˛JŔýyŕ$ŔôĎیç~BSĄn3l&;Q*g"§JÂB8 p9łĆΏ.§l™áŽŔ¸ŁŹlk5Gĺq@!„ß2Ű5 üľ‰•âDAHG9HRWűYnJŇO‰!Š0ÝçU~čřH>œPbdn‹Ž˛H{ßvůžEXnlpĹÔ&˙tǀÓ!mŹitŃ".Źňśu(^3šî[W=ĺ`˘1BeMű5Ú]},EŐU çż? H‚ ŇŇtď‘&9Ô*^ůşX5u[oŚGšYüTw#¨/ý|Î2.yđć†ÁąçŞrÜ ÓOUČčnŤVóćďŠjŹ ,ßź]ž~ĹzĚlüč˛Ú6*yK=’`¤šJ "¨óžŘÁůZ˘ą÷!‘ƒVô„ÉĘkÂhEšŔN8U…aČ/?üŒ d ëóGěŸT쨳$Ĺc7LĐunBdă‹G '"É“ř¤…gg˛ŚŢŰ<˛4Ąąú°e:&r1  îtpAisJ˛ŁwxU‘äîń—.0ĐýĘÛÄŰcç5âŔ0LĐę}ͧr›Ä7Cżzˆ\cŇ_s$Đ˝#ŃeŃ˜Ů‘Ĺc”n5”Ł ýŕćvO °™€|PĂPďć}Ü(aSý'śp+¤$‚ ."ȀűČŘ×LE%ŁXÜ$ü.˝•ąďÄ!͕¤đ[ŐôŰ懬Ú‹žŘŸ âÄ1Ht’×ČCFę!Đ Ÿáé0E–H${ŕˆS:ş" Ůc&ć<'q¸3™”z[ƂĺéyŃĚ=ŽŐ‡’9]”Ť›ŽYnćƒK@ŮŠůóŽć9‡Z0)ە”ř´Żý1÷ŮGv ¤ťŚ3ŘĚĐpń6ůn h4œtkVëf]T`wlđG W*VU„ˆ§Ü4…óc^a7ŻĽ' hP¨óšżo˛OL—ÚdÝwô°Ý†ĘqQ:x—ç$šżŒ [0j ›SJ›äŠ~‡ç^ŘgꤊĐů~‡?Đlż\îô­‚ë=ß Ç†äčŇőÂ_Ńր u­úb[#5PŐمRŘô|J=ž{9`Ÿ+#SĆZöBÝęŽ0‚˜Gżë<Ěßćœ*7žŹč;ţžÇ˘}¤mŇj“śąŚśńű7¸Úxď‡ç|érÖă´NŠ|݂Iě8B ÷EQ\Ž)ÄLMŹąAޡЯż˙Ç卍Ÿ.ç6ayjČ7ä;§?řTr]‰ŸáŽŕ÷íąq_ŢÜUPîÓž…¨ŰŤc™amŚ\čěŻ „Y(AéVÓ7ť(ĄÂ9Jý—Ć"IúŮËËw7/Ż~™˙‡B‡é4cČn j0#ŘǛŃ+ĹQʢâwJöUN\mˆxvŐ% k.ŞşŁÁŽ› X`s5A+=CśZš4ל˝8.Váa_lwĽÓă]ŃîhÔń:mŢÍ뾜u!V揊ŒGžűz*¤žĄRهl:öĎQ3€•Ă7hGBž8ůĎ.XaX‘Ä„9eÂzëşÜ†{Œ8ÚہUZ˘PV†ÁjĹżőţP”ŽxVXÂcŤ˘¤‡˘mĚ7MÝ ŠeDyuCšf(ro˛cŮMäÎdnxˇď ‹˘šôŽ9w QĚźÓVXŮŢüᇿnáXs_AÍđC—×ab]żŸtčc„֋’1Ć$ĺ °Ś—BŠD=4f‚˙Żě‘Ô=”=¸Šöx8pďÚ>؜ŽW–„uôž1)d‹řŰWm´wť?]@lp\¸Ďţƒ3$F5é.[úÄd|2ڗn¸jŠC7Ůdü÷‡j;{Téţh„Yąf6Ö˙!ŽRTs+X¨Ś´“v6ăęw}u*,:Ě> endobj 32 0 obj << /Type /Annot /Border [0 0 0] /Rect [343.234 504.175 522 515.084] /Subtype /Link /A << /S /URI /URI (http://sourceforge.net/projects/latex2rtf/) >> >> endobj 43 0 obj << /Type /Annot /Border [0 0 0] /Rect [90 491.025 225.968 501.934] /Subtype /Link /A << /S /URI /URI (http://sourceforge.net/projects/latex2rtf/) >> >> endobj 33 0 obj << /Type /Annot /Border [0 0 0] /Rect [459.001 491.025 522 501.934] /Subtype /Link /A << /S /URI /URI (http://www.dante.de) >> >> endobj 44 0 obj << /Type /Annot /Border [0 0 0] /Rect [90 478.177 135.818 488.177] /Subtype /Link /A << /S /URI /URI (http://www.dante.de) >> >> endobj 34 0 obj << /Type /Annot /Border [0 0 0] /Rect [152.818 478.177 261.635 488.177] /Subtype /Link /A << /S /URI /URI (http://www.ctan.org) >> >> endobj 35 0 obj << /Type /Annot /Border [0 0 0] /Rect [416.951 238.956 522 249.865] /Subtype /Link /A << /S /URI /URI (http://sourceforge.net/projects/latex2rtf/) >> >> endobj 45 0 obj << /Type /Annot /Border [0 0 0] /Rect [90 225.805 294.695 236.714] /Subtype /Link /A << /S /URI /URI (http://sourceforge.net/projects/latex2rtf/) >> >> endobj 39 0 obj << /D [37 0 R /XYZ 90 720 null] >> endobj 40 0 obj << /D [37 0 R /XYZ 90 720 null] >> endobj 41 0 obj << /D [37 0 R /XYZ 90 659.936 null] >> endobj 42 0 obj << /D [37 0 R /XYZ 90 570.219 null] >> endobj 46 0 obj << /D [37 0 R /XYZ 90 213.727 null] >> endobj 36 0 obj << /Font << /F55 9 0 R /F76 7 0 R /F56 25 0 R /F82 8 0 R >> /ProcSet [ /PDF /Text ] >> endobj 50 0 obj << /Length 3176 /Filter /FlateDecode >> stream xÚ˝ZéoŰČ˙žżBE(]DcÎpxľč‡ěněz›Ť‰‚M‘ ZIÜP¤–¤bť}ß1ĂCŚg[˘áœoŢů{o"g>üÉYęĎâ ŠNfËÝ#Ÿzë͌Ż/I;o烙ß/_„áLú"őS9[ʇ[-Vł÷ž>ű°ři$JhĽaę|–-ΒŔ3ďTÝŽqÂŁ§‹îPŠRƒ3ď“ ɑRŠh%ZČ@óá—ŰŞi›eď[<úřQ,ҰŁ4+WvŇh[ĽDH7éj—mĚól“/?=`ÇڜÍu¨˝źlÚŹ(ĚJœÍ?öžńÚD ×ĆZŽZÚĺS'„‡Žy?kA\„ÍćJNOťn9tżSŻQ‹ &ě&/ nľuV6EÖZŠWŐŮ\%Ţň°3ĺ4چö›+ŠŘ1—!ďy“ˇŰęОÍŃđŁź\T՟ňr3ĹÔT ĽCÇ'<öV흊ă KöSăöĄwíŽkޝá×&kľi¸Ÿ/†­k¸HěţŘĺM$tŹź!+Ş-ł’7ú|†óë|}Çßí6kůňR+§öî–ýíÖL]P&"N’‡]02éĚjë</ÇËzÄL¸ĆŽ;lŠ˝?Áh€Q¤ąŰ}—}2S4¨˜šYyÉǜ¸lĘpLps>ľ-(‹îÍa•×fŮVő˛]0K•ˆ$Օ‘Đښm &ŻŠ( żvźŐŐÄřp•üLz äöˇŹ€ŃJĽŔJdđĄćî_|ŠëĆľ9*­b#ÎÚź*A Učťu<žËŹTđƒD–ąéX *Ţp:jjV˛ŠÓŤbĹÝËŞDJ6‡šŽ$~ůcĺűĹý)Vi°ŽŔqęĎbšžT<`}tB‡˝$‹O-LƒFŚöCľď´TbgőŽâžŒšlmx`_dKăôˆYWľí°<$´ň ™Ô@f/QýÂČťúţ97ž\˝{Ě-ÔČńč’gťm^ä­Ł:Ź#ˇŸ$ql4‡ýžCUťö$ĐŞÖG‡-ŤÝ˘ƒÝăИˇňIĄ<ˇ1-Ż:“bŁFÓX†Á†“úŽ4ŇNá7§4X¨b5ŁżŽŤrů⭓+G!“­,çe‘gąţÍčÝńśÚxż•Yć+ź0ö’Ł×qFWŘx÷ęRŰI-FT QĐŽŽěŢoŞ"Ťsť˙5¡3;!+ZS— őŸ­hi;cBńĐĘźĚęů”rVŢ ő{ ˘Ęv-*Üď?XŢî˛=Šáˆ;Nz5; éĄáŃR ř5żČÔH%Ůý˛ƒć árÓđ°ł4fEщşČÁťŘĺK\šÍʍqŤÍčFN¨Ö#Ry`=4YZšÔ źĐ'HiJd,bż‹3üĂůĄŠĎo÷}œčú O(Ä } *;чýýˆĎChžíE*žjn™ˆD$rœ[ý×°Ăô}c°űoŽËˇM§Ő?˝Ÿë)Œ ąEŇАb4 î%JĆńęŘ`$ŒăĚ´5¨%iľUĎÚdËţgßk@čvÍĄ9‘•$ÉX —[łüôg+‘ęĺ˛Y%lV€ß€ş–í("W ?ű{Ú ­E#ݜ ™p0JÉ] Št6e ĽĽ‚-8ri+ˆ%|Ę&IŠ08 c&‡•ŁÁą‡ˇáHO['ô[ëěíü(ĆM:ŽĽaĐ[Ă֐ó5Ž×î˛źúPNG])ü>(ěFŃ0í|lO´Áwrוě EąÖ† VĹ,ČtŞf8śK‰wŸVy}"—Šú”ŤKË?Ąc‹B—ř$6mŒ˘S5’4¸ĺö™O#ždӑTí]ԈľÓ)85ť?ŠĽŁm˛úŽç¸şJNENe8ÍK”ˆőŘ?mIᴔžm(0ď]5L´ƒô8‹iăNëE ÷dĺ+GÔYęwĎ˙ńăŐëI^'€ăťyCyR§$W<˛÷6pę6Cőíɔ“‚™w`ů k 8ÚTęąśüz D*FgľďuŻ‚’ˆ>WâüĘÖŻ'ĘwQ,żVD–{-ö#űZ3ţĄœĹěĄĚ$Ž ¤_.G ×°O%cšbëQœv(ľ+ńŇpľvš#-ţúÖrçr˝9?Ye ď—١UGö_Ř4Wż8aă3Ëq¸sŸ×'Ľ(ăT(Ůńýť..?^˝xłxňě٤g‚[¨č( üD¤áQ~SBąíČű—ŻW/_–ů#ĆăĽtBƒƒÜoUwL\éüŹCƒÖ0Šč(á ď˛ZřčWŸTlŻ‹ĺôá5onC´Š<‚}e‹Ÿ#U|R¨i(@ şz†Ł#M"ߏźŸŹ!EN.P ú˙qđ%" “ś‚­]ş6fÁ>#Uœ4ÚZr$âTÝGD6işaľ/¸*ŇýUżŚA:ŔO“Œ/ß'÷_SĎ/€ILEYś 4řčC$`^´N Ul…ďtTŒCďǗoN9”TH•¸ęc˙ţ”Š4%ă˙ĄtGŐŰWď&iOAČÁ%ÓsÇsŹłcă¨ÓpďĘžŠpaÉ=ÔÄŽŽŠ:ö×ܚĺĄĺú=~ł‚^plÇĎyšâ´Ň=ő^†w‡#8xňXUܗŐnŸť*nnëÄ.őlLąv¨Ąßť˝ŐŻLIlÝ÷y^^ţÜ?şşî”žďżńu`Ţýâ6ëŕm•z:/8™.ŒÍoü}\Uřw>­`ĚŃč™ńň.{0-ˇÁĽ9 ü'_ŐĐf¨řźĂ­ÖÄvéA t=Ý`Şç*ŠZ§X˜żx9ż|{Ĺ÷ƒ“18xš12†ŕŇ?ŁsŚ?ĺ$ƒ`ƒX„OuËga••{ űŸ\m endstream endobj 49 0 obj << /Type /Page /Contents 50 0 R /Resources 48 0 R /MediaBox [0 0 612 792] /Parent 10 0 R >> endobj 51 0 obj << /D [49 0 R /XYZ 90 720 null] >> endobj 52 0 obj << /D [49 0 R /XYZ 90 152.296 null] >> endobj 48 0 obj << /Font << /F55 9 0 R /F56 25 0 R /F82 8 0 R /F76 7 0 R >> /ProcSet [ /PDF /Text ] >> endobj 58 0 obj << /Length 2706 /Filter /FlateDecode >> stream xÚÍY[oŰČ~ĎŻP÷‰Ě1g†×źeˇIš"ÎŚ‰ś Đ-ŒDIŹ)QĺŲűë{nźÉtl ŘEa$ž™9sŽßę…z‘x‹ČZ•řńbľáľÚ.xđéí -|.0ş#Η/ŽŢÁB{*ń˝XnĆK-׋8?íŇc“UŽľÖ1//\ßœw‡şI‹"mňňpášÄób'¸řçňŻ/^/űÍcž)r>-VűJ[ŸĹÚVéq—ŻŇ‚kkŃwňʼnx“Ž2~ůŤxoy?˙Ąœ°ŻŤ­ŇŻśŠĘýšřZ*ŠăEą˙Ä:nwÄ>sŒóEi÷Ďe[­˛7ąuĘj;E‚Âń a Â0‚MięŽiŽ/ŻŽjZaƒłŐ!kŽŽUůŻlŐÔW`˘ěÎTÍćJ֚Hc|Ožéë”3ւoBeüg*A˜ŸŇçƒĄaMŤŘKxďĺÎmâĐůóϟypLWhɛ‹ pŇ­ź]•lŢ4?ÔLI…ťĘVĺţ˜ٚ Ů]śj›ô[!3Oŕ-&rvüXďĘśÖŞ˝Đúq94\Ł3ŃŞl4ȅŽăj–~ě>éW A˜˘.yDÓÂČič\!Jžß÷|`Ÿýąá1şŹ˜űWđo8b]Ůd â(7˛:ýžYŻ?3ńK~X—H?ŐL¨ďë&Ű3S~X펔śLů{‘;‰=::ŢdAŒ¨ˆéßچ‡˛áűHýošźăÍkE;tš˛FéHTľ$/fߥ(‹ŕƒfE!•)¨$œňƒ{(]ˆ`Śá<)Ů|#dß ţ óżgWÍÄŐ &xĄ•ßš\:ň€ŕŽŘ–t–PyáÂ5ĘvyńuO֋ůŤů„'\žšda˛ťŚJW K(‡őŔćÚ/˛šŠ”|ˆ,:ĐÎň#;› ˘‚xęmĆ.żĹŸ 6ň!ýBÔ0[;¨ç–ěm+K&žł) taĄwuSľŤŚ­2~DG]ĂސĺƒĐwx›LyŔAŰZ&ŕ’™ŹuH÷YM>;ČłÉ*ˆż{¤œËfgNřÓKÜ 0՜iŹŻlhťd…ŰŔąĐIüĐ8--сá¤%zČŠ>؞^Ţăa [Î ŁýrŤîvřaŢ?"ÓgߏU uhĎ+żÉѢs;VQ~wUFaĎŇéW%ŁPęŠ1u!)cť FýÖü‹†X é NXm§ŞîÁq‹nqZŁ„0gŠ{ĚNśJŮî–|J"?—Lpʋ˘+[Úď2IŢHYmśĂ[ö{Z˜łrŹłMڍšŠÍď ŹČĚ"0>„]XáIńH´—QÉ )dŠę‰Bń*4S[5g)c#•~göĆýýo4íw<3`Ë(x]@ôçƒŮľ…"PL"‰Ő1' äLŤâĐLmöŢ|úřéőGőăŤĺœa¨Â¤w_IčąĂe/=0˛ˆ%%Ŕ@Ô2 ^¨3ŐĂcQSĆVT?.}‚cÓ.É`7|ŔÜÍu$!ŁI–¤TÓęŁ8[žšŸ 3Óf'¤RÜZk×pŞ"ᷝĎůC–B<ô,\čî]eFB‘25W_Qԕšđ}+ŇĂMÝCN˘wę#%É?MjŁN”g,oqŢPdłuœł‡ţ’˘Ęź@äRż•7ÁDœönjť˜ŃF}ÎyÚľŕ3ć\œťÝهq.§:Ł EP ŸŃrhg-%&Á؆ ¸šĎm˜×•'ŔžýžŤÜwFi’l}fł„7žQČYť÷€ĹÓÎ:ŻviËë@ VmUe, d}–ž;%xşe6ňbӛĺăŤĺ_f‘{¨ô ‚ &őN› ÜÄ1WyŠ%Ď,ÇÔ´Úś{WlbŒŠősˆĚ5ć6őЁĽ‘ů…‹°őm‡œ­ď# ťd"yjäHýŞŠyD:#7ßÉţÝRKY šb2zÁ˘AČä@ĐšOB$k‘Á) 0“€SÖuN-MW˛‡X^ ţvWÖM˝Şňc3 eßyˇŹynóáŰŞ nÄRÉGn ć÷ œŠÄű:íŔ´#ľ( QŠ*ˇ #hˆ\ ąŠ Ě8טą!GžóÇ×­a¸ŸóĚĽM2um›‹ Í"čŔSĄ ˙8ÍrŃýBlšÍłÜőÄŚkR"îz€@§Fuěůݘ>,/y"Œçyř”ĐÓ׏ąďČ[ꊆw—pr‘0‚`0“`öčP”)"­DŇ-NhV Ý+u(°v`ťŚTxp˜Ý|jöö…źďáÝ;żÁ šĹ‘`´ FHēJŒŇtZœČ€îGľÁ4ŚąJn„v˙K8‹PÝ6# ç W'8nëŁČťő?KˇîÉ5ΤU÷„“ÄÉ ŕ=žE"‚#ͧŚPЕýď†HćSSrf v\€đ* ’Šçv9Ő7ô×)ş9A*ĹŇ2u]śPÜUŃWdŢG.2 ě+/ ţ¸Ă˛,9ÔnlĽ}Ă-7J_Ľ[–˜,ƤňČŁtÜ Œ›‚ź6 n"šiHb‚]¸žŽIΉó—#`čwĄýx’Ą(ąá>ę`i˙wt`Mĺ~”@Śë”šÇ|ÖťŕŹ:đxŘ]‰óƒtڗˆ /ŃłcG+ŤÉńůá„é°o${u‘n9ŇÉ‘§br˙!tË#°ąš\iOn1 d”zą!˝Ż@:şBgxľÇům-óűdQ2Ęű”B/űzÉK>kq,Џ äšsxżG~&ęKÎó*€ĚĽäGx%qŒňŁĆ*!oŞ,Ł/Ź)Œu' YHń0i #hFóŕúœ ť žőÄő;3ť#nž~ŸáْăϧÓIíóKÉp &Ż8ˇj{őđ[‰Áő:śĘóžţVÂÜîˆ}ö[ÉtQšö{°u˘̇Ďܚšn=MTg‹ž+)GçÚŁsÝ(ĐÇšLxáćÇö™2uÜO¨ĂDF\S™ĐĄĎ7‡–ÚZýÜͅű …œ/zސíĐ4ŠŐĂoiP6”ąĎőŽű)˙ďH:´*‰GŸ‘ä‚D¨Ü‰„c(+÷'ŚČ”Ži FńŠäć á4ů~‚›őWyÓo#]7đe5]P2*âŽű˙J>‚÷aş‚’ŞőËšlé2:ťÎo$űĘwb•|‡űŹĂöG€ °39I7RžŇněţM‡î]şë˘čúĄŮ:˙e¸Žć|ÎŚ˘•ącœÔ‰ËÉĽˇÜľ]ßÝ>ńÍę˛}ą•+%ůÎÂKvŸUÜńÎÝ><ýŃá]˙Ő Ż+łmş’;ôśÉ đĂŹÄáşďűţŮŐKó˜LŠzēČ˙7) endstream endobj 57 0 obj << /Type /Page /Contents 58 0 R /Resources 56 0 R /MediaBox [0 0 612 792] /Parent 62 0 R /Annots [ 47 0 R 53 0 R 61 0 R 54 0 R 55 0 R ] >> endobj 47 0 obj << /Type /Annot /Border [0 0 0] /Rect [115.788 668.257 426.24 679.166] /Subtype /Link /A << /S /URI /URI (http://sourceforge.net/projects/latex2rtf/) >> >> endobj 53 0 obj << /Type /Annot /Border [0 0 0] /Rect [418.91 193.731 522 203.731] /Subtype /Link /A << /S /URI /URI (http://www.miktex.org/) >> >> endobj 61 0 obj << /Type /Annot /Border [0 0 0] /Rect [90 180.58 112.909 190.58] /Subtype /Link /A << /S /URI /URI (http://www.miktex.org/) >> >> endobj 54 0 obj << /Type /Annot /Border [0 0 0] /Rect [119.575 180.58 268.483 190.58] /Subtype /Link /A << /S /URI /URI (http://www.imagemagick.org) >> >> endobj 55 0 obj << /Type /Annot /Border [0 0 0] /Rect [293.331 180.58 442.239 190.58] /Subtype /Link /A << /S /URI /URI (http://www.ghostscript.com) >> >> endobj 59 0 obj << /D [57 0 R /XYZ 90 720 null] >> endobj 60 0 obj << /D [57 0 R /XYZ 90 379.225 null] >> endobj 56 0 obj << /Font << /F55 9 0 R /F56 25 0 R /F82 8 0 R /F76 7 0 R >> /ProcSet [ /PDF /Text ] >> endobj 65 0 obj << /Length 2854 /Filter /FlateDecode >> stream xÚ­koŰ8ň{…`ą sEęÝâ>dÓ4›ťśÉ%Ţkíâ XŒ-T–\In’;`ű̓zFN\“&‡#r8ďʙ ˙rŮłŔqD䆳ĺć…MĐr5ăÁŐŮ iđć€8ďaţşxńËϛI[Dv$g‹ŰţV‹dö‡ĺţšřűĚ •p• ›đmź8 KTe}‹/Ní!žRßI b~ƒiť°ęÎüĐŇqůřóŰĂšrë]úŮĐqĀóMźŇďâUş|…<Ä_—y‡€O ŻSÂúš–EžŃ4Ž Z|ĂhĹ-˙šď\ë-ž÷˛Pőő@ŮĄđT0“Âľ#&!fźĄžxÂŔź‡ś ň}aűłšNŁ×§-XÎzŕę 5jń†‰:űýœŐZgÓw—ćŔq¸Ę`a+8?đ"8Ő^Đ×Ń%˜ĹŽ'šFůŤ `mč]Yópňޑ/ŠžëÚîžkKžw4ž÷Źí]ŠË CÓmYlx”ÖŻÁŐë.ç‰a "ÜěFßֲ؀ž$Yšk^BĽĆßXëŇ؊ …ëČĄ~}h™ŒŞÚht–Jky8— RîH"âąD†Ç8BÓ§I Čm‘%şdŕ˛`˝ŒÓ<ÍWźÎˆ°˜ĹľžW[‚Ă´˘ÓK8›|mž÷6ď ßřc,ądEږی7•Qúbd4•ŽKr^k^@cSx]lŕ׏˜3K`I‘W ůd{ś+t)m˝}¸€4ČYĆlĺ)ž8ľŢ°Ńe\Śh҄ŒŒŁĺľ9 ÉáэqK8ŽĚ—éíńiÍߢ_ ŁFü1÷(śDřäɆčStuĘ-Ź >š¨Şź0zďPőL0ÉĹ!&]FBÂÂĹFđF)p‰Ě`=5ü™!‰žwYs:ąÁYúů=¨ŮʰšzIkăAĎCPč*X쏢8`ą#- ešŐVţË?,WŕâKă üAДAŠŃ O;Œ@ľH—Ź“źí›ĂŮÄŽ~ œČ}ÖĆ=ˇWpŇ;”>`Ľç¨k.ćťýÍçʖ"tƒ!#!JS¤H%|€ZŢ5*1Yj\7#jdă<ŢčIŽ:žp˝önßĎVÜu?[CĎjWz-JĎaUźwĚ?7YœĺCi-ČdzÇ֐%<ÍtlF _J )ĂĄéUä^_ĄĂÓ"‡łŘüöÖ!€ …rřeÁ /ŢĘč}g’4’œ•ů ĺŤér[ęz´]ŻĽâąŤEÓń¤X“ż…i˘łt“ÂăIŁK ٕćeĘZŕ—OAgş ¤ďăÍ6ӏ“ć}*ăřŽPZ|Ke¹ʐ`TŔ f݁Á¸ž< śóeƒAŽ4œr›ĹKň4 C׎˘Ŕ„}žž¸ćţ˛Kż’Đ2“ŃM‹oCââ<ĂXŽpŻ‹łŤăŠí\HZĘ˙úćfrjŹ÷ŰüiÍěn6ąŽ #8|$F¤žâŒA\‘Yž1,ßa82,v>ěţ8w­Ôdhjo*źăW -eœ™L۸S ‚ˆgfĺtW&sfď€ ćŤŘGŘGŐřH ^xvđ Ą1ňŽř‡ÝřÝéÔYŔ]×#Ď &óœ“.šZü–Ý$gŚ9ŇÍôžP9í÷'/1X˙ž¸8ýxz"~=^L٢S R~JçÝĽ”óŔč4Á¤†öl°“WÁRńă͖|-L˙ćŹůÜ$˝^(”í uŁI5pۧĹő|&łŠłM'ă",68ĚÜŁQzŇi”ÓOŮ}€‚öÔËăĹocţ_^Ąq˙%qÜƅW?!ĆOÓw ĄŞ Í]ýçÜő:ŚŞó°)iűE)ëĚ ů&G\(ÓUš7f–qY͙5ćŇŽk]Ż1MŮŐhúm!Dj8YjŽĽů㢼:—'ӂu\ĄZ; Ÿi‡ďí)ŰśťŮÇKL2Íü_)T›G|gX ~¨‘^ĽŤ5ŠŘ|™ľíR$÷;Ó#8)6ŰÄâƒFž}ŚK¨_"{=Â=.M3Ä‘ŠţĎšĂQËÇźÉ3t´í—ěůŔ—uŞŤƒW?Ř~Ţ/^š;Đőžžótť#0íŰŻ&rĎ¤QéZť-˛îtŇă˘lXň1Ç ŕ|Š“ĂţČ"6,’ iŇÝ׉a,ŢŞLŠevƒZž.ňÍÂ7i>áF¸ĚÁ‰‘;˜`NŽrŐô[ŔĽNš×>ށŤ™"ÂQŕŘ[´ÖP!{ÖĺŘ!Vu‰ißÄisölîĐc?ĺÚŚhąÇYöŘíś”, Ě9k3ă qŹŕ:ýsŐpĐž4u훾˜×>œż}ńáú•?:u*=•ž" ˘ďĎ/ţ1vBĆüä&ó ĄŁ€ţHa×gŔЏ”˜îŃű‹v•u‡¸;rxĎTIÝ0Ąďuăą"Ůfý§ŠĄwX‘0źëf㸛ý¸ł,ű: ůç ĂíD!w¸qĽípótCÍŰŞÁĘHŢő#SEm łdč CqvĽCI˘´ \ďŢ٤Pa“ĆO¤q#kyŤŽ.ŻN/÷%pžQÔj’u°ÎŤň{ëŚî÷LM‰ $›÷¤FĄĽŇ$ „Éń?ÜQôL‰éc“ ‚^łÓ/HL‹VŔϕyE} ›$PY]UÜż† &Đťşż1ć ŞB^¨śńR4:ü?h~†´ endstream endobj 64 0 obj << /Type /Page /Contents 65 0 R /Resources 63 0 R /MediaBox [0 0 612 792] /Parent 62 0 R >> endobj 66 0 obj << /D [64 0 R /XYZ 90 720 null] >> endobj 63 0 obj << /Font << /F55 9 0 R /F82 8 0 R /F56 25 0 R /F64 14 0 R >> /ProcSet [ /PDF /Text ] >> endobj 72 0 obj << /Length 2224 /Filter /FlateDecode >> stream xÚ˝ێăśő}żÂ2°ŚEŠşľOŰÉn2Ev;Č:Ýš<Đ=V,K.%gfúő=‡‡”%;’€ux?÷_„đă‹<\¤QÄr™-Šă›ĐΚű?}˙†ť}+ظíüŰćÍúC/xČň0ç‹Ín|ŐŚ\ü+¸ŮŤSŻÍrEQ ţ˛\IˇM׍şV}Ő6˕ČĂ0 Ň寛żżyż‹…x%V¸óŰh%™d<’„Ö/a ˛(h‡,(ŠłqăŚ~"čܔ÷L_–<¨š˛]Š4xčh9ß'ÁXőébćnsˇ~š>ýń=`Á˙Jƒ~_šénߞë’ŕ­ĹLť…śţĎëY¤ŻxÄxL5pu< Ÿ%ř‰x~îŞćžŔ­ęöL?jÚT´*iŠÝѡhGՔ ž _YH“—,’‰@>ÂŁ"cY.čUÁ’ĺ*NDđqšâ*Şf‰ oť=ž 1ÎN5ní›! Řśg<ŕ˙=Í(ú|TĹ?>ř>"ˆŚ%zK GuX:~Á¨;ő{ŐĎźľW8ú}t¤"ĹÔĽ?çćQ¸I¤Íu{Á¤4e›ž´¨­;:róÝDJœhv˜ä"°âÎŁ@NŚ=™JőšvVa`ĹájhÚß)Ő2L[%-ş Ýľu=čă°Hkeet–×т"%k'ź°w¸—Ő ˜ĺ‰HP”2ŒYž%@ž%ëçOˇ_ç$žňűĆŞZŹŸúóŢŐŕ#˜qüEÝM8r %iÁ€Ě5áţ<Ä Ţ0˙KČes¸v#‘ŒXœ‰Eœ',I˘o¸ż{5ÚNî$Óu}ŠĽkß÷'pp" ÖŁ˙‡‡űeöW5÷o Ńlkî݉k†Lfü•ČűÝϑŸ%%“BN‘G%şz|fœ\ź"*ŒvÎđktՅUëuÚ]hP´{ÍÝŻgş5˛é3˘Ă…é+‘ňťŸc6aĆőĽ=ëúĐY% đ ă.pźëĆS" “UČá9š3#ŻĄ+ătű}ž˙ů–Îu{mU8ň†ŔGë@Ńóľz–˝;ÚĎI&–LˆWIć˛óɸ cɀֲŞŮ1Ýď˙Êýú§mT ’é ń°ţQmôWaúÝâš~dűţX_ă)ٜEÉ+qu›Ÿă{ČcÉY˜:‡ş=÷ÄĽIÄđţ‰<ÔĺÄ# ˇ´î˘-óߌíiÉń8 TUŤmí˘%…¤§ck4iĹ\Jҍ('d6NřqJ÷ÂWŃçî9[ÓÓĐŞžŐ¸ąüŒÜ<í5=Đé 7ľęşŞ ţHŽüÓDц|Á™ şjÎeÇ,„‰ŐhŰĆŇ §A827ýţ2=šý*~ZBޞůŔ—Ír§–ŕhŠ 2Ś'#‹˘ R‚i”DŚĽbž.ł?Ÿ ÂCŠŐ€ĎP­Y‚ňŕž&"ĽÂS峑LؤÁ¨aŁ~~eëŹ}˛…ĎÓ-"Đú$ýżÉPŠ ŠŃIˆĘíđ4Şé|ňŽŔ+J‘Ś,ăŮT–.…ízLV`ÎO"¨ B&ž)ŕsŸa0u~œ#W¤LäCâ˘ŘőU‚[?îŻÚnëo_EręÖ̀5:˘*¸¤[śN°Ôt—­3¨p és(\zýřZ\Ü˝-}‡Ňi’s˝.™7ޘńTLŇ/cç"ÔPjؚÁe´8¸×6‘–Ďjˆy›Lăšü3t“_[%Äy)CBŢVŰXA53R†š*g%dÂRŒüÓb'EKˆ‚;ÓB\8Z×ÁM{ßž Î)x~ĂčÚĎíŃŃOĺTۑÝ7|Ü=Uý’}ŸEyWź•<ĎYȓIŚF“Îá$‡Ë§ś÷1XŮŇŢ-ľ-'˝cT&ƒĚľń•ôűůDŽęP˛[FMAöĽŢŠsݏY,)XS›uQœAÎ>`}_ł¤–düJľŻXe¨ ăÄĺuźzßí™B–6–3’çŕoLkĐé‰Đ;‘B!v†<&lť° GíÉV ŔšÜ×wçËuĽj죭Ż}/mŮ7šmŚĆŚ‚AŮŮ$Œ[ľą@6ujŰŔ&ó,řÁeŽřŞó ÁăJe`LjčGŔ9˙´ť›éĽp†™ŮS•çŰÉč^ůňŃŘÍÉűФŐ¤|Ιadăăđ•H•ďÁŔ;sÉA\¸âşő–M0˘d€]‹YżŐę9|}0żą¤ÚH8"7”$ĹÔIń˛ÝS×ëŁO„ý8:ÝŐZůđdô8[&ëŹNźu -ŸüťęęßgȆáŮ ŃüçÍĚčă´á)ž/ČĆÖ]Tu6Pp–\G‰ŒZbwś94ŽUďúby6ž…G`ˇrp˘Gu°™V@ĽUfű*ţČ$şźłÖ!š3:ÉGIŒä”ÄČđĽĚ=šRŽ3ś—<ů€*ő’ZóD/X;Cŕ’d”xtâĐ2ÁލČ2Odú0Qę{Ł=śXáˇ;…î:ŞÝp‚’*ĐEÄOme>{ýEC6=łgŃSäŽ/gd ČTí&]ţŜ[<ś˜##tóĎĎČ?ĐüVşŒÉĹÄK;…˘GŔhk@nCŻĚŁ'zşH5śŤŔ}ăĘÜC %šrŁ•ľ‡,wĄsĐÎĆű–<űZˇ ˛R÷şł˝IoĄ0ďű"pćŇŕÎGY',4-MŞ˘?+÷śuWÓŤ˜„GÔ>†éKKe;ŰwnbhřşDwpśUӚĂPځ;€ G?Š“OşÂT§ţíŕˆ×Çq9ĚĽ…î˛y1>űB5´{TUOŃ…żxÜUW.‡ÇvĘ[ÖRŇ endstream endobj 71 0 obj << /Type /Page /Contents 72 0 R /Resources 70 0 R /MediaBox [0 0 612 792] /Parent 62 0 R /Annots [ 67 0 R 68 0 R 69 0 R ] >> endobj 67 0 obj << /Type /Annot /Border [0 0 0] /Rect [343.582 594.238 500.481 604.238] /Subtype /Link /A << /S /URI /URI (http://www.finkproject.org/) >> >> endobj 68 0 obj << /Type /Annot /Border [0 0 0] /Rect [90 581.088 301.907 591.088] /Subtype /Link /A << /S /URI /URI (http://sourceforge.net/projects/fink/) >> >> endobj 69 0 obj << /Type /Annot /Border [0 0 0] /Rect [90 551.797 439.36 561.797] /Subtype /Link /A << /S /URI /URI (http://www.inf.ethz.ch/personal/fischerk/LaTeX2rtf/index.html) >> >> endobj 73 0 obj << /D [71 0 R /XYZ 90 720 null] >> endobj 74 0 obj << /D [71 0 R /XYZ 90 656.907 null] >> endobj 75 0 obj << /D [71 0 R /XYZ 90 471.176 null] >> endobj 76 0 obj << /D [71 0 R /XYZ 90 351.652 null] >> endobj 70 0 obj << /Font << /F55 9 0 R /F76 7 0 R /F56 25 0 R /F82 8 0 R /F64 14 0 R /F98 77 0 R >> /ProcSet [ /PDF /Text ] >> endobj 80 0 obj << /Length 49 /Filter /FlateDecode >> stream xÚ3T0BCKscc=K …ä\.°hQş„äÎeUgbl¤ą*OS endstream endobj 79 0 obj << /Type /Page /Contents 80 0 R /Resources 78 0 R /MediaBox [0 0 612 792] /Parent 62 0 R >> endobj 81 0 obj << /D [79 0 R /XYZ 90 720 null] >> endobj 78 0 obj << /ProcSet [ /PDF ] >> endobj 89 0 obj << /Length 3019 /Filter /FlateDecode >> stream xÚÍZYŰ8~ĎŻđ[Ô@ĚIÔěSfv’ÉbŽEŇÁî˘'@Ô6m ‘%CGşűßo‹ÔŐrÜ $Á"@L–JĹbąŽŻ¨ćŤţńUŽ)YŞôjs|Zj˝_ŃŕíëgÜń­q=âüéúŮŻ˘hĹC–†)_]ďVY¤˘^Ţővu¤WŽ˙ńě—ë^P$ÄWDÎGK&ńŠ'LđHᒠTŹăRŃjňjĹ"xßäĺţj-“(ř-ťžJe`ţ-Ţ^Ľ*¸~…úŤŠЁ­ŠÁr$„qóڔŚÎ ô˛işăŠÍŤ˛!Ó̓ž2.Üś#-Ć<‚ipŚÂ”¸˛%I °ą]#Ű*faźZ PڑČ#*nTKÜčZ)d¨śšZó !B{ČZ)ˇ~<^öŔb™ŔŽŹ<֚ű%5E’Č3ýrUűp%tPu4šĂIVâ˙~Պ~7•Ľ~Ć˙Líć ýf¤ëçŤ( ˛"ßuѨ<‰X}łň‰]I‡-¨oŔ¨´+fŮ×2Nţšƒ÷€6´|öz%’ŕfŕ0„Ł0 ŃŤýfôÓt› >‚łÚuŔëŹŃ6lłŰ/:ľVéYAGÜážƒŁłőWĄ=3L྇ź“˝)b!55;2‚÷ƒâč2˘ „”ĆĺĘMž{ U`0XvĆąOČ88´Y ‡ îf2–c<†ş!żFş”kQ…­Ůe]Ń^ŘGs¨şÂmĹĺT—t!u…a:Iş3˙ąF ƒÉPCi‡É_a6ĆĚń:OSˆ-iŃ} €ă˘ÝsŻGě ­Â\¨Uö8> Đ@ézó Kcĺ!$’~y&…Şüđžđ08e{Cď 9߈LÁ.*yâF<÷…Ě…ş€8şž<Y ĺ×(á_.d ŃužÝև€Dąb PFŃ(#h€fIpklݡ 9ěZđjC3JŰ0(Ť––Â"ŐaˇąŻ?ĐÓťź L‹ďšvŇäÇSá¸ň} aë3‡Ođ¤0n™E›J0šˆŐˇÇEي ş|ÂŞäŠë4S2}\L ĂŒ|ăąż ă€lÖ>:(xžA°ŒÔlťĽH;Ň(/{ĘrNאaű˛HŚ=—Ôc,_~&1(¨Ś1W+•BMƒ<ţĺxňÜëűB<ͅNj  nŢŘý8ł+'~”ü~&wľš@ŚË ”B5óo祗bčIˇ‚Ô!úœˆ(´Öƒń3[ą5ľ\ŸHxŸ"ä÷ťą şœĆPűfx€1śÓČvn8ra”ÂdÍâ›ĆËš§ľ§|Ü}żX˛Bĺ9ČşgĽAńNÄÓĽ}eYiňéŇLš/ňćp´Aá,Ňŕ?6tdĎ>şprȆn(Đ :řŸ2žňióh+^VzŘT•.÷WxG7"аŠUô¤ér—ŃŹuńčn°ĺ Ŕ”JޤL QźȐs=b]jÔF²]Iƒ2)rÓw–U´„UĄłä>i…řĺGúPý)@zţDĹ=÷ĹçB]:R;ląiťĚĄlMd}ţِŸ÷]ŔŹÍĂ P4‹ădZ1%a’Ç ¤[./ qŻG싇2:=”zIhMq7oÍÉă'{6HüŠŰۃ‰ďîH]8€Ű‰z˘îŽů‚ę3‘ţTâ$˘SAĺó†Çl؍˙í/ôp‚ik“y¨fÉ{ IúŒňÜ["×™šů@Œ_Eľô_ˆ}!UځVˆ’ m귒-Ɍ™´á;°QĄŐ,’h0Ćőä&č `D>iŰohž˙8 şB™Nڟ¨éë$gŽ>á$´řޟšđ7L~2šźlˆš}AiŽ Ćßâ}{Ä-|CŞh6ŮRkî[‘űZ,œ Öž÷§Ť{çžäľ!ʟÎ:FŞšąo‚¸Fëňm2 dŚf ^Şł˛)¨OąóŠ^ HüŠ&Ç쓓ԯ‚ŸžîhĐ8‹ŠŇÉ'š6ů1/˛z,zˆÁpĐsňYÁč;FŞ‘/@ś-r>šŹ÷Ė7?.Ţ}i–¤ł-öť¨[°[$˘ŕfíŤÍóňÔľ;hšođťÎ‡Ĺ@Ĺľő‘؝o1ZŻşm3mëőŸ´™Č2ęó–7°´’ßŔ×Ő˙šşĐÔgš4Ću]ÔŹŚžYMç-sź~˙†ä Q7SĚÜ„+ŽŻŤíGJ'°qß"lsç„ôǍ:îąNg/˜îĆAŽM‘Ű˜ŸĹk ˛ó[Tôýçűšë3w§‚)ŃĂđuu>šŞ”Š¨çđśuá˛É=Dv0ZőéąÇÓ̆+]Udę3_>×:fÁ$×,uż´Îœóu÷č gڐé×ůé׾Dŕ Éâ:¤P=ĹĽ/Ę2dÉŁżŁHuŽp66bpŢŇĽ­ˇő<śeväÚěLmʍișě[śŐƧ۸%„=ŘŐŐqŃJiČě_“M>5úp9ˇ‹D–ŃŠxłĽ^šŰżU°łżGŽy ^ýӘöwŚtĺďúWÁú)(Ń_śí.§ë×hĐtŔß{ö_ţ?¨5 endstream endobj 88 0 obj << /Type /Page /Contents 89 0 R /Resources 87 0 R /MediaBox [0 0 612 792] /Parent 62 0 R /Annots [ 82 0 R 83 0 R 93 0 R 84 0 R 85 0 R 86 0 R ] >> endobj 82 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [199.083 513.968 393.147 524.878] /A << /S /GoTo /D (Font\040Configuration) >> >> endobj 83 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [431.614 487.667 522 498.576] /A << /S /GoTo /D (Ignore\040Command) >> >> endobj 93 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [90 474.516 185.152 485.425] /A << /S /GoTo /D (Ignore\040Command) >> >> endobj 84 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [343 334.356 509.122 345.265] /A << /S /GoTo /D (Configuration) >> >> endobj 85 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [124.338 318.321 303.611 329.23] /A << /S /GoTo /D (Missing\040options) >> >> endobj 86 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [127.316 302.286 322.74 313.195] /A << /S /GoTo /D (Reporting\040Bugs) >> >> endobj 90 0 obj << /D [88 0 R /XYZ 90 720 null] >> endobj 91 0 obj << /D [88 0 R /XYZ 90 720 null] >> endobj 92 0 obj << /D [88 0 R /XYZ 90 657.503 null] >> endobj 94 0 obj << /D [88 0 R /XYZ 90 280.116 null] >> endobj 87 0 obj << /Font << /F55 9 0 R /F76 7 0 R /F82 8 0 R /F56 25 0 R >> /ProcSet [ /PDF /Text ] >> endobj 102 0 obj << /Length 2621 /Filter /FlateDecode >> stream xÚÍ]ăśń}…‘>œXłâ—DhšlŠiÓ&.zĹĺpŃĘ´-œ,9ú¸˝EĐ˙Ţ)K>9ëk.@ąÇĂá|—/"řă‹4Z$R˛T™E~¸‰śŮ-řî/7ÜÓ­€p5˘üóúć÷_j˝ŕKŁ”/ÖŰ1ŤőfńjÉŁŰ×ëŻŇŚ„.űMśž5ri_ŠŚŰ"ÁÍýz8E qĽ8HůŒ<\%,^ÄF1.ŢŘc™ĺvƒçy<&W’E\1YÖżáÉ&\…aąŒŮcQ–ˇ+)ŇĺĂíJ˜ĽĽE—˝˝ĹUĹnWJÉĺżńĘu›fy¸ɲo;"=65’ž+6v̨înůrO˜"ŽJۆ…ŽćÄQĘxš ňwöýŹř1SŠ TYľńďíS™¨Ç:™ĺ) T w†_É$b\›ĹŠKřŇnWÁ&Š ŮC饰×•Ó ŞĘ6G6uŰŽťľ­r§Ŕ•gBŸoHB#Ε#9\)”Ž>wÍ"­@ŢŮÚ]%fQźX &•GßhžĄ_’ d0°}Éĺz^ľÚ°TŚĎŞ6a\đ@U´A6ëě&htôä5ÎӚ{sďô}UŐ¨ĽźdhŽc´¨Ž}ˇ-ŕ ź(1 !OŢ훺ßígƒŠ3ĄD ,łK^9 *6Çi%bĹŇTÂÝ@ÖXéꁎőđP˘źł6Ĺ,0QČ?+ˆ&Peœ¤łęHŔ†(ůćbFáTxŚí‘ź;/ĐĐPˆ},ş=AŒŔAČ8´w›9‘f⁌>vE]ÝÝŽ’XĎťžRL'=Ÿ?ăřÚ9>Ÿ÷{3ď÷ýR|‡ný%ŢĎ@rłA˝óŚLń|’N>ęžő9ŔV'Äj.—Œ˜ÔâűI–ČQę¸ERkRă]6„ŮÖ Ąň˘ËPí-á)‰Ž~Ňaęz:yV–Oţ'>b]”re˜Vzę”îGäÍ!b纖÷Ću–(@űhĎ4œ‰ž˛w“lí=áx,í!ËQÇtpî6oě°ct4‚Ĺ@ebíń›“]ĘŽśšýânŽhŔĚPTü5,i!ÜBĐBŽwTX@`âZ7Sż¨ě{Ěű t§k§5ĽAžm˛áB…ŃtŸŃ\Ž]Ň`¸á:‘1!ša;TJ‹ĄíHHý€ňö݌ Ή*^~ţÔeYä´ŮöGJW5Nż*ŠBŠmi: ˇŕHDĺöÝűC]˜U3gÜaˇżómzÜńÖ Ĺ精Ecę°Ì= Náȟ°¸›ôŔnłŰ yĚťřb;ß,úžoÜ)zNűĐďޔö-Żk/Ě:$=̖ŤÍlf•,gCH.bňĂ,ÚŇÚ™ RˆXžŹĐĄQ˙ô;~çb—”‡˛_ěgńŰZÔÜ “,Űnc›ĆgrÍxrVT÷8Ë@WsdŢćœ{N”rAdžWľŸ†ç2‘@îäńBšʐ{0{ő:Zl`\ƒŠdńč( ér´(ßßücîUM$šĹ0[!ŤHz›•\2-˙‘d›áx¤RđČ T„].înšşiď¨&˙Č_ĐĆż0˙e =T ‡żÂˆŽ™ĘWjƒŒgíD—\ßČ+˜8ËśĆđNEďô˛VbC“…„/çɯҊAX+Í ÔŘŠVH 4YE‹]íĹméť/`0;a ^ţ˜ź Ė2P NÔf•żRv¨{ęa=y˝őš’ŘÓČI¸†ŃmďŢ%9G­KŻő–ö\ ˆh‹f"Ü!˜‚(KĘ#ÖJ„óÂ×;ŻăŕYéĄX"2í\Ś/Z÷¨%RÂDę‡0D@žkëŇjřtó.xĄąŸh7Ď*úÍđƈ‹ĆnŠŠ( IbŔg´Ä†ýԟ€ š{­ÂWjVÖťĎKw•é3ŸŻ!ž/îfx4šđŸËJaZ /îiÔżŕQ~އ!˘.ŒăQIDŸ%Ů/|’­ťöÍŃ6o şěŸIłă‘\˜„4hⳑÜíěiBDŘ9i謹ˇGC.SÂĎQÂGű˜2iř¤=ˆśE?˙>źÁŕöyK7ÚľŸÓŠ­Â*çĆ6gFžĽŕŔKƒł—=]E ą ;˜bňCэL‘]ßXZМůŽhęĘ͜X'ÜńČ/ T3Ň#şó§€ô‡ěoçÄ~¤Dƒ˙‹ÂĽ´Ž 0÷˙ž€]“÷EŢzB'łH1řę,ź "n¨gZď=ŁĄ“¨0Fú˝ÂŸ*ŁhŚ'!? Ó‚ŕĘůA˛Ü_Ý?Ü˙î˘#űP˘vÚ=Ś T„TC źÜŹç÷H?îQ(źsH˙D$ĂÓřŻ,˙űł’„ČÚ3=Ű{ÁşQŰTY9gŐÓ?~Иîůßgé÷Ťěh B ÖŁç˜QƐ^Läŕzŕpb #9őP+§žjiąşÇÎZ€´Ť{ƒ(㓻Ű゠* Ř÷Á‚ExhűMřŮ!Œ7¸p#:΍ëć­'nĎřaöžuƒčܢç\ŕ ďŮîhR–ł0a‡+h9řÄHŤţĹűzˇäĎÉôŐX„łSť}Öy‰­ÝŮC!oë†Ęk…ŸZ¨“ë…‘%LFéNŠ(QSvu˛NBńz)ÔóR´ô?ÉCpř/Á™Žä +ĺ^!GŽwRŢŻł¤ůĹž3ńÇKÉŧÓ$/ ţô48 endstream endobj 101 0 obj << /Type /Page /Contents 102 0 R /Resources 100 0 R /MediaBox [0 0 612 792] /Parent 62 0 R >> endobj 103 0 obj << /D [101 0 R /XYZ 90 720 null] >> endobj 100 0 obj << /Font << /F55 9 0 R /F56 25 0 R /F82 8 0 R /F10 104 0 R >> /ProcSet [ /PDF /Text ] >> endobj 108 0 obj << /Length 2474 /Filter /FlateDecode >> stream xÚ˝]ăśńý~Ĺ"Ƀ œU‘ÔgŢŇŕśH‘K€Ëŕr\™˛‰“%GŮŰýďá eÉŤíş-řĂѐœÎÇâ&‚Ÿ¸)˘›Lаˆó›ňř*rŘnCŔťż˝LˇÂíŒňŻwŻţr›$7" ‹¨7wŐ|ŤťÝ͇ŕۃ> ŚŰl•Rúzłă$řšˇÍžPßëťMŽó‹|ˇÉăŕîvł•‰Č‹@ˆÍÇťżżzs7žHy%›HůŸ"ÎÂô&ÍăP¨˜X}o‡đ'DОŰ6=Nd°}“V7;śo„|  Á Ř̓]uAqâľűnŘÓÁ–ŒĐ=w~AŐŇvvĂťdó]ؙžěŹóŞ5ˇ˘W`o AŽâpŕtîŔŰx+Š0“)Xő%S.\ÝFDňŒÚűK:Ş7ľ)‡žpŕp™š €)jČÔ;ţˆ^…ăŘ3—ťą›âŘŇ{ŕúë5ŽŁKŽŁ—8vţ–‰ i$˜3wˆFő7žĂˆzwŮÝÁöY&=€]< ôŃtęěŃ–˜öˆŒÖqK4fg‡śë׎P{ľŢ“{MŠvw¤.Żżß­y¸¸ď)ö㤇Ó8\éâ%ň…-ď3f÷´ůmÔđă@ ¨´žÂˆ äţ€_!‡tŚZăCŚa'žre;)B)ä|ˇŇfuťtfĐśá 2÷´!Qńą.Ŕ 3>EŰŽ=.˘žšlř  Ěĺ"Đf2ĚâĆQÁdőžĂŰٝă. #0ޘŃoÎčö—ł-ÖfÝäT”„B$Vw{•ŃĹQBďœŢ94u:ŒegôŕHb.{úŕÂÚ="ŞŠ÷cçJą4)řbđËQcÍňH“ƒŠO´’,!ZşÁ¨ÂŰ_>'ŘäœÇľ:ÝôľŚgŔÓ„¨z.šg˜ü †°Ř›asDvs0fÉ1œ<žl ˘ń^8ź%ć`Ś×XŤĆŚDkňć2 J\6půÝQďÍ[˝ˇŽ”ţÄ9°<"Ž9ńCîŞ=ۘe‰çžgmNjYřŒ„Wš:*^˛Mçő—đ°ąö {Q5_s Ľ•ľnö#îóÜńs§ĺ“ř8ÂŐ1lĆE!€í΢#čRb<;ĆÍü>aČüúU˙–\7N˙Gžź]]hÇwn‘pÁđV“)ž–]ěCá)×nĽ’ĄtľŐĚ4{vŇşÔ‚JP’â)Œą.~š„Ş¸JřřáĹuҋ$ ¸™ĘА e†++ők,¤aVçgŞ•6 {ď4éPÖ㎟ŮO*č¨q4ŘĎI—ŸŔž>xĂúř{}oꎹ´•"#cqôŔ[9 Çź˜jěç qćŃTą˘¨4b¨h¤4€ßËŚA?ž¸’ŕnEšLá×­)¤(Â"™ƒ“{ľ–a:‰qŇäé{ƒtUßÔ\Ď*АL‹…ˇĎ¸ĹVm{ ňŠ{=Ę7‰&Ȳkš÷@|$Ř=ř’äJ ‡kiŹtÇÔ|œĎ+Ü^Cz^\†{4îžţ;‘C˝3•ĄŇŘcŠÇőÝľýär:7hăšZÇś3ŻiYß™źlGؤ§YՎ~Cű|UŽô”Çj7ÍĎM+üĆŮ;öp¨n^S)U!玿ăPf}oůsĆM:X]ţa|čÉA+ö~˘xÇEőĆ\śNŠŰ)S*Ą^hžívFülűÔÓ8ĹüdJ_íŠ^ ”Î>|?ĺÄ‹OWÇ8řřšĐ§‰@ƗźŤ4 Ev-÷žúţ/7ĺţ<ëןÔďşHśőKŮ˝×ÎČâ( ˇÚĺžqćiěŠĎÉęŚőŚÚá9fÂ]˙Đ|˝3•âr QS9†Xöäƒvm*ëz@ăÂ.jiŽëjtĘÂ"-ÎĎřjڇŐčŠ U$ç~›:št&’§-$Ž…F_iş2„KťľD É3>Gôç´Ś€.U3­ Œ q|ç”oOMí {ŞŽԝ›Bœ8Á÷śśäXĎŻ›‹HŇP%مšźý_ť“SťŒ+čéŎoŠjůržu%xýçőkžlOž}ąˇvń7FmŞ5) ń;㠟žżAI9kˇŰ‚ţ•{eĽűVţWŹŮŚžŞý‹ž1rnF^ËHüçéˆ˙%š–łü˙Ľ˘˙‘žÄČôň ĄívބŽÄ̂aŃ1ň.Ą‡…Šs‹bŃg蜚ˆőéÇ šV%Ż–%â×g`‚ëĎÎü5˘ ląljý8ŹůĚŰî|›°Ŕ}K’ţšÚŃ^\sŽu[sČ;çžěW¤‰0 IC_­WŰźhů(÷1ól31Š„^Î̗j4÷瀳÷ľƒÝ(ż>\đ…¸ŤĘŸD™řYxWvöŽE_ŤŒéËč endstream endobj 107 0 obj << /Type /Page /Contents 108 0 R /Resources 106 0 R /MediaBox [0 0 612 792] /Parent 110 0 R /Annots [ 105 0 R ] >> endobj 105 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [147.6 260.585 367.176 271.494] /A << /S /GoTo /D (Language\040Configuration) >> >> endobj 109 0 obj << /D [107 0 R /XYZ 90 720 null] >> endobj 106 0 obj << /Font << /F55 9 0 R /F56 25 0 R /F82 8 0 R /F10 104 0 R >> /ProcSet [ /PDF /Text ] >> endobj 114 0 obj << /Length 2544 /Filter /FlateDecode >> stream xÚÍYÝoŰČĎ_!4GK.żď­í9×ÎÍÝE… ¤ş)‰=ŠdH*Ž˙űÎof—˘dÚą‹>ĚŮŮŮÝůžŮ•żđčĎ_dŢ" 7 ÓĹćđĘclˇ[đۏŻ|Cˇ"ÂՄňĎëW|E ßs3/óëítŤužřčřjůiýÓ"H•ސvaěĎz˝L§ř‡ę†-^]­ÇS"ĽžÉ(żÁň"W-â4tý ”Ă×ű˛_Ž•8ňc_l•ŕîöEmąe˝䗥J˘ëËŚD,$ÍV†ĂžŕZűĽďŹ—ߡË}ĚLńů¨‡q}‘—+V )Ô\?ֆŚ{ł\…ŠďÜ-Wžƒ­Ę öÚ6RΆÖ'†Ąě€!ŸFŘ\pM'ߖśĐ=6d Ěąę펼,/dXňţC##- ÔšDSÎ}aÝĘçÎMţŇ5ˇúśşÇYi ŠW)N?Vš uŐ7݊ 2°ŚőB¤Ä.ßĆę÷˙ôüxS@^R¤Ę Ď$ďĺť'ÄCĹkŘ%ŚV B§żučŻ2{ˇ‡5RXÓ­îXHW ˜Žč‹(nŤ˘—5ŁśĎ7d5‘łĆSg]E‰_™›¨X[]ÇĄ!=ókŚ4Ńtć˝#ޞ]’89ěŰJłý–ÖC’xľ—!ۜžWż|€4˛čÚŹ*ëžoJQ냼"sĚ˙7h`ýVÔ1_‡çËîŤôEƒł #‰ë rׅ GŤúN/HdžH `”–€•öDa¤•IůZůfDĽo˝/ŕÇĐ č] o’pˇŢłąŽ9Ühӈ“‘€šQk#ß]1I^żAŃâpĆťˇř8—l†Î_IŘ{3ýUZă¸ĄŁťbÎNŢĽ‚—[ˆvyša/G“ÁÄZ‹ö ȍăŚpÜÄą˛N÷$z3„ĆÍB2VäĺĹVIŁŐ@#˙ůńöbyT¨0š2ˆ)0ô°˜=R˘čł="łGLj#ˇşí_C˙'ş-‘–đ=Ýr(>[„ěĺ2D7•C+C¤2‘Čý=‘CȀ/狳ő&EĚ˙y¤Z=đT¤ˆÇ2Ä_΄’î#˘ľĚ *Ľq 8b˛°ˆŽd(ť˘7köz<ËŮe°çÂ`KGÄ5ľ¨˘ą"hě/ę~GKô°|VšÄP-ˇKHg›ŽlN0j?çü¸‘~Š]Á0Îj1ßžjpȝ$§…ŢHk–ENwŹkŮ,‹MóEŘŢĚDah§|˙Â=L—ĹŚD†ieíeŽŰŽłƒ`ŮŽŤâ§Ú!#ŰíфŐýXY™+[#Fö&śČ^†’ĘÁţb’=‰GďMÍ'›üa6dČš3ŁŐž—RЖíŠĘPw]Ó}/F\ĂeĽU4Ń|Đľ Ó6fĽŠV§jjrń‰}ýöÝĎWĽb{Äš˛Ź}›ySVUâťąŸ+ßtřŁo‘hcĘ Ěew˜Ł˘óďÚV@ĺzĄŠĹĐ}sh‘ĆŞąĎšőÔ56 ĂĚš)ëźA„Ýő‚¸pÍ$C1oK7̋ŐĂČsŽËúǛ7‚폛MŃ÷Ô C`„™ˇšA˜c}Uč~˜‰ŐČófŇt8ś&žˆŔ„})1—†Šł+פ tk4s*Ń$˙bˆŽ‚ŢxËMJXäfŁ CŘe$żČíPU"uu†ERxůĽĚ÷šÄ¤Ă }’Î Rkę$źČ҄ŕ;}§Í~"íU9iůN—§ž›ĄÜNýxŽş“#ßĚqŸUy(媖&¤@ 1Ŕ_ż~íş.ý˙D™5ó"çO[⓹S5:ç„J>Ÿ'ŻĹŹáŤ =JC­ÉŐpśůLOťNH‹qŔĈD=č ä†5JÔŠa–ňľ`EŠ|ŸĹ°/t'Jć2E”Čˆs遊c’FĎOĐÖÜFç^đä>žďfÉřTB?ÇPŕŚ*x>?0ŰÉĎŮ>â5äFžÄŮEÍů:tšťűŘËÄ b/x8Ź–¤Ňť`Fz—súL"FŚí r 0Ô)m ň>ŸŇŽ$9`§In6"ĽĄ€Ť*Eˇfśřďˈ2ÂŽ¤ ńA—|%Œ8ą:Ą !Â_J‰&:1Ňň1ސK+€›%7Gšň|O0ěţÓ#DC˙‹’jťfFĚĂÖçńĹJŃ:ĺ+rg2{–ŕÍęă'o‘Ó$ŠÍ “ĹSŤ¸Eľřđę×ه-?tU˜ńV~ŹäřwlPjRˇ]sřrš;H{y)˜O}fšdO‚猖€uSę>Ţn›*/fŁ4Vn?ߗĽMœ˝žëĹţKşUdÜjHńŻkŠOšĹٙc´í`ŕŠüţDą$+ ű%G霔ďŢLneŐ wH].Xé÷(™ćžRŰ5ueN¨Ýăk‘ŘăěNpX×öKžřŽßŁŃßޜ˝CÚgޙ¨¤šRwK¸ôôęcVÉÄ­ÎA™ĘÝHaT˘l+L˛aaLĺ^(T3y nę•ţŚÄöd'nÎĚł#)Ł>Lq9 Çëh1]˜'MB”†j_îö˛ĂgÜü…ů„+(Í6†j– “ç/™Ú|+˝Ń”Ógżb™žŞ9íqؖc˘yx—=;ůď5u+¨ŠQ‚çə␓ˆ §÷7Ëgiś˝ěĂ+-( Xy.wxŠŒçޚŮܑ¸Q0pÓŇđĆžšÎ`{şëŤŰ §ďh+nŚgN*dxÚőyEΐęün’ycǸ+|ŁübZ™rPęL’ńÎáR4'ŠŠ)™™UśD;`üôKGY?eôĐMźhÚiđĆşľĎŮů#œ'T˛QťŽůĺă ŕم避†*ĽnçÂcŰo˝ś\őݞ"ŇĂS¸yiÄŁf/H‰Jň,aé_šAS ,ęcĽ)ŽV şIŰ4‰zęFžöŮRFG€Ż~}ěἨrމ4îaœÚRâx'¨]QS/OiőƒŽrżÁĚ`ŞHb|W`ÁĽř)7ň|l&ľ|ţ…"ôĐqbpţws75ĂľXÔȂ*ňĺ× újó%i鍏|‚ź+ŤJ Óď&4hťbSy‘Ű9IƒźA™>Ź'ěńVă'Î|éůŠ;rZ.ý×ćx0–§ôšŻpľmUxję:ÝÝ Ş™ÜŤ€ę嗉ޮĺë+AbxčZXľ—_ŽŸJ 㙉cîb>őůŽM‘•ç—×Ű;Ÿ<šď>ŮřhoyžšĽxIJóZ>湈_ňi(9M‘0ľ`óF^ŤŹŠ› ‹œ;ﶂľu\ć§_lzŰDţ̒ endstream endobj 113 0 obj << /Type /Page /Contents 114 0 R /Resources 112 0 R /MediaBox [0 0 612 792] /Parent 110 0 R >> endobj 115 0 obj << /D [113 0 R /XYZ 90 720 null] >> endobj 112 0 obj << /Font << /F55 9 0 R /F56 25 0 R >> /ProcSet [ /PDF /Text ] >> endobj 118 0 obj << /Length 2478 /Filter /FlateDecode >> stream xÚ­kŰ¸ń{~…›ŕPˆiQomŃ×\6—ârlœ>Đ(׌×Bôp$z“Eűíá eŮË˝Ý 9$‡ĂyĎXÎBřÉYÎň8eRĚÖÍłĐBű› ŽŢ<“źo“Y=[^ŚéL†˘ K9[m§¨V›Ůż‚W;ľ7şŸ/â8â‹ů"IŇŕăPľ7úI­ćEčDWó" V—óE”ʢ d<˙÷ęŻĎ^ŻĆŰÓ(z"™¸ó:e’‹l–‰qB¤]Łáö˛ś]ßĚŁ<8ĚePŤeđľ2;ZŢŤ^ˇó¨ĚNz  Űö đ˝îűŽ˙~ţ^fÁîî´łŠnvö4MMG'ÍŽb\ÝŢT];Ĺ _ú9]ČXȔhďőĐőF {“ŕƒÖČÜ$PőĐ›R->€Ž#ŞT”˛$\+˘#Ë÷UHK–éŘ5|ň@Żç (dԀ#Í }żVuÍŰ{­>ÓĐŕăďö0)ŕŸ1VpE#Š/€ë đ˘neĆĂzŰľ‹F™5"ŘáŠ)#$QO8ąL‚Oa:‚ŐaĐĹgĹ2íˆTočËĄ3nĆ8sŔ9—DĺP ´ö•D[óVĐőŚj•á+ř€‡ÎOĄLt˝ʤ•(h6UĐEŠ ş…Č śĽĹ{’ÝrŻĚnişĺz{ĂGOt›Oľ^ ä%a˜Žžł]mďx5$ cPţzƒ‹@ä[%4čU–Ę`Sőzmşţ‰v§”ĄŃş#ŽŤ 冈ŁçaQ)E”…D›xŕQ.˘2wť[ľč*Őn–]o™ L.E(ŁS޲ś߂šO¤"ô”Ôó¨Arߢ˝óNĂşŻöFřä÷ą­žĄu—iđdŹŹ!€K“,ŃŃńţ"v÷çŹBÝ›Ś÷œî§1y¤g×$?šě{Íňl7 éűîáښ;ŻP%ąăösŻV‰<ĺqáC‹đw ,ŔÂOxűĂ/€ľ ű÷ŞÝtHü×x›%ń—ˆ7MFĽ…qŰś34@őG|iÉZ~~̛ľ5geŮŋü:ŽÖ§ŰžkĐŇCĄĎ UO΄ĐXQQdŠ{z ÁEŸق9MéD?(N÷†@8*Z'ˆ~<qśk§kֈޣűžťéUƒŐŕeVąpĆn’&Ä.ë@eŇť-U‹ßř¸:}2ÎńÉč3Š,ř'FuŒ|_Ť–şBVĐXm6„ŽbôÖGńĺ–Ÿ\ —ńˆ_ܨ–C@}G+]O_ş 2{ŒnčT׍žr۝šŕx­ęÚJ'uÔŁ­‰k´xă6Ű[­X}ä՛1ÝaŃŢZę rÂ# ˇ[؞„Ąœá–AÇ@2 ŚjÓV56ŢÁđĚĂ &Âq]Ťö3jc"'xF/Yš= đŁbŕlT œčv]wÙŻáŁzXç ˆjöŤHœÇ„ĽwjM1ÄŚ"œnşĂőt?y\™xă1 Żo~ýM5{ţŔK¤\XT>7VЏLœ›"Ü›-ÝJ18 ßĺ…X˛#Yş€Óů߂qNeĚO\N]ÜC$…¤SŠžżşŔÜó=Ů6­]VŔ„ŽŻŔ PţüˇÉĺűNřös‡IM4F2ajÖě$Ąœ"§œ‚Rş‚}Ž"™ ň%fłýÓíEt‹p<“" 9!UţXŚHáqŰĘJ;!$?‘ˆ]ňzËŮl Ž˜ ¤łŻl&ĂŽžčóĐąâ¸2=ł•q3̍ažúí`L.ŔÎj’ôčj{8›ď^x\d‡‹<#W: ué„ĺ6Ütt_qz_jŚ"É §|WŤË÷߯~ô‰$ Ȃ÷aŔÍ Ú::(,Űű˛é}Ŕ˝2iZœrOŤ3üÉgÁ°$•%§Yՙ%âł\äéHűwďŻ~ysőýťËˇ?˝ţđĎ.|ϒY(â,š<,ÎRű°8-Xşi1á#V^Vć9źsL‘ŚÄřF˜Š,Oԁ؂Ö#ƒ˙ŇÇՍ!Ők%{v8]ÁqŐŇŚŻťjágGSŻ Ę jç2}’Śżi„ĽßËűF8Ą˘–°‹úŒS§Ď'Oˇ |FĎ "Ÿ{óń-i”,¤š<ˇGÂĘá†ĘJ´ËŢÚ ś64çšÔŻ|1ّslPžŽ<ΊIYĺěĄÖ[ÂwÝ5űŞśŠ—Ń >•m:Ŕh|eV8äĹ=cšgœy$ŇD:•zuů懷W>IĹ čp|Ě˝í\ĽŸsĽ_ŕÓiPľœž‡ŕ8\,ƒÂřg$Z“/D¤qLV‰Ťܨgqk7Ůl‡V*î•CHĚÜ`ń˝1ýʓÓ7ţůŐŲ1ßSóD$i25×0s4Ó\½0etć}NHFxˆ¸Lâđ>mdÜżĘĺ1xÜľřQ^ŠÂ*ó´0čÖţĄË”k¨×mќëű2ZM°­Í‹ŚżX'qfłÇ|Ętć‘ץ{Ćň‚0T“ZßFě\(l“ë`ŢŞľń™—ař¤žHîř°}:˘"u Ić(E˜ĺP‘o=ƒď'ë6mIË ÚZbOŘ3zŽ­ÚĚń`zÚŕÉĎvâ7žš‰DW÷Âů5ćĂIVrҎ㌜“]Ł8!@úG~8˝ŕ†ăÇÁëœÂsšĺc4ŻOn`wlŠpTs?s 8™póĄÚËÂč˙FÎueľź7K™ŠčěęŰiĺšńߣdU™ÍŮřâ‰N jąiÍFlqť*̨vŁú ÝÉúCż…° Ň 3Îâ§ŃńŹkzœÖ˙çĺ]AăJwkŁjšpCĹ)쓵juÖÝ6ÍţwtˇăÍťŰ(I5ĘŤ–M“7nu^r< ôcAkÔĘmsˆ‘pŮ'¨7¸r(Š …#ŰăBĚGͨşşzáćÁh[Q€ Š/ŻH˜Ëą†yŒ=fјZĽyĐkČC*rdąŻĹďŽ#W`ě¸2]ÇШj‰E0´ě ľ+ƒŰńŇý{÷?řßAŕ endstream endobj 117 0 obj << /Type /Page /Contents 118 0 R /Resources 116 0 R /MediaBox [0 0 612 792] /Parent 110 0 R >> endobj 119 0 obj << /D [117 0 R /XYZ 90 720 null] >> endobj 116 0 obj << /Font << /F55 9 0 R /F56 25 0 R /F82 8 0 R >> /ProcSet [ /PDF /Text ] >> endobj 122 0 obj << /Length 2030 /Filter /FlateDecode >> stream xÚ˝ˎă¸ń>_aL‘WаŘCŮ`ƒAL Ě ™=°-Ú"K†(MwňďŠb•^^uz ,h“ĹRąŢĘ]rWDťL)Qč|wźž‰<´;ďhńń/o$ㅀ.0˙txóݏI˛“‘(˘Bî§%ŠCšűw őţçĂ_w*…Ž5PńĐć°ĎU`?Ç]B„7ďÓ-I#;ˆů ?Rg"ÝĽšRişÜŠłŔ;5]˘ĆŃČ^˝1B˛FšĚG¤śŰ""•Pé$§řî%RšHU:Ąy… #¤ ™ĐÉO§}¨˘"xŢÇyĐ´9šşŚŐ˘ÇKډŠ”;)tTłĹB"˘DĂe3ÚÁł‘Š(ÝĆBi†żŸŕťôsümxř‘X9uí•VýĹ2Ÿíőjš˛Ž|‰’Čkß´ËQ5(ŕđDۖÁŰĚ"ےԔE"ËSV“d Ý>L$xÔÓmĆPč đ%’şîńÜ=ŕ-ϸŽƒϟůŽNŽć?xfiç†ÎV1Lɋĺ`Rvjër¤lŸ*×;ŹČăŕďMý<„LGkv7íÖ/źŮä+VKźŐä˝ŃČfů˝Íän^MŤ(řT5e‹r?:ČŔ],ú.űޞŽĐú–@ÇΚŢňńĹň!Ş!¤ЧN’ů˜€Pź+x#B,Eiśňő[מ;ƒN¤Tl…h×üąßŒÖ0ÁŔe!dĚ…Ÿ65†xhUsʇĹÂ;÷ŕ)ŚköΨƒ˛ęěąGű!JŐĐ/ů4ƒú4ůvUoůŁ úŒ‘R úíĐo^ ĄŠPsˇš4 ~jˆ4$ŞŻÚ†Ĺ++snZ×WG:žZçĚy䃂j—cú셱̄ʋuí6m×}#›9u0Ňgi žŘ”Ś+iG^jšĆ֎ ̤ćČHg)-[ţfpčČ[=\"EnÇ<|żßdş˛Ö)˘ ç‡m/ĎâŠôşĎQĆf’–UsXŸř@*tźŃSĽ(2šÖ/7RDŽS U2ó5ô‡.ÁĆ*Đúp#ž5ŸqŔh>ŁÂréů¨î 0śaYŔj:Í#:ŰxˁoáŰU{CŒÖB&ʞxGĂ%6Ö̍, YÂ8fśâ+ Úr­ő ĚU5t"O8>ˆş=SŢJsăzšmU‘š'Sw˙°"˛eĺźZ‹bčíŚ!èH­íĆ-‚ZX ę Z‹2ź„d˘ąb¤B깻הѴĎńM8çm>Zä{‚ áď­ó%ŠčąďŇr;sKHdşČÇŢҧkœ3łŐóÔ˘ĚćĘŤötwDĄCĹ”–ލFs‡—zĺçŃTxë{¤Áő´ť˜š% 4Jśq•wôŹđŽ%Ŕ%ŢŇéƒ˘li~‰ďCŔí 3°ŠWÜŔůˆ#gvúnc*€–ĹőÝŔi<‰So{ěؐÁŠ/âČŤńžÁéěľĹ€ţZa{ž#ľ”É-dWcbŸőĹw #Žěa–oš/ĎRômĽĄR‚L0ÜćEL2Á8 :śďĎh”‡á|ž3÷Ęů˘u/?v>Ĺ8BÝDzNEžO 8,ˇhJôči^÷6"šĎ¨?NÇ8[z D‹fűôLGŽč˜|i N„ŔÄâż8BňâÎ lŰ@çz5|`m7SY*2ţŚ6óW%2×Y’ćcǍ§JHŠwEŢWíÄŁŻš}=Ąö ~ aN§ƒJÂąŒÇS đ<ŽvŒŽŃŽčă%SpëBk ”j_"đôŠ4— OŢ G﹤¸˘DUć`ü<RătĂ=ŸOLMËǑ›&űL¨ä-°ŕɋ6ŤeAŘÍeVJŐFýIrěâ—s){Ą×šËßV͒yřó<.gŰEáR‹Âfú~I•KąţĂ?HŰ?Ôüő×}¸Ćéş=mśÔČ‹ěő°-ć­ă')ńý-[UĐ쓦€§šĎ÷ěŰњgÉČžqéLăę)JŐäSŤÇ|°*íÉ uoE+ŞĚAĚDÝezHÁ/Ą:ßLçŚĚé§eřuŕ$p§ŰâO1ŠÖ8¨&ŁH—ę|ánÂRńŞů‘dJ¨~ËmönƒSÍä˙šČjçŃ/kZŸ†ć8kßÜ6ůL6 Y3§F5vőŒo~8śŘ1*Ž_Ő¤ŞÖżŮ‰sÇď|kćÓÍ;oŔű/r0ŔGmݏpk6z éů%Aű,‡~ůH:ŻÇ‡ę˙h@Ó2 endstream endobj 121 0 obj << /Type /Page /Contents 122 0 R /Resources 120 0 R /MediaBox [0 0 612 792] /Parent 110 0 R >> endobj 123 0 obj << /D [121 0 R /XYZ 90 720 null] >> endobj 124 0 obj << /D [121 0 R /XYZ 90 438.726 null] >> endobj 120 0 obj << /Font << /F55 9 0 R /F56 25 0 R /F82 8 0 R /F76 7 0 R >> /ProcSet [ /PDF /Text ] >> endobj 128 0 obj << /Length 2704 /Filter /FlateDecode >> stream xÚ˝Y[Ű¸~ĎŻ0Ňˆľ"Eę˛oÝ I§HŃv3iS$óŔ‘éą:˛äę˛o°˙˝çBʲGNŘ6!ĹsçwhąˆŕŸXäŃ"ă0W٢Ř=‹ˆÚŢ-xđó›gÂń­€q5áüéúŮŻľ^ˆ(ĚŁ\,Ž7 -DˆCĎu˝^| „^Ţ\˙ůŮŤëńKZĘ'‰œÎL“…HC)´Â3AŞ$SĄˆ§–+Čŕő2kúĄľž.*č"óPhÉťŽęĺ*–qĐo—"(;žK™[łďm˄š'Ÿ"Ąę5Žeđ°5=Sťy•íxĹë- ‘ÉŠ"KB•d Ş(gA̜°:Œ@ŮՄíŮI%`%ĆŢŘŻFúbBý ^fqpýšeę†ý~šBU:ťvz7źÔˇŚî*Ó[gŚmmŃWˇÚ0Ů}-dYŃ K$Ęş’Q&*&ű*g^đťĺír%@G  >H{Á9œ#řłś“aƒ˙ĺňYËĺ,§” †zmŰŽ7őşCBěp8-5Śô[˄˘ŮĄ˛;`}YcxômCö_:J=Ú7ŤmŠPŤô˙Ż/ˆŹŁ@ňˇäV˜§qFÁŞC™Ćří$N™űůœ*” ŽpšJS\őÎ@>Ä(/Ť8!|8†|źç–ăm’&Ψi˘‚ŚZ3EBĄaŇ/hQđJŮԎgăÄJNr-‰Á(b‹řcÝĂÎÖ}×Cž~lö=|˘ťů˛iڝé˙đۜr"Ĺ"ῂžĽ3Šn8kűŔ"͉ąŠ5řŒ~˘îTš˘2]w.Íź0i A{aćÓŃ3ŚŁät|_—ĺt°ĆŒOuđŽjC,‚Śíż–š.^ţˆĺÍEŹÄŠ3pA„Ŕň"Y Ăţԅި˘P'ë⥎)ÔĹy¤_(‰âRM‘śĆiR•ť˛ˇ^PśŚŞeĘąvś=śJňKĽŒü$ÔďЁe›ˆ/żçŤ…ďŹË0 >Č2rźőLłn.űŸÁÖ}'Viýß–8Y° ›Öą¨•p9`ë+˜˜î*\Ă[(q‘ ĆVll˜°ŔŻP“LxwŘá~—˙#A)Š8‘Ý .č<ךŽhÇ çÓ_Hš-&ŠI,نnh÷áŞk˜Œ'ژÂ8)ŇÂE3éŒÜ}ăv1—ˇaJ6DŠ?j^ľf‡Wƒˆřވr´ÎŽ)5—řo=.ńĘ;ş,aĺęJóĆÖś53mXĚžcÖO‘Ž:kĎáV,u' •K@IâˆË1Ż&Ü3@ď쓬J{”L…Ëôń/䤑IĽ˝ˇľŠŇ+sîů›˝2f‰&Áť7w.8EvŽ­ °Ť…Jł0ĎžĽŽç^MŘgô=˙(íH ĺ ÇőCœŞŠó%¨ N3˘;t=ş‰[ëÓm\oű S8[x\şěôůĹÖr‹ë˛ŰW.ş™*zË÷­ËOťy^ +H4w×ĂťIămż˙qـp÷wVYď‡ţT\HĐň—ĽN3֏[—…/ d™h‚÷żű\€>â ű  €ŰłÍ]Ţ2‡ĆCǏ/o¨ľ{SÜC\~úMv󅌶ůíŇ%:ů@3‹˘“Ÿ9äó7NIA+żĂáńAĚřŕĘš€ÁŤÚ#…˛ž{hG¸—Ć9… Č nĄśPŠM{ŕ2.wqś(7~ekgq\ŚÁÁŠ×jőrŚ…ZŒŔˆą”gĂ獭ÝMůč¨ÚŮLL!ăŃ_ĘŽ[ÖbÖřŤ8‚‹ÄS<-ŁPaÜcd:žtó% Ă PP„™HŽž†˛'z A|J:鯦ӓV€Ý }ł3we5ń€$€ś‡;Łă ¸Űă 0Ą˘4-ůԍß/ľŔúÝcŁ ‘*´óqÇşi´€ mƒŰ1ă YöŽƒXě0 ů#ţ{őˇdqŢ4V¸ ›gyp˝uÇnšŞjP—çš},Ŕ2$(ÖúD$LŚXhíúG¨×ݓ ‘}ˆœdP1÷űĘîLáŚĹ^Ĺétźśă,ÓŃd,ăDż˜“mm şr‡Ş/_ŕ% Ĺo/$}eœHš.&{¸šČé$ž˛ŠéŠžNrÇVŰĎ˝ŁßS&–ŮŞ=' §RłĐ$É!ҀĐçRŚé‘‘ş‰[ŚÜĹĄőS ÷­ă`”Q7ctE•Vđs˘RöłŠ„wcĘՏHCÇXMäĝǧ‚(AůŒÝą$Ş8qöĹöXÇÁŐĆmYUeÁł)ƒ)Eö-d /Ąü â~[ógŇ)kýŽ4 +‰ĺqFŽ;pÁ .™—†ŽioýTĂ7mßř5ŰÁř¸VŢ>něĚŽô+Źsĺ΀$3ŔŠœ3RÓťŽłˇR9×-7ďKEŰŔ˘ńŤŐQTbśÓYń+ľwَśiĄŽL pA01TŁĐ[ˇŒď×څĂă š|&fdíƒŰ ˙%´Dí:TČĂ\ŠSôOY#ó:ź¨qÔoKlPďü _xD•‡ăNÖ ˙-iÎŻÄ|]Ć)kՖÍŕö‘›švíŚC70XŔÉřř€ß<ŕxăŕ;]ž‡÷RB,JĆż˛łëuhŠÜ`VÁ |9ťźĆ ƒZ+`ąŸÍŽzĘŤdňC„–௎~Ç >÷ŔC#˃ mS&úťţś˘<@ľ?ŞŒWŽí‰¸Ň˙ŞŕŔ^…™Ô§ŚóRúŽšŮœuÇ>TÜŐ˜ů%˙Ró||†:m-O:ŠŇĄžŮůá6•¤Ë‰ń/ňÖ఑ĄKňĘV¨  ÝŻžđ# Np$øÜëĆ1™>˝`+_ˇź{ž ’:çť jś)Đaväa„ŒŔ ôőśtgń_Ĺýjk׌lvKě¤< •>}AtTűľÎ= Óďň›Ĺé3‰ňÎîMYwsćKe(29ßŘ}ôθůrknmőäŢDMd¨•> lœ÷čÂAŚŮ%żf*LŐŘq2V˜;?NCĺšÎZ#ţ>Vü{;A12…˘Žh™ó §ˆŮĆb ě ™ţ7ž…úĘ}mĂd˙3Ž˙QÚş6źţž.Ǘ˙žr€ÇČ(d˛łßBůTÓ #šŻáĐč§Ů÷ü‰Eqox[ƒjřĹ…ŞźŸĚ° ˙ˆ NoŘKDţűĐôŒD>YPÁű]pçĎ 21ă˙8uż:×>ŸŐX€Žzü%ËfŽ’ˆZó‰4!Ýé7H÷Vú_çč~ endstream endobj 127 0 obj << /Type /Page /Contents 128 0 R /Resources 126 0 R /MediaBox [0 0 612 792] /Parent 110 0 R /Annots [ 125 0 R 133 0 R ] >> endobj 125 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [325.36 489.404 522 500.313] /A << /S /GoTo /D (Math\040and\040Special\040Symbols) >> >> endobj 133 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [90 476.253 126.364 487.163] /A << /S /GoTo /D (Math\040and\040Special\040Symbols) >> >> endobj 129 0 obj << /D [127 0 R /XYZ 90 720 null] >> endobj 130 0 obj << /D [127 0 R /XYZ 90 720 null] >> endobj 131 0 obj << /D [127 0 R /XYZ 90 640.15 null] >> endobj 132 0 obj << /D [127 0 R /XYZ 90 565.224 null] >> endobj 134 0 obj << /D [127 0 R /XYZ 90 408.128 null] >> endobj 135 0 obj << /D [127 0 R /XYZ 90 267.222 null] >> endobj 126 0 obj << /Font << /F55 9 0 R /F76 7 0 R /F82 8 0 R /F10 104 0 R /F56 25 0 R >> /ProcSet [ /PDF /Text ] >> endobj 140 0 obj << /Length 2954 /Filter /FlateDecode >> stream xÚ˝]Ű6ň=żÂwO2°VE‘úęÓ]‚ćĐCš=¤@Óڌן•%GŮ,Šţ÷›á eI+g÷Đ4“Ă93œoŽXEđOʊh•I*_íNŻ"mîV4x÷W‚ń6€¸ažž}őÝŰ$Y‰(,˘BŹnă­n÷Ť_‘Ž˝ýçJćq¨bť8čOúvËŔü7Ý^ýp;œ’Äń ÉAĚçéIs Ščäś?Ÿ×›8ęŚ[o¤ŠŰŇď}:™=Í÷ś1ťŽ|dŹj u5Í~Bšż{›ÇăŁD…qžĄt–&Ź)AI%jľš`Ý:Ľa”Ž6q(˝ŕ~Ŕb5˙żCÉÝž%BtĹԎřZ‹ łŐÂeĐړ-uCHŁťž1ĚđĄfpÝMăŽŰˆ" ź2 YęęŽ×wî3)ƒ[–8RAc>ö34?ën‡R:Ňé€ ÓR[÷ÍÎpW;B÷&tg ׇÉÂ"c.o Ćv׃; Œpv‹AfHÚéäNdâřa˝;4ŚÚ—ŽEÂéEáńÎÚ1rżN’9Y:™„Ýž§ľ1ş­+˝-͗ČuSݕś=ŢЇĽ†›Šń<ž!Tşkŕcw`wżđ7$˘5b"3"ňßĆĚÍLÄ)Ź‹U xQ"ž15˝Ą/˜Ű|S>|×ŮşZo’, ’0Á ~ů‰őŠŕoęęC$Ô]ßhDţ˜Ne7A*ˆŐœ™FĄLór౟á`žŠă€‰qˇ†ÄîIéÁĐ´-aÜŘóxŹQ{h‚>éhlÇźę%UÝÄčlOL/Üî–ô6ߐJݎ(AŻtŹb*xDbŔţ\RÇŮ×§x­)!•ĽhžRĽąŁŰHŚŞ #U˜Siźięőř{g- rdTÍ"1ۧâěfřÎ͝-ěPÎeŁ˝!°ů„”šćą#Oƒ°î¨;10Ep˛wÇuœMÍg˛CPHBv6…+ŕŠ*ľőÉ|żF- śv[ZŒ ç#X›7ŤŃíělç´ľID€CÔ¤ę*+Fě¸ePr *V˝ü`€ Lßąa˜ĹmSfVZohS´p‰t6Jô-J „ßPD`BĽŠź×)FD x|UÍ/ŘÓš4'Cá’bitQ3ŸK˝ăđ—`'lÉGŇ˙÷'ÝܡĘ9Ş6uď=!ÇI‚űˆJÂňG…v4ô'üŸś6l˘$ňŘłú%|oI$8¤šţě-Žś!*Y_”O…ĄÇU­›{šműŽÚÇبpâőŠ2‘2âń6 Űyp5§żh‡FśŤÄFÉb—ĺoNFW-ŃÁţhMň<#Őy—V7pjœA§ CpZŐŠ@÷]}‚ŰŘé“(\ëÉúö!â¸űĂróńDmiĺÁćŮ{9ږ~kÜ:ƒpjöČ[ ź9*iľ§Uwđ‚- jtfǨŚW+ƒWÁEwá}ËąüĽó'¸rQHşë5# jם{s>É+Ł­hě%‹J4 úgČŰÚĽ¸!3á’Do‹%Ÿ+„K\‡Ó™fa‚1}œ)źžř<đUÓ+ÁšsNÎ ć/˜01#44a— #M?Ÿ\:UÚý1°‘ĹCŚęţó#qĆ*Ç;ܝ &(-Ś ÔĄ1Ť:ŽŮ–ŮGÝÉT(›SĹ“|Č'QT Ψx&ËO\–ďŃći~1OóW#č(ËW:Ô[Č3Đ<‘,§bŽ…ŕ žÍz(Ä%h)%’JÓ]ˆ‹Ě‚rÁŕ+đúR+“yŠPZ§9eňřűz‰ş„whËÉ0şt;śkHřˆ4đĂ1ˆú%şO¸Žüîj§Ëœův¤ŕťÂä¤8MZˆƒQc]ŕOŠ"řOŰł•ääQ8اa&§V&‡š›ó˛2šx\_á@ÓĎY7`}˝ŤŇÜý˘đĹĽbš*˝äé}Y‹Xpě5=\Kô9ÍĹľžeŽtʼn*NZ_+X]dší“AÉ+Š?ß2‰†]}:Á˝ˇžŕ=[&\,ž¤5ŕÜjôaqžrţ”ť˛ Ô+ zśGÂŕË]ęŁ(ء’Œƒ-M¸Ý–K|ŞŒ|ŔÜéŠö‚ NÎ çBÓ CvTąčq}QĐEfYń’ţZňUúkHȃíŽ5úeœě-('“@<ŸIEEKűĹżsć¨É‚ˇa á~Î2“q˜EšŒŹŽŁ¤9=‚BůrčTű wäR†~źxvőƒŹ(]­ĄŽ:ą| ĺtbąo–I.3LĽ?Ą:š-%děŸyíâˆp:oŃ”rNˇç~? ,ք [^lÉ}[ÓŻŠ@ ;s˝ţ™yŘTIö4Řv+$$+ËžBE —ńˇŒâHÝŽoFÝ čúqeܙl äÜńT–ÔČrĺ:‚ž6D6""bŚúóťů~ŠčҀe;4%œ•öŢE7I1;B)¤”Łn ‚€…fĎ(•Ť÷ѝmdQ¸JJ—mM3TGÁޕîĖJs`D ňĄĎÇŐEčQ_Âíő'*@ĚlĎČYC}vĄY7-#őȚŔ1Ô=×óÜn`úîŽ9V6ÂóŐă4`‘]ˇžý3É˝˛Š‹Ş´ŃrŞZ(Óoí‘ IE6‘žr5çůfViW^ä`ЄĐ3|ĐWž8ˇíÓv<ś œCŘJÁ2'.ęíĐBę˛ďéôĐđŇěÂUٚ1ţŮBwłg‘-ď … ḱľ”ňčVîĚ´­ĎţXíÍçáľĺÉóĂ#°żAŁw…Ÿ)Ëeţ7J)´ˆáĄĺě{Č؃Ű`ó„ľdŠýEazŠhNúŢX¤Š¤ a3Ěň™çÇţ”Ăů­ŤĎv÷—śßşÁßpœsgťß<ě÷ߗ” M1:&Úěę{dϡ'f\f*!.Š1mGY Š\ůKAŔź˙#Áě _\hťÉK|'‘jŽ óI(„Ů^-;¸<ҤBžžV@Éi“orČi ă,&nPpŠ!™F ŸĂÍE›fa|é&ąA…ÔźDw¨&†g{ˇ‹c‚0çrĘ4ž˜AQ–NĺPłéTNYJN~߯s…-2ty6r¨°6ęËÁlčËeœűâ`җËŇ é÷Ńq0éSN>ç!Œ&mƒńǸŁSšw•đÓ&öväůĎ =Üľîšăné!Êř%-ždÖâK$çĚŤ˝éŠoGiŔ%~uO2Ťú˙}o˝EŞ•zkĘĹG ¨'˛xđËŽELţfŔyÎœŽtS9tŮÍ[~0Ü‚ʞ›tg?ŮŚŽ|3ÖżńĆ*•=ÉUé9}Z†ˇd…Š#(ŽĎúěľüK­ü[nFHA1łâĐ­]-zŮ2fÝ€+?¤ńwGŔ“Ą@Ą+۞üqŐu˙ÂmŻ+ľlCĺýĄôôEE‘@&ƒËƒΨKٔ{׏PD9\ăĂtϡPiąKšĆ'4ˇ<´ëĐ0 Pvöź\×b×Yeń]ěJäŔÁĽíSńQôă_Çn¸–ŔWĽ_šCq‹‰ýӋŇčĹNĘ|I+i'żŽ\ӆ`—wšŚeĚ;ÓľŚ;ó/‰-ú4rÍ`DľŒČ3@ŘÄŰÖň“XA5,ŢH3e1ô‹f)ńěä}vůĹđÁĘ?Vşiô()ŸK8÷vVđ?0eé endstream endobj 139 0 obj << /Type /Page /Contents 140 0 R /Resources 138 0 R /MediaBox [0 0 612 792] /Parent 110 0 R /Annots [ 137 0 R ] >> endobj 137 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [126.971 614.323 360.368 625.232] /A << /S /GoTo /D (Language\040Configuration) >> >> endobj 141 0 obj << /D [139 0 R /XYZ 90 720 null] >> endobj 142 0 obj << /D [139 0 R /XYZ 90 586.763 null] >> endobj 138 0 obj << /Font << /F55 9 0 R /F82 8 0 R /F56 25 0 R /F76 7 0 R >> /ProcSet [ /PDF /Text ] >> endobj 147 0 obj << /Length 3112 /Filter /FlateDecode >> stream xÚ˝ks۸ń{~…zůPjĆb|ÝÇkknâ^ď˘NŽ“dŚ0YźňĄ’T˙űî $%ÓIfÚtüŔbąÚ]ě´Zđ§Vy°JŁČĎuś*ęgAťťO~ýń™ź nf˜?lŸ˝xÇ+řyŤŐv?'ľÝ­Ţy:˜ă`ťő&Š"OżŢh{/יöŹNíכ0OóĚSéúĂö§g×Űń×â0üJśó_i˛Rڏt _IŚ}ićKűÉz'Ą÷ˇu¤ ń4}7ďAłËBŚáˆ´kOˇ•폦ń}Ś'7‘N}@ިČW1Ÿ(ëcekŰŹĂĚěĚ'̀/So8Xôv@˘˛:ŽáB‹u˜z˙ZÇ Ţ-üˆ™bĽ=ĐÍĹáÚtwŽ"beŕ†(ƒwŽ]‹<|,wŽ‹[\?đ‰Ą0ݘű; ę:DŠP{GS œt Ë؃R^[×ČŚňz‡Ă#ł XÎ@ °mŻpĘéF",#EŕŢÔeUÚŢ_oŇ8ôţÚK2˘,œąŽŤQ¸0ĺÉŁËAŕŽě€&Ž„żŽĐŁéžÝ‚ĂBaN˝ąőtÓňX´Ĉ#iÖS”)ŻöK쏺žĂ X7N4衑ËBpťç~ˇFuűlˇçńëŔςԅ‹”ĂĹ5žř÷ɰ>žś,\˜,Núň ”{¨Ĺö W*ť•ýH*Ä­ŞgDd÷Źü2݆Î4}ĺ€>Ž×€{#ÎAČnnäÇďˁěđp…t{yuřQŹWqú:ůRôu؛úBf¸$Jęyc‹IžČ%dBq Ţ˝6[Œw–➌¸§ƒŔű™Móşƒrą 7ňKŠÂ(…{źĺ~¤ž$•ĂŢĚФş$Jź‚%Z{×…ĚĎtw¸*Ĺ˝FKÖɡŢq”CüƒçCËŁ‘Ó׿đř>PÚVr ˝Dfe*-‚ĚĺśjsÄ0Ňš(U૽ü™"2CrÁçÉęé;yĂü‡Ú۟šÂĺ˝PX ‰„1äĺýÂSqDÁ<˜ÉŞĺ Ö!Č`ŹŰNP E‚mÂíôLRěv ˝E”ÁévOœ‚p/G|k E:őÜ(ř°Čbďď XÓpj %€“c8M]ÉGFŰ9vvpq ŕh_Dň`{Aůěy˝ł˜żSĎRbŚCÍxˆ'E{búPp,x˛ś(QĎXĹęĚŐj=ŻčrIÜźáńmŮě¨tťĚţĄ0ńO§`ďP:ýŕr$ŇĄĽíy>F<'´ZaŹAƒÚč ŚţĎœ8Ú×Í]Uö‡%š$îőÎÍ$ŃÈÜă8ăÓuޝƒć Ö˝9U/¤†¨)6SżĆ&ĺám÷q¸Č%Ôä%Şš„|Ů0ěGŰŐFćglÎĹ`)X[*š8ŠTČ*RŃ´ŰŰş,ÚŞmPSQę˝Ú_ ŸT“Y”9ژýq1^ ţ<œć m巛vŕ 49ăýN´Â3ăX˛;61ô…0‘0ŤƒLŇo6óz¤\ß!˜~'gNĂy=•Eí越=‹†$óţóöÄ Nř0!î­4â*? G`ĘěNAÜ,‰4p•Ŕ抃Ä{':HÉABI¨umŀŁilŧ6"ĂĚ_ 09#,B9ŐHě–#@ן‘żÜy‰H ÚűUóŔäÄŽŽlßůbű/´ß‘ÝLĎ36.ěĚZ2ĺÚđŇČţ(*HCb"?ř˛(ňCčř˙żÂ”ÂjuŐ7ÉXnMFŽŰâEU6\…Aĺœů:ËĎínĚnœ7o8E_]dý1HHUĐ/ŐjFj† šŽ ë>WoYȡCYPÁ_q˙nČ)ĄŮÄÂ}t,…´Ť‰pň–|łŰńę`Ť#ĎĆň„ž °aJ¤Œ—{˙Ă폌M#”ŔČtĽ†8|şŇÂgň­ U˘Q¨6ŁůXöŕ‚BL_IÁ„˘Š|t+b L–›l"$Ż(ĐcöW0†Ęű3täĺ ?€ĺ€ťéŹ•ßä`’‡œH돝ßV¨‹8¤ŻX!C8pĹÔQecŔě)żŕ|8Pl„ŮŽ•Sy°Ŕ˘:[ô,„žĹ›–kô˛?VT =ȏI`‡+6ő°Â$ÝęŘY>nĂŐ.UŠ*ĺžŃ4k= ěžîşśűĂwbę\HËĂDyw˜7ÝÙ?hos”7‹Ł+ž'ó7ź>ĺ8¨Џ§­˙ŐŔ÷DŢWŐŁâĄĚ“–ž/o1›âćĐňxѢÉɆGL„x~ěCxĺ>gČr´3˜/Ǹ8ńł$ú1N=äg'ŕ(Ëôś‚+Š˜-9Śe™ŸƒĎŽş˜Äű0%“cŧ§Vćc…ČOWÚľ0鸲ԳĘRš Ĺf4=zÓ|עÂUm(nUČ*ťęř+msńkޟóů=ó/íÔ7Čݎ:ťŕ¤ňz•Cűu×óËՊš+$óŠŢAڐő=˝ÉŇĄĽf…v&çD ”N<ť _ďJ._agVŤăÄŹkę.đčMëaVu´ôŠ'żűVp\ůÍEVć ¸yŠŘa–z7ŰëOCgHö“Ľłp Ŕ… wZ§BO‡9/héŔśƒ8űSU9ěşś]QšŠĺŁú›Ô%dҧ `ÔւDŹ;‰>cF‡řqC]Áa‹Ô$?H‹ÍŸ\;=öŘRÎúŋźĎÄ´÷ œ…@X\ôĘšaŚ2fJŔę\ Húa+9$&ŐÌB–Č´⠑Ť8FÖhœÇňř„X¤AÝyüÍ?ř0 vţúźÂ5~¤ôe•Îœ8UÂýŽ•7iS§ŇÁ&^ĺžxŕbQ:Ľ(AS”N}•pężü˜ŒÜwT_ŕTŘš#ËA™Ů˙ž7uŠxœ˝u’>#L/ÉüĹ —bݎŤÂą=ß+Á9?@fq–łB¤fŻ–!ŐkS  źÍMĘG-Ü‚˛1ڎÁń狄K9碰ěme)›Eî-7zĘöƒÄ‡šđŰ'off~ŔR+"‘w|cWޕ¸Gůqž^|&:ŃÇ(¸É_ptú‚yQ•GI†ŠcŽßŒý N< Ą€ÉQ†Ýs?XGŢŃvb`ˇűDČ4ůŚ›Ĺ‘w˜Č-~u4{škyeäémVŕűß۲Úw%=Q IĎŚîÜihkúFĹwe?Rç}fĽ6ŹjStô2Ąl.ĎîMY-=("Ä|.FÎś›Ţzp‡]ν,ďeĹËĽ “â@čôƒ‘ź=•#™<Ő, ¤čiÝŐ`śt)ěŒ_şüÝgo ˨ťn8ÍŢŹőĚ}ő˘‰`3pôҊ ąŔžŮAřéźc8”ó/î#éě ˇôâ§ńÍl:KđtŠ‚ËÂ4ӓ|ęD’§ˇŚjÍÎőöűŽ­}¸Ks?Té ‡ úŇw;AŢLŘüŮîěż.Hď‡a8~˙âĹýý˝żł}_”>b/} b83ů3ç_FƒĚĎâđŒŒřQ cy‚6a]ť7+ø9N˙f[# endstream endobj 146 0 obj << /Type /Page /Contents 147 0 R /Resources 145 0 R /MediaBox [0 0 612 792] /Parent 152 0 R /Annots [ 143 0 R 151 0 R 144 0 R ] >> endobj 143 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [470.354 550.347 522 560.044] /A << /S /GoTo /D (LaTeX2RTF\040Options) >> >> endobj 151 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [90 536.59 237.121 547.499] /A << /S /GoTo /D (LaTeX2RTF\040Options) >> >> endobj 144 0 obj << /Type /Annot /Border [0 0 0] /Rect [279.217 76.476 405.215 87.385] /Subtype /Link /A << /S /URI /URI (http://www.dessci.com/) >> >> endobj 148 0 obj << /D [146 0 R /XYZ 90 720 null] >> endobj 149 0 obj << /D [146 0 R /XYZ 90 720 null] >> endobj 150 0 obj << /D [146 0 R /XYZ 90 586.412 null] >> endobj 145 0 obj << /Font << /F55 9 0 R /F76 7 0 R /F82 8 0 R /F56 25 0 R >> /ProcSet [ /PDF /Text ] >> endobj 158 0 obj << /Length 2927 /Filter /FlateDecode >> stream xڕYY“Ű6~÷ŻPĺeŠŞ†xů-‡ăx+Ž]ś˛qU’J‚$Ć<´<<™üúí IŃölMŐl4@ŁűëƒŢʅ?o•şŤ8TŞ“Őž|ćľ9­xđîĺ3Oř6Ŕ¸q~ˇ}v˙cŽa_ĺűšNs@Ć pf$4ĐxœAktE4Yń/ďhâÄnĽŔK_R°­?ÜĐ}U^ SŢ9KŇN›W{‘!vĐćľH÷•§\xÓŁ€Á§ZĂ)b¤ţČƒ0vJ“U¸á0óC"É ĹĐ>ś)™řp6EE`đŃŘŕ}×SiYVâĆsżđ#§‰ĺúĂőt!rsŮQ}!˜ŠŽ'Ç̘Á^BĚZ'‹ű=×}q`!lz|—_*Г镒‚a‡N–َvá‚;Ł…štWd0<—sËㇼ(xTŐěRôpČŰKˇ™Ąů=Ňxf_ƒUîťâÝďŽó[‘ZW@śËň>Ţo_}`’=dkĺ°igdUŔ™ÁŽn}˛2ć@KĂ'ԒRÝá€0?^Żz G‡ƒ‡źj;X͊eƒŃÖ`‘Á„Wƒ Żólö0¸^{(×\5KßÜĚ Iš‚Vł Eş2p€K“[oQŸő×YeÁW'N poŕ_žGl×:fŘÇA+fȰĚ řŹ->ĂŕËý2sš­ÖŐß´+ÇÎĎě‰?vŽ Á‡Ň•§´›Z3]p˘Pš@،ضtŕHš˜;„:!żČŢjDţŕKP˛Óśě*A”€ětŞ÷}]–tŮn´ ¤"`‰CD`NŒî0Ěĺ-1됥ąË%Ys°/đ˝x…”JËąŤF¤Y5ŽKtLf¨ˆ Öľi3ˇ~2`˛Ř䲑 ˘!QákVűăińfbĺÇžĺ˝cŃ­1óŒĆwcşé0H”}-ŤąÜ›űBŚ5J{xťbD¨4űĚď?Đ1˜úýîţźcśKvőřţüAš¨Ôř´#XîŻa.”c‰Ŕx¨0öŚţüÎüˇ‡ŁH¤#lĚč9ßÜßh• ¸YšNÁýÇK7ęů*Š X6nóŇ´ß sťÎ=˙ d~üĹ<đŕ]]f˛F)Á”ĺýÉŹmDž[Qß6:ßÜĄáʁŻ4”mšĐ`„Ů!Ôŕ9ćŹ8úu’Ś ĹüÝm– ÔTě"~ĘŮFŽ Ĺ$\” úiH1†x_ôĎ™ź^dŐŠ;iů2”˘? o~˙Řä‹|ÇěecĚÇ;‰]řÖOfטľ´ÝąÚƒŔȟč=đSÖ;Ň­Ţq̉|°ŹřAź}ŐźźH ˆz• °ą/šŹš†°ˇY€SśťžcƒdŒäT0—°őëMn —Ć÷ŁW,răA*E˙ŻőRb‹˝„ŤĄłbś6 m-0řĐľžˆNkň SćĐsrČčJučR4ƒ)29źĺ_´őß0˙ŠÉĽÂGÄQÖśůŠ’*LIŁŰŚÚKśŒťă†C ßöť"oϖkŘpőŻîk -U:œŔŕfIŔĘN~‹Bü)đyS1UN›Či}^śë‹ŹáŽF™ş“Ö\äpsëSNWZ•b›C(¨ŚĆßś.ÍĂĐ_,˛ŇPl;2‚ŘĆ÷CNŃăтSPŠkŰ3‚Ńr›@ŔôŸTÄęĎąŢgŞŘIË[@ż“^­vΤ…˛ŒľmŘÄŘ;űÇŘýÓÂjŽ. JV"5<ŰŔňŠ”‘HéťZZC3'°ßJÇXŹ˘P^-Ť÷{ź´3ĺ0TaĎ2“u=Jđ—˛.?ń°™ŤšNÇ'°ęi ňę#SW,đ,ÂH?˜c—۲üŽćß2űČŠ:pp’Ÿ ˛\UôeŐňô9ťĘe l%[ę=ĄŚŠł€éžt Š9ÚJ=ÜK0štyIMu Jš.č|Ś&q!žÝ/ŕĄ1ŸňöK-žo!Ź1A‰kˆ•MDŇo‚çžş`‘ľ ˜ÁmqĄMçËl͓ 0ŃR‹Ź3óDcރ]›J<Ędľ]ޕ٥"§ á´[̖1č6#)ÜjF+¨g˝ĺĄýmj\ďB.`05|` ÉLv8LťÖúśŃě)€łt'Ý@z.#äË&ťœóýń1šÔśůCŰuCĚĂčË =4P\ÚśxÖ<Ţś‰˜ ’ňĽ^Ž—ĘuŁqAÄŤ9}a‹)Ä´`¨˘¨PFuB!kŰ_ŇĎĆÓ×cÇH{ĚvÇqÚĽ~*%ŕD=Ö*ŇŢēFw즶ٕZTŕ‡ëâ)e^5ĺAn‚-`4-ü¸@>Ž WtˆĺNŸ/6ó}Wéx8đ%ßw‹Íüô]ť] ’"ĽĂĄŚţş˜ÓSAźe7YÚşúhoŐé3ßü8ž~g LrĄoßł6ŘađöPҏŇ…‚/‰f_ Dp§ZŠ^ú$‡dş/ř}űËKôm>ěrjŽŹqÝ&Čű$Hp“Ť€“Ľže¤ę—×:Ë^^•ŮÉźÎN9řL„*÷ö‘ŠéA“ďëR^b¨“Ţ/śĂůÁ3 †mF0ŕ Ş+,R\†žPƒ1I;OÏąáí:đpsm‡ƒÇ§eQŻäZ'hȇřĺ ťdŠ­W˘ë_hŮÇĄí;Y1‚Ąď]ŻŚ,áĚwꆠ­Ł-hłď.Üé ‡‚'jłČźPpv(‘€e—EZŢáGaî$řĄJ=–ˆqˇŠ“IZÁ1´kĎvĄźkçsdłýPÔĹś§Čß5íÇĄ§šuƒŞ% 1Ňv)›§˙wôĂ endstream endobj 157 0 obj << /Type /Page /Contents 158 0 R /Resources 156 0 R /MediaBox [0 0 612 792] /Parent 152 0 R /Annots [ 153 0 R 154 0 R 155 0 R ] >> endobj 153 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [207.939 535.44 398.515 546.349] /A << /S /GoTo /D (Direct\040Conversion) >> >> endobj 154 0 obj << /Type /Annot /Border [0 0 0] /Rect [137.388 431.591 377.931 441.591] /Subtype /Link /A << /S /URI /URI (http://sourceforge.net/projects/stixfonts/) >> >> endobj 155 0 obj << /Type /Annot /Border [0 0 0] /Rect [111.6 349.072 409.415 359.072] /Subtype /Link /A << /S /URI /URI (http://sites.google.com/site/olegueret/stixfonts-ttf) >> >> endobj 159 0 obj << /D [157 0 R /XYZ 90 720 null] >> endobj 136 0 obj << /D [157 0 R /XYZ 90 720 null] >> endobj 160 0 obj << /D [157 0 R /XYZ 90 335.238 null] >> endobj 161 0 obj << /D [157 0 R /XYZ 90 215.648 null] >> endobj 162 0 obj << /D [157 0 R /XYZ 90 126.297 null] >> endobj 156 0 obj << /Font << /F55 9 0 R /F76 7 0 R /F56 25 0 R /F82 8 0 R /F64 14 0 R >> /ProcSet [ /PDF /Text ] >> endobj 169 0 obj << /Length 2180 /Filter /FlateDecode >> stream xÚ­XmŰČ ţžżBȗČŔZ§yŃŰ}KÓ¤š"—¤YُbłŔÍÚ˛-Ź,ů$ůœíŻ/9äȒWٗśX`=šápHůá…đ'ź,ôĽ‚L§ŢrwÚŮfăŃŕëß.Ó́p> üËââ§÷Qä‰0ČÂLx‹őŐbĺ]űoˇfßĺÍlŽ”ňőĎłšÖ‘˙~–j?7ÝĄÉŰŮ\fI–ú"›Ý,ţ~ńnџIůLąň šD¨aU{qŞĄ4 ÷ŻYŞüúB…™ż›ÉÄ?̄" żŁIą‚‘ýn[´4W …˘ÉcŃmÝrŽňĂąńčŘ( 2‘˜öŔop4“¤‹‚D&Žho6yŰÍdęߗĚ4ÖCj­‚8ëÉ×Ó 5L0EžŰť)f22ŰL1¤rËzˇ3Պ´.*6ho'>ŇţT÷§q‡ÂÄĂL‹ÂÄüDľ@*/Â؛Ë@9z×O o0ý wŁËœ¤*Ö4wĘĂ5ăžšJ8@ÁoD{Wuő.\Áž#Қ ˙ó ^Ge}c‡łˇŕ°ŠŸ7mĚUě/Pu¤ŰćfUT›–žŹ‰šX~ꈎ›€XÂGQ­ÇŮ= łj‹2'Ę{š)6UÝäĚň–.ӎŤ?ށU.d­œ­h"ńííńĚş-V– ĚÖűލ+ڍů÷nŹd‰čEnźŞ­Ľ–‡ërňi:ž™:)‘é˙í eiږŮ7´¸:,óö¤" `CÝţěa„ŠđzČC$„„ˆŐؖ_*ď ÇşúĘ+ëhŸę.缭éÜ(oí¤ö×=ÖáB“˙q(Śńý'~€kŃľŔC@ú'`% ŢKÔ.ZŚAšąpir6bé@wşßŁ‚Ŕ¨4]ţ}Ę~č( ¤Ěh˙Üa˝švŘłŰÞfë†5*XŇ4›Üz&čvŰ8cĐâ@}"ŘŐî^.iĺöĐŃʲŚůÂţœ}Ź/ÂrąĂۃ•?-rqA0>ąb+ţçnÝÖŤcá_-‘zËąÜüűÎzţÂmM4[ÓŇ`ŮŔ͸$1 ĐëČ$‰oăłÁH5ŁuâĐ˙Ő4w‡=Ń4Őć(ńŠ>Ű‚e°ŸŸeh#2/‹Ž#hEœBgŰËŕnE>đĹHgÁȔ%E}Kß÷Vż“Őô{hyß$$‹( $¤Ap°0{(;˛'Qů ”‡2í›|Ď NŕÎ ›SpýĂâ׏Á+˙šß6DCiűűng–-Ű2NŹ Cl/ qáéőŚ1;ú ĚŁ˘Ł_+$ü˛W’Ó5nŃú †JtJ:C6VüGö,­ü0¸u~†őmgŠ ŻZM1ŤdQú"žßOLOę@ •7Aé0úE~ţĐ"TŚ|EÓĽá"Ťä„Œ`%ăQXArE—łĽ¤ű<¸âĚĹ+œ””żŽ†rÚ`Í8{qĹó5_süĄ1ąh} Ë/6…mň†XëŢ_6M˜aS>äŽf𼭞÷úp/ž‡÷rÖÎؔk›;řD„Ĺ_.'Úś¸E´Ä)DKü=6…uŽ(öŸ.@Á,aörçžčxD¤IöüöÉTäiŽ`sS"Huúh˙4âv]vßo&ĹĘ=%Vŕă(yĐÖÉĄ)žëő%ŚĄQńbďÇ5*œÁÚźką‰ážvą´ Řkç–iX4FÁÇÝR<Ë+Ĺĺ”ňTdŞsÝaŤMřüôyƒžŢM¸ŢMˇüHd v0=Ţ qQ-sZ#L9î§ Ň+ijłËéő‰˛Ľ˛öX1óž;3}—Ž‘ jŒ1Ż)6[טĘ`ë—řGŽŞ'˛>>>$ię鏾ţă ÓQĎäS)gLžň¤„T×.Ď폨\­ˆRűÍ)'–őށ7ŹŐH$< i™îšz9ę'ô:gʅeuAžčĘNľ|îĄÁ~lO)<66` Ś•qxßdC,’0ˆOČ,דÁ,ă ҲÇG[r,ÖŇ׀öPcóëüˆ=›Z8GՓnëŽÝTH€­hä§5ˆ%0ÝaÝ|ż.#Ÿę›ą!j8EŻĂéÔxŹ}ěMŤAęݞ:Rŕ5 ~§W“׏śĐ˛oĄľĐođ°/łLăH%‘ej†Gši†›+čwéü7_luÎRá÷”×˝…´#űę ĺŤKž|Ű*ŒŔ-bOe€ŽâŠpÔóůD œ3ő6śđ3Žďˇ”˙–/ôaGâňÁÓŽH•égJ﨟Ţ=ńŞ$ľ ž¤żb„”~ˆ>"\žßćß;ÁúÎtmWđťŕךş˛3ÍaU8ź2 OŢÎĎKáŕ݃žż…Q8xä×ăúĐMźěô,2zu„ÍŔGŕłxć/hZ"[ŤÓ Śí1pĆ␑f4ghĘ&ĂÄ5áýł\Ö͊LTÄ wčKújňĘXW @ĽŸzŸśĺ6N4˛ŁÇmt‹?N) ŕ$ÖĘSTBáM_ß„Ţ M ďh)wž d‚ŇĽwuńIw°ŽÁ U”ppśĘ,!8'˝Óށ6ŤCmXiˇĺô>uŽ/>mŃ5Ą™S ÂŽ;&K …ăHţ?jól˛ ĘÎĘ Ŕ™ý? ÂS¤ endstream endobj 168 0 obj << /Type /Page /Contents 169 0 R /Resources 167 0 R /MediaBox [0 0 612 792] /Parent 152 0 R /Annots [ 164 0 R 165 0 R 166 0 R ] >> endobj 164 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [221.07 538.344 439.611 549.253] /A << /S /GoTo /D (Obtaining\040LaTeX2RTF) >> >> endobj 165 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [159.788 469.602 416.818 480.511] /A << /S /GoTo /D (LaTeX2RTF\040under\040Development) >> >> endobj 166 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [305.606 392.291 518.394 403.201] /A << /S /GoTo /D (Citation\040Commands) >> >> endobj 170 0 obj << /D [168 0 R /XYZ 90 720 null] >> endobj 171 0 obj << /D [168 0 R /XYZ 90 630.606 null] >> endobj 172 0 obj << /D [168 0 R /XYZ 90 428.962 null] >> endobj 167 0 obj << /Font << /F55 9 0 R /F56 25 0 R /F64 14 0 R /F82 8 0 R /F76 7 0 R >> /ProcSet [ /PDF /Text ] >> endobj 177 0 obj << /Length 49 /Filter /FlateDecode >> stream xÚ3T0BCKscc=K …ä\.°hQş„äÎeUgbl¤ą*OS endstream endobj 176 0 obj << /Type /Page /Contents 177 0 R /Resources 175 0 R /MediaBox [0 0 612 792] /Parent 152 0 R >> endobj 178 0 obj << /D [176 0 R /XYZ 90 720 null] >> endobj 175 0 obj << /ProcSet [ /PDF ] >> endobj 182 0 obj << /Length 2838 /Filter /FlateDecode >> stream xÚÍkoŰČń{~…žX,—ťËGűéz—;¤čĺŠÄE[$J“+‹ˆLŞ$e_pč6"iŞqĐĆ80w‡łł3ťóŚÔ*„?ľĘÂU˘u™tUÜ˝ ÚŢŽxđćÇJ𶀸aţńúĹď~°vĽÂ 3ľşŢ­ŹR=ÖušzˇŽÔćĂőŸ^źź(Ů(z█ůhĎ$^Š$ˆ”5¸'p§&PÚđvvłľq´ţŽŠß‡ĘÜžÚźŻšYŕ•&Đ&Žp%ˆcâŔ&VŠ—žŞ§~łŐ‰]ŰŃşp]WŐˇLe*3PQY "‘öçzł’ˆWFé°€z]1e|˙gŚ•FcZ* ƒÄ$+˜0czůҞ6°Ą]#Ú*Âxľ@BżŔj5˙=złIőúúćŞí„ąbłUk80ŕý˙šśďřMżw,Ć2ď‘Ţł'ńn.đŽ.0?᝙éÍ#Ž×ލňsV ÇűźÍ‹Ţľ]°ŮšČŹ_íäôEBW͉D$ÚdŮ4HáäˇJĘ*ŢŞŠA`šułĂ§ĺ@@×çu™ˇ%ĎřČîîśQČâânř˛’y1=SW šg¤Î‡O›ÔʁëŘŚÄ5ŽĎýrŚ?ĄY7˛ÉÇşA2ľđِTĄˆĂŇ,ŢZ¤0ř úvAÝtÓÉĐłăç ~:Lև†î´ů¸Á›-ăt”bÇ6žhž1˙ňneŐş˘ŠÝ˘šĆa+ăqéD‘2Ý,&œlĂĽźëŽ4}C–Ýyië˜y/QsęÁĐQ­Č’{˜¨Ý.Đâ„ÁT˛äaż-r¨S-X ]=<ĚžSJç„@<'BŞ=%YÝÁ‰ ^pzz‘΂,NŻş­›Ö]:= ~7‰<.hjÄŻ÷ž)<–ƒg¸.§ŇɛÜs-b€Eńád@1žžÍWUÔtQQÓÁˇčŘx[ëxÖďóžGeĂOş4ä °†ŁőˆŽ|ý<~Ú°h›ŽˆYŁj˝›ÝąZ×0 O"TŞz×´w˝x7Ä('{ŮőĄb €}ԕœibÍδi]k/Œ6ëZĆМ€¸C#ůÍA^űĹŐá@ą _÷ g~múRʉ-BofĐő'A‘˜řú"4'!•×<8unIUcÚ§ŸŚŠ1ĎZ˝cŸKŢÎŹo]/‡ŁQwüŽsîď'LlU˜:˛S9ţöí›×Ż^˙ř{Č ˘ÁYË쟻Śů†‡¤98sÇá–,Nš$ zN÷cÇÇ#‰`R6xßô<Ť$ŕ€˝Ĺ7Ź4U=YÜňěěúĽ”ôĺtç8Bą[ɑŕĽŮá†#ąl\2"=€gç˜_;Ű2/Ë ź›Ä+ŃYŻDŹëp)‹ŽAƒÍŤčkx5q Ł<Ýĺ•7 6؉Ţ÷ëŘti*˜9DzF-aQ[ݜŕÂč$Zhđ‡s#ůMDî( ×yQ¸#Ľƒ™Z˙ľŽ~šÂaśţéíöűŸß^1œTąĘ ÉnšnĎďŕ̏ĺJœĂtˆ´BÝć’őieƒL+o×ď!í_;‰T_-f &,úBí3öIOăç|NKńÂq’<…ŕŕÝZtţ˘?źżĄ+YŇ5g7V4e)Fň0đV­ľěxÂN1ô&´rg‚;c­húďʍ‹Á¤ů}ŘWœ”ótلĂ,ˆĄ~ű?”˙=źóP‰€šČ .űX\éÍ*Ů4ž9y:Fg 2’,űúŽˆYR­$g„’|âű3ç{‰îšáŹŐŐ<ĺë.yéCŮ&s~<`Ra˘!Äď7üt[^]ل "¤5ގżs=^ŠŐœäޝ*Y™Ę~CٞIbđÉJöąăŠ0ű(÷ˆ ĚLÜĹ1/>ćˇî]єîƒżRyŐ志˜Uą ŹÍ†*Ĺá ÖýŔqZEőuÍ<|B†0¨ăä|ť Ĺtź Rxmř)ůČl’ 6“˛í3Őç R§‘7jw ƒ…Šş)F8ňÝ'*KÓ8×MŁ3ŐcŰHŢúmÎ5 âÉđ téV͛Ax’Ř•‹S™ůLCČcoGč ¨9Q:‰ˇR_&ĐĚÖ;n÷°ŐĄ>VЗľ œß‡+ä"Œ”K¤Ň0HlşŇY„FF"˝Ą/H4'ĘjčýţźľľÍąĹőśĎ۞VrâA`´hÉIőzÎô YQđ›Â]Ť|~Žž3_Žîšcó‰wŽßs÷Ąô5yËŞq’uß6PÁ–=ĂŕFEźŰ0ąŸĂVŤ4 Œžő–ş='ĎF’gœŒ‡n@ă Í7¨ůtôX cQŮ∠.v0§,zƢ—ďÎ×Ĺşv`á§`<Îń‘@`XŹR ĹQ4–ţs,%i`âŘŻ8Gý8•ş˙‚§ŽQ˝ŇŻßż§FB*Ť"`+ĺ ŞÎœcvÉ#逥’ N2őEm˜ŃŹ ÖSŤ^I‹ü‘Ž¸Ĺ‘Ą†F”Š¤>Ť¤÷ÎHśtťütŔf‰^^ł™aÎ`.´/R¨÷ÓçlŔ5˙ć@0:Ř%„ą ă/T@• +(Ÿ„ ÄĘĺôۓŁSŃž † łY&úq(˛!”žÝ ƒ8Žš‡É#źNůg~ŕŞŽŽ¤óX˛°Č;Ü5s[Ž˘ŔyjÓçLVˆwpÔÔü{Äos‡Éţ݅N ŸtÎ×rQsÉ/Ćçžô  .Kć-˛lušźî¤­+ÝăY#učŰúě‡/ Ÿ‚@üŔ“˛˘vy;Äj=‡ŞČš HÔ8J(bȨgˆdD+\ę¨<ęž.ińěkËĎÍ\Œ Ô˘pčł3œ65ŽnäI”Ł9auŢÜÉőĚßýďť.ˆ‚îŞĎG/)^7=…~1´Ľ–~+ý2—öüՍ!îŔBDŠ’~rű‘áXTp&˘0@"H>aýӊQ`E Đ?jŹ#–Âߐ†C$]'Ł™%n\F#"ŐEř D<#BP9ŔĺLٸ"_rú.ÝŃg/€űďn„ΐ˙Š:*„+˝’o]ƒ}€żSso‰Ú-ľgć|L8ă/zs%ÂVÖÁá%Lűř;)o§œŒ~!Pś˘űŞmj˛(Hœą“)łţţä‰4ňÜ ŕÎqՓ×ň7ĹoN\ľdášjńrß/6ŕ˘çěűNq9ŕ¤*HÙß{ôť ­)î(r=>-đ?Ý5öŮdŔqUwn Ŕ žJ•`7ü˘8—çWt°đ>;{­žŮť\oÇÍyţ(Íäi~. €/JP¨ÝĀłňŕ잾·{g„pŠâë°ĘLÄďĂϝ\'].ü6^Ì?Ě> endobj 179 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [435.775 408.466 522 419.376] /A << /S /GoTo /D (Input\040Encoding) >> >> endobj 185 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [90 395.316 180.758 406.225] /A << /S /GoTo /D (Input\040Encoding) >> >> endobj 183 0 obj << /D [181 0 R /XYZ 90 720 null] >> endobj 97 0 obj << /D [181 0 R /XYZ 90 720 null] >> endobj 184 0 obj << /D [181 0 R /XYZ 90 651.148 null] >> endobj 186 0 obj << /D [181 0 R /XYZ 90 380.906 null] >> endobj 180 0 obj << /Font << /F55 9 0 R /F76 7 0 R /F82 8 0 R /F56 25 0 R >> /ProcSet [ /PDF /Text ] >> endobj 189 0 obj << /Length 2946 /Filter /FlateDecode >> stream xÚľiŰĆőť…Т0ľX1œƒWż9]¸HęÂŮ šĺJ”Äš"U^/šü÷žk(Q;kŻ›vfßĚźkŢ%ŤE˙Ô"Š1anłĹúđ,"hˇ[đäퟟ)Á[âę óë›g_˝Šă…ŠÂ<ĘŐâf{~ÔÍfń÷@ëĺ?nţ˛0™­śp Aż-n–™ Ɵt7láٲé–Xë'’ƒ˜Ÿ GEžÚE’ŮP+×ă•_˝Ęô9Ś3˜¨Đ*F*i~\Fą]ŹNX7Ä^F ĐŁCăř~9ÁgПô[äűćŐreUź_ę4(ťžj›ž!*ĚCă< †–G‚e<ßFö%CŠŰŞŽ†ĽÎ‚űůś}ľ)wÝ6xŃP6ˆ6ôü}ŰľţŁ0ů>A ą_ ČCÍ´܎}_ŮHĂŃh@ŒS~8.W@xŰ#?™Fޑr$ń /¨ńÜ Qţ$Ú% šŸ…üĄN”[§ ˜÷CŃ Ułcb ÖU#|ÜUĂ^(Jf6çalľ{,¨‹Ąü€/ĺ>úXž;äpšĘrÜ쫞/Yˇ$źťÉ+zŚhßv+–ťŃđˆ”ˆ]4ŮUˇ52bMpŰľďpcŮ\ UAŃlř ˜Œöě\vĺĄE‹{O{6@SšZ ŠdÜž8”Œ¸›őÖ_œ™0 TKô<íĘbS92Š5"퍒ސ0ö,b˜âŤđ4š3ö38‚jKRZq@—RMł0š„z(ů⢊úCˆWĹÁŤefƒś[ތą`˘ĹáX—׸b*hŇÖţ~(‡=ę! PÔu‹GŢą„|DŻljŇIš,{h ŕţbQ4ÎŘŽpvWŐ5ĎÚE‡łâx,‹ŽçUĂ#ŃI[ÝĄ˛kŽăpí Ę1Łç‚DMďlŠe–wĺ0‚Ó6‚nÉË}LżŻÚNäľ)Ž”mĘÇނÍb§‰ĎV*^2öŢóW,?Uů\Ěžk.­č$ůuťA:Čąk×eߣ…ÎŐp{)qĎÉxűśbjS Ö‚łI4S›…ŕ5XF"Ţ1 ™čŕÍrĽŇ0 ĎíŐ2­t‡b ä^ ĄE ÓoŔ,Ź6Á]W‰Ó‚…ł˛yŻ›UQ&ö‹řŮÇÜŹF;kĘ„Řó’ĂĄÖAËążM<ô÷ý@çň}]ĄÍ­(.feł™ś­ĺŖě"•JĂLeŞŠâČgV6Ô'Žúl|"“‹ăĐZ”’?4ՇkďĄY¨’ŮŠÝŁGƒĄD*˝<ú›7ßó—MňŕÇ Ţ‡ Č[ßőŔUǑŽEPôeřî ť}Ĺ.‘—$a´żŻý <ĺÄę˙ƒĄ|"§8ł”$›"ÇšüW¤çJ\ˇ‡cUSœ˛V/ŔŚ ČƒÝU 1š–ýžɟëÄy2ţP—ť˘ć)ć#8D3\LÔŕΡ$Ś…JłŽÁě-š+űąfӽ؋ߚÓ>Œ‘KH;w%ĚYÓ3×ˋLß@HƒcwŇ Š晇˙xÂüImÚG´ůš)ł:ůQňť×Ě Â[âŠăEÁĂÝž­KžÖޖG@ËŐ,y֊B#Ž{‰Î×Ö|#œÝ‰§AŃuEÓŁ+ß\Kž4Ę5•äłŘW3•l8ĂăLlOtă˘oeˆď/‘č‚@ĽC_plˇíŘMťlí”Űűź‰w’g‰s›Ş+×C¸ŢzCEœ†:\×;%`6“ĂŠvMەżń´ĚalŰfč=LA˛ĎƒÜ ü_žÎŸ9Ś>9¨PŤ‰˜şhvcą{”ô$ƒŞ(=Ëś1I…Ěś—lGlĹ˝´NŔbśëńPJ-&i iî˛8Ň0Śž r~é+,>°"ڕǺX—ŠżŮÍŽ´AÂěĚ9p‰H(ŠŚŕpČĽ¤(žęŠzǰ´e(Ś.˘r’€ü˘J!Ą†‡úĹËbĄY`y1ŔQ™ŕUtiđœh/´oŰSi$5ĹbçŁ3żQĺI˜hs™™Ł ÖĄ=9ZĄČpä§ŚŹ¤}Y3UÍ †ţÓ[Ej›<€Wvg>â9FŒî‹ŽXäîÄuÎNánÇü{5Ll{Aô)#¨źI>mĎ{ŹĂ5ÎPET& sQăS— GŠ¤ <á NŠaâoŽŔ!Ę|‰wŮ ˜Mpś9¸ĹoĹâ~Ö_É'ËĘŮţżţbČÍOI÷?a+܍îB~žxł%d#˃;ŃcÖđćŸ˛N?턿ó•—Ńeasaůšň WXNyć'z̒šgŠ&MN?­‘YUzĘ&؛fÎT&Ő¤J]<ç*>Lý#Y‘™R%ž?čă)ë–*2âUń 9+‘v͉1ŸÄî;Š V—9 Ri3pŒëv×Těc@%‹}¤’˲0˲ßԀ{b!‡$ź_ĆřŘŞâś.)ÚÄůĘĎó%FŽäTsŠöČ/‡ˆƒÍ.™šŞćçő♈Á뼀—#2D/jžy :óSĹɔă‚"$N8fŘř˛Ó€,!˜<;@X˝kœĹĚöbj)בŚă:l€ ×›.çFŐ÷q] o° ƒr3g‰ěLšâ?c4ĹQBe~ŞqÎrlœ +â#ç"Çâá Ąd™f\Oáě–xĺ2ő)W§§ÓO˜Œ)u:‘€jô8Ôé'šé'BîkJFĆ ˛üóžŘɤj<ěp§[Ú1%ś*O?Łx—TýoxE ş›n?Ń,Í\i÷qši:}_é'Ö{ýᝯ_žőŃdŔ'ö,ĽWqjOďäE&<ĘŽZŸËŤK÷ßkţ č÷ endstream endobj 188 0 obj << /Type /Page /Contents 189 0 R /Resources 187 0 R /MediaBox [0 0 612 792] /Parent 152 0 R >> endobj 190 0 obj << /D [188 0 R /XYZ 90 720 null] >> endobj 191 0 obj << /D [188 0 R /XYZ 90 555.978 null] >> endobj 163 0 obj << /D [188 0 R /XYZ 90 423.927 null] >> endobj 96 0 obj << /D [188 0 R /XYZ 90 187.372 null] >> endobj 187 0 obj << /Font << /F55 9 0 R /F82 8 0 R /F56 25 0 R /F76 7 0 R >> /ProcSet [ /PDF /Text ] >> endobj 194 0 obj << /Length 2677 /Filter /FlateDecode >> stream xÚľZëoŰ8˙޿¸ýPˆy˘HęąŔ~ČĽiŻ{MZ$žp{Ŕ*–l ŐÐäŚAw˙÷›á˛äĽŻÎîů rD“óüÍ >óáĎ ÁĎVŐ _SŰ͌wo^płn Ł•YžřókĽfÜg‰ŸđŮr=Ţj™Íţí]mÓ]Ÿˇó…ÂSßĎR*慠ňšÜěŰ´/šzž" /ó˙,|q˝TAp&g¸ň묅ąd\Hbíg< …ăE‚ůvÔ nŽ/ď˙~wm–Mö’>ÑYřržŕžLźzDŢžĘŰbEšŤĐKË}ŽSé=ý–^Ź›˛lćA ¤zC¤}]ô´ŹYĽĘÓnßćxţl!ăŔS$gJđ~ů×ë;˙AĚBŽř¸ď{Ŝ{›şióˆĽ—ÖČâSż%&ÁD}cžŰœhÇśëi˛Bůˇ°IÚŚ îő0ÎqĐ҂tMžC'ďH)¤˛|ýŕb]ą(ˆGœë}ëŒ뜊Ű|Ě´ôęüła´ŰĽŤœ‘bŁŃ‡§â´oÎ6ěÂÉ!Şw0üOŕL]Ţ?4Ÿqô~üŸ[˜ť8_Ä>hÝŘđ\'źzssyűę|', ÁąNʀ7F@q˛ŔEÄDŽ=eŒhl ؏ŒGcŕĄĆ@¤óšń 4ţŢjž^Ż,mmˇBöÁŒ÷°7Œ§d@ŽYN Xćý;'ŠřA0–ąÎĆtڐű ‹ŕGĎ2âýŰŰ7ďœ@"$ĄŰPErdC€ƒ$/seŐTéĺÂČbłnńxč3Ąâ‰|MQgyÝťEK˘ƒhgċ˻˛ëĽggęĎ/ľÁŕǁšZk$/3‰=ő€œMmŔt Sĺ_7rŔK&ťnš/iűŤS A$˜zfŒ~¸źúŰĺ›g$Š >öPâsČÜkzďZ ˆlÁ€”ž÷Ď9][ŰPŔWUŢué&§Śžpá%Ć=p…ŕŒ˜ă Κ˝Đ^ž]5J œqÉdtˆ'u0ŃěÇ2ĎX.ŒB˜K#ŕd" Ƙ֛8źó,‚oN|yßĺăAţ/ć\§E9ˆŁ¤œúŕBđ„‰zžŻo˙quóęaŹáŤĎ!äŔƒ$Ńč‡OkĺĘĚ˝Ž¨ŤĆX…†Š`ˆĎ}ýąŚšĄ&Bގ˙T´č>uĽá€~IďSłAa6( ý×h@ÖŹ”ia6|G˘ĹÁD´0dgœIß`BęNžÂ°>,[jU‡ĚA͐×MIx=ůlDţׅąL‰că~‡tLŽňóyI9ŻA-M}Asű!‡ŹqM t–0 §žżÄěľnPaaěťYP ¤pâžůڍżF~%î{JşŕăÄdvxďňÜğzŽ>^[ŻŮ—MIh˘\‚ Üçf x•:D1Ž"™zɰ2—Ţ+ LőKĂ(×~4qZÓÓé)VŠoâ)G îᖯm­…ít#CRgžŠŠwFďI-”O02Wĺ>+L7öW‚IS˘âaůłÁáíÝűۛëŰĽKčPšZ̤˜8ů€Jš ŠřěˇiO#zŻ}¨"<čĎš2xއ”=qš;| K‹h?ĹzŰWĺĹH&vśţiaLšę÷dŠ:ţdĐŘ×.Ž˘„ůqň?ӋqxSýKEčv LKAĎşüÜi¨Ö?—>¤`óRÇö;ł Ľů*í̊üsşęË'󻎈)EŹFrň]Œ˝PčŘÅśĐ{Ű­tÇҙ•ďŠÚrÓőiۛ2ʤd¨%4Ärâf_uäďÎęşÄ×Ú= ˇ6ë?cÔţ_Ža]?^HÍŔ)xçčNţ`SvV#‚%á§š6˸ŔŘď&LBB<‚mÂKĐľáűúsZíĘü{đĄÔM@ՁđytŘ(e^oú텹P0€×y„„bHž1ƒ¤…Db~ŹXA ć~=O$$řš0ł‹čˇ(…řc zŁ‘K‘Żö2wú´Q|ĆuS÷[­7NmC…ęśXuDG‡ôö´u3$aâŐiečUşŰAPą xŢ´ô*'-_`”€Ŕۢ›0Ž7ʰîŻ( đÝ#âĄvř<9‰§Čs`B›ÝŔ„V6Ímž—Q.gäńŘŐĐÂmĺźbń!×!łÂ ˇ(Ŕyg“Đ‘÷OňÉk3ŔTčóŠw]ÂB¨ÚĐCAžN˙]Ńa˛ŚnDjJӃHŚ@:rwJ#Ý­“Ňĺ)ţ,úZ,2%jFÔ}‡aE„ސČ:™?C@ĐŽí9˘ă ÷ăĐ @ŹČY€PĽPY–`nYÂqJKÝĐ`7?ş $ŔĐŢmC›ZĂ^j/‰%ý“ŔrŻNXR ‡˙K&nK&K‹Ł˜Ž1Śđvą,­ţLՊƒăŞÉśj>TcÁQMN1ăcĆăSaö¸Ík†˘ÍŠ×íľ…}SŃúÁaCˇö Źaô‡´ÇĎŠm‰ű 0ńvMÄJß.ŁűbWnű6­ťRgAśÖź˛u §d `Ě[ž˝lt‘ !Ŕx ˘}nŒŇ™ĘjU FôU…đĄvŞuQĺŰ[DîĄágči ĺľ…wŠhö°Ž~J ďYđá֑‚r]Şoߤ)s+bjÄ2jěÔôSÖ)K˙ruTěFPSŕG„ć"1Ą´LóŒ:5&&Ąă Ë×éžěibÉ¨Í 'ţ(&G‹:𖐠ěîš}˝ťf?1ěS‰ÓÇÂn9aÓţ.7ńä8öPçčRhäkŰ<Ít­J„ź›Ć‰°ó ˛)Ą†’ˆŁ’;žéŔ(Ľ]N|؈Yr¸jţîŹöœ” ćíḨV"„˘zXAĆ OVÓ1S‡n”Q훸˘ŁĎ$Ööèžr”×–×ň¨ź6ˇŽşUW8K]âĺ$˝,3|D6ÓdTg H&‹ęuDéö4Eż7mŃNöwă@A>Ožůq˛Śë#Ő/–ŘƒŚPž0}=éDń ‘ł)ôC8 Š#>ÔĂEíl˘ń'ĂŹhóUŞ?ýqĂö‹šŒéĚÍ}Jól_UśŒŞSß1vç¨m~VbâżsS0'eAľŢřĘ ŁĘŕŒ§Ÿoí`ÄY˜L˝ůü$.nRĐ Rö*-‡Śě˜ű{ $JN÷¸I-oćžţ<Œ_ĎA‰úVČZÓH5}~LiŃ^ôz,đ ĺÖ}˜˘p›°Jíúžś š}şŸl¨ô†ÝŃ2`óĆŠ[‰q–6ŐÁ7Ëhx×Ti}Ş%ăÓO<GŒÇĂ:,&¤ôîËÔ\ľeÎďŠ%á¤Ýëʓ{Ç{§ľč>o‹ľóâ8ŇÎăý×gďżÔńcRöc[` pœ hĹřŒž?ű  A‚+č:ŠM›îśĹĘéňBI0çŃwX< üÜŮ żšŐÁ˙ýř/֐t' endstream endobj 193 0 obj << /Type /Page /Contents 194 0 R /Resources 192 0 R /MediaBox [0 0 612 792] /Parent 196 0 R >> endobj 195 0 obj << /D [193 0 R /XYZ 90 720 null] >> endobj 95 0 obj << /D [193 0 R /XYZ 90 324.955 null] >> endobj 192 0 obj << /Font << /F55 9 0 R /F56 25 0 R /F82 8 0 R /F76 7 0 R >> /ProcSet [ /PDF /Text ] >> endobj 199 0 obj << /Length 754 /Filter /FlateDecode >> stream xÚľUKoŰ0 žçWťDjM’%?ŽÚnCCáCu@ľDqź*v`;KűďGšJëuІąHńńń#ĹĘHŔŸŒ eI GËíLŒÚފčps5“Á.Ăxby^ÎŢ_IÁ QȨ\OC•Ťč+Szń­ü%šâZiˆ2jŻmšČćnU7ŹŃ`vQ>g1J˝Zţ'K#Šy˘Sđ¤šć2єŮđl›TąëE,™]HÖT{[šEœd†}h›;!uľďěPˇ "{] 0 .U¨ŻÜ ŤĐ ýźťFôđ#ƒk:u5 päGźĽĚ|šŽN%Ę/ÖK@Łr6t­§|%N@e›ŢŢńŚ]ÓĹ5EÍŐ4ŞTšgZG’kQPh{*ťáńÄŹ™r‘Fą~/ę‰övŢZ€ůíV@ôoąĘŘĘ­ŢŃ}źn*ÝŘ­ëů3V)„-EÂĽ™đ­ÉúÁ6+ ’8]+0XäٛJŐ)UR­ĹÉZƒööôä]OňƢüސŰm8á°<ş e=xGe`őČRO˘Ż&î÷_P°Ý0?…IŮ=z3ÚŻ]皥›“[ۇóúť‰ËBp /‚¨”źnŤÎî6#ě9>Se<%ĚîvcŤœí(Şę†Œ.šĘ×ý†L†ß+×mmóť!Í(í‡Ý~ óĄ6dörÝŐUÝXOQÖő0=śăŽŸŢţɞ+žĂáOˇşÁőU^†A5°ŰŢwˆ÷ Ť5’Ő=}÷Íą™ţ‰4j#ŘÓxn÷¤>ÔÚęIhÜČ=Zˇô]vÎŽÎöht8ľměE)ô?Źcž­i›q˜Ł"c[~Ł( :Ăô†ýŘ÷ĄV;gíą’(ÁSńjćÚhiƒE$a[%Ça€ƒ{ŹűöAr\Ť=]Á‹§Ăşő>€­žwv\× p­Ăr†űu Ă2×!éÇ^Ŕ}_owXnřOô  ˆž† endstream endobj 198 0 obj << /Type /Page /Contents 199 0 R /Resources 197 0 R /MediaBox [0 0 612 792] /Parent 196 0 R >> endobj 200 0 obj << /D [198 0 R /XYZ 90 720 null] >> endobj 111 0 obj << /D [198 0 R /XYZ 90 720 null] >> endobj 197 0 obj << /Font << /F55 9 0 R /F76 7 0 R /F56 25 0 R /F82 8 0 R >> /ProcSet [ /PDF /Text ] >> endobj 205 0 obj << /Length 2396 /Filter /FlateDecode >> stream xÚľ]oäśńý~Ţy8đ˛$Eę#r/@s)Š;Iq ňŠť+T+’öœE›˙ŢÎPŤ•ĺłƒŚgœE‡äĚpž­V~Ô*—Ť4ŽEn˛ŐćđJzhˇ[ŃŕýwŻă­q=Á|sűęo­]))r™ŤŐíve•8 Xˇĺęc¤íŐϡyus;ždľ~ᕈůčÎ4YŠThe Ţ T%™*6t]rľś‰ŽnŽÖ*ęşśťZÇŠ‰~p8ďŻŕąs=mT4% Ţľť]ŐěÎ9KŔłÎ€)>ýܚĽQ?ƒ+i\5ř͢aÇ;ëîŽt&ĄťÍPľÍőŐÚH˝Ł‹2=˝HeRd1Ü-ŒĚé˛b‰ +$0žž Ý"Ú*2‰i†ßŒđŐú“~•ĹŃí[˘ěžkŻt}ŽJÇŹô9¸˘é™ą–@›śAÜĄkk {Ç{í‘Öük•ƒĚ€ e]Ün{mŁň,œVÍśíŠ ‰ąkť}˜;–Cr)ŻL¤*†ň§ŻËŻ–¤Ľ•Č@‡Š¨† ’šWëTŤč͉ˆ8ö#=Ĺ•ITťĎ¸ĎŐ´x1ř˘&N¸Ř‰y ÷[xÉ î7j‰LŁpy9K|7 ¸ýÄë l<Ě˙. ĂŘx1~öłŹLŠ2ÎQ™Ô3şd˝.Šš*‘&esMRŤ ř'˘eÓdJ@ÎŚ8öŽÉ&őđ<śwľ;ЄQ§<ÔUă–"¨PćmœĽČB 7Š˘CâUÎOďźŔMśđ* ˜mϝ˜4ú5żčx֞–ř49ňţ`׳“đŸŮ‡ű#_†ß~(aă쨝+Âk"ňR Jˇ-Ž5žĄ50Ý{b@Ť†`^b8SëŰÚŃęCՔ-ú€j+óčvďNŒW4„sf +Ť\݉\@*húI*S3ę'pœ5ř˛_t7lEÝîţÎó*šŔDqOw5ĺŮg^˜ŚAů‚Íé?]ż¤†Y.Źąaƒ÷6qĚÚ›‰~UE°†-lŠ’ ĽY'˙šDДžˇĹPÔtż9Ţ1žůy Ćq2đšnˇV¤y|)x§jÜ™Ć{ü€Ąđ%ĆLőíąŰ0ň† ˜[›LF{wü͇Bí(´¨en Ćł×8ĚŁ Pś„=xýŔő˛ĽoÓň†‚Żč.Ţ6Đ?=n‡ë6ǃkPöӈôIZŮ;7î:ľđš+kŒČlúL|gäő{!­˜éIý@•HɄ!z?žwŁ€(řđÍq×˙|M˜÷đČ4ŇůœrOƒ˝Œô€ý íóC=ń :ĹJ'|ĚoR⛠šń57ĹĚeڎ:VĎ,ş~@k/źÉŁŰS 'äPź˘áœ<“2čËw]q`,ďóJ^ Á˙ă˜}Á[° |ąž6xGďW Rlm‚7ŕöŘÁÝ’˙á,„öt=ĺ YB19K˜RT ůk’ÇÓĘĽ† ‡d݃ĽÖő)ěŠzŢÄ_Ď G6`źmuŚ!u3/JÝěŠŰ‹âí9u3™ĹLb` z$壌k߲ą× #Č*ę ˆoË!fŤŚVG^žÇ.Ýykrě%}öťşbăÓE“Ď0çÝË"˛R¨Äüţ É<ńމ›ä˘Č!úmöő#% Ď[Řečb‹áĘÔÎ<+fšxž Éâ5ÍČhä:GĂŞ§o߲¤őŻŰžqˇ]Ë<ńP›™üŞ/ž(/ÔE}ÁĚ´ô5 ąĚ,9­Ó엒Lhmf5ç\:ScÖÖ틞€$ uŽşjĂ.×PDă&ăŠh4!?q$p=Ć\PóÚ~ ĂPŃq¨ëů|r‘œ;.šĽ˘ &řNüݘ‹‚—ëýdbyY°ź˘,gFÔˇ1gXlścd.R¤MÖI*ŔA­ŹvMŰ9ąŮ.&_‰ÜKŰIAefůUˆ–Œú+˛ŠÜĚj0‹Ňƒş2G‡‘çÁ|A ˇUí^ č×p?T^˙a_Á0f}IŇHHćÝœĚý„ č X˙mBŃ´îń…Ľ•Ü2hŹL*R„SaHu+#ôląFĽ“>eŰp˜,áŚEˇ(•°vT&Ź>ťîŽíŤá4¸úß_ýş˜5Ë˝¸3K˙&Prxu›úF ŘňŠČĄ…ů]bëłn I…ÄB˘@Y¤ ôƒű=ŃlŠyb„-B#Ŕ÷S•ôË-ÔEˇű"Ďąijţ˙˝ )ÓDçe źo‹ŞŚ>ˆ¤hŔśŠO%rßPŽ[›_Z[€‹!ĺëčiĄ y‹Q!Ô^î—âp_ťë'Œ1ť0˜ą•€Ćśí ţđ#_c2°Ş(ŕßB•ł Âö×%—ÎwAÍłĄ7mé–N”‹Fą>ó\ËCĺE$ǔ‡™¨ďowxn˛ů9™|2mU‘]Oj¸îŁ…LB.Gw¨ę`ÂdëŸB&gďrÁş'î\Ÿ˘Fßz~™,TŤî>TDŔ(ZŔ nąű¨Ä>Ŕ}LÇÄš•ZĚâą‚˝’fS9 EőŔËÉ0oçř Ü15Ő°'$WP÷o!>¤ĘEďí?—ѡmó:”?×1ž•ßCńŻ`מš”:˝k|é 25÷ĘŠ}5Ď.|Vs=‚ű.cœ„lÄŁ†zË?'hBEŘfšUŸűf>Óh¨20ŃŘcS™ žx9$;=d:Œ ń<„ş"ˆ‚;ݰ¨óŤ“źľŹAÁnŸČgb‘¨I(áXźč'Y@=A(FO:d0A­ę°EVójUrýé™óŹaˇŽ_TűKĎC˘?îY•A}÷B˛ůŞgGňŰđ˝˙Ů˝ë0 endstream endobj 204 0 obj << /Type /Page /Contents 205 0 R /Resources 203 0 R /MediaBox [0 0 612 792] /Parent 196 0 R /Annots [ 201 0 R 202 0 R ] >> endobj 201 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [275.54 542.13 455.328 553.039] /A << /S /GoTo /D (Reporting\040Bugs) >> >> endobj 202 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [355.796 190.648 518.97 201.557] /A << /S /GoTo /D (Known\040Bugs) >> >> endobj 206 0 obj << /D [204 0 R /XYZ 90 720 null] >> endobj 207 0 obj << /D [204 0 R /XYZ 90 720 null] >> endobj 203 0 obj << /Font << /F55 9 0 R /F76 7 0 R /F82 8 0 R /F56 25 0 R >> /ProcSet [ /PDF /Text ] >> endobj 210 0 obj << /Length 49 /Filter /FlateDecode >> stream xÚ3T0BCKscc=K …ä\.°hQş„äÎeUgbl¤ą*OS endstream endobj 209 0 obj << /Type /Page /Contents 210 0 R /Resources 208 0 R /MediaBox [0 0 612 792] /Parent 196 0 R >> endobj 211 0 obj << /D [209 0 R /XYZ 90 720 null] >> endobj 208 0 obj << /ProcSet [ /PDF ] >> endobj 218 0 obj << /Length 2100 /Filter /FlateDecode >> stream xÚĹXYă6~ď_!ěĂB"Zźtä-›ÍLděŒ7 “ľMˇ•–%‡’ť{ňëˇĘ-{ÔÇĂ, ´‹Ĺ"YUë d”ŸŒĘ4ĘľĽ)˘őţ*%Žż‰˜x÷öJš“‰ä?VWË7ÖF2eZĘhľŹ”ÉQjľ‰~‹Užř}őăŐwŤÓNVŠW‰’Ÿ™g‘Ě…’Öŕ™ UV!ľáăňEb3żHd\÷ ˙´HtnăżóϡÝaĄeüÉ×7;$ÔďҰU`LŘő‡v‘˜BDz, R*vŽYSi|?đŕ—Eabçűş ş-‹˙ćjzˆ4Fč X¤%TÍ)cE Œd"śBą(iz műť[FöőnşŹŢ°.÷ UÄUĎ Ţűz\Đög>1ý†MiŤvÓ1矝oç=€ËĚoڍw°œČL Ť ´Vňéo}Őţ…ëtĘţŔ_rżÔŽ­˜üO[ß-TNţ‚&Č üťşwf^OŢUMŘöýŮťŚ›ü5Ż"Ö-Ď×-˙҉&îZ—ônďúaÔoÝ}žŰąÚ9<\ƒĹ)ÜJeq_ďcÖ<ŘR‰´(lů*Źĺ<ÔĹ<ԁý58T`…gÍ*Ňtł•Ţwxc‘"@@ŠFÝn}Őţ¸Ž>𶝿:řîĆW{pWĽP™ ţÝᔏ÷M•i|ˇ $9BpR¨ ţ>á=-Œz]¨˜'BE>+łĄ"X™F-ËŇ~…lNçoƒÖísZŤL”šţ_řń}îoŹAAŔk€›Ü#^d×AíŞíSĎ0ŞÜˆÜŘók#%ÄćÖîš.˛Ěc4–”8těkˇń5G#ł&ˇ5œ ` _K˜xëüŽňa°âŰw§ÜŇ"Ŕ"S…źëÍŔô=Z‡Ćâ`—ŕŻü €P̂P\‚@žÔe&”Qçžź¸ü.ż㠘Ŕ9Léł9 ×|LmęOŇĄňUĂßxꯎÄ;qđő¨•,śŻř đËw@28é‡ŢnÁí›qö%_~Ů$öjO˛Č‘ŠŔ]SY.8I˝&€LČiíN)„ ŚŢşÎß YÄ?š×4`Łc˙€76,ž:•ÚdedĄŔ)-ąůí÷4ÚŔ$Ô aňčž$÷‘ >ščýŐżçš$e aÁ`›ŻĚXÇfŞĆˆ(ęwłG`Ńş€' mť#U` šÂť­óŽ];^:t̞RŠT€1˙× ó ¨ŠšĄşh1}ŚĽŽŹÉEa˛šĹQ:™ˆĎř˙rÓ`hé>°&ßvtťÎ‚ůż’ĐőĄşqĚŔ œ–ŤĘA-Ú|7 ‡Ż ÄÔrň8„ŕ4˘ yš;ÂÍŽ‡ÚőSy÷šüŽÖ0§n7î(Ţc7ě›9 •ÍE]YP‡.ŃLKţ:/SKţź‡Ą%ˇÚˆŹĆ çŻułĽÔNÉoo™Çßťś­Ű›žE¸­,O˝ ňúnď˜ÚŰőpTÍŠ?$Ů6H!ýÝ2żĂŇP *0u–9b`éűx‘ԏ=O’–Ť˛›Šş NÝ+݉…ށŢ8Č]ăě'ŚÇ $vIF(EUŃŢfÜë*\†ć–äGXąqlTÓöŽŤ{PÍď‡33Ř Ú{ˇôą?Đ `€úÎěS WXƒşa`Ÿ}ľk°H™”•ęA”}DGm‡ŰÜó`ń›ş…Ž9ˆ„&R~fH,ÁMŠsÂ%"lÇÂK‰)Ś=łč$$`ž ă?Üz`@tˇ…•*2Ľ…$Ľ_ˆƒQ:™ˆĎeű‹MI˙÷đČX;ꓨܐBO%“ Ęó\˛\ö´ĂWc]X‚}hZż Ԙ\•ç^ƒ†Â=(?€oĽŇńr6ݗ˘´Ďf xv •ʁFŐK99H'ńšœ çš ś‡Ů^D×X´ŰĄÚŁO žKcůßůš;?×hËýţ˛ÖHŽ~ÔŕóíŁX)żţ,Ě °ŞˆŒľ"/ĺKa¤“‰ř\˜]lĘMb@4(ĘÔSaf•Ę^–lMĽvüĚŸ O˘Ć̅x k8m!2Ť/b‘w’đŞYňrŕéݝ3ǐMؖ™ˆ•yŠ~.dUí[n#c”€GúKy…“GéŮ´–‰<;mÉeŢľ9ôŻ;8żpđů–t𤌄ďDÇ'ԋ§QĎ QJ}ú€ 8.?özć3ÚEJĎژĄi‹ĺˆňňYĐ5^Ľ´Đ™|^-s‘Ľ&2 QQžŕćQ:™ˆĎeä”RĐV˛Ú7=żś¨:CČ˙Xń7…Ę3}ţ“gÍ đ‡:_?˙ÉîłdżŔ‡žWžLH§:ŘVqĎ­¤đęşqăŽŇ­K~XęňôEV™”?˛@’ šśg.Ůi0Qׁł=Fď֒?^Piă]ö\f:ţĘi&=MhD…ýŽÚCƒŮ÷M¸ßUC N- *~Í<ÚLŸĘ“›Z¸¸EÓX꛿ °Ę&\üŃ[ô ˆ 7zëăŘÇUX7ÄxU˙ ˘zó× endstream endobj 217 0 obj << /Type /Page /Contents 218 0 R /Resources 216 0 R /MediaBox [0 0 612 792] /Parent 196 0 R /Annots [ 212 0 R 213 0 R 221 0 R 214 0 R 222 0 R 215 0 R 223 0 R ] >> endobj 212 0 obj << /Type /Annot /Border [0 0 0] /Rect [126.093 545.118 522 556.027] /Subtype /Link /A << /S /URI /URI (http://tug.org/utilities/texconv/index.html) >> >> endobj 213 0 obj << /Type /Annot /Border [0 0 0] /Rect [273.512 492.516 522 503.425] /Subtype /Link /A << /S /URI /URI (http://sourceforge.net/projects/latex2rtf/) >> >> endobj 221 0 obj << /Type /Annot /Border [0 0 0] /Rect [90 479.365 154.201 490.274] /Subtype /Link /A << /S /URI /URI (http://sourceforge.net/projects/latex2rtf/) >> >> endobj 214 0 obj << /Type /Annot /Border [0 0 0] /Rect [296.528 453.064 522 463.973] /Subtype /Link /A << /S /URI /URI (http://lists.sourceforge.net/lists/listinfo/latex2rtf-users) >> >> endobj 222 0 obj << /Type /Annot /Border [0 0 0] /Rect [90 439.913 271.475 450.822] /Subtype /Link /A << /S /URI /URI (http://lists.sourceforge.net/lists/listinfo/latex2rtf-users) >> >> endobj 215 0 obj << /Type /Annot /Border [0 0 0] /Rect [291.782 439.913 522 450.822] /Subtype /Link /A << /S /URI /URI (http://lists.sourceforge.net/lists/listinfo/latex2rtf-developers) >> >> endobj 223 0 obj << /Type /Annot /Border [0 0 0] /Rect [90 426.762 317.604 437.671] /Subtype /Link /A << /S /URI /URI (http://lists.sourceforge.net/lists/listinfo/latex2rtf-developers) >> >> endobj 219 0 obj << /D [217 0 R /XYZ 90 720 null] >> endobj 220 0 obj << /D [217 0 R /XYZ 90 720 null] >> endobj 216 0 obj << /Font << /F55 9 0 R /F76 7 0 R /F82 8 0 R /F56 25 0 R >> /ProcSet [ /PDF /Text ] >> endobj 226 0 obj << /Length 49 /Filter /FlateDecode >> stream xÚ3T0BCKscc=K …ä\.°hQş„äÎeUgbl¤ą*OS endstream endobj 225 0 obj << /Type /Page /Contents 226 0 R /Resources 224 0 R /MediaBox [0 0 612 792] /Parent 196 0 R >> endobj 227 0 obj << /D [225 0 R /XYZ 90 720 null] >> endobj 224 0 obj << /ProcSet [ /PDF ] >> endobj 231 0 obj << /Length 2843 /Filter /FlateDecode >> stream xÚ˝kŰĆńť…ž…˘ wš|ĺ[Ř[;n}—"…mÔłšK>S9îWr°ř†…´ž0ˆ`ÝŔtŕŐŰ}Ý^čŮK?ň ćÓN/śƒíÇľ=Ű@_Jű⠞ ŮýƁ7IˆĹŕ˘äé>ě‘:úɘóX‹!d˛váaŕH v|É …T™Ş/Jú‘T 9—š`áaq) =ŽV„2&Ä.%r•érrÎB(ΜŻ0cÖX–“¤LNAoŠ]Śtl^ŐĂI¨]Ďršwť{F9•óCSˇĆQň"ää¸C!´Ęx‡Ő摠4ĹžžnÓív|¨ÉűŹďń€öĆ%‹Ţşč^˘ˆžíŹCřq™Š XEKŹë°Íý˛ĐZMÂVHÖŽĹČOâ™ĺa{(ôÄłƒł/J8“šžDآMžűůYîIž¨1ëĆ1iĄŠ~EbeńçNüŤŚkw˙ÄW†Gáß÷޲Ěü芏stŇq0Űąa˜äżgâvK{G˙ăO?3€gaˆ-á”î3P,U‘;Ń9ÍăčĂoŚř͡Ąŕđáˇn´ŕ2SAüë\éĘłĚBƒ˛˛ÄR÷íűxą5`"tž¸%ÂĂ"źˆyĽY\=ů[¨—e"bđVdĽ3=gEP ä!áż‚ÖÇÚŘ cě JŠčz6ОŹŽä¨˛ü$G|Řt­aŠ)Â#vős˘bă†e*˘`‰K&H˘¸˛3DÉÉJ§„˛s9'MÓ2M8°œ‡—„ĂË_ÚËúۖ#ËÓq6#Qʋ"\bBĘbƒA}J’\N„ʝŤY^Ă܃č*dÖĘSň÷ę†đ0J:"p´ĄRڝ"/'Şm˜NőŠcU@č pK$ÔÍ3ˇÝgš˝měÝűŕąJęö>wŹšęň’x€›Rž(‚Ç‚ö2+& ´SÔDGźě§%% šˆFëCĺŘI“Xz°ű ś<•fĐ7ĽçŚ÷Ň+4Ró.ň”…fgĂ8b ż{Œ‰÷\<čśLşĹˆëMĹŚŕ8P“î–ŚŽ‰@RP Smá[˜ˇ;÷Z0ÎěyVČe|ö.öĺ^e‰Sł6PH AV;đÚkťíkăŢę &OĂőŐۖ’ʼntč–HbîÖ 9,^ Ö&‰*EŽúÇŰÔϖ&p§iˆĚß“„‘fú,‹ü?|tv,?Š-đҹȲěł:ózş"¤šů÷cWňřźA΋(čí*ţ"oŸĂ†š;6Uu26.IéwĆ!ţĽŠžüŇŕ y’GWuť~TˆJýŽórô|ô¤E.’“lÑ*ŤĘüPĽ!!ݓX~@ŕ@”@‹Š‹äܗçöŠx¤Ö‡č›A4üęS<‚[ŕYötŽ)čaˆťă…[nö­âýrU”’o‹ćÓ2Í ĘhDՖŠO3ˆƒkŒ’fŕî YËÚň{gÁm@é.Œ'Ĺľžˆâ_sJV„ĺU<˜’A]Àߎmî‚ڞkŞ’đqŰw†łĽ6<§`‹¸ŇížďFŔ¸ă×˝gS÷žGĐMăp=”ˇçU;ç>pć,?Úힲnš7đˇuăyƒ1SĎÇKsw°qĘ)ŚŃdčԍdڰ_S%ĽŠ6uůl°őz`\Ër›†Ťۖ[ŁÖW:l'VłeŕĂť8ŤľŤ É8jQ§e,‚šYe*&ú˘ď\ľ>Ţ/ŮĹÍMĂë,~Ç›Œ*şŐŤátᚶ[†ňţ˘ŞŐ\Őž!ßσŕ15‘˙­źĎKŰ7§ţť–;ć!˛7˙wވć%Ńn UŘ9<őŽyô‘­W‚1ă™îĄ7=0Ee/‡ý œ'*˙KŇĎ ü'ę•Ghr.™ŇŻşą_›ç4Úëi>B‡”—Aú?Ľë˝ľGĚREôü/é ÄpËĚ+Űb'ö¤L˝” Lßý ̤SjdVâÄǢPďÔĄĚÇę̨Ў/Şâœ6s՟čD˝ňČ˝d:gآˆ^sč҅aä΄áL *ŕ¸چčr,Î1[ Ô=#['$ jĽE!“Ż‘ÚůžG˛ţđPő0ĺepŸ¤śŻů|źXMﷆtšaďB€ĐtGĂĘÑżěĐ˝5:ścsš•Ă=p´–Fœ‰űúƒťÎoŢVÁĎ:6.á,;†˝¨*Ś|ý¸ÓX} endstream endobj 230 0 obj << /Type /Page /Contents 231 0 R /Resources 229 0 R /MediaBox [0 0 612 792] /Parent 234 0 R /Annots [ 228 0 R 233 0 R ] >> endobj 228 0 obj << /Type /Annot /Border [0 0 0] /Rect [319.212 200.107 522 211.016] /Subtype /Link /A << /S /URI /URI (http://sourceforge.net/projects/latex2rtf/) >> >> endobj 233 0 obj << /Type /Annot /Border [0 0 0] /Rect [90 186.957 207.151 197.866] /Subtype /Link /A << /S /URI /URI (http://sourceforge.net/projects/latex2rtf/) >> >> endobj 232 0 obj << /D [230 0 R /XYZ 90 720 null] >> endobj 173 0 obj << /D [230 0 R /XYZ 90 720 null] >> endobj 26 0 obj << /D [230 0 R /XYZ 90 658.983 null] >> endobj 98 0 obj << /D [230 0 R /XYZ 90 528.485 null] >> endobj 27 0 obj << /D [230 0 R /XYZ 90 391.939 null] >> endobj 99 0 obj << /D [230 0 R /XYZ 90 236.172 null] >> endobj 229 0 obj << /Font << /F55 9 0 R /F76 7 0 R /F64 14 0 R /F82 8 0 R /F56 25 0 R >> /ProcSet [ /PDF /Text ] >> endobj 237 0 obj << /Length 2377 /Filter /FlateDecode >> stream xÚ˝˒۸ńîŻPNŤŠ˛h‚ŕ3ˇÇă8ń&Š]Ľ˛U›=`HHb™… wŹ|}ú‰kʓělJĐčwˇÔ*„ŸZá*Ó:(â|UśŻB‚űž˙J Ţ73ĚŰíŤ7wI˛RaP„…ZmwóŁśŐę§ľo~ŢţiĽó(ˆŁN!čGł˝ÉőÚţ ă^˝ŰžoI˘č™ä ć×čI‚B%Ť4ĽcĄ)¸Ů¤i¸ţ°ťŮč0Y‹ƒx}úý`Z†Âäfeëj*­cĐĂĐw{öÓxœFŢÖ ŤxƒÇîúQśÝD9 }âŮîFwœhez 3ĽÖuKĺÍF­› F•e$Ăwčšđ#˛ěÍ]Í_‡aEůJąâwF[2$ Â$^m.X[P„)p4 ´—Üť3|5ƒţHĐMFA¤r8GŔ^Zúg¨âiNć†9Çz<ŕ(ڇ ˛ŽęăX÷úY)ąţžą-ˆ)ŃĹúƒë3Öţ<ÁŠ×÷“@€oŔĆą—ŤůăZÓ4<źĘ.fŠ4˛+,žÂŻ„řĺŃ. c~WůUx~ Ââ]Œ Ď;‘éNNşGázÄąŢŕ pŔ‘ äWnĽ‰cPš‘P]ý—şňgţxąÄŞ€SŒ —ŚăÁ=ß˓ÉŮJ0ý˝ÖɎÝ4Nƒŕý‚WŮÁ岞ĚĚrńŞŤœ‚ĎPÓ亚>ĄĽjĄŚŃ÷č`śwČţlmşŠΖ}WĄ˝e ąĽFSw͉§uëyyă­ ˘v€Kӕ—3>ÂŐĚ@ůY łőޢa ˘ë[Q†(Ňł…™q´ŹŃŔ^xœ…ë? rƒ´Ů§Ä<„žŁÖňˇ—a†˝ĚŽr^Ľaƒ|ŽÎÇOčźzŚŇ äĺ€č‹(ČęčPqźţŔxN섪çŻyîź.áě3Kx°Gz*`ô"tÇZ@ČÄ8eßr¨˘}5΂Ű&#ËҕŠÁJҍlŠ}YäIĆWćA!/ŔÜ ž_+ć!8Ť5Č㊭"Ѩ›˜Ţe?ŽßˆS’Ő“ď€Ys>!ç'ä>=RZx{ví2)@$‹űťłiěç7'ä˛)ËšíhôĽČEß´ˇăś¤č…˜\ń?óm%˛qÓń,Ż…Éj°ž=šˇâ{âü‚4ÜZpŢĂWȝŮwý@éޞ 5-)'A4Ä’˛žˇý°˙fć˜Đđ~+š~g>Ýřœs†Úńč;Cai2 Ď۞óTúÎ"gĚL’ˆMń.jˆ¸‹ü玢ěCÇÓ[Œ™8 M§ŚźŔŁ‘BçđhťwMRŽ;*, ć*Â.>8IŠ‚–ůÍĐö]ýo1N;AŚäCQ\YąĂpč*‡ŚĄ;űŒÖ:‡JúŇTţmż¸Q<˜w‹§‡ƒü+ŽÇŚ.Í}#AÓÜSmÓó)ńź:ŇcŒó1Çy˜¨$KÄíYĄş—Ő%ëş;žňçľžđú¨s^ J@"u%;‰“šÎ'zW&bŒ1I~qbßĹIťŽ”O2ěL U` š;’†á&R9\Ďúbp$:˙UYßIŸzœő!éޕi’źťđz@'Ą#/œHCök‘ĎuąV9ďĚp§äZi ¨^ż—•dœŻ%ue3UgЃ k1C7‚Łp>÷KÂsœđĹ"ů(.§u‹,,ÁŞA'†ěŚŽâ›idKpşz~rđ–Yůź@*Dł˛EĚ9óĺA"Ş’ůÄ+{˘™ €ŤE˜ü?Şc eŚ28›ĄƒbjFlvţ]÷>Ů͒§ ,ˆső[żTy_fLä_úŃţdä͚90˜œä;PţC.élЏ”D’TjÇG5ľ˛dŢŔ)› ZKÎ.‹˝ídÜü¸0TĘ\9q7ą†"š_+űœŕčáPÖbăŠy6Łu<ÇüzßňĚz>&Ź?Z2ńąCsu وůśËSŃy˝P8}6íÍ$ZSÚÍĄo*;V  m:< g{D0ó¤jxëŃd 0¸Rml)YŇ^î8˘´KB­Ä¸Š!ԜÁŔݕP™˝l­Ä35=çDú(TÎäN~—$L8ß }+=UŇ%’ú­ĆęëJî%íĽ4˘ńƒĽyôFů]AŠ5–ř”ę3€(nĆŕšý|äVm‰Exuă1°Ĺ2FĂFWnSâvŒś¸ÄLIó™!¸–/ZPĎ)kĹxÄ~X1ÎąpÓü,ĚŠ:éĹI ˛ü Ç@ZÂaUR9; U€ľRšđ‰#,PCžŹç€ń–çäUZ/Şv É9{@ƒ8ţţ<•Ôż>ߞs’Ő×­ŮŢD?ń„mžÍřĽć×mkŤÚŒ–űoůLp;6 ĺö.öŃ:;b*Fd)đü@ÉwäşĺŽşŤ ›Ľ>B˝óÝź‹' ßĘ{đ= /şWÔŢřň҄Ń×s"7pćÜ4XVĂŘđßĎr ĺj<…ôH9}>(Îޟ_ůíŹhź–dAę˙ň÷B/.Ňů‹‹Dź€wýD„!I¸H|…G§ËŕZEžůÔ՟÷ÓĎ×čHUäšÇ5Ă`|H™]äJl–éÉ==˘ˇBőVI…ŹáÜ,YöM›ăÁˆž mÉÇ4ĺΞKă¸ő •)!Î2ĂŢgœŔ=[8^<ˇĆŐĺ-œošbäJžu%ž‹Éml‚Hś@ٍĺčĆlu‰*Ř7Đ|´°c_w‹Uš¸ô1jhjvBř?ÜGV; endstream endobj 236 0 obj << /Type /Page /Contents 237 0 R /Resources 235 0 R /MediaBox [0 0 612 792] /Parent 234 0 R >> endobj 238 0 obj << /D [236 0 R /XYZ 90 720 null] >> endobj 239 0 obj << /D [236 0 R /XYZ 90 561.916 null] >> endobj 240 0 obj << /D [236 0 R /XYZ 90 338.952 null] >> endobj 241 0 obj << /D [236 0 R /XYZ 90 202.507 null] >> endobj 242 0 obj << /D [236 0 R /XYZ 90 147.847 null] >> endobj 235 0 obj << /Font << /F55 9 0 R /F82 8 0 R /F76 7 0 R /F64 14 0 R /F56 25 0 R >> /ProcSet [ /PDF /Text ] >> endobj 245 0 obj << /Length 459 /Filter /FlateDecode >> stream xڍTMoœ0źďŻđŃ>ŕ`ó‘[’fU{ZQ)RՃ†EŰ2Nż~}mĚŚdăU*.֛™çyóbűPÄ c I*ľ‰çŞn?ě6dáE–­˜ˇĺćjË9 1.₀˛Yˇ*kđŢÄŃH"ĆĚŻQ”$îD‰ňĘ'şG9ƒĺÖĂ/Cí™ ü$ šCُG%w4("á1d}+?oîËW[œŇ˙ôď˜ć &,ńČĄv÷Y˝˝łâľ:ŒFfD‘ľ;šw8ń-ÚVÖşk~Ź…aŠ9„:ßšN÷;@˜#Ť–¸¤Í jÇşÚf)°íc;˘›ĐЍ0c^•ăLQÄS ˇ¨`pŁ.p–qx7*%†zňŢfĺŽĎpzŠęŚďý"űn2˛ö›ŹNúů鼍úťÇÄR•żŽóh˛˛2ꚌÓ%‘ç&ĺs3IÝÉ)E%úBŞĐ2Őń$ťNݟ×ü†łÚă㗇ű€öńĽ žó qŽy¨3Áâdż.Ÿ\¨ßîfď:=ě„›čßžŽ„™ý…7áĐóČ˙!gîWU_ ŁVŤ~ŤPŞŐŮT]şij.IúÓ˙ä/ňCZ endstream endobj 244 0 obj << /Type /Page /Contents 245 0 R /Resources 243 0 R /MediaBox [0 0 612 792] /Parent 234 0 R >> endobj 246 0 obj << /D [244 0 R /XYZ 90 720 null] >> endobj 247 0 obj << /D [244 0 R /XYZ 90 564.803 null] >> endobj 243 0 obj << /Font << /F55 9 0 R /F76 7 0 R >> /ProcSet [ /PDF /Text ] >> endobj 250 0 obj << /Length 323 /Filter /FlateDecode >> stream xڍ”OO„0Ĺď|ŠáöŹp5QăÉô`˘X nʒś$꧗!ŕNłf/d~o:Żóš%?‚ ŒnKŠ4G• đT՟hţxy Ȣ‹GaźQŢńŕć!ËÁI ‚¸ŘĹkô2}đ'Ärš¤4O™ŞĎ%r6ŻT[áÁ=_§d”ţӎS^÷sČӄ°tžŹJ{ŠhZ;ůďCň“lO‡~G ­MŁec@&-TîÎZ•­8wÓĚUÁ’‘­Âȟę× ŽŠRÉöş‚Š S+Ó˛ˇ>Ś2§˛âŃ?ĚX}DŽů'śpőʤqOpă%Y–a›/{ :rË.˝DŐ>2Ç í(§#plž›ÁktÄzĂ/ŰĘi`XžłŹ˙A ]ÝčcŠ˝Ź•˜đĐď_€űWřđ.ć endstream endobj 249 0 obj << /Type /Page /Contents 250 0 R /Resources 248 0 R /MediaBox [0 0 612 792] /Parent 234 0 R >> endobj 251 0 obj << /D [249 0 R /XYZ 90 720 null] >> endobj 248 0 obj << /Font << /F55 9 0 R >> /ProcSet [ /PDF /Text ] >> endobj 254 0 obj << /Length 458 /Filter /FlateDecode >> stream xڍTËNĂ0ź÷+|´1vœ'7ŢőDs¨ÜÄ´¤Šœđú{ěÚTQX*”CŹYĎîÎ&1óp”3” Aó(Ce;cű¨^#w¸ż™qĎ 11ϋŮÉu#ÎhÎrŽŠçńUE…đĹFîĽI „ŔŮ) ˘(ĆsY,ÂjޓLŕâÚÁoŰĘ1#|ŠŢI˜aŐtťVmíq Ďy̰䊸›]‡˛â0ügý–ůŤ4A\Pf:đ $YDšˆ\M(§‚qâš)w뎡%L[7łá)M„p‰gMăÚję~P•ëŤěÚVnŤŢ!śąNż:Lú¨úܑŔ6_š4j•öW甅‰żş]ěGh¸Ë.(đ´É=ŻWęŻ~ݏ]oĄĚߚ#°‘ƒú<šĽ ˝Śł‚NL˙ĺóúH1#hęŻa†‚f,Ű9{fđ"4ƒŻĽő.íúji|ĐG÷ŤRlTݜ‡Ćgť*ÖkÂqď ţو˙únô’ŠŢhvfI˙*k4 Yž šŇ JІ•ö_$db e”–žQ敚­ŹşŒOÂ^y­Ľ•JóyˇPp#ARx—ÜT(¨~VßߒJ, endstream endobj 253 0 obj << /Type /Page /Contents 254 0 R /Resources 252 0 R /MediaBox [0 0 612 792] /Parent 234 0 R >> endobj 255 0 obj << /D [253 0 R /XYZ 90 720 null] >> endobj 256 0 obj << /D [253 0 R /XYZ 90 720 null] >> endobj 257 0 obj << /D [253 0 R /XYZ 90 454.235 null] >> endobj 252 0 obj << /Font << /F55 9 0 R /F76 7 0 R /F56 25 0 R >> /ProcSet [ /PDF /Text ] >> endobj 260 0 obj << /Length 491 /Filter /FlateDecode >> stream xڍTM›0źçWřh"áőłÍ׹ťęV­zjŠTŠęÁ/Aw[ő××ĆI Y']ĺ03žyĎď@Ô~eœ“Bä¨ę7tFÇů_>l਋­0^(ďËÍÝc’  ¤  ňiiUÖčć"úY~BŮ´]­ć’l+“Œ'žW óŕKd9V•Łîł'ÔĆš4Ťdœ$ô–“”I˘8IţŞ˘peÚAˇş‰bž ü0ô˝Ôőä˝Ö•;/JŢŤrŠ{y0j ľ ˇ!ţ Gٌň°żIţ;Ę $gŇ\9d‚Q“š›źAmC˜žwŻ‹teříÁ­č3jŇąŻ_˜ŻBł§$ƒ|9űÔĎţ›Ž¤QÍ0śT}eؐ‘ô´Ľĺ^Mv]8ç¸zˇ7nM"Ŕ“ÖĘÚĚ´<˛‹b–a冹‘zŽš5­vËá•ÜžýuRy@ýn'ăWŇ>[œHčĺn2ŁŹ‚ű ëş|’ň_óZŁÄöľşëF ööěmŸŽŐęŇ Ţjö2de/&§lĽžX?ŮŠđËńŽ ăŇáöĘ Ú.Tňš­´CKÜ,Ť—]4Öá<ÝtęôúŞ‚~ endstream endobj 259 0 obj << /Type /Page /Contents 260 0 R /Resources 258 0 R /MediaBox [0 0 612 792] /Parent 234 0 R >> endobj 261 0 obj << /D [259 0 R /XYZ 90 720 null] >> endobj 262 0 obj << /D [259 0 R /XYZ 90 619.409 null] >> endobj 263 0 obj << /D [259 0 R /XYZ 90 362.744 null] >> endobj 258 0 obj << /Font << /F55 9 0 R /F76 7 0 R >> /ProcSet [ /PDF /Text ] >> endobj 266 0 obj << /Length 427 /Filter /FlateDecode >> stream xڍTM›0˝çWp´PŒ! {L6ŠZőPm9TŞz00KŹŒŒŠ’_{ÍF!™jWlÍűđóx bűࠈƒÎŁ"̓ú¸Š_Ťş üćůóŠÍźĐĂ+ćŚ\}ÚgYŔ⨈ ”/×Veü"ۃ hrÎIţHĂ4ÍČ7QŇ<%đ3yŚ9'ĺŢĂSßxfJžŕ/MrŽĐť­Ą!+XžŃßĺ×ŐŽźÄʒäƒůóý Źó4b<őĂ@CĽoäÉfHň˜|i{ĽĄq9ŹŻÍĽyrĄkĺňžPT‹JÖÖo͘sĄŒÜń™:Ôa2Ľ1A%Fčdă9\pąŒÍ¸żF-Ś0ç73ßÜÖßDr–ů7Ňg4™Ź¤ăôT­ĂÁœŃŕ7ۡt° „›=DëĽ÷őK†3źHŢ.Úy×.eĐnů €f÷ýÇK9u ĘZ ‡Ů˛‘ŞGBĹŐGT0żh١¨ŇÁ™Ç$&ŰޔßR×č)v$pžŐťAFUݨŠę`-`ăňJY€ ýT“Ä{Ż|?ÜŻĺxŐM endstream endobj 265 0 obj << /Type /Page /Contents 266 0 R /Resources 264 0 R /MediaBox [0 0 612 792] /Parent 268 0 R >> endobj 267 0 obj << /D [265 0 R /XYZ 90 720 null] >> endobj 264 0 obj << /Font << /F55 9 0 R >> /ProcSet [ /PDF /Text ] >> endobj 271 0 obj << /Length 528 /Filter /FlateDecode >> stream xڍTËrŰ Ýű+XJ zNvǝv˛Ęh‘™ś jĄDS dŔmü÷!šVŠ“Œ {νœű ý0¨((…UZ‚ý°A“U=żyřźÁ3/ąÄä‚ůŠŢÜě˛ `+TaPˇ—Ąę|‹h˙¨żZ˜’ÔF™Ź÷ŹŽKńG˘L뛝ú|JFČĺ8ćűzň2…˜Śţä˝1)#Ăý˘űNđIĄÍ Sˆł…6*'–ŇœŃf¨šáă¸2ĎÉ6Ě𠽑F‡â4ź7,äą˝4­bűP¨mÇ)š ‡ôą3ŤTń˙zIĂAŃŇ|G8í{[Ÿ‚¤Qý̏JÓ¨ÓnĽ‘~uݝ€˝+faóőż­TžpŽuë˙ď݁7ť’\öŘ=˘Ŕ0]40Ď[÷:ƒ(K­Ö´zҟC”Űi!.Sywśƒ ë#ypSY6NhŽĚœ^9ďűnÔKžRô'ç§x !$˜üWG}Ľžá™n2˙Ś”ßĆsű&gî+ˇ•Í$3šL1cK"Ů6Äńa4.đIsÉEӉńh‚ž˘vvŚ~MpVŔ|}č—'!÷łšĚđ*€>*ëožƒŠGÝţœŽć”úKP¨mňyĎŻ€]oŸPZĹŰ Ďářę–,ákĘ_:nűuíŐ{„%‚ЧÁĄ3ŃŢCL)ZUőľ‹ˤůxc܋ü‡ĚŠG endstream endobj 270 0 obj << /Type /Page /Contents 271 0 R /Resources 269 0 R /MediaBox [0 0 612 792] /Parent 268 0 R >> endobj 272 0 obj << /D [270 0 R /XYZ 90 720 null] >> endobj 269 0 obj << /Font << /F55 9 0 R /F82 8 0 R >> /ProcSet [ /PDF /Text ] >> endobj 275 0 obj << /Length 426 /Filter /FlateDecode >> stream xڕ”Mo‚0Çď~ ŽĹFi‘˛ă^4.;K–*T ƒÂ .şOż"h=s.\J˙żçĺ˙´€ G?ŘĂ'Ä(3˘bâvUbt‹Őb‚{ÎŇ 5 ďÂÉÍÜó ě؁`#Ü S…ąńŠîS^5B™!ą[Ó˘ÔCĎ<4EâĹ]™Œ pŢÉ[w$EâÓtyYBśËĆ´p€=ß| Ÿ&áŠ-ĎuŻěż%˙60cÔƄv6ĽâyޖÔ)t 6enŻ(AűóÖÓX#§˜BŹMK*[W;íĘu]´LdŠD —2jŮ´Žx”Éäyž=Óąą‡;n˜ÂęĺA儇ň/~Çá‰řá„󲎚Úk—~@A—dDś§Ţ¸~9˝ĘhÚŻš‚úé´ářVRÁUSołĚPg_ŒŞs^§pˆ>7Ą‹6ť4‚Ž›ęYą_ŔĄ‹ŚČykŚĐ×3“ď'pp%Ž (O–eý§tj}ŕ˛#$XDFů6pŔAJŻŇ,Ş!#dzÜ!ĽĚ÷˙ü2NĆâ´ş;ţqž[íRĚ endstream endobj 274 0 obj << /Type /Page /Contents 275 0 R /Resources 273 0 R /MediaBox [0 0 612 792] /Parent 268 0 R >> endobj 276 0 obj << /D [274 0 R /XYZ 90 720 null] >> endobj 273 0 obj << /Font << /F55 9 0 R >> /ProcSet [ /PDF /Text ] >> endobj 279 0 obj << /Length 400 /Filter /FlateDecode >> stream xڍ”Ínƒ0„ď<…p€Ú€ůšVjŤVœ*•Úœ` jĽ}űH((K!!äýfvěÂú"(Ć(ô<'ö#´­ <ŹĘŻO9qśíyŸw”"‚ÇĽůÜ*ÍĐťéEÖgú‚źČu|××.ĂjÂR+ňLţćJ•÷€ńN]¨ëާ'˙ĎDžC<ě\ŠŒsaš‘Šäϐ†N€lâ9„ŽĚs!ÉłĄhŸŞ‘žËĽČUŻŐřTœüۃZ&ŐĐÖŹ—Ĺ ˇ˝E“ľ-ƒDŰXśvä$­Xݡ‘ 4HŽ “‹Čŕޢ¨8XŮň”5ŞÄyŽ`:WLĘŚO~„„É*0sŘ1ŮŰnô=4‘i>4bôď ů,Úv ę’eąf|Ůf—ÜLžŒ~Á{U–í“ ^źí—â˛kٖƒÖ˜Đf<- ŽŞŹA۲ÖßĐJĽ;´°•ŕÉŮŢŇ0˝šZŁÝž\ąéTŁcĹArpZ= 'şŠ8|œŐůwő ݃U~ endstream endobj 278 0 obj << /Type /Page /Contents 279 0 R /Resources 277 0 R /MediaBox [0 0 612 792] /Parent 268 0 R >> endobj 280 0 obj << /D [278 0 R /XYZ 90 720 null] >> endobj 277 0 obj << /Font << /F55 9 0 R >> /ProcSet [ /PDF /Text ] >> endobj 283 0 obj << /Length 465 /Filter /FlateDecode >> stream xڝ”MŻ”0†÷ó+Xś NË@]úqĆŐ ă˘0†-–â\˙˝- —É=˘1,hzžsúž–ąűHŔă Ľ4â, ĘîOťŚ ćĹă‡Y¸Đá†|“^=$I@âˆÇœůe*?_ŃŰŤč­48¤”˘ě5KĐg‘ăŒ!ůĺřˆ3Šň‡Ů<ŞóL2ôNţŔÇ ÉV÷T~iqH8IbD9ţ–:źĎWYÉńřú=ů÷N‹es­VU+/VŁ˝Ž›?ÝE HrϘşşNZWx¸ŁÉ3ţ…IłnóȉŸv;ŃLĹ)pč~“÷“Ť#}Ź”6ňźădkŰJĐŢVƒSŐŞŽ3iĘŔČJ6‹&{Ĺ!çűzLłÁÁŒěÂŽśOÁťßŐŇ%Ĺ0şŔÂw h_'ĎCS÷ ë,ÉtÖ2ĄŇ•]0qYě“sś)ĚőJneM–ÖÖĽnÇN9)Q´rUPó•|9†[kî~‡ăߊVO)}Ŕt˝ySŠÇőj“Óް8‡‹^ٌžöŮ^Tp–ˇA<÷Ă÷͏Nş$N÷wp{R¸˜71uQm­+#úi–ţo#E3ô˘”ĐC –ŠÖVţ~ý~˜yE endstream endobj 282 0 obj << /Type /Page /Contents 283 0 R /Resources 281 0 R /MediaBox [0 0 612 792] /Parent 268 0 R >> endobj 284 0 obj << /D [282 0 R /XYZ 90 720 null] >> endobj 281 0 obj << /Font << /F55 9 0 R >> /ProcSet [ /PDF /Text ] >> endobj 287 0 obj << /Length 395 /Filter /FlateDecode >> stream xڍ”Mk„0†ďţŠ׃ÖÄďkĄ--…–âĄPzČşŃ Ő(1öăß7ŃU\wJE:óć™w&AŒ<ý`”z(ö}7 ”×–7De‰Ć——; ŸtŽ: ĺuf]݆!ž›z)FYąDeôś <ű={@~B܀š2Dif'ţŽ˝Š #°n˛šJHČF;FůżŸ( \ěceŃpq`Â&ÉN ÎtG8qă$šňl/ýŇaěFZáť8ģ⾍d‡!ëœŇOQH&rSáŘľ4ç˘\“ś‚ ŁŻÍşˇ˝2yfyś´„-o,¤h ‚‡úŕ”.™ąÍŇŸé—Y¨”MbýÔjjVR(ńt‘ˆŚ<—zFL°źŠúZ@†aŹć\1ÚV}2ťŠvG0ŁxÍ:ÖŤśWz@žžÂš`Ćói_ÎqĄ9?ăU!“θzŰ.ąáIVüĺŁSŚĘOĹl“nmv&aŠM­˙!QœV ôÔ_ î;r(üź O(X̧ŸŇ/ŠMŚ endstream endobj 286 0 obj << /Type /Page /Contents 287 0 R /Resources 285 0 R /MediaBox [0 0 612 792] /Parent 268 0 R >> endobj 288 0 obj << /D [286 0 R /XYZ 90 720 null] >> endobj 285 0 obj << /Font << /F55 9 0 R >> /ProcSet [ /PDF /Text ] >> endobj 291 0 obj << /Length 453 /Filter /FlateDecode >> stream xڍTËnœ0ÝĎW°4 ¨mĆtŮG˘TYT#•Ú.\栏ŘĐäók0“ÉdnH…„Đ˝ÇçÜÇÁ, îaAFƒ-çq&TP4:GMřÝí†-¸ČŁČOůć͔ŁqF3äĺKŞ|ü$ŸşŔ„眨a$„$÷:• đ#مŠ“üƧÇv|ża˘ťžvúˆeLR"Xř;˙śůš?—%“ä?럐ď7*3.|}3ÉšăSńVĽKÔ@qߞⵯśv˝<áˆ.ŒbÓbÉóÉ~čŢČ P¸ %,MÉ]Ővp~ű‹2QĄś4şrŠŰFńŒŤ1ćďŻÂ úáaÔ(Í[qŁk ć!tÓ ŸÜÚSĽÖš2ş­Ž€’PąÄP"(Q(íý\Sэ~żÎ¨'(™d ԍWúv•8  4uuđ&NJ=%ľ1óL/¤_1\ƒ0ƒ6ý2äů=75öhO§3G(Ďěö]čľ#v­ňëP‘]×čv˛ş”k>5 LdŮŞyFÜ:V7Đë œýUkBVOľúëĘĄÉdŢíŮźJ­ţ‘öŇëœÓdU .ö;݂˙ŐHx" endstream endobj 290 0 obj << /Type /Page /Contents 291 0 R /Resources 289 0 R /MediaBox [0 0 612 792] /Parent 293 0 R >> endobj 292 0 obj << /D [290 0 R /XYZ 90 720 null] >> endobj 289 0 obj << /Font << /F55 9 0 R >> /ProcSet [ /PDF /Text ] >> endobj 296 0 obj << /Length 382 /Filter /FlateDecode >> stream xڍ”;oƒ0…w~…G śyÖŞľęÔ2TŞ:8ĆIʘ@ŒQňókĽ$˛Ó ĐýŽ}î=X ő…@ÁmGE’Z{p¨Ę _ޞ<4éB- ʝҝyLS€`TŔr˝ÜŞŹŔ§ŸŕŕŤ|qŽŁ'z—ĄúJĘ }öĽZ÷PÎ.)Ć˙lÇ(˙î'˓ĹÉčÜ1ľ BœűM o§Ą9=*"˜¤łD ôČ+ľ ÂŹ@ţófßHVÉłIÎ75ąwčxí(łƒľĄšŃíxk]ՒŠu=WVxöş"ÔL¸“LŘ9k‡”hÓďP19čŇŰ(ÓŇ8BSoË`‰žm$™Źt8†đj’ýJgď&é̌Rkj˝=eWšuzˇWźĽ}’Ł™H9ž#[{ŠŹkÖ´™ňÝ,5Łio3Q줈hˇÄǃΔ[Đ q1túKÇĎĆ]‹i#é‚÷L¸mŤk ÁێŸąŔš ™-&ƒÇÍďäO‡Bq endstream endobj 295 0 obj << /Type /Page /Contents 296 0 R /Resources 294 0 R /MediaBox [0 0 612 792] /Parent 293 0 R >> endobj 297 0 obj << /D [295 0 R /XYZ 90 720 null] >> endobj 294 0 obj << /Font << /F55 9 0 R >> /ProcSet [ /PDF /Text ] >> endobj 300 0 obj << /Length 371 /Filter /FlateDecode >> stream xڍ”Ënƒ0E÷|K{ĹؤĐe‰TEj”zŠęÂŹ„‡ŔTQžž’B[†VHČâܙš36&ŚÓ<Ä ó–R;`žچsţZĆfˇX/ rŃYĐ(ďšq3÷<“8vŕÄäťa*™oč!…–%ś(ĽČżĂcZ Ž}†äĆ]cŸ">ďpE’ĄGů]ÉC^¤2k—[$ žƒĹďüŮxâ_ś<×ý§˙Vůw3ŸŮ„˛Ž-z!ŇT´U›,Ą6ńz˙b¤‡*×= l6Ł=Űco†DQ€‚ĽHŰơŘjŢXă0!ëUgM •Ę&éK*c°|ţ ţˆ,ÎŚdŠňÎ&(lö]śT–2‚ňŽf…Ń ‚c*8FŻ*NÁžŤIXoŤ°T…†ZŻęëÜFt˝Œˇ˙ŽwMÈ'>—z nŔyAr‚ň%"ŰWă¤9ťź”c6ľ?*Ôő ápä*•ă6”>Čëeó ŘÎ[ endstream endobj 299 0 obj << /Type /Page /Contents 300 0 R /Resources 298 0 R /MediaBox [0 0 612 792] /Parent 293 0 R >> endobj 301 0 obj << /D [299 0 R /XYZ 90 720 null] >> endobj 298 0 obj << /Font << /F55 9 0 R >> /ProcSet [ /PDF /Text ] >> endobj 304 0 obj << /Length 397 /Filter /FlateDecode >> stream xڕTMO„0źó+zňÍŐDĆ“aă] 4˛mSŠ_ż^(ťp¨!)͛™7Ó(Fn˙`”ş(ö}' ´ŰŽŽĘ ›Ç[xvO´'̸̍ź C„]'uSŒ˛rÚ*+ĐłÖKvüÄs/čťčęCžY‰o’'OŞr ×ŮÉ%ôź?Ć˜żç‰’ŔÁ~0:+ŽóôçŔ‰'ŃĄ*iÎŞ†4¤T'Üwpˆç¸¤Umy‰ “ä}X¸e÷ëŽ7ݞ͘â§Đ$’óNY6pjŢUŒKRĚĆŁ$›J(ëß8×ęLú.(ˆÁ˜)]Ď´š”|<4w pt„ľU12Ř9w2ŮÍ?¸hiĂdš cXـĺ–lľľöű衞ë­ÍäÍ #3o:ů $Ë1 ĆUMYďŔ5]qtĽš\üř 愖Vű|ĽťŞ‰ĘAýlVĄŕŞ…‡Żnah$ˇË2š˝AIJ°aKż(h_Š€‘ďŕpíőE@ŠŠݎo2` endstream endobj 303 0 obj << /Type /Page /Contents 304 0 R /Resources 302 0 R /MediaBox [0 0 612 792] /Parent 293 0 R >> endobj 305 0 obj << /D [303 0 R /XYZ 90 720 null] >> endobj 302 0 obj << /Font << /F55 9 0 R >> /ProcSet [ /PDF /Text ] >> endobj 308 0 obj << /Length 819 /Filter /FlateDecode >> stream xڍUKoœ0žçWp4Qp0`ŘíąyTŞzˆ˘­)ɁŔ, F`ňúő?ŘěŚNíaÍ7ă™of>ć…řcŢ:ô˛8ŚëdĺÝQ¨ŃąňĚáúÇł~:{žß7G§—œ{,¤ëpÍźÍv?ÔŚônÉYF?ˆă˜ŹžůA’pň+ßřŤ„ŔMtíŻb˛š4ćš/gBÎáɏVZ1tĐŤŁôśf<$ ÷ď7?.6;Z<ŠžČ_yţż€t•P'Ś€çAĽĂ똞ŽŮÚ /Í>đĆžĚ|z™Ľ‹iˆ‰TôŠš…ÖmESůO#r…•’rŸ‘Ώyh›’qr&ş.ďËɄ;¤­’f4]Xoj˜Ô­˜“bšĽŸňŃÂ[í6ÇŚˇÓýˆ,Éh¤:§^!Ą™,nď],X˜Ň,I–Kř€-N,‹%őŽNÓ -,ŁՁR73ˆ8N‹'X^Lgűc2(Vę 2Ł]Ú…4fܸće)… O›đănN{1ľc }%k—ů!Ÿ mz˜›áŔnĚ´S3O[“^H—QŞ!/]6•΁ŸCŃbߎĹĂúĽYYYçҘ›É ďbE+”'N9‰Ç6î4K Ąg•$×=0&ĽPečL§Ęfk=ľôÉvÄh<°=yôe/$Hx‘ŽŚ^üžvŒćQ¸`łzűŠ)ĄËÇĘŹ‡őmóžxý—´ľĂ'Ňž Ÿ§Zżš6‚ÄŃüM|—ŔYœĽRč@ŽŘ2áâlĆÍi’i 6b\¨…¨úć &ó|<ć˛J8¨ŸăbŮ<#öxMńöŠŐKi‹ĄĽF26•Ž@ZŚďa´g1ËÝYŠáä!ďbĆ|•ŃbÂ÷Ěť yŘôE;—ęŃמ޹âS­k3gĹ ěݨŐ°$uL@9L08†X˛ŸjăńĹZžÓc–4ó endstream endobj 307 0 obj << /Type /Page /Contents 308 0 R /Resources 306 0 R /MediaBox [0 0 612 792] /Parent 293 0 R >> endobj 309 0 obj << /D [307 0 R /XYZ 90 720 null] >> endobj 310 0 obj << /D [307 0 R /XYZ 90 614.617 null] >> endobj 306 0 obj << /Font << /F55 9 0 R /F76 7 0 R /F56 25 0 R >> /ProcSet [ /PDF /Text ] >> endobj 313 0 obj << /Length 468 /Filter /FlateDecode >> stream xÚĽ”Mϔ0…÷ó+X R˜­‰+ĂÂD]tŚhči‹Îűďmůg´ŽúB¸‡çžsš€˘Ě(ŞłčˆqZUtťlžŤťhšřđf‡V]â„ɍňeł{ńş,#”ĽuVٍioQ >í‹CüĽyá*O‹źp”ůî{ŇÄŢĂÇ\ŰÖ vݚk—2Ď˙ҎWţŮĎĄ*R„‹ĽsçŐŢ N(•J Â9“ĂlŃEC8Eĺ˝NCťUó,ĹŐ-ćiěA˔ Řç •ÄÂĹŞ5ăU€VE{ Ą™<ó‰Â] oĽq˛ĄgřÖČ5ń›ĺéň˜î<˝í\f s1YŞAJkőô =fŹyŤâÄÍF…}ö@h(gĆ*gţŔÁÄ *jt×č'Œ ƒŸ?t\CôÓóŹn&)\ţÁÉiN Üü#čšH§up}œÔȕ¨5ë–uęâá´$|óÂł‚HÚÄŤb’3t`ĄW̒ŻL+)üőqoƒdmČť+pKśj{pADŠNČ`Fr†Aż@Ĺź@yYćF˛ě(Ľ†QpĂě˜ őIˇ¤„?ŻŻX3Ů=ëóň8cç~Ţ#Ń~—w˛íf`ăöĂü¸Č€ą endstream endobj 312 0 obj << /Type /Page /Contents 313 0 R /Resources 311 0 R /MediaBox [0 0 612 792] /Parent 293 0 R >> endobj 314 0 obj << /D [312 0 R /XYZ 90 720 null] >> endobj 311 0 obj << /Font << /F55 9 0 R >> /ProcSet [ /PDF /Text ] >> endobj 317 0 obj << /Length 570 /Filter /FlateDecode >> stream xڍTKoœ0žďŻŕh*á`°yôŘ´[ľÚSÄĄRš…  îÚź›´żžc ŹuĹ1ßcž0/ćyyčĽqLsžyŐiN_‡Ćł/_wlĆ VČOĹîn/„ÇBš‡9óŠçľTQ{äž-{ ƒÄqL˛~Ŕ𠇞đ3NŕGôŕg1)ö6|–ľErň.~”8ŞţŇźj?`9!áŠ˙T|ß})ŢŇQtcţů˙’ŒSs[@?(céj¨ÔéTĘÚŘŁ\Ŕbʄ eÓ@ýËŠ´V§ †Í đb´\:×[ôĽ”œbžŽ[PXK‘ŇdŤř­‘ľf G!M—ňťż0gn,_› ż‡ú°-bĎjn3ÚBYťÔGЕ:Ű)ă8¨ˆ8‚ltë¤w,őySĂ+ö§kZťCď LđĽŤÝúČYKĽat Ă}ٸÍŰn4ąq2řs„ëÝ4"7PM']çÝ+#˙Ű‚ŹYŘ[ćůÝ’Î|cŽŞŚú˛{owű4ń⥘;1y*XbńMhě"‰Č/•€śWŸrro×}´*Űk3ŽXđRÍŢüpjűC°%#'YsxB#!u˘&§ĹăńÉĺ’ Ľo TÔç3iEmëg”g cTÄsae]ăöŽŢW•k]Ş#vX6.ČęčúŽúi2 Żyłdď´ßěý ăáŤń”>#˛9›uÁ‰ÍŒĚŻő;)‘ endstream endobj 316 0 obj << /Type /Page /Contents 317 0 R /Resources 315 0 R /MediaBox [0 0 612 792] /Parent 321 0 R >> endobj 318 0 obj << /D [316 0 R /XYZ 90 720 null] >> endobj 319 0 obj << /D [316 0 R /XYZ 90 285.669 null] >> endobj 320 0 obj << /D [316 0 R /XYZ 90 94.46 null] >> endobj 315 0 obj << /Font << /F55 9 0 R /F76 7 0 R /F56 25 0 R >> /ProcSet [ /PDF /Text ] >> endobj 324 0 obj << /Length 457 /Filter /FlateDecode >> stream xڝTMoœ0˝ďŻđ¸Œ‡síŞŠJrH9TŠr@`(ꂳ^ˆ˘üú én2+­*˜7ďÍÇ `Ą}€e!KyIVv›pFMĂÜááf /°Äŕ„ů=ß|ŰĹ1ƒga,ŻOSĺ{ô"é?ĺ?JÁ#Ů,3z[äžDOýf¨'ÂćGţQ%âĘv&ć—~҄ňĐ6´ô“ČˆFŽ˛ä ˇŸ~'ÂťQŚ+z?Ŕ4öśşłçę8uóy(;5¤ď&Őö×YdŮMÝüz|&ĐVuę|$qCŁę|¤úł2y_+ÓŞŃDđöÓ¨%/}g—ÇNMď/ţŠČI‹hjçWŻĺžčŠĄŐýŮî"ŻctóUB)^Zӌ{EŚ6m§×_á;S5c endstream endobj 323 0 obj << /Type /Page /Contents 324 0 R /Resources 322 0 R /MediaBox [0 0 612 792] /Parent 321 0 R >> endobj 325 0 obj << /D [323 0 R /XYZ 90 720 null] >> endobj 326 0 obj << /D [323 0 R /XYZ 90 720 null] >> endobj 327 0 obj << /D [323 0 R /XYZ 90 562.76 null] >> endobj 328 0 obj << /D [323 0 R /XYZ 90 521.096 null] >> endobj 322 0 obj << /Font << /F55 9 0 R /F76 7 0 R /F56 25 0 R >> /ProcSet [ /PDF /Text ] >> endobj 331 0 obj << /Length 395 /Filter /FlateDecode >> stream xڍ”Ënƒ0E÷|…—öcC ťćA˘Şę‚˘ŞQŐç!H TĘßwI“TvZąąfÎőĚܑaȁĄĐACÎi(”–sˆŞęńĚbGÎĐž G‰5ˆ<1‡†NČP˛źź*ÉŃŻÓm#ą9ç8¸#ś~L,_ݘ'QŸnËź'žČ/âX~VŰB–Ýą!6 ™ç`’÷äÁš&?myŽűĎţ;ňďü@PĆE?ŔŽMUSu%á ›ÔçŹĎ¨ÝUÔ=EľáZf0^ĽMľ[bwĂŞlUŞCŔÁfŁƒ˘ƒhč#ĆŠStCär*ď!੠‚ŘžďâŒÄmMŽ7i v=<ފ"-óşżëڐî.‡u\č"ž×5’íő­?Ňšü‡ďÖ=6ÔČnićFd×7•Ďg-§Ěű%­M≡bnŕ§^ę,ęřxúrŐŘŮ=ŠŕŞžŐÂTKí şČ°¨ĺ ëf†*+ƒĆ´#“Ăóxňü¤ßÍZĺuyú|3¸) endstream endobj 330 0 obj << /Type /Page /Contents 331 0 R /Resources 329 0 R /MediaBox [0 0 612 792] /Parent 321 0 R >> endobj 332 0 obj << /D [330 0 R /XYZ 90 720 null] >> endobj 333 0 obj << /D [330 0 R /XYZ 90 561.752 null] >> endobj 329 0 obj << /Font << /F55 9 0 R /F76 7 0 R >> /ProcSet [ /PDF /Text ] >> endobj 336 0 obj << /Length 289 /Filter /FlateDecode >> stream xڍ“MOƒ0Çď|Šá°Ú§/ŽŐ8§Îi 3.ĆĂ2ĹÝ4€&űöĐm$űŁáŇ<ýżüZ€˜đąX°žR<֖͗¨§ů3kÉY@?şžöv”Ç.8ĂHđXÄÄ\śĺŮ}hDôŕ.˜˛’kŠ}J=Í\dUřt'ó2ŤÁŠŰ´)˙‰S)˙ć9´š“ŇMóÉ49݉üI(ćŇö›ů|ż´ćvŤO‡IEë6űŠ“Ą­ŻXäĺžLď˝Ü—é=Ż kŘހţ ä/ĎčW ?’6źLďŔs:>Sô9ČOOô—ŽÁť+˛˛XŽtŔŠş­ÖWŇŚ+;nxŠ>YDDá-0}uŔM#ŤĂ#@¸ŽPf]îÉďŻú 7j@ endstream endobj 335 0 obj << /Type /Page /Contents 336 0 R /Resources 334 0 R /MediaBox [0 0 612 792] /Parent 321 0 R >> endobj 337 0 obj << /D [335 0 R /XYZ 90 720 null] >> endobj 334 0 obj << /Font << /F55 9 0 R >> /ProcSet [ /PDF /Text ] >> endobj 340 0 obj << /Length 375 /Filter /FlateDecode >> stream xڍ“ÁOÂ0Ćďü=v‡•v]Çęm+ =€ĆƐ¸Ap˜ŕ_oë@ÁźŠŮĽůŢ÷ýúŢËĘ5C’˘çDú!Z-úŠîžQ}HŽ[ěčsŃ=sĆşŐî %’J†ôňĽ3ôˆŐ*ÝVůÎq9ç8źr\ßx”j'ôq>ó'äX÷ëňžĚj§ťů›ă…8Ůl‹ź´ÇĘq™d‚bÁœ'}Óę鯜„çýłëü{€ ô ă~=Ŕâ°;ě퍆`: Œž&›'nďşüöš+[h÷;bœPi3Këó8 ůD8Ž<ŹÖUZ­7ĽŮUG`ľ)Š´Ě^OlO.ĹYˆ°:™âmşXWšMúɟ{° JĆkP4ƒZŁ2ő8‚V`ä¨Á7ří˙1‡3ŞAžŔ(uűď`y܀ĂőK§*,kŘ?ˆ†Ise ÎŻŒŐľáŹöş °—5¸§ ž ĽáÎ[˝:˝âćn ů endstream endobj 339 0 obj << /Type /Page /Contents 340 0 R /Resources 338 0 R /MediaBox [0 0 612 792] /Parent 321 0 R >> endobj 341 0 obj << /D [339 0 R /XYZ 90 720 null] >> endobj 174 0 obj << /D [339 0 R /XYZ 90 596.633 null] >> endobj 342 0 obj << /D [339 0 R /XYZ 90 573.36 null] >> endobj 338 0 obj << /Font << /F55 9 0 R /F76 7 0 R >> /ProcSet [ /PDF /Text ] >> endobj 345 0 obj << /Length 362 /Filter /FlateDecode >> stream xڍ“KoÂ0„ďů>:‡˜Ř‰ó8†ň*Q0mĽŞ‡BS‰€ÂĄ˙žvTëRqAžůfv-EŽüQť(ô<űÚT–ŰžÖŸH˙ÉŚí|Ž4:7ÎĄ°ÎuIěƉÝm”آw̙ý!ž‘1â3_Ś´Żł\ؑ‡‹7V7;e°Ć˘oáŒýsĺ|ĚŇf~MA,‚H:…[Ňrúłqš€Č@żČ’ĹĘHĽ—¨G(ď”ő\” ˛6Mő˘_Î@¨ÓV¸ůjŠ˘”Ÿ›ňX›°EjâžUa‘ɋ~Mh—§Úą;ď÷ĘĽ_´Šžˆ÷cCŃżFďř“¤Ss/&˘ćîޢË“0@Rwĺ]¨łĐ1ď#N˜íđ€áÄv(nƒG6ĹšĐńBŽŸŽU•ś'we:.ŕ7_ĺWĹĂľŐŮ˙ 1K endstream endobj 344 0 obj << /Type /Page /Contents 345 0 R /Resources 343 0 R /MediaBox [0 0 612 792] /Parent 321 0 R >> endobj 346 0 obj << /D [344 0 R /XYZ 90 720 null] >> endobj 347 0 obj << /D [344 0 R /XYZ 90 137 null] >> endobj 343 0 obj << /Font << /F55 9 0 R /F76 7 0 R >> /ProcSet [ /PDF /Text ] >> endobj 350 0 obj << /Length 474 /Filter /FlateDecode >> stream xڕTMoŰ0 ˝çWř(°*Y’#ďÖz놡‡!óa@ˇƒ+‰1Áv‚ôßOŠňa§ÚÁš|ä#i“ë‡ ”˘„‰`UÍđŃŰmk,żÎČ j`8B>dłťG΂Q‚dëqŞ,žAş•í :RJřCĆ8x’ ¨_Ń ˛GŢŐšE2đYía$€*›śRľ1’„p 8…˛ďł/ŮĽ-Eěß ßXÄĄk'ą`ˆPf#Ž( yoş ;HŔęWŮĺşÝiSU˛Î{ÓŮíDôČ"ŒxŮ|ŤbPfü$A8NŽ~ů“ř ňI\Œâ}Ýějť–•ň1_Óԝ{¸çřܕ`+ť=䱑ŤE^NŢ t˛ęˆ-vey4×Ú&Ä÷x]ąŮÂhqĂ:•ka¨ÁMߍž/ě-'ťqť q^]8-üU'ٍîIęđßO=/‹úŻkÜ?LˇrŁ:ľvі7îë§ {8×piŚHđądn%ßÉ­> endobj 351 0 obj << /D [349 0 R /XYZ 90 720 null] >> endobj 352 0 obj << /D [349 0 R /XYZ 90 720 null] >> endobj 353 0 obj << /D [349 0 R /XYZ 90 488.459 null] >> endobj 354 0 obj << /D [349 0 R /XYZ 90 350.795 null] >> endobj 348 0 obj << /Font << /F55 9 0 R /F76 7 0 R >> /ProcSet [ /PDF /Text ] >> endobj 358 0 obj << /Length 608 /Filter /FlateDecode >> stream xڍUM›0˝çWp„Jxń'Đ[ťĘVŞ*­Tq¨”ćŕ“EĺK@ÚîżďŘ&Yče•‰ç͛73{|°—F^L)JYâĺÍ.2§ĂÉł_žŮá0\ ?gťťÎ=Ą4Ją—•KŞŹđ>gÁ1űęф F°˜Óo2 ęŤd˜J ŘíłkNČ;ĺhäm="aSf+çŐ¤&# ZÁ1JÄ¸ŕ‹Œ›őw3ë% ‰Żäp+Ţ[ČÝC,ŠÚšXyU¤'äb.xÁd3Ž.M,Ď^/& 3´ů<\”#3ʐŕÄŘuí §qd>šÝeŢŻśÓ?ľ*N˛Ł˛}şŹTW§ÖéDp^A˛Ž'wůaćÝsŸJ÷騆JÎëjĺŽ˙őéiÍgr×Ŕu3YÄŮmL ŮňmĄĆ|¨ŢzwŽVc_Űn9=; 웜Ÿ—:őŸÎ?†ćÂo endstream endobj 357 0 obj << /Type /Page /Contents 358 0 R /Resources 356 0 R /MediaBox [0 0 612 792] /Parent 355 0 R >> endobj 359 0 obj << /D [357 0 R /XYZ 90 720 null] >> endobj 360 0 obj << /D [357 0 R /XYZ 90 587.343 null] >> endobj 361 0 obj << /D [357 0 R /XYZ 90 449.066 null] >> endobj 362 0 obj << /D [357 0 R /XYZ 90 356.182 null] >> endobj 356 0 obj << /Font << /F55 9 0 R /F76 7 0 R /F64 14 0 R /F56 25 0 R >> /ProcSet [ /PDF /Text ] >> endobj 365 0 obj << /Length 419 /Filter /FlateDecode >> stream xڍTMoŰ0 ˝çWř(°+YVj️+z*|(Đí ÚŒ#@˛IޚţúZqŇfłž|ä#ů`ž°éăIŒ+!˛Ş(“Ć.Ř>ęşd~Ü}]đ/ˆé óc˝¸ź–2á,ŤXœzuZŞn“ňi­6M…¤ü@Ó˘äVŐ´,Üçw´¤žžáąogfA>ĂOš—̰ąĐÇg )ݏdDJúŁžY|Š_eÉ<˙Oý‘ůţ˲ȸ(ćŔĆvSúÔ>ceuˆî5œ pJ8âŰ^9§"i÷|Öߎ*čĄGsgčÁž3^tŁŹä;“'Gż6° çQ§ťő|‰ż)3`ÍЛÝt(Qqň­ë-&Ec%tŤŸEüä"šFC`ĺŒę[ß`ŒWB€§ƒ´źd˜´#Bt+ÖD{Lő4qÔŁaŘĘ­ kŹm=8 Kѽިke÷v4A7ƒí›mDĆĺ)ĂëÉŢč&üᚲ‡pΈCď1ű×ŃÓҗ˫¸tĘə˝;‹WĘjłĂzxlßün”ř“xŢB endstream endobj 364 0 obj << /Type /Page /Contents 365 0 R /Resources 363 0 R /MediaBox [0 0 612 792] /Parent 355 0 R >> endobj 366 0 obj << /D [364 0 R /XYZ 90 720 null] >> endobj 363 0 obj << /Font << /F55 9 0 R >> /ProcSet [ /PDF /Text ] >> endobj 369 0 obj << /Length 283 /Filter /FlateDecode >> stream xڍ’ÍN„0…÷ť<ƒ˜f‡ÍŁ_7ŮSĚ!&ǖăÂTtJOc’Ç{#ě ŕ'`l…IŇ ‘Á€Nč`˛eŠúfCŇ2´Ě –OýŤáZ ŰZYŞRŤĄąÂ´ţ;ŒBĚđ‚Šž’ßIŠEń}ÓVVÁ@ĺ´4˘ ×wA‹Ť7Ę×\IÚR8Յôg˙Ŕ:_ůGyz~?8ÜÂ2 endstream endobj 368 0 obj << /Type /Page /Contents 369 0 R /Resources 367 0 R /MediaBox [0 0 612 792] /Parent 355 0 R >> endobj 370 0 obj << /D [368 0 R /XYZ 90 720 null] >> endobj 367 0 obj << /Font << /F55 9 0 R >> /ProcSet [ /PDF /Text ] >> endobj 481 0 obj << /Length 3833 /Filter /FlateDecode >> stream xÚíÝ]wŰĆŕ{˙ ^Ú=Őű`{'&všž$vmĽMOŰ J‚ežĐ”IĽöż/îgw ąMč"ޓ‹$ΘŻ3óhąAĎŞţ/>3ŐŹ‘’ŐÎŽŢ?І_ÝÜĚ˙đúű'Ü֝ő…gQĺüâÉ7/´žńŠ™ĘđŮĹۙćœí˙ŃU]\ĎţýT7Ďţ{ńˇ'Ď/ü+i!ˆ‘űĘ$łŠgźa‚kľĎě˙TuŤ—ęgžéZ<}ńĚȧ÷ëŤÝňvýěL6úéëëîĂţň͋Z͸bRŐb˙ gSu&&ľ9źĘúP(ůŹeŚŽ‡$[Ö˙NnäĄě?}쥲 VUm˙?0”üĺŮořáoâčßřĂ˙ík˙ ŽhÖr9ŤĽ`şŕqŐgQůHDł‚/9ĚLĘ$ŮôC†šlŤ“ä=ÝŻ5LËţ5+ÎmůžÓŕ-.ˇťÍâj—â“mŸŘ|­úŕŘąoĚŹďÓ}›­>‹ĘS0ŕ%`TJU0ŢOž˜lŤÇ“ÁKÉĆ~F¨Áögd<řř%ËşÂ~FˆÉîg&ŃďWwÝô…6tq•‚ď9Š—ŐöK~FčĐyŞ _ŠF9â‡ëůÇ&zęš)wT_\˝]Ś€DŐo&dôiż3cűMEĘq5ńGŘВ˝œŔŃşßלÎoëŰ˙­şë›÷ÝzˇÍlůk„ţCÂműCt(ǡ|dĐ´d?hœ Zé~ß߸AonË 1í aűM…Ęq8ńGŕВ=œŔ‘Šľ•pŽťˇ™ý¸îwďşŘĄű°mĽú帏xR#>hÉŢHN|ń;Żł>îV÷›Ĺ*URKf„ř ”`Cˇ˝˘=”ăCŰ?2tZ˛:HN†Î%k*w–~użíŽ3ÇÓoYë˛&<ô0,śÇT,ĄÇm -ŮcÉ –J2Ž…Ç˛ë2VŤš*V>󐛯í4•L(ÇÉÄĂĂŻ“= É(#Xí/‡\__ÝŽwůS-YŐđr!đȁkŃATŽ:8šˆD—b˛s“­`~ďŹ–ëŽœJ×ę˜}5>ĺ¨ß#C&ĹúÇ&#n8SĆřoşíśœ_|ńVÓľ•j#”ă8âIŠŐAKö<@râŁŽÂťŹ˝ÝíŐí}ż l2ǂ†Šć뻀 °Ł 帀xJŁhÉ^HNčŠIÓDVÝúf÷Žlh›Ű>ރPŽ;ˆ'2‖ě€äā4ŹUľwđűönq•٨ţÜľ.w&ŒŽ ś•TĄ7Ogdď@Kö&@rbB&ŒŰ!ŽşťwĺÜr˘eÄvšJ&”ădâፐĄ%{2 9!Ă[Ö(wíjľźY2‘ąŚ’ ĺ8™xxř,b˛'’2U˸™?•˝§ŢŽÚSą„rK<ś,´d$C,ý†ŐĘ]ťZ­vť˛žLłž¸NÉDĺ(™ŁáádˆÉŽ LNČô镻˛ĘîaĘ{ó§{oŢś›ĘĆWăj˘ůáűZŹ7s›ięáśÚĂí´ĹĚäflżŠhB9Ž&áZ˛w’8ľfŚmĂbł(‡§‰OśÓT2Ą'o„ -ٓÉ ­™’MXk ™ŠČŘNSɄrœL<ź2´dO$'d”bmëŽŐ˝_Źn ™‰ČŘNSɄrœL<ź2´dO$'d¤bRÚŤAçďßü¸¸č~ÍźhX[7E A†m(UF(ÇeÄ3Âď!&{ 9‘!$kZĺed]”Ë/_tůĹő˜Š%”ăXⱍ`Ą%{, 9ÁÂ%Ň]Ţ]gîKäş˙ă•ĎRô %×u*ŸPŽó‰9r˘%{> 9áS VťOČ.Ö7ŤrłâTŰi*™PŽ“‰‡7B†–ěɀdHFÁ¸[pîîşőőňC١|ţžĹö“č"TŁ,âIônZŹCb-gş1ĹćöCٲœxËâzL…Ęq)ńŘF¨Đ’˝œ`ix_č.Ém—ËŤ‚ĺÔXlŠXB9Ž%ŰZ˛Ç’,uĹTăî†ŰlËeš Šë4•L(ÇÉÄĂĂß^$&{2 9!Ł 3Â]ŒŰîĘ)ŃcœšŽSů„rœO<ȑ‡–ěů€ä„Ożu•ťÇî~÷îvSO§><ŮSą„rK<ś,´d$'XDËZáŽŐýZdóˆçMśőTCĄ7OSsÔ-ŮÉŮç…qÓ˙q*{¨œÓžvYžR÷č4â­b 'Ť‹ĘQuŽć ÇÄd§&Ջ7˝¤ÚJšŸçŽ—;jNxGë7N(ÇáÄ#ė+b˛‡’8ľěOˇěUÇËĹŚlŻc{íşNĺĘq>ń GÖZ˛ç’>űO­šç ^.śÝţÓÍŰߖw™ĎˇľLüA7OČ#-]sˆ´ŒĘŃGZő;ł/śĎŸ$&ťGZŽ&ƒ—¤%5ŘÁ >~É>ŻGLö°Ar[ Śmč|~^–ĹGYM§âńŐ¸hŠ#‡TRŹ—s›Ŕ‘œÝz9çe'6íNĚö›Š&”ăjâްĄ%{7 9#8Sţœq~>/pŚ…cűM…Ęq8ńGŕВ=œŔákuíáüŤŔ™Ží7N(ÇáÄ#CKöp@r§Ş˜tO̙Ͽ-›œGŮäŘŽSů„rœO<Č>´dĎ$C>­ ߉ĐëyU–I—Űn"›PŞ‰ç‡ŁĄĹ:3 ’i îŽ=™ż2“’ąí&’ Ő(™x~8ZŹ#bČHޘiřŹV5k¤ú9R‰âćG*ÍkZíťţŔ@Ů골<_´˙2)bęţk§`bގÜÓđÇŠ—ĺ85͢ăGlűMUĘq5ń5´ÔA HĚŤŞß;5ĺP5ąŰoŞšPŽŤ‰Gˆ¨ĄĽj@b^ —Ź5N͡ĺT|j5śßT5ĄWQCKԀļšJ0#˝šůEÍ´jlżŠjB9Ž&!˘†–:¨‰Y5ÚđţďAÍEQ3Š×o˘š¨Us4Âźbę^ LĚŤi9ŤÜç‰ćßţőü‡×ĺ~ŘÝëÇj{L•Ęq)ńŘ)´ÔA HĚKi*Vé#)og›*Ÿ°ŒŘśRq„rG<)-uŔó8tżDc˝+Ÿi>śßT5ĄWQCKԀļŐ2.#5?ź*ŸS|lŠRB9.%"…–:H‰y)˛aý˙ť˝Ż°ťZÜoťrđůňƒm+G(ÇqēJďHpĐR 1CÔýĄĹFΟ_—wăÝ×uޝPŽŰ‰‰,,´ÔÁHĚŰéiíí|Wě<ŠŰuޝPŽŰ‰‰ŘĄĽv@bŢNĽ˜0ÁΛ˛évÓkűMUĘq5ń5´ÔA HĚŞQF2)ýVćf‰}eCů†°Ď|恎ë4ŃKTŽz9žŹr^ˆŠ{/01ďĽL6îŁÝűr„zŒ#”ë:ŐN(Çíă̯5ÄÔÁHĚŰŮwÇęv‹r„šôĺúMUĘq5ńóçSÄÔA HĚŤŮ?‚ĹŘŠ¨™\í7UM(ÇŐÄ#DÔĐR5 1ŻFڌ[kŢfS˘?•//řÔ yĘ4ĚČÖ÷w|^Žú,*O”Ŕ—<(IHUø–ÄdW=š _2˙éQݘě0ƂÁK"­~0hŠĂHĚ˙`Ȗié0śÝfŮ垸Żj›ň}ŸÇčmď¨čC9Ž>ÇzRr@?’ _ňô´`~,źäzZę€$ćы†iűɡËĺeˇŢm>–çČ~úóüý¤˘đŐ¸‰h@ȁ9ˆ8ŽËƒŕ5ó†X^.wš3ŮňΧn]Ľ˛đŐ8‹hL RäŔâ8.ϢҬ֞Ĺjy{łYÜ˝űXžýÁúFźŻĆ <)rüq\vđŇ(V›tđŰÝÇÜcę÷Oć2}dŚś%ę†jtŚqó3ĽEîg âň3m%kDęÝýújWŽúŸÔw Ľ’帉xFZfQĐR 1Ϣ飝Ăůň˛|ĺÍ鏎ÇT)Ą—MćĽĐR) 1/ĽćŹ­ür“rXŮ%~â.Ńľ•Š#”ă8âI!ÇZę€$ćq芵Ę-#š[Ëa§#Ěuj'”ăvâAćß#Śv@bŢÎ~ĎŃ:;?]”ožö- ×oŞšPŽŤ‰Gˆ¨ĄĽj@b^čÍ})Ćüç_~*jŚUcűMUĘq5ńľČŞĄĽj@b^ oú_‹Ôź)7řLtÂl;MőĘq/ńđ/´ÔÁ HĚ{ŠĎu?lzowe_ó(űŰuޝPŽŰ‰‰ě‰iЃ˜ľ#LÍ*ĺ֚—ťwÝf[N˜žř„Éľ•ˆ#*GqM*ż°S÷8`bGŤYŐş'ˆžügyŇÍ´Ű×oŞšPŽŤ‰Gˆ¨ĄĽj@b^Íţ„SsűĄť~ţę͋”ŽRLÔŚĐa[IĘqńtňÇbę$ćAԒńځxő}ٟ<ŠŰuޝPŽŰ‰‰,&´ÔÁHĚŰт‰*Ř)‘™řdűMUĘq5ń5´ÔA HĚŤQœ ĺŐźűލ™Ví7UM(ÇŐÄ#DÔĐR5 1ŻFö&Z÷Üó×Ď_˝.×]Śšîâ:MőĘq/ńđ/´ÔÁ HĚ{á†I÷¤—›î÷Žx™Č‹í4ŐK(Ç˝ÄĂËż9MLź€Äź—Şe˛vëËĹë˛~”}°í:ŐN(ÇíăDÖZę`$fípÓ0U;ç?ż)ˇŔœř×c˘”¨•r4śźbę^ LĚKikŚÔ‘”ň˜ľ/ż˘ëÚJĹĘqń¤´ÔHĚăhúšˇîvéűժەeäÔˈí1UJ(ÇĽÄcË_´#ŚR@b^J­˜î~ÉßńR6ˇ'ŘÜşNS˝„rÜK<> endobj 371 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 631.835 297.029 638.808] /A << /S /GoTo /D (33) >> >> endobj 372 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [272.966 585.817 282.182 593.339] /A << /S /GoTo /D (34) >> >> endobj 373 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 585.817 297.029 593.339] /A << /S /GoTo /D (54) >> >> endobj 374 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 577.01 297.029 582.788] /A << /S /GoTo /D (54) >> >> endobj 375 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 566.459 297.029 572.237] /A << /S /GoTo /D (54) >> >> endobj 376 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 553.915 297.029 561.686] /A << /S /GoTo /D (54) >> >> endobj 377 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 545.357 297.029 551.135] /A << /S /GoTo /D (54) >> >> endobj 378 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 534.805 297.029 540.584] /A << /S /GoTo /D (54) >> >> endobj 379 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 522.262 297.029 530.033] /A << /S /GoTo /D (54) >> >> endobj 380 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 513.703 297.029 519.482] /A << /S /GoTo /D (54) >> >> endobj 381 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 503.152 297.029 508.931] /A << /S /GoTo /D (33) >> >> endobj 382 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 492.601 297.029 498.379] /A << /S /GoTo /D (34) >> >> endobj 383 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 482.05 297.029 487.828] /A << /S /GoTo /D (34) >> >> endobj 384 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 471.499 297.029 477.277] /A << /S /GoTo /D (47) >> >> endobj 385 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 460.948 297.029 466.726] /A << /S /GoTo /D (45) >> >> endobj 386 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 448.404 297.029 456.175] /A << /S /GoTo /D (45) >> >> endobj 387 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 437.853 297.029 445.624] /A << /S /GoTo /D (34) >> >> endobj 388 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 427.302 297.029 435.073] /A << /S /GoTo /D (34) >> >> endobj 389 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 416.751 297.029 424.522] /A << /S /GoTo /D (54) >> >> endobj 390 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 406.2 297.029 413.971] /A << /S /GoTo /D (54) >> >> endobj 391 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 397.641 297.029 403.42] /A << /S /GoTo /D (54) >> >> endobj 392 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 385.098 297.029 392.869] /A << /S /GoTo /D (34) >> >> endobj 393 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 374.547 297.029 382.317] /A << /S /GoTo /D (34) >> >> endobj 394 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 363.996 297.029 371.766] /A << /S /GoTo /D (34) >> >> endobj 395 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 353.444 297.029 361.215] /A << /S /GoTo /D (34) >> >> endobj 396 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 342.893 297.029 350.664] /A << /S /GoTo /D (34) >> >> endobj 397 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 334.335 297.029 340.113] /A << /S /GoTo /D (33) >> >> endobj 398 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 323.784 297.029 329.562] /A << /S /GoTo /D (33) >> >> endobj 399 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 313.233 297.029 319.011] /A << /S /GoTo /D (34) >> >> endobj 400 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 300.689 297.029 308.46] /A << /S /GoTo /D (34) >> >> endobj 401 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 290.138 297.029 297.909] /A << /S /GoTo /D (35) >> >> endobj 402 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 279.587 297.029 287.358] /A << /S /GoTo /D (35) >> >> endobj 403 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 271.028 297.029 276.807] /A << /S /GoTo /D (35) >> >> endobj 404 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 258.485 297.029 266.255] /A << /S /GoTo /D (54) >> >> endobj 405 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 249.926 297.029 255.704] /A << /S /GoTo /D (35) >> >> endobj 406 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 239.375 297.029 245.153] /A << /S /GoTo /D (35) >> >> endobj 407 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 228.824 297.029 234.602] /A << /S /GoTo /D (51) >> >> endobj 408 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 184.714 297.029 190.492] /A << /S /GoTo /D (33) >> >> endobj 409 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 174.163 297.029 179.941] /A << /S /GoTo /D (51) >> >> endobj 410 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 163.612 297.029 169.39] /A << /S /GoTo /D (33) >> >> endobj 411 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [272.966 151.068 282.182 158.839] /A << /S /GoTo /D (35) >> >> endobj 412 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 151.068 297.029 158.839] /A << /S /GoTo /D (45) >> >> endobj 413 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 142.51 297.029 148.288] /A << /S /GoTo /D (51) >> >> endobj 414 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 131.958 297.029 137.737] /A << /S /GoTo /D (51) >> >> endobj 415 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 121.407 297.029 127.186] /A << /S /GoTo /D (51) >> >> endobj 416 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 110.856 297.029 116.635] /A << /S /GoTo /D (51) >> >> endobj 417 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 100.305 297.029 106.083] /A << /S /GoTo /D (51) >> >> endobj 418 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 89.754 297.029 95.532] /A << /S /GoTo /D (51) >> >> endobj 419 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 77.958 297.029 84.981] /A << /S /GoTo /D (51) >> >> endobj 420 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 646.775 522 652.553] /A << /S /GoTo /D (51) >> >> endobj 421 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 635.814 522 641.593] /A << /S /GoTo /D (51) >> >> endobj 422 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 623.609 522 630.632] /A << /S /GoTo /D (51) >> >> endobj 423 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 613.894 522 619.672] /A << /S /GoTo /D (51) >> >> endobj 424 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 602.934 522 608.712] /A << /S /GoTo /D (51) >> >> endobj 425 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 591.974 522 597.752] /A << /S /GoTo /D (51) >> >> endobj 426 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 581.013 522 586.792] /A << /S /GoTo /D (51) >> >> endobj 427 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 570.053 522 575.831] /A << /S /GoTo /D (51) >> >> endobj 428 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 559.093 522 564.871] /A << /S /GoTo /D (51) >> >> endobj 429 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 548.133 522 553.911] /A << /S /GoTo /D (51) >> >> endobj 430 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 537.172 522 542.951] /A << /S /GoTo /D (35) >> >> endobj 431 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 526.212 522 531.991] /A << /S /GoTo /D (51) >> >> endobj 432 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 515.252 522 521.03] /A << /S /GoTo /D (51) >> >> endobj 433 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 504.292 522 510.07] /A << /S /GoTo /D (51) >> >> endobj 434 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 491.339 522 499.11] /A << /S /GoTo /D (30) >> >> endobj 435 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 482.371 522 488.15] /A << /S /GoTo /D (51) >> >> endobj 436 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 471.411 522 477.189] /A << /S /GoTo /D (35) >> >> endobj 437 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 460.451 522 466.229] /A << /S /GoTo /D (35) >> >> endobj 438 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [497.938 447.747 507.153 455.269] /A << /S /GoTo /D (31) >> >> endobj 439 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 447.747 522 455.269] /A << /S /GoTo /D (54) >> >> endobj 440 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [497.938 436.787 507.153 444.309] /A << /S /GoTo /D (31) >> >> endobj 441 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 436.787 522 444.309] /A << /S /GoTo /D (54) >> >> endobj 442 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 425.578 522 433.349] /A << /S /GoTo /D (35) >> >> endobj 443 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 416.61 522 422.388] /A << /S /GoTo /D (35) >> >> endobj 444 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 403.657 522 411.428] /A << /S /GoTo /D (35) >> >> endobj 445 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 392.697 522 400.468] /A << /S /GoTo /D (35) >> >> endobj 446 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 381.737 522 389.508] /A << /S /GoTo /D (53) >> >> endobj 447 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 372.769 522 378.548] /A << /S /GoTo /D (33) >> >> endobj 448 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 359.816 522 367.587] /A << /S /GoTo /D (35) >> >> endobj 449 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 350.849 522 356.627] /A << /S /GoTo /D (51) >> >> endobj 450 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 339.889 522 345.667] /A << /S /GoTo /D (51) >> >> endobj 451 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 328.928 522 334.707] /A << /S /GoTo /D (52) >> >> endobj 452 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 317.968 522 323.746] /A << /S /GoTo /D (52) >> >> endobj 453 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 307.008 522 312.786] /A << /S /GoTo /D (35) >> >> endobj 454 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 296.048 522 301.826] /A << /S /GoTo /D (52) >> >> endobj 455 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 285.087 522 290.866] /A << /S /GoTo /D (52) >> >> endobj 456 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 274.127 522 279.906] /A << /S /GoTo /D (35) >> >> endobj 457 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 263.167 522 268.945] /A << /S /GoTo /D (52) >> >> endobj 458 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 252.207 522 257.985] /A << /S /GoTo /D (52) >> >> endobj 459 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 241.247 522 247.025] /A << /S /GoTo /D (52) >> >> endobj 460 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 230.286 522 236.065] /A << /S /GoTo /D (52) >> >> endobj 461 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 219.326 522 225.105] /A << /S /GoTo /D (33) >> >> endobj 462 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 208.366 522 214.144] /A << /S /GoTo /D (52) >> >> endobj 463 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 197.406 522 203.184] /A << /S /GoTo /D (52) >> >> endobj 464 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 186.446 522 192.224] /A << /S /GoTo /D (52) >> >> endobj 465 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 175.485 522 181.264] /A << /S /GoTo /D (35) >> >> endobj 466 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 164.525 522 170.303] /A << /S /GoTo /D (52) >> >> endobj 467 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 153.565 522 159.343] /A << /S /GoTo /D (52) >> >> endobj 468 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 142.605 522 148.383] /A << /S /GoTo /D (52) >> >> endobj 469 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 131.644 522 137.423] /A << /S /GoTo /D (52) >> >> endobj 482 0 obj << /D [480 0 R /XYZ 90 720 null] >> endobj 483 0 obj << /D [480 0 R /XYZ 90 720 null] >> endobj 479 0 obj << /Font << /F55 9 0 R /F76 7 0 R /F64 14 0 R /F31 484 0 R /F8 485 0 R /F2 486 0 R >> /ProcSet [ /PDF /Text ] >> endobj 605 0 obj << /Length 4303 /Filter /FlateDecode >> stream xÚíÝKsÜĆđť>ą*cxĺf˖ĺÄq\“Š+•-­L–)’ĹGĘúöÁ‚ƒéFcüK$t°Ś|ÍýÓÝżf1ťX{P كž:h˝7}č^ż{R˙öę׃ťż9üuφÂgŹňëŁ'_ž¨ë[™žęíÁŃ[ţPGoţó§şűâżG=đ3Á…áQĆűĂńѝ˙ÓîßîęćížŕɡG)Ľvüuö•‹ß§ml0>4n˙űt˝Š}ĐtÁXîҟďż|áíAgúŚ űşĘ„fxÄá'm×ܕ˝ž+ëXUkŞŞ›ţ'ţňĹ3ŰÚť?ÜěŸěý˙ís˙1s×ľŚłţ iz`îSő3V>ÎŢąYɇgćý"š†ęz49V/’g˜†'AS÷Ć÷}”t|ś´dëá׳ÓGý€Ć'vĺCĺ:>HoU>Xrâ#’|BgşzŇsYô|=wMGń¤jÝ›˘ŻU:Pl’3]Ŕńń•MrnN/Ηz|=œîę˘?/Ĺś˘6¨\ÇÁ'ľ˘KNź2Xr"#’%™şoŒ­Ś•đîěúôöşŹgźž™Ú ú`媏٤‚ęLž|Č䅏Ž6u=]ąŮßěŽ2ǔŢTś)<îű Kě1Š…Ęu,|luPą`É ‹H^`ikSU-ÇrzţëŇKĆ5ĺ:ߪ‰ŘJÔ•ë&řtô ˜œLˆä…‰&˜PwÜÄŮéů.ƒ˘3Mű™›Đ0̍\ÇŔÇâ+–œ0ˆä†Úďw2"†ˇٗ6eú ÔŠÓ(*×Éđá­,@°äDF$/Čoü´ţ89žĚ.@ĘúôC(w]Eu¤j“××Pl˘1]ČđnźFĎi<ÍŘčM÷ٟX°cFl(Ş‚Ęu|F+.°äC$/d87,0]’qU. mť>‰ýFáPš‡peąŠ%'8"yÇZÓÚéĘëÉîřMYŸl´>‰FÉPšN†oe}‚%'2"yAڞĆ6!‘yý[!ł™Ři” •ëdřđô÷ހɉŒH–dB_ ŚkŽ'§ĺÝŸâŠĘÔu+WůĚП¤Ŕ䉏L^đé*S5q­ýźđůD|b×Q>TŽóáƒ\áƒ%'>"yÁ§éMm§‹´§WŻËâxÓĹńÔo•ëpřWŕ`É ŽH^ŔŠ÷˙8]É=˝Ůeáô]9đ8ZˇoZęé=#ŠŐĎXů‡xH GçŒíšŤ×“ĹCŽÉVŸ`đô|X ž?äÝn—şŒ“ÓóA$/žĄ3ÁĆëĄĎľçC9>ځ4ö…Cĺ:>Â8Xr‚#’püŢŇqôŤňŠq›WŒąŃ(˜T­{a“ŤĘŠMZćą ,Ž5ŢYŇrüöíéďťĚ…ŠÚ›ŞýlOžŘ>ԕëřDVXrb ’lcÚÖ1g—e#ěÁaS[QTŽűŕ“Zń%'"yáŁjŒsžV#ĹÇŁřˆmE}PšîƒOjĹ–œ|ˆdéĂ÷ľiÚ0;~”ÝŇě–N e°rUĆlFş 0y’!“2şÚXWs7ĺČńŕ#ÇÔVÔ•ë>ř¤V|`ÉɇH^řhƒŠŰ†ŸYŠGđۊú rÝŸÔŠ,9ůÉ M ŰŮńٜYrf‰ EePš.ƒĎhE–œdˆä…Œá%ihšŒëó‹ŰóňŢß9L̍\ÇŔDz‚KNDňCpŚwlűŕřöćä"ó֬Лŕ?‡O({SŁŔ=VŽî ĚzŸšp/ŕƒÉӞŔj˛xČő=4xBž<ČűcÉ šH^ ÷Îř–í ¨ČËOĹ{ˆb rË ,9aÉ ÎšÎËŢÓrĺ[ÝuUŞul+ ŘD`ť`­qťx~ü.łMč;Swm™˙ü4{‡žŠ\? ňqʜąät\KyĎi žĚŻĎň>őXrb/’îŤĘ´žmVüřSůÔđ#jxę1Š…Ęu,|lúţ&˜œ°ˆd‰ĹőŐđaçɋóň Ń\3M=1°rĂl,ú›ĚŔä ƒL^`h{ÓxśMqYŢąÍúję4J†Ęu2|xúÉLNdDň‚L3œHŚŰŔ=/d6$;’Ąr Ţ ,9‘É 2ő°âNŸ*ޓyZÖ'ź>™zŒbĄr Ű ,9aÉ ,Ą5=ż^šiÁVǗŘi” •ëdřđôá€É‰ŒH^ńíx ;’ ™­ČÄNŁd¨\'ǡBKNdDň‚ŒkL×őě(SNI~JŠ=FąPšŽ…m –œ°ˆäŰţ"éf÷űMŮq˙ř÷ŘOÔEŞÖY°­¨€bŠyěÂDU›śgךßďr7žPřúý>ŮěaygmŸúsOˇcő3Vžœ˛xHízYÓďk49VŻ'‹‡TŽ'ÇëÝ`đt }5X<¤ś×ťÁäéúj˛xČőKčhđôT^ ž?ä}Of,9=›E˛|:Űž6.¸ůÓůiš—âG|t{j%h‚•Ť&fÓŃ_‰‚É“ ™ź0Ń Żz?7‘ŰZ)WĘu ą‡(*×1đąčŰ&`r ’Ú`ls —šS~y{AÎAlę€Ęu|"ú‰LNDňÂAăMÝOoß˙­|ăħ{Ů0ľ5Dĺş!>ÍĐŠ†°ädH$/ íaş~6HŢ\Üţrśť<ţ5ł;,[÷Ç| Ą :ö4•ëƒć-סWÁä4h‘źtp&ô-t~ÄeUyż‰ŘJÔ•ë&řtVL`ÉɄH^˜đ–žŔďuţ­ĺbőŁŹ9b§Q2TŽ“áĂÓoz&'2"yAĆYöí‹g×ŮŰü—„}čk“ŘVÔ•ë>ř¤ôo°““‘źđa+úzĹłŰ_ŽoOËőé‡,4ďú‰şHŐ: 6 • ›PĚc&ŞŠ}sâĹťwťóň1ŇG8fÄś˘6¨\ÇÁ'ľň:KNőŘRbQ)TŽKácS¤`ŠŁ‘˜—R;ăúéZ÷íĽrűtW˜<ĆŐŇ4čŘuÔ•ëvř ;XęhG$ćíkšôQľ÷WÇei˛íŇ$öUCĺş>ÂĐgŐ`ŠŁ‘˜W㭙žwóůχ_4ۢšk7j&UëdŘü1Päf—÷2pu›Ž2ż0ۂ‰ýFĹPšN†P1ƒĽŽhDb^M՛.Ôé0óuQł­šŘoT •ëjř5Xę¨F$fŐÔ}o\şSĂűňm0Ť™ú Şa媚ŮójŔÔ˝™˜WÓuŚI_}ńóáó˘f[5ąß¨*×Őđ*j°ÔQHĚŤi;SU kN”7š”ýżÜ H͝F˝Pšî…Oń‚ĽŽ^DbŢËţĂ.ÓűŞ÷G™—ĹËF^b§Q/TŽ{áĂSź`ŠŁ‘˜÷R7C4;ź\Ÿ(o0(׀?ŕÜs×U”FŞÖe°1)0 ČŃĹ<.Ď"4ĆNß6F^˝,.î"ś…Aĺş >)…–:Ú‰yĂÜëşN7e%ťíJ6öUCĺş>BE –:މy5Ă˛ŁŸ>ţ7Rž)jśUűŞĄr] Ą˘KՈğšáOďútŹ)_šąšŘoT •ëjř5Xę¨F$ćŐTŢ´śIǚo‹šmŐÄ~Łj¨\WĂG¨¨ÁRG5"1Ť&ôŢ؊vŞwWť˙•Eďƒ˝S[AŹ\Ĺ1›T˜şÇ!ó8şý'Â,RżýWÁńpą­(*×qđI)8°Ô‡HĚăh­éŘe”ÝŐűňNşG~'ÝÔcT •ëRřŘ)Xę(E$ćĽ4Ö¸Śf‡‘Ÿ‹”Ç–{ŒJĄr] ›"KĽˆÄź”ş2MMťĚoËvÓ5ěÔoT •ëjř5Xę¨F$ćՄĘTžv™_5ŰŞ‰ýFŐPšŽ†PQƒĽŽjDb^ÍpĆ Žv™ËLJ6VűŞĄr] Ą˘KՈğۙΆtŹůލŮVMě7ކĘu5|„Š,uT#ójŞÎ¸ô™ö÷W'EÍśjbżQ5TŽŤá#TÔ`ŠŁ‘˜UăűÖÔmHż,j6U3őTĂĘU5łćՀŠ{521ŻŚk†?i§úäęÍőyšŠĘ‡ßT%Í06eAĺ: >#…–:˛‰ymc|C[Ń/żyőcańąĄ( *×Yđ),°Ô‘…HĚłhjÓÚk>-ç˜mĎ1ąß¨*×ŐđÖUV –:މy5umʧ*~_ÔlŤ&öUCĺş>BE –:މy5!˜Ú:Ö\Ÿ\•Ű˝=äО rŸ‘ÂKYˆÄ< ďMoi—ůűW/ ‹°ˆ EYPšÎ‚ĎHaĽŽ,Dbž…óĆő´żü[9Çl{މýFŐPšŽ†PQƒĽŽjDb^ÍÝt´×üˇ˘f[5ąß¨*×Őđ*j°ÔQHĚŤŠœŠZÚw>+jśUűŞĄr] Ą˘KՈď×[č ˇ?4›˘‰íÍPľJ†Ď//‹Üƒqy/]eş@÷kyWŔl &öCĺ:>BĹ –:˘‰y5í`ÂӎóߋšmŐÄ~Łj¨\WĂG¨¨ÁRG5"1ŻŚîMăhÇůź¨ŮVMě7ކĘu5|„Š,uT#ójBoŞŠvœ,jśUűŞĄr] Ą˘KՈğßßӎóEQł­šŘoT •ëjř5Xę¨F$ćŐ¸vˆŚťśüٍŮVMě7ކĘu5|„Š,uT#ójlk,˝„ş,hśEs×nÔLŞÖɰů)b ČĚ<.ďĽjL]ÓNőOĚś`bżQ1TŽ“á#TĚ`Š#‘˜Uł˙‚í>ĐNőUQłŠšŠß VŽŞ™0ŻLÝŤ‘‰y5]mź§ěâf[5ąß¨*×Őđ*j°ÔQHĚŤiƒi-ís_5ŰŞ‰ýFŐPšŽ†PQƒĽŽjDb^MŒ­hóéUQł­šŘoT •ëjř5Xę¨F$ćŐÔބžîörýöŚ|6ŕ!oľšО rŸ‘ÂKYˆÄ<‹ŕ űœŃŤGĺŁRq×OEŞÖM°)$ ČQÄ<.Â;ăşĚr]îŔ˝Ń•§NŁV¨\LJ§hÁRG."1ďĹYÓÔ´GýŞÜ{+/ąÓ¨*×˝đá)^°ÔыHĚ{ąÖTv§oĘęuŰŐkě7ކĘu5|„Š,uT#ójŞĘG÷y9*jśUűŞĄr] Ą˘KՈďšnXśZşÍËmAł)šŘnĐ UŤdřüňb°Č=—őÂżÎ|8ČüłxŮÔ ô˝đÉËĘ×ы\ń˛ůDř){ endstream endobj 604 0 obj << /Type /Page /Contents 605 0 R /Resources 603 0 R /MediaBox [0 0 612 792] /Parent 355 0 R /Annots [ 470 0 R 471 0 R 472 0 R 473 0 R 474 0 R 475 0 R 476 0 R 477 0 R 478 0 R 487 0 R 488 0 R 489 0 R 490 0 R 491 0 R 492 0 R 493 0 R 494 0 R 495 0 R 496 0 R 497 0 R 498 0 R 499 0 R 500 0 R 501 0 R 502 0 R 503 0 R 504 0 R 505 0 R 506 0 R 507 0 R 508 0 R 509 0 R 510 0 R 511 0 R 512 0 R 513 0 R 514 0 R 515 0 R 516 0 R 517 0 R 518 0 R 519 0 R 520 0 R 521 0 R 522 0 R 523 0 R 524 0 R 525 0 R 526 0 R 527 0 R 528 0 R 529 0 R 530 0 R 531 0 R 532 0 R 533 0 R 534 0 R 535 0 R 536 0 R 537 0 R 538 0 R 539 0 R 540 0 R 541 0 R 542 0 R 543 0 R 544 0 R 545 0 R 546 0 R 547 0 R 548 0 R 549 0 R 550 0 R 551 0 R 552 0 R 553 0 R 554 0 R 555 0 R 556 0 R 557 0 R 558 0 R 559 0 R 560 0 R 561 0 R 562 0 R 563 0 R 564 0 R 565 0 R 566 0 R 567 0 R 568 0 R 569 0 R 570 0 R 571 0 R 572 0 R 573 0 R 574 0 R 575 0 R 576 0 R 577 0 R 578 0 R 579 0 R 580 0 R 581 0 R 582 0 R 583 0 R 584 0 R 585 0 R 586 0 R 587 0 R 588 0 R 589 0 R 590 0 R 591 0 R 592 0 R 593 0 R 594 0 R 595 0 R 596 0 R 597 0 R ] >> endobj 470 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 669.948 297.029 675.726] /A << /S /GoTo /D (33) >> >> endobj 471 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 659.399 297.029 665.177] /A << /S /GoTo /D (31) >> >> endobj 472 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 646.858 297.029 654.628] /A << /S /GoTo /D (35) >> >> endobj 473 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 636.308 297.029 644.079] /A << /S /GoTo /D (35) >> >> endobj 474 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 627.752 297.029 633.53] /A << /S /GoTo /D (47) >> >> endobj 475 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 617.203 297.029 622.981] /A << /S /GoTo /D (35) >> >> endobj 476 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 606.654 297.029 612.432] /A << /S /GoTo /D (35) >> >> endobj 477 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 596.105 297.029 601.883] /A << /S /GoTo /D (45) >> >> endobj 478 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 585.556 297.029 591.334] /A << /S /GoTo /D (54) >> >> endobj 487 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 573.014 297.029 580.785] /A << /S /GoTo /D (35) >> >> endobj 488 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 564.458 297.029 570.236] /A << /S /GoTo /D (30) >> >> endobj 489 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 553.909 297.029 559.687] /A << /S /GoTo /D (45) >> >> endobj 490 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 541.367 297.029 549.138] /A << /S /GoTo /D (34) >> >> endobj 491 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 530.818 297.029 538.589] /A << /S /GoTo /D (34) >> >> endobj 492 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 522.262 297.029 528.04] /A << /S /GoTo /D (35) >> >> endobj 493 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 511.713 297.029 517.491] /A << /S /GoTo /D (45) >> >> endobj 494 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 501.164 297.029 506.942] /A << /S /GoTo /D (33) >> >> endobj 495 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 490.615 297.029 496.393] /A << /S /GoTo /D (35) >> >> endobj 496 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 480.066 297.029 485.844] /A << /S /GoTo /D (35) >> >> endobj 497 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 469.517 297.029 475.295] /A << /S /GoTo /D (35) >> >> endobj 498 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [272.966 457.224 282.182 464.746] /A << /S /GoTo /D (35) >> >> endobj 499 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 457.224 297.029 464.746] /A << /S /GoTo /D (53) >> >> endobj 500 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 448.419 297.029 454.197] /A << /S /GoTo /D (53) >> >> endobj 501 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 437.87 297.029 443.648] /A << /S /GoTo /D (52) >> >> endobj 502 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 427.321 297.029 433.099] /A << /S /GoTo /D (53) >> >> endobj 503 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 414.779 297.029 422.55] /A << /S /GoTo /D (53) >> >> endobj 504 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 404.23 297.029 412.001] /A << /S /GoTo /D (53) >> >> endobj 505 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 393.681 297.029 401.452] /A << /S /GoTo /D (53) >> >> endobj 506 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 385.125 297.029 390.903] /A << /S /GoTo /D (53) >> >> endobj 507 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 374.576 297.029 380.354] /A << /S /GoTo /D (53) >> >> endobj 508 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 364.027 297.029 369.805] /A << /S /GoTo /D (53) >> >> endobj 509 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 353.477 297.029 359.256] /A << /S /GoTo /D (53) >> >> endobj 510 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [272.966 341.185 282.182 348.707] /A << /S /GoTo /D (52) >> >> endobj 511 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 341.185 297.029 348.707] /A << /S /GoTo /D (53) >> >> endobj 512 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 332.379 297.029 338.158] /A << /S /GoTo /D (53) >> >> endobj 513 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 321.83 297.029 327.609] /A << /S /GoTo /D (53) >> >> endobj 514 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [272.966 309.538 282.182 317.06] /A << /S /GoTo /D (52) >> >> endobj 515 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 309.538 297.029 317.06] /A << /S /GoTo /D (53) >> >> endobj 516 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 300.732 297.029 306.511] /A << /S /GoTo /D (52) >> >> endobj 517 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 290.183 297.029 295.962] /A << /S /GoTo /D (35) >> >> endobj 518 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 277.642 297.029 285.413] /A << /S /GoTo /D (53) >> >> endobj 519 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 267.093 297.029 274.864] /A << /S /GoTo /D (53) >> >> endobj 520 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 256.544 297.029 264.315] /A << /S /GoTo /D (53) >> >> endobj 521 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 247.987 297.029 253.766] /A << /S /GoTo /D (54) >> >> endobj 522 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 237.438 297.029 243.217] /A << /S /GoTo /D (54) >> >> endobj 523 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 226.889 297.029 232.668] /A << /S /GoTo /D (54) >> >> endobj 524 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 216.34 297.029 222.119] /A << /S /GoTo /D (54) >> >> endobj 525 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [258.119 203.799 267.335 211.57] /A << /S /GoTo /D (52) >> >> endobj 526 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [272.966 203.799 282.182 211.57] /A << /S /GoTo /D (53) >> >> endobj 527 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 203.799 297.029 211.57] /A << /S /GoTo /D (54) >> >> endobj 528 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 193.25 297.029 201.021] /A << /S /GoTo /D (53) >> >> endobj 529 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 182.701 297.029 190.472] /A << /S /GoTo /D (52) >> >> endobj 530 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 172.152 297.029 179.922] /A << /S /GoTo /D (54) >> >> endobj 531 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 163.595 297.029 169.373] /A << /S /GoTo /D (48) >> >> endobj 532 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 151.054 297.029 158.824] /A << /S /GoTo /D (35) >> >> endobj 533 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 140.505 297.029 148.275] /A << /S /GoTo /D (35) >> >> endobj 534 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 131.948 297.029 137.726] /A << /S /GoTo /D (45) >> >> endobj 535 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 119.407 297.029 127.177] /A << /S /GoTo /D (47) >> >> endobj 536 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 110.85 297.029 116.628] /A << /S /GoTo /D (35) >> >> endobj 537 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 100.301 297.029 106.079] /A << /S /GoTo /D (54) >> >> endobj 538 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 87.759 297.029 95.53] /A << /S /GoTo /D (54) >> >> endobj 539 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 77.21 297.029 84.981] /A << /S /GoTo /D (54) >> >> endobj 540 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 682.142 522 689.913] /A << /S /GoTo /D (35) >> >> endobj 541 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 673.522 522 679.3] /A << /S /GoTo /D (36) >> >> endobj 542 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 660.916 522 668.687] /A << /S /GoTo /D (36) >> >> endobj 543 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 650.303 522 658.074] /A << /S /GoTo /D (36) >> >> endobj 544 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 639.691 522 647.461] /A << /S /GoTo /D (49) >> >> endobj 545 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 631.07 522 636.849] /A << /S /GoTo /D (49) >> >> endobj 546 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 618.465 522 626.236] /A << /S /GoTo /D (49) >> >> endobj 547 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 609.845 522 615.623] /A << /S /GoTo /D (49) >> >> endobj 548 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 597.239 522 605.01] /A << /S /GoTo /D (49) >> >> endobj 549 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 588.619 522 594.397] /A << /S /GoTo /D (49) >> >> endobj 550 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 576.014 522 583.784] /A << /S /GoTo /D (49) >> >> endobj 551 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 567.393 522 573.172] /A << /S /GoTo /D (49) >> >> endobj 552 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 554.788 522 562.559] /A << /S /GoTo /D (49) >> >> endobj 553 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 546.168 522 551.946] /A << /S /GoTo /D (49) >> >> endobj 554 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 533.562 522 541.333] /A << /S /GoTo /D (49) >> >> endobj 555 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 524.942 522 530.72] /A << /S /GoTo /D (49) >> >> endobj 556 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 512.337 522 520.107] /A << /S /GoTo /D (49) >> >> endobj 557 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 503.716 522 509.495] /A << /S /GoTo /D (49) >> >> endobj 558 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 491.111 522 498.882] /A << /S /GoTo /D (49) >> >> endobj 559 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 482.491 522 488.269] /A << /S /GoTo /D (49) >> >> endobj 560 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 469.885 522 477.656] /A << /S /GoTo /D (49) >> >> endobj 561 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 461.265 522 467.043] /A << /S /GoTo /D (49) >> >> endobj 562 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 448.66 522 456.43] /A << /S /GoTo /D (49) >> >> endobj 563 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 440.039 522 445.818] /A << /S /GoTo /D (49) >> >> endobj 564 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 427.434 522 435.205] /A << /S /GoTo /D (49) >> >> endobj 565 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 418.814 522 424.592] /A << /S /GoTo /D (49) >> >> endobj 566 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 406.208 522 413.979] /A << /S /GoTo /D (49) >> >> endobj 567 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 397.588 522 403.366] /A << /S /GoTo /D (49) >> >> endobj 568 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 384.983 522 392.753] /A << /S /GoTo /D (49) >> >> endobj 569 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 376.362 522 382.141] /A << /S /GoTo /D (49) >> >> endobj 570 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 363.757 522 371.528] /A << /S /GoTo /D (50) >> >> endobj 571 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 355.137 522 360.915] /A << /S /GoTo /D (50) >> >> endobj 572 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 342.531 522 350.302] /A << /S /GoTo /D (50) >> >> endobj 573 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 333.911 522 339.689] /A << /S /GoTo /D (50) >> >> endobj 574 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 321.306 522 329.076] /A << /S /GoTo /D (50) >> >> endobj 575 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 312.685 522 318.464] /A << /S /GoTo /D (50) >> >> endobj 576 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 300.08 522 307.851] /A << /S /GoTo /D (50) >> >> endobj 577 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 291.46 522 297.238] /A << /S /GoTo /D (50) >> >> endobj 578 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 278.854 522 286.625] /A << /S /GoTo /D (50) >> >> endobj 579 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 270.234 522 276.012] /A << /S /GoTo /D (50) >> >> endobj 580 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 257.629 522 265.399] /A << /S /GoTo /D (50) >> >> endobj 581 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 249.008 522 254.787] /A << /S /GoTo /D (50) >> >> endobj 582 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 236.403 522 244.174] /A << /S /GoTo /D (50) >> >> endobj 583 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 227.783 522 233.561] /A << /S /GoTo /D (50) >> >> endobj 584 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 215.177 522 222.948] /A << /S /GoTo /D (50) >> >> endobj 585 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 206.557 522 212.335] /A << /S /GoTo /D (50) >> >> endobj 586 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 193.952 522 201.722] /A << /S /GoTo /D (50) >> >> endobj 587 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 185.331 522 191.11] /A << /S /GoTo /D (50) >> >> endobj 588 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 172.726 522 180.497] /A << /S /GoTo /D (50) >> >> endobj 589 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 164.106 522 169.884] /A << /S /GoTo /D (50) >> >> endobj 590 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 151.5 522 159.271] /A << /S /GoTo /D (50) >> >> endobj 591 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 142.88 522 148.658] /A << /S /GoTo /D (50) >> >> endobj 592 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 130.275 522 138.045] /A << /S /GoTo /D (50) >> >> endobj 593 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 121.654 522 127.433] /A << /S /GoTo /D (50) >> >> endobj 594 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 109.049 522 116.82] /A << /S /GoTo /D (50) >> >> endobj 595 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 100.429 522 106.207] /A << /S /GoTo /D (50) >> >> endobj 596 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 87.823 522 95.594] /A << /S /GoTo /D (50) >> >> endobj 597 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 79.203 522 84.981] /A << /S /GoTo /D (50) >> >> endobj 606 0 obj << /D [604 0 R /XYZ 90 720 null] >> endobj 603 0 obj << /Font << /F55 9 0 R /F76 7 0 R /F31 484 0 R /F8 485 0 R /F2 486 0 R >> /ProcSet [ /PDF /Text ] >> endobj 711 0 obj << /Length 4152 /Filter /FlateDecode >> stream xÚíŰsÜśĹßýWčŃÎÔđÚˇ4‰ÓöĄÓqÎ¤>ŹW\i§{‘÷âZůëKB¸ÄGK˘faú Ć>Ú#ç'ŕ#‚ü"ëţÇ/šě˘’’5y}ąÜžĘԟŽ.îţĎűŸ^q­{Ű ßzĘ?}xő흢¸ŕk˛†_|Xůőáňâ߯żż^ܜÚÛˇRĘ×ÍűŻůëwoęüőyˇ<­÷ťťżůËî˛ýňć­(›Jž.š7˙ůđ×W?~°Ć…ŕOŘ+G?˘ä5kĘ2×?aYçŒËüî'\Ţ>÷~ßžŤ=•Č˜ŕ˛űLĽé~n^ńť/bđ_üţż{AßÄ&ęŠŐ]M˝§Ł3귞\Ĺ'ü\‚TńŮČšŠX&ÔYŤGÎ#p*ɊşÔh˙ňţŸ œyÁŃőFÁqr? p0g Nŕ<§”,“ľqnrrVň<‘~…ŒŽ4ŠŒ“ÓČřáM ƒ9[dç2…`yc‡š_žKÄĚDĚ]ĄQ`ʚćĹKnČÖŇ2´Á’óŽăn|9'Zf˘EWĹĹÉi^üđ Nƒ9[bç2’3Ůän€ů9!32şŇ(2NN#ă‡71Ć`ΙŔy„L×ÜÖyiG™_Sű;oűŤë‚ăä48~„c ćlÁ œGŕđ‹Ś˛cÍż8ó‚Łë‚ăä48~„ŕ`ΜŔ9§hV™^ŞqŽÓ$5Ď$e* "ăÉIdáŃȀΙĐy„LÝ0‘q7Öü9!32şŇ(2NN#ă‡7 ćl‘ œŤň‚çLćĽč˝ťż,d÷™EÓý‘Śő‡;fle,/ťO힓׺óşŁŐYfu"ë ž˘.// ˜:'§ŠÓ•™”$u˜łĽ.p T˛…ôŒzš8ľŠ)šľ)2őFÁqr?BY’ŕ`ΜŔyN7}eĽŠ./÷§ÎźŕčzŁŕ89 ŽáĈƒ9[pç8\˛BpÎ1ľF3ľFşŇ(2NN#ă‡71Ö`ΙŔy„L&XSéľÉÚĺfqhßď?ž§ď÷Űíb通’U5˙ De¨˙éh†NNgčW3/Č 1g›aŕf˜7‚ĺ"§3üf"Ďx×ćŠßBŠD|ć_ ĆçÉÉř…¤ăM|Ąó(žšłşŇKv—í*VŃýx<ŮOŠŽ:Š“ÓřřANŕƒ9[|ç>gRÔŸŤCŰ.ŰÍq}ŽLţĽd/$*t]+4t'§C÷Ë?:ćlCœGĄ—Y7 ›Ě7§´ÝdŚFOĆŞi^źäč.łľ´ mG°ÝŐ˘´=^˘e>ZtĽQ\œœćĹoĚŮ8‘ +í*h{\Ö7j7ďœB˛Źzą˝ Ĺ.ʁ“Óř‰9Éćl9œGˆ†qYÎ_nöë]lY!ŻYY˝đჂA×…ÁÉiüXňš„sś0Î#x͊Ú,hŻ‹ešGf?tĽQdœœFĆobÁœ-2ó™Źf™47Ý֋í>ś˘$ –—E‚RtYQ>œœćĂOj‚ĚŮň8‡|ČN˜7fĹúŽăy}J}4N˜ňxr’ƒA"4 łá tqP—ŹÉĽáŕxłYÜn§ëÄƁ.ʁ“Óř‰Đý&čl9œGT%“é7×§Ó~ť8ü7ŇnćL”iĆÔaJ‰2áä4~:tŰ :[&çeÁęÜ´ëĎi}üYđŃUGńqr?ȉŠsśřÎ#|Š‚‰ĆŹ•î—çmť‹ô݅pýâŻ`ąÉF%ĂÉi2üŒ&&Ěْ8Ččf‘Ş‚ąÜ,ŽéĆÉ8óťRĄ‘[5¸W{úŽ fkóڎâ–]Ӑ‰aŢÇÓíŚMyňÖľBwr:qżü‘cÎ6óŔyşŹ,ĚBvl+]jfhtŐQ|œœĆÇ’ŢQ:[|ç>\2ž•ŸöSZňœéVWEĆÉidüđ&úMĚŮ"8É+ ŰožVëÍ&-y>~FŇeEůprš?Š >0gËGŕň!ÁĚ0ÄÝ´šűéîžérƒŘ85IŸ fk˜ lGČÔ\=›¤™9ܴǛĹr˝ťJë(o]+4p'§÷ËOwŽ łÍ 5ĽD™prš ?‰asśLÎ#&ƌIó ۉ‰Ç0ĄK‰2áä4~:L`Ζ‰Ŕ9úpŤ+ Ž?bˇśŤÍ~q:ś7‹Ăâ´?DuŹżĎ•‚‚—L řžş'§ĄĐšű Ŕœ-óh Č őÎ]Đą ´ě1>şę(>NNăă9ćlń œC|xS0!őpŇn#ôĆŤ4ÁÜű a\ݐڕĐÖ÷ž¸´ú­'ƒ|ä(ă“jĄž÷ľzÚ9řHĺüęw5ÖżÓĆÏźťkDöĺ łůݝGżuî6âśŰ›ët?럊7 Ž“ÓŕřJňĐق8ŔŠúÇK ÎéöŘŚя¸m Š’áä4~Fôt :[2çeş°^ˆlwËMRćRt˝QpœœǏ0ŻHp0g Nŕ<§ß iŚ˘ŘÎęÔĺ?}—Ż‹ŽÂcŐ4;^ŠłdkÉڎŔÉűㆅ%g˝ť9§šč1s‘.(J…“ÓXřMĚE˜ł#p‘!űc…ݘ˛ŰÇŽJˇ/żvĘŃeEůprš?Љqsś|Î#>D†p9ŕ#žG;íԏq Ë‡rŕä4~"ăćl9œGđĚmćŐœÚ/éɐ]>”'§9đĄoS‚ΖƒŔyÄA֟đŰ: Žë_ŰtKę!Ľ.%ʄ“ÓLřéLĚ˜łe"p™¨VććĂîx>´ńgšŇCă$ ş„ NM’ŕgBO˜­á ° 1¨úSyÍM„Ýyۢ‡ Ś‘á^t%Aœš¤Á†^9Çl í€ÉsÖtMŔŕľníÍqőq˙…¸ş(÷ŽŹŞ đ5xF=ůžđ#‰Ł#čÚżąqňĹ{ŽŞßŒ-Ťuěٌ´(q_“i3ÔEąpr ?# ĚUa8Ćą(%ăć,Ý‹ő&vQ3žvĚĐeEápr?)ĚUÁ8Ćá(+Íą&í§~CÜâ63tAQ,œœĆÂĎhÜm(,0W…EŕÇ"]3’ąř†č=›ÄĹÔ8ĄK‰áä4~:˜Ť"pŒ!9Ť„é->bÇ쪚ҢöWśl¸şŇ(/NNóâ‡GĚ+˜Ťâ%pŒó"8ć8¤öÓy?ý0Í+0ş (NNcágD #˜ŤÂ"pŒcÁ3VŐ‹4Ż…ĘZW ÍÚÉéŹýÂYcŽ*ëŔ1žu^uײŚ3ů˛>FŚhXĆÓ*ű×>÷ecŐ5FIqrš?6˘Á\)ăđaă•‚÷˙œ†ĺf3Á;âiă~+!3gú­ťĺíj;+]*ߏMV°źÂąqr­™`0W…Mŕ`ňŚűZű@\ˇ‹ËÄ€0Ľđä$ƒtâ@€Ž=ĄcˆşNĚů\ń Š'}žÔÔĽĆÉijüăł誨 ăÔT9˄޻ôîű¤ŤŕgqtŐQvœœfÇr|š¸bsUěŽqvúçér=ë­"§gqÎňô¸ÜIŚô(@NNä§I„š*€Ç8@ýĂ ćČŔŐúę|hÓEŇ_$™٤89MŠ[üĆčŞH ă¤ä‚će°w¤|“v­=zך)+ ‡“ÓpřIp`Ž ŽŔ1‡,kôԷڜ×÷ýťNˆ‡§Dzxj. “Óř‰—?˜Ť‚ pŒC 8+9÷ Ř´Ť´@ň îT—ÂÉi ütˆQsU@Žq şî“›WI+ ëŤëSznękć]C”'§Iđc!HŔ\ cœ„,ceŽO’\펷ۏűMÚ}öˆŤ]P '§ąđ3"–>0W…EŕĹB6ăĽiöűq8CÂÄÂÄ““X 2?qۇ şöX„Žq,Şţ%ÎC*ˆ#*–W/o9•J˙ŽnhřVMgď0K•üĐ.|Ů0ŢÉÇżOÉ’×…CŁwr:{? â÷sUéŽńř‹šUźĆOœÁ‘â÷ăׅCăwr:~?‹řő#čŞâăńw—öřÓŐţ°ˆóœÖ"GŠŽ1JГӤřąÉ*J ćŞH ă¤ČĘžlouX,Ó}ÖYŻAušQfʚFĆˏ ˛TŔ í⟈ЉR?Gń.3;0şŢ(1NN#ăGH0ƒš*hÇ85źTÖf˜ŮśńĂ=ŇŐ)zuŞ Šbáä4~F˜ŤÂ"pŒc‘•Lš÷~Žíny=ýň*ůň^^eăŃľBwr:qżüD☍Jđ|˝°Ž<ŠUÓôxQđ@–ŠĄ]ŞęŽ“+ĂÎ~۞é ĘÇĄ Š"áä4~Fń›¸ Ť˘"pŒcQVîA˙ŤöSꉟŁ'6UGŮqrš?Hb@Á\;cœ˘ě =^Ľ§ŮžsđŃĽGrr ?M ĚU8ĆĘËîŞ]_Ç]möÇă"ÍIÂBĹÂÉi,üŒ,0W…EŕÇBvSNS ąhwŃ~ĺĽßą3ľBwr:qżüD☍JĽÍBłŢ 0őFŠqrš?B‚ĚUQ8ĆŠÉr–çŚő8,>ˇiĺmŚ•7]i”'§yńÓ2Ę ćŞx Łź4˛˙#ƒKš že‚ŇEÉqj?Ĺř8ƒYöŘvQjjÉň:ˇÔ¤ŠiŢŠI—äĹŠI^üüâźLYţ`W7 endstream endobj 710 0 obj << /Type /Page /Contents 711 0 R /Resources 709 0 R /MediaBox [0 0 612 792] /Parent 713 0 R /Annots [ 598 0 R 599 0 R 600 0 R 601 0 R 602 0 R 607 0 R 608 0 R 609 0 R 610 0 R 611 0 R 612 0 R 613 0 R 614 0 R 615 0 R 616 0 R 617 0 R 618 0 R 619 0 R 620 0 R 621 0 R 622 0 R 623 0 R 624 0 R 625 0 R 626 0 R 627 0 R 628 0 R 629 0 R 630 0 R 631 0 R 632 0 R 633 0 R 634 0 R 635 0 R 636 0 R 637 0 R 638 0 R 639 0 R 640 0 R 641 0 R 642 0 R 643 0 R 644 0 R 645 0 R 646 0 R 647 0 R 648 0 R 649 0 R 650 0 R 651 0 R 652 0 R 653 0 R 654 0 R 655 0 R 656 0 R 657 0 R 658 0 R 659 0 R 660 0 R 661 0 R 662 0 R 663 0 R 664 0 R 665 0 R 666 0 R 667 0 R 668 0 R 669 0 R 670 0 R 671 0 R 672 0 R 673 0 R 674 0 R 675 0 R 676 0 R 677 0 R 678 0 R 679 0 R 680 0 R 681 0 R 682 0 R 683 0 R 684 0 R 685 0 R 686 0 R 687 0 R 688 0 R 689 0 R 690 0 R 691 0 R 692 0 R 693 0 R 694 0 R 695 0 R 696 0 R 697 0 R 698 0 R 699 0 R 700 0 R 701 0 R 702 0 R 703 0 R 704 0 R 705 0 R 706 0 R ] >> endobj 598 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 682.142 297.029 689.913] /A << /S /GoTo /D (50) >> >> endobj 599 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 673.586 297.029 679.365] /A << /S /GoTo /D (50) >> >> endobj 600 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 661.046 297.029 668.817] /A << /S /GoTo /D (50) >> >> endobj 601 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 652.49 297.029 658.268] /A << /S /GoTo /D (50) >> >> endobj 602 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 639.949 297.029 647.72] /A << /S /GoTo /D (51) >> >> endobj 607 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 631.394 297.029 637.172] /A << /S /GoTo /D (50) >> >> endobj 608 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 618.853 297.029 626.624] /A << /S /GoTo /D (51) >> >> endobj 609 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 610.297 297.029 616.076] /A << /S /GoTo /D (51) >> >> endobj 610 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 597.757 297.029 605.528] /A << /S /GoTo /D (51) >> >> endobj 611 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 589.201 297.029 594.979] /A << /S /GoTo /D (51) >> >> endobj 612 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 545.165 297.029 550.943] /A << /S /GoTo /D (33) >> >> endobj 613 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 534.617 297.029 540.395] /A << /S /GoTo /D (36) >> >> endobj 614 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 524.069 297.029 529.847] /A << /S /GoTo /D (33) >> >> endobj 615 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 513.521 297.029 519.299] /A << /S /GoTo /D (36) >> >> endobj 616 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 502.972 297.029 508.751] /A << /S /GoTo /D (45) >> >> endobj 617 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 492.424 297.029 498.203] /A << /S /GoTo /D (45) >> >> endobj 618 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 481.876 297.029 487.654] /A << /S /GoTo /D (45) >> >> endobj 619 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 469.335 297.029 477.106] /A << /S /GoTo /D (45) >> >> endobj 620 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 460.78 297.029 466.558] /A << /S /GoTo /D (36) >> >> endobj 621 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 450.232 297.029 456.01] /A << /S /GoTo /D (36) >> >> endobj 622 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 437.691 297.029 445.462] /A << /S /GoTo /D (54) >> >> endobj 623 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 427.143 297.029 434.914] /A << /S /GoTo /D (48) >> >> endobj 624 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 418.587 297.029 424.366] /A << /S /GoTo /D (36) >> >> endobj 625 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 408.039 297.029 413.817] /A << /S /GoTo /D (36) >> >> endobj 626 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 397.491 297.029 403.269] /A << /S /GoTo /D (36) >> >> endobj 627 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 384.95 297.029 392.721] /A << /S /GoTo /D (54) >> >> endobj 628 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 376.395 297.029 382.173] /A << /S /GoTo /D (48) >> >> endobj 629 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 365.847 297.029 371.625] /A << /S /GoTo /D (36) >> >> endobj 630 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 355.298 297.029 361.077] /A << /S /GoTo /D (54) >> >> endobj 631 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 344.75 297.029 350.529] /A << /S /GoTo /D (45) >> >> endobj 632 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 332.21 297.029 339.98] /A << /S /GoTo /D (45) >> >> endobj 633 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 323.654 297.029 329.432] /A << /S /GoTo /D (33) >> >> endobj 634 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 311.113 297.029 318.884] /A << /S /GoTo /D (36) >> >> endobj 635 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 302.558 297.029 308.336] /A << /S /GoTo /D (36) >> >> endobj 636 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 292.01 297.029 297.788] /A << /S /GoTo /D (36) >> >> endobj 637 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 279.469 297.029 287.24] /A << /S /GoTo /D (45) >> >> endobj 638 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 270.913 297.029 276.692] /A << /S /GoTo /D (36) >> >> endobj 639 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 260.365 297.029 266.143] /A << /S /GoTo /D (36) >> >> endobj 640 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 214.336 297.029 222.107] /A << /S /GoTo /D (36) >> >> endobj 641 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 205.781 297.029 211.559] /A << /S /GoTo /D (36) >> >> endobj 642 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [272.966 193.489 282.182 201.011] /A << /S /GoTo /D (31) >> >> endobj 643 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 193.489 297.029 201.011] /A << /S /GoTo /D (55) >> >> endobj 644 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 182.692 297.029 190.463] /A << /S /GoTo /D (31) >> >> endobj 645 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 172.144 297.029 179.915] /A << /S /GoTo /D (36) >> >> endobj 646 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 163.588 297.029 169.366] /A << /S /GoTo /D (47) >> >> endobj 647 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 153.04 297.029 158.818] /A << /S /GoTo /D (31) >> >> endobj 648 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 140.499 297.029 148.27] /A << /S /GoTo /D (36) >> >> endobj 649 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 131.944 297.029 137.722] /A << /S /GoTo /D (31) >> >> endobj 650 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 121.396 297.029 127.174] /A << /S /GoTo /D (36) >> >> endobj 651 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 110.847 297.029 116.626] /A << /S /GoTo /D (45) >> >> endobj 652 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 100.299 297.029 106.078] /A << /S /GoTo /D (31) >> >> endobj 653 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 89.751 297.029 95.529] /A << /S /GoTo /D (36) >> >> endobj 654 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 79.203 297.029 84.981] /A << /S /GoTo /D (55) >> >> endobj 655 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 682.142 522 689.913] /A << /S /GoTo /D (36) >> >> endobj 656 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 671.659 522 679.43] /A << /S /GoTo /D (36) >> >> endobj 657 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 661.177 522 668.948] /A << /S /GoTo /D (36) >> >> endobj 658 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 650.694 522 658.465] /A << /S /GoTo /D (55) >> >> endobj 659 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 640.212 522 647.983] /A << /S /GoTo /D (55) >> >> endobj 660 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 629.729 522 637.5] /A << /S /GoTo /D (36) >> >> endobj 661 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 619.247 522 627.017] /A << /S /GoTo /D (55) >> >> endobj 662 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 608.764 522 616.535] /A << /S /GoTo /D (55) >> >> endobj 663 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 598.281 522 606.052] /A << /S /GoTo /D (36) >> >> endobj 664 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 589.791 522 595.57] /A << /S /GoTo /D (36) >> >> endobj 665 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 579.309 522 585.087] /A << /S /GoTo /D (45) >> >> endobj 666 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 568.826 522 574.605] /A << /S /GoTo /D (45) >> >> endobj 667 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 556.351 522 564.122] /A << /S /GoTo /D (45) >> >> endobj 668 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 547.861 522 553.639] /A << /S /GoTo /D (36) >> >> endobj 669 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 503.479 522 511.249] /A << /S /GoTo /D (45) >> >> endobj 670 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 492.996 522 500.767] /A << /S /GoTo /D (45) >> >> endobj 671 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 484.506 522 490.284] /A << /S /GoTo /D (36) >> >> endobj 672 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 474.023 522 479.802] /A << /S /GoTo /D (48) >> >> endobj 673 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 461.548 522 469.319] /A << /S /GoTo /D (48) >> >> endobj 674 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 451.066 522 458.837] /A << /S /GoTo /D (55) >> >> endobj 675 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 440.583 522 448.354] /A << /S /GoTo /D (55) >> >> endobj 676 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 432.093 522 437.871] /A << /S /GoTo /D (45) >> >> endobj 677 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 421.611 522 427.389] /A << /S /GoTo /D (55) >> >> endobj 678 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 409.135 522 416.906] /A << /S /GoTo /D (55) >> >> endobj 679 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 398.653 522 406.424] /A << /S /GoTo /D (36) >> >> endobj 680 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 390.163 522 395.941] /A << /S /GoTo /D (31) >> >> endobj 681 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 379.68 522 385.459] /A << /S /GoTo /D (36) >> >> endobj 682 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 369.198 522 374.976] /A << /S /GoTo /D (31) >> >> endobj 683 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 358.715 522 364.493] /A << /S /GoTo /D (45) >> >> endobj 684 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 348.233 522 354.011] /A << /S /GoTo /D (37) >> >> endobj 685 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 337.75 522 343.528] /A << /S /GoTo /D (37) >> >> endobj 686 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 327.267 522 333.046] /A << /S /GoTo /D (37) >> >> endobj 687 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 316.785 522 322.563] /A << /S /GoTo /D (37) >> >> endobj 688 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 304.31 522 312.081] /A << /S /GoTo /D (37) >> >> endobj 689 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 295.82 522 301.598] /A << /S /GoTo /D (52) >> >> endobj 690 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 285.337 522 291.115] /A << /S /GoTo /D (52) >> >> endobj 691 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 274.855 522 280.633] /A << /S /GoTo /D (52) >> >> endobj 692 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 264.372 522 270.15] /A << /S /GoTo /D (52) >> >> endobj 693 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 251.897 522 259.668] /A << /S /GoTo /D (48) >> >> endobj 694 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 207.282 522 215.053] /A << /S /GoTo /D (37) >> >> endobj 695 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 198.792 522 204.57] /A << /S /GoTo /D (37) >> >> endobj 696 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 186.317 522 194.088] /A << /S /GoTo /D (37) >> >> endobj 697 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 175.834 522 183.605] /A << /S /GoTo /D (45) >> >> endobj 698 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 165.352 522 173.123] /A << /S /GoTo /D (37) >> >> endobj 699 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 154.869 522 162.64] /A << /S /GoTo /D (37) >> >> endobj 700 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 144.387 522 152.158] /A << /S /GoTo /D (37) >> >> endobj 701 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 133.904 522 141.675] /A << /S /GoTo /D (37) >> >> endobj 702 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 123.422 522 131.192] /A << /S /GoTo /D (48) >> >> endobj 703 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 112.939 522 120.71] /A << /S /GoTo /D (48) >> >> endobj 704 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 102.456 522 110.227] /A << /S /GoTo /D (33) >> >> endobj 705 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 91.974 522 99.745] /A << /S /GoTo /D (48) >> >> endobj 706 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 81.491 522 89.262] /A << /S /GoTo /D (48) >> >> endobj 712 0 obj << /D [710 0 R /XYZ 90 720 null] >> endobj 709 0 obj << /Font << /F55 9 0 R /F31 484 0 R /F8 485 0 R /F2 486 0 R /F76 7 0 R >> /ProcSet [ /PDF /Text ] >> endobj 828 0 obj << /Length 4162 /Filter /FlateDecode >> stream xÚí]sÜś†ďý+tgj„$~ôŽíäłžJՙĚtzA[”´őjWÝ]5v}I‡8ÜăXÔL#L.œ8ŻůĘç}öĂ`yQŒ˙”]qŃH):Ő^źż{U˜ß=Ü\<ţËĎßż*­îÍ(|”ž|őÍwZ_”…čŠŽź¸ź†—şźşřÇWuńúŸ—?]ČśŞRăUĚďží/_ˇňŤá—ępşžŻž˝ô.şŞ˜?Ԍ~žŚž(•ŞŽŚŸ§í„–ÝEÝ*QJőčţĂäřÍw˛źhEW×jŇBŐăÇ?Yľz&kŞEŃşżÄ_ż)›ňń—jö_ĺů˙÷Ň˙Ęźjіň˘Ž;ŃŞîLîNýČMöČ _Ňd&eä܍ĄV×ŮŞ#çL㇠֝¨jű!¸í˙éWýî*FJľ˘n^8R ś†\‚œ†ƢixÎäÁ0…Ü636§á.ŚAKQ4ĺKŁâŔ–ËAÓŔD8ŕ9{sālEYÔ3> ýa;\ŸƒM%šJ˙.Y ‚śőáätаä Aóœ}ĐČ9 şj„Žtôass›Jşeő;¨ˆme¸91,öBÄi‡°Uçâä4>0ȅů!ĎŮボ#|ŠZČZZ|Ţő‡˜ŸŞŐřóe~ž¤ďŘzsÁ rĄlHpxÎäŒÁѝM[9pö38Ť‚ăęÍČIpfŇŕ08Ř9§Ő˘*J ÎĐ_ÝéŮHž#Ľa°5äÂä4 0ĽIxÎäÁĐ(QW…ăpƒ ľPľÎ}„ÇcUštx5 ˆi –­Gcn‘Q+QČÎŁq86Š.ĄĚ’G†c[J.ANÓY:xÎ ä1ĄĽPÚ1ąÝě†Ä¤c¤ŞT™‡/[ęr•ć"ä420ź…&ÂsöČ çU‰śqëßűëëăpĘ#̗0śŹ\>‚œć&ľŔĎŮóœ#>d%Fąĺă¸ůon)kľ[i.2AN#Ă[…xÎä!S•˘)ÝęůqŰoĚt˘5™™3€‚Ĺ֘ KÓ°ŔŘ`á9{XsKYŠRşřă}˙~Ȱ<5,śĆ\X‚œ†Ćś ĎŮœ#XŠBh­ ,_çÉʗOVlYš|9ÍLjžłç9c>TۉŽq‹ő§ťmuľŰîúíx/ô!&Ľ˛˙§ž‚ËŘTÓßĹ˙˝Ď”ŃŞßy ş$ŕXş˛­¸ÎV˝ěŒ.iœ˙@1Ë5śĚ.Ď/ů8ÁŽ)f™ÎŽYě1ŰtBvU`vżŰ~J4ľN´/~ľ—5vĺ’ä40#MŢz1=Č9"ŁnÍӞŒĂpCŸżHöE[An_ rş/ÂPú"ĎŮ÷Ĺ%gtÉ3}‘iěč_4ž_ň\_ä9{ú‘sDżnEĺ†ň‡›!}şę7fśÜ\lźšŚä'K–­gfn!ŁQťÄ?dfVgĆ֛ MÓÔŔ°á9{nsŽ…nˇń˙ţŰ ÎşŕŘzsÁ rá8ANăƒ\Ŕ‡çěńAÎ>ăşlOĽVĽl˝šŕ9 Œpžł9GŕŒsnÝŐœł i|˜ÎěáÓ*Q5n-fłŮňdeÉŠŤ4™ §‘áћ՘Îä!ÓHQwĽC&ILžŹ<ÝdĹ՛ NÓŕŔŔá9{psN-…ŰŽńcâl˘˛*Skl-ł•çäŐ4@ Ę~XśŸšmDŽ„ŽÜ đ.ăóŒřŘŇsů r ˜ćAbäE\ގXîŘAqúŒź+Ł-—ƒ §9€‰,pŔsö gĚAŮu˘vgnvWCňvĐýYő\Őšč9Í rĄyňœ==Č9ÂglÚogߟúüľűş5[o.8ANƒ#\‡çěÁAÎ8ĽßȞj;c#nň“{Ÿ˝<äĆM[_îHäôP #K<ě†NžłŒ—œŃ%Ď ÇLc÷ŮX4ž_ňĚQ5Lg˙Ů@ÎŃgŁPBú˝ú§á.yNh>˜ís{§-+— §ů€I-đÁsö| gĚG'Gsˇş~:Ţö÷yżŔgí°döĆ &[#L„îŒ<[×—lç\n‹LWKý˘ëě‚g˜çŮ:ä‘íüD9ţťoAfŻ3ý‰8ŔœPVőŻô‰]n›Oßgő8ekƖS7ĹÓš—ŘZń› Ž€C$Ž˜^‡ËłœŢ›‹ěĐd'¤´7â]Í~>ô÷÷=ąÖ˜é߸Öč˜આTÓLY q×c âšސă iŚ{#U㯭´–†Ă.ß+Ż2Ęűˆm˝šÔ9M ŒhE> endobj 707 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 669.849 297.029 675.627] /A << /S /GoTo /D (33) >> >> endobj 708 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 659.268 297.029 665.046] /A << /S /GoTo /D (53) >> >> endobj 714 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 648.687 297.029 654.465] /A << /S /GoTo /D (53) >> >> endobj 715 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 636.114 297.029 643.885] /A << /S /GoTo /D (53) >> >> endobj 716 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 625.533 297.029 633.304] /A << /S /GoTo /D (53) >> >> endobj 717 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 616.944 297.029 622.723] /A << /S /GoTo /D (33) >> >> endobj 718 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 606.363 297.029 612.142] /A << /S /GoTo /D (37) >> >> endobj 719 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 595.782 297.029 601.561] /A << /S /GoTo /D (37) >> >> endobj 720 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 583.209 297.029 590.98] /A << /S /GoTo /D (45) >> >> endobj 721 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 572.628 297.029 580.399] /A << /S /GoTo /D (45) >> >> endobj 722 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 564.039 297.029 569.818] /A << /S /GoTo /D (37) >> >> endobj 723 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 553.459 297.029 559.237] /A << /S /GoTo /D (45) >> >> endobj 724 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 542.878 297.029 548.656] /A << /S /GoTo /D (45) >> >> endobj 725 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 532.297 297.029 538.075] /A << /S /GoTo /D (37) >> >> endobj 726 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 521.716 297.029 527.494] /A << /S /GoTo /D (37) >> >> endobj 727 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 509.142 297.029 516.913] /A << /S /GoTo /D (37) >> >> endobj 728 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 498.561 297.029 506.332] /A << /S /GoTo /D (37) >> >> endobj 729 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [272.966 488.229 282.182 495.751] /A << /S /GoTo /D (37) >> >> endobj 730 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 488.229 297.029 495.751] /A << /S /GoTo /D (46) >> >> endobj 731 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 477.399 297.029 485.17] /A << /S /GoTo /D (55) >> >> endobj 732 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [272.966 467.067 282.182 474.589] /A << /S /GoTo /D (37) >> >> endobj 733 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 467.067 297.029 474.589] /A << /S /GoTo /D (46) >> >> endobj 734 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 456.237 297.029 464.008] /A << /S /GoTo /D (31) >> >> endobj 735 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 445.656 297.029 453.427] /A << /S /GoTo /D (31) >> >> endobj 736 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 437.068 297.029 442.846] /A << /S /GoTo /D (31) >> >> endobj 737 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 424.494 297.029 432.265] /A << /S /GoTo /D (46) >> >> endobj 738 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 379.501 297.029 385.279] /A << /S /GoTo /D (33) >> >> endobj 739 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 368.92 297.029 374.698] /A << /S /GoTo /D (48) >> >> endobj 740 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 358.339 297.029 364.117] /A << /S /GoTo /D (48) >> >> endobj 741 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 347.758 297.029 353.536] /A << /S /GoTo /D (48) >> >> endobj 742 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 337.177 297.029 342.955] /A << /S /GoTo /D (48) >> >> endobj 743 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 326.596 297.029 332.374] /A << /S /GoTo /D (48) >> >> endobj 744 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 316.015 297.029 321.794] /A << /S /GoTo /D (48) >> >> endobj 745 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 305.434 297.029 311.213] /A << /S /GoTo /D (46) >> >> endobj 746 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 294.853 297.029 300.632] /A << /S /GoTo /D (46) >> >> endobj 747 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 284.272 297.029 290.051] /A << /S /GoTo /D (37) >> >> endobj 748 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 273.691 297.029 279.47] /A << /S /GoTo /D (37) >> >> endobj 749 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 263.11 297.029 268.889] /A << /S /GoTo /D (37) >> >> endobj 750 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 252.529 297.029 258.308] /A << /S /GoTo /D (37) >> >> endobj 751 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [272.966 240.205 282.182 247.727] /A << /S /GoTo /D (37) >> >> endobj 752 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 240.205 297.029 247.727] /A << /S /GoTo /D (46) >> >> endobj 753 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 229.375 297.029 237.146] /A << /S /GoTo /D (37) >> >> endobj 754 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 218.794 297.029 226.565] /A << /S /GoTo /D (37) >> >> endobj 755 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 208.213 297.029 215.984] /A << /S /GoTo /D (37) >> >> endobj 756 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 199.625 297.029 205.403] /A << /S /GoTo /D (37) >> >> endobj 757 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 189.044 297.029 194.822] /A << /S /GoTo /D (37) >> >> endobj 758 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 176.47 297.029 184.241] /A << /S /GoTo /D (38) >> >> endobj 759 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 167.882 297.029 173.66] /A << /S /GoTo /D (48) >> >> endobj 760 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 155.308 297.029 163.079] /A << /S /GoTo /D (38) >> >> endobj 761 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [272.966 144.727 282.182 152.498] /A << /S /GoTo /D (38) >> >> endobj 762 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 144.727 297.029 152.498] /A << /S /GoTo /D (46) >> >> endobj 763 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 136.139 297.029 141.917] /A << /S /GoTo /D (38) >> >> endobj 764 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 125.558 297.029 131.336] /A << /S /GoTo /D (38) >> >> endobj 765 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [272.966 113.234 282.182 120.755] /A << /S /GoTo /D (31) >> >> endobj 766 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 113.234 297.029 120.755] /A << /S /GoTo /D (55) >> >> endobj 767 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 104.396 297.029 110.174] /A << /S /GoTo /D (55) >> >> endobj 768 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [272.966 91.823 282.182 99.593] /A << /S /GoTo /D (31) >> >> endobj 769 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 91.823 297.029 99.593] /A << /S /GoTo /D (55) >> >> endobj 770 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 668.137 522 675.908] /A << /S /GoTo /D (33) >> >> endobj 771 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 623.334 522 631.105] /A << /S /GoTo /D (38) >> >> endobj 772 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 614.837 522 620.615] /A << /S /GoTo /D (33) >> >> endobj 773 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 572.25 522 578.029] /A << /S /GoTo /D (33) >> >> endobj 774 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 561.76 522 567.538] /A << /S /GoTo /D (33) >> >> endobj 775 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 551.27 522 557.048] /A << /S /GoTo /D (38) >> >> endobj 776 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 540.779 522 546.558] /A << /S /GoTo /D (38) >> >> endobj 777 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 530.289 522 536.067] /A << /S /GoTo /D (38) >> >> endobj 778 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 519.799 522 525.577] /A << /S /GoTo /D (38) >> >> endobj 779 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 507.316 522 515.087] /A << /S /GoTo /D (55) >> >> endobj 780 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 496.825 522 504.596] /A << /S /GoTo /D (38) >> >> endobj 781 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 486.335 522 494.106] /A << /S /GoTo /D (31) >> >> endobj 782 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 475.845 522 483.615] /A << /S /GoTo /D (31) >> >> endobj 783 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 467.347 522 473.125] /A << /S /GoTo /D (31) >> >> endobj 784 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 456.856 522 462.635] /A << /S /GoTo /D (33) >> >> endobj 785 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 446.366 522 452.144] /A << /S /GoTo /D (33) >> >> endobj 786 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 435.876 522 441.654] /A << /S /GoTo /D (33) >> >> endobj 787 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 423.393 522 431.164] /A << /S /GoTo /D (55) >> >> endobj 788 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 414.895 522 420.673] /A << /S /GoTo /D (46) >> >> endobj 789 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 404.405 522 410.183] /A << /S /GoTo /D (46) >> >> endobj 790 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 393.914 522 399.692] /A << /S /GoTo /D (38) >> >> endobj 791 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 383.424 522 389.202] /A << /S /GoTo /D (48) >> >> endobj 792 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 372.933 522 378.712] /A << /S /GoTo /D (38) >> >> endobj 793 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 362.443 522 368.221] /A << /S /GoTo /D (38) >> >> endobj 794 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 351.953 522 357.731] /A << /S /GoTo /D (38) >> >> endobj 795 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 341.462 522 347.241] /A << /S /GoTo /D (38) >> >> endobj 796 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 330.972 522 336.75] /A << /S /GoTo /D (38) >> >> endobj 797 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 318.489 522 326.26] /A << /S /GoTo /D (38) >> >> endobj 798 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 309.991 522 315.77] /A << /S /GoTo /D (38) >> >> endobj 799 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 297.508 522 305.279] /A << /S /GoTo /D (38) >> >> endobj 800 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 287.018 522 294.789] /A << /S /GoTo /D (38) >> >> endobj 801 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 276.528 522 284.298] /A << /S /GoTo /D (38) >> >> endobj 802 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 266.037 522 273.808] /A << /S /GoTo /D (38) >> >> endobj 803 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 257.539 522 263.318] /A << /S /GoTo /D (38) >> >> endobj 804 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 247.049 522 252.827] /A << /S /GoTo /D (55) >> >> endobj 805 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 234.566 522 242.337] /A << /S /GoTo /D (38) >> >> endobj 806 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 226.068 522 231.847] /A << /S /GoTo /D (38) >> >> endobj 807 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 215.578 522 221.356] /A << /S /GoTo /D (46) >> >> endobj 808 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 205.087 522 210.866] /A << /S /GoTo /D (46) >> >> endobj 809 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 194.597 522 200.375] /A << /S /GoTo /D (38) >> >> endobj 810 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 184.107 522 189.885] /A << /S /GoTo /D (38) >> >> endobj 811 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 171.624 522 179.395] /A << /S /GoTo /D (38) >> >> endobj 812 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 163.126 522 168.904] /A << /S /GoTo /D (38) >> >> endobj 813 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 150.643 522 158.414] /A << /S /GoTo /D (38) >> >> endobj 814 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 142.145 522 147.924] /A << /S /GoTo /D (53) >> >> endobj 815 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 131.655 522 137.433] /A << /S /GoTo /D (55) >> >> endobj 816 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 119.172 522 126.943] /A << /S /GoTo /D (38) >> >> endobj 817 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 110.674 522 116.452] /A << /S /GoTo /D (46) >> >> endobj 818 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 100.184 522 105.962] /A << /S /GoTo /D (38) >> >> endobj 819 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 89.693 522 95.472] /A << /S /GoTo /D (38) >> >> endobj 820 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 77.21 522 84.981] /A << /S /GoTo /D (39) >> >> endobj 829 0 obj << /D [827 0 R /XYZ 90 720 null] >> endobj 826 0 obj << /Font << /F55 9 0 R /F76 7 0 R /F31 484 0 R /F8 485 0 R /F2 486 0 R >> /ProcSet [ /PDF /Text ] >> endobj 943 0 obj << /Length 3788 /Filter /FlateDecode >> stream xÚíÝKoăČđű| g‚¸—ý`“Ě1A6Hě‹9reZ&F˘<’<3›O˛Ýbł‹.eY7r˜}”őwŞ~ۤřäĹđ?~Ń•”ŹQőĹz÷Ž0˙ô°šxř‹_ţňŽŰşËĄđTţńăť~,Ë ^°ŚhřĹÇřQŻ/ţőţOˇŤťS{řp)Ľ|ßüaüS˝˙ńC­Ţß÷ëSˇďţÍ_űëöۇKĄ›Jž×üĂż?ţíݟ?úŕRâo8VÎ~EÉ/jÖh­ěo¨kŸTżávßośíÍéĐmnOŤĂa˙ő8Ć˙đc=ů!&ĺb~dřżÁ+ţđ‡˜üüßý/~ j§¨+Vséű°ÜRW} ĘM[hPü‘ŚO˛™%7+DCMśŐłäŮ@+1ü-hć|–şfR¨˙ŰY~ˇíuÜĄ7lü¸iÉ~ÜQňlܚłŞ‘aܧŐŐśOZ)&tý[ž4ý0ś•TĄ7§S–¨ Z˛7%ĎL”ÓĂâ?5ńťŠšéꍛŔ0ŘR1„rËZ˛Ç%Ď0ȆВ; ‡š^żĎKĂY×Űu*ŸPŽóƒ\ؾВ=Ÿ(yĆGÔLÔNĎ×6áG(ŚšĘ~ˆ?€‰yh4ŒŻĆ˝€ÉI‰r!Ĺz-ÓŘ^1ω•†3•šٟ}čŸó–ęUśTśëT:Ąˇš€‡–ěőDÉ1Ÿ˛QŹŇvÁűűŻ˙Ě|^ƒë:‘(GůL‰ošˆÉŽOœ\é Ž˜TZŒŮuĂĘÁVŠć’˙ńhÂŹ`JĘő°ŽŮoúťŐ§öj˙mŽM–Cq™ľ‘żr•R˛Rk2ĽPŽS˛5ě3“=Ľ(yś ÁdS›íţx\~#)+Ś*ůć`lă¨B9.ÎBiT-Ů ˆ’g†=]!Ŕ љƒúů¨Üwl`l+Š&B9nNgÁ-ٛˆ’g&Š‚%0ą]]ľŰc>*÷”M„í!C(Ç1Ŕą,` %{ QrŒAŐ5Ťk0œşS>l˙] „k%Ń(GMLڃď6“‰8yf˘ŞXŅ3qw<íŰVpA|ç†ë1K(ÇąŔą-`Ą%{,Qň ‹ÖŹTÜa9lşţnuČ Č÷, ś•TĄ7§ł`‚–ěMDÉ3eÉdĺI|şÚŸnßKkVÖov˙"ž„9˝Ž]ë„-ž ŐsÓÄԂńZcmńběôMěďQđ´Tç})uňěBŃb=öiěĚú¸°ęć"—ÄęW˛BžĄ­%ŚŰ4‹ŠŰăśCďhS2˝l˘ä؇lVr|t§ź˜œy1q=&bĺ(–ÉŘp,Äd‡%NžaŠk&U°ěŽ3–scą=Śb ĺ88ś,´d%JžaŠ*Ć+€ĽßvŠO>‚c°=¤bĺ88– ´d!JžaК… ťźrœ{ĺ°=Śb ĺ88ś,´d%Jža)ŤĽ XŽëŒĺÜXlŠXB9ŽŽm -Ůc‰’gX”dZ €%>;Űc*–PŽcc[ŔBKöX˘ä)˜j8Ŕ˛ÍX΍Ĺö˜Š%”ăXŕذВ=–(y†Ep&ÁÂrĘߌĎnĺĄĹT*ž—f& …ëLcgLxÁ8řšs—™œ›ÉC‹ŠL|5ÎĚl )Ö3™ĆĆLD3ümN÷şoŮə¸Ą€rTĘdlřĽÄdg%NžaÓ wŠ'yżA>7xĆă,ŽßT8Ą‡G¸‡–ěáDÉ38•fÚ_t}l]{Ě‘. r˝#^8ĘŃK'&ăHlhěŐÄdwůÄbrô‘Ë—PPƒűĹŕéG>rNœ˜ěÝGÉ3÷z<ƒéNcľŤăýĄ˝^7J<G˛Fˆ7€şíučĄ:l˙ÂbGKöC’gC/úőńSw—Ďm?߇m+ŐG(Ç}ŔI-ř %{Qň̇’Œ ÷ŐěvŸo~ëŤ]׊|B9Îr-Ůó‰’g|$gżƒŤëťťŐ&ą9‘ ŤßüůKŇS+\CŠ2B9.Îhaoƒ–ěeDÉ3ׯĘßΕşb&/,/°°ŘŽSů„rœ$~ ˆ˜ěůDÉ3>EĂ´żók˙Ľ™–g,,śĄTĄ—g´°ÉĄ%{Qr,ƒ75Sţ6ŻAvŁCžÍëąŐÂľ’h”Ł&&ÓÁM“‰8yfbH•3q—łőzëŠk=ŐP(Ç Ái.˘%{CQňĚPĽ™tŸ˝˘ ÓxŞWŒë s\°CÉôr&™37ZąĆߣtż=uëýö~×'žl#Y-›ˇôhi{ˆ×ľˆxÔ”ŁG']Çoš#&ťŁĆ‹ÉŃG.5Ś;֋Áӏ|ä{1Ů㎒gźľ•ż“ęţŘ­óăN_ćq§ŽÓT2Ą'‡ˇ@†–ěÉDÉÓçĆÉáŻËá{ýäY˙?!OŽ?Œľý űŐŐv…đĘG§ż“WÉĹđMťźĐşa…zěŔąŤžĺ3^ńG"‹đřś bęř^Ž8q‚eTŐ {oşŹ™(ěaΞÍűi/ż÷Óś­§ ĺ8 8M-ՊӀTŤö€ˇ€Č‡łj™Ńc'Äü$m[Š8B9ŽN ÁAK58˘Ä4ŠY)<Ž rĐZdç8 ĺmťNľĘq;pˆZŞą%Śíˆ’éÚŰůœíźŠŰuޝPŽŰƒDěĐR(1mgřłVŢÎ׍í~ý)ŸíxĆžŠm(•E(ÇYŔ!,hІE”˜fQ(V„ÝŻëýnˇęŻóíÁOŮ1ą=¤Jĺ¸8–ůsŒZŞ‘%&%”d\C ÷}>úŒÂ5”Č”Ł,&3J/ÄԑEœ˜fQ &EÄ"őB˘ź@ŕlŠB9.Ž%˝@S„(1-ĄâLŐĘKhű/ÝaßďÚÔ2ńćŢqécťDu(Çg Ěš–jf%Śg­ ŚU˜őÍ>š-ȇ0ž¸ŘśRq„rœ˛I ĽQb‡öŠ€ŁťÉÔ_怺ë4ŐK(Ç˝Ŕá!‹ -Őx‰Ó^dŢŃ;xŮśý&őœMs9U“Í,- ś•TĄ§ƒ€ ĽQb„¨rEwŢş´ŤOÇťŐ:ą‡0žŒ˙^‰5Z5kd훳ÜlW} Ęg#Ž?qQ1^Jb˛Ť^LŽ?2}™Ł'H öŞ—‚Ł\XÁˆŠFu”˜V]ˇť{ŐëîÔćçΜéš3~ŹśÇT)Ą—džŹ´T#%JLKђľ—rÓm“É_Žžś#äÚJĹĘqpRČ2BK58˘Ä4ŽR ›<c|Ái>I÷Ź}&ŰP*‹PŽł€3RE’-Ő°ˆÓ,gŞđ,ś]ߚýŚä "E%ň#‡Ślű¨B9ŽNA@K5˘Ä4Y°2ě8÷7‡ś_ߎťÎ]Ÿ¸Ěp|T¸ř­Ř|mg¨ó ĺř|ał‘ůŇRÍ|ŁÄô|yĂŞ° ŮßďŽRçáóÚOţĎŢ6”Ę"”ă,ŕŒ´TĂ"JLł(Ŕksűýx,=ŻýO@PP^'ř‹Œă\B@K5Š…;˛ŠYĄ„C0žá#}Ę>*E%¸%€rTÂd,ó›Œó%ŚŽâÄ´„ńôb"áŘý§Íž"Áö*!”ăŕX ´T#!JLK¨4“ÚK8­6ů2—ن¸NS˝„rÜ ^zBL5^˘Ä´]˛ąúÁK~>Ĺ+ÖS…rœ&ˆ–jE‰i@尚ÔĐřőd<‘7=OŮôŘR%„r\ "–j$D‰i J˛Z íaŸĎvœůl‡ë1UJ(ÇĽŔąŠ:)…–j¤D‰i)ă[–Ý~ŃOYʋHą=ŚJ ĺ¸86D -ŐH‰ÓR„`\O֔|^ěůçĹ\[Š8B9ŽN ÁAK58˘Ä4>žˆĂe$ă8ŰV*ŽPŽă€“BpĐR Ž(1Ł(˜Şmd˙5?ăL8l[Š8B9ŽN ŮUĽĽQbú!RBŤđ€˜ŸI‘Ú__ťëvˇ:lşył…|{ośpSŞaœWT …áj.ľ ŚŽ0âÄäŞ!dÍDeŸ<ľßäĂ!Żw8Äľž (”ă€ŕ4ӛbŞ%ډŠ)éíÚM~îÜ uŚz ĺ¸8źô–ˆ˜jźD‰i/\łŇ˝ĺçěĺ˝ŘNS˝„rÜ ⅖jźD‰i/EÉŞŇŻ/Ýú°ďóníó÷^l[Š8B9ŽN ÁAK58˘Ä$Ţ r‡ŁoąFç{náZIĘQ“é¤ASGqbD­XáwgűńÄLú&„|r—`{H•Ęq p,ˆZŞ‘%Ś%T’ ż_z×öÉËCóvăŠ8l[Š8B9ŽNJUI´Tƒ#JLăЂÉĆăŘŢóNčË섺NS˝„rÜ ˛˜ĐR—(1íĽäŹ,íŃłýqť:Ţćówg>çzL•Ęq)plˆZŞ‘%ŚĽ¨‚UÜI9uťÔmmYĘó¤ŘSĽ„r\ "…–j¤D‰i)ƒ‚şrRîOw÷§,ĺÜRlŠRB9.Ž ‘BK5R˘Ä´>(NĘězł|K y§Ä6”Ę"”ă,ŕŒKŠ˙bžŘĚ endstream endobj 942 0 obj << /Type /Page /Contents 943 0 R /Resources 941 0 R /MediaBox [0 0 612 792] /Parent 713 0 R /Annots [ 821 0 R 822 0 R 823 0 R 824 0 R 825 0 R 830 0 R 831 0 R 832 0 R 833 0 R 834 0 R 835 0 R 836 0 R 837 0 R 838 0 R 839 0 R 840 0 R 841 0 R 842 0 R 843 0 R 844 0 R 845 0 R 846 0 R 847 0 R 848 0 R 849 0 R 850 0 R 851 0 R 852 0 R 853 0 R 854 0 R 855 0 R 856 0 R 857 0 R 858 0 R 859 0 R 860 0 R 861 0 R 862 0 R 863 0 R 864 0 R 865 0 R 866 0 R 867 0 R 868 0 R 869 0 R 870 0 R 871 0 R 872 0 R 873 0 R 874 0 R 875 0 R 876 0 R 877 0 R 878 0 R 879 0 R 880 0 R 881 0 R 882 0 R 883 0 R 884 0 R 885 0 R 886 0 R 887 0 R 888 0 R 889 0 R 890 0 R 891 0 R 892 0 R 893 0 R 894 0 R 895 0 R 896 0 R 897 0 R 898 0 R 899 0 R 900 0 R 901 0 R 902 0 R 903 0 R 904 0 R 905 0 R 906 0 R 907 0 R 908 0 R 909 0 R 910 0 R 911 0 R 912 0 R 913 0 R 914 0 R 915 0 R 916 0 R 917 0 R 918 0 R 919 0 R 920 0 R 921 0 R ] >> endobj 821 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 682.142 297.029 689.913] /A << /S /GoTo /D (39) >> >> endobj 822 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 670.971 297.029 678.742] /A << /S /GoTo /D (39) >> >> endobj 823 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 659.8 297.029 667.571] /A << /S /GoTo /D (55) >> >> endobj 824 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 648.629 297.029 656.4] /A << /S /GoTo /D (55) >> >> endobj 825 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 639.451 297.029 645.23] /A << /S /GoTo /D (39) >> >> endobj 830 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 628.28 297.029 634.059] /A << /S /GoTo /D (33) >> >> endobj 831 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 615.117 297.029 622.888] /A << /S /GoTo /D (48) >> >> endobj 832 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 603.946 297.029 611.717] /A << /S /GoTo /D (48) >> >> endobj 833 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 592.775 297.029 600.546] /A << /S /GoTo /D (33) >> >> endobj 834 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 533.566 297.029 539.344] /A << /S /GoTo /D (39) >> >> endobj 835 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 520.403 297.029 528.174] /A << /S /GoTo /D (46) >> >> endobj 836 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 511.224 297.029 517.003] /A << /S /GoTo /D (46) >> >> endobj 837 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 500.054 297.029 505.832] /A << /S /GoTo /D (46) >> >> endobj 838 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 488.883 297.029 494.661] /A << /S /GoTo /D (39) >> >> endobj 839 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 475.719 297.029 483.49] /A << /S /GoTo /D (39) >> >> endobj 840 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 464.549 297.029 472.319] /A << /S /GoTo /D (39) >> >> endobj 841 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [272.966 453.627 282.182 461.149] /A << /S /GoTo /D (39) >> >> endobj 842 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 453.627 297.029 461.149] /A << /S /GoTo /D (46) >> >> endobj 843 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [272.966 442.207 282.182 449.978] /A << /S /GoTo /D (39) >> >> endobj 844 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 442.207 297.029 449.978] /A << /S /GoTo /D (46) >> >> endobj 845 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 433.029 297.029 438.807] /A << /S /GoTo /D (55) >> >> endobj 846 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 421.858 297.029 427.636] /A << /S /GoTo /D (31) >> >> endobj 847 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 410.687 297.029 416.465] /A << /S /GoTo /D (31) >> >> endobj 848 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 399.516 297.029 405.295] /A << /S /GoTo /D (31) >> >> endobj 849 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 388.345 297.029 394.124] /A << /S /GoTo /D (31) >> >> endobj 850 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 377.175 297.029 382.953] /A << /S /GoTo /D (31) >> >> endobj 851 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 366.004 297.029 371.782] /A << /S /GoTo /D (31) >> >> endobj 852 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 354.833 297.029 360.611] /A << /S /GoTo /D (31) >> >> endobj 853 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 343.662 297.029 349.44] /A << /S /GoTo /D (31) >> >> endobj 854 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 332.491 297.029 338.27] /A << /S /GoTo /D (31) >> >> endobj 855 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 321.32 297.029 327.099] /A << /S /GoTo /D (32) >> >> endobj 856 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 308.157 297.029 315.928] /A << /S /GoTo /D (32) >> >> endobj 857 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 298.979 297.029 304.757] /A << /S /GoTo /D (39) >> >> endobj 858 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 287.808 297.029 293.586] /A << /S /GoTo /D (39) >> >> endobj 859 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [272.966 274.894 282.182 282.416] /A << /S /GoTo /D (32) >> >> endobj 860 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 274.894 297.029 282.416] /A << /S /GoTo /D (55) >> >> endobj 861 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 263.474 297.029 271.245] /A << /S /GoTo /D (39) >> >> endobj 862 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 252.303 297.029 260.074] /A << /S /GoTo /D (39) >> >> endobj 863 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 243.125 297.029 248.903] /A << /S /GoTo /D (39) >> >> endobj 864 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 229.961 297.029 237.732] /A << /S /GoTo /D (55) >> >> endobj 865 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 220.783 297.029 226.561] /A << /S /GoTo /D (32) >> >> endobj 866 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 209.612 297.029 215.391] /A << /S /GoTo /D (39) >> >> endobj 867 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 196.449 297.029 204.22] /A << /S /GoTo /D (39) >> >> endobj 868 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 185.278 297.029 193.049] /A << /S /GoTo /D (39) >> >> endobj 869 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 176.1 297.029 181.878] /A << /S /GoTo /D (39) >> >> endobj 870 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [272.966 163.186 282.182 170.707] /A << /S /GoTo /D (39) >> >> endobj 871 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 163.186 297.029 170.707] /A << /S /GoTo /D (55) >> >> endobj 872 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 153.758 297.029 159.536] /A << /S /GoTo /D (55) >> >> endobj 873 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 669.046 522 674.824] /A << /S /GoTo /D (39) >> >> endobj 874 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 658.205 522 663.984] /A << /S /GoTo /D (39) >> >> endobj 875 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 647.365 522 653.144] /A << /S /GoTo /D (39) >> >> endobj 876 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 634.533 522 642.304] /A << /S /GoTo /D (39) >> >> endobj 877 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 623.693 522 631.463] /A << /S /GoTo /D (39) >> >> endobj 878 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 614.845 522 620.623] /A << /S /GoTo /D (39) >> >> endobj 879 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 604.005 522 609.783] /A << /S /GoTo /D (46) >> >> endobj 880 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 593.165 522 598.943] /A << /S /GoTo /D (39) >> >> endobj 881 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 582.325 522 588.103] /A << /S /GoTo /D (46) >> >> endobj 882 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 571.484 522 577.263] /A << /S /GoTo /D (46) >> >> endobj 883 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 560.644 522 566.423] /A << /S /GoTo /D (39) >> >> endobj 884 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 549.804 522 555.583] /A << /S /GoTo /D (46) >> >> endobj 885 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 536.972 522 544.742] /A << /S /GoTo /D (46) >> >> endobj 886 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 526.131 522 533.902] /A << /S /GoTo /D (39) >> >> endobj 887 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 517.284 522 523.062] /A << /S /GoTo /D (39) >> >> endobj 888 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 506.444 522 512.222] /A << /S /GoTo /D (46) >> >> endobj 889 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 493.611 522 501.382] /A << /S /GoTo /D (39) >> >> endobj 890 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [497.938 482.771 507.153 490.542] /A << /S /GoTo /D (39) >> >> endobj 891 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 482.771 522 490.542] /A << /S /GoTo /D (46) >> >> endobj 892 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 473.923 522 479.702] /A << /S /GoTo /D (39) >> >> endobj 893 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 463.083 522 468.862] /A << /S /GoTo /D (46) >> >> endobj 894 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 452.243 522 458.021] /A << /S /GoTo /D (40) >> >> endobj 895 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 441.403 522 447.181] /A << /S /GoTo /D (40) >> >> endobj 896 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 428.57 522 436.341] /A << /S /GoTo /D (40) >> >> endobj 897 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 419.723 522 425.501] /A << /S /GoTo /D (40) >> >> endobj 898 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 406.89 522 414.661] /A << /S /GoTo /D (40) >> >> endobj 899 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 398.042 522 403.821] /A << /S /GoTo /D (32) >> >> endobj 900 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 387.202 522 392.981] /A << /S /GoTo /D (32) >> >> endobj 901 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 374.37 522 382.141] /A << /S /GoTo /D (40) >> >> endobj 902 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 365.522 522 371.3] /A << /S /GoTo /D (40) >> >> endobj 903 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 354.682 522 360.46] /A << /S /GoTo /D (40) >> >> endobj 904 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 343.842 522 349.62] /A << /S /GoTo /D (48) >> >> endobj 905 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 333.002 522 338.78] /A << /S /GoTo /D (48) >> >> endobj 906 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 322.162 522 327.94] /A << /S /GoTo /D (48) >> >> endobj 907 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 311.321 522 317.1] /A << /S /GoTo /D (48) >> >> endobj 908 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 300.481 522 306.26] /A << /S /GoTo /D (40) >> >> endobj 909 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 247.124 522 254.895] /A << /S /GoTo /D (46) >> >> endobj 910 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 236.284 522 244.055] /A << /S /GoTo /D (48) >> >> endobj 911 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 225.444 522 233.215] /A << /S /GoTo /D (40) >> >> endobj 912 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 214.604 522 222.374] /A << /S /GoTo /D (40) >> >> endobj 913 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 205.756 522 211.534] /A << /S /GoTo /D (40) >> >> endobj 914 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 194.916 522 200.694] /A << /S /GoTo /D (40) >> >> endobj 915 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 184.076 522 189.854] /A << /S /GoTo /D (40) >> >> endobj 916 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 171.243 522 179.014] /A << /S /GoTo /D (47) >> >> endobj 917 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 160.403 522 168.174] /A << /S /GoTo /D (40) >> >> endobj 918 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 151.555 522 157.334] /A << /S /GoTo /D (40) >> >> endobj 919 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 140.715 522 146.494] /A << /S /GoTo /D (40) >> >> endobj 920 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 127.883 522 135.653] /A << /S /GoTo /D (40) >> >> endobj 921 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 119.035 522 124.813] /A << /S /GoTo /D (40) >> >> endobj 944 0 obj << /D [942 0 R /XYZ 90 720 null] >> endobj 941 0 obj << /Font << /F55 9 0 R /F31 484 0 R /F8 485 0 R /F2 486 0 R /F76 7 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1050 0 obj << /Length 4429 /Filter /FlateDecode >> stream xÚíKoÜF…÷ţZ&A\aßł›& ‚Çö"Ŕ`m‰j5˘~˜Ý˛“ůőCV×ăň˛nő•Ô- V! 'Î1|ĎÇząX”WŮđźjłŤ:ĎE[4W×ë7™ţÝ~yuü—÷˙x#îí | ”űř㧟ËňJf˘ÍZyőń^ęăÍŐžŤÔ÷˙ýřĎŤźQ˘PĹpýťż,>~ßäßużŞţp; ŢüýŁs)•bţ8ŁröóÔՕ,D^TjüyšV”y{U5…yqt7:ţôs.ŻŃVU1ę2QTÇ?™eFś[,ťO}ˇří(o€ş(„ŞűˇůË÷oe-ż¨ÉÉÓ˙ďO˙PzŞŠE#óŤŞÎ†ŠŸЊßzľÎPZŁ ęŠŮĚś­EŚZŚ­cŰ ÉUي аyXęúŐf9'˘RƒR}[Dŕ×jüëÚŞœ(ążőęy˛Ó RÉM‡lÓÖˆŁśÓ jŰIŒyŽă˜ëä‚ÇżlEb̲uOmg­Eë9îťŰ9Áy94ejÓNß6ISV.^NĂ“Š4r`ReNňÁsv| 窲j|űą?üqßFEĽČňęőBőŚ\ÜŇËé&é"yÎŽŒ9ŁKžč%™Ćő¨ńô’§:JžłC9ĎP—ľ¨j‡z?‡\–Ï'S3xÖš‚Š:/§ńAFzRžłĂ9ĎđÉęáŽńř,–ýbw—ćOa”’Ë„—ÓLŔtň‚d‚çě˜@Θ‰˛­DŐֈ‰P ˝pýʙ `°5dÂä$ “Xh˜Îě<ƒĄŠ„Ę< ŸśżĎAP­Čd•Z‡S€‚ĹԘ ‹—Ó°ŔŘčބéě`AÎ3XęRÔŇòÚÜt›CęMžĐ›ŘRr™đrš ˜=@e:;&óŒ‰ŞJUމýoŤ]šŤ?{ŽnËĘĺĂËi>`R>xΎä<ăŁ,D{>ͅʄ~žÇYF&ŚŢ\pźœF™đœ8ČyÎ؋Ľ'0BU…¨d‘Čaţ Si.2^N#Ë ĂsvČ ç2y.ę łZܧžčů}‘)+—/§ů€IEĆŻ0Č>„śe–ľ(ęסĆF` Ç%ŔËi`xΎä<#@6"Żű}ˇßŻžt׍C€jĐŞoúÉ ˇŠ7n/§ă†…§7a3]ÜČyw6¸×6îžťN‹é—í˙M˝šŕx9 Œ02Äă9;p3'„šÝ’ÚŻÖŰô\÷2ĎuMĄ™Ŕx5É LŽîVxś–d;ƒĽŠDÓ:XĆąâM÷{ÚŤúˆ†Ă”‹SÓ€LčVƒgë0˜ÚÎ0¨+‘ˇŽƒíMęl.ˌŠ7/§ŠF°á9;nó œŞpŕěŰ´żůĚ3[c.,^NĂc‹ŔÂsv° ç,e) éa9tׇ´Ŕýěn[V.^Nó“ŠđÁsv| çE!Z冮Ű/Ť›îzť^/67i†ëł1UâĆíĺtܰđEMĆÍsvq#çYÜy! 7S٧ç/Ȑ)=—!/§‚iFâ9;†óŒ!ÎÚíoWË4Ű˝ĐlWqNhňȨé)MAd`x‘^†çěAÎ3dd.ОvČô‹e˛ž{Čjj̅ĹËiX`lXxÎä<ƒ%dp°¤­…/˛ľĐV‹—ÓřŔ #řđœ>ČăŁZ%ŠÚźÚó.áó2řŘŞ3ńrŸI4>Lg‹ve¨Ş\4­Ů’˙ďGŮçĎ‹›4şĚHH0ŘÓmŻŚá:JNąĹ˛uhMmg SŢ łG–@%-÷žoš÷Xm.0VLóâËŕÂńt´Lvő¨žÁԐK‚—Ó$ŔXxޚä&AŽŸÖ6Çbőˇ÷ŰmŸŽœť15ć’âĺ4)06bŠŔsŐ¤ Ç )eŰó Ęv{ žÓc‘'.|ŰlMĄ™´x5 L.ÜŞđ,GT]˜”fř=ť3žżëČw*ĎEĹTšËŠ—Ó°ŔđZxŽäćĽwŁÚŮÉÝ6-RžÄHÖVËŽ—ÓěŔ Ă˝ÓUłƒĂěTő0˙ąŰ~ÂżR[s–śĆTšË‹—ÓźŔđ^xޚä漏‡éQxYôýökšůpˆQ=üęŰ\ň 6őá&ěĺtİäDĆěąĺbáĺ40Łp#ÄtŐX Ç0Ő0‰*,_ˆCvĆă1Ň~áG4ÇŞrŃpjš ËRs1ľ cQ"ŤĚŒ„"hÎ8˘ąőćăĺ420B‚žŤ†9†Š)rQ´f¨˛żN|ÎüČÇ֗šú ääę÷$2ző›çěVżcÎř’ńŐoŚąť1bĆ蒑ŐoŚŤž1cřĆȕhUio ň‘O|q_Ś \,źœĆf¸F,xŽ äĆB)‘—šĹ˘_íăŤ{iËâczNSC. ^N“c!Hŕšjc˜)k;;ťŢß-vĄÉY!dS%‚}ŁŠ ˇoôrşo„ĄDúF–łď#Îř’'úFžąC?fŒ.ëyŽ}äF?“ĂDß{śÓ ôąÍ⹪\4œš&ÄDĚ&X–š‹Š] Őf˘˛˛Üw×áX$.Ʌ-+ 'ɘ$•!4˜Ž#Ř1 G“ łŃjÇi<ýôń´-( /§ą€Xđ\5Č1ŒEŐsąŇań°šŮŚ6ăům†)+/§á€I…Ň2]5Č1 G9üž˛“­î^ÔL'c<çd [c.)^N“c+‚“1ŚŤ&9†IŚŰy醤ňÄ4-§I05ä’ŕĺ4 0–đILWMr “×˘Ž[GÂ}ˇYîŇA[OŘécKÉÂËi `:żšŰö‡ëUč#Ťi xrx`KÉČI &é”ÁáÓu;†h†_Ýc Ä_Ó@ńE[C. ^N“c!Hŕšjc˜„zÜůÝ"‡ťĐŃŹŻďœ[nĘ^N§ KN¤ĚsŐ)#ÇpĘU>Ěk”ňżŢŸ-Uiŕ3…Ŕ” —ÓŔDxŽä†`ČVŮď`ďWËő"˝´z!^LĽšźx9Í /ź†ŔtŐź Ç0/Ĺř-d3Pýxš /ŚŇ\^źœć†GđÂsŐź Ç0/šŚ"Ęľ/›ĹáĄOłŒ':L)š@x9 L'źÍtŐ@ Ç0J 7´\­Ó;Ë/‚Îąč\rœš¤H4$,KÍÔ.LĚD+‡M÷9u;ęvLĽšŹx9  …çŞqAŽa^˛l|wŮđrŸuœůQ‡­/sŐČÉUßIdôŞ/ĎŮ­úÜń%㍞LcwcČŃ%#ŤžLW}c ÇŕŃ´ĂœĐĚ>ü˛úŘýšvyG‘)1“Ż&1™ĺÁ7ďy–#$Č.ČüRđţ~ťŰýą[ôiČţ„qëkĘ…ČGœŃ# FĚň˙ę@…: endstream endobj 1049 0 obj << /Type /Page /Contents 1050 0 R /Resources 1048 0 R /MediaBox [0 0 612 792] /Parent 713 0 R /Annots [ 922 0 R 923 0 R 924 0 R 925 0 R 926 0 R 927 0 R 928 0 R 929 0 R 930 0 R 931 0 R 932 0 R 933 0 R 934 0 R 935 0 R 936 0 R 937 0 R 938 0 R 939 0 R 940 0 R 945 0 R 946 0 R 947 0 R 948 0 R 949 0 R 950 0 R 951 0 R 952 0 R 953 0 R 954 0 R 955 0 R 956 0 R 957 0 R 958 0 R 959 0 R 960 0 R 961 0 R 962 0 R 963 0 R 964 0 R 965 0 R 966 0 R 967 0 R 968 0 R 969 0 R 970 0 R 971 0 R 972 0 R 973 0 R 974 0 R 975 0 R 976 0 R 977 0 R 978 0 R 979 0 R 980 0 R 981 0 R 982 0 R 983 0 R 984 0 R 985 0 R 986 0 R 987 0 R 988 0 R 989 0 R 990 0 R 991 0 R 992 0 R 993 0 R 994 0 R 995 0 R 996 0 R 997 0 R 998 0 R 999 0 R 1000 0 R 1001 0 R 1002 0 R 1003 0 R 1004 0 R 1005 0 R 1006 0 R 1007 0 R 1008 0 R 1009 0 R 1010 0 R 1011 0 R 1012 0 R 1013 0 R 1014 0 R 1015 0 R 1016 0 R 1017 0 R 1018 0 R 1019 0 R 1020 0 R 1021 0 R 1022 0 R 1023 0 R 1024 0 R 1025 0 R 1026 0 R 1027 0 R 1028 0 R 1029 0 R 1030 0 R 1031 0 R 1032 0 R 1033 0 R 1034 0 R 1035 0 R 1036 0 R 1037 0 R 1038 0 R 1039 0 R 1040 0 R ] >> endobj 922 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 668.137 297.029 675.908] /A << /S /GoTo /D (40) >> >> endobj 923 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [272.966 657.647 282.182 665.418] /A << /S /GoTo /D (40) >> >> endobj 924 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 657.647 297.029 665.418] /A << /S /GoTo /D (46) >> >> endobj 925 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 647.157 297.029 654.927] /A << /S /GoTo /D (40) >> >> endobj 926 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 636.666 297.029 644.437] /A << /S /GoTo /D (53) >> >> endobj 927 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [272.966 626.176 282.182 633.947] /A << /S /GoTo /D (40) >> >> endobj 928 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 626.176 297.029 633.947] /A << /S /GoTo /D (46) >> >> endobj 929 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 615.686 297.029 623.456] /A << /S /GoTo /D (40) >> >> endobj 930 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 605.195 297.029 612.966] /A << /S /GoTo /D (34) >> >> endobj 931 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 594.705 297.029 602.476] /A << /S /GoTo /D (34) >> >> endobj 932 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 584.214 297.029 591.985] /A << /S /GoTo /D (40) >> >> endobj 933 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 573.724 297.029 581.495] /A << /S /GoTo /D (46) >> >> endobj 934 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 563.234 297.029 571.004] /A << /S /GoTo /D (46) >> >> endobj 935 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 552.743 297.029 560.514] /A << /S /GoTo /D (34) >> >> endobj 936 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 542.253 297.029 550.024] /A << /S /GoTo /D (34) >> >> endobj 937 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 531.763 297.029 539.533] /A << /S /GoTo /D (40) >> >> endobj 938 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 521.272 297.029 529.043] /A << /S /GoTo /D (40) >> >> endobj 939 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 510.782 297.029 518.553] /A << /S /GoTo /D (40) >> >> endobj 940 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 502.284 297.029 508.062] /A << /S /GoTo /D (40) >> >> endobj 945 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 489.801 297.029 497.572] /A << /S /GoTo /D (40) >> >> endobj 946 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 481.303 297.029 487.081] /A << /S /GoTo /D (40) >> >> endobj 947 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 468.82 297.029 476.591] /A << /S /GoTo /D (55) >> >> endobj 948 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 458.33 297.029 466.101] /A << /S /GoTo /D (41) >> >> endobj 949 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 447.84 297.029 455.61] /A << /S /GoTo /D (48) >> >> endobj 950 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 437.349 297.029 445.12] /A << /S /GoTo /D (48) >> >> endobj 951 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 426.859 297.029 434.63] /A << /S /GoTo /D (48) >> >> endobj 952 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 416.368 297.029 424.139] /A << /S /GoTo /D (53) >> >> endobj 953 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 405.878 297.029 413.649] /A << /S /GoTo /D (41) >> >> endobj 954 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 395.388 297.029 403.159] /A << /S /GoTo /D (48) >> >> endobj 955 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 384.897 297.029 392.668] /A << /S /GoTo /D (41) >> >> endobj 956 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 374.407 297.029 382.178] /A << /S /GoTo /D (41) >> >> endobj 957 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 363.917 297.029 371.687] /A << /S /GoTo /D (41) >> >> endobj 958 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 353.426 297.029 361.197] /A << /S /GoTo /D (41) >> >> endobj 959 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 342.936 297.029 350.707] /A << /S /GoTo /D (47) >> >> endobj 960 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 332.445 297.029 340.216] /A << /S /GoTo /D (47) >> >> endobj 961 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 321.955 297.029 329.726] /A << /S /GoTo /D (41) >> >> endobj 962 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 311.465 297.029 319.236] /A << /S /GoTo /D (41) >> >> endobj 963 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 300.974 297.029 308.745] /A << /S /GoTo /D (41) >> >> endobj 964 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 292.476 297.029 298.255] /A << /S /GoTo /D (41) >> >> endobj 965 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 247.898 297.029 255.669] /A << /S /GoTo /D (41) >> >> endobj 966 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 237.408 297.029 245.178] /A << /S /GoTo /D (41) >> >> endobj 967 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 226.917 297.029 234.688] /A << /S /GoTo /D (49) >> >> endobj 968 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 216.427 297.029 224.198] /A << /S /GoTo /D (55) >> >> endobj 969 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 205.936 297.029 213.707] /A << /S /GoTo /D (55) >> >> endobj 970 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 163.126 297.029 168.904] /A << /S /GoTo /D (33) >> >> endobj 971 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 150.643 297.029 158.414] /A << /S /GoTo /D (47) >> >> endobj 972 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 140.153 297.029 147.924] /A << /S /GoTo /D (31) >> >> endobj 973 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 131.655 297.029 137.433] /A << /S /GoTo /D (41) >> >> endobj 974 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 119.172 297.029 126.943] /A << /S /GoTo /D (41) >> >> endobj 975 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 110.674 297.029 116.452] /A << /S /GoTo /D (55) >> >> endobj 976 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 100.184 297.029 105.962] /A << /S /GoTo /D (41) >> >> endobj 977 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 89.693 297.029 95.472] /A << /S /GoTo /D (41) >> >> endobj 978 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 79.203 297.029 84.981] /A << /S /GoTo /D (41) >> >> endobj 979 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 684.134 522 689.913] /A << /S /GoTo /D (53) >> >> endobj 980 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 671.57 522 679.341] /A << /S /GoTo /D (41) >> >> endobj 981 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 662.991 522 668.769] /A << /S /GoTo /D (47) >> >> endobj 982 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 652.419 522 658.198] /A << /S /GoTo /D (47) >> >> endobj 983 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 641.847 522 647.626] /A << /S /GoTo /D (47) >> >> endobj 984 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 631.276 522 637.054] /A << /S /GoTo /D (47) >> >> endobj 985 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 620.704 522 626.482] /A << /S /GoTo /D (47) >> >> endobj 986 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 610.132 522 615.911] /A << /S /GoTo /D (41) >> >> endobj 987 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 599.56 522 605.339] /A << /S /GoTo /D (47) >> >> endobj 988 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 588.989 522 594.767] /A << /S /GoTo /D (47) >> >> endobj 989 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 578.417 522 584.195] /A << /S /GoTo /D (41) >> >> endobj 990 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 565.853 522 573.624] /A << /S /GoTo /D (41) >> >> endobj 991 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 555.281 522 563.052] /A << /S /GoTo /D (41) >> >> endobj 992 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 544.709 522 552.48] /A << /S /GoTo /D (41) >> >> endobj 993 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 534.137 522 541.908] /A << /S /GoTo /D (41) >> >> endobj 994 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 523.566 522 531.337] /A << /S /GoTo /D (41) >> >> endobj 995 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 512.994 522 520.765] /A << /S /GoTo /D (41) >> >> endobj 996 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 502.422 522 510.193] /A << /S /GoTo /D (41) >> >> endobj 997 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [497.938 492.099 507.153 499.621] /A << /S /GoTo /D (32) >> >> endobj 998 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 492.099 522 499.621] /A << /S /GoTo /D (55) >> >> endobj 999 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [497.938 481.279 507.153 489.05] /A << /S /GoTo /D (32) >> >> endobj 1000 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 481.279 522 489.05] /A << /S /GoTo /D (55) >> >> endobj 1001 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 472.699 522 478.478] /A << /S /GoTo /D (41) >> >> endobj 1002 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 462.128 522 467.906] /A << /S /GoTo /D (41) >> >> endobj 1003 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 449.563 522 457.334] /A << /S /GoTo /D (49) >> >> endobj 1004 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 438.992 522 446.763] /A << /S /GoTo /D (49) >> >> endobj 1005 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 430.412 522 436.191] /A << /S /GoTo /D (41) >> >> endobj 1006 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 385.784 522 391.562] /A << /S /GoTo /D (53) >> >> endobj 1007 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 373.22 522 380.99] /A << /S /GoTo /D (41) >> >> endobj 1008 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 364.64 522 370.419] /A << /S /GoTo /D (41) >> >> endobj 1009 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 354.069 522 359.847] /A << /S /GoTo /D (41) >> >> endobj 1010 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [497.938 341.753 507.153 349.275] /A << /S /GoTo /D (32) >> >> endobj 1011 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 341.753 522 349.275] /A << /S /GoTo /D (55) >> >> endobj 1012 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 330.932 522 338.703] /A << /S /GoTo /D (32) >> >> endobj 1013 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 320.361 522 328.132] /A << /S /GoTo /D (32) >> >> endobj 1014 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [497.938 309.789 507.153 317.56] /A << /S /GoTo /D (32) >> >> endobj 1015 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 309.789 522 317.56] /A << /S /GoTo /D (55) >> >> endobj 1016 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 301.21 522 306.988] /A << /S /GoTo /D (41) >> >> endobj 1017 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 290.638 522 296.416] /A << /S /GoTo /D (34) >> >> endobj 1018 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 280.066 522 285.845] /A << /S /GoTo /D (34) >> >> endobj 1019 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 269.495 522 275.273] /A << /S /GoTo /D (49) >> >> endobj 1020 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 258.923 522 264.701] /A << /S /GoTo /D (42) >> >> endobj 1021 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 248.351 522 254.129] /A << /S /GoTo /D (47) >> >> endobj 1022 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 235.787 522 243.558] /A << /S /GoTo /D (47) >> >> endobj 1023 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 227.208 522 232.986] /A << /S /GoTo /D (42) >> >> endobj 1024 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [497.938 214.892 507.153 222.414] /A << /S /GoTo /D (32) >> >> endobj 1025 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 214.892 522 222.414] /A << /S /GoTo /D (56) >> >> endobj 1026 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [497.938 204.071 507.153 211.842] /A << /S /GoTo /D (32) >> >> endobj 1027 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 204.071 522 211.842] /A << /S /GoTo /D (56) >> >> endobj 1028 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 195.492 522 201.271] /A << /S /GoTo /D (52) >> >> endobj 1029 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 184.921 522 190.699] /A << /S /GoTo /D (52) >> >> endobj 1030 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 174.349 522 180.127] /A << /S /GoTo /D (52) >> >> endobj 1031 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 163.777 522 169.555] /A << /S /GoTo /D (52) >> >> endobj 1032 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 151.213 522 158.984] /A << /S /GoTo /D (42) >> >> endobj 1033 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 140.641 522 148.412] /A << /S /GoTo /D (42) >> >> endobj 1034 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 130.069 522 137.84] /A << /S /GoTo /D (47) >> >> endobj 1035 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 121.49 522 127.268] /A << /S /GoTo /D (42) >> >> endobj 1036 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 108.926 522 116.697] /A << /S /GoTo /D (42) >> >> endobj 1037 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [497.938 98.603 507.153 106.125] /A << /S /GoTo /D (32) >> >> endobj 1038 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 98.603 522 106.125] /A << /S /GoTo /D (56) >> >> endobj 1039 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 89.775 522 95.553] /A << /S /GoTo /D (33) >> >> endobj 1040 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 77.21 522 84.981] /A << /S /GoTo /D (56) >> >> endobj 1051 0 obj << /D [1049 0 R /XYZ 90 720 null] >> endobj 1048 0 obj << /Font << /F55 9 0 R /F76 7 0 R /F31 484 0 R /F8 485 0 R /F2 486 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1166 0 obj << /Length 4431 /Filter /FlateDecode >> stream xÚí[o7…ßý+ôh1ÓMöu÷’` l°Ť‡‹}ÚRĂsËĚśóë—MńRSdľJŁQ€DDŰÇ}„:_“,vϰź*ôĺU_\ľJ‰žęŽ–ë7…ůÓýíŐĂ˙üűÇ7ĽŐ}ĐÂ@ůçë7ß˙P×We!ú˘/ŻŽ?ÁK]ß\ý÷í_îťă°÷A)őś˙Óôkőö‡w]őö~ł<ŽŰÍĂßü}s3|}÷A6}ŤŢ6ęÝ˙Ž˙ńćo×޸–’ůNĘčGTĺU'úŚŠěOŘt•(UőđVý3“ĺ÷?t@¨´¨ŤőeL˙če[>ü"O~W>ţwżß€‚­œęă+8†SrˆeƗ4ŐV2rCr­zŢ]Ň8ˇ˘+ŰřAýˆńé%qÝDÎ}+ Ůs­:rŽčo•¨eé_/VŤ˜}Y Ľ+óşŮ?ýCęN°ŐäŢ ANß 0 ™;çěď„9gtÉGťfO/ů؝ŔsöwrŽî„F|šˇüpř<îâťĄŞ„lş|7¤& -%—‰ §™€éT’d‚çě™@ÎľUŮ[&v‹›áp?3ç0aKÉe"Či&`:3Lđœ=Č9b˘*EWľ–‰_ö d!¤ţů2ĎZ]ş”m˝šŕ9 Œpžł9Gŕ¨RČśąŕPk­^e“ŃyěP°Řsa r›˘aá9{Xs‹CÚÂuĽÇĹňó~Hŕ˘zŃ5mĆefiîb´ĺ’ä40Ł™a„çěÉ@ÎeĄ;:éČvËíýfÚU‰ŕ¨•(ÚňľÂAq`ËÇĺ Či`"3đœ=ČsP÷˝îgűḟKŒľ¨š:ěՆ­*“Ž &á€1ŃlđlČ6"ŁÓżí\×r˙qˇŘ/n÷‹]‚şUűúVŞTřśpÜôƒœŽfĄ*2žł9G´îaژ€÷1˝| ť{TčśVÜЃœ–&tžł9GĄ7Ú˝Ş}č‡áá™Jź[щWżf¤`°5äÂä4 0–xÎäÁ GvŮ* ĂűźJd­]ů¸9ÍLd†žłç9GTî&$ŕŕ˜7.˝l°5ćÂä4,0ś™e#ĎŮœ#XTŁ[ČĘđKŢs8ĎÁ֓˅WÓX€€f¨`Ůz(Nm#&d-ęş PĚ,,^ýRŇ֊xÓ‰ĂňĎĚnäĹ]TşłđĂr™i˝l—aëÍ'Čip`„3SĎكƒœ18UŻtâW 똛˛Ö?^™ššäŁtWu&>@Nâs$ÓŮო#|:Ľ›÷ĘÍýn؏Ăý~‘w,ž0–¸rarKՓ0đœ= Č9‚Ą•˘éýŽő.wŞ—ďT]š°9 Œmfäŕ9{XsK#E);KnUŸł–uĺ’ä40Ł2xΞ ä‘Q—şľń­Ëţ&Że_vţąőć‚ä480ÂpxÎäSşIroÜ|Yě÷Ű/ůúł÷D\Yš|9ÍLj†žłç9ˇÍ•n›•o&Ň×, єv_öú ‡žŞţ—Ň|\|ü8nn3KĎfIőPüąČI–œć‘Ď0K؏5ŞŤEëÖ|ŹŸ8“•&­Ęt<ďAžŤ4™ §‘áÍ ĂsöČ ç™śÖŤ yŸŰŁ ˇGŽĆ\X‚œ†Ć6 ĎŮœ#X=xŔáeűišÝ‡ÍńCŁ[­Vţ1§!*ç‡ňpcöj:ePozAÂłőŸÚFו(šŢg|żZěóăůK [V.ANĂ“šxÎäńQ)Qőí ďóÉů;$Ž \2‚œ&f4CĎٓœ#2”˝Ź÷ůĄÍo2çŘŞsń räĚ´Ăsöř ç)uoc‡ýqÜć…輢śĆ\X‚œ†ĆF?Ôa:{XsKYęŽĆí— ?çąć7klŐšř9 R)žłÇ9GřĽîsÜPóő¸Xíîůă÷ç ńPI.^M˘™™{Xś‡S[Lƒě Ѩ.ŕđq8.ň’öü%­+(“ 'ą8Ɉć‚éěŔŔÎ]Ą›Ąń)ŻI.ź&q5ćÂä4,06úŁőLg rŽ`izÝՖűŐ*ő˛I~눆Á֐ CÓ0ŔXfFžł‡9G0ÔúˇR–wcŢF{ö6š++— §ů€IÍđÁsö| çˆ=¨,A—ŰŐvŸ— g,A])šL9ÍLg† žłg9GL¨V´m˜¸VÇܖœĹ„-%—‰ §™€éĚ0ÁsöL çˆ Ů Y€Ţ䯙‰s™°Ľä2ä40&xΞ ä1Q6şk]ɰZťĂxČßĂńśp\‚œ&f1CĎŮ€œ#ŠFˇ" @ÇżJ}t2 ?Ł-—ƒ §9€‰ĚpŔsö gĚAŮ뢗€ƒäĆUî2žÖe¸˛2ůr’“¤h>˜ÎŽěńŃUş ]Ƨíć˜w6ĎßŮtĺ’ä40#złŠéěÉ@Îíô2č5nëu^WžłŽtĽä2ä40Š|*ĆtöL 爉Fé^¤ Lü˜™8— [J.AN3әa‚çě™@Îz) °Š}7ŒˇwySűIË [C. ANĂcŠZžł‡9G0TRˇ% íˇůA鳖ś \2‚œ&f43Lđœ=Č9"CIݨ€Fd̲žô1– §aąÍŹ=yÎäÁ"K—žŸť]^fœľĚx¨$—ŻŚŃĚ ,[ĂŠmDĂt°[ v¸W‹őǛüeOZaŘrAršË craLl‰™˜5‰ ̌Oxśd{‚‰šžŠ°-OÜ`Ůl÷ëĹ*Ď/ŒůĽ.ĽhťšyR¨SϞQŠ/I ÓyťLW)9›Ô“`Žm››äž2Ú$žöTćć@ć5(ŕ"qőaŚ ädĘ'%O§ĚtRƎé”;%T úÎ䗃çíŤ'ŽŹ\8‚œ†&EŔÁs5p Ç4Ó] VיK°ńPU.^M“b"Ŕ`Y.NíŇX4RHřý‰Çťá˜Űˆł&[J. ANÓÓ!p๐cˆşM úĘë Äš@ŘRrr˜ĎՁÓ@TĽ(:0sóGŽ/ÝWşsI rš[şŻdşRcšUˆIíIšßeR.MŠ­1—” §Ią¤đ\ )Č1MJًžťŮ_ƛă]ždΙdl)š@9 L'ţŇĎՁÓ@˝Pxuëk~uëâC‡­1—” §IąËžŤ!9&IQ}':0ÇüœAš4(śÄLN‚šÄf–Ś„g9A‚ěҌt5hjÍ͜őýI>@[P.AN33" ŕš*c‹śMçZŰťĹćó!—;lš¤9M Œ …çjHAŽiRšV”ţťrîâŘ;™1šäRÖUËNÓěŔ U™d‡çjŘAŽivęFÔţđťáăřq5no÷‹ÝݡüŹ­öőáŚätʰäń9ź&ežŤI9ŚSŽjŃw•OyŘÜlśÇá@|3źĚß  -‚ §!€‰¤ťVŚŤ9Ś!˜ž—•­‡`ÜÜ _ó:óëL[P.ANc3"ĆžŤÁ9Śą•čjOĹnq;äG­Ď~ÔjŤĘEĂŤi2@LÄxÁ˛4\œÚĽąĐżJżuq7ě‡OŰý7=ĎYCŘRrarš˜Ńeđ\ Č1 DĄD[†"ľGĄšjĘ|ŚČs—śŇ\^‚œć†GđÂs5ź Ç$/˛W˘Źl3syy9^\Ľ™ź9ÉËIxi^˜Ž/Ř1ÍK'EÝůNtvÜ$vľe!dŠ2.ů`Wo.5ANS#LżňĹt5Ô Ç45˛mĺšÝń¸ĘłŇK2śŇ\^‚œć†GŒ2%> UO—{}­ż-7ţ §ă‡Y¤gŚŤ‰9ŚăoĄŞň4ţ}ú|Ţמ‘îjĹM<ČéÄaů‰ÄyŽ&qä˜NźŽEۺם1ë­lóĄ™OŞž˝ę|}çórę@Q‚/Iíi­(kĹtvęYg|IăüycđŒý1gŒ.9Ӆ1]͍Ó7FU Y¸śüřiąW‰Ő´ęDÝľůńŇ)ôśv\胜†Ć1=Ë9@?ăŒ/ůô> endobj 1041 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [272.966 682.142 282.182 689.913] /A << /S /GoTo /D (32) >> >> endobj 1042 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 682.142 297.029 689.913] /A << /S /GoTo /D (56) >> >> endobj 1043 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [272.966 671.819 282.182 679.341] /A << /S /GoTo /D (32) >> >> endobj 1044 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 671.819 297.029 679.341] /A << /S /GoTo /D (56) >> >> endobj 1045 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 660.998 297.029 668.769] /A << /S /GoTo /D (42) >> >> endobj 1046 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 650.427 297.029 658.198] /A << /S /GoTo /D (42) >> >> endobj 1047 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 639.855 297.029 647.626] /A << /S /GoTo /D (42) >> >> endobj 1052 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 631.276 297.029 637.054] /A << /S /GoTo /D (32) >> >> endobj 1053 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 620.704 297.029 626.482] /A << /S /GoTo /D (42) >> >> endobj 1054 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 608.14 297.029 615.911] /A << /S /GoTo /D (42) >> >> endobj 1055 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 599.56 297.029 605.339] /A << /S /GoTo /D (42) >> >> endobj 1056 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 586.996 297.029 594.767] /A << /S /GoTo /D (34) >> >> endobj 1057 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 576.424 297.029 584.195] /A << /S /GoTo /D (34) >> >> endobj 1058 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 567.845 297.029 573.624] /A << /S /GoTo /D (34) >> >> endobj 1059 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 557.273 297.029 563.052] /A << /S /GoTo /D (34) >> >> endobj 1060 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 546.702 297.029 552.48] /A << /S /GoTo /D (42) >> >> endobj 1061 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 534.137 297.029 541.908] /A << /S /GoTo /D (42) >> >> endobj 1062 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 525.558 297.029 531.337] /A << /S /GoTo /D (34) >> >> endobj 1063 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 514.986 297.029 520.765] /A << /S /GoTo /D (34) >> >> endobj 1064 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 504.415 297.029 510.193] /A << /S /GoTo /D (42) >> >> endobj 1065 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 493.843 297.029 499.621] /A << /S /GoTo /D (42) >> >> endobj 1066 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 481.279 297.029 489.05] /A << /S /GoTo /D (49) >> >> endobj 1067 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 470.707 297.029 478.478] /A << /S /GoTo /D (42) >> >> endobj 1068 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 460.135 297.029 467.906] /A << /S /GoTo /D (42) >> >> endobj 1069 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 451.556 297.029 457.334] /A << /S /GoTo /D (42) >> >> endobj 1070 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 440.984 297.029 446.763] /A << /S /GoTo /D (42) >> >> endobj 1071 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 394.363 297.029 402.134] /A << /S /GoTo /D (56) >> >> endobj 1072 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 385.784 297.029 391.562] /A << /S /GoTo /D (56) >> >> endobj 1073 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 375.212 297.029 380.99] /A << /S /GoTo /D (56) >> >> endobj 1074 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 364.64 297.029 370.419] /A << /S /GoTo /D (42) >> >> endobj 1075 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 354.069 297.029 359.847] /A << /S /GoTo /D (56) >> >> endobj 1076 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 343.497 297.029 349.275] /A << /S /GoTo /D (56) >> >> endobj 1077 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 332.925 297.029 338.703] /A << /S /GoTo /D (42) >> >> endobj 1078 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 322.353 297.029 328.132] /A << /S /GoTo /D (49) >> >> endobj 1079 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 311.782 297.029 317.56] /A << /S /GoTo /D (33) >> >> endobj 1080 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 299.217 297.029 306.988] /A << /S /GoTo /D (42) >> >> endobj 1081 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 290.638 297.029 296.416] /A << /S /GoTo /D (42) >> >> endobj 1082 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 280.066 297.029 285.845] /A << /S /GoTo /D (32) >> >> endobj 1083 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 269.495 297.029 275.273] /A << /S /GoTo /D (42) >> >> endobj 1084 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 258.923 297.029 264.701] /A << /S /GoTo /D (42) >> >> endobj 1085 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 248.351 297.029 254.129] /A << /S /GoTo /D (42) >> >> endobj 1086 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 237.779 297.029 243.558] /A << /S /GoTo /D (42) >> >> endobj 1087 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 227.208 297.029 232.986] /A << /S /GoTo /D (42) >> >> endobj 1088 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 214.643 297.029 222.414] /A << /S /GoTo /D (42) >> >> endobj 1089 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 204.071 297.029 211.842] /A << /S /GoTo /D (42) >> >> endobj 1090 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 195.492 297.029 201.271] /A << /S /GoTo /D (42) >> >> endobj 1091 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 184.921 297.029 190.699] /A << /S /GoTo /D (32) >> >> endobj 1092 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 172.356 297.029 180.127] /A << /S /GoTo /D (43) >> >> endobj 1093 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 163.777 297.029 169.555] /A << /S /GoTo /D (43) >> >> endobj 1094 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 151.213 297.029 158.984] /A << /S /GoTo /D (47) >> >> endobj 1095 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 142.634 297.029 148.412] /A << /S /GoTo /D (43) >> >> endobj 1096 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 132.062 297.029 137.84] /A << /S /GoTo /D (32) >> >> endobj 1097 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 119.497 297.029 127.268] /A << /S /GoTo /D (43) >> >> endobj 1098 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 110.918 297.029 116.697] /A << /S /GoTo /D (43) >> >> endobj 1099 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 100.346 297.029 106.125] /A << /S /GoTo /D (43) >> >> endobj 1100 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 89.775 297.029 95.553] /A << /S /GoTo /D (32) >> >> endobj 1101 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 79.203 297.029 84.981] /A << /S /GoTo /D (43) >> >> endobj 1102 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 684.134 522 689.913] /A << /S /GoTo /D (32) >> >> endobj 1103 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 673.567 522 679.346] /A << /S /GoTo /D (43) >> >> endobj 1104 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 661.008 522 668.778] /A << /S /GoTo /D (43) >> >> endobj 1105 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 650.44 522 658.211] /A << /S /GoTo /D (43) >> >> endobj 1106 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 639.873 522 647.644] /A << /S /GoTo /D (43) >> >> endobj 1107 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 629.306 522 637.077] /A << /S /GoTo /D (43) >> >> endobj 1108 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 620.731 522 626.51] /A << /S /GoTo /D (43) >> >> endobj 1109 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 608.172 522 615.942] /A << /S /GoTo /D (43) >> >> endobj 1110 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 599.597 522 605.375] /A << /S /GoTo /D (43) >> >> endobj 1111 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 587.037 522 594.808] /A << /S /GoTo /D (43) >> >> endobj 1112 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 578.462 522 584.241] /A << /S /GoTo /D (43) >> >> endobj 1113 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 567.895 522 573.674] /A << /S /GoTo /D (32) >> >> endobj 1114 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 557.328 522 563.106] /A << /S /GoTo /D (32) >> >> endobj 1115 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 546.761 522 552.539] /A << /S /GoTo /D (32) >> >> endobj 1116 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 534.201 522 541.972] /A << /S /GoTo /D (43) >> >> endobj 1117 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 523.634 522 531.405] /A << /S /GoTo /D (43) >> >> endobj 1118 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 515.059 522 520.838] /A << /S /GoTo /D (32) >> >> endobj 1119 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 502.499 522 510.27] /A << /S /GoTo /D (43) >> >> endobj 1120 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 491.932 522 499.703] /A << /S /GoTo /D (43) >> >> endobj 1121 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 483.358 522 489.136] /A << /S /GoTo /D (43) >> >> endobj 1122 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 472.79 522 478.569] /A << /S /GoTo /D (43) >> >> endobj 1123 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 462.223 522 468.001] /A << /S /GoTo /D (43) >> >> endobj 1124 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 451.656 522 457.434] /A << /S /GoTo /D (43) >> >> endobj 1125 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 441.089 522 446.867] /A << /S /GoTo /D (32) >> >> endobj 1126 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 428.529 522 436.3] /A << /S /GoTo /D (32) >> >> endobj 1127 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 419.954 522 425.733] /A << /S /GoTo /D (47) >> >> endobj 1128 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 409.387 522 415.165] /A << /S /GoTo /D (43) >> >> endobj 1129 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 398.82 522 404.598] /A << /S /GoTo /D (43) >> >> endobj 1130 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 388.253 522 394.031] /A << /S /GoTo /D (43) >> >> endobj 1131 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 377.686 522 383.464] /A << /S /GoTo /D (43) >> >> endobj 1132 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 367.118 522 372.897] /A << /S /GoTo /D (31) >> >> endobj 1133 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 354.559 522 362.329] /A << /S /GoTo /D (56) >> >> endobj 1134 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 345.984 522 351.762] /A << /S /GoTo /D (47) >> >> endobj 1135 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 335.417 522 341.195] /A << /S /GoTo /D (56) >> >> endobj 1136 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 322.857 522 330.628] /A << /S /GoTo /D (47) >> >> endobj 1137 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 314.282 522 320.061] /A << /S /GoTo /D (43) >> >> endobj 1138 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 303.715 522 309.493] /A << /S /GoTo /D (43) >> >> endobj 1139 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 293.148 522 298.926] /A << /S /GoTo /D (43) >> >> endobj 1140 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 280.588 522 288.359] /A << /S /GoTo /D (47) >> >> endobj 1141 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 270.021 522 277.792] /A << /S /GoTo /D (43) >> >> endobj 1142 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 261.446 522 267.225] /A << /S /GoTo /D (34) >> >> endobj 1143 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 250.879 522 256.657] /A << /S /GoTo /D (43) >> >> endobj 1144 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 238.319 522 246.09] /A << /S /GoTo /D (32) >> >> endobj 1145 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 229.745 522 235.523] /A << /S /GoTo /D (43) >> >> endobj 1146 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 217.185 522 224.956] /A << /S /GoTo /D (56) >> >> endobj 1147 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 208.61 522 214.389] /A << /S /GoTo /D (44) >> >> endobj 1148 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 196.051 522 203.821] /A << /S /GoTo /D (31) >> >> endobj 1149 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 185.483 522 193.254] /A << /S /GoTo /D (47) >> >> endobj 1150 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 174.916 522 182.687] /A << /S /GoTo /D (44) >> >> endobj 1151 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 164.349 522 172.12] /A << /S /GoTo /D (44) >> >> endobj 1152 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [497.938 154.031 507.153 161.553] /A << /S /GoTo /D (32) >> >> endobj 1153 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 154.031 522 161.553] /A << /S /GoTo /D (56) >> >> endobj 1154 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [497.938 143.215 507.153 150.985] /A << /S /GoTo /D (32) >> >> endobj 1155 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 143.215 522 150.985] /A << /S /GoTo /D (56) >> >> endobj 1156 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 134.64 522 140.418] /A << /S /GoTo /D (44) >> >> endobj 1157 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 122.08 522 129.851] /A << /S /GoTo /D (44) >> >> endobj 1158 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 111.513 522 119.284] /A << /S /GoTo /D (44) >> >> endobj 1159 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 100.946 522 108.717] /A << /S /GoTo /D (44) >> >> endobj 1160 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 90.378 522 98.149] /A << /S /GoTo /D (44) >> >> endobj 1167 0 obj << /D [1165 0 R /XYZ 90 720 null] >> endobj 1164 0 obj << /Font << /F55 9 0 R /F31 484 0 R /F8 485 0 R /F2 486 0 R /F76 7 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1215 0 obj << /Length 2063 /Filter /FlateDecode >> stream xÚíœKo7…÷ţZÚĚ ŸCvY )PtU8mĐ ĹŰBlɐd;IŃ˙Ţш/‘źă›Xň˘!˛HŹϙÜó™źäpB'M˙‹NL3i9'FčÉůíQ3|şźšl˙đÇŻGÔęN{ái¤üůěčő)'´!Ś1trv_ęěbňţX‰“gżM¸fD0Ń_eřô÷éىćÇÝ;ś\_nGżœyÉňv6Ęě~Z5Ą‚pĄŘć~´!’›‰Ň‚P.śîo7ŽŻßp:ŃÄ(%6ş†Ő_‘ö×böÖďˇ2ŠZŇ4Úý#~:9Ľ-ÝţĆvž˘O˙ݏţ IćLˇDS>QmCXŁžČÝŠO#ů=‹˛J/9dĆEćlúP™Á:[ućźS˙C ¤!­ĺí~~Ń-?N—9OÜ­Ú Tô!ĆśžX.źĆ" ˆ3 ”­‡b×6cBÂv ¸™Íťœ !Su˜'l)ą<9 DœÎ8gDâœ1Á5э›qîr(%‚V1¤ŘŇc r˜Ą8Ma@†pΞĄÄ9cˆéžßaŽĄéršx,Ě5˛oqd% ߋزbůr˜8)÷"8gĎGâœńA{÷Öv@o+űâÖËGĂ|ÄIđsö|$ÎMŰĎ1ԍ‹Ç9Ŕˆä¤iŘŮâŔ–ËAĂĉŒp€sö$Î)Ҩ~%-Ý8Q9ř6\ůDrƒD`ÎŽƒÔ9ă@+"ZăƃŐőôŽŤóĹłç WV,Aó'ŻYÎžÄ9ăŁU¤éÝł›Ĺźňń|>lYą|9ĚGœÔČřsö|$ÎJ)Z7T>öć-+– ‡ůˆ“áçěůHœ3>¤$výćňڰé!űŰŤť{Ý2sUÇâä0>q#řŕœ=>‰s†DQŰÝŻş‹Ď9AĚôC”Ş=ő ,śĆXX‚†%Žmœł‡%qÎ`á‚Pa<,wÓóOÓŤŇŚť&?ü“[C, AĂÇ"Zœł‡!qÎ``œ(-2NšŕÇďwëz<[ĚWśŸü3=_.ć_n˙-LPܐ^ PěżJĂĄÄĺ‘đO(Îه’8gĄPNuO@ꐗ{âJe(Ča†â4…Â9{†çâĄ%Ą­`ţĝńx¨g<^|#ZJ~ÉAęœć‰3HgG]꜎\B5¤uíďĂôćžĐV°M{"*Nϛě\ĽąČ9ŒL܎"=2‰s†ŒlwMđĂtŮAť#ľ…a°5ÄÂä0 q,#0ŕœ= ‰sĂćř—k‚{ć‹őől~Uařl ą09 CË 8gCâœÁŔ áš{îŽguWcĎťŽĆXX‚†%Žmœł‡%qÎ`Ąý—´ °Ějçq ÎĂV‹LĂČÄ፠ƒsöČ$Î2&BҀĚrqˇ^Ôç߹“îJ‰e"Ča&âtF˜Ŕ9{&ç” Ţ Vž‰ŐěęvZOŠ˙†Š+(’ŒH’ą“LŇّ‘:gdôî’y0Ö×Ýş‚ń0śőÄráŐ0Q@#T l=ťśmŻ“v{řĄüÔ­!Źżš Ä>–6ŽŢXh‚Ś&Žpœłç&qÎŔQŠHív\Ďťůş[Öó ĎŢGueĹňä0qRœ‚|ŕœ=‰óœ bZşű†ćĂĹb˝–4‘ď\ŇHĘHŤĽŻôďÖZői$ϸI/ Œ+›÷t‘Ž›7zSÇ2/-'RšŢľ;ąJË>–>>h[u,;AłÉËěŕ\vÇ2;Šc܄Ôu•aÇVËNĂěÄAăÎu`'q,ł#n›ś[~ŹMđAš`ŸđśÜXfźF&Ę e9łkWćEĐ~‘Ě0Żj_s žĆVËJĂ°Äá´ŕ\\Ç2/œfDŕeşžÝÖ­—oßzńڂbąr‹8#ЊXŕ\,Ç2ýŹŇ2Ű%ýYąx>ś X,‚Ć"ÎŔç:`‘8–ą  ĄR‡Ńbąš­żÜt]á­ Ľ g˙ë'‚PÖśJŘŹƒÎ:.|~€yČç:d8ł–Ći|ÔŤŽ6‡i$lĄ‘´5Kœ\y\ŔYnPIěʤhCćzÎĹĺĺŞ[Žő0 ~-âƊ#Ča2â¤ĘĂŇu`#q,ĂŃn ťsŮ]ÖěAW°ŽŢXj‚Ś&ްź,AşÔ$ŽejTK´vWWłŻuö9Ôěc+ĺ%Ča^âđ^pŽ/‰c™ŮîO¨­>Íî*/âĹVËKĂźÄáźŕ\^Ç2/B‘ÖŸ…^ÝMĎťzüuOÇ_}ŹśĆXR‚&%Ž ç:’8–IáŠP˙ÖÍ@ĘŤÚÜ>żšľeĹÂä0qR8׎Äq÷Ŕ ’öm8iÝAĘż€—'§˝š ťSóŘ]\Őnć@ł“ŘźœŮ ť™Hbĺ4#X!]7XĽŽĹ1Gô-˛ávB|Ź˙Kë îÝšŇc r 8M!‹á\€Çň¸$úŠM6Öój\ú<Ťœ˝ gœŚĐó_$‡9łš1ÎpŽg‰cy b”(cożŤ˝$@śôX€‚(Nç:”8–ęĄĚNޟofóOľ3:Pgd+ĺ%Ča^âđ$/ň‚sxIË× ŃÜ2ú÷řÄfďěkńe’şéźÇMgÜ m×ŘŮđô’#ƒŃ¨ë›#Á4 endstream endobj 1214 0 obj << /Type /Page /Contents 1215 0 R /Resources 1213 0 R /MediaBox [0 0 612 792] /Parent 713 0 R /Annots [ 1161 0 R 1162 0 R 1163 0 R 1168 0 R 1169 0 R 1170 0 R 1171 0 R 1172 0 R 1173 0 R 1174 0 R 1175 0 R 1176 0 R 1177 0 R 1178 0 R 1179 0 R 1180 0 R 1181 0 R 1182 0 R 1183 0 R 1184 0 R 1185 0 R 1186 0 R 1187 0 R 1188 0 R 1189 0 R 1190 0 R 1191 0 R 1192 0 R 1193 0 R 1194 0 R 1195 0 R 1196 0 R 1197 0 R 1198 0 R 1199 0 R 1200 0 R 1201 0 R 1202 0 R 1203 0 R 1204 0 R 1205 0 R 1206 0 R 1207 0 R 1208 0 R 1209 0 R 1210 0 R 1211 0 R 1212 0 R ] >> endobj 1161 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 670.206 297.029 675.984] /A << /S /GoTo /D (34) >> >> endobj 1162 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 659.74 297.029 665.518] /A << /S /GoTo /D (32) >> >> endobj 1163 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 649.274 297.029 655.052] /A << /S /GoTo /D (32) >> >> endobj 1168 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 636.816 297.029 644.587] /A << /S /GoTo /D (49) >> >> endobj 1169 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 626.35 297.029 634.121] /A << /S /GoTo /D (44) >> >> endobj 1170 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 615.884 297.029 623.655] /A << /S /GoTo /D (44) >> >> endobj 1171 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 605.418 297.029 613.189] /A << /S /GoTo /D (44) >> >> endobj 1172 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 594.952 297.029 602.723] /A << /S /GoTo /D (44) >> >> endobj 1173 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 584.486 297.029 592.257] /A << /S /GoTo /D (32) >> >> endobj 1174 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 574.02 297.029 581.791] /A << /S /GoTo /D (44) >> >> endobj 1175 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 563.555 297.029 571.325] /A << /S /GoTo /D (44) >> >> endobj 1176 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 555.081 297.029 560.86] /A << /S /GoTo /D (44) >> >> endobj 1177 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 544.615 297.029 550.394] /A << /S /GoTo /D (44) >> >> endobj 1178 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 532.157 297.029 539.928] /A << /S /GoTo /D (47) >> >> endobj 1179 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 521.691 297.029 529.91] /A << /S /GoTo /D (54) >> >> endobj 1180 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 513.218 297.029 518.996] /A << /S /GoTo /D (48) >> >> endobj 1181 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 471.247 297.029 477.025] /A << /S /GoTo /D (34) >> >> endobj 1182 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 460.781 297.029 466.559] /A << /S /GoTo /D (44) >> >> endobj 1183 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 448.322 297.029 456.093] /A << /S /GoTo /D (44) >> >> endobj 1184 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 437.856 297.029 445.627] /A << /S /GoTo /D (44) >> >> endobj 1185 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 427.391 297.029 435.161] /A << /S /GoTo /D (44) >> >> endobj 1186 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 416.925 297.029 424.696] /A << /S /GoTo /D (44) >> >> endobj 1187 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 406.459 297.029 414.23] /A << /S /GoTo /D (44) >> >> endobj 1188 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 395.993 297.029 403.764] /A << /S /GoTo /D (44) >> >> endobj 1189 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 387.52 297.029 393.298] /A << /S /GoTo /D (44) >> >> endobj 1190 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 377.054 297.029 382.832] /A << /S /GoTo /D (44) >> >> endobj 1191 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 366.588 297.029 372.366] /A << /S /GoTo /D (31) >> >> endobj 1192 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 684.134 522 689.913] /A << /S /GoTo /D (44) >> >> endobj 1193 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 673.566 522 679.345] /A << /S /GoTo /D (34) >> >> endobj 1194 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 662.998 522 668.777] /A << /S /GoTo /D (44) >> >> endobj 1195 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 652.43 522 658.209] /A << /S /GoTo /D (44) >> >> endobj 1196 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 641.862 522 647.64] /A << /S /GoTo /D (44) >> >> endobj 1197 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 631.294 522 637.072] /A << /S /GoTo /D (56) >> >> endobj 1198 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 620.726 522 626.504] /A << /S /GoTo /D (56) >> >> endobj 1199 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 608.165 522 615.936] /A << /S /GoTo /D (47) >> >> endobj 1200 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 599.59 522 605.368] /A << /S /GoTo /D (56) >> >> endobj 1201 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 589.022 522 594.8] /A << /S /GoTo /D (47) >> >> endobj 1202 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 578.454 522 584.232] /A << /S /GoTo /D (44) >> >> endobj 1203 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 567.885 522 573.664] /A << /S /GoTo /D (44) >> >> endobj 1204 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 555.325 522 563.096] /A << /S /GoTo /D (44) >> >> endobj 1205 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 544.757 522 552.528] /A << /S /GoTo /D (44) >> >> endobj 1206 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 534.189 522 541.959] /A << /S /GoTo /D (44) >> >> endobj 1207 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 487.513 522 495.283] /A << /S /GoTo /D (44) >> >> endobj 1208 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 476.944 522 484.715] /A << /S /GoTo /D (45) >> >> endobj 1209 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 432.261 522 438.039] /A << /S /GoTo /D (45) >> >> endobj 1210 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 421.693 522 427.471] /A << /S /GoTo /D (45) >> >> endobj 1211 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 411.125 522 416.903] /A << /S /GoTo /D (53) >> >> endobj 1212 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 366.588 522 372.366] /A << /S /GoTo /D (45) >> >> endobj 1216 0 obj << /D [1214 0 R /XYZ 90 720 null] >> endobj 1213 0 obj << /Font << /F55 9 0 R /F76 7 0 R /F31 484 0 R /F8 485 0 R /F2 486 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1262 0 obj << /Length 2366 /Filter /FlateDecode >> stream xÚíœKsš…÷ţܤŠŹ 1x]ěŒ'“JR.Кdђ(ŞËɐ­Ôřßčş!źöŹ$vͲtÔGžç›‹WClFÝlVљ‚TŇÎîžŢŃőŹ˙ŕóOďXĐ-p™(ßßźűáŁR3FIE+6ťy˜)ƈ˙0ŞnîgżÎľZüçćoď~źž¤8GZz噧Ń3fgJzO÷Si+ ˛ˇctąTšĎ?ěśw‹%›Żöíb)Œœ˙ź˝_ýć”ţ ’Šš’Š™¤ÄPÓ?彐Ď,Š´îŒ‚ŠůŚ ŞMÝŽ~ă‡öĄ—ŰD.%ĄÖşF§ü“űQ ë˙ŕ/ţĆ.íŐĂIţÜb™˜i^i.1ŐËDŢq†súȮ蜝9W†P^aƒúĚů%?ś"J¸gRF¸ Ö.ňŁ‚čÓÂj'] )ćż<ď÷ ÷ďí9MJ]ńŤŁ Gš?…@ƒ“ČAp˘Śď!Ň9‚SrvKMŹÖ˝i˝Żďšvuž˝p\™ję$ßÚ^buą”Œr˜’40ŚAJpÎ%gO‰ÖDTb dÓ|Yđjž!…ťšHůŢś f”ĂŔ¤Ů€Á9Ŕœ=0J‘Šł˜mݲŰL_Јár˘%ů$F((ŒQƒ‘fTç<€Qpö`HEdœ—×Ďíăîp_熧cŒOh”šE¨%–‰Q3‘ĆS`ç<0q✝ź*ż˘RÁú=jńs[ßvóŐŐ&3 ×ZĚÄň Ĩ ‚VhÄF9ŒXĐôˆ)1œó€XÁŮľYqbE˜5Ý6ˇ›fˇ>ÔűG?‹ůšYëp7߽ڕ3ŔBŹ!’…D˛đ"¸Ý # %gςĺDh °`Őü~9ĚáՐu݌żúŐ”r¨6ĺQ§œź2ÎyHšŕěS6ŒŘŠaRîV3vžOšńV“Â&=Ęá¤Ó˘’Ć9Iœ}ҚÉ,&i`R b_㢠6ě(‡ƒMk\ç<[pöÁ*ęćzúr°…eٌĆ^CśPšĄ Ř4G9œfZŘBš8ç!͂łOSşźÓ|ßÜŢřżŽţ•éÇöUďAC ‡Ę`ĺpÂią 㜇„ Î>aA Ľ—‡ÜÇúđż…2óúpŸXÚ7q( 6âQGœVť1Îyˆ¸ŕě#fnąÎ/ľn u_Í¤Ë {#Ë*(éP!lŇŁN:-z!iœótÁŮ'M+BU#úžŹł=Yp"Ťi÷Ű[B(0”Qƒ’fVç<€râœÝ˝–ŽÇR0GĎvŰűŚmvŰzÓ÷ŒO~VŽÍviŒhcŢvëZ“ŠĄ‰Hä Qsáe¤s$˘äěZ‡PšH)cĚűnp84ëGpۇݏϫăyÎÚĄŢôů!~(6üQ‡ŸćŔ >Îy˙Ä9߸&\‡!ë/¨Íüűć°şkÉÝĂ:{N¨éôţ#ĆÝz˝aŸČaŒ‚ćRÁ9œ}qëv—¨÷ťçŰÍŞoGż+›!´[}VW´g ‡`”äY0¸ŕœNœł}„?î‡EΏ˜iĹężĎľŸUdơzeBO]äráĘƒŰ ‘ƒE͈Î˘SçF9ĚGł 8灏ç—D¸c3-‘<°ů×| qϒ„óĐgŠ;ć~n˘ Ýt”[xŤş üâĆxT/ůT§†%•éę/•=J•›kćKIÍąÝőٌ˜ďúŃŚ}\őŸŘüNýSćđ[ößí‡bí+‚MuPĂĄ&%>ßDé2EYv‘ÂvC˘ÔŻ…s•%›÷sV‡îşWöŞ—Ól´F(,–ŒQŁ‘fu~c§cçÚÁqâ˜<üM v.Ža-Óü›2ĺŠq͸%¨)›Đ) Ł4#–*,:‰D'j€M5ŇŐŁSrŒE)F¸ ä4ëíî°ĘośJJ„™Ţœ.Źl‡CIą\Œr˜‹4%€ œkÇEÁqŕÂĺ­m˜´4ă 峗駛Äßyž7d*Ĺe”ø¤áĺgœH×—‚》 „ńHËţšŚ—Ý ĺnuĚŕúƒ=qEçzCB}˝°™j8ň$ A ,ťŔať!o˙šHź–Ólm˝ŮtěŮ+[vz¤ …!˘âCQ/QŃŤ—‰<ƒĹËGvľY,pŚ/ÜÂfßoľç~ĺ€á„Iy ;Ąńniař!"‘ƒý"j€űV>o¤Ť'Łä[†ÔnIŒ7Í6Ć ÜJKĚŐ_ő„€ľÄ1Ęa ŇxXvGéÚqâ´ Á‰2aÔúŚU<Շu“;ĹuO˛rzäŰ[ łÝ–¤Q“4%’pŽIÇĄľPăœeD¤}ĚŽU„œ.Ž˙ÎľJ,4––QӒfw~äŇтsíh9qĚ÷a Ń",§˙‰Ů.ƒŢ\çĆż0Qőmw cöB 7UDož&r§¨),}‘ާSG'!§ĘŸ0ĂŘ~˜í>ěŽaľÍÖMzsëcĺžW\`!nÉAzć›ČaB‚Ś0ůôűߛ´Űänŕ8ęŽâwß@„b)ĺ0i&ů1éÚQpâ˜ďĚ(_ˇžÁ4ŠśžÍNS¸$zÚoů˝ëi܋„UĽWOY Şčúrôpô endstream endobj 1261 0 obj << /Type /Page /Contents 1262 0 R /Resources 1260 0 R /MediaBox [0 0 612 792] /Parent 1265 0 R /Annots [ 1217 0 R 1218 0 R 1219 0 R 1220 0 R 1221 0 R 1222 0 R 1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R 1230 0 R 1231 0 R 1232 0 R 1233 0 R 1234 0 R 1235 0 R 1236 0 R 1237 0 R 1238 0 R 1239 0 R 1240 0 R 1241 0 R 1242 0 R 1243 0 R 1244 0 R 1245 0 R 1246 0 R 1247 0 R 1248 0 R 1249 0 R 1250 0 R 1251 0 R 1252 0 R 1253 0 R 1254 0 R 1255 0 R 1256 0 R 1257 0 R 1258 0 R 1259 0 R ] >> endobj 1217 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 628.98 297.029 636.203] /A << /S /GoTo /D (21) >> >> endobj 1218 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 585.595 297.029 593.465] /A << /S /GoTo /D (19) >> >> endobj 1219 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 575.122 297.029 582.865] /A << /S /GoTo /D (16) >> >> endobj 1220 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 564.65 297.029 572.62] /A << /S /GoTo /D (16) >> >> endobj 1221 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 554.177 297.029 562.147] /A << /S /GoTo /D (16) >> >> endobj 1222 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 545.448 297.029 551.675] /A << /S /GoTo /D (16) >> >> endobj 1223 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 503.309 297.029 509.535] /A << /S /GoTo /D (15) >> >> endobj 1224 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 491.093 297.029 499.063] /A << /S /GoTo /D (16) >> >> endobj 1225 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 480.62 297.029 488.59] /A << /S /GoTo /D (16) >> >> endobj 1226 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 470.148 297.029 478.118] /A << /S /GoTo /D (16) >> >> endobj 1227 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 459.675 297.029 467.645] /A << /S /GoTo /D (16) >> >> endobj 1228 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 449.202 297.029 457.173] /A << /S /GoTo /D (16) >> >> endobj 1229 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 438.73 297.029 446.7] /A << /S /GoTo /D (16) >> >> endobj 1230 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 428.257 297.029 436.227] /A << /S /GoTo /D (16) >> >> endobj 1231 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 417.785 297.029 425.755] /A << /S /GoTo /D (16) >> >> endobj 1232 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 409.056 297.029 415.282] /A << /S /GoTo /D (16) >> >> endobj 1233 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 365.173 297.029 373.143] /A << /S /GoTo /D (21) >> >> endobj 1234 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 354.7 297.029 362.67] /A << /S /GoTo /D (27) >> >> endobj 1235 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 310.575 297.029 318.545] /A << /S /GoTo /D (21) >> >> endobj 1236 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 300.103 297.029 308.073] /A << /S /GoTo /D (17) >> >> endobj 1237 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 255.978 297.029 263.72] /A << /S /GoTo /D (17) >> >> endobj 1238 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 213.596 297.029 219.823] /A << /S /GoTo /D (16) >> >> endobj 1239 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 169.713 297.029 177.683] /A << /S /GoTo /D (17) >> >> endobj 1240 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [287.813 159.241 297.029 167.211] /A << /S /GoTo /D (18) >> >> endobj 1241 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 629.201 522 635.428] /A << /S /GoTo /D (16) >> >> endobj 1242 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 616.896 522 624.866] /A << /S /GoTo /D (27) >> >> endobj 1243 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 606.334 522 614.305] /A << /S /GoTo /D (19) >> >> endobj 1244 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 561.805 522 568.031] /A << /S /GoTo /D (21) >> >> endobj 1245 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 549.5 522 557.47] /A << /S /GoTo /D (21) >> >> endobj 1246 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 540.681 522 546.908] /A << /S /GoTo /D (16) >> >> endobj 1247 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 528.376 522 536.119] /A << /S /GoTo /D (21) >> >> endobj 1248 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [517.392 519.558 522 525.785] /A << /S /GoTo /D (3) >> >> endobj 1249 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 473.438 522 481.408] /A << /S /GoTo /D (15) >> >> endobj 1250 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 462.876 522 470.846] /A << /S /GoTo /D (17) >> >> endobj 1251 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 416.603 522 424.345] /A << /S /GoTo /D (17) >> >> endobj 1252 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 407.784 522 414.011] /A << /S /GoTo /D (18) >> >> endobj 1253 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 363.408 522 369.634] /A << /S /GoTo /D (16) >> >> endobj 1254 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 317.287 522 325.258] /A << /S /GoTo /D (17) >> >> endobj 1255 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 306.726 522 314.696] /A << /S /GoTo /D (18) >> >> endobj 1256 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [517.392 262.196 522 268.423] /A << /S /GoTo /D (1) >> >> endobj 1257 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 216.076 522 224.046] /A << /S /GoTo /D (17) >> >> endobj 1258 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 205.514 522 213.484] /A << /S /GoTo /D (18) >> >> endobj 1259 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [512.785 160.984 522 167.211] /A << /S /GoTo /D (18) >> >> endobj 1263 0 obj << /D [1261 0 R /XYZ 90 720 null] >> endobj 1264 0 obj << /D [1261 0 R /XYZ 90 720 null] >> endobj 1260 0 obj << /Font << /F55 9 0 R /F76 7 0 R /F2 486 0 R /F8 485 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1268 0 obj << /Length 49 /Filter /FlateDecode >> stream xÚ3T0BCKscc=K …ä\.°hQş„äÎeUgbl¤ą*OS endstream endobj 1267 0 obj << /Type /Page /Contents 1268 0 R /Resources 1266 0 R /MediaBox [0 0 612 792] /Parent 1265 0 R >> endobj 1269 0 obj << /D [1267 0 R /XYZ 90 720 null] >> endobj 1266 0 obj << /ProcSet [ /PDF ] >> endobj 1310 0 obj << /Length 2407 /Filter /FlateDecode >> stream xÚíœK“ˇÇďú<Do 7YG)'RIŤŠŤě(îh—Ľ%šáqôíƒ÷€$B×^ŰS*ŐRŤf˙ÉéFá¤UŕDśŽ1DLŤ'­ůíöfbźýţ tv3e8‹,żťzň——”N` d+áäęă„B$'?5Ë鿯ţţäĹUđCŞԖ'ŠœM R˘Őkb‚ˆ‰UťšJŇĚ?ÜuÓć´Ů|´?ŸmÖS ›]gôú5YW`vĽŢA %Čz‚Ó„ˆ6ŻěSśĺ 6×űĹnМ™çĂĹ d€ˇB92ţŞ0n°ƒ}ă//ęěĄ^ŕQЉş´D]oŚ/ąDgď­g‘yţpÁş¸KÓPBkĽőiÍ]+‡ÜŞ˘@Kż›ßÝÍó´L1†GHNMrȸë\‹Ě`^B&Î"S'9’>Lް%*‘‘ • .7@癶m›ďťuˇßYhŽŸÉ¨"‘_™ß"ź —{B*1řȞ#ŐZĎ"ó.ÇNł¤ÖĘ*Ë3’P.DŠĄŻ?ěćËőr}3!Ž›,Ş”Ĺ.IęĎj]vV‡uŕ(đüiŠDÓm×Ú+ifłn•rMŠZćië°oçËžłŻ`ő6˙Ky&ŞÂř‹^ô­~Ń”kŃlôCçW řHĽzHüSć)i˜„ßtš íVWúY”*"•í\đ^Ř˙-›Dżý˝ Ü\˝L%ʊ+~ş>pǀP×ĚŁrŽ=k=‹ĚSČ9Í ĎÔ[Á˘VÚYŸ‘čŤ\+y@;ôß˙óŐŠ‹Ľ˜””|ef“đC+äň´ rmžĚKy:&'§ëdMž.JX)ů ëýJÓjˇ‚qóüőťśœ"ţ$Ř>ŇFMŇZ4óš1'$‰fŹAł(ĐÄ0Ug;4ŠCóď,—˙ZŽŻÍşůKŻAšţsżëV} VˆŰxiý6Ŕ\`jĚK€ĹŃŚIŔęd `Eɘ*ŽÔ_ó€Í*÷)°v›ţ6™úTbSߣ$ÓE´–ĚÁźDfŒ O’Y'kČ,J2!˜SO&wdžŮn>ÜégŕłÍę~y§÷RЌ‡@jŸ0nř/Yôš°Ôâ5˜—đŠcĆŤNÖŕU” xľ-@ˆxźDŻ_–ťŰÔvSr `ŘŻćŸ:kż¸íŸ’U)R<ŚË ž\\jůĚK|ĹÁNóU'kř:’<éhŢˆCSÔv´ß÷ŚăŁOQ~˜›ă•N÷äĐ?8îpłpřÇěpgZÔţÂUś¨#óB‹ú 2×˘Ž”ö-ęcétŽQyŔ¤ď9ž´¨MĘxÚ÷űŐ˝>çHWíH˛1s\¤6ňŠL.‘y!šD9X­ŹN.eÉŃú&Ič,'[ÉĆřWöF1„ĺV2%_Övu­díŕ.ÝFVŸa!¤LЃu‘í•:č"łfşČ0ÝFVNÚću>pg{ĘDY€äěÖz™'a?tšƒ¨='Ź•vÖg¤ôˆ,ý˛zĘĎťű››Ě@]1ůŐŁă6ő2•–@‡ĂÇď Îz™§xäŃ6Ý~O‡t.VľĐ ć%čb2ĐŐé芚:URž şWëűýÎÂöbíéËľx[•}9SăĹrěِբŹKäEdŔŤ5ܕvÖ`ÖŕőÍ~~S›ćtUÁĹżŕüŸÂƧ–ą`]b, y†ą*QĂXI00†Ô^I™?¸śÝôîlám÷ąŰv녙§ësK)DăćőWRĽZÔókqč!KÂV§kh+jÜ  ›?ĆŁŰS.§ľQDĺłŐ|ˇË.§B˝…1Š= q.PľÄ ć%ââčĂäůVĽŽ!ލˆkĄÚ”âüńü‹˙ěçůţĽzŞ”cB{ łöĆZó1ët EMĎ#6" 2íníz;__ťŇÎvÝbiĎŕHón ›ĎŤ)â㠁7›ťôzL1ŕŽüň›C%O‘y§ƒŘB‘âŠRWóTÖ Ű@Śă‘ĹƒŢ{풇VeFŠĚ é$~ľş:#•5v ,¸ÇΗe*1]/uJňsňvë°Í‚‡KâE#>(ľt ć%şâHgčŞÓ5t5]*"čňĹÖëý.dľ—şî*ŸŠAőĆ!“ '0™ZÄóbq¸J"V§k+jÄ0­đuU'yžÜv‹żKu­ţkočCĄuŒ™"šĄą{ü#%>Hľ´ ć%ÚâČghŤÓ5´5mŞ—˜zÚü\ÉŤ›őfۅ{˘Wú°+YžÉo¸uDŹfétŞ%m0/‘G=CZŽ!­¨Hƒş Hó#%vš´ß ˛Űéň8ľ €áŘŇ˝ě ęTKÚ`^"-Ž:J~˙RĽŽ!­¨éI“0˙Ĺł4L’ÎcÖ@Śořoöú‚UŃ]řJ€ë?q,QňvŹ’č˙J ţƒ endstream endobj 1309 0 obj << /Type /Page /Contents 1310 0 R /Resources 1308 0 R /MediaBox [0 0 612 792] /Parent 1265 0 R /Annots [ 1270 0 R 1271 0 R 1272 0 R 1273 0 R 1274 0 R 1275 0 R 1276 0 R 1277 0 R 1278 0 R 1279 0 R 1280 0 R 1281 0 R 1282 0 R 1283 0 R 1284 0 R 1285 0 R 1286 0 R 1287 0 R 1288 0 R 1289 0 R 1290 0 R 1291 0 R 1292 0 R 1293 0 R 1294 0 R 1295 0 R 1296 0 R 1297 0 R 1298 0 R 1299 0 R 1300 0 R 1301 0 R 1302 0 R 1303 0 R 1304 0 R 1305 0 R ] >> endobj 1270 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [442.476 642.092 450.545 652.055] /A << /S /GoTo /D (1) >> >> endobj 1271 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [442.476 608.717 450.545 618.68] /A << /S /GoTo /D (3) >> >> endobj 1272 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [444.545 592.279 450 599.855] /A << /S /GoTo /D (3) >> >> endobj 1273 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [456.883 576.78 462.338 586.704] /A << /S /GoTo /D (3) >> >> endobj 1274 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [444.545 565.978 450 573.432] /A << /S /GoTo /D (3) >> >> endobj 1275 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [444.545 550.706 450 560.403] /A << /S /GoTo /D (4) >> >> endobj 1276 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [444.545 537.555 450 547.252] /A << /S /GoTo /D (5) >> >> endobj 1277 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [444.545 526.526 450 534.101] /A << /S /GoTo /D (7) >> >> endobj 1278 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [444.545 511.254 450 520.951] /A << /S /GoTo /D (7) >> >> endobj 1279 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [444.545 500.224 450 507.8] /A << /S /GoTo /D (7) >> >> endobj 1280 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [442.476 467.348 450.545 480.1] /A << /S /GoTo /D (9) >> >> endobj 1281 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [444.545 451.577 450 461.274] /A << /S /GoTo /D (9) >> >> endobj 1282 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [449.216 438.2 454.671 448.124] /A << /S /GoTo /D (9) >> >> endobj 1283 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 425.276 450 434.973] /A << /S /GoTo /D (14) >> >> endobj 1284 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [434.406 397.31 450.545 407.153] /A << /S /GoTo /D (15) >> >> endobj 1285 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 380.872 450 388.326] /A << /S /GoTo /D (15) >> >> endobj 1286 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 365.6 450 375.297] /A << /S /GoTo /D (15) >> >> endobj 1287 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 352.449 450 362.146] /A << /S /GoTo /D (15) >> >> endobj 1288 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 339.299 450 348.874] /A << /S /GoTo /D (15) >> >> endobj 1289 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 328.269 450 335.845] /A << /S /GoTo /D (16) >> >> endobj 1290 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 312.997 450 322.573] /A << /S /GoTo /D (17) >> >> endobj 1291 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 299.847 450 309.422] /A << /S /GoTo /D (17) >> >> endobj 1292 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 286.696 450 296.393] /A << /S /GoTo /D (18) >> >> endobj 1293 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 275.666 450 283.242] /A << /S /GoTo /D (18) >> >> endobj 1294 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 260.394 450 270.091] /A << /S /GoTo /D (18) >> >> endobj 1295 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 247.244 450 256.941] /A << /S /GoTo /D (18) >> >> endobj 1296 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 234.093 450 243.79] /A << /S /GoTo /D (19) >> >> endobj 1297 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 220.942 450 230.518] /A << /S /GoTo /D (19) >> >> endobj 1298 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [434.406 190.187 450.545 202.939] /A << /S /GoTo /D (21) >> >> endobj 1299 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 174.417 450 183.993] /A << /S /GoTo /D (21) >> >> endobj 1300 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 161.266 450 170.963] /A << /S /GoTo /D (21) >> >> endobj 1301 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 148.116 450 157.691] /A << /S /GoTo /D (22) >> >> endobj 1302 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 137.086 450 144.541] /A << /S /GoTo /D (22) >> >> endobj 1303 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 121.814 450 131.511] /A << /S /GoTo /D (22) >> >> endobj 1304 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 108.664 450 118.36] /A << /S /GoTo /D (23) >> >> endobj 1305 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 95.513 450 105.21] /A << /S /GoTo /D (24) >> >> endobj 1311 0 obj << /D [1309 0 R /XYZ 90 720 null] >> endobj 1308 0 obj << /Font << /F55 9 0 R /F76 7 0 R /F102 1312 0 R /F63 1313 0 R /F56 25 0 R /F82 8 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1348 0 obj << /Length 1991 /Filter /FlateDecode >> stream xÚíœMo7†ďţ:ŇÁĚňsÉŢ'nÚ:h‘¸@˘‡­ź‘ŘZc%§M~}š\’KŮËŃÔąÓ8r°­ řJó>?źtRŘtbŠIÉ91BOć—…{ľ]LúoŢţp@}ÜĄ LÂG2xsP÷‰™źĽ- "…ÄjűčÚÖ=U*˘ďeKďŢëĺzÓ´{Łžëż5W3N§Űĺâźűf3ę-9ĄĆüďÎ}ć‹ăC˛Ć'á€ń[°2g­yŕ_LJěI†tŮ ‰ßER}˜„¸ysĐŮXj†pˆšÔANGŠÁé:j@ÍHMaׅ†§Ô„˝Š“fьRÚľgaöýů—Ú aaÂ!ŘRă9… §ë`5lÂHÂĹlaOâ]ż%Qϗą:ŻÚjžŠŰń"Ĺm‘âęŠB˜!%$IJ˛ĺÚ8)HݎX3’˘Ą†Ľ¤„„wőźŰŻ;WŕT&m{Î͡źŸ#Á'K‘şÂĹ( 8]G¨IPV[ДĎçŐŚ^4íňS}6j?e„k˝ďdđŘřlcąÂ!lR 3Řŕt6 fXr )‰65Ąţľ­ŤËŽţë˘öőĂţĎÔo˙Đif˛)‰űŽœzú„cÁ‰Ń7‰‡BŽbƒuÔ@‚a›Šd;ázłqA+§='wé[úÄcá‰Ń<‰—˘…%ęŕ#<Ě™–œĐڞTŤĹuľ¨üŘ:c4Ý_7€PńiƲ2„C°¤ŢehÁé:\@ÍŘŘPĺî– ź$Ű­eË&ü~ď‹>ćurČ(!B#ľIčQ4pş P3˘Q¤wĄ9úTĎťöĺź?BÝuf ”ŘoűޞRŕîJV čžâÍA!V ä=É]šn By™˛ÂÓmßś^ Ŕě*'vš3Oö€3CJH0’”$ eËľqRş)°f$Ľě””x#čz˝^âfœ’č;w¸—›>ĽX6†pˆÔ'1ziŠëŘ5CóʡŒ$l„ÝśŁĺŚęśŰpŐCHş_üěžë˛Ĺf‡°I-”٧GH]‡ ¨KŠ,ˆŇÉŮ´Œ=ěóŤjžÜ =ň žNçŘđ)Ų1„Cl¤>eŘŔé:6@ÍČFç+)Ą‰}~˝9oڗ YažÍ.6‡€Ď!B ľC˛QpşP3"Ŕl3Şˇ˝éëŞý0“jZľgˆ•Œ]ç*!÷]‡ˇŇ§ËÇń‘z%GOůşŽP3ňA)aœ§|„ŽôőG ܞŘ2ńŽNPCŸTđéĂr0„C¤žd8Ŕé:@ÍŔ3ššĽČ}ńYmDH)’$`c˧q6ş°fX™0-ˆá áô÷ůźíŻ´}źüyŠhľ_˘@ŕř|cÁÂ!pRĺč 0RׁjFpJJJ\(=8żlÎQ‡yvÁ÷°Üuv ůǂ4„C ĽŚf@Âé:@Í’´ô$MŠö˝rŐçĂҖĄđ§čŮ?"fĘěOő öŢ`‹Ńb‰ÝÂP˘°mÁ[Łčř"ĂŐ:ăFqÜ=Šâz5÷ŰnĽœţ¸:ł-đčsGlŋGś2z€G_„D"}‘„žŘrGfŸP‚ԏž€ľ-ÔHB•?E˘…§â¨YÍëŤÍn lŃ*écÍ]*BoZČ’„$ aË•}H¨ý/ăO(¸ endstream endobj 1347 0 obj << /Type /Page /Contents 1348 0 R /Resources 1346 0 R /MediaBox [0 0 612 792] /Parent 1265 0 R /Annots [ 1306 0 R 1307 0 R 1314 0 R 1315 0 R 1316 0 R 1317 0 R 1318 0 R 1319 0 R 1320 0 R 1321 0 R 1322 0 R 1323 0 R 1324 0 R 1325 0 R 1326 0 R 1327 0 R 1328 0 R 1329 0 R 1330 0 R 1331 0 R 1332 0 R 1333 0 R 1334 0 R 1335 0 R 1336 0 R 1337 0 R 1338 0 R 1339 0 R 1340 0 R 1341 0 R 1342 0 R 1343 0 R 1344 0 R 1345 0 R ] >> endobj 1306 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [434.406 707.248 450.545 720] /A << /S /GoTo /D (25) >> >> endobj 1307 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [434.406 673.873 450.545 686.625] /A << /S /GoTo /D (27) >> >> endobj 1314 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [434.406 640.498 450.545 653.25] /A << /S /GoTo /D (29) >> >> endobj 1315 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 624.728 450 634.425] /A << /S /GoTo /D (29) >> >> endobj 1316 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 611.577 450 621.153] /A << /S /GoTo /D (29) >> >> endobj 1317 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 598.427 450 608.003] /A << /S /GoTo /D (29) >> >> endobj 1318 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 585.276 450 594.852] /A << /S /GoTo /D (29) >> >> endobj 1319 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 574.247 450 581.822] /A << /S /GoTo /D (30) >> >> endobj 1320 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 561.096 450 568.672] /A << /S /GoTo /D (30) >> >> endobj 1321 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 547.945 450 555.521] /A << /S /GoTo /D (30) >> >> endobj 1322 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 534.795 450 542.37] /A << /S /GoTo /D (30) >> >> endobj 1323 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 521.644 450 529.22] /A << /S /GoTo /D (31) >> >> endobj 1324 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 506.372 450 515.948] /A << /S /GoTo /D (33) >> >> endobj 1325 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 493.221 450 502.918] /A << /S /GoTo /D (33) >> >> endobj 1326 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 480.071 450 489.768] /A << /S /GoTo /D (34) >> >> endobj 1327 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 466.92 450 476.617] /A << /S /GoTo /D (34) >> >> endobj 1328 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 455.89 450 463.466] /A << /S /GoTo /D (45) >> >> endobj 1329 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 442.74 450 450.316] /A << /S /GoTo /D (47) >> >> endobj 1330 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 427.468 450 437.165] /A << /S /GoTo /D (47) >> >> endobj 1331 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 416.438 450 424.014] /A << /S /GoTo /D (48) >> >> endobj 1332 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 403.288 450 410.864] /A << /S /GoTo /D (48) >> >> endobj 1333 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 390.137 450 397.713] /A << /S /GoTo /D (48) >> >> endobj 1334 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 376.986 450 384.562] /A << /S /GoTo /D (49) >> >> endobj 1335 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 363.836 450 371.411] /A << /S /GoTo /D (51) >> >> endobj 1336 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 348.564 450 358.261] /A << /S /GoTo /D (51) >> >> endobj 1337 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 337.534 450 345.11] /A << /S /GoTo /D (52) >> >> endobj 1338 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 324.384 450 331.959] /A << /S /GoTo /D (53) >> >> endobj 1339 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 309.112 450 318.809] /A << /S /GoTo /D (53) >> >> endobj 1340 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 295.961 450 305.658] /A << /S /GoTo /D (53) >> >> endobj 1341 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 282.81 450 292.507] /A << /S /GoTo /D (54) >> >> endobj 1342 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 271.781 450 279.357] /A << /S /GoTo /D (54) >> >> endobj 1343 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [439.091 258.63 450 266.085] /A << /S /GoTo /D (54) >> >> endobj 1344 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [434.406 228.543 450.545 238.506] /A << /S /GoTo /D (57) >> >> endobj 1345 0 obj << /Type /Annot /Subtype /Link /Border [0 0 0] /Rect [434.406 192.379 450.545 205.131] /A << /S /GoTo /D (65) >> >> endobj 1349 0 obj << /D [1347 0 R /XYZ 90 720 null] >> endobj 1346 0 obj << /Font << /F55 9 0 R /F76 7 0 R /F102 1312 0 R /F63 1313 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1350 0 obj << /S /GoTo /D (Introduction) >> endobj 1352 0 obj (Introduction) endobj 1353 0 obj << /S /GoTo /D (Installation) >> endobj 1355 0 obj (Installation) endobj 1356 0 obj << /S /GoTo /D (General) >> endobj 1358 0 obj (General) endobj 1359 0 obj << /S /GoTo /D (Obtaining\040LaTeX2RTF) >> endobj 1361 0 obj (Obtaining\040L\\kern\040-.36em\\raise\040.3ex\\hbox\040{a}\\kern\040-.15emTeX2RTF{}) endobj 1362 0 obj << /S /GoTo /D (UNIX) >> endobj 1364 0 obj (UNIX) endobj 1365 0 obj << /S /GoTo /D (DOS\040or\040Windows) >> endobj 1367 0 obj (plain\040DOS) endobj 1368 0 obj << /S /GoTo /D (MS\040Windows\040systems) >> endobj 1370 0 obj (MS\040Windows\040systems) endobj 1371 0 obj << /S /GoTo /D (Macintosh) >> endobj 1373 0 obj (Macintosh) endobj 1374 0 obj << /S /GoTo /D (Problems\040Compiling) >> endobj 1376 0 obj (Problems\040Compiling) endobj 1377 0 obj << /S /GoTo /D (Problems\040with\040make\040check) >> endobj 1379 0 obj (Problems\040with\040make\040check) endobj 1380 0 obj << /S /GoTo /D (Using\040LaTeX2RTF) >> endobj 1382 0 obj (Using\040LaTeX2RTF) endobj 1383 0 obj << /S /GoTo /D (General\040Assumptions) >> endobj 1385 0 obj (General\040Assumptions) endobj 1386 0 obj << /S /GoTo /D (LaTeX2RTF\040Options) >> endobj 1388 0 obj (L\\kern\040-.36em\\raise\040.3ex\\hbox\040{a}\\kern\040-.15emTeX2RTF{}\040Options) endobj 1389 0 obj << /S /GoTo /D (Debugging) >> endobj 1391 0 obj (Debugging) endobj 1392 0 obj << /S /GoTo /D (Features) >> endobj 1394 0 obj (Features) endobj 1395 0 obj << /S /GoTo /D (LaTeX2e) >> endobj 1397 0 obj (LaTeX2e) endobj 1398 0 obj << /S /GoTo /D (Unicode\040Support) >> endobj 1400 0 obj (Unicode\040Support) endobj 1401 0 obj << /S /GoTo /D (Input\040Encoding) >> endobj 1403 0 obj (Input\040Encoding) endobj 1404 0 obj << /S /GoTo /D (Language\040Support) >> endobj 1406 0 obj (Language\040Support) endobj 1407 0 obj << /S /GoTo /D (Cross\040References) >> endobj 1409 0 obj (Cross\040References) endobj 1410 0 obj << /S /GoTo /D (Page\040Formatting) >> endobj 1412 0 obj (Page\040Formatting) endobj 1413 0 obj << /S /GoTo /D (Equations) >> endobj 1415 0 obj (Equations) endobj 1416 0 obj << /S /GoTo /D (Math\040and\040Special\040Symbols) >> endobj 1418 0 obj (Math\040and\040Special\040Symbols) endobj 1419 0 obj << /S /GoTo /D (Tables) >> endobj 1421 0 obj (Tables) endobj 1422 0 obj << /S /GoTo /D (Graphics) >> endobj 1424 0 obj (Graphics) endobj 1425 0 obj << /S /GoTo /D (Pagestyles) >> endobj 1427 0 obj (Pagestyles) endobj 1428 0 obj << /S /GoTo /D (Hyperlatex) >> endobj 1430 0 obj (Hyperlatex) endobj 1431 0 obj << /S /GoTo /D (APA\040Support) >> endobj 1433 0 obj (APA\040Support) endobj 1434 0 obj << /S /GoTo /D (Configuration) >> endobj 1436 0 obj (Configuration) endobj 1437 0 obj << /S /GoTo /D (Input\040Processing) >> endobj 1439 0 obj (Input\040processing) endobj 1440 0 obj << /S /GoTo /D (Conditional\040Parsing) >> endobj 1442 0 obj (Conditional\040Parsing) endobj 1443 0 obj << /S /GoTo /D (Output\040Formatting) >> endobj 1445 0 obj (Output\040Formatting) endobj 1446 0 obj << /S /GoTo /D (Direct\040Conversion) >> endobj 1448 0 obj (Direct\040Conversion) endobj 1449 0 obj << /S /GoTo /D (Ignore\040Command) >> endobj 1451 0 obj (Ignore\040Command) endobj 1452 0 obj << /S /GoTo /D (Font\040Configuration) >> endobj 1454 0 obj (Font\040Configuration) endobj 1455 0 obj << /S /GoTo /D (Language\040Configuration) >> endobj 1457 0 obj (Language\040Configuration) endobj 1458 0 obj << /S /GoTo /D (Error\040Messages\040and\040Logging) >> endobj 1460 0 obj (Error\040Messages\040and\040Logging) endobj 1461 0 obj << /S /GoTo /D (History) >> endobj 1463 0 obj (History\040&\040Copyright) endobj 1464 0 obj << /S /GoTo /D (LaTeX2RTF\040under\040Development) >> endobj 1466 0 obj (LaTeX2RTF\040under\040Development) endobj 1467 0 obj << /S /GoTo /D (Unimplemented\040Features) >> endobj 1469 0 obj (Unimplemented\040Features) endobj 1470 0 obj << /S /GoTo /D (Missing\040options) >> endobj 1472 0 obj (Missing\040options) endobj 1473 0 obj << /S /GoTo /D (Known\040Bugs) >> endobj 1475 0 obj (Known\040Bugs) endobj 1476 0 obj << /S /GoTo /D (Reporting\040Bugs) >> endobj 1478 0 obj (Reporting\040Bugs) endobj 1479 0 obj << /S /GoTo /D (Todo\040List) >> endobj 1481 0 obj (Todo\040List) endobj 1482 0 obj << /S /GoTo /D (LaTeX\040Commands) >> endobj 1484 0 obj (Command\040List) endobj 1485 0 obj << /S /GoTo /D (General\040Commands) >> endobj 1487 0 obj (General\040Commands) endobj 1488 0 obj << /S /GoTo /D (Basic\040Commands) >> endobj 1490 0 obj (Basic\040Commands) endobj 1491 0 obj << /S /GoTo /D (Font\040Commands) >> endobj 1493 0 obj (Font\040Commands) endobj 1494 0 obj << /S /GoTo /D (Logos) >> endobj 1496 0 obj (Logos) endobj 1497 0 obj << /S /GoTo /D (Special\040Characters) >> endobj 1499 0 obj (Special\040Characters) endobj 1500 0 obj << /S /GoTo /D (Sectioning\040Commands) >> endobj 1502 0 obj (Sectioning\040Commands) endobj 1503 0 obj << /S /GoTo /D (Uncategorized) >> endobj 1505 0 obj (Uncategorized) endobj 1506 0 obj << /S /GoTo /D (Preamble\040Commands) >> endobj 1508 0 obj (Preamble\040Commands) endobj 1509 0 obj << /S /GoTo /D (Letter\040Commands) >> endobj 1511 0 obj (Letter\040Commands) endobj 1512 0 obj << /S /GoTo /D (Language\040Commands) >> endobj 1514 0 obj (Language\040Commands) endobj 1515 0 obj << /S /GoTo /D (German\040Commands) >> endobj 1517 0 obj (German\040Commands) endobj 1518 0 obj << /S /GoTo /D (Czech\040Commands) >> endobj 1520 0 obj (Czech\040Commands) endobj 1521 0 obj << /S /GoTo /D (French\040Commands) >> endobj 1523 0 obj (French\040Commands) endobj 1524 0 obj << /S /GoTo /D (Russian\040Commands) >> endobj 1526 0 obj (Russian\040Commands) endobj 1527 0 obj << /S /GoTo /D (Citation\040Commands) >> endobj 1529 0 obj (Citation\040Commands) endobj 1530 0 obj << /S /GoTo /D (Apacite\040Commands) >> endobj 1532 0 obj (Apacite\040Commands) endobj 1533 0 obj << /S /GoTo /D (AuthorDate\040Commands) >> endobj 1535 0 obj (AuthorDate\040Commands) endobj 1536 0 obj << /S /GoTo /D (Harvard\040Commands) >> endobj 1538 0 obj (Harvard\040Commands) endobj 1539 0 obj << /S /GoTo /D (HyperLatex\040Commands) >> endobj 1541 0 obj (HyperLatex\040Commands) endobj 1542 0 obj << /S /GoTo /D (Natbib\040Commands) >> endobj 1544 0 obj (Apacite\040Commands) endobj 1545 0 obj << /S /GoTo /D (Acronym\040Commands) >> endobj 1547 0 obj (Acronym\040Commands) endobj 1548 0 obj << /S /GoTo /D (Other\040Commands) >> endobj 1550 0 obj (Other\040Commands) endobj 1551 0 obj << /S /GoTo /D (Environments) >> endobj 1553 0 obj (Environments) endobj 1554 0 obj << /S /GoTo /D (Function\040Index) >> endobj 1556 0 obj (Function\040Index) endobj 1557 0 obj << /S /GoTo /D (Concept\040Index) >> endobj 1559 0 obj (Concept\040Index) endobj 1560 0 obj [277.8] endobj 1561 0 obj [272] endobj 1562 0 obj [571 856.5 856.5 285.5 314 513.9 513.9 513.9 513.9 513.9 770.7 456.8 513.9 742.3 799.4 513.9 927.8 1042 799.4 285.5 285.5 513.9 856.5 513.9 856.5 799.4 285.5 399.7 399.7 513.9 799.4 285.5 342.6 285.5 513.9 513.9 513.9 513.9 513.9 513.9 513.9 513.9 513.9 513.9 513.9 285.5 285.5 285.5 799.4 485.3 485.3 799.4 770.7 727.9 742.3 785 699.4 670.8 806.5 770.7 371 528.1 799.2 642.3 942 770.7 799.4 699.4 799.4 756.5 571 742.3 770.7 770.7 1056.2 770.7 770.7 628.1 285.5 513.9 285.5 513.9 285.5 285.5 513.9 571 456.8 571 457.2 314 513.9 571 285.5 314 542.4 285.5 856.5 571 513.9 571 542.4 402 405.4 399.7 571 542.4 742.3 542.4 542.4] endobj 1563 0 obj [285.5] endobj 1564 0 obj [525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525] endobj 1565 0 obj [539.7] endobj 1566 0 obj [514.6 514.6 514.6 514.6 514.6 514.6 514.6 514.6 514.6 514.6 514.6 514.6 514.6] endobj 1567 0 obj [525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525] endobj 1568 0 obj [1000 500 500 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 777.8 1000 1000 777.8 777.8 1000 1000 500 500 1000 1000 1000 777.8 1000 1000 611.1 611.1 1000 1000 1000 777.8 275 1000 666.7 666.7 888.9 888.9 0 0 555.6 555.6 666.7 500 722.2 722.2 777.8 777.8 611.1 798.5 656.8 526.5 771.4 527.8 718.7 594.9 844.5 544.5 677.8 762 689.7 1200.9 820.5 796.1 695.6 816.7 847.5 605.6 544.6 625.8 612.8 987.8 713.3 668.3 724.7 666.7 666.7 666.7 666.7 666.7 611.1 611.1 444.4 444.4 444.4 444.4 500 500 388.9 388.9 277.8 500 500 611.1 500] endobj 1569 0 obj [583.3 555.6 555.6 833.3 833.3 277.8 305.6 500 500 500 500 500 750 444.4 500 722.2 777.8 500 902.8 1013.9 777.8 277.8 277.8 500 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 277.8 777.8 472.2 472.2 777.8 750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 500 277.8 277.8 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 500 555.6 527.8 391.7 394.4 388.9 555.6 527.8 722.2 527.8 527.8 444.4 500 1000] endobj 1570 0 obj [613.3 580 591.1 624.4 557.8 535.6 641.1 613.3 302.2] endobj 1571 0 obj [625 625 937.5 937.5 312.5 343.7 562.5 562.5 562.5 562.5 562.5 849.5 500 574.1 812.5 875 562.5 1018.5 1143.5 875 312.5 342.6 581 937.5 562.5 937.5 875 312.5 437.5 437.5 562.5 875 312.5 375 312.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 342.6 875 531.3 531.3 875 849.5 799.8 812.5 862.3 738.4 707.2 884.3 879.6 419 581 880.8 675.9 1067.1 879.6 844.9 768.5 844.9 839.1 625 782.4 864.6 849.5 1162 849.5 849.5 687.5 312.5 581 312.5 562.5 312.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 343.7 593.7 312.5 937.5 625 562.5 625 593.7 459.5 443.8 437.5 625 593.7 812.5 593.7 593.7 500] endobj 1572 0 obj << /Length1 2326 /Length2 17690 /Length3 0 /Length 19053 /Filter /FlateDecode >> stream xڌőP\Űֆ ăn!xĆÝÝ-¸;ÁhÜÝݝŕÜ=¸ťť‡ŕnÁpŮűHöůţżęŢęŞî~ćůŽąĆœ‹œXQ…^ŘŘÖ$nkăDĎĚŔÄ•Ńdf01ą201ą “Ťš;YţłŽ@Žrp4ˇľáů‡‡¨čôžöčôî(gkvś0ł˜9x˜9y˜˜,LLÜ˙q´uŕ|ş˜äŇś6 GrQ[;wsS3§÷}ţó@eD `ććć¤ű; l r07Úä€Nf ë÷€V[#s“ű˙¤ â3sr˛ăadtuueZ;2Ř:˜ PÓ\͝ĚĘ Gƒ ČđWÉy 5č߼1 TÍĚ˙ePą5qr:€ď VćF Ç÷gcŕ}w€Š”,@Ádó/gŮ9ĐţÝ3óÓý;úŻDć6Œl­í€6îć6Śs+@A\–ÁÉ͉´1ţËhĺhűtš[ ßţ–ˆ +€ďţť>G#s;'GGsŤżjdü+Í{›ĹlŒEm­­A6NŽéűlî2zďť;㿎Ľ­ŤçČÄÜĆŘäŻ2ŒíŐlĚíARŸ˙íóž„đgÍä`gbbâäŕ€ě 7#3Ćż6Puˇýmdţků˝oO;[;€É{ osĐű‚§#Đprpy{ţÓđż„ŔĚ 067r‚LÍmţd_™ü‹ßŸżƒš@›é}ü˜L}ţűO÷}ŒmmŹÜ˙¸˙ýˆUĺ$Ĺ•h˙]ň""śnOzvV= ;3€™™•ŔÉÎđţß<Š@óë`ú+ecb ŕţ—Ü÷>ýG˛Ëżg€ęß„đżšämß' ú3č:LěLFď_Ě˙ŸÇýď˙SţW–˙×A˙żŠÄ­ŹţśSýËá˙Ç´6ˇr˙ˇÇűä:;˝Ÿ9Ű÷ł`ó]5@˙:ş"śVĆ˙×&ĺ|? Â6ŚV˙mŁšŁ¸šČXŃÜÉČě_ăňŻuľżš•š HŃÖŃüŻŤ@ĎĚÄôlď§ËČňýúp|ŸÉżM ÷Ăóż[ŠŮŮ˙uĘXŘ9@ ;Óű(ą°ł<™ßŁ1Číď)02ŘŘ:˝‡Ţ‹ó˜Ř: üőD9ŘŒÂ-ý‹8Œ"ˆŔ(ú‡¸ŒŸ˙7€QěżÄÉ`˙CĚF‰?Ä`”üCŹFŠ?Ä`”ţCďZdţĐťŮ?ôŽEî˝k‘˙CďZţK\ďZ˙ĐťĽ?ôŽEů˝kQůCďZT˙Đťľ?ôŽEý˝kŃřCďZ4˙KÜďťkýĄwOŕ‰őÝhm÷~xţş˙ëóžjř‡Ţk1ú/ą˝kzżH­˙äřkF˙ďőţ‹ď#ŔřŻńüăđ^˛Éü‹Ě˙řłţ….˙Hđ—ÝÖŮáńď.Ś˙ŔwEf˙Ŕ÷6™˙ßkąúžcý™ßĽŰüŮę˝76ď3ţű{-śjśýóť6ť?Í|oĺű‹çOąlŻ™ŰţŁAďďhFűŕťţTÇüŽßń¤żäú‡ČwwÇ÷›řOŔű6|żĎĚ@˙hŕ{NŽś˙x×éü|ďË?đ˝H×<÷člĆňžŢýřޏ?Ĺžgň9ükŤ˙šŒœŢŰň÷­ý~aü‡˙~ ƒ@n #„ĺ[#Ţ ‹Ú ö‡ďŸ\é÷&ůďi¤RÓ{.;t8?ĄŔ&QW Řp¸NéE[ŰŁşZ!zőëë÷1Ü!.ËDłS}č3Ť6Ěa¸¸ `ú^C@ӝ|÷ň\ĎEnąvŮDś1Ď´šćBšĹŤčłËŽÁ8ťC•lě5O>În]ÁđÓfeç„ĎćoŁôE9ř’ÍđÄ&ÜúŠÇŐŢpâĽw•ĐKűŠ“Sa÷ŕŘÚ ¸<@jp´Ň8gЏ¸–p‘řč$}ŞôʇÁŐŞ}> ŻűPCqc'KdÓcčŃNͅ¤°<´ÇY§›ď?Nf2ƒ9Ô$•žŢ h•ŸŻ NĹLpm+j[ĆÁZƒ>+Ţ̤—„q´~ŠO|ä.rá7ëÖפt ‘H…ĽâĆ+>Ŕ6f_ŕË[×d+ƒnc˙H{¤)šó]ŒPú.Śźł MgiNW3§5™°ž*ăeيŚynüĎüz|ťÎť¤fŮÖçúĄ%­Ź!QŸş!ŤŰÇۊô6ă4ć‚ F˙'€)1ĆBǚwt.ŠŇ$í,7Ťş' 3I)ÚjáD˘ŞĄq™Œ˜—ÜݞvkżüyVş>ÉWř~ßĺނŃaz~ĺ[ "5Űw“Z;Mý0'{˛vʞŸYŽčşkjŃĺ3›˘đÇDW3Ă._ÉGVs1mÔBëSű$eĚ2‚/Úb9lžƒűí<”5PčáŰüK€úRĐű Öf e “+ĘöfżműŒŚb8†ĚQ&g|ľź{‚ÓО˝U:áxWzZś:˛őBŮ–‚T~Ň* DťXxľ”ţ˝tGâ˘!Ád~hţľ–qěEŠYhr\mdlż€›üYiŢşÝNŹ#dQf‹„Źß˛BĄ™ŔuöŰč›'9%™xÝ`+ҟҴ:Ö“DřҸĎ8Ł˝–¸cŹýšI`䑟g{´;.‡fŽžÂ¨F|üëU.Ţ㨊`˘…pł4^ŽÂ‹)§&2ƒ´7•ĚÄţ•ŃĹ *6;>¤ŃžúhBt ˛tĚ/ˆ1Ľ'ĚżÚĽZKdę&9aî4*ŕ(ŢwáćęŽŔ&pě-2ëÚ>4-ĽOz˛óLňÇĘöéwÄŤ4œ#β í“ü†ž>ç/ú?Ľá_E¤ůŘ/ ĄU‘<‹ëĎźe ’ĺ–üĘ:I8łd: Bžß´]í†üärWDz^]Ĺxĺ¸Pö2|ÁÇgÍ]ŢO’!KÂĹČ?„OkĐąúÖŚ'ĎţtěËüŒÝśůCů-<Ą°WšŃoܨśœĺ4>Ü˙ĹýłŽ\ýnÉĽ ĽčöůL“‰b˝vöĐ$ҝeLíŕ/SőԘX2ť*…zřő>6-i•rxšĎt\ůœ@äAc˛ß)?“őœ5Đý—ܧş|ťúqŠáŽ+ؚ•d<Š—ů'Ŕ‚5>ˇ ´Ů⁎W´2얓đ̃čA¨BŠ_eß c˝*îHí I8şd˘Qd‰5Ç6< QОľBŒfď˝ßüϨɹe—dLXPVůoo¨äçęŐâŞéëAožŮQWÎHĘĺ-îQŞ–VX­”›ľ’g?Öšg芝žkşi1ŹęowŮŽš=JdC°TĽa´y +\&ń^‚÷Ł5Âĺ"ĺ0iZ‘żËC›˙:—5š6Ÿc,DĚO´E›×NçŹ!o‹;éŢzčt`g@WŹ'*3Ś9°œž`É=•$c̓e,Šťú˙ąSĆč^ůÖku+NÚ ƒÇ,.69T +ĆƒFP'e(é!? La~(‹\ťg•đ.TÇ= L_ɍľé&Ö€ˆÍY ĚĄĎh†ň[÷[čt•SPŤţě(:ŚôŠľţŠ'ĐţŮżCu˝łé†ĽJ7žJŢqc6ćů Őˇ“\$pĹ,ęj• ‘nëZ {?ďÚöH&e…D2sŞe5Đ\Î2)‚V˘6ÁI)]CŐřŤ`(cćŞŇˆYQęgÜÖ=ƒUŽŇ¸Ĺˆ8šEv‰b=óy›‡!ËHU†ßş­ľLSPËŕ É#ŤO~5ďó]2g#gO%˙˜-ý2š_ÄţŚM2ž´H#žÍ>ř‡0ÓQŻY7†˛8÷÷lŐ$Ď8Ş<ŠÔ ˛ŕ8_žął.źűˇŰXš7‹îؒl¤ĽO§äqâŘęAo+aŰĂ.M0‚*<›'<Ň ;ĺÁńĆÔßmîŒr°¨œąŸ|_îľm†S+o†Ö!bNŕ0~lvn-r“=u‘’€ŕŚůŃç-  .MÖM‚r“cٞÇŤĐKę‘]?‰5pßN‘ɡ­đĺ˝–ź…‘XhBˇi:BžĘ9ŕ-‹UןfÎËžŸŇ˜ŕĐfƒŤ ‡ÇOB Ń ˛˘wď¸q&_r~ęz_Gđ‡í|~EIq.Ď4ĚkfLؐčŞ[#H*Ţë”ęní̓Ý9đwROĆ1áÝsÇđeŘ~QC;>YćŹbČa/ÝÁiÜQ–¤ŐrIpԉ?îP¸}`6Ý/>аOľLâO9˘h1ˇ‡DWˇ˙”ÔţU•ž+„lUqšÍ7?jt=˜u'}5Nƒčű‚Fî8şá“Ą z řĄKókgď ČŇZ 8óqmÍ38goG"{! N¨–g0תâiŔ¸Ďu¸Ü)Ń:ŤaŇv#ýĄ=w­ó¤p\ œĎ ĺ<†^đüV——ţú FÂ[…Œč…tże‹´ŘhéLůË5íľ:ĹÝLü85hÝŽŻž…Ł%Ąß[Šf˝[DtJŔ]0]Aş-ý…g;ŠĆPě G]7ˆšqVýâѐ.$TĆVœÉŘ0ˆ×zŠű6ž˝nÂ&Ą7^aů•Ęó o‚g .­á÷ş.=HşiÉ/iĚČ^ł&űeÜläޑ}2Ď7âiPżÁ1#kPĽ;ó€čTân^s93î𻅼ţJœ÷Ĺ­0ťp=’"OÎ{iľd˜5űłĺ°™A´NśƒłąŔĆ%ď˝y‹đ'ýÎópL[qý™4#Ë[ůŒšČ"ƒź'—EĚyj–ô¤Ő´Żťd¤gȏ3žżÁ˝”lW5ꈝܪj vůY#ťAk›ÖĎĄ[př˘‹"ÎaŽ‘|ýŞgi%ZűËľu˙7ő4šMŁĆźř7F0 9´4÷JߌšŸk-űŽłŇ"sŠź`˛˘lŃ1Ő ˇŔ˛Ý粃dę"ólpp'6­Œdu°9]ë˝pő`ń+ Ď ţ~UˇíÔŚ`ćż[ŽČé!¤Ős´MžŤjrÎ12ŕ…bEúĂŠA…Ńݛqţâ’Ëc›:Ƈ÷8äćٯ۲řmíŕr›ĄxCŠ,đ5ÎĐĎíŞmG˙ž­hLśŻš?Ń˝<¤,!đűÍ;挞٧ɉ’čĽwšńh7ÜđâĎҎCÝq5$[ŰköLÜm[”‰bžmә_—ÜZ=JşT”s}ĆU OłĽ‰‘_#Œá3éÇău*ŢłżĎ¤C=gC"ćw#ś,°áKÖë|<2d=í…uŔ”gÍȨ#y<äU¤eşă[čeő'}%hÄ'¤žUö™–Ń‚Ć|Rd‚Ž €‘VÄňĄđáŢŚč+\wéŮÖ{# „î¤îŐd?řÄo)?”G[Ş-%f†Ţ^pa^3u<đcă¨ăô—ź‹Ç:!ţ}Ý óÚc‘ˇ­ŔFPҁąÜiřómŻ %Ü)WüĘýjżnďö’â—羍’6­V„ô×<űfږ-!Ä_;Ö6tr6b&RHֈ%ĘŐjP•ő_PŞšzÓ䃹Kňß2eĐ"x>éöˆ— `Ë úIcFü: \f¸łěöäSîMÜ#c4ĚŰ!7RŽ÷ٲi'†˘ ÜšJĎĺĆŔ੠Z“GuÖWÍŃž-0•6 ň ‚ÇcŤŔ^T–÷rTŠšŢ*ˆ->űL_\đ‹Çöń ĺ Îh“ť1a€}ŘyELťŐňô ˆîťY'bÂA:ă˘lԂŻď™Đ’›#ű´ůĆîĘh̕Ÿ¨ĺx„\ßĺEŽĘg†äÝŃIŚAçćđV/•[F;ů!ÝĐ´ŒV"93>Á÷ôű9ˆňĐß40?jľ9ÄN< ǎôíU§3ö×!ă-ŞpÂWUî&ǐăęů|ęŰ<-›ířĹ3üs=)âCŕgO`ŠŽo™M!šńh6塌R2Ľ]Âđáݚžčlpćc”—Ń ˜ĘIWŸöńH…74§'ůRkځŸ%#‹TŁe8eeą+¤!߸Hú×ď—íxÄŞ.ŤnqĎĽ2:Ěťoű…Ü)é­Nđóľě텾`…ă`ˆF~?§CáŔ]ńşRĂ=ŹŐf*ő|hßŰ÷źŃŻĂxnŤĚvínŞŰÔ5ąŠŕ¸oő2Ä LNGÔ…qh&ˇósלI01V36érŽ{š|ß˝Fťr›/Ö]qXHŰFyźĆŚŰ9ÖsŮ$żÎY:\úH‰ĹZßĚ]ŚťT†WŇőj§ť•řo Ł} jJÝtŔ—ĹnęŚ|"bă1(ćőѤŐßOíT&•ŘVďwҍřźnŒÜYO żŔäˇMăďź˝ęqc¸‹ý= őű§“r‡/3gEľň߳ɯgpMáŔކńÔ4)Ě&Â8â–:ޟ6ç4&YjôVpâŔQ<$ŞĎ^ćň9ł“寯î&ú*o$ËĎ Śwx"ŻĂ'"I„/ĂÚçq ˇ1-šbŢ`5ß΂ƒ÷Ačmú‡ŮVVJĽ9^aĚmK‚üżŠóŐĹáąÎĽ˝hAţţš-OŽľŽŁç:‰ó30˛Ď3ƒBŹ2Š'ϒ€~ôé2_¤¤ŚIĘŤ0 !Űg~%ŁÚDŚÔÜŇ­{îŃcÝĐ @üÁú´\çc}f‰ œO_čŰ´ăĐ&Ys☟žň˘UźWQĆĽűťG;¸ӌzĐç•a˘-‰YfľÂşę?Ş˝ę1ˆ2Ŕ€)ţř徸-™îĐx&T纋Ă6:őŹznŠű°OŹ— Lb^mö#ŠI}ąť§ŚvZ$8ě‘1ş%G›´pɳĭ4ă/D2Q‚âúmďä?(9™:Dá&-žťÜÎäřx[oŒń*qĽÜužH•(Ź„&E3XŹÉý—–×tľ|ó:pŽrœ•_őşz÷‰Ră}í Î¨Á4éĘ|=Wۍ$żx O|&Óŕ(*ŸC–TáÁd?És×IřđÓ';€šŒO‹!mTőo]Ł?޸Ë̚§†÷ śóm:fÉe|řÖĆÜRˇÝň¤—JFŘ\Ó6dÉÚúE˝•­ż]CÂŐ´{äŒÎN”:Ó~Ż›Ô‡ĂN7¸ňüüI:†BĄ{(×ʛAÓÄű˛­'×;ëţ,aÜr+‹_ĚA\KN(łnˇO—žcc׃E(ëŁń™ÖËqÔXC‚ŁŞÖÖ°V“ ZF˘°–´˙œsć€užŢ -žÄyR8YúzýLŇ&/ƒxěg™yđą5Ű­˘iŢ|WCˇëöŹ@◠^ Fë¤ŢŃŽÁO)b›íĚNż°0Dą]tX#ĺć/hő8îͲ:‰ëU|Ľ6eU›‹°žXÜčÍŕ>–ÍU3ÔA…éVš8đvlą‡ßÔlˇzÄĆ}j=RŘýÖĐbÖ>}šmOEŤ@Ŕ‚Xr”śxC}’Ą‹ńɞ ŽJ-khĺŸ.§§m…Ůě7ń5¸¸‹Ő E“ßď͸żŞ‰ ;âúhľĂH"^ĺ H•بâⴟt5 §.l]vÜ#ŻúĽ[ÝBOŻ+<ŒąđŤ1YƒŰδO×Z6‡âľ˘ţ ŹpĆďŘ _/›S2S4Ü.TÂßçţŃ̗•ůxlëÇ…˛ $oĎŰž× Ńeą3Qż=FŹV%™°źńŹŽĂg̸ň›ĺ7-uݾȀ\"2ÍňdšH“ĆtœŻ•4uĘ1žÁřÎ&­ţXR8fžA_Î~ĹzŤf07RË,*2 ČaXŸĚ¤:¸Aľă\n×Ü?öy’_œ:ëㆠŮŐÎCi !4´c˛çű°ž0 ŘmœO*-žmU'‡ŽÓ(–t7ťŕ¤ľ‡˙Š}č'4ÔEA*ÎežŻÇŃȗä: ˘ÍĽ/śjęÉ5ţ–áňń—ŔŽH)l‹ÝĄ6 6Ö5ŽĹ"p°:ľve ähř› ćcĽ`ęMĽÁâ˘mV>úLźŹŢ<(<íC˘Bŕô2°zČôBzVéZĘQŰęć6Ě]* ŒČăejÝ­YąBA kG^ě ZŘ^ćuŹŽíĹ×;D<°đÝ/ lD§QäLDĘŚŠÔ{­šL-‡BLĄKš ™>iŢČ`bł` ‹ŹßjżĚ=Žja¸$Ó|Iúڤ$ü]řóľřg1’‰BTŃČĄ‡äÔŖEđ ß - AMş¨ůp&˝H˗žÇĆj%â1sÜVkŤÇšČhýxTšŠşa38杲ŢđQŢîsbŔ}hEłˇQâńé˘5q)‚gžœȐ’&îjô‰ľ‹Vľaa‰; aí0îŹŢtńScRl.qÝ:´UčůąĄ8ˇ—ëtľčä1H€§†V3Ż#AÎęĆ 9<ĆOTłť@…Žtjۢ“‰Ěý ŤS‹—5FFÉ"ŠŔăD\šékDBNVú(CJëKśŮžěÜ9|öę‡=ďâŢ|=ý‘$4îů؀]ä>_^À ü âeęŽ^ĚW5üOzÎr(PžÄšKG ßÄI?G„ţ>ž'MŃՔŇĹQmDNî_&mÖŹŠhŕúÂHÔżŽjž[€[7)í”8›ÒEˇ\ÔĚ:ÇϡŕĎŽůÝwIşbílŤţŒj8źđŽChšášŢćźÔ;Ľ†9˙–5eĄü@Ĺ%ßAý˝ł\_ëŃQľUH¨v߀@ëĐőcŚŕ÷ąţdžg0ĂEˇˇDŠ6,ŕ\Št†ď›űĺţdšy7—PzěÔ;ć’ex¸p{—ýcĂ7â•MĄŒ`gűŮÉÓ é|Äôc*8ˉü_îžLhXóKQ­‘žŚQŒ›0ˇœťZ-J…´gVN_} ÷VňŰΰGŸŻŒBŁgćĚż,–ác1‚eÁłHít 3nź{Sít†T+•pXGmÎ}-ŁŰS‰ŒÝźďÓŐX¸Ú\"&j3˙쵇‚}Ÿý[oĽż§¸sË 2o}{Ź÷qÓs%Ô-ý¤*Ý. !@ÂËďBڈüŞRáŐ{çŕ#2]ťĹRsj%ƒ:ěS ł "#Ţ4D˜;ć‚ßHÄéu0§oŠnŕ’2xĆRźĚ„Óş>eľ:xTĎŔţ)ťZ6Ţ֑VËŰuű˛HĺŽrŽGÜePj1ł{^Ř:űឺ÷s~—âŃŐ^ "ƒÚČ ëž^ăßĚ˝”w=˜"‹ĺhçŽřP°ԑšč„ęˆK\wëk÷‡0(IԀf×93Ä(xş*e$S YVR>łŢ'‚$íŠ1'˛űĄ|‹ŚĐg~ň ĚĽS Yë"Č0Ţď÷żü,‹ă˜ĚŐÔ8ŚăĆuÖ‘Źż˙đót÷>3nh‹5Śhčôř1†čł”'Ů3ŃţZ/=oHŚúóy”XÚ:6öôdę˘âíkL’Ż|B˜âgZv ú K„¤Š˝ ôńą3¸]6(óPq˛řĄmHCÖ şŽ —9Č 8„ˆQVßő¨Ŕ­ť;GöާvËÁ‰ß˛ćpśĹďyĹźtŤă%$š ŒaŇŞD4m˘ć˛ˇŻZ vă[ç6aŘŮZb9cĐđ ů~ᇲňœü0 bł­óá‡SźËi…)ĽEéT dŠZě–)^Tâ4’¨v‹’cć'ĺ˘)Ł&ŚolŢ)š#uěÝq ü&žŕ'ÔřČ•—>땘ţÉe^ĚłĆIŠíô•ž?ÇěZ;kŞţ— žöŃ­ěěP&ÍÔWýNhÁaŨ sřŻ jüIÉÍ(荍<˝íźÂŽ$ $1ĺzr?q™­q`ĂIvW‡ž8œą&ô ~âT š*Z…UśbÚŔˇät]7ç̋Y‚ @u¤ev`ÎĹÁl'z*ÖWĐZ@ŒÜnłŻ}aœÎťyMôVţ$‚ÍB&ÉHÁXîNVyŻJđ…œ›oMËč.+Q†?ú4*u5źĺÚȲ“ŮÔ&‰NÉx?â3Űąs4Żx ”x L渣 vMŔ5Œ°ßĹ´égüŰPëKzĐúNîúw×PĂѤŢ6­>i;)#7>N%Œ‚ô#ŠNoݰţ~°GŠ7ŻşaĚLşYčˆÚ‘œ”r֑ŘĐn_@U [^\ü‚™ Ä`\L0ťzžź@1˝ŹN¤ŕôr”í%ÓÓÇşŞĄë'ž‰îj›9“ŻĘˇ’ˇ4Ä 2–˛Üă­#E‘IVĘŐ2•„˛FakHjŚ Ő˛|¨=bůYšŠ\ZŽ0X$ő¨Ń€ROX ƒżg<ٍ~ÍřËvCĄß2ŇüGżK2cŹX×ăxÁŢ~a2>Ľ‘ăůřUçEz}§šÚ‡řjżMđ Li~’˝”ˇv­e€káËť)ŢĹŢşŮϲŰâ&ŁPtdč˜có‘Ý‘Ů^ŮĽŞ2—y§d8™~ xÝÎúäEŢÔďî .ÖęŐăž­Á5őŤýŸâgčĂqT§˝ƒŃ3,˛îţzóĘöҖ§}$ˇh+ůĐĺ´áqĎw {Fżaěť6ýŚx˙™\-×ɁpńČŞwܤk[YćŽXěĹľHŠ€sčű ˘áIԆłcé@…Ć)ä˙”Ŕ ľőR3fčÖďÂ\ň"~ɟWžIĆ4Ł>#˙xx =żşŘŚ"ÎĚ^V^ÖÉWT"˙´çŐÎdÁWe™g ˝ZţćçŸg¤jjŮ6ĂÚîĎIşB°ď•ÂőT]ĽśÁ°5ěís¸ESř#‘1Rĺ.ą‘Ek„őVq÷Š,4Žű , ­<Ňü0ËM❑Er™VŞOˇGxzS‚KĂQ*úâX1xłčÎ('ÇďcyN욷7ęhb4ČÜNv܌ߚO‹EB?ůrś’¸Ë ŔJVśżŮ6ôÇH/Ő73n)™ŕ6pć`Uů$‹čÚąyńűBüí{ɨ üUŽC”ń’ź)kťxî ŤU¸­đú=ɗ5ŠeÄ”ć(5•*(ý\ĂĐűq>Ľ‰S'ą“ Ná.˛iĄaŽBIe‚a§Ř›Ä Ź9}m€Ď™Ř‚YoÁěüá8áSNB ¨>S ČđÔÇď0ÂQÝŕ8Ý4ăâŘěgŔ{ ŚxlWŮYĆěm@Ç#ɁÎęIÄé$ܕ>yވéŚ%e?‰úw)ŐÓfĘóéU`árŽ“m´=Ř)‚m"š1IPÉ_uë?ş~€T_Q!`E𐤂á†Ú"nűä÷órô˝&ĄŽ4ýEžŒ‘FŠ ¸Úăh’ĺ[IBžđÍň;3şlk$Օý˵֚6ŠŢbżHŇĘĘĆĆÓ×=Ňý(ö€Ł˜8c,Ř#ĄRBËKžfÝńr♤9†ťĆcÍEáŇ'Eơ)sN‡ĹČ}řq{Ůšt'ŸÝÚćOĆs°|JŇ!™N‰uflĘŇS-ófX˘ ‹—ç@˝éŸÝř“§!ÜĂź{ [IJań•ÂÔŃrp×4M™Ź0g§ĺ•ÎŰř3Tq%ˆĺ<ěŔ×@ÔLź˜ŇFNIeĄë.öäuŞÜŤĄšóę#-şŃĚV$ĘťŸœeż‡ľăpÖbȐœ}T֞AĚCVU…Ő0Ÿ,˘s%ŮÂřegQĄLYőŰkفŘAjk8RřqS–7ň(zj6&ĺZҍHg`úl’¨ž3˛ďtBŹxď˛'ŽŐŻŇ}Dâ=ŢTţܐĚlŕ9\ĘŠĂʲŽ}¤ś+dSďQAŠŠ(WˇŽ™=,/ľÂŢs¨FÖwČ/"îęO¸ČÓućĎ?÷)gąŒO.ÄËk)jNŽOք"K-×Ä{?iACvkלŐú@=‡Ż"›&ŠĐ¨Vs1!2ˆÝ=ôČFl˝‘‚ţh4S#Ř*Î=•ŐşV…X-‹źŇKÄP5)ĚĎţ|Rî–ü}v2íR‹.b}UúS‰Ň‰ďGŢO15~~˘¸lřÂg´aęĎO"/ ćąV•f•D°ŁŠ^ç–o˛ĐkŻ\T†:ßT˛:+TĐŹŘ_˝ă7+Ҟjîëšĺ(Ľ‡{}Ôäqż~UӖLĹ~t€š“Ńë_+V7­­~ ­S:IVC#„%bëČbŢçć 7ştœiIr=Đ6’ĺ űQ€äťÍídĘK;~ťČĹäŤÜ‘?¸ÂÝV7ÍrAt ŐĐC+ôs98­1źÁ81îő⥲¨+O×I§ŒZJçž&çŁF}ܒ椷Žő˜3äËŽYŤŠŤ8ËńRĎĹ& Űěć@ö l€œ<Şz?lcěÚ†hţĚhö$´cBŔŤÚÄ'ŹĘčÖ şBŸdiň%’ÔTĘ{.źÉF-‘KĹŢFوgüSŹW´CŻyšŘ] 6łŞ”ŕĂ|‡E¤˛Ä+uľ3@Ň4ÝC@#LĚęG{5pŠŹ<‡¨S2Žž ËqŢÇZd09lZĽ@´sđĆÜřÚĹâH”QV’şÖ8zGŤő¨Q]¤PivÔQ$KŠĘ[Á•ÔŹŰƒĎy:Ź‚…ąaLaŽ•—Ed]ŐűŕŇtĄiŕ1%ăŞt’ĺ2Ç­ŚŞ#FÓUňáMŻ|.ăô] ë=áB—Á1ĄjŃĘOęÚLz¸%|=UF|đĹźâ éâƘck$Wůęnb_­Cř­eshź7wš ůśŸ_ҢŐy]ż˙ĺĺ;UZœaü.>˛,bz}ÖLŽßž$BřÔ/šä‡š’‘8âŁŒfňd& חYD6/ľÝěú7Ą6„ę&ňŃEau‰ŸĘÝ’I ë ţžúäJS˛Éśëhu|Ś*bľĘWߏ–ÂÖvlt;EżĐçŹbŠĽž ˇÖŸ€„aÉbĺžiŞJ5jŢtňôą:FšúHƒ^ój4vňÄf‰żßh3 wˆ†Ů‘Jg}ß4S¸DňŰ"JcáƒBa?CwE¨ŮěXążsääÔÝ´íčÍQhC4dŹ$LöŹ<Úî’ęĘŘŚđ„•(řđŁč?Ý9‹–mE~…j˜´VDXĺš}mtíŚ“Ő tČóůŃGoŘşŮ÷QÎŽűvŻ˘(2b„ŕ\>Đ#܁YW=ŔĘ9pş1źĐöĄż1`nc–7 ĽżĎşń1oÍaď6ۘE;/çf`^%eŐĚ<Ç)(Ź„źş`ÂÚVř7Ú§ú¨_9ŰS—%Ky2…*šéćU-‡×œ_E1ł!¤żÄţ8OmÇ´üdČŻŘ-ß>ů)%ĹhťĘưP Ň´Ž›tqjÎEĹß5ńSÄŢ:>|ĐaSgUËť*ýG‡ކé˛l'Nű@ÚAŤdÉ#Ú R/!ya0ź‚Év™˜ýťˆqXŕôśňć($]>~nc(%o—ęě‹ő. ü=7Ý÷@wRý攮´Ú:™ÄĹ]ęűČcÁ˜ZIŁž/ăÅ|ߞŻ>ÉľóŒ‹úO.z ŒÍŠz–ÁŚQ™ŤŽÂ˛šóIkVęž 'žőŘmł‰˝kä†ĚĆ÷Ó÷M}ši°EpčKWăqŒÍžÓ4[#×7<3ü âž^6ƒÜ ;?‚m,*uíɗ彃,Hęüa{ ň4J'FËôCźű0ł[!Ź`ôřčĄi(şg&qż–F!˙U[éÜrČŃ"!’zçôűœ~}Oˇ0~~Iś™ł~ó;ÓaĚg˘˛bů|ý9љ™°äî]ˇ;+ňčďpműGů‡—đćľdź3ĚŽë÷ôű˜ˆ?<;ЁküŠheőœĂ_zEɲF@XsA˛mÎO[łŽž›r™>Š„1ńČŁ"oĺ[ 0ôůŠô—šĚr;ę˘îŞT!›đđÜIë‘8čg˝OŒ˛ˆ M!WAnęmadoŢp:ţęćpéĘNŻçNĎß럘VľPëžfďIî jćÇk9JĚđđ˛…´í ˛ĽSp.gTFEř8MR”ďVí÷Ѝí턆 Ľä=ÎGF•p—˜‰3€ębš6+ŸOĚ\;nĺÎżv,Č {ŽD†:ůińÝŤ÷ž=ôt¨žŁóÔ8rOŇ… ZśáŇ7 }é w#'Ý.FKKEV١G¸&XŠ ?r÷Ÿé¸6„ŚĹ:Ő1Ň÷<şyEÝ[Zžˆ:}őpŔČ.óDVŃCŸ›öoCDŽ>Ů ¸ő ,ěAÆVáGšťFSˆůă} öĽ0ŚJaăKć˙0;›ö|Vjc(­eœ_)ŚKĚćĘ.†ŹqE>=âˆ`¨>ĹĘ*ś $­ŕ1Š~™UŤŽŇj˙˘ś''“€J)ożÄźXß%€"őb ońyžnœYR–A˜-­lBR,:Ś"{Dn}&JÚË]'φĺ˘5_žß9 ĺ1ŻW<_ľ\MďńMeîkď˜wáç$íľŕFč–ç9ŕ˘Ë5VÝ<§Šňô$ś”~Ď%ĎҌ@!ĚÎ0‰pm=Hg&Z#pEë9‰Ëćäßqłšśő[ 6:ř@/={sŻľƒcÜ U çŁ=ćQrwGˇ´ŇĄˆĂ*yg óQžŇéh°ż›}10œá/ĹšLԁ˜űZ3k|›ö`8é÷ÓzMАúցw[ElSXk&Œ3J[\7îJŚfí§űŤĚKDbśŽśŽ˝ůŰ6tˆ˛Š¸´´â FžGœœGĽß&ß {QÜÝÔY§nÁâÜlĐáyK\šmBfQĺńZ{ ëňs“j>ZädS żťýůwᢠői.´ƒL˜;ÖUđŁř8={*(žĄĎ~XŐR÷x!¸áŇÄŁDRŃĽ!Z¨2×.ŸŞL‰SŒhŐ[rV÷7†&°ˇŰh„,Đl‹9(„"ýKóڙŁűLě)D<Ó&ŠÜއUMĎźşôËJŰŇuÁ)˜Ë9)ą_{5iÉv\‘RŚ <rőšŐĚĚú¨›ĆĹ0ĨŽ@ŕ,÷üłšÁŔśśĺŠdČ9ű\2–PöˆŃgČĂóě/ŠŐˇš;`E¤rA‘ 1…N¸K&œź/‘WâYƒ`–Š“*jJŔyOOÎTź"ŰîătĚ l—Š]§hšSZŮaYM´Ž Śę~üôWmŽŤçún1ndĄSM‰§Ç°úIa‘8÷%!¤‰{{ę˝#5‚‚8ńŞ˝ŒŻTQŃ3ÚxÍ?ËŔĂ%ž'Z–í$bÉi€}ţ1¨úÁ?sE˙ú€r!Ťô}—<đv洔ib-x)&sč YäŢU™/4óęńe/Ąjö=9šjWgrKv€öK4bć˜ěm˙ í8Ď ˙vJÜô‡ŻąK:hŹ;Ç~!ÖńěÁúX—OۋŘJœ Žtö.<´Î*ٌŚĘúzé‡1vvմ͆ËÜLpđ@ç‚ ňÁîlOUŒPÔébÓŁ_ Aً’˝Ĺ›„×Ýĺ7Îź÷g‡OA/Ňß(ׂŻK9c| č|&rÜ?3űŢg9~q1…%^€]G×yBZą˛ƒjóŕ*—ŠÓůÔ¨Í:šÍaWŞÔ ĐlŹrŚcp¨çý)ö ž ňŞaľ"'݇b Gĺőč'9ęôwtœŘMČë”qÓĐąXÉ*Lð˛Š0 Cé)yěqňăv˂3¨ü‘Şő˜őD‹;&GœçŐPÖđ,â DZÇk$¸ÁEĄ™P"- ƒk¤÷ iŻ}=ěźjŠ_QĐY &żœ-˛@Q~ec‰í‰î'DŢů†sÉ֝Ęcž‘=fa DTz!oÁˇĐbéFŽľ­Śp>˝^9ř†1ŞČěWŮ\;Ýo›ö´ňm\[ů×Ů r• Ě6 ΰłG9|Üełö-zzeI?’ĺivÎo€.!úw¨ĺ2Asĺâ~ŽŁ’źŔ öËE$Ž„J6­zÇÍgˋVA >Ôć4vŠžśŚnKÍÎjCŠ ľřÉST•z局’Tżő&g*;ݰvÖSĹöJŽ–Ľž€Irě|‘.wľHK­˛Iä‚e“%(X:äjV"ˇžCRa 8:’tݢc[ŢŇëŀ66ţŚ˛YýAÓíçăV‰(}ŹŽd2těŚŔě…}ÝJWĎLŰZ*’;•ÄôGôĽŻS°K'&KŮËáVĽgM|TDĄ‰—ĽŘv*­˘ĺ„ Ţ$UŔâf—(O9ő%Że_¤X{jć\<́óŢkx {›ë%Đ녇\Öq*úZWœWŢÖâsq7IÓ°„FÇh÷łěŕ7m`Ĺ.88|hDƒBĘ,ůMě˘jwŒoĽČŞ)„Ő|J/¸Ź \˙˘nÇcăÉÜÜXk/Š2ŢÓ˝‘âe€Ú^ ŤŁÉQJuŚ+xŢ t$3Ďq.;yŽXlo˜ţHżÂěň{Áş>Đę…^q8$śöuńţŮřŹśç\—ËŹŞÜÖJuך•ːčJü[W['˛OP˛SÇÚ;Jhieˆ’Ѱ‚›âßoć<ŤEŠ`Ł?ČZbźúřş„…ršC5B#1¨6˘PڄˆEšuü)k=Xlƒ¤uƨ0§Ç@Ř.éڐŽX8(ƒ:p"ŽÍ÷îËFŚ€*v†É‡nÂúŹžVŔ¤ď:üţa”,%Ř#Ś›C¨łÍg.Ŕ-3@XˇŽňY˜šÝŻź9aIäŻhĂż–2°ĺšĹ’ůGX÷Ś8Š(Y-Tź0šĹtšÖžú÷+‚Ř)˙2Fň‡ Ż××Čź0ßËGěi\`ŃęW‚Z““Ë^đ :LQÎ^FşŘç+M’sśŁńŚĎÖUdż7Něk<Ń­ŠyĽ^ôä3—žřGZ= (ÉŕAĘřţŽ#†NôgJj î]‡B=`j˜g^P'Â<ĤQŤĽŽśď:Ĺ"TdÂä8ÜĎިř‡6ԍ}{)ւ[­ÝlęwŚą"}Ž@ěs+”‘tŠ7\˙‚Xľ:<ç>}Â=đƒEůůf˝p=k‘Äa4ÖŻr銴 ô9_7‹Wř{–ŔwŠ­•oĽe|Ë$O$ű-ŁNŢH¨W"„%:Ň,Ő4›D×éIv“ˆ‰äsDűÎ-Âô‰#4‡ˇ‹é)}˜´UętżTŞ/—ŕyA|¤ŚWxů*şc˜*ĘťhŮŐ"Af˜úuÄŻžF˘RÁăćć…ÎČz?DlŮC‹,ł>aXKrŔĚąˆřćG3ˆĂƒëM[ŽĂýI9ŚŹq<Ôԉ%ďY*~éR柂á„d*#á ŊĆş[ áfÎAaâ´`čŮĐŔW䳼e…B„ ’…ç‘?ŠĚ´šX0ƒłDćŰňÜm‘ĘŇ÷˜1Z9;|Dó8¸-ˇZsf…Ŕü8÷ÂěçZdCeMWĹoœŁhĺƒ˙Ć˝nŁ5­c]Śţ;nźCÖńË,ł@ eh̜töóuúǰížŘúÍčü´8š%öjOj$iŤ Ÿgů7Ší‘š,kčKE‡JUÚ÷Őx.yS‡aßřAŚÁ^ímГzfÁÜÂ%D –ÉŢmBžcL;…Ůł“›U=Khҡp}Î0x6‡ótĐSR ´ŞQÁ_Í^Ú˝0m žĎő§0Ö¨}c‰ÜŽÓóVbá0ŃćÉŕĺ2śňU¸ă]ń~÷Ž#”^ôt 2Xz(::–řN'ç* ›e´őQłHâwËQ-wĘ#ˇ4i4ňuÓŤWKűǗ’ĽŮÜCĘĽ–HÓОĺ> ւ mŹß™´’ňޘ+Ođa\#GˆłůiHăÎđüĐ1dęüp6)ĄňäúŽŞSßîKK{~ś‚KćęĎű0ĆÜedYŠA‹ĎlT Ř 7?lÝš×MÚwşĽË< űUe›Ž­eĂ'{˛îběýÔ<ÚÝ2„Ľ÷ašü JˆcŠĎmęU —•‰vó‹Üţ0˛d2˜ŻJÜ–ËÔť˘ľ‡Q{čÁšzúƒq4ŐwńU_EĎNć;ÝvfŒĆĄzaf*óaěsXt‡’^–óŒ´Îóášp÷Úd…UßřšöfrÇ­™Ÿő˘‡ß×I í“x '?‹] ZŁ,ń nŞ@đ:ł/NÜI¸4ěC—*-LśŢˆtˆÂů\ş&¤Ă1ĎČöߗđ”J5‚˝NĆm#V0âŘÝ$T5ôźšš6“đ ç ­yŮł´ňóîsĘş-!? ~0$*,B†îĎăOćlđ8_aGŸąg{…s-ŔćK‰ýŽA†D˝;ˆ5”ŠD—´SŠk/˜Ąů‡>ĆMFŞÓ™˜\˙SŠ)“ŻbᥭüČew(şˇÉ#šÔ (TM\ü|đ@Šś…YŒD“ëOčöă‡_šE ˆ‰&“zWúŁŞ¤?ĐźŰ'zúÇPŞ[Ęę֕%ÜR Yœđź)Ü(÷ÇëŁÍvßxŤň”]8Őm˜;ֆbÂ0͝RfÔ-´üxH¤?HA—͢Bä1˝2/”öšó˝V4ůMj3:’ˆÝÝi’‚Ľ-^ž†ÄbD˘ąu*&8ČĎş]‘Gü",ĂtúV$¸č’2 đ‚ú aôľĐ°ˆŞ٘­óJ9îš"GḬ̑ Ôx?~\­ŠMÍC0ďęë1UW:>—]˝@‡Żçŕu—éDX‚`cľXlË$6íó;Ű }¸°˘GľÝŮŕ겕‹ŞŤŒKľj6[Ń* Б÷íh–%ë“eÓů‡łźŮÇŔŠ!”Ɖ0Ţc˙}T€x™g6DKnä%¸ţŨ~FořÉ Ţ6dî1/žĘlČ ,POĆGÇ*łŸÚNţyšBŃěÖOrů°R_E9(v§Ľ˙3ŽÂšÖ1ĎşEu#}€Áą™ x1Ý.•Ó&ŠxŔTc÷vsQőíząőřođúď)aa4ľqżžĘĚeşDÍťĆFˆPPfo!TQ(„φĂ㜜/QëĚő롊wžDœqŁ%Ä*ŕ#­n ŘašxtXíCC.GúŤt…ԎYpâžöůŢŮߟʑĄÖě.ű:*ˆŕÎäçĂKSMq_=okޘk:í ÖU܅MÇ~QX˛jv¸ů[‘rđݍ"Ş}ĽâÍĎ ž‡ŰšËŞ6ćżůFČ(UjŹ)Ȩńń‚JOŸčÂȇ´$ň_7Śú mGiwp}‚žm;ůy’%äělřˆRěXVkˇR_OňtŃţ:č¸ůœG÷Ö.[dĂĐÎcűśĽ¤wďľu!ŤĆ[…_’˝ŒŒy+”çÚş^• ťŸ)oŕVŠxK$n„Âh9"ĆĹY… CáDÎ;-¨]ËŘ?Ňž`NŁş$R.[߀ äcť6JEAyoʆz¤ýČƒˇD^Ńţ’™Ô˛Ť˝˙˘k]%N ĄĹrY oŔ…ú3 Y1ĆýǢęJhźJvҌƒ dÖ|ŽŹÄ łř…-*şˇ´Ě[â…$—>áˇ9ÎIžÜź˘ővŰ|şĽŞ¤ȝš*\ŕ.ÂŹzfĺ°I `Tx?Hߢ0uxßýpx™°“Bë„pFU†U֙ËuóőŐ´ď—âŁâ‘Žń™Ôé}×s*4XHKŽŕ‹– Yq%kĄ<—×VUďߢçhTń[Gx‚”O[$~уîuo2”˛źpëp/Ň/çߏGŽîÚ]¸Ó”őIǝ(ç(ąâ˛|ö5×e*ŞL@G^0š‘Ëe!AĎ.ĺ•QďIŽťťŠƒ_]¤ńşâ]RÍ6äTŒěŮŃ,ŚikWč™uX}#4͆íőú"ˇi&REdđ&ő0Ŭŝ–ˇ3YО6@­ šVńÉfňĽ?š˙áMńĄĄ[!Žs8ŚcŠůhťžwƒĹĂ ¸> 1­–¤ý‹,QŃzcX| č`˛ű c˝äJ6ŇŔĘsđ#ŒH•.˜ł¨Ź˙˘Ďœp}Ýmsě“ŮqÝü"ŔĐČ WL“űcb äŠR)œpVŁ…ną^ă^wůJ™ŸyjǙAô‹Xa•őđ|Z’ĽN%ƒn¨6š/V˛ç„|W…\E…ÍD–21ʘ‚•şë,ŻpĹ2řkkEWž¸ 6Kotv‚1Křđłź 9şÔÄ š^-Ä‚ Qyd#ĺőG˜@jx Ľ2˙űH‡ k ęĐ:´…ôƒNm˘ţĄTčą*ÝM˘€OxŽ)mŐ?C+:6†Ł÷×ÎýG 1o†ŠŐ‡żŠać^XľđJ˜MĆąH˝Ţp@“&bdbŔÔ\ąŢ5.ýLŢDpnÓ^„°ˆ6kmôŸ$WkŻސyÝôˆĺ… |ÁnŠĚ|QlÔž)Œ‘*ŃNĆK\ę—áßó¨G]rYĚ)uíŽ@0dTdWŚ4<h‰6Č`?I<Š|Ę;&ŠČÎΞĚYO˙ňŻőLNÚżśf?ž@‘Ż ęĺ Ż8—~”˛ůЊiú˘ ŚpOÚlYťŠiFŰýŢ÷krR)On“KXĚîœ)ŽO˛Ŕ˙Ń3ťNŔs 3×YĚhűĐt’Š­mĆ8ŇĂĂ+A^?ýGŸ9ăčŔ^ŢëËgäÇ&aZÓ"LbÄMPŸź",ČŞvÍBaîÝ=×s|žÁęݸ›)0ëpáÜHӍj˛ TŁ<Öú÷9CÝj˛iŮ7霏jÁXžťňô¤˛ ßÁS(ng×­Ô+(Ŕś‡‚éŕ˛FmĐJü^␅][ŻŠbˆŁ×°†x„ú[kMËšč85j˝}ŹůÖ îdmĄJćt4ŁFĚ ŇԟF°ěČťqh§šfADačGqǟ_ô‹ŹôęQąŠŁ;ВrťMǐB&]B€Ęét>JE<*ǐüâ‡6?LG#9JşŸ?k™Ô^ŞŒŻ’ÓŒď˝¤Š,ţCĹLÇKăvyRŕ-{ŠĎPT F6KP;‰×ľ îŚîŐۈş˛ľDŽŻńe|DĘ´U…6đ3bĆBîŠ3Í].´đq @š/ž 8x€žI BO_Ë˛V=dZš ’ŽIyhПm$†@Z°Î˝ƒŁ|8ď¸ü´Ý#|VÍ^ŽgŽÇ‘H‰Ä—“ #ËÖAüC™dB@6/Ëč¤hkkŽŃ]0ídCEŕ‡¨%úîř11ýtíŞ9Ç'¸…đťŐő}łěMk7œ[k)ÔŇhśÍěäÁ î ˝‚jťr„:n˓DbŠÚĽe źáĚ}Ť—§~L“l‰h‘Ë÷I¨[;o7ăŇi—UŔ&Ä9ibž5í}˝Áw§VĎ fŁ|ꎼDř‘)tˆSîOułLV#ČÝGʕ9˘Î8)'l<5Hwě,üIY]p÷XĽy.Ěęł‚›ŒçéJˇˆá\żwHœ§a–ÓŽS-Gű šć8ü@HČŞăDń(.0YVßžnƒs|'g—QÍ Lőóia/łű îřُFW‹A)sĆŻV~ßPő‰˛ń5­pť,ú!˘íĎż¸, …˘XqŠü˜ ‰5°FPŘL0ŃrԘU˘ĘĆÄŰżd}ˆQßVAĘ(ńÎߑ z݇ś(G­˘í…“šČ)N endstream endobj 1573 0 obj << /Type /FontDescriptor /FontName /TMHFPQ+CMBX12 /Flags 4 /FontBBox [-53 -251 1139 750] /Ascent 694 /CapHeight 686 /Descent -194 /ItalicAngle 0 /StemV 109 /XHeight 444 /CharSet (/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Z/a/ampersand/b/c/comma/d/e/eight/f/fi/five/four/g/h/i/l/m/n/nine/o/one/p/percent/period/q/r/s/seven/six/t/three/two/u/v/w/x/y/z/zero) /FontFile 1572 0 R >> endobj 1574 0 obj << /Length1 1410 /Length2 6366 /Length3 0 /Length 7321 /Filter /FlateDecode >> stream xڍt4œÓ6]˘KˆÎę˝wŃK„ľťXeWYŤ‹.z‹%J˘—čAô.:Q˘…¨!Bô–w“{ţĎ÷óžgĎš÷ž™kć73żëşY™t xä!k¨ ŽäáçJľ ů P `e5„!ĄXC]Ý`¸Ä@]Ą $Ú§B˘‘Z8@ĂÝŔ/ŕ‘ŕ•@ ř_@„Ť@ „‚AZź ęFŔވpör…ŮÚ!Ńýő `sřĹĹEš§䝠Ž00Đ!í NčÁ G€ ƒ"˝ţU‚]ʉt–ŕăóđđŕ9šń"\me8¸0¤@ęuEA!€_C´ANĐżfă%`ÚÁÜţˆ l W(íp„Ąp7tŽ;u ¨ktœĄđ?Ŕš¸nŔĎË˙wš?ł‚Á'ƒŔ`„“3îƒŰl`ŽP€ŽŠ&/ŇÉ Á!ż€ G7:„ÁAÖhŔďŢAy==âŸş]aÎH7^7˜ăŻ!ů~•AďYQD89AáH7‚_ý)Á\Ą`ôâ˝řţş_8ÂîóˇiƒCl~ qwć3‚Ă\ÜĄęJ‚Đ.‚|śP$@(&*@]PO°߯# ˝œĄżƒüżÜč)ü|œÎô P?˜ ýGŕăBAHWw¨ŸĎţmđó 00` ľ…Á ţŠŽvCmţ°Ńp…ỳhň€ż~żY IAŔ˝ţ˙že>}S=#eŽżfţ;Ş €đřđ x„~ ¨(@ýâ÷ď:ş ؟}üGŞ:ÜřUëWżčEýŐ3ęO°˙)Ŕż‹i#Đě…Ř˙!ť9PF?ř˙ϔ˙ň˙cúŻ*˙;Ů˙ť%wGÇßö?˙äsôú‚ŚŻ;--Zđ˙†C˙°swúď¨:„–„<ÜÖńď]ÂÜT`žPˆ. śűƒ3ř~é͇ę"Ü`ż>1~ đżbh‘П741˙ÜЊCţžĹ_6­Šˇ  # żÄ' ,šş‚źĐ7ś„ŃD@ŤőüMm/D§ĐăúlŽżnY\Ŕúĺúmń…|°ßćżNťťş˘ŰřÍ t Ůżő…zBÁs`Éűꐖł*y:žő)ěý´3ž‘‚§xČĺ ËωY™óJTćşůUžÚˇi+¸œe/ÍüđůRĂXë%tÂè˛eËh˙ńç ćT’Ďé}ćÄšĆ) …Ž=şôQ$íř˛ŰVb_śęŽŮ$‡E*˘Ą-Ú­íUE™šT÷ĹďŽę#ßY÷Ž ÝcËYuŠ ^‹6HŐÎ`~$ŐzNčQI˛Ň7Řż@ÚMߨ Z˙Ά$U–쿯$„[ůx!ďîUN!ęk™ľ*šÜWHO 7ůş/”Ŕůxůq˙Ľ„yˇ,G¨rú^Át9m°övh‚#̛˛ôśľ^câ'k ™ň-ďƒ›vĄ*O67˝2¸ɏsćʢ bEëŞę+DšÔ!Ţ&B옃T sˇŁŕőňűy4Úˇ$ՀvňՈŔíźť0^Çi—ŘŽ¨Ÿ~ySč~ˇĎëĺ7?~lűstPáyƒP×/Ćj Šh?ŮŤ´~nPń8Ą˛řŠŠlIňb`C˛/wc¸8ž. ,ĹN™óŘ{A¸%Dvđ"]ĘÇŔ˛?|ö`&ć ŻlŹŘĄú$:ťós;ÉU˜˘r÷I0ůžFٔT´[Tí@׏C)ć'iž“ƒ!ÜH§ T”d!D>-͎TŮ2îډ,0ŽĚ›Łň!ŤM~F0m Ż’+…C4ÉśăŠcUmŚDR?†Š žî°fóźq›đ6+††ď­‘Ž>ćŽâڇâLjxÜă[ŻŇ-B˛hĆTŇźŤőJ•ŸÉž^|ËýŘR6YĐçŹAjĐîÓw&aŞkŇtŢ#9Ž>° FÚý™ŢoŰL+kËËK‡jiĂ$ɰŤŽöÖo–äDŁÜg† Ň㍠*ťâ8Á…•€őJ!ΛÚ;ű“Mě6B•§bŮŢ4 Î^Z/žf˝8rwŻJń! ł‹35ď˙băž|oÍřx]ĎրYŐ^użˇ”ýűÉ÷ož:vÎךś"üŔ‹ ˆçiŸs(ÂŕJ8ĹĐF˜|ÄŃ0ӄ#űőząóă(Uą˙›—ލ͝MB2öüďę˅V řŔŚČč— ü9™źSkn žýąP{áÔţ|ňřĆlؒ˘×O8ëŹIžąvľŽ‡Ţ'ý/Eĺk-”eŘ ’î‰Ě+ß'z†'™ŮFтV*Fź0ZÍëqeś¨řC†] 57xbNgٕ,…‡5ńÚäóޞh:Nť~i›ŸĆ˜PŽórxżVŠ ­!˙š“ěŰńœ,Uź‘fpďtዘ͏ʛź)R[z矍ŕÔ,7čýřŘůDSÇ˲¨‡E‰6{ÄëĄV•Ą/3j†GÇše­|'“Śř%VJ|v7e38iľpEĎ[ţ6R¨Úuܰďqk3š"˘Ń~K'Sř¨›HmˇŢ ¤¸Í ćvËĘ(ÓIA’`NĐäĐź…ĺ!ĎŢÖ@ĂYĆ šž6qiŔónx1§ęĐdîŔ u{ôĂdç“f8Š)GőuxÂĐk‚ŤGň%:\ĺVô<âWýűd„İv{}ě2NîŃăjiĆZL¤íp6.KKĹÝ7ť"Špš%UţŕŕťąŻv=_÷mTžßĎfjĆŐŔW6k ”FŞœzV;[•źGŐîÔ Ť÷é‡sXĘâ ŢÓŮĺËT?ÜĺŔad˝Ł&0vtĄmąĺŹúąéGUƒ“ĂţƒÎӹޣYŸçČ\–˘şť?˝gsCĽÓÍnů­JśÍc2(6y”V3çî<öž\jYťż5˙<\Slö˝?ĂŇŮłÔö—šĎ§Ů% ˜Ő¨uó=J„Q&D45Lę3"´"3ÔĽ|‡ŽTśöÔPžçŰWp)i˛W˜NůŘ ydÖ&ms§ŕ5›Š{á’ńř ˇ•ˆ&.ižŽ[I•ýmL­vr‹ëJY[rď•Iű˘Âœ‰ćó׷Нh‘Źätíńiëő­r@hd|‘FFpşť2ľ×Wďv`ĂrĚĽŹ)“ÚCrçއěrÚSÚśHÁ€3Šńw—a€n şeČĄú]r™šŞńWÖÁÃ뛯GäLQ,6[4QW5Ĺ.ąĄî—ý˝Ýg•-ô5îŘtú‘¸œ“ PŇx+ĘăHN˘óç}Ú!Nx ŐĽ^6ĺ(Ţî\ßÖć˜/óŠ|˛ź&ĂĚšŽl;CtŮÓţ_0hř\§Î²,,řœ‰ńŇîXŐ^.8“Y ip1ű'ŸÖq~L˝O_¸Ą+ÄJxIôŘúóJ6ˢÇyKĘÜąÁúÔÓNJľő)ŽÔFvĽFRG÷>wšQ×˝e÷mŞĺ–H^9ErŠ•ˇ YÚ\ńÄjQŹp2jV”‚EŇşßWřÁ§ŤY 蓃˘•ŒžŸ<ú@d9 cžXťˇzť“Ŕrú6ŮmŒŸ Lcq/ÇLäqRÁ}%ŠaǙY‹Tâ.ŒbĂAaI$GĘ'Ń #Üw5śŔŽzDše‹F!%Éŕ&7Ĺ׼ĺĘ-ŘX0y5Â}ÜVç˜űŠ<÷TÓ]0×ę(.÷°GA ť|̟8âT‰V­É–ŁyÉĘ42°‰ó\ljşžÉ.řüâY„ePšMîútcd >ÉYzô˛^^…k‡ËěrëmUxXŽčtü\lŔaA!3NžËPRZ'Ű<áŔMÄ7¸ő\’4rŽÖý…Ů_ţ‰JTékLâYœ~Ą%×!ŽÎŤ,ü5ŸÁď֘ŹKDĺ–;Š×Ďf™<ŕ§łÄĎ˜ŸŢp‰žuşďŠ* ‡HZ$`ŠŹ4°9Ö°Š4Eľ­Ľżą?g-°2ďÜoŤQçŽ ™1˜ý1cWĐŮĺk¸>‚×ö,oĐaË ĂôŤ˝u ypśŞ FŰčiˇ3ń$5 ŽuíöŔ˜4%Ń <ŒÚ6˘íaă“RĽbŔŮNÜ[B/:zذcw‘*îŃ ŠšË*™%?6ŕ3ýĂ+‹Ž‚ˇÉáX ۄmĄw]Zˇ ”sGŽë?w~[–7ąPz{óEŔúÖłŇÉâ‹ísů–ľ+––2MłŽG'|ÍŕWŻ*šÚHÓĆ=žygMNÎÄô`Ţbú@Ĺ0E^RŒ= cź°Č&a&Çx}ÂÄ1—vwśŞL \Ů ‘ŽZťG9ězž;*˛,Ăbyk¸V˝Z9Ę×oväIřŸ6SmŸßN[# Ž;őŚVŐŞeRŐÔԇ&|0Śąy+Ұ`âVKÝúLMţÝČÄc™( GWe‹qŽ7ůxRóă+îoČđ¸1ÍH[P˙I^ꁧœPĆŚŢƒ–~7Ÿ÷§+Ÿh’ŤN¸gcd°:!“@n:DYVmĹÂ7>P˘Z÷.ŚI„ĐÝMż —– j; Ëlrńť@ÓďŐˇQc6H¨8š¸çő‰hbNźŒ<' 9ߜ{2\Níw>,Nű!ˇ­uD—öí(yxr=Ď~Ś[…űȜ̦Ř<™6ć’'“D¤C?8/Ł'^>Ŕs‹‹ˇťąM•Jßŕœ6âޢ­ŕŔ[Ń.vS÷\Z{@Šx,oDÜö%×(yŚÜ6Ô Ôˆč ĹŠ Ł§ źQ„ÓĆŽmVڒAëş˜ĘŽ'Ă;Ր …ź­5ŞČ÷Ä\ĄŐ",ŠÇÚ ×r.Ěë*Ú Sći{ś%I8k)‹ľç§á˝|°grńŽ|á‰ËĹťk־ύ?,Čö^?/4Ç1™€}ÇM 7`˜˝Ś•¨ďń>…ôţ]ˇVě¨ÝLcUكL;łúůËOj_xÓór?yŞ~ĆŹöÖÖ`/hÚŻçŰRčlżgů]Ó¤¨ľŰؔ\ĺ_ÍPĘÝ^c#sJŹŽď‰(vOż$0F>UT_äÚ(ĂřŮxŕyĎç3Ńş´dt'ÂÂ8ě+żŢ¨n&ťâŤÍ32LfÜM˝ÂEđžݓ3ľ%ăšNUVůAłoěń^†›oŽżźö+¸ŞŻÝ"Ćڄíyť]`ž3‘´6,ŻŽ"Ň>ŰHžK‰ ?â,öI’ŃňĹŔýŚ=V98(ćR(÷ÝěHĹJ$Ľ7¨g}6aüqhß&ŢeädNĚu›A˝+sÚӆ ßw!pB$~ZͲGĽÔÜ-ýdöĹéÖÜĂa &|uëUĘćŠ(YéŹnŹˆú.}ĂĸíÇ{FĚqq’ʧ˛.QÔtǓëŰؔ뵟WdOÁ› _\Ô)b7´‡”“1ŁĽRD0á pŕŔE饥FiGOw‘ ˇ_@ŮşĄźËX÷ÜĐľüá4vĺRŢ,áU°…ůěi|ş÷›.…úlkń*Fáƒd×Ó:óę\žË&͒aÝ˗xŐç ׏őĽĂF7vYžńŰOŮ'V y|ˇ>Ń˝ĂFšÎľ§ĚDTů$Űn­ÍL =Vúj;šî”awŸÓgć%…—|‘Čh ¸<. ŚʧEů‘g^rDń8ľŒ:¸VD~xO*őŞ;ôC˙łƒfY—ۇUł‹púiő|bŠúOra•^ĐŻWľ’‰ďĘKp„U‰ź”CdăŢęQ¨~âś m˛pv‰úÝ#ě …Í›u e^͒BĐ^AégńüŐҗ}éˇŇß{g§A\Ý䎭>î8ŻŠ“›Íˇ I‰˜ÍM‹‰ʢ´ˆąCq_œH›Ź–SÚ/ˆš] Ů ŇV~unJő3č9@Ęë[Ţ)řQ,@`ŞçtQXŁQQ7?Z"W+†ŠŔň2Ôę­źoż”žEĘĂ[‚EmłĚMŤ*ĎÍ Ä-ý3 %f7† 1öCř^46Ť•ŸŚŒ鱗N)yF6ńuJ<ňSƒ6MŞžúŘîĄrSŢ\Ç(tď—ć3YÎĹ#]qÚËR­1íœ PĽď>/mNe!=D΁†măŇ ~–ŠěҰ5™(Ž\ü˘>U Ă! ŸP•łˇ=qŢ2ěˆČ†yíÜęÍĽ…řÔ˝šSÁüľĄŒóŠřq3(oϧ㴼4ðű!ƒéVˇ‘<ˇ~NŘů5Ő›Ą 8đ *° e܅UŘółDQ÷mű3ˇw7ŠŘPF=śÖšÎ¸lđ:UáaľmOËŹmWLDŰV×U¨ě‹AL˝řJţloŽóć”pЍ ˛nkL:”˜V¤Ęxć]â řäa€¤QN(ÄęhžeȈˆ:Ĺu<”4Ř‘^m$IŔĂŞ3näł~Đň°IŠÂŻ4‹đw‘”M)Eę)uút˝uH:›T­Nšě¸:˙VósWtŽó*E“çÖt]}„őí˝‘ˇŁ‹Śą˘ćď.Óď –‡jŤ\斶e¤čöőqo möąM ö Ęâ @X…Ů\8ż X—ÁňLšËÂÉKfą?™|Ě’úNŔŠSÁ¸;ŇJĂmľ$]űÉeœ8˙:‹ŚżOލäź—Ÿ^ć”ÎqůUśyLd 膝šÖJěČÄîέͳG”ŸâçÚ!Ÿ˛„–ł;-#Ůş Ë'[‘%žRŃŁ)|]ę7U>"c´{ňŠS_ě'Fgőô%˜Lżăç+|oř…čëLĆŰW6ŠO­:Ś…‚"6&.§ xZ]2cNbg,Ś=|Ä­ŠG8NrŞĚäţÔ;, ‡ (jú*{“Şç‘~ńI]Ă+'ďFn“=r˝ŸŮƒ€„]Cî'jvO’DzľbÍt˛Ř˝7q˘šu ňŚNgí‚W:çx3a-ŠuźbyâŚČ°đLŚşsßüŠE‚t‰ĎÚ‰ą¨Ł§óýdÄîNxąń˜?Ąý›”Ţú™$ȃţގžŠ #¤š{ň¨VN{ŚŇNýzĆ=<ŢY–Ă’9íBÎzó^€9ŠÍ9ű:ŇUÓoŽ€r–XŒqăţćń5üŁ’Ŕ’6ěÎWÉř/]łĘP‹MÄpůpJWôȁ7ľŻám/Zy2Šâ€Fr, š0üďĆCé9…´ )ß&/€s›H;ř-)pç"=ë*ąË>źiŒcŻtȏ|˜0íşŁŕĚĂ\—P2KŃAƒe-ŕ4KŤ’–´‚ôr|œ‚.Ř)mNÍY$úö™â]â}đF´SSŚňą‡źƒŞňâU\SŚŻU^"dšÖÖń, y2ďżÉó',˜ś\cŘHĽŽQ źÂ8ĽĆ{41"\ÜÇühÝHiĄżđŒnw*?5F U!‚mü˜ Ą¤3żŽ•Ý|Lî5y*~Azß?úxö>˜‘°+ĺzç§öźŮ¸ľc”v/˜ž¸}čm–W[›qĺ˘#ŔŻešoTđ<=Ś`P˝>BJ dĆńüˆ}ä^Ý^O:ÚS?dHqž\Ć$a`sË,âŚÔéQuLŁ‹Ź˙Đ-$Íâż]bEœń`ĄňÉŰk¸şqöMŹéěö<ŃüÖBy¤eoŢRG)_ćë?LOcŢ—#)¤ž) ŐŘ6I˛&€­úˇ&Ś'V†*UŘýńΞxW3|0aZ¨ÚÓ¨›ÝyM/#Öś˝îâŢżŁňĺvVëň¨3x;„4šŔşęPěç8‘˝ëžSçĂXO¨|ďą5d/ť;ÂßŮ"ôĚ=YˆIA™ÚxxÁ%,§?˝?:âSdŐľ“ČĽĎ8ą¤Ë7ŐÍĆŞEpľ”đŹ‹Âj™ Ü?šËLę=ćxWD~.r™ň?dG;ę endstream endobj 1575 0 obj << /Type /FontDescriptor /FontName /RYQOUE+CMCSC10 /Flags 4 /FontBBox [14 -250 1077 750] /Ascent 514 /CapHeight 683 /Descent 0 /ItalicAngle 0 /StemV 72 /XHeight 431 /CharSet (/a/i) /FontFile 1574 0 R >> endobj 1576 0 obj << /Length1 1398 /Length2 5888 /Length3 0 /Length 6843 /Filter /FlateDecode >> stream xڍwT“ë˛6‚´ RD¤JD`ÓIh"˝÷^U@I€P’„Š ˝)˝7é*˝ƒ(U@”Şt"EEéEŕuŸsöů˙ľî]Y+ygć™öÎ3ßúÂ}ĂĐDH †˛ƒŤŁ8!°0H¨˘§§A 1aHŔÍmŠŔšŔ˙Ö¸Íá,…”ţ„ Átި‡BľÝ]€`1 XR|KŠ‚@ˇ˙˘0Ň@UˆÔjِp,€[…öĆ q„<źP> řöí[‚żÜJŽp  Aő 8G¸+!#â4AApœ÷?BđĘ:âphiOOOaˆ+V…qçz"pŽ@c8Žń€Ă€ç-ő!Žđ?­ ¸ŚŽěoƒ Ęç ÁŔ…  Gb .îH$dšhé Đpäo°îo€ đĎĺÁÂŕ…űă}üĺ BQŽhҁtÚ#\ŕ@u]aœNAÂ΁,Šŕń€ \ vŔŻŇ!@u%# „ĐáŸţ°P Ă c.ç=Šœ‡!\łŚ‚ru…#qXŔy}Ş J¸wo‘?ĂuF˘<‘>Kö$Ěţź ˜;ZÄ ‰ps‡kŠţÁT€ëŕ8 Hꖘ”î„{AEΘzŁáżŒŕs5Ą?4 ´'´÷CŘĂ ?,ÄÄaÜá~>˙iř§ƒ0´ƒ; €G'¨áöżeÂü1/ %ˆ@?0tţů×ɚŔ0 éâýořŻ‹¨˜ikęŤ üiů_Fee”ĐGHL($*‚AâRŔ[„ƒß?ăBęř_-¤= xěź^ÂEý]łÇđţŮ>ŕ?ƒéŁԅy˙Ít+Jř˙ŸůţËĺ˙Góó(˙+Ó˙ť"uw—_vŢ߀˙ÇqE¸x˙A¨ëŽ#ʁа Č˙†ZŔpwýoŤBX%¤ŇB`qařo=ŤŽđ‚Ă 8¨ăoÚü֛/œ  7Da珂ô_6–A ,›żM,aĺpży.Ă KőĎ:ԐPě|űD%$ ⠟ I}Ŕ„5…Á˝~ą("ŒDá.@BĎ~@{p>h ) š0ě\řGl¨;CHţ‹„ÄËżÖ÷‚Că(¨L°SupËAĽŤ§Đň ,éfęÁQĄÁ‚ű¸.ľa›…x“ŹĚIgę`őűNmúĘnŮłś}–j8j˝Ĺ÷„8ÔW8ěbÇĎö.Œ&řěłqŽÓ4=ąHVž.]Œé"2d˘m§T€9t™pÓřţUÝń1Á“‡ĄDý–vH‹~k{eIŚ.#Űmó/ŸŒqMv˝ŚË;Lĺ|r}´m‘˘ŸÎŠ#Űzˆ÷Ź ďé띦ëd¨íńpů;W(ŽNMŚ—MUœźÂ|:ďňϜbtz;+аŽçs|ÉŐú[ŽK[Ö7xŰo9Ú&ÚGƒżŕŮéĐÓ ĘŠ˜Üü•HŘTvIC|Â>Öź# ĄůzśěťłvXˆŽ÷ähÇĐüOw-ËwÝÁź‚zńr§ĽK_üę¸_Ćx؇7˙U™Lˇ¤&Ŕ˜Éˇîg”×Íĺ’5˝Ç2j!j)•ęŘb*_4};¸9ŕ˜ľ"ľÜě˛HÝçňÂť{>xńÓźíÖVežIˇŠ(d }4~žfÚ7˝ŕÉŃ&XäM-4­*Zďéş°ç[áľ`­ŰăŠ*ô+á¸J|˙@÷(% äČ~şŢĂ$ÜÁY6ľŘž{˝”8FT˘Ÿűüh'ńm7Ş…H ŕQ}´?Ů NęĐľxŇg†WėŰ${ňş¨ˆĺ'Ď~Č7§h‹ť*NŒĹęǛřz}Zň›—čoÓ-„ ܗßé%.(Ň8ú ]™â}DýÁ¨7h-ţqt‹ŇüNSNßHëč×K-%r¡Ÿ~ÎÜŘs`eŮΔťĚaŮjĂqfw†˛šú]™Íź`î¨űa?yý–'ÇWfâĽúʌ×ó­5Ô=uŹA_pb÷&LtŤÉ3Z˙EوŚüŽŞßîwŠŠŹ¸ŽťI—[žÖVî•9”\&kŰľ6ej?ƒřÚś:ĆŰ=ŕ{ĺy7hjÉrJü^}‡č–÷ŕJŞ#łICHé?zôŠĐđşýř} äxÜĐĹę"Ž7_Ű^EoϡąŰÄŔ+jř‰ńžÉqIá†Ű|zŇ2”CMÍaĹŢ=~ěœ+x?Ú.>ý;žż‰BŐ"nŁLś¸~…”~ú¸{đź)04I7rć‹E]ľh•Šzœů<‚¤ŐKžĎţƒf͑%‡ľŠÚŢ+§tăŢHcŞĽ%Ću`z*팋ÔţÎt<şz''#Kó†ůţt ŹţF}€ Lécgúr Ĺž,ôÓ×Ü2ŸÝá žđöv@ߝŹŰ‹}EóGűßęćäŻL.՚ć~ěE}3öLY„]π7mDś(#šWŮŮ^11zmźěœ†[™ź“ÔĚy+`Ë 8ƒšk1W’HňÚ`ô8"p!°€€ ™gúĄ˘ÖPdaO|űLn“ý-&텇÷T…ă}ţWš:UžV;ďFx^ŠcŃŰČäŻëŒôđ~VxťčZe§$¤Ľ–î2üîZş_,‰äSQ? Đ7óJĆÁŃäS"Œíţý -gĺřđîS—oňžńłwÖe?iލŠěžčĺA˙ňŠ_Ŕ’şWg†Ă Ţ:źłŞ‘ąNŚŚçňšSAcg–3Ւ>óžxŮ™řaÚÎ\Íô™“†­Ăp˜ŃłŞjJޢĎ2ý•FÔfÁ*hťŐˇŠ2*Dˇák<ꖼQ€źŸ!‡ą‡E ƒL1˘ČŻŠ-Í6;ĺ!ätĂöłď‰KrJÜA3űq1Î"ńĺ<ť—Ţ —֍}¤ ŹšÓ˝k~ď™Ýń;ٖ ÷'FyľQçę€ęwşÚuc[ëžôęĽTîe,őÂ\ŽL5Ůz‘çޝpłîŘĽ‹Ó™‘¨1ŽA_k`…uÚŇ +ž)pFżœ'‰%QcĚ ŹX*,r›XŚgHëÂú;u|"WQk€ŮGb—ö’^nóšě”Ţ€jOżŞ‡šš"5üÜGSvIÎ ?ďVyŁźŢ×;•KńĘŻ6y™Jbĺ]LJźŚĐœmžúPťžůú!™G/Ť3$$ג?=`ŸZ@ŸňÁ^‹ĆҞYŽXžQl„ťĺÇÓrÚˇgĺőź¤mVB÷nD3_ĎŢĐîhňąaŒöbë؍$öň˜2Ůéú‰ČJ8Óaڗ3ňĚ38˝Ĺ(ń3ü&ŤtŇÁ<3F]C…¸şžžkú*ĺ+&z{cˆÍ1ęIů¤ËtÝďö×/-˙ă˙ŕtÓ˘#Ku]j5ŠkkÄw+űFƒzä\ß@dă)ËÚ¤n‚ŒÍĚ(Y[‹Ťž9šăn/ďG&FWcˇŐ+űůږLńţöă´$ˇ“ŸKÖ|şf>Ęń÷R˝ŘxĘf"HŞ~ŹDAľ=Ž4Ú5çíÂűpQ÷BÓ;܋\’MłXúo_V)ۙŸť*ó3ǚ2܎Rk".´0pšLMSŠš†^aş Ń$ťÎIa…/8yM+2Zš@Á¨*•a+s^Š­‡ŮmF Ş”ťmwđ„žÜš˛Ą•ŸŃ=šzóŇjŞţőĂ7gŸŽá([ř…f ěZáËťŃňŠLű1•ÁŤdUOǛ,H÷ĐĄŁŰÎdyAƒ˝Jš´źÖzKĚčh(iöŚcď– $UšĚź{ď-ÇśSr/ĄȌç:}Řý: ęw6‰D?~ŠôŘąƒĽ ynKŞý6áÔ9ŞĽi@CÍq”gUájP0˙Ę|9ŤmRÖ˘âí¨Š(+E݈iŠľ1Žę ž­â/ţWűf2ĄBjC,Ë! ¨ŚvŸfÚ$–*Ú~žMl•ţEÇËMŹŁpţ ޘ˝,c-ö˝ďĹîpPţ€ÜŠZœbEs˘đŚčýyLMĄt/ťŚ|)|uŇp`ŚfTŚb˙cχ'Á~Ž™kB?ęô”ńX[Ź_lvôÄIśQ‘Á&Ű"Bœ’˝¨ŢLcŻöúyŠËˇ¨YG+ [ť {ëRé \źł[˝÷ÍÄŽT¸Ľ×Žîn.nŤr>?óh‹jÜu:Ľ#ŠQHÍ9šîWbiX‘.ÁJˇZ÷°ĘhŠ–‡źŹVpiŤ­†2Đ/îď܀SäO­ áŔ>аˆôÄŮɆ&%LŸ8‹,ű̑­ %˘2sŻ?~ŰM˛řĽPJƒ›.=ŘňfŁťAď‡ôHŇňä5Ô$`ƒUâĆłřěfPRä§IŐÉőţKŞ”#7Ľd.=x˛U{ś˝Čžs˝RÎAĺ{^\mŕŒÂáęĆ<šLŒuB ßđO3Ą"B÷“Şc{URĺé- ‡GMЇoXĽi•ĺnsí’˙čŮ`âĘŕoŒŰ=ęuÄĐěޢ䀗ʏö_śč.ůďkœ‚ÔR)‰ fÁKő…1^ˆĘHógn—â+ž'–ŃŽŁ?;č_đôśžˇĘœĆŠşš~;UČţX¨S´'ăłťkÚ$ţ6´=çőăbýźÍQÚy˛VçůNŘź×+-G5šž âđBëxk Đ4žÝşů›ÖĂ㯢3Ěĺ7Š Ă.ŚŽwYRVŚĆâĄî'ŢMfƁÎó$ą„7’şžÖçoŰBƒ}[îŽćšżěâ]ĂĎ­ťúxź|ÔĄăĎř‘Ľ%RMŤ`‰§˛‘Á9Î ed­‹łsדޗnŚ1_:˜ůZÍrDÉ ‡ˇ<űĆžŠ›wú=¨:ĽÉ)ĘCš*„ޤŇŮô݌°[Üť!玜m´–˜BÁťĄ*+SăTŮŮ×p47Ąľ|(Še`ĎŤŸ;VŞuŐHxŤoŇ íýŮüC/:łxkLĺŃ}ĺ܅¨ŐJšLěmňCŚ‹[ݍőL[š>œ5Kg5TĂţEĄx NŢ˙Au?&uë2ĂU:[C“39™3ľĂ֌ žíˆ|Œ—(%—ĺ‡hŻq´X+ŃƧťfOJ݂Hëř‰ms1Ŕ§űJTe fRÝ=]¨X~4öŰ!ľZឋsą"ŇH`{@Ć8.™!ęý.´‚1x˘Ţďú‹Uľ:ćŚA7ŸKą,Dg'ĄŐ¤[=ű˛˛‡Ő ôT 9ĽrZťkĹÚ=śßß$Ţá3öڜ_‹%éô˘”žt,šIŃŹŞÉźž3ę%†ÖůżjbÔ.ź´Ú¸X(ív‘ąť×Ń[gŚöT]FöîYÎűŸţž[Ďć(GéŽě˜Š`ÚNŠ8*6•:íÖ[zňk—\Jš]đ; tˆ?ös‚ŞĄŠž¸ŽUýĚ֊‚ÚÍĆČáý$Îőç›39;ńŠ&šGžÚT|g;šVYÉü‡=ĚTeůú“7­ 2N ž%˝ř_úivMă}ÝŤR˘†tSŽU-˝˝ď(˘t)Fq=vßʆś›9rś’,ݤĤq8ę+ƒRÎ}×yŤd˛v‡I™9M‹9Lá×eä¨3.jL=x€—˘˝e‚Aó„VsE8ď.˝U\¤¨+J‚脿NžĆpłŻî{œşcWńézŐ%œn˜ÔP(Ľ/Ü÷ÝČzŤÁuž9ˇ÷Ë´ęI8Ędƒâ|9ŻęÂć.ҨIęE6+]rg ´')á—C•ü˜žXQ-xß§”ó˛‰~ő܌ôĹăöš'’aNʓ‹R ! ÁŸ—UI_ÄĹąY>ÚńVMœh#wľ(˛šo9KöőäŁÓ˛§)ë@@ žněK!aí,S4§XŻ’"ϊˇâËŻŒŸFА‘…ˇ'ŁDöă†X¨ź¨’śwůoŐojžł90’Ýa{` š‚L/ÔL9I¤Ŕî`’5UÁœ-С–Ýź‡e{Ž/xQÉíez„_üŠńŽÁŻňnÓ7<4mt§â‚ř‡ŤůřoŠnzň˘…CÔÓ §˜A9‘*š6°şŠŸšőą'sĹ&ÜlxE•ę+T ŐĽ˝źSkz‘.çŢż—ŽŽ8óŒU÷ˆ%ôÖha™†Ŕ˝öţĺ誚ȜušF ~ž@Ó[ĎĽü„ĹŢLžďnsIz-ĹqľžŁşëeŁŁöqCŃŤ\ś<^§˜3ťe~F9_\4Ť t8DßriŘŹŹ}‹•5oö$*í'î?áŕçxŹÎ´•"TŇ1UsH÷’ę-œ~^+%ĄU{pÜÇÓÁđđ#YwqÁÁÝ&aPíŒĐŘ⤉­Ę%˘‡ˇÜŕŚéŒĹ˛v…Th4Žşav¸gja`Ę6ü]\ŘŔ‹Ë+Ţë3ݏGw™sKű¤t4lžjnŽŁvđEAßúŇ=d-[StjZÚ~Ž›^ôüüëfZÚęřP3šžĽ›Ŕ#mq7˛ł%-¸čđŹ N&FŹCžA­x,6főÍD_ZęI>ă_׊ć(Ěfů–Fí¸‡Ž'QŃ ŠŤň‘’Ô‹=ţ|Š”ń€çO{îxJźáě_đuN+á…3s‰0Íj?oŐ jœO¸Ţłű*› ¤ˇ‹şéˆ2]ăîÜZž dœË+_Č?xD9\ňĽWT"ÜąeułŮWKXÂý•­‘aţţřC>ŰOSŒŒzę×x’ď‹'H0%ŐÜ/š ~Č 7W g§ĐŕˇUxkŹŽWB=ßp:6ŕ°řhÝn?9GŒ$9%j•čÓŔJ šâžętnĐ[ęźÝ(k•Űëš:˙bď“\ťaą1Œ=RťZß­Ő´)y xŹeúŠ+,ćtĐ;c"ě[ÂÍd4˘iĺĚę˜mÍäÂ35÷D˝cFşé5­AÁ×ÍŢHŠŞŇ%DQtD!Ü|Ää ŚĹ =Ż„“ŢNݔ#ś×0zţ#é°qĐŚ¨ő-/Ţ/ÍâhŞrCŠ~6á‹ěŮŘ~;ŮÝG5ÖşFĄ MţƒzŻIĺáÂB“¨g#WOU˜Ë™i.&?épéŁÝě˛ňg6¸ĘĺсJV-L›tŁ8ő<\Ď]…p„_úŹŞÄŹňoě•ăsË‚&,yŠşxÂÚĎVFş —Gő°ˇÍź/ ťÖ9X¸Ńă’hî%śkšőěŇˇŽž…ĚÎ?R+‹’Ž3y‰ôž†đô5Ö;ŽşŞÂ)Ëŕy‹¨ű0\ćAŽďăłÁ=)d˝˜-”*ÓD/ŒRd›L×}T1čŻÎ6‚ţŠăSĘIŢ"wŻŻËÉV$Aí˛–v–Ź3ô/äQQ‹…§ź‹âş |ć˝ • §ĺšŸ\Łű8Ҋ˘AöÁ+}÷hł¤ĹŽôPnŐšç[˛|2}u^c(hĹŕ>ĄHý\ÄI-uŻfďf[`¸9–ÇÂŁxŤúăUCÎąwĹ6z5tz0#KŢĹiÖ˛š–Ń÷xĚŻő0¸×H’“ä3ˇú…ćŃ8M¤xmL}łůąGv endstream endobj 1577 0 obj << /Type /FontDescriptor /FontName /CUJHND+CMMI10 /Flags 4 /FontBBox [-32 -250 1048 750] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle -14 /StemV 72 /XHeight 431 /CharSet (/period) /FontFile 1576 0 R >> endobj 1578 0 obj << /Length1 1398 /Length2 5888 /Length3 0 /Length 6843 /Filter /FlateDecode >> stream xڍuTÓýű6("LABĽa”Ň0ş¤$¤[’ąmlŁAşD@ş;%¤„$DAB:Dş‘ţ3žßó~ď{Îűžł}?÷}ÝőšŻë;NV=C~E(ÚڊFářABŇŔűÚÚę a ˆ€0€“Ó‰ł‡ýmp>„a°H4Jú!îc``ŢŚ ĆáÚhPĂقļAŇBB@a!!ŠżhŒ4P삄ľ€h ༏vtÇ ážÎߏ@.7$%%Á÷+¨čĂ !`PŒCŔđ!`{ !‚„áÜ˙•‚KĂ9J şşş €°h \Ž›čŠÄ!€0, ăƒŽ Ô;ŔţŒ&ŕ!ŘßC´-ÎŒń{$†ÂâCœQPˆŻ4T×ę:ÂPżÁZż|Ŕ?— €ţ“îOôĎDHÔŻ`0‚vpŁÜ‘(8ĐięŞj ŕÜp|@0 úśÇ˘ńń`0Ňlƒüj TUÔ‚ńţ™ Á qX,Ňţ猂?ÓŕŻY˝vp€ĄpXŔĎţ”‘ďî‚–ű…vEyţ}˛E˘ ś?ǀ:; ِNÎ0uĺ?ź đ Ăń$%D$Ł0' Ě ‚üYŔČÝöË úiĆĎŕíéˆvÚâǀy#mař€'ěâ0Î0oĎ˙íř÷ ĄHhƒ#Q€˛ăÍ0Űßgüţ1H7 šž~  ĐĎĎž,ń ƒ˘Qöî˙Ŕ­XPMOQÇȔ÷ĎČ˙q*)ĄÝ€žü" ż°˜$$,”Ŕ?x˙;ů§ĄbŐQśh|Äď~ńőwĎ.HŔőG!ÜŔ'ÓA㊠rýĂt !1!ţ ô˙Í÷_!˙7š˙Ěň˙dúw¤ęlo˙ËĎőđřÁH{÷?í›x,"Ö ™˜ů™-ţĚ*;­jŕŰ\?Ň3Hs4~eśgÁţZk˙Ž4v/DiўĎÓІávIŻ fü&Y°ęěwT<ŽĄkGőj DYˇŒŽź˝¤ć icäŕxŹ Gë_í + €ĆŚęmý1đ–Çg‹ęjŕ 0•ý“ŽDÜxQÁé™t_‰ÄŹTÜŐ¸ř8šš­(/AŤZůŘ(iFÚ5’,]č÷Ľľ= 'Ĺu%÷ĺ/ Ë&5 ƒýdśł ˇŽUyôăŸ6÷ˇ÷FšŻO–l 2:T ľ-_ňŁŽĎČë¤ëĄÍÜ›Ô 7żÇ"ŞBŞŐPpgítž<źxGBüÖš˝óšeŽRďIŚGЕnžl“łx%lÎ_lň¨qŠ Ő‡_ëYoő›Öz.ąZÁ˝Ę\f@žţn"1”ĺďb+;˛4I—jć!#Ó] .Ľte& Ú<°Ž°…€Ů2š?ċBŹ\éI¤Tj°Ŕ#•Ćëý$ă>嗚 7 4U[żÜ\ÝŚRO”iƒ͌%ČćZžz‰żZT9uŽçŞ+č^ŽBrŤ4)ŠO†=•_ôń?Ÿ¤•LfÔ˘ć›]ôŞcż#U˜F ˜ÝŮfˆ™č}ž‹d€ó?ăě÷–ôńfľ|Ş/s/ŽsŹŐU{@RŘcsË+aĆU:š•hű;Ž’źŽ‰\•,iX ŒĐRěR’l%Şux1dűä"í%q‘Mꒆý|á“KYfŘfĘ$Łeí“7şQÉk.a+;zËĘ ńęTLů‰ý;„ĆÓă’ߎQąđVˇz<ŽŕěDô,2śNŮ|¸ÉNóŐčŠs=ź:l4ö`Pxo-W™ŠübÂ.—;œhřći÷+ť>ú ?ɅŶŐÎSp.—‚wn•CŇe`aßPłčŔJÉ^!M$´ŽSŁÍ|{şżŘ1‡§K‘ ‡‘šügă ÝÇwY2ł\ Đ=ůŚď̀|…Ç0łBe›Źéý˜ľŠ€= Ł~BFǤY œ0GFˇ¤žBĚџÇŢÖŖLUTÁ}N^4š\aAT|ŐČěĺ~Ěüʓ4Ľ0í¨lŠ3ôЗńNŠeě‘ ÍníďŚ]/a& ,Ĺĺ^/+“z`[,ď;ŠŽˆ–Ţ_`Dy鲅]sřôpĽ'ľJůú„âťŒ“žUf˛ÝÜĂԂ)ŠĆąż‰ü'ťoíP•ń^&!Ž–Ă`#ŢqŮNOMUyI‘+PNqĹÉúÇa­hNî23ľAšÔŮg÷cß­Ű]ëŁ'ő>)Áҧ:ŹMúńžsÍŁc`ŘD%łLuŒˆ%KŕÚ:ƒZŽ$nţ‰ţDđ ‰NłŘ=óĄ^Ç$céUßEƒ× ^q›şí6ƎŠ]ŸŢ÷˝ćĽüď9k-ď!ú ›>i˛V´@‹Âے ż˜ôUŸ9](Wő‰„ÄRÓ(o’|@"Δż‘ďčůíŠ9KËĚźkî7מěLƒË8Ő>׏đa<“Pb9^{ŢÔTłsŽçé^Ĺ  VWs[í1ÍMŁ‹MöÝÜŘ˝|‡¨:ěšÇä`Î @n]ęz”(¤Î8Ż"uĄÝɃî:˜L7HkŰĐ1WÎ^VĄĽ÷™aó’X źBÖźeفŘ3ňčżĐ’Sş(âT:U‡§O™>y“˛ŠČçi0Bę†Ú OEg˝KׁÉTÍSŃ$ů<îŤ .Žá~‘şuséčŠ%UcíńƒœŔݝ…1UŃľÎú˝âď_ˆŽ tâ JŽ,j‹ Ű]Íđä⃒ľˇóp˙ťƒ7–j]¨@ލöbŠpTÖEÍFN_çtŕ$ß`Đ řŢgëa‚•ýIš´ňÖ ÷ă7r׍0—oˆÜ¸eÁaŃA›5ŇÓYyPŁąAä}) ~ĂiîŞÂĂw6ésĎÔŃÜ|_+Ôç3„<’||/Zý.Ďô ‰!3ĆÉÁşt‡d#Ěd=Î?ÜpKTXXă-żśěG5ŞLş7vĘpŠ*rPéŮŠ™˜čNžŤśYń˛ ┪ůŞjvONF)ž÷Ň_çpů!*&|UÓűÍďa\ŕ˘[QV oτâEú\ńŘÁxAœ‘ÎGrUvƒöúšB=t+bĹ­ƒ…ˇÁHÜv˘ÄDýfýhc_,!BŠď˘ŤÍ˙Őíß=ťeę>ĐdŤj?ó…ńšžnW˜Éť\˘–ZéýńKk¨’"žˆŹ°gĘ%ąw őf[0Űő^ňŽ|ľSu_? (Â51˙zkEƒĎôW×÷ůęa|f ´m-‹8Rč JÚ´Ľ„ÍĆR3ĂĄüĂŕěDŘö€ňÉřbĽ[.ęÓŘʖŁE?h‹ŠkoA€Xc\˛ňfVĹň˘Ë^đ,ĆćîZtm^qĽMY´‘{Źçą¨|#—ňÜŢ $ëÇř ƒâ*ˆœß­˝SR3čašÝ20šOűšĆhŁă{n7°}ŘńéѨç†ŮD$ÁŠq$‹ŸôÝ)âÔ‚Ł˛ń;G/ňď9 ŒĆěRÚť^Ęóčě ˝˙*öá„}<ż9Ţë[fżsLŤÂ^`-iw§mf—Ů,'<@ŢŕŃ{ŠÔ ńô+쑝ßVůvĺňÔFÉ,(Ĺ*CdŹgÝ),¨ĽV¤cŠWŰöś 8>öňSö) ďGĆp`VśO*ç>&%Oímotí g_ra:#ś2ľĎ"Ɨňę 9ćžß7řňcź¸K‚ľTż“ÜŁÁťqaé÷ ^ŕ<­kč%ˆu“mߤ5ĂzëŒCvč ŐMNŸ ęa€úč᏿Ŕ ny@‘ŠçÂęŘ ąí>—=ł{¸đ†râžĂ›Á Ą­ i¸Pˇ˝čJŤ6F[ëüÂZöşŐŤb&ŰWU=ŃÔ“§BÍ}k--_ť=ä .úHÖF´ÉüŒ,`ZzWM<€YżwöÜľuŘDxč†Ů=@5Ě3’6S”Sčqvd S“K…°žéOčĹ3#|íč’VH^ń–Ť.­kk]PęwG“ÁĚ@ëjęŕˆ@I ŮďŤÖü:Ĺörg˝áů /Ž,ßOx˜ˆÖĘ×éÓMŤěřx™ó1A@Đťó8՜§3GvcыV;:4{‹ŔfŰ×yÄHœpúQ=ČVĹŠşŰ\ńmÄY„ peMŃĐ2Ř48#ň¸˘d6­°c-6RĚő˜*ţžÇű‘RŸ%i§sՉGŤ<,ĎLÁ/ějƒňQšę ń–&Ő°.šĂĚB?vFÖ5‰źlą žö>‰WKÁä'ŰbV[Źů„Ó÷ëIK_ic‹aĂ9 şÚ,JhĽ~ąű$Ćă×ëÚ3^ÕëĄČÜßhÖ§’}ĐáÖŚżťŔŹźˇR§Y(Ş÷3qüâ]LaŐ˘Ř0:äw˛“‘R]@g —Dş‰Ĺ­37AZ‡hx*ëlÝ?żTĘĎ ě"Q\]”|!˘hΖˇ‹kAřҍĂßM$ćÍ÷şĺ€C$Qä>”ůÓAâ%ö~ŻbvŽsń#ż>Ś„bR_şşçůĹ7TĚżxůEÇž§6 tk@Ԉ˝1:cčm$i¤9M”ýŞU}íÖ-„ëů@Ů3ˇ§ň?ŘôÔnꌨxš{źĐěWĘ8M ŇßäHŒ4›ő,ŘŘë žCY<V('Ž^—uÄ}ąŞgw2™ąžMlŚTĎíŻÄ>Ć8Ń˙–=zĎęÇŚô]0ˆlűFÚ’ZR)…ţÝ-ňég”ČB(V˝6‰nóŠţe›-ă1ĽÜNţ›¸LŘ{c#‚°lcţń^ŽËö ŸoÓg„eźŐŽ~ÄЙ;Řdş<ÜŠţfép/#°œy=Î܇Krţɝ¤ež#âc¤MZ€_Ň)Gb‰NrZâxĹYŇr@zNMĆ_“„LŘő€Ň*ťo\ž/i‘Pa T+L,ŻióŞN—Uuz6‘~ ‚ě,כX_ˇ*ŰYU÷-\&,ÚřX9u{Ջ䘌˝YtÍađ)ś­L|“‰@!ÚÖv3Ă~ż4ŚY];Ó-˛=×TLÖÚż Č­~)×&{%Äm}܄4dł˘Tsľ ŒŽź„´đ*ňŽËś‘Aˇ’§ç[‚B=ÇŻ$ŁÚ AOÚÉNŒ›wew\ržm_v?ŮÂ=ĚŘđyyUŕ?3oŇ$çĎjâHîŹÍIö 6°#Úd°4d–]+Ö$˜„Ů?R}O°źóĐľ`;ĺÍë  ńԓNďĐp)},ƒě¸…šĘÁóÓUăŽG—ö߃NŁi٤ßN3őęT–—­WŒ$č]5˜YjçcĽśĂiójŘ|ahZ—čŸ…ŤÂ9 l흕ŻôżŢH&n&Hó }ó âMx“ŔőHz˙ňRk•Ú^i>çp?łŒ¨ţšq˙u ŇĆy*~=‹Łó/íýUŘĺŃťĂĘ2_‡öRÁ•ÎŢa‚üGěěŹśMűÄłßF‹6/OnKĚ?}" Q ôˇ§|NÇeiG4í”OŮžAňSĄUxtI^Âś5fhŮ"Şs7ž’ŕ‚“—*=Ť|öfJ AȸJ(ě/BOrg h łŠ5ńžŕĘ5ɌŽjބáá‰ŮÂÚîľI>Óí…ëeőÍ,žôĺŢ<ź60ĺ)_ĄŻaUě›.ŸK/čĹv=ßPÉŒ›Xő1,4§Â¸2zß3>oŤ…ĽŠŠ$@‡*~°ÖKů7}2ĄSxœPé8ęĂ˝‘´Ä5÷”ɝmh1Œ>mÇŤŰܖ›_ĚgňşyÁ$îŠYÄ_Şóo(öhJ/ÂÚöČźŔ=ŤĘ˘€đ S ^ĽťY(×N6oY~ßqZ¤ßZńâ+"ˇŕ׊ ;"]PnĹ)ľÜÖlČĆP“÷֒I‹6˙d‹ĆjŠgšĽâÇź`×̜YߒÄ9ČeĘńŠł!Ľĺ­1‘˜Ť‹Ľ7  ŞŮ “xóőA?öPĹüUĽ+řٍ‰§ůD˜vě/GůŹźˆ?ß°?ƒ_¤jƒ_šěœ¨ľ×u++<§3š ϕ-'ć›2ᡟE/ľĘŒŞTDő‰‘3mc* Ÿ&|T˛-Hyt(uýł1˝‘ ”6ö×븽Ń~LŠnY!Oí$ÁqÄךÁZńÉöű}năôgyá˜důŐôjÓÍDLK~âŤdâKô$ߘʜÝݙP×Ě +˜sXžĚIÓˇLÉćŽ|ţŘöó9Żű*Óëş_řľ‘Ąt’¸tV5ć<ęIç™l vÚ­‹ç „^3Ç}<5ď˲ďÂŚĎ  m! +*Ú|i#y4Ě´Ü~›RP×y'щË$đěŮ1 ƒ€”-O÷Ŕ„‹ˇÔ.:5ßŰş%lMá’'ÄĽŽÇ9E' —ĎúBJW%ejžä;™Í C/‚(__‚‘xŐěîŸČtEĐo­ŚŤi´őm’jżz(ЉĘRˇ˝°r‰}2×ň“éęůŔ&md›‚Eč/˝dĂ˙ĂQ <ÖĂŞ/=ä&|ˆÂžkď xpímTëýX˛ORcŃňŐ"Ô|°č$“řܧkĺځë{‹´/š:âÍuÖ֊›ťn]^{Ś›Â Ľ=ĂTd~@Ý $1˙jRĹ)\u›.ˇ8śQëk —kÉóĆÎÜË'Ľ*ESŰÝ#Č\ŽW› Á”Ď{îôb™ę¸ ‡‡.Ž4+ &ą›ď6wójóë> endobj 1580 0 obj << /Length1 1390 /Length2 6061 /Length3 0 /Length 7020 /Filter /FlateDecode >> stream xڍtT”ďö.)HŠtÉ 3t7Hw*5  1C Ň-!(!%HwJHH7"­R‚Hóăœó˙{׺wÍZß|{ďgďwďw?ĎźŻkŔ+o‹´Š (^0H ¨ĽĽ& ů@  ĐŽr†ýuaîp$BâÝaÚ§AĄqZH@ÝÓ€E$Ŕ˘ @˙é.P‚xÁmZ|u$ćATDşúşĂíPčcţő ŕ€rŔââ˘<żÓň.0w8‚hAP0ô‰Pˆ3Ŕ …ĂPž˙(Á!ĺ€BšJđó{{{óA\<řîö2œ<o8Ę ó€š{ÁlżhC\`&ă# ŕüH;”7Ä@;œáPተ…šЇ Ô4:Ž0İćŕďÝŔ|ŕ—ű›ýŤń;…"]\!_8Â`w†tT4ůP>(aű qö@˘ó!^¸3Ä řÝ9 "Ż€ ü;žÔîŠňŕó€;˙‘˙Wô-+#l‘..0ʃŕWJpw}ížü6ë„@z#ü˙vp„­ÝŻ!l=]ůp7O˜šŇ_ÚEđŸ= ‰‰ Š `n˜ԁ˙WyC_WŘď ř—=A ż+Ň`‡ˇƒĄ˙ü= ^0ĘÝč˙ż˙´Ŕ`€-ŠŘŔěá‚˙TGťavlôňÝá>€G 4÷ŔĐŻßżß,Đô˛E"œ}˙˙˝_~m c5î?˙;Ś €ôřó‚ź , ˆ˘_˙YE˙Űč?Šj;$ úÓ-úšţŐą×_pü'ŕŸĹ´‘hÖÂ˙!š9HE?Ŕ˙ßT˙ňcřŻ*˙/’˙wC*žÎοÿă˙Gâwöý @“Ö…€-ÄCM`DŤł…{şüwT A Aa&3/Xˆ$ôÇ÷PűŔluá(¨ĂĘüńý’š3ÓEzŔ}[ĐY ĐĹĐú‚:Ążh^ţ A<ĐbCý^ă/†–Ó?űPF@‘śżt' ,€¸ťC| ĐŤG[Â0Z ś0ŸßĚđó!(t =s ŔéNđk͂B~˜+Zoč†Đ‚‡zşťŁO˙Í ôÉ˙˛+óA ćgPÉpÇşđśÓyzoŢőq)ÜýôSSŢńK|TŸň”ŐJ˛AvւF™Ę|/XĹŇąS[Áí4çÓě‘˙Z=SƒŻĐ /“ĘW{&›¤™›Ěé˙Ÿ Ě3¤Íy&Š ÷$ŠÝű0tăîź˝-kkßg$ `Żë™KńfŁ(QUhÓîx[S’ĽIĹ nźťŞją4\>ŚaĎ]uI űňÄ<&Műł†TÇA˛wőĎÃKd˝Œ]q!ę^ĄëŹ‘(2eÉA%!źjăĽ|’ËÜbŻwým+¨r>šâL)IZĎě3ŮÁ ŠŞvوßđ|%Ůě¸Sv™%˙1źQ„Ô5ËZo´ý[}íQȒú1ÓÍ0 vČ­śÄ*Ášœ{ťßUŰ@ Őνĺ$ŁUiƒsXâřĹíY&?#„űłĂŐëŁ-Œ˜…ťd"Kűl{Ś÷mŸ=*{×cŸňąfęŹ06Í~çᾥ-ľlC MŒÂĽÓű’A Lđ¤â4b”7Z>_KkŽľ@ě–U2eďp;ţ¤¨<{Jü2ćąu+‡ÓSšŻř/’ĚT_-mŒîđß*•yë1=WR+^˙éçDšű3`wĺ‰ŇĆöĘťëŘn9†”ˇ§5(<FÔŕEĂMœ)÷Ű%yú 4Ľzu­TÓҤą÷Ş#ÇÎr@â𨀾ү]Ś˘Lşúěď{Éw)Ľ–ťc’ĽS;ITlIV*„rń3ľüŐ.0 ăGTĂßô͉„¨ÍžTŠ-Ĺq×R/8Ŕ qzúlȊćđ ۊ2óŒ°ĆeĽf?ćŤ|âOĐüŰD?´íÚľóżˇq„žÇßŔžä´1ńcö¸|x$^=(šÄöSď5%ÖőƄĂé%żUŠ–˙ƒŕBpéŢČÇŚ˜H2>öëd¤XÔqŘ^ç9§ÔáĘÝ؀2ÁďJ8BŤĆ5=ŢŹ‹nŮşšĐŚî­­ě¨â\ rIš=ƒNŔ7?÷Œz3kďz çöéSŇ9É7´r_Ěď&Ř[nĆ”…Ž0ˆÓlźXŔ\ž/˙~ᤌ–Š!j„é-ěŔ0Âmd­˝LwQz˜$uĎÍn­˙,ř{qBČj4Ă]Jœ¤pŠçW;b˝žĂŰsĚ ýFyסš3ž/HTś‡ĺ?˘Ĺ¸$Ë r‘”ZÖâ_˜ą‡<ÝÝ'F:ddH˜x6 -1ßTԑr:ŚçMéľmĹ_–N{7žČťk‰‰“ŹÇ›SŃĽQ­Ó‹wyđĐôF\Ď ËÖízSTńQŠĐ`VމsžM 86 Ş}ŤvĹäý–ðŒq!CRߒÉ6rňş­5ëŃXĘśfń)vƒŮŘĐŰű¤š|$Ę+0Ť|ŜAwč‘ó‹°Ťs$+IŰZW‹ÉeUÔÎŐńl_Už19]–%ďCU‹¤łŤh­Ű śo;dŘZăĂz+ŸŒ×:ůďO SV€đY1?ë ŠČśHrƒĎÔţŽ|úfO~t^R˛xF~{ŢŇýĺYQBüĂĚłč^MŘkŸÎ›š×řáywL˜čŰ´ť —š]¨nţŤafîŰŁŽ*oŤíЉ°~ćOsW—ŰEH ´˛2PÓt“`+RşQQZžˇĆř€kÜŕcĹťŠłœćjޡPxŸpńîŔNdđƒS3é{ĺÚx“•…ŹâVđ¸Ďî1⠑qˆm:đĘ1†LśްXąň2ýGë>6́śwMۊ(Jˆ×癎F]ˇşjp,C„Ďńg„*§ěę OĆŮţŰőźwMŃ~tÄt@¤°˘ =gţ“´ĐóďŃcł"^ÇEB Ń2$X}%SŁGnŔĂÇ_¤*+}Äʇĺ‘=ăyÎ՝Ďőç´oÍfSÓ~měQ˝âŚęňĽDŚ˝91Ξr'‰+Í3á˛ĹA”˘˛>TŽlĐŃ(9F€?3bgśď¸_Ó,–H#ˆk+3ďřČJľZŰ0ńŸWł&¨d”&i;äŻ\V÷ŰÎźŔJ;4Uä‰ág%Odb:p˘i'šWďŇËŻżýú)Ş3H´¸učótS­+Éş\ŢJyꆐ{:Ą8!ŚüqçÉK!â7<ÔéăĚá,éˆűí? G ÝÔ:YšjĹHDŻÜO™FZ蚍Dh"Œ äšľ.]@R;ŒŰ: Ř:{1ź20nŸNQPW'U'GAI™ÝżmbăvĂ-LâóË׈jŢCFžbY‡ËćusŒÂ}[-ʞv Yěźű ú3gćůwxOÄw¨2%#J1ôH˝[BŁ5ŽŐR+vŘS.(:žôYI†…P]éᢣÓBň Od1‚j3ŒČą?œĘî>X˛ĽöÂ^ŕxË`3í\wŢ`O+~Ú ŐÚĺŒfšţœXyˇ{múű6wš‹Ç†DŮF8腑5vű@_KrlŔ˘źe+‚*SQ˙t¤×#\˛l֟Dŕڒ™Đ(˜ŠčŰeÓŔ@X5 _Ք.$ŹľQ‡2v7Iďőş0iĎTâI4›ŕJőLKĒJ ϓÁˇÄbg´Ň_^ŔŮ~ś‹ ŢäĹ˝ˇţÜtéÄ%ki`#݌•L•żZř•ŒžđÍľ§Xţ]Ś÷ĂSD› ŢVŠM¸´Ú‰Sfc€ś v…ғ;‘ ëYäŕú0‘ýŁŞSńQýš÷˛YťźÜ< )ä›f[üZ´7”j(„)é-)J.NĆÔZBąź|ąš˘ÁďiřfZ=›>A“Ýż‰ •(déŕÄޛ”ŻuG錈ńě9E2—IzŰĚQU]üé×.а"ăŸWz_C%á˜epž^÷;¨ŹśĹe)C1έąÔrĚę™—ă)]'%Ą qk; ‡ťs,ol2âÎ]kÝiíĂďi§ÝcĄę”L5Ě^XíMĄËá4-B]ͨÜсą@ {{$˙‘S 7Ż.!Óŏ­]ÍEq•{ýŘŤvĆ~tő}˜u&ŐpÖż;äĆłçĹ™§™ŻĺŠqY äH6"IşŐ1aÖűÔČrjH†€űmĄú=Űš `G}l9ă覄ôŕW{e­¸5ŒZĎ˝dWă*W6ŃGân‹dzHľoW—ĆŠ8‰ZŢÄ3@SĺĺJđU@­Ý<˙ŞJ˘{Ůţ3R}cŻË§–ÇG8Uˇ1OFzKyŸšÎů<ŘťÚÇ.'ĎĆ ’eÇیłďô›ŁrŽ+I‰:=ŘćyšN?^ĎŇ\ô˘Eţľ˘JeFŞ™KN„%áŽÜ>ň˘9™Ö¤}zťű słęd/§Ţ+ŢypUăIÓşőA*aĘW1ą­ĘÄcžę qOÍ*[L]ˆš!=™ĘX°ú^läˆôk<oŒŐř儐şîvďŐ^Ş—3Ë ťČa&a\˝ŘiJąęr‡|čœhć+‹řl4™ Ě Ágdtm=šß—ÖÎâ€`[ćÓÍrÝ:ů{Čy]7ŮĆcöúě@lë#ÁkœŽ­ďÓkŕň™EŚÇÝ[~ÓúŽňާžU1”öp[Ţ>î$IqhëĚOĎĂ(žčd˝ÓĄĚߖ{ZŮ×ř†~͗ŒŃź§ŇW>Š—ÚĆkŠ˘¨ÎwúNŽqXȏtyÜń싒 +–-O蠈˛+łQ 2#†“WN{VÍŔđ4ŇU÷Łž{Łb7ź"cpÎÉÂMá1[aEtŐUÎ3ó&]Có@öVa’ţí;€Ĺ\żěD˜Ô>GËGʡ¸ Nů_‘‡x â÷ĂOçd)|Â'ÓV•Ÿ5ŢŠ|ԉٳšœsŇŹ.Ăö™9F!ôđ6ôĹlě1í˝áŔ aĽu%ŁÔ6‡é- °§S˙Á>§î >—ß™,ľƒŰœ~ mż JY1$˛rxťěP‹yďô=-Şłmé)ăë¨!ĹĆZgŔńg‡Í‰ÔžŸŢ˜śK”¸_ăetgž<Ч¨˜3sż Ú˛Ůs)ScĽbżŠ2u 'zş8`{˚×ĂäKĂSë-óŠ8öţ뭑˝öűŤ* &3ějĹšgěć#z—Š981ęŤ3˜őâ?m&ĺhúܸ“-u›Däß­y2•ő~à וxŔƒëś ĘĽaśÖ_˜śĘmD‘ őľ>Ŕ8fČ*Âßń×ZcRâŞÓç9]ň–_W‘éĎ|š ˛šČ×őëÓuZ_Ćqť5­ĹiŒtXnRm˙$Ž3wÖH̍Ǫ E‰˛XŹíä—ÝőŃ~.oŹ¤ëˆŠŇk”ŻI$3œ›†DżÇ'.S Qži‰Xˇ‚Váę'ÜÉđŇžŰďŹň)ӈ‰˝yÍ7`cXăŐ ůź ý%c­™ ňĽuˇ…ŤA,qĚs`Űńкߢq‡fTÁűŠĄôÝĎĎb˝5÷ŻkÝQâuŐ’J˜lˆř˜ńNƒáfPÍˆ¨`mpę?QËI߂篮z'at~*šéžŔgǛO4÷Ď썴˛ßR_ pi(qŠÚ5hNXś;ĘώgŹ:%ČŁIXÖr⎐Ýl~ČRÚ ďŔYť-EWe>CGťaţŠ-y!ŐŔŤőäHݑڎťĘŘxT‹wE'$ĎÚţ!žR_idćëŔÉ1ź)yřH2ľ$˝ĽfňršlӗGůóáŮçĆ}ďՃbHĆ~öᝯéđ.qĂٜoĄîÁQ‰Źsuăסéiň¨Śy˘7ë¤>Ÿ?šXcőeČ](ĺŽăäHĆőqiüX Ůę˝ZšœmGUĆźDeŚ$ľ1ßáG…ók…¤TÎÜń~łđăŒ6Ä(Ęm‹Ă`Âô8˙‡ ‡ČÄ@´ě<ÔjÜ1˙œŔbąÝřƒƒ4o~(ǥՀeŮ& k˙1٢…NŁ źY<śźVĚ[ëKÇ'ÓסçĹU{݌žŸńna€Ó EÁmśJŻ h×ßęŸ {il(ŸĂ?Ý?oŢí.łô%ژ7Ÿ ő՛VË92žĄw?Š­łh7ž)ú%?žŒY˝E;}Zą(؍íĎ:DnÔúř˘$žţOˆe,r`ü5›4KŇí ĂşŸ‹<¸›O&ĽÇşKĘ_ÜUĚŚ˛Ě_u$žŘřʞj_wŘěo6|ćÜ›ńâ÷^ví‹ô˙q0žc=ń&đMfş`#“JW] Ç4ô(…^yź\6÷•4ä@n)˛ÁśX™!03^7FKŸ‹uvZqŮľ0OLÖ­5Gěԛźw¤;9ƌ‹bÍ}ŽŢâű|łŸĎR+ŕĚząúxZ.ń7ÜŚ žÎíMœ“/Jłj×ĆĂ´–4aU Jy8ȝp/‰†(٤‰tHŠ÷)ŕüž›łwanä$ŐwO^ŕŘť\\*gzf=$gOĂÉŰű…ß^ad-Ţ&#şR}‘0Ňr¤'ńj(‡‘‚č+hć[“Ň'đꪆDˇô%Çń\ôv¸éĎ;Äĺ ľ‚_ćxÍáÂĚÎE5˝ŮÂ'pv?­îLŮ=ü3§>s‡ÖÝF„wÜüČ´˛Źěi٘b&×LjžXSâşě"Š´gtŕPžeőîďĽŃ:çú GńM…m "˛wßHhžKtźXlÝrÄ4ü’÷ÚĚĺĹ“Ľ%VÓzŠIłXžLć&AŔ8&ďtŁ=,D˝÷şT{Œę€ŚŐ Şăvú„96TŒž˜Sma;Y.šâĺ“Bé’GBBnMAnďy݃t­řŸÎďČ.0{Ś´ěEźn/”{Ҩ˙0ˇ‘›Ăl#ÂĄphkĚ?Ą_Ąr…Ë)^ńđ­oŕŒ'#íN" |’]ďž5Ç2@ÎřăŞ]ƒ›AÎ%/oosy2Óh:œ‰¤óŹ]ŃÇPˆô}*ԓq´;Ö'+ţAgŘőMssŻŻx¤|Ú߃„ŠŤŘ1ƒŁkŁ´<…úľpkÔĘGűÔY﯊ĂyB ;đ´'ý•*1E}•úÜć~8§TjxÔ}šA.qŔyÁŕaÉ4˙ţ jt,Lľž$ÍÂK˛YÚĂ)0˙ wŤ™ŘV {ősLĘjя.Ú䱚őüĹ5'södQ­¤$ĺú yJ€ŕu™n8ŸcpĂĆO°˙ˇKľŮI‚+ C )TŽť¨ƒcŚ™JféZŤ*¨¸ľŠŕ3Ő çË#4ŽÁÂĹŐŚk&pťl5;Łj0xüÄwŐ~ÎPŚüř”őôQeę]Ó%đŠň@VŁĘë P;â?Ű:ĺř)+ăz‹2ŠyH诸ăudßWŚKÓŸ‘źk˜§Ĺl%…ŧŞm¤’>—u8ÝŰý| ¤ĄÉÍďÜr÷‹ŢČnĽ[‡)Ĺ,AÝ~Ś÷ń䘥ɎwďĺA™ž’MfĎc9ąÇϘŻN]eS w˝Đ`ÜV2ź>"€§Ľ{ҹߏtVáq<Ş2ĽŃłóQüŇöÜT‚đ( řŢ9řůС‘ćůëÉ]DޝúíŽćNČw)ŰÎ^ˉ]7V#ş—‹ƒđ“ŐLĹӓ‰$zýÖ@kkľňíôLŹĄŮ)Ă^Qs:‘ŕýÜsÉDĘËÄ{Î,YŰůxâT) ÁZŽíŚ!oƒś§*jOvĘ´­Aֆ;%_“-äžcŔŻÓŽ^ţs\ĺSú:r׳˜˜P@G/|B›{ě5Hˇe)i8C>˛Řcî:Ř Ln éyŠ+ąąĎľGEŃč "Ţé ü–žłwëşTɂŮöĺsšĽ˛Äž–‹Š(Æ[ůzpq&öŽHŁĂÚiˇ]XRĚY;œK_˝'ěQMI 8ˆĎ´Ú~=Zîŕĺć×'=Ő)mrăś]˝óÎ'Ăa1Ěu­ćJő@WF× ;ov¸š Šá[kŽçrâ3ćí)ŽDÓÔŁĎ÷ef¨_ČĐcE>$ž(%ĽďĎŐ6N'ČůÍádşM ź›;Ť}’Ú9&îoüÓŠKŔš÷d¸Ţue2řÉ âs’ęęܸ<ÁŞËNŘd•mÇĚH0>őă@ąĺÖd%0"ĽNú˛áz‚6ś°;ţvwřçÔő7ƒâĆiĽ˜aˇşřxíˇ>-‚ńÚľiÄtDnNF/RNKŠ?Ÿ|2Ę!Ÿyŕ^ؙ‡Q?Ü1ŐÚ65jů%ţ[z-I­Žű.Ă—KßКÏ$ɋóăŇŮuŸaÔoŤ>R^ŘIŕ`0*6ňன{ť(3˘ĂĹwŤz.„Bń­a˜îďr |›?„OÇ kýƒUwłË Ĺ&ę‘ý“&;ţefĽ•> endobj 1582 0 obj << /Length1 1390 /Length2 5891 /Length3 0 /Length 6846 /Filter /FlateDecode >> stream xڍtT”ďö.‚€ C "0”„twHˆ„0  13C HKJ*˘€t§t#Štç )ĽŇńăœó˙{׺wÍZß|{ďgďwďw?ĎÇÁ˘ŤĎ+g ˇ‚(Ăa(^> @AKKM ń‚$P”#䯛„Ă‚@Bá0‰˙P@@@(ŒO„Âŕ´ŕ0€şŤ#@@ đPB@Tâ˙ÂEÔ ĹP‡Ă H¸ł'jk‡ÂóŻW˜ ..úŕw:@Î ‚€‚A0€eqœ9ôá`(ĺů\’v(”ł?żťť;Č ÉGŘJs?¸CQv€Ç$áąü  r‚ü™Œ„``EţńëĂmPî €q8BÁ“á ł† ˜ĂújšgěXóŕŕďÝřţ]îoöŻBPŘďd wrÁ<Ą0[€ ÔĐQÖäCy @0ë_@#ŽÉš Ž + ŕwç €˛œ„đďxH0ęŒBň!ĄŽżFä˙UsËJ0k¸“†B’üęOŠ€€1×îÉ˙gł0¸;ĚëŻa…YŰüÂÚՙßuq…¨)ţ…`\$˙ńŮBP ˜¨˜0â€x€íř•7đt†ü ürc&đńr†;l0C@| 6̉䠎Ż˙ř§E" °†‚Q+ˆ-FňŸę7Ä揍Y>ę0b¸'ţúýűÍC/k8ĚŃó?đßűĺ×ŐSÓ4Pĺů3ńżcňňp€Ż 8€WPŠŠD1/>˙,Ł ‚ţmřŸ\5˜ “ń§]Ě=ýŤeˇż ŕúŤnŔ?‹iĂ1´…¸ţĂr3 ŒyüsýwĘ˙âżŞüżXţß )ť::ţsýŽ˙aÔŃó/ĂZWFZpŒ`˙ }ůŁZ-ˆ5ÔŐ鿣j(F r0[ ›y„ů€ÂüP¤2Ôb­ Eíţpćßđ—ÖĄ0ˆ. ýőqÁd˙Ă ě€ů€ 1Äü!1jCý^ă/‚ŃÓ?űP‚áÖż„'(ňB @ž$˜Őc,€—FĄÖßÔđóÁŕ(L 3łŔŽ ůľf1ż3f7pë_~’Ôť"˜ĂSsđżěß ‡@< `’é 8řQ}EPăI™ƒ;ďڐ$ţ^҉ą ďPö3"T—ŇˆĹrœ~zڌFňt§€ň3űmy—“Œ…Éď^čJć*Oá#^fĺ [fŤ˜‰ë#ěąxŻcFÖ Š:ŹŹ' ňL]Xşw#nśËXŰvésPx߫蘊wç¤ÎSUnÔnn-ËKÓ¤e7ÚYyŒŞˇę5XůAw/sĹ):p5Ň,,Q;…UC˛ů”$νôćRO_ďeçÝśuˇ€ľ}ö—(JĽG˝ŒŠÂ„ĽFsďČ/2?¸m§PyYŠÜ’Ýśî*\äN8ŠĐ>´Cn›łÜwę́Ľë$ÚÉŃT‰{‘’Ő';[ö=Öl˘(ś@í!0Ô"ăĺçQJ?`uú2§/X^HC  ÝŐ˘…#fý"˝úż.oţ ĆywU\ •–Ô@źź4äeڟvAľSe|ľ[)\ç°ý™„ŰŔäČĘ'F3wbžqd¤N¨F}őÖ ‰5,đ‹(É#ĽN­Ul¤ű`vk,mÂьúHś0Zź€ÝťŠ_0+>ŤĘŹüNŠ÷Ńů–@PŻÖف'ooü­RWHŇͲhŠ˜EČ'Bł yߘĐkČČ’œëś˛jçéýşrąŠ’§ŻĐń‘ĆŐłžůĄĽ8Láo–äŠ6e7:ö¨Š=)îÖh“ÉČrh™Ô§'§Ó0, ˜ó7’Í”řaőqúŞÝśQ.ĺ:Ś›2*ÎíH°—şŽ%łAď yÚoďEţVd+xÜÇEĺG Ѝ¸žŘIŁveŢ ň„ŽlyEŞšŘiűąs蒥ƍłš8D'änLv>ř9¨ťŤQPFF}îĺB×ňÚIĐ =­ó°Ž`‡ŢbŃ[‚ÇĎ×UÔ|“ˆÔ(?LJ”˛P=TžęĆÜtM Ŕ)őÓ0Ły ‘y7{­°Küjéënśž˘ŔyzC•‰Pĺ™ĂfEÓg NC ˇ)úřÖvFϕ‡Q‹Íž݅ďą[Ľšĺ č¨=M°—ŚÝë ԛN­ýč9ÚvyÖŽ"ŢV´Î`̖ý#Ä,Z&š§¤8E‹ąčŕ…á}Ó冷QOž› -çóV˘E\ŰŠÇŻę˝ČŽX÷’{Ž•ž8ÍŞű7›ŢMƒŠĽSˇgíőžtÍÇĄd ›ä(ĺą5†Ôđűë&twmáxÍ ˛°ÎXß'+đJÉŁC ëdîÔßÜYç;ąĆšm@Fň¸Í!7 w÷ĘyőÄ)Fy~ى‚˝ ďd!ř˝$gdÜ–NZäÁXPéW܏؞B•ŞşLơœSăyť:šŽDvjřü‚űq†Őcœ/I/}”D›÷`wÖącąç’™$ôŕ;=ŹX7ăŒâˇĎ\]›8“Č%Aąt|ă á—>;Ń5m Qűçéă??-z’Ňă+}äRę*ź^pzmxÖĚłœÓŇĆ!âěxEÄVÝmĘ2ӊR§ŇÖ5hÜňăZŞŘĎ`Éć—]Óęď0×îćĺC8ŕBďXK“żœw§­„äSP=ŃÍŁ’6ĘBÍR–çOƒLV’Y°EnkD ę¨ŘëízŔů>şăšrLIsđT–KXęëąů i|OžXI•z€&lC¸ňÚˇĄgęXěœOʂěĚgĆ'[CíęCŚs& w›Š?aŻľI“ܧ üÖď WßEMĺ:ű§ţ&‹›đ4˝‘Ş9R#;Ć~ĂWşI8aFéćď öüJ×*Öíץsĺn§–cijË?UKűCžJnŽë¸;Ç.§˝âĘŃ­ű ×Ţńwă‰gaˇË•Yş„w.Ź$¨†{enj‰ű+„–ÉŁgnMȖ ˇ7Ć6\*=*¸A˜Íkç•yâ_×cƒKӟG|öÂú#pú*GpiKÚ/pűIB6Ëž&őž‡ą…­gĆ7q1Ÿœ ž•‘Ě—Ç~¸z\Á”| ;âœ$.™Äľ2TÄÓX›śélŚ+Tkű6K ʉËŔظI…#üPŠ7m\âŰô<Ťx.|~I "Šyčů` ŰĎź8…ă éčś+G9Ţ,KN)ç1’‚…&DŒf }ţÂ~p1†ýî.Ĺƒçź’1ˆöńĹBíÎ =ežlŰ÷lmąť–oώŽ^NźxnőÝž <:.‘ŕëˆz”/Ą– ô§ŰňV Ržąâľôö)îŒY0•çüřĺÓýş„Z‘*•ťËŻ”íŞy%ý̈ťëŔÂďMüšý3ƒ§lW+*)F Ţë…c=†V™f=¨[0ö¨ľuo)c|qe,X5.¸ĎϞL+ĎKAú˜WϖöxwśĂm—8 Ä5ôÁţ s7.Ńq,ŕZűŐ¸Č 4Ź@OUlťúă„!c˛Šô'aIđąěÇۂâ8POe’D*3%­A;ÁśÖůˇgžœiMŢşGI5''xҌxô#ĎýŁŕĎČ}Ç-ó^ç?dQ#ëâ%x,x:îÄdJ,{Ą4¤ ŽĆV#Jˆű9-uÍg$h7ˇËÛ,l°YŤ÷—ąˆ’<Ún$gń@óřWd|˘ćĺ–ůW-\łP–:; b:8Wú­~ńœycOßLŢm›‘­šAúƒ™Éߢ­=>*“˝'![0@OSş@yę˘ńęŒLżg“J^u˜BżtŽç|P_=BőM6ĆĄč:FO{%sýQ†…1ÔäýéąÝ‹1ŮU‰3׃ŻÔC]†˘%řńyTăR~SŕľËŠ‹|¸Ř¨jŇÓEwߜxĐAú"Š™ÝFĺĄÁN˜ÖXÜJUÂČ,)1•sŚ9 ÷ńâöŹK( c™dBí‘ĘşMo[ťU÷ &6,?ŰPqákhpŮnăuĆWoŚ6řŽ’ď2Żm0‹z°‹¸0ˆE’t—(8ÚM‰fîĂK7ěŚ5ós­ˆY㨠|{Ăáľ‘Ź„P+ŽĂÚÚ´ýĂƂNĽuř š&՗ˇvŃ U˛śííi–2ăÓÇ7Ż×ßqd{sˆ/¤^ĺ”W—ă 䞲OÜ,jgaLX~)œ2e$`yL싁;oĹX/*ĹŚnZńT,°ňöŠŁĄ_˜"F[íŞŽ|8W&4D¤IňžŐaę3€SÚzŻąĄ.4Ínr2Çc‚x'ňĚoٝ¿Ür<ô:qľÉë+ă.h$ťŕ8*†ÄT7ŠŘœ|+ŃR<_ ˛00¸oąÄŽĎ?*-ÎzÄvSmŇ˝ČƒĽ1^ŕtS˛tw"ßV?ôHíőÎÍ_ϔŕ˜s _ &?ŁYđŇS¨ľLŻô Öë9ڇÍ;ľR™P)39Ÿ JH&ŽĽíŐůăÄl7_y_Ó=tľČK -Ȓ,•u~kźěp‹S×óĄh˙ęƒRWk5ĂáÉÜçę!)÷FťŹÂměĐç_p—ĘŠä†m’‰TýľHăX]˜—źo˘Q(`áŝíl?éčIě~“ H/°ÇLŠY°Ôń— á0öźÍ“OĚöCŤ<ĂŐv•ŞĐëx”RŠďđä"AF´RSÉé#Š€Zâň`íŞýœ8ÔH”šHíŸíŔ=~ĄtQűŐď§băëš!9““üÜBëĺ]­çţâÖäí ď EĚ5É'm`őęd|Ă[&Gč”×ňôn4lăĹĘ|¤Ţ ¸ ĄDGŠšŇ•ď ”ćS}Ľĺ}öÎ kI˘Ć­W ß­ęŚě~$Č"!őđňNWƅ1ë[5˝ŻŰă Q^SjĽ›_kdóŸŃXňŻĘĄ5ÔŐ˛_ôĘŔ}ŕ¸dÉ Dý4ÚÉM/jÖ˛v씮”bŢěblżđÇsy`/ËÁŠhWTüóŕ~W_~°0o"ËčĽKč㳎qxŔ‰ě3ŠC—h5Ż_k_ŐđÓëü+ĄîÉćÁčĹsjöWЂ×Č|~^FkdÓžnB˝Üx\Ű|mö çä˝gßoĺWíLHŽf(Qáô!XŰŢÝÍ2řrÖqjZŘůAß§réŸMŐß~91"žžXZ)"ťł'쌜’(Ir.ňĄP9 ň’І.‰6M?%•ŕG"[!ĎVɕĄ˛Ň’“HNćow oR_@‘7|xĹj(AٔyZbEă ůĎ._:tĎŻc/œöëńr+/Şm÷ňœäťí6’)Ä[rSţhwXWKôŮr鞘Ů*’ĄwÍrľa˜Ňƛý(ĎŃŠ„U‘SŁYƟ‰Rág0ŤƒĆPÁƒŻe~꿀JžGŸtb×7˛ęŞóÄ ËžXĹž1áäy÷ôŚć&pMOÔŒľ6¨txăÉ„×tôˇÍś\ýŽŻČĽý$’ÂóÚi48”N‰ ójťa7gUR‹§Ő‡Ţ˜˘7űqÇOŢŢďƒ<ˎü×Ú,ÓíÄfŢÂ(Ţ÷’rôc¸`\ŁĄţ›6|iÂ8­6`šŰ>Őr%XœU0$r|ů ş]JŐeĄÍq–;ňMÉú6%ďŽëĺړ ŻäĘeŻ´$ 5ďř'ŕ“R~%ägůxiÇŘĹTć¨4đbńŢ´?ĎaGůƒÓ\á‰Dâ€GĘpV’¸Č‰@Đ÷đݧ—ÖŢx°ÂÚÍĽç´ď^O"¨řH$—éžg@ŠK3˛aO}DůăŘLĆÄëď=„ť|OAĚÇű/5ŃĂ*wv×?JT…o›Dç~2Y"Ľ–žňŐ N{Ps7˜ě>šĚšÚÓńJPÖˇ7Ӊt-BĂ`3‡/NA­ĽČýv⁧9Ő=Œ?{ţůŔKPşe|sL…Ŕź3ŮÄrwz(Š”ú\ ďŔ>ż'ä˖ďƒáŽü’O+JÜ Ň6 ÷„.űĽ'v䰐*ëԪ͓Koݸ=˘éürevy—ŰŐŇßđÉ>.$|N2ˆËr!"žb×~Jś˛ŞG‚ŸĚńJútČcD]0Č@łzţ°´ <7š+†SŸ˙žOúXăź-łŰ´ÓŠůëĂbuzĺéĄ[ŞŸM•ĺ]ĆIá&$O.NŃGQem㸝b>ÍLé7JVŻ%kňŻ‹qŐÚËTŃ.¨p|óČךJ4šótfIÖěý-‰i|ŽůúЛô…Ě úJŘ?Ó'ƒ€’`Uœě˜+Š5¸ÜĽ2(öĄď#O’ąqťe—ÍĽź9ię7Ńȑäřœ…Ž&CŢNÓŔĂ}ŸQČ;c•j.g"śVťŁÎjöôź-e˙UNšľoůk@ę] o<ț‘ÁćŔšY㼏ě-x’Éž‘zBh0[¤ť¤XA€Ö7ŽND_§˝ŠŁüBv5> ý|š“‚{1ËH÷Ö$Ý)Śł”ˇQţřKœ– ßÍkőZ2Řâuőőëí6ƒ0ÜŠŇ˝§¨#Â?SĚĆh-ëÎÂ`ąKŸYź‚öÂÖŃTQňć@…݃–zţŒ>/ˇšÁTÉeŹ´ů J6JůÇćušUĽęëR_Ň])ŇŽb;ĂšCםľ[ÜGšb†˛Ëă…ÜŠ”ÓŤ3ý]nGo9 T<Ťxrzç.Ř=o0ş?Œë֋ -qŚnߌ€.>Ÿ¤w4hĘUń˘ÇAĹFŹęšž;šÇ†Ââňá KŸY§jňYóf5oŻąŽ"öAČ÷úš™VΟ˛%°–öŔ/FU%W$\7Fžs/W{œÝsܨ˜ż/ýi<ĄBFk›řÝëú†ůÉÚ)qťbŕŁHźřćş,Ÿt)űGFŐc…P˘űŽRˆË¨lN6J&ĐÓ¤;4@ĂĄë\ČJěsŸ;ŽV˘(ű&jľkIz“YŮŃŠ*<\Qsx §ëŤœ+Źţ$FăV~ ™˛feDÜ=ě¸a˝„ <úŇ9ÍĹĐëƎŮDćĆĆVś{Ť?îœѧ29đućń÷¤ńľ€jŠj˝'̓]šQuűéäjLő(:=|îÍ(rjEŁ řEéT){Qrřč~QTřCݡVá ŠšÝ?î Ď91˜&ČîčŹß9wŸŁv/YlizżWÄ؇&‰ŤŞn˝ľÂCxĺ†î€ş‰‰ˆzĽsi5H´¸Â.ďč-|čŁüü.&Z|ŔĚĚČş?ő<ľŕęVőp>Ż$p›Ě˖çŃ&N~ßřĐeeŤâđ/ť­Ö‡­5_Ď˜›(ŽŃß6Štź%Ӝţôľď ťWUzűŰMżqę:wŹĽ4qžŻňFőfÝ_p"9—ƒŇąďRV‡hż5–/霃–´žIš‰9UMu1ë°}ĚęËJOTó^ˆ“#LOši KiPÓĐÜeÄÖxëńᑠäĊ'ůÂ3:Ӟ§fřőŘjĄË­›^šL!ŏ'÷×kwˆŘ˝‚6ŰßdŢ-‘óe&ß­DjŰÁ´iäUŻłŽ¨Růź­đ$R}.ŽCŮĎâŚ*V™ą&Î#Âťžŕ´'á˛Ďť<šzÄŔđé4—-`­QŻ5™Oʑú$Şm};“YíV„côöíCöŠ–*+rd]F%Š5).܀jwŘ{ĄĘ3ŇŃ+ß´§ď°úPěŽMëŇůdňÖ˙Źěěí4Ôq)xyóâÓ~o ďlÇűĎ}ť{í‹)ӔŰ‘?-Śń>jîę?Nbű”őZ2 &(3ŒŹç‚Ÿđz€+G˛)Q•˛Df󺈓٧PM?ű=âépYńŁvËGW~ăÎňDblńoÉeŤ(QâgĐÁ"CVVɖ ěK0]¤Źk+śíMň”|*_i)Úf4ţlšá˘jPłF6ä–Zń˛ Od9ŤbB]ŸČb[őfxާü2ž3JëtI3&c†ükIq.‹é=ÚoˇôÇĂ“ČÁ‘t3z\–7Ť~0ř‡-ŁśsŹü§Ţ˜ŠiBí†üőÝfęńp.ťżÉLM˝ŔˇÄaß+i}4<ô˝HYżu/LŽaŒůud`3U׎%ůp˙ý!*Ÿ‚Ě­g5_ů[Œfť9äx„+rßʙŽîp+čÉŚ*ęN:Ý2…î÷OÝż014˙š:Aě endstream endobj 1583 0 obj << /Type /FontDescriptor /FontName /PQILTH+CMMI9 /Flags 4 /FontBBox [-29 -250 1075 750] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle -14 /StemV 74 /XHeight 431 /CharSet (/period) /FontFile 1582 0 R >> endobj 1584 0 obj << /Length1 2777 /Length2 24125 /Length3 0 /Length 25673 /Filter /FlateDecode >> stream xڌˇP\Y´.Œwwh‚ťînÁ§q— ÁÝÝ NHp'¸wwÁ!¸źÎĚÜIćţŐ{EUÓßÚKžeűœŚ&WVc5ł7Jڃ\˜Ř˜Yůâ ŞlŹVVfVVvDjju+[ŕ?bDjM “ł•=ˆ˙q' ą X&aěÖS°d]ml6n~6~VV;++ß˙(Ú;ń$ŒÝŹĚ ĚY{Đ‘ZÜŢÁÓÉĘÂŇćžčLél||<Œ™Dí€NVŚĆ €‚ą‹%ĐŃÔŘ fojtńü :AK~wwwfc;gf{' !zF€ť•‹%@č trš~% P4śţ3"5@ÝŇĘůošš˝š‹ťąŘZ™AÎ` WĐ P“‘(9A+Ë˙­Ŕř§66fśÝýcýˑč/ccSS{;c§Č`ne (IĘ3ťx¸0ŒAfżmíÁöĆnĆVśĆ&`…ż˜$EUĆŕ˙IĎŮÔÉĘÁřŮŮĘöWŠ,żÜ€Ťüd&nogš8#ţâ'aĺ4—Ý“ĺďÎڀěÝAŢ˙s+™ůŻ$Ě\X4@VŽŽ@‰TŔ"Äß2   €‹•••‡t=L-Y~šW÷tţuČöK ÎŔ×ŰÁŢ`Nčke˙Côv6v\œ\žŢü!˛ąĚŹL]&@ +âoď`1Đüo nž“•@<{lÖ_˙~{/3{­çoőżúË".Ľ"ŤĄĹđwĆ˙ž‰‰Ů{ź™8YLě\Źś_CĆţâű_7ĘĆV˙ĐřĂVdnŕű›-¸L˙ĂŘퟠűg9č˙őĽhžZ €î÷ëłrąš‚?ŘţŸGý/“˙ż ˙ĺĺ˙6ä˙›¤Ť­í_Çt˙ŽíŹl=˙Q­Ť xěÁkúߪZŔż—Vhfĺj÷żOe\ŒÁ‹ ˛°ýˇŒVΒV@3e+SËż§ĺošĆŻ-łľ•흭~]+&pkţ×xľLmŔW‡3x$˙:‚7çż!߂LíÍ~­;7ŔŘÉÉŘÜd0âxłwŃ čń×X˜Aö.`8=_€š˝⯎rsXD‰ţFÜąßˆ0Ýßlgü/âs1vOš•łÍo°3“ßLŢÄÉŘÔ~4™ťü–sü+˙{˝ţ=G7ýq™ÚۂGëߘœż$vvżYüš9ł? 8$đˇpŢŔ˙D`cťÚ™;[ţ!óOćŸ2î_~]Áűü?Ž_JŚśĆvD×Ŕü7ۘ˙9AŤ?€ńoČĹń şý&ËöKđ;×/u{W§?˘,ţ€`˙ż s‚néé` ýĄ–ýŸ\ ë? ¸6@pľm˙€ŕVü‘)řFfůí™ l ď÷ďâ€#\íL~]Ź0řUűßÁ>í˙°bűU‡ßÇŕŕ§9č?ĂÂÉöôżŁÂ NĆ<|ö4˙Wˇđr:˙u9ý;a쿄ö.@3Ű˙„áŕü}𿆒űŸ“˙ęóý#ýŻ2ŰŻŽ˙Ń36paœ× lä ´łúďTsýŇşýŃ9.°gđóóßdÁővśýĎ̲Yý ~0ą¸X:˙}p1]Üí˙0űpý‚Űíö3s˙cTÁÖ@°{Ď? ¸ˆ^żÉ=yţőŸËÝÔŐ Ü7—żżŕýúü×Ëč4E\œł7śţÜvűI”ȝiwěÍ4őŽV=“÷˘Sťë=*\2}MVŕşÓľhňĐWô•íˇt?E–Čžź4×Á…ś$Ş´>ř<ĆŤNîś".LŕöýýŇG‚@̤.˛çóäčŁ`Ý Ů)KçčʋŞ\€uëŢ+ĺńĽŻ|yôĂÜŽĘ^ ˇŇcůS´F”~ŔÇę|“ěY| X&řטgh3?ݧ1sÇ_Čdă}˘9Š˝u7Řcîf˝V+Őٝť¨tńI bŽNŇx‹¤ČâÍ{—Żô/x4 “ĺ˘0ŚŽ0Ą3°gÖXŠF‚{jÝF;Řvň’Á´DýX;‰ľeŘ†NJ85­†‘X.ľ6@’ƒsąŐśkÍnsëTâ%žŠ//€ËţMÝŢuŽŤCĂýL7R[n‡‡ˇť}ľ> ÷ [¸ł˝~kŠą˛ĚŸI’ Sîň ŞK (ƒÎ¸ä–Ěűc"čx.vOČśUÄĘŞË Ó9J|•çsă[UŚŘą1ƒ1oëŽů.č%ˆ[ńŤ3ő쏈Ŕ’ă­QÖşü̡Ýáůką´*Ÿő3Aĺ,gU¸Ěeždň [\ çTŜ2R=ťóŐCúžÖw|…Ě'šU­q\…*ä;G‘LßęłBzůŽÍśŽ+*Ä pžŰkޝUš‡‰ ĹlŞóç‡w¨úçv9+ĽK‰FB•ÜlĎö ˜PŤ‹š‘Ű5ƢiŠżšßţÖUňčÎX.#AM[ź¨Đ'÷]0Ôgń݂DqÁ'ÜđŸţěŸŰ•né łĐWc¨łö–Ą) ۇ5ϟ ňÔÔo (˝6 zć§žm“LnSyŰVéäěmpEĽCŰĆӐĎoűg\ŽżĄ‹Šx6hZÓp­["ŽÍœéŽ ŽžŁ„kç`Ĺ;’•Ńf­É3`żĚ%ćXoye‹Ü“Ĺ6˝ŠvÖ˙ź†ýS0¤â~—$Őş„p˜Ć!ÂÄŢ#wrTž h ‚(#‚`ÇŞ†z.)‡|~QžŻV/'ăjťř==y”yˆv źéF$<Äśŕ,-öŕçؔsU,eގůäÁLüľ´Ď˘¨˛h5Ě0‹˝ŸĹeÇ d]Ę!hzźy`ă¸k)4'z&ş~ĚÎIĎ%^F˛” ŁJÎ[¸SHr%ĹşŸŤ…Qůԟ؍ŽíĽ"!Mů5f“˛ą–ůŔ§żś~ˇ;­kź[ČZ˛<[Ë ^Żúî__˙éSŚđ‘đ%OĘ\$ĂŃ<˝äŽK^eANśY’Ë7.ăˇŇKh(ÜéÍMžNrŽlß924Ä!`Ź2pë¤]Ş>ONű^{â“Î=ű™’RëŻ;žú롴ěq*qş‘ëeŢČ´|:ýRóˆÓżgIČşNRqĄ {§ŤĂZ9ëćÍ˝ŽŸ4§Ű€rĘuĘ ŕ xs”­>Ľ#Çź"‡8Dß͈'5,çm&Ž+&•ÓŽHJâšL‡!GűĄ‡]‰uZ3ľš[F™ŠĘöáű}eS"ކ^ţࡥČŰBxšŃyvj‹$“ŻĐŮQ‚tFW{?…Jö^|Ż5ׄôźĐî×­ŻKPúž˘TLžđuŽ•Ž ÷Ę%ášŇ㏌ßlęŸYäşTŃ—mnj÷^=€`Ő¸ˇ'îľQĺ™)ę‹7e-)]ύ‹ką{đ:’Ë›MUoŮ˙đŰaÓd‰{#R{uLΚЭ“oďuGu|7q3ŕOÝ[Ő99„ăžšśÉţΞźgPmř$,c9‚ćz/fw" ‹Ç_φ żb_6čÉ}Řľ´ ‘D) ƗqŠ]¸Ó”1ý˜ţT“#ĺu[Ęwˆ˙f6a‡nôŠMćŃRńžnÎ{G €šĆ-ďf:k‡cU_ŇE3HĄpth×+Ҩ5űĄ ż¨Ęnńšu1 ćő˝QƸŢüÄőDóŸ=ŮśíÔĘoŮóůI5EéŐÄäYöËqO¸°ĘĹsD ×o˛mŞ˝Gşč([´a@’° đ‘iÁźŢŞ ö Ý˝ęxt;†ZgP&˘Ďďĺ|ě ąćŚSľ0֟‰ăŰQ­ęAŰUž´xGIž‡EŔ´-żŤ ř*+T |ľ )Ť%F읯I÷jEmpي€1˙4`íăŠ*&nnq{Ťdôtyťr6óAťüŤIŰW%ř†zcښax—W*y5(ęĘ/?݂ňîĂŒ ĎK„ANď-ď›]qĎィŒl˝ áo€*7sq†"ćxÜ„ŇëĘĆn“^ßp ?ĺ~Ăî×­`#}]ž3YŤŔ0`âŕ˙AŔ{ľ|! J…÷@SS`!żí[Ř4* fľłRΆc/oĹiĐQχ‹Ü7úo6D($7îĺ$oŐóMŇâ;4blél-Şťł—LŚŞ˘WɛĘgSfGô7ŸîŒ9UŘđ>ú*řś5‹›>Žœ lŽ œÍb2A¨^ńÝđpU…űEüsÄň9^ďb0Îʝ"Š ʃÜ%:"¤xř¨d䭞iE,ˆ6AśÜžĄ˛ą’Jő‚rť?”ż)ňŠâť}H|ż6e[@ł_Ťł;_Gť8Ąľ4ąDÓUŔ x&ŔÉ`ąB°ZœrE0É!ü*ŽČ;Đë%*]<›Ë‰čÉ|Ą—çŃźľęÂ&ęZUžě :ÎŹÇY¨śŔnâžÄ` p)+:Qâ[KŒ~^EęŁH''őŰŠ`ŕqĐ/r÷ ŔÔْB4Xĺz[ýmĺ “8×pĽ9EŞţfóěť?Š(˛m#Öä ›Ń Ż+óĽ+ĂÉö"ĹýĽŔă{ŻĄşIjDű֚ő<čAÖ4ç@ŒšAL-6Iń“™ƒÔu€Ĺł]|t˝‡ŚçĎú%ŒÉlŠw”^~řŠÜ.şQ˛I>ħ_/ô•2;‰ń…SယtÄŤÄŮî{]ĘÍD(oJy!&lCg"ĺ>AćM vÎ$ÚHŢÓÁ"-D)^F”@ ll›=W~}8†L¨B\Ý!Ř_’ŸźÝ‡ŒUíÜUÂ'X/‹"ţÖ(Dó{ĺFűP/5ŽJâ˜dą˝r{ďÖ$FĐ{Şň¸vŠIŽśežyž#ÝhgžPHZŁí*R”#§%­;~ŤâŁAçéŸId"°ćAČY$ZŤ!4ěœî˜eś^H{T3ěZ§XŸÝWCú”řL^ w)”Jrą†żiőź–Ä|ˇĘRbäYĽR‹6”¤Ż’ü•HňuůŠ•:îyô"ŕṴ́PÁ(¨čƒľúĹ9žŘxŐôš#=§âĚÇAŸ}XÇ:Ž@ßśÚbäâțPĺű+Ä1IHˇG—ĎQgÓrA]łhŇQ´Ÿë… uUDĆĐd7\¨ w^R˛şôJéyzi:ó,Ç@ŮČľßuhg–ż6¨÷œÓj;˝ŸYOg‚’Ąeĺóq‘ŕéRD?ďçLd VŐ+’xËIÖŻ/ŸŘdšŹ}úáÉמƒ_6.Ňȇlîó~ ĂtŰ:•__iŮ+ŕLźbKŁzĺd'úr✌ýľ˙ň¤ťý:˝őMŮͰóĎ3űLlďxĎ9$xrqq˛HoÍ~™uź÷ĚC˝) ćc^žĽnAd›†ŸĹźŞ‡Cs?\ą ťÍ´ÁĂB^śýœíц4.$ç%˜-˛CLYšp_$‡C„żĺٕDĐńT{çw’ •^ugk/6÷˝2,%ۍœőî 1B2)yuýţ¤ěíşą^X ů­˛§żtHŽĎ!œÖcŔ˛é6ş‡Ř×âĺăŢ팴>Ĺt…ě-[ĘXúą)—â-_šƒ;lŤŘÓe˝3 ôIDƒÝU™Ž #Ş‹^őďˇD)瞌~2U*žwÜŘ4a÷vžŐôVőnCß­ż^k•FĘ÷ŞŠ¨ŠŰvţđřb˜7Ż“Í˙™KácÍŤő˝“eěÓ8ʘÖ*´z˘÷Ľ,ÖE!}‹ůäžkFI'?$h´ˆýËwćT´›Š`Ľ×?şČUľ!źœe^Ô!>YáT8Ľ ^VžÂŁt(=nťˆ*Â0ÉŁ€R"S…a ×p C–-°ęýrpűc˘H?M—ʉ…Žq{şWČjâ›…’l;Uâ?VźŸŚďúА}W_|Á-§F@‹lĐü“Çĺ•l­ľČ!śGŗ ˇtŹRĂc-8Ë*ŽP1eI6ę´Íg9č9‚qŽD …×[yqśDí^×7ÂTDÇřů^ÇŠâáČ /6q5†.âBeś?Rŕ”ű7$Ž Ů…Ľáŕd[şóéz*xŇŕĘ.‹ƒ"—¤Ö0‡žgyaÍ8B:ĽjCˇyş†Ó5ZᳯwżçŞ[0I>’˘“|tqG>)?Łł[:K G}`ZüśŚéˆô!óŘâ¨Ě;"5Xśĺĺt †%ꨞĘyËrŚÝ@?5§gOc.€‚˛ŽTŮě„)ߍhâwŻĘ&ńt p#CD¸üV×'éołâ…˛{‚‡$¤­C Сqœp=VR÷˜ż -MĚŐÔäŰ¤V/Ůö ФÔP î/e|şĆћOîHze54 l˘Bˆ¨IÓ¤žŔ´%œźş xą˛%‰őˇ5kË9ú.ŤDÉ==Űśůϧ°sLÉ =Î`RMĆžçÂ7YĚ}9ÖS2Œ” lSH•Ľ`TíӚ+8OÂ͐iki<ů>^×76éôÖG ůĎĚS[ —î8T’~úCfx×)púyěâ}ü–l“[>ęç€w+”ˆT‹pĺhË´â–Â\é‚ÁjřO$­Ç#ŸşĎEŤđł2Œ+ëü™°ÓEߛF|řnkŻY§@w ëŃř‘rŮh~¤ăm˝lÄác ĺFRmÔB+c›÷ô~Ł–|ˇî1˙ç´ň×á#ď¤ء5i§oĆŒ ,(Ů@e7ždn;ÜŢ#WńşzŽP9]¤Ź^&ť"šűš:ö0pu{ú‘?­ž›Íž'şí:BŐ`Ź‚ěpɣ߳◾ČëP é]ŚŤ6*|'‘Ôěxvœ€ĹŞt=Řče’âŰ<ďő Ę É”ÖŐ§ŽŐ8v[č‚ E™đÚ6Ŕß‹ö¤öWTßjjŕxƒ_­ýcC¸Í[6á—iš#ř†Äj{^Zd%.Ŕ|<čÉŚI•ůGćĎ'7Z˙;fLÚojŰ_%ZGm=Éđyq u~ΉŠęłű^oĐP#ĺĘe(• w[żČVň€ćÂ5ƒôź=şu†¸Á^ËV 3|ňu€eŘ3/ˇŕł¤"š/íƒ|'rŞpg´`0Ő,%w-ŔU[ä>đŁőՎŒ“ăŠh)‡šhຆ•kĽ˙×՝ž‹öÉÓŁ)L'ôď$?ŻůcŁ—ĚHáT‹ĄW‰˘.Č?˜ĘăąéˇZŒË‹†Z,ˇĆůôf>şžŔŤíăóÉ%côŞË•kSí¸[ %6(émAyD9zž’ĄKyiłFç’˙X.ÓeZďëcIÚEď%ą…Ľ1ţ5νU'šĄýŠR—ětżwź¨/‹­ó˘Ţöý"°‹hŇČőVŠĐçUĺÎÜJŘA]FżÁ7Ń KŽç䃑ńY>fÉ J„^ÍXşŃTÇčۜ¯î„Ý0GƤDČů^{VňĆÁx˜žÖßö‡D #v}űŢ{ íj5ŔŔĽď‚BcŇXAŻQ˝Qkl…uËź.#“‡1#…šöyÉ˜ä'i  O匄FuĽÔ_R NV;‡œË…[ÜFZű ôĂ_'ŕĚ=Š o–*š˜‡0,ˇuŹçŘS D/~Ô@h󚼴8´řfźçZ'™7™.؃Ľ}ďšÚT^9u˙ş jĐâú…SX›ýÝ×8ÎRéŒo™óÝŽň@űĎYiǗ~Č7Ĺ Ü$ďščĄx-ťŹĆƒÚľ¤CZO|sj˝ŒBB3ľ(z ‹ĚPąÖŮÜ š„ůćgŠbţ.ˇŰg5BuŒpĘeüjůÔÎą'ű™ă´×G7=wď%ńĚ4Ľäçöqq*Ľž‹6 XšĘëz^ ]CZFőĄUŢÝé’VzK”šˆ sÜ132sD„Źéľ,vÚ„^ć †^ü6ǚ˛ł>Š--Úhž“ŝ"ńúŐEĚńŸ Ň ’”}`"(ŚŰ䎧)ÇâŐóQ%oîő÷ Ÿn fĄIĄ‘Ňş|Uú˝(ŇŽ3Ü/*}Oi´Ů*ƒ&”M1d—djŁüĺÖ&ÇËÔM.˛ńp,BĂůJ/'Y$Nšk_ <Ţ}j†m˘ß:ÍíŽço›}Íe߁ގŸ?!)€Î¨HSJ‹eUĄ_Ť¨Ň-s!=óíj‚ŹKX˙XdAňo_ń NMť{•ľV°’žŐrCk6 ÓźYR˘Ń2v™yá‹:˝Ě$iČÝ÷‰)LWąé-΄8äUÍ ’R´* °ŢëëĚőG۔>bÂËńółÎ&—Q,ž¤ŸaŚGwt´FŽO$­vBý@h°”šĆ:ˇ ’>YzđţĘľĐ#˙ŚáԐĐl ßkV_Üéz} ďřS%Żţó!×É,sčŃސŸĘëĽĂôoăÂxŃ5ŠłîÝéŤĎ,°"Fpgř7ĚŹ)‹›kVpÂ,ᐊłÚœíQ˜šEĺ Ľxbˇ)Ş|T&BĄöĘďwş^Î>!ž…˝ňłujXĹüţćĺłvmżŠrœĆΝŠ!ą÷ž!ˆŸÓűbÖ¸ř(›Ľżň—´Šř×ôh ß˙ńÍvĥÚm˛?Stßé9§şk˛ú™`TÖí+Ł™$ÂE]Čx˛ćZ\\bÚcŚJpŢƚ Fˇ6?ńŤŔĽeaS†kęZ„cĹÖ15.žˇAÝ_ ŁËs(zćzłžX¨o[Ý10)Óꃇ]Śűüš ĺ[y{@•¸b€­HîTŐŁăU,XüĎ)U@ÔLFœČˆ%,Ŕ‘ÉÉíĽ?b{6ú‘%ÇIřú[€ÁüŞVąÚŽräˇjŃr)Ú ^Üޕ{ź/SŁoOŮ&¤•yşńjHuv´†˜>KažUˆŸ—1(ž•K… ńZPĽyoËoÚŇ`“tűűčѧ÷…”KŢf%î“Á$V÷V‡döđ|N‰ß4źA^#žÜjď.ß(nă„׍ÚTÔTŠUő>FÜ(Ů=i)q—3›őoVАďϧˆVăíË!U݈7 PťŹŒÎ…´˛ŔěŠ14iuŁč5aĺP~ یI‹QšLł"’ůIÝ!˝ˆ)'LĽ˜:%نÓuľcf{gŮ'ąŕ )Ţ(ÍĄÚÚEőßaEľÔçAAhč˅°Ęőy~ž~ŻsY §ädФŹŰ$­ Ű*Ÿ‹6<ɒmM ? I‰˘"–ś>-8;ПźF›^ęM!ŠTßąn*b2˛U‰RćŐę$p‹jLƒŇýňz´˝˝ž„=őÓ Vu˙ž¸ďŐä!QśnëóŐ˘V=;]`c€HT|Ű2ŞlăOĎšcgvÍŠ× @n´%ĺćú.şěŰÎŞ˜˜Ă™s´Đf>Jäp”dőńěÎєz}×´šy ěIăMö^"5 ¨FHß÷ŕ”ɏč(ńď^Çząs–™Ţ\ČsRł/KÖÂVüp\0Ú*ÝŕĄG­Ź0ěYDfÍ֙¸<]Đ jľ5oNŤYĺę8ÝĐ?8v9ńÓ|ƒ2ÜFłB[řŒ˝ő™C3ógN*rŰííŸéwőđ›íéžgú:roNo#°=Ş˝ˇjŸfntv_lçčpAŚ!œ9Ś:hâ‚˝ţJ)r}|9BŔc6’Ů,9YbséÁD§×ř|ź]t„ŕj@[Ł˝o­!Ä žĽQ´ď§d,j“^+ĘäqpŃsWMŻ­&ń‹Ľ2_•!˛ŻőčŸkş-­˙šM:dłÜxƒ9–XšłŐš˙éÝMł ŇK‘ůŔ7Zj—ÚeşřLQ{'xák>Q“+dâěŕ.§ůÓ)HVŚnŰ(Ó´ŕőş–Â7°…IÍ+éđě‹Q9îϢą¸'Ěh)Ź:ŮĘz—˛›enWr ćJáUˇoÇÝÍvˆXŒ\ÜMUT•Ř’šş:”óT÷Ť3§n[˛t|l˝hĚüu­['âúEŠöKŻF;‚B˛P^ůO*⊆KF&1lŘfťcŠ’Po'ه>l)OJlŹë'˘ČťâExlĐXŸchŠđxą)g\öb§)öôbđ g{ ţđE2Ž]Üéߥ×ůpŽ˙ótô+¤Ęv ß F}aІhěĚÎ-&ŁčNČoŕKAϲŚFL$GŹ'ŁLĆňa7;V˛Rž=<)N@LźnƒIlŢ\×N, Ź6›ŢűšťDQÓľ.îü ČepËwŸ{yÍŚ3ƒ„%Ůú¤r!… ]żFގ#ĺ"¤™ËĆźA ěW‰rS ŕăžđč*~ÄL 8oĘŔN˙’Œ ă8As ÷e‘ ¸Y˝Mj5‹ÜÜ"ő\oůMČŢf5€ ?8)Ěxfwáîś/$›ÄŃJubFä.Ďű üěO~zŠĺˢ^ÓŐr ž°4×´Ř&€°äežŻŽ˝…ŕăçB)Ľŕ)}ýŃÁR˙şZGç\˙[ýńősŚ Ę5-ű˜6$ËTn–§ßŁŮĽĹ 9łmT^‡É+/~ś%J÷G˝k“pŽb ŒĹ Ë­”U!Ä šĘ‰ě›˝ăä•;đĺo8Ög-„őThĎôax se$Î`cŤŕ@üó8văŃ`雧°ďÚ6…ĄŔšŤW˂6=ř§Z„)„WâűkH1W~wBŤÎŁys‚>•ŽěS5ź4< ›Ńl¨ÜŤ{H\ĄMŸëŘ~% ¤¤™“Fcą‚Żx<°íŢ n\™F鎝ĎëĘ%řŢĹ pÜM[=˜Ł€!jo˙˜D÷Ÿ$üöĐ;ŸŔd{Ä#Bď\щ/n`^mŸËńň¸ő2ÎŐá…)7.-źŐVvĎҲ–ŽŒ˘săM{ ť§ŤY‡g~Ţ˝Dgoý—öĄZ&y՟ygŰ!rt‰ąĚßĎŚĆż]íj„ŁŮ Ęň“vţhz/ýśxżT]  qýń›ô­Äv‚“Q ĹÔWöÓ+5˙ÜK)MŻODuuńE>V`‚?§97âšx‚ťezúÜźĂřM*M=> rp02Ţŕ⢆{Żę5u†ĘXîŚďwœ4¨ÄYŕ†ŃŢWĽ˜đ1Í"Ňşűt2 řîxŒÔ՝ŐyBAŘh—h; r;א.16˘bţ eö ř7Âŕ…JťDçé8ôwúƒęŢ ę…üđ‡cqa{'8­&™ŒÇHĎ4¤ŸˇoÄD1sŘş2ťŕ™ÍLíÝŻňÊěôŁsUC 5“űąýĹćŠ()čG. MޚN˘FqĚ]ö։m`cľžXżń˜îž[‘ś tűapk ?ĺ¸ńmĂÄm!őŠZĄłÜ9lœą]ůŔşÉ8ťČ÷Łę°nć3ŮťőOˇ˝ăwN铲aő+ʉT^ąJ úşÉş„‡lH"ŁzŐ´qRr\i|żZ°UL#rł‚ÜU¸Í/í?Ů*MŐĺś3EšőŠ—źs tARS9ßą(ŐŚźwăçŠ Ś!fâĄÝďXëhç*ŕˆZ˜í-âéb…;Ÿ?3-Mc ôç%÷Í˝e$GÍÉÄů™|n8?鄺ŕ&–*ČÝXîĐăb‚%ß[2 ?c¨ôűť‰ŕŕţŕź'"ϐëυŢi”÷-Řnƒ[“´…Ž(|xH 튞_VŮŇĆ;p†˜żi^4éޖĹáYť+›ZP B̍ŰXCu_T>LŚ _łźŢž;Ęŕž–űhT•_”„˜8őEďó=qźwşnÚnUçPí˜G†)˝Řź‰4IăŠËní ´4âÎĂ"´ś¨›“v›—ľŰĄv[Ŕ żlń(äM˝ţzĂÖW9Y ŠŁ`ů9ĎŽ\RϘ„ŤCRŘâ+ ř˛śŰŠw†[ŻHŹťŻWłšÁ Ýč0›}čř&š(f-ŽJŘMÉŞ!ë+ÝǜS|œşÂZMѡäyŇąů Ačăć2"÷O{K$yţ’ŁÄ_Ź žÚésŘmYł8¤Ż˛üc“ď°ĹâQšCa˜Ú =g†žGŹOk{Z+Ňęńwa9váĎÁůśäBú‘ág7›8ƒÖT뛯Pčś źŇ: e‘ř~DPݚ4)˛ĆîĄKGDłđwĐÖČ1jŕćp–B—ˆuŘѢߚ™™.Üŕ°âéśBÚňďÂŚő ń”~l2D§‰ĄłĚUˇŒ™ÝŁ%‡7fŃdÚť^ Ö‘Ś]x,XNâ>JNĐF‹I|uvX˛l‚ů>Zƒ‚üŚb89oGTd~‰+ř5čbÁ 69šáMęh/ΞIěŞř› K[Ł2ŰńĽăçšÄ‡âh€i ľă8‡yDl[†b:˛$ăńŞb5ŠAśąţřᎥuÜ죝t Ů0‚é4ž‰Q”9{ÇłP§Üš×xţŠXŚbˇČCÍyňúăŸ[Qučő1gĐfaň9ԙH]pˇh@•‹őń|Y„ł]4__ÓCČ.(,Ó}ęMATm<‚^źežřAHěҹ䝠ďŰî˙đN&™ę“GhšŠŁ×*ŮĂ+IyVB>rV~Š_*ZuIŽžíČŃ_~q ; HZ˘dÜĚëďaTâŠppĂęyŁ?ŃóůfëÍĽ)ľřˇŞĹ÷Äş ąŽ˝˘"KbÎWˆčž j°)őŁ}9~}}cüc:ubź•<°˘ęÉŚzë7i MdšZR/&=ۜ5APˆšá\ó~ZźŻ4ľX,*ő‘ť™„gíAÚ4[n› ’›tĚ="mĆřÍôR§#:ŠŞßF>uĆÝI˝az*1÷y’Ą¨Žĺ´Y 0XL Ô¨[ň #6‰dž…ĽLßaň;YĄhOWטŚŃ~C ÷Zl¨á‰Ń ´4ďzľ/ęÝ~ÚC€ÄőÇiÂ÷)éľY̕d3ᤧO%XăÍRż7m™7 }“LDĐČÄąÍěś.  ă#t žíŠŚĄíA.˜ vúîŐ&jœN/Ţę&Ҏ ™U$Ęďv§$j$›s9†řávoƒ¸oA_ź-Ɯn; žXjŠ:ˆ˛=i“Ýň…†x'+Ç;Ü$o‰‡zII"óŽ…éÉbô˛öż^ľU0ÍžÚó荤ŤS2€]wsĐb}|˝sK1Q—§°Î9"“#Î9ˇÜ€Ź›lĄŸ™šˆq´6š¤Í‡ˇ—<\Ňs‰CŮbÚ$řóęKßŔ[fnîn| Π>/éÜ<°ŽOÄjŽż0žEP2ľ™—űÄHډyÝÎ('ô9§2“%0'$LČÝCKn?!͉Öpž?o=žN—sËŰüƒ´Ŕƒ‰Âvä&lţHˇFň4™=J˙şŒ‚ĄBŇú˘Ŕ‰Óٜ:%ľxů˝×€ŸĘćNß÷ϔAE^yfŚŽwűŻĚ6ToN ç  $)˛bá= BxŇyżkžŃŤňÄîgŁżęFŽiŒÂ ĽÜD&ú¸{­‘7,bC ś?-`ČŐDCy?7ÚTT‚˜kĆ˙É˙şm“>~šXŕ8ae1<š`¤ęť:Ţôž9™|“keb‡Ëž§°>Ěë]iZÇľ5u†ŢůŢůzřpAÍaYo˜[oߋUŠe)œpřŽbř¸¨jś[<ň’—dŰ7Ž´üÍ&<NA‚nľž×+[Ř:1› ó['SM3vošUĄíd9éT:ůŚćQqaeWEgÉřC%rţćí˜vą)ôaoEŽŻ…běҕ9ęĽ2Oľž,§L›sVף=6´S4ä5â›ÇČřîm2ŮG˝AŘhK\ƒúrgćJOF6:pk5LuQŚČ^OƒŞéžĽ;φĎQáŽV~žĹW׆+Y3Ţ:÷+|Ľ‰/´_jNřÜăsÇ™>/2ŸČŢ´Ę×FěŇBLg0L”:ƒz;~0_L`™ĽLä(Ü`ňČŠŰ,_ć´[ďŒ#猟dôŠúÂöŇŔÁý°jyMŰŐ<|›#RQŽÔřk-ő úJ‡ľż˛Ťß`ڿ·9}ó,ÂŁšÝŹxÖU3 Swä‘Ŕ˙P„سň]ĎÍŇÔ~42.8dđHů1Ž?•Q&´ýjČËbǂgČŮűMSúKeŘ8Ͱ†˘4íďŇðL6”(xł|ůh­¤\֤ӓ›źť¸0Â/˝3ߜUž–+6MŕVŻDƨ#÷ Ź‚âč+ɎľěĽ)Šz]Ę33…=ňIÜxڌEd—ř˘avdâÜ3>„\¨ 'gűĄţąěć–2ç,^}(p‰]­'Qąó‰{š~ÄHIÉÚß'Kw]682\Ěł‡QTĽÝœK`-č˘ŕÇ w"čśĚŇ łäQ˙Ť˝Á>Ľ˘™ƒŞ4qŚ˘źpŃlJVĹĐ8 3Ë.3îQ;‹1f”Ąűc„t]ŔřgŒâ2<ď.3˘Z JŠuşŃ;­ucĐÄqáý´s˝Ţ6HďĚű 4*óÁÚẟą4Vm3+üK{W­.ö=Ź ]ŞUŽCm;Ą-!–‚––@…RvĎ>z cwâ(”wŤÇNQKĐĚ=V%×üžˆĄ(.Ĺ"Š‹aŤ*z'ĄYŇňŤŢ՝ašŢŐzÚt":L1sMo™o‰—6[žĽAăę(2(ĐT6˘âőAN^Cˆ‘=9á¨Ü~‘Ńĺ…WłÓ2ÝSĘPú+ ÄaÇÔnĚYź1j?Ôb.ŢŻdťŽ/Ž—ä&š‰Bl#aŁÉö/¸Ö÷ÉĆď+mygéT[PÔ˝IäČc‡-Ň[ď¤YÁČŚcşÖ@|•m›[Žő$ů!ń}q+6ŠĆ 4 /Í{gםž˝Q¸änĊ†8ůXC\YU1bUy>’‘—Ľ=­2Â&RŚŞ­C×~ĺ •Ń#ś€™,¸; ŃrV@ĚסâÄśß1FŢРܚjž#őQÔ1"9Š;FÔm}ůéRQ+ÜE—_ ţĹýĺ;źś´ Źůqcöą<údiˇd/@c łąÁŒĐĂ}iňcGÉĎĚŹö•uô8G”Ân5Đ f滆 q_•şý Ú*­ˇq0OýżrMŁFÁnowű*=QQv!RlK):[•FĹłËöŘ5çYŸóh@}Ë\ŚťŠŰC“é§úÖmąŔ ű)‹ŢNž1UŽiyw0;°Ł39š3orč4GřńŻGDšÉ˘„-jÝ’׏>$ ‚ßDŢIʰ¤ft‰ĺTCîyEh!—Ěԓâ)‘ÓmÉč(Ž0ßÎÓ÷ëÖ?̈ĺ0hLćŠޙ 4r!Š6…x5Ő1Q{î*sýBxĐu•t}Đß:˘ńŒŃŰßŐR?rŚó V•áć]¨żÜ*3Nşâb.1_;ôSJ=çS6Ą¸ž]ő)t˙ŤőRÉk fŠH‹]_ĄnŘSŒĐ ŤŻkktŞąĆgďŁ4 ¸OHšíŞ3ľ2ÚŇô€ˇntFWAđ›-ĽVhŤČŽĂ:Ŕˆ$}I:ˋ7işuĐ †‘Ńf.¨é…ťé^*Ąa ´¸ه/č=›ôvJvüÝÁíÔńŚ–ç h˘Í'őd ˝q‘–ä†%í˜ŘcVBâŰh™ ŃĚzżž÷)ř’ Ţ˝q€$FDSŐj—0žĹ1Ý1 ęď'JÄě6Z%hťËĆýDÔ­eŻţ¤é.#ę2k“u–3źĺž5ΡM‚Ŕ”ÂSŔÄbůÁćLPxĘ7“á`ŽA;ĂÇ7vl”ˆomŠ4?SEa˙ˆđřY÷.ćLią(×UÇ ¤XĂÝaupż)T6Âh“)Ŕ…U}“ŘŘímŚôR˙”Č"&8„Nq˙sg[x Žô§ÁőGZD\ôO:aśĘEœ;Ô:ç)ş:7ŸgÄa×;¸‹ý]ňŸAzłdօšş÷ŇŐhs„FTy_śv…LŽŻp+HؘĄřĐęš Č"›XpŸ0—ŕőқ~Z|7şşź6: aœD,ú2 Çľ'Ńsţ4Ń2ۂšňuÄŢ=ƒŒvY“%NĽó„.HKýA™‹Ŕ^ZU %ŮşĆŚă-;Â2‡íÇÂiPEtúœé¸b9IrZvś Áú)9ĘҡÚő 5e§jÖ|­’HA”ˇĆ˝ƒ CąlřvŻľwŽJđ}oâĘXôŚÜ+,5Ź’őP]![óŒ0L. <Ňcźĺű” ŐX‘ÔˇˇŞ#ď$ö@Xx^WŤÍöŇÝ>š4ěĂV˘íQˆ= ÷Ňˇ‰N•a•0Ž+ď;ˇé’ä|P’—}K˘Ó,PaPtÎĆ:đn}śąÖO}SIČăĽ÷${TYGD(ŇYDu 3z đŽvęx´w*ŰŠŞ"´n”5{”芇ŕ`g­)0&Ž`¨†}­ţBˆ– v›Ę"^ś_ŽNłŻŮĄ!ô­1ëÁßRÇf‚;ů °é R`âĂ:”3Źf%k¸-râŽŮ]m…‡šô †7`?ÁYű€‡żPĐc#ËȄ´EG%:Ę™Ň  Ɋ9}ě0ڒŞľ_ŹÔ+p<#’LEӓYŸ,œ˛xćf"?ĚTZyXŃ6ń†7w•WO÷xásôY’™wŰ­ę­ug˘˜sÚY9ݧ٧xZÇhs…174mœ¤KíóeÓŢ ş.X˙žöNe-˸BYÄXĘű›ęo‡˛p Íńľ |dÜáýî^S Ö˛ ŔHř–¨ÂT9Ű˘ŚŻüâŠqý7ÝôśCmääEŹĄYoĽFȂĚfăëý…٧”,ŤW’ŕBđ,NŕܑŻ*–J”ł–řŞŢGŕɝďś!’“i†Ńő­OÝSqy„4ážü˛EŇů‹AÝNá~žźÁÎG#{¤Żk1ôVk_4…ƒ˘ýß=!¤îŰś9=ÄŞĹ~č‰>äý^ęý`ăźĘ“ŚŽˇ.ľF^œb™7 ĎT:+č˜Ě$˛/P˛­¨E’$\ľ„$™NâZxK –WˆŇŔ™ZwI4BŢHDAdůĚ!ĐVźŘaA–@^Js¨|j"ur,ŇV㿏V+9N1v)oŒ=Ž:xTŞ­Z”śĐŞfœçcwÓžó­É;H2!-Cţ['ÍJîє*!‡ đÚs÷ö9‘üőȤ_liL,ę;ť×? %BMdˆ–J…ěéĹI|֐ F‡OMg “Ĺ"‰ŒŞ‚ă–yƒ4g)˝zŕĄN2Ç­ 5%#Œ8¤CÁÎ}r.¸{OŽ&´Źoâü’˙Eí˛o5$ĚĹcĂ#s:'ËíÔŕ`…hŐ;—gŕ\Íľçła˜č¨ÜÄM[ˆ;âěëw őŤÎ}X yXDÝ^Ľ=÷ËwÜ6ÜMű)ĄîźLŠşd¤‡9yš/ŮŽ:ËDö‚$ďUoCďóŸ†1ßéîřkLX­JgaČ6ô•-šźcČlÇđ|K• ÚľdąŰŃU3•BÄ6eđ°?hąŚŰ Z:ń5Kӝ4EňӑŢMPzžh”rXÁťM1YÔŐrčgœYŃr™ę“r‘BAĚĎeŻJăBá4'7s#Q°b1ŘÁQK$5ńÚÍsÍĺЅnŠÎ=ŐĄ6ĄžE ­E&ÂI)JǙa“DŻĺĂč–}뇪fÄĹüŢ,u¨×e]ťVl‚3ţšE¤‚¨Zž™t?Gô‰9|*JęϑŕA™"‡ÔĆ(4ȏ‰–ÜűÓ ŤžB@-Şżh‹ =“„Ş%Ü=•ńx”_6ImŤ ~‰,Üîluó‹ŔÖ6UÄĘÎö›@ĆÓޏ7´Äî5s͗žÉÎ'Q5ĚѰUUG‰uK%žŮ$v—ÍOŞü÷­‰Ç/Vš4˜uU+Ú ZŠáôˇ BÓ÷ޜ–‹lÍk‡*î‘kTôjÝăŞœŠË~Ó\FÜšü؃ĂGąK{Ď),ŹFĚí­R;ÄĘM•^[:ÖżďěÖK^ňĺnLž/ÂZťƒý(J¸źý†RŞYß˝š. A‡ą¨Š÷Ŕ”Âtâ°aŮăLv॰OĘa*Ś îF1ű­č¸ź=+Ľ{*űžŐ¨÷uˆĎ šŽO(‡Ś­űÖę{~YĘď^ş˜ěâÝ$ímŚ‘šŠR>§ŁžČUšoŽÜnéM2\žăťř)|Œ F=,Aé2â/lj”˘Ýň:<Wݞ,čĺSÎÎBJęç/nXć1á1Kk|h"€y¤1<ФaÎ؟$5 ý/Şuë´ę|ÁS8 gĐL†Ó!ŹWęĂW]ĚÓĄßVVú‰9‚ pŠd őź•椄yEcđěhr‚OőˇJ ö[Ş7HśÝOĆ_$°jRčîWY‰ŐKýą™ĄZíĚWŐÂODâéZZ šš#<‰›M.jšţł˘@őÔ˝=¸úƒ‘$z]ewůŻůxŢžŠĚ°eƒuŇ$Ěđą0ŽB•ÂóaĺĄ{5DĐź8•„6ŚóEV%\ßř*÷-ż˜×ýtD;ť3(ą÷kC?˜ŕߍpúłčŒ¸’(îĽ(š ӝ3 öˆ7łŹ™ )5[UQŤe㉽T:˛räxośSś‹qdřŹMę[R ű!4b€şœlM:Ż˝BŕĂ +ŸJŹŤăâŤĎȐL_QçćŸ!ĄňČÚĹ÷E¨žČ]ę˛ř\÷<}Aŕ΂CJű‘äÎ濜Ě÷u|č¨0kď ÓJť ¨%6”?Tž?ś-{:Ź „?Î9ęP a˘Á GskňÂ0Ľ[˝H“x&ü°Óşţp(tĄŠ6Ĺ'FĚŃ/™ŚZ@-^ŞŞď3ÇuDĆUu"ń]ŁűMŐ Ş5bš\—0ńNúKńZŽőX+Ő(Ż&Ť$,ĚÎőđŤ{š mkB;éáhľ|`tľVΡşV§¨n4űôšťśčmg>tŇ|Ë­§dK8ĹXš)`ÖR&"´ruň+—i`7¸#9ŐSŠ7őŠŹ‹K[ÝXœJ¨2Ą¨+ 6ĎŹËśĐuc—ŹĎ\ô‡VĆĄ2죯Ď!šMe…,>Ý_F=Ĺč&6źr´ÓĽwiĄIš–aŸmęUÉäŇOٍĚÇ&ž#ę~-Éş üÔG Z5„”:Řc˜)Ł$wŚ.2Ÿ36ž‘ÄłąPíŠî]Ö*őJ[öšë֏>טáѓviţĂ΁ĄJŕ˜’‰ĺ@Šć‹ŃY6ŃĺtË˝üjńc†řçžzeg­°–Ůš%ßW™””Šá2yćfa–@<Z@ŠŁ™ďGV˝s—™í[¨3­Ť=E$äĆC; }RęÄ_Xn&ĽF("rt‹PłŚ3+ĹÚ~ŽÄŞłźmL0wĐđéER3[Ç[Ô#㥉ФkÓ0…!Š‹’ N—ůß7yh×óq* Nj Dž›Ä4vUčtB!@Çż›ťČÍ7†Îóp Śš!J=˙(|Áp€j¨ÄÉźĐęÉÔäŽ#ôé#Y„™K_ŘÄi<áq„$M=eɏZŞ3ƒ~<ů"sźöją{sÎ"r…ýŰe&ĘVůg?ĐôO-Ë ŒĚ§˜]űZ—Ś…łžD&ÄhárĘžÜErăz*´š›'ŤOX÷)nnt_uvܚŠbř GąťˇĎĂN›/ä5› Y@'ě­Vđ>ĚŢčęgń°\éŒn Ww•˘"ÉGŠ(•ęř}ţĹ+Š$ú&ŐtXBk73lL>BćÝźÇqGóZąĽÜHyR˛%Ŕ˝ŘÂşŽCTešó˙Y"ŚÝ”Î ­ÄąŠ[ Çĺ>>'ĎF“!đźf(^§€ƒS÷CúŘĹöYÉyK_DžAŠ>‡›&&ށüVű&#¸DqW'Z,t‡>ݰdĆ^bÖžŮň” Žp*t^Ąš:ľřĺo] Es;ˇNĺ<=YţΘ‹ÉůŤ÷Ł#ޕ„V\{“lě”őáŘëĂ pR˝=ىĺ,glŽt1 ąefWN>rđ@–Ű o €&)˜ UíŰu^ń qí‚Ôň^ÍţŒőÉ=Ô˛a kŒž¤ü ó5Ž&o˙í€ňŇ×ęţą\/Řp€ŽŰĆn2ă0 =PböĐr9ö>r|OPŢąU ™ł>%ÎŤ|Dł”!žő–ÔÖň;ź4ýéđ¸đ'€N,ŠjKÇŞŻžŤqšÝ1ŻłßhŤşôW#ö°žůIÄXD‰i4ŽPCE (˛Ł]ż(ŃÓ˘ň"\ŽM`ŠTŔƑĆ]÷-Ůh˙Ŕ*óßáÝ!Ł‘'Üąĺ90îűŠÂ‘ša÷`Ţ[˝ďäŔÎ#Ćězgđ&{ő}{čo÷ffrhcC(čöKžĽ|^C<ůj Ďh“ ŁKç#‡ Ąą<˛`gś—@Ĺň\wŚ–Ś;Q;×sČ߸éÉýďż ?‘UüŃ{ÇşŢj$ň v‚;˙&ÉDŰóŕ`ȍytÔgq•đˇ6b$I¸–zÁÄ9ýź˛° JĚˌćŮ 3ĚŽÍž~=-Ş ¤ŐCćŘĆš2DŒŹ™žíĹĐL}´^ ýăßHܲŇ_çÖ/Ű4V%Ľëó‡kŽ[ÄČs}Z]'zÎIEnßg4Œš j–]I]flJ„řŽ;˛h;cťŻ6ëgKąmH„ĚéKîú_ŠeĎŽâ(ß@r!OÍk/›đ€<)ëĺZcÄóJ}+M¨ł˘í"ÔB %5˛@5?[Z'şđżľŒ¸'!`švÍő/ť}÷˙í$şJk!˛%2‚2Í$§‘‡L],­>¸XËś(Iú;Ÿ×7FE¸ŁOâd^"ćš!šœ§Ânp]U0¤“´5ş°\Úü˘2Č|-ʍő†_,)Ť%'¤Ë•*NëÂ? ;-/Łş`„Ýbrט˜1śu…‹EčŒ^ăgs7!ěÝ:žÎyFeRâUž+läĘîa¤ýăfŕ Ntć’9MD?d/wZy9ú­üP}Uˇĺ‹rœmGŔ‘ˆłúőv毴›ř•uăŃF‡`3I~ŤĽřřť Ťáa•G_Ä#*8Řó7Ęń+>RÄÄŻ2Оęf_›I˘>ńĐ×:ÉjŠ;ŢŞůA',ľ˜k!Íč{)§|ŸŸŇ8Ő^Ţšˇâˆ€łEQ|áŁýŻtŇň6}#"  QbîFn°ĂĚυ?Y˝pŹÂ<—KźĎÖ. ¤Uk&đEß,M‚óŠďť¨„˘jt+UÄżg‹Î×řŨP˛ÚŘIą—â KJ’ř¨Ńo<˝ˆŹ§”Ä0흸„öœ˘şĆÄbřáoeÝŃłYË ‡ŠÎg‰“ö€'oKß9i ă†qэix 7ş_mSjAęw ƒ-Š^ÄىYF_ލmTš ‘3…Ëřg"ďš7ÂśČó0şŞ[ťKţaÇŽR`­gFŇ€N¸łG‘ŒI Çą”Žđö›§4<j&jö–>ŒM&Ă#Ü'üVM„ŐĘarűœű.Ré‚ţ¨ĚŢôůÇĹ&mŻľűšŇĎuŔŻݖËHt]œžÖ5őŰ80Ş”rŻĽ™űěô”Š(ńĐňCű˜6[ˆ‹#yŃ%ęäţ˝Ú+/ő–#ţQĄuC)ŞU–ş°’zéâB;S_žŽž(ž4ńłœçźŰŹ‘˜śđiťš;ófeƒLő5š[8g?1 óŽ,¨‰}Ľ—Ma=%kq•ÖkŻ }IűƖ%PWíó RŢĆ,ă\2áÇTž^Î<ôt_*™g" 7˝“}FŽÉÔHQ>Č#w}–~­ÖKćĹWĆŹËÄĎę-YjĎŒđj¸ëŕŢ(ĚĆG)‡ {îsË{~"˛Qß'ńDäż7=ű*ÂđZďî­Ř‹)ęŮgžěƐF =&ť•8Šv„H\'oîK˛b×ţÝ/ho%ŁŁ&T€¨Ł"\ŢťG˙aă46üjŠ܇đ4ŮNücňó?Ů]gQ92Ç&3.Ź|_BS7[S }-k•?ŻÓy$&'Ľ,4Én"Éaă%) _™Uϡ„~)†ăĚhÖołaež,Ĺé06ČŤôÖjušÖÂ'ĂĐľKȀ˝¨Ěi]¨S!vKÔÓ]yĘ"5MŁUŕl Í?ä#őr$­äAs× YkClđ4ßsńšašŚÁ$¤Ž†űGói/o™ČÔ9ÄŚLd\"ĽúYd|NŢńAšŘ¨lŐ¨mdKu…jňFąABˆ8ˆĺ %m JŠT­Ş”.żž–zL• žçÂĄtĺţ;MO™˙)ŕ–\öŁ~1g-PŁ7Ö/uçÁţŔÜ7éo3]÷|ťVA˜^dŠ?s\áuš!i;Kůôƒwh3 ^x˘ŠÚ8GUFç˜Çó9 ‹’ŔXšĹgî(*S/{Ž$_ԁi%rĽ´öź° §c T˜űü•âěNŸČŃË8Taŕł˜áĺăĎÓ?°„u°ágĚŠmm}i˛‚ŻIdţR—’Ł÷žŢ.8íŮ@&°&â‚!WC7Çů€q7ôŠ7¸–ś˘ł=‹A€çţ×We’„íšžnĝݜ ě8&Snt-)œÔAÜ ş #<ˆő UT÷ó+ŰU´nđŒ¸ńĆJVßť(Gt9<ňڀŕJÂŕvŕœŽÚ† FžŘ8×4°[¸ ­ł'ĆNWʼn œP!9’ae~=á-ÍůGo6LßD_Ç<#Dn‹“–ťrčŤ%kě˘M€(?}ťĆĺň-ÓľŒôřMUŁOňC…bNÖČöŃ?Čť$÷ ńrČľÍŇ ŐĄî]ŢÁK‘x×Hżřď¨Ս´ |bš@\ zkçĆĄ´ÔŹK—˘űŁŰˆÜÔ.[Dc‚×óíË2×ě SYźř]VÄXh†–ą–Y؋‹¤iu2e%MĆPŒÜ *wo˛k‹‰€”P5Šę] łĂrOÚłÓ Öá™éş|2•ŮîyNłâNDP˘˜ƒ\ßLě!zŠVzŒy´>ŻA•A&úYŠ<ŠsłĚăćbNSKď]Ś´q›‰$H+éĚukW3N/ůŹ3”ĺ’ľžkÝöՙť#–?Ýs\Î/'ˆëfŞÄA]ÄÖI$uM*5ˆąO°O9rĄäQŐf˛°Č;  ŞN§ĘOәřb‚]Y6шő7ˆĚ7ˆĄëĺу˛Űi%ş1~™ąr15œň—eŸ†äŻşŽň ź@ěUĆQť„s`қ@^âý¸w­ˆŢ—<Üsvm…ĹŞ&üdŽőBƒ†?ňRoô¨óđCN„ԝČ!=;¸5ú/ţ@śô÷f"”€?u÷ˇĚŰߣĐ2=ËR˛R<—Ż÷9ŞŐrœpDşľŚNx)ţ㿔ŘFihŤÎ'“Éü´ľi{Îq‹×öŠÉü¸S |óŸľjü [˜üË|Â(Ţm¨&ĎB9řކúÔ¸ő?qviŻëPé؎ TqÁŃďy‡ł kUżKŃ׈sˇßÄSóăN„˛ÚZňu­açۛH%|€Öá *™íe˘čA?҆BC‹p‡ŢB&V~ě~Q.éŇ7uiš‰ŮTDźö*”ŒűśCĚ˙łËyzËĄćŠńy0ô[¤ďHËf:€ŁÁŽÄP=?Ȇŕ÷ˆ$‰ř€Ľ2wkŤL4˒űřqh%`†×ťŤÓ: Ţ­°ÉF08i‘çd # <ąĄ`Žë4ĆÜ}ődC×çஉF÷5ÓBN;RťÓžTó=•¨ž^ňIo2˙ÔDťÜ`nÍ?…×^~,Žd9?Ú`âÇŃĐŸŚžÎSśíŒ˝aŁ#)˘¸¤}ŃđÞPşpŁšĽ˝lŢÇGiîӛÖÄ/ƒĘPpÜuť0 ă˝q7h_fÜ2Ťü•y; |˘ä’ĂO˝’ŽćC™rWVěARŹ 1ËşôÄCŐŁĂÁ/.!řř˝řkŠ´Ć$,Yʞ~ޖˆč3Ł@ë}ď–̋҆fŐ~ýíă]éÝŘ61śĹŒÔś}‰ƒžąeäÖĽBŎVłŻ_4Ľő>Č(ĂhůNÇG˙ÉOeavęņ>]B¸ÄŘր?ŻŽ]ɜőŽ2ąŒAÎN:Ď.Š ×4fŻń‘¨Ü.ĆÉ+ő’Ű(wĐDśĚ|ˇů#9mHăuŕşeG§ČŃH Fé Ä ”҆§7Őą-‡$ń@žVĆ=[ŚOœS ŚßÄ•™͛FĎ;ňĎz0ŔŇĹćĎcŇRăSßښˆCFňа`0̛…ĺĹŔŒ!ýŒHH) Su6ĘR‘=čânHčŻÄ"ł–[+‘`2 âE•%tdďyů•­ÔxbŽč„-'M5™4(Ě›ă?ďé^ëÎsا¸Ő€ô#gpyơĺ4[ŤŻyPd Ţ-iacWĂA˛ťfDS'ń“rxż=Áwś079‚A5XŮ˝U-鸰€ĄKł›’FŒCŤœR%šö˘fW%śÓ(΂¸‘Pß a˜=Żw@Ğ>–ĽDoŠEŸňóe<”׍ş\’7Ҕg2ϓ˜JOîľŇęŔN×ÎÔ Ę?a–T]˜Ďډ¨mě¨Ô˜‡xʘS`kzSśŐń×Úć1GŽ5J~Jöô#ĘëgŒ& ŒM&6ŹQ=0X#XSŽpQđŐEÇww3' /ĹLżř9čškΰÄÖ9ąA>o^ŚÎä×y˛ľ‘yŠ2/o¸Î•Šńö¨ëĂî‹3 úŃÎÁÓ šĹëřvK.Äř*Eä böâéi}|CˆLj,çnË!’Á¸:ÝW)‰Äú{ĹW!Ků€ÎjŔČ`˝Şô[ľĎçăښeł9 Ű>@Y§€€Ď¤Aœ5y‡ńnŕŔ“řK˙nťbüŚęţ}ŠŞĐĘËË]r—ÁŠ #´ąčx îr҄—' ´šˇ.ó>űŐ˝7[•ŠwöŐ¸hkď¤îjC!ăú‰Îąn6ü<%hs ˛îޤąÎžľŢ?‡$_)übá쟼\ßłÂmJ˙šÜóJ ăcé*˛2îć[aUV”ťO"4Wž€,ô›řŞtmžeçŁ.ŹqcăMáĽQéżŘ§ƒ°-Cä4˝-ŕÓ*vzľ.8EÁ4ʃFŰÚš× zKżß¤ŻfG-żmQ{[’đď2šěńu5?1É´|*ua€Çd›š`mž(ȧŸQĽďoŹhpÍ3‘2!ů]蔨đ\~ĺbÍu_´čS‹Ş˘ÄÓn\Çń•W8Ç`Ý5ŤŻš“ݜů>Úąœ0lGJžNßś¨¤ŸŃ˘ ĺĘÁ“y´Ő Ą”Ft%›$oťx™QđŞJŤ#Ÿaú'€‰?ŒHśzÓ4ĹŞ˙%đI!OBe ?šŤÓŢܖpa^âů Ą] +nL+ŠIuޛ˨Ր45+ą.=]F“%8żD#ść^şžAĐöŹ+ś|ˆ3m˜pţÄŕÍľ=’GűŻ@đ^5˘ ĆŞ^Ý8ÇŘÖÎ9a5ԒÝ=rBŞü6ů~Ś–9…ŽňŰŰkĺĹM¤ jŇ×ü•ęî ;“€…üysŃƒý=÷–ĎP}ŒÔxbśďěżS\ę´Żľ­Y’žÁ+C6%ŽN‡Á ęݑ˛O ŔĽß0 Đ@BŸ v’âEĽ×OV§ášs*şhäŚ_6B7VĘů“Wmśł’…:iĆɐ8QÍ7Ű ą=7ŕŹ™ľ9ó`›fđ"qĄcËšĘ~Ř'鏙ڪŹ0šĆş™ůBâŹ)rcŢŽNňźĐĐ6âΚDP iÜňF"OěiEě‰!p’ˆ&á_é?ݕ":ţ׉L .îäó˜îąŤźş”L ˝˙wţwƒˇ^Ť{€":uđÜSo>A(ďn=DŠ ´ľo`l;ʢ7ŻK‰}•8 ˘ßŸ2ľ RžţŚúBwyĘňŽrw˙ĎŽk*HSۄó|V”tf~^2¨"ńŐ¤™`–ŸqČŤiŞżŘł'öÁ0qŇĆ „üů­˜ šŃm^H ;5TSeŽ,ƒȕ|š‘,LZ.ăëÂu@‘FÔäÍ5Š•!X‘@eZ€ÓĚJžŐî ĆĘÜ´L&S>H^T?ľń†ŁtĹ v|36\´v„0ِ6ňâ˙ßęĺK˛őt:QĚ×LÄjĘbĺ=ľ°8çď,čXC Ů+—xQ„‚&ý›Ž‘P‘ Ć(S§ąFĄBR'Î)0<ńˆeO3‘6ÂÁ—tEşfEwŇjČęŃo흂[mĺoąIl›bž 圻ƒŚyšÍaw–hýŸ‡&*uŒi" ,0HZś,”3lŰ­hýĚ6bß(ƒfßż7Ú3^Á@ xnÇ+ă‰_œö_Ž:3‰Ŕ g;á@ĘF{źg‰;Â;xtmĂCŒö4ž]ÔM#Iźő[ dŐĽY­ëaém4ł „ęXéo؇2N7žkDĽqÔه:­ĚX÷=Ją˛/¸ öđ8Ú奴ş/%7łÓ3Â-ős?śÖW´ďsŰ‚šoB“7aTYś§*ś´žÖ–ăbyŒSÖżXíČAo ˘NÄç@ôOŠtŸ˛ŽöńĐwÔ´,^šƒ›ŽvXđ 2/ş`ĐޖˇcICq+d9ŠÔ.Y`RϡŢĐ KîŽB? Šëc˘äˇő1ȅÓeNěĆ/ŹŢŔÝy™Ăt‘‰—\“Ľhc*ÓsüË,@TďE61šč,ŔíÓnPōF劖6Ö#A™n—ń’Ş 1¸ňYW’U…}ˤ\~ÉR”Í˝ŸřOßďŠ{BӍUčW4St–ŚXâwȶʇⵠ>ˆ˜™P”Äť\R“Ď+LÚKY8xšŹ"‰}tŸ+wŽ6h§ßmš ^j_3üxjßڞ-?†ÔŒť ąkŃŤ{8•Ž…Ńk$ŔBqC纆ťą€•š_›JĹ*-Ryeiđ͝}ŃŤüŞMI:b+C ZŕŃîâšžŰޟľ*íË˝żÍÔ˙gDA~rƒ‰'ܙçĹť™őÜ8Č.^hĆՄX–?–˛#-ţĘW Q›ăîÖĘqł(Rx,˝‡úžĚHě÷ĎƐ)@ÖÉÚ_0ĂqýÇFaąčřŰŮP~8“ Bnšj”VƒfAĎ&EáĆýČcČăĘr˛-ˆ_čUťţţD4‰ëÂ5RĎ~(6 Tś‘ó‘›‘j÷ĂD ”˘Č1č/1`›c†#.=ß@’ŒE¤kDŕŤF`ŕ ˜iÖďťAýl™ÁŸ†Î"ţ•™†ĹČĚűĎź~ Š×›b}ƒ6kČę!‘–ĺĆSýöU˛cŔ€J-îzwůN]Ď 9ę_ rĆlż.nű‹Ö.™Ľç3ƒćíßžĺÇG܁\ٝ$WX¤N­śu=ÝŁŠvi&'Ús@‰/„—Ťď4Ďöů‘ęŽ(ýÂ.i:Adƒ"—ß!éQSľˆQ6l§9FkŢ(ˆ’î&!¨ $ňSaŚÇ°ĚSě96‹I.'ćöĎ´sĺ.2 géᅰy ^ćŹ1ŐŃfCˇŽîÖî˘oŘ-ÍřT10\=>°T4Obőß jIPĎí…ĚcęYŢuX@ĚĚ:u†o‚VĘTŚ 1wČńĽŕgS›%ž"´yýt<7čέ˙wŇ OE@ SbZPëvFŐE džčŔpnŻ‚„L‚Š NŞ]LĂń+ĂŞ&÷&$ÉŤâvľ˙6J(’˘5:ّ ˆ{6tň§Rr;Ú"I˝ŻéJ˛yśôÉvŰÁ5S{X Ęâa›ë/Áˆ˘…×ŰtšvŠVQ2ë´¸šôż=wßÝű`ťZ}žfľč;ŠÇŚĺ­QŻíV˙l‘ůK5“uKÚ5+yiLn™ç€Ű‚\ĹX˘2ŞĄřo=“Éý J"] đfč-Ńü,çČy]8…Ž,ĚŮ3Ôľ L€Œ endstream endobj 1585 0 obj << /Type /FontDescriptor /FontName /CGQJUW+CMR10 /Flags 4 /FontBBox [-40 -250 1009 750] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle 0 /StemV 69 /XHeight 431 /CharSet (/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/a/asterisk/b/bracketleft/bracketright/c/colon/comma/d/e/eight/emdash/endash/equal/exclam/f/ff/ffi/fi/five/fl/four/g/h/hyphen/i/j/k/l/m/n/nine/numbersign/o/one/p/parenleft/parenright/period/q/question/quotedblleft/quotedblright/quoteleft/quoteright/r/s/semicolon/seven/six/slash/t/three/two/u/v/w/x/y/z/zero) /FontFile 1584 0 R >> endobj 1586 0 obj << /Length1 2065 /Length2 16019 /Length3 0 /Length 17281 /Filter /FlateDecode >> stream xڌ÷PœŰś ゝӸťťťť§ĆÝ%¸[ÜÝ݂ťť ܂Ăcď}îÉž÷˙ŤŢŤŽęţĆô1לŤť)H”ŐDĚěM€’öv. ,ŒĚź1U33#33+<…:ČĹřžBčä ˛ˇăý—^Ě hěň.7vy7S°ˇČşÚXŘ,œź,\źĚĚVffž˙1´wâˆťĚ ŒY{; 3<…˜˝ƒ§ČÂŇĺ=Ë˙<¨Mi,<<\ôťDlN Sc;€‚ą‹%Đö=ŁŠą @ÍŢtńü_!¨ů-]\x™˜ÜÝݍmí,ičî K€*Đčä4üE hl ü›#<@ÝäüXÍŢÜĹÝŘ x؀LvÎďŽvf@'Ŕ{n€šŒ<@Éh÷ąü?ô€˙´ŔÂČňßp˙ńţ+ČîogcSS{[c;OŔd(IĘ3şx¸ĐŒíĚţ24śqś÷7v3Ů›źü]¸1@RD`üÎď?ěœM@.ΌΠ›ż2ýć˝Évfböśś@;gřżę9MßťîÉô÷ąZŰŮťŰy˙ól˛33˙‹‚™Ť“†ČŃ(#ţ‹wü™ĐŔÁĚĚĚĹĂ :€Ś–LW÷tţ­důKü^żŻˇƒ˝ŔüĐd|˙€÷v6v\œ\žŢ˙VüoĎÂ0™şL€ ;ř?ŃßĹ@óđűÉ;<zĚďƒÇ`ţëőß'ý÷Ů2łˇłńücţ÷á2I*j+ިĐýMřż*QQ{€7€•ƒŔÂĚĆ ŕzđýßQ”A˙Š‚ůŻŒš=€çŸbßťô?ťýçôŠ˙ł4€˙KŃţ}bę?ţ‰™ƒŮôýĺ˙ó˜˙íň˙oş˙Šň˙2ŕ˙ˇIW›żľÔŠ˙´Ćś Ď˙čßçŐŐĺ}öěß7Ŕî˙šj˙YW ČŐö˙je\Œßw@ÄÎÂćżM9K‚<€fĘ SËFĺšĆ_ f˛*Ű;ƒţşP ,ĚĚ˙G÷žUŚÖóű<ţ­ž/Í˙N)agjoö×vąrpŒœŒ=áߏřqźYŢ×Đ čń÷˜íě]Ţ]ďô|ćöNđ''€Iä/Ń?ˆŔ$úq˜Äţ‹¸˜ßÇëb0I˙qżë”˙ węÄ`RűƒŘLę7€Iűżˆç=ŸńôŽ3ůƒxLŚ˙EěďQŢ/Ű?ÖőŽÉě_Ŕü/|o Ó?÷Çŕ˝Hó?ďEšƒÜţx°ü%°ůŁ˙ËÚŢŐé_ţď˙‚ďYţ žˇô/řÎĚú_đšÍżŕ;7Ű?ĺ‰ÝŸĚďŽvďŁđ/ý;5ű?­xwś˙_ę÷Rţ ŮŢÝ€Nď÷ňîěœË@ö˙ę×_|˙ßéü‹,Ë;ç?%ý…€nŔůnîü~YýqxOń'áűŇ3šX:˙u ď]Üí˙ĺđ^§ëżŕ{‡Üţ@ÖwóEg}çů‡Îť­ĐéŸ`˙k9L]œŢ‰˙}y˝oÎ˙ŕżż‡€@ )üʢ˝)_°U]pÇ}ž;ĂޤŔŞV* ƒ÷ŠÓw×G$Ř$šęŒŔM§ß"I#˝(k;ԡÄ/ŢÇ­ °am‰*íO>φ Ş3{íđËÓXƒSÇ"ő„p ęÂű>/Ž>š֐­ŕ]˛9ŽŽÜHĘyč÷îýRőe?ĆC÷TöŤ9ĺ>>—Í2ÄhD (ž§Č5É\Ŕ!…qa ü@‹vá<ű{-{ęX6Ţ÷$†­Đ[w‹5öaÁk˝BŐš—W‡ňm|†Ň[ô0Y{Éť¤pmpŮŁ•ż8‘>e…ń5˝¤e×ÜWë6žŇɲ›“ŚÂDßMŹ-mĆ0t"UÂŹn7ŒBwŠełvš‹ŽwüÖě1ˇJ!X噭,p‘$Ö"fE¸OŹkóv#°ĺfČşŸOœ&¤ĘČaYm?™ăj=cżČŕ0Zť‰kŽsÔĆ[üĐŇ˝MŃú­ô졌O"Gę1Ü7´1ăäz";_-$9ąĘyü ›‰í&Yp)j?cŽDĹĎڙ`’°ű…@­Ć +JŠŐzsßřűϑNĺJRŤËހ/k8.[žzhŤd˜)zű {†Č†aO/óЅt`OW0~“Œ´>9OŁNťú­-A1…s+‰ĹXéź=pÉiN| ŸÖB­i2›kÄO†FŘÄf#żFj$G'€w{¸8JdŠďKš‰üR‘ĎéúUőíĆ­}}2ŕÁ/|ßÓĺ÷˜œéčž9‰nćTˆ㯌ĄĄÂłń[uŰĆ<Ń›}雌œ1 ˝`]ÉŔşR#•OŁěľ{ 3 ޤLJĄ“Ă Źß~”Ç­Ĺ){¨œöY%bœwϊEý]bZbđ>×ůkĂŢeŞ’°ÂSYžĐ§ô1j|yŒ¨ŸĽąiź(˛ĄđäeŸúË f}ľ8[ňúspD>Ä(ăŁp*E§“FrľwŹ%ş.(Â竝i _тćúé_=d~dĐ*1‘&wl†waá#ˇ Ł@Äć.>9ĺŠŇĺů.­~nşÇ¤Ź­+RU3Č)ĚSküf&y{TKÝé—Y‡Óđ‰ Šľť48xŁâGWpٲ(őŒ %Źp/jöţÎÄ.ąoĂv*Ż÷ž§y‹-ď=T`Ő¨oŃ\1ş•Á§_oým‚;Î/Ŕäa‹m/húľĆuŚŻŽÍ ŕz­q"wŻ î Ĺd7ĸýřx™Âˊ媝Ť…ćVÉzţ=¤€s6muç§:˙ź_ŕAŐY0×ćO›ß’;rzlGś°U?šËşÁMŠ:üŽšÜŁö =Xó~Ě Ń@ţehŽŠűÉť1ąý%7ĹÄaKb…îƒľ\ÄÔLű<ł<]ÝÜPîFŽéôlů%V–Ü&&Ć÷Ź×“tŐśŞ›ÄlľŘĂdö΁CQď•VŐÓ9ĺ+ů1Ż Ói˝0@ç›Č¨Ü#şˇyÉĘŚ_*WŐńÜÇmÁ šžRęeđq •¸ˆnNÂV)ŃŠ&1óŒA›ˆn‹éü#°č—ú~˙ŠÂ6ř!2t‰œăŘŚś¸d{ č5éť:7Á‡^7z JoÎeRReWA „Ů"ťtßóŹŁěŸC;eůż`—\}8´‚Î]óĚB–60ĚJúLĂ-RŰ Ýš!÷ŠfiŘPŁ5żć¸?ŃťF­Uú ”ނǞ íg¸Ń™YNZÁôkĄ~gf Ť fçĐ+-ëxożS3°×"ߌń÷ˇa+´T‰•Ő”‡˜¤zEži‹A&eJ˘&ś°Ż(÷W­ââźś—hóĎ0w;°ÎKpër„ś„q}=ôn‡HuĹ,ÖE˛~TßBŢđó¸M‰SϘYňLŃEŮËͰOęŇ`ĚűÇaőKœw F|m‚ąŠĚጠfÉż•d¤=ŸÂGŒ\—@ůPAڰ ná“ĐĆŕSáERFć* `#-r@Ěç9˘"^i9ĄwąŔ~ű¨č-żÂKW#Ř÷RxMŮ7‘œ|ŰÂŤ;ö–ćŘňjŒżxÝeu٢ЊA%ŤŠÍ÷[R>ńš:<†š+ƒ>íš‘7}Ł?ľfÓtűAńfýŞ[CW_01 Ýü˘Ž~Ń ő)Šś]¨—˘:čkąÎĐľ˘€¸g+›‘<ś+L$ŢRëŘójűmäAľé2/Gŕˆ: ŕçÂ%uďÇqjF&ě[Ý.MŸ¨(:.‘™@_ö2ŘŚĎđO›G­[5ž­č?fŮ(i–w8–I•4Ň|FlëseëŢË?6Uů*ö̟Ç` Nżóe-v{ƒ{Áwöě×Tů]ÁwǂW•ČěŮč'&+ůŠËŽh‘šJ!áŕÉ4ÇÉۚ{ÍďÔGơ`dĺܞ[šxüěŇ4„}2_¸›ŹĆâú'TŸn}řn&˝`č¤ÓÇý őđő˛$ ;VŃq.ŸzHĂoŠřŮu_˜f˘íVÜäé?d˘-’ 'OŤ)řš`Ü-`)>(”Ý΍W|Z’;ř‰ đľYt­"ź Ůô&ô€ćŚĚüI:`ŁĂË/÷Œů6ŰŻŽjv˝[ŞĽŰŹ‡ýÄS^Ąmi_ţ= oŠ]yŽÎk^—ezEűlgňÂüšnÄ˝f¨O1F¨œblޤGşr€‚^qßé8„Ĺ­72ÄšŽ6đ3ŁúČĆĐ6SůűÍU\x˛őÓk~hl?}.ĺ{‰˛|ĹHĚm4lvkݍČŔ ämŔ–›­h`/Ń܃üTŞ‚b°ęÁuËř]HŸ5Xdş#Öd´ŔąŠo%ëĹ&ôŞŻËmˆX3<,r7d3ń`âœĂcn*‡\eőřTm+@j "ŕŹöä‡'Ž^XĹD&Űź­0ŕ‘A7@šMPfŚţ™17Á2s0ÖşŔ aÝ˝ż•.~2 ‰Öă›CűOAŸ@EľVJÍҡţV"1đƢ’<˘´_iţ'MšqOëEUśîłĹRA̘=œXŞ:GҔ<Á°y‚+,ă ˘­ę”>ĄÁ”ŕúá"VüĐޤ >Ďš@ {ʇ•âśÚ§vŤ ĐA‹~aĽÖ“JUݧa'Ž\Ë Ą0Ś´ˇ‘GŔJœÇu źĄEĹ§™f—ˆ3âôÚبpŰ~Šl Áói7“?›:ČËý*h÷ÚŃw4šPńv˙ĄřuŤţ<‹@F(u‡(@Ť-=ƒ4É]}l­/´đě_ ÜsOůFmK+¨×/ĹsŘPsÖcĘhÂ%˝á[ŮY‰ĄvE-Q°0!ë7-jâgdbçßH{^“T×,…zL˜b/JS—ŽÄ…IňE-č×|Ńä릑=‚,ĎCUDąĽ÷dŒ5(*ź~Űg¤ŃçSg­ C}JuöÔýí‡?Ĺ6-NżśĂ°ű*?"SÚŰtŕ0˝ŁęFlŚđ×|œÔlW´? ZŽ žą\Gú`•%ŔçqýÚ_y“>ÚˆźGłB"uíRמl.ŤBýáv”Ő{äÄĂ͔l–Ą30ŹĂ"bÁŻń°ôuÜňHăŐ÷fÇŠĽ ҀAÁš.rrĚd§ŢÁĎćG‚;#RW-1Šú÷q‹4ĺ}Dh9$(†fT/ţM„"&ŮÎ ř!ʉ?–M_š ?J€PîbžLחF´Gćyg %Kyl˝íşřËŮ˙ŐbY zOBX•ۍožŚűQ]Rg3`2¨‡Ů•ţ#ś|8ŹzĘĆXěIěa‰ §äő}źŞ,%{ÄlńŢd˜—8ő7Pë6ţ(I˘E  sÚJm"­ČsúŤMlň&†ŐqD!.‹4\Ëáł­4×+żäÁsĚBýŃ*ŘŰĂ@YřĂíŇůüŹöş…-ÁŠ´vňI/2˛ŞđÚR×PŠdŻ@S…,ë—,_nŮ8Š#粜v€Šyéč8Üó˜J ícęó˛r‹Ůtżĺ>Šl(Á÷Ŕ8h[vxUXÇ^?Źä#wo&{Ćźo5HÄsĘUD6u}DŔýĆNY-ÎŰlŚD Ţ-ÉŻÂbčf=P?Č/6Hš%śš `„ţZÎÄźˇW‡kÁgtcŰř8ďł#(Jǧ€Dyů)&šĂDÜFoCŤĽ=ĂęHPvĎő’:Nu­dk:e ŹOáé,ƒ/HC˛fútłątšÓÔĽŸúş{Œ¨ťFĹöȗĆÖŽ˝á˝í;¨‰ĹikÜî 1M†JÖšęrCWwýdçą;ÓWď_í× Ď[ľ˜á2l|SěąŰ7ÎôľÓű{8™=ßz~œšŠ8#ěwX‡ž„ŞŃyFŠ) šô^Ćż /Đcƒ` đB§ ‰? §O0!!(E’6ב™ń{q :XÄf>ýÁhžËjwkjOUeąÎQí4BÚňŰç(Řśš™cvloÖ^öĆĄ_:úRŹĄŮŢŐűă)!ZÁŤ2‹/Ö"‡RŃş'äÂZŘ1>jŠd~ř|Íblë菴l“ÖJ…ĚşŐpńš@0Pʓޖ†Řî ë›R#ƒ%/^-5ĽFK#ŹČÁA#6řƒ>Çýöžq6]ŕű<'Š‚—Kl–ţY}ůÄ '˙hZťäęl1ƒ™ďhĹŘX*š_2j.žEîEëÖ=Ł™F˛Ž.Äk „,đM~NéB’4š”\¨NJŕžńdž˛ÓÎnL‘!ü%"0ˆžM í Lśg’‡Çh ŁŻ:çí%V Ö&äŠÔŚśČ¸OˇĽNfô,KŰH[RĽä4ąÄű‘…ĄŽCĘ…TRۤ–5u@I’ްC¨ç€1¤NŁFm¨ů&OVXŰŽűe&w<ćI8<|˝S‰7łn×ŠÖ vŸWĄˆÇš á5${ĆQ8˜VüËŁNŞ!Š˙?˜Œ‰ Ř%Pď,śUxşXŸ"°hř3>™WqćüŻÇĂaUŤ„ kV‘tÁ=J‚ ƒşőC\UŻsԈŁdš{ +‘őD*0Qe3ţęBƒŮXú9äž\ˇ…=Ű史$ ľ´üUľLjuĂ˝ ă<žÚ„z?TŮśEXéƒĚŽIşIrÂIÜ~Ń;gD͜ÓUT Ç'Üé= śÄÁŒÎ÷!Fť;䘍b䠖Ű~Ĝ¤ƒ ˘co÷\.Á܀Ό]8ÓÓ!néřz WAČ`ôŒń5ár"¤°˜Á§ôVUSÁ‰ΌŐ*ćŽÜ˝ ˆ—ÝVsJMÁhÄřű ŃĽ;ŢçrŘ?<ëđwCœ˞%ŮÎkćP5së3™Ýƒí.ƆR ÄëJ(Ž{Żť’+­âĐ=’5˜‡idćˇ7Íüůž é^Gî֑‚)TśËźÉŤŤ%˙…ô›ź Ćľ4şalaJäď‘ Ÿúgôť3M´6sIň7 V0űΘż˜ÇuŘÄ­ŰľĎÁKˆÇ 48ŔŠ9ń^Ö\˘î͟¨ @ äď‚%büĎÔjćÄâö&J°ÓXnćkVqyĹßÉÔŤŠÔÝ,CCľLkđсTa'ŢăÇÔN-ŸaŰďî=Š܄F_k C•bö Šr†ÝĺÂĘŹÓ X˘ žcü\ŠaŒĺóĹŢT[ Čd~"9fŁefWztÜ,đŹ;ĆßsŘ}´†Dňs҄ŠŃXD˛é˝’Lx˜ęŰÎń“Ă8Ł_‹ű8 űŞËĄ ĺąˆÂ‹L%EnK¨7 ëʇ@™@ťhԃrŽ2Xúäô§–~/8'Š MłŽĆb,Ӗ3šť˝FoaňŽŕZř,¸¨Łx&˜ĎpZz‘Ë•’°oŃÇtż}+ÔđŐ(lŘ IˆŤ Š wČN’üÓ¨ˆ™ˆJ~Ţ ~CěPƒ÷!růÔ jóQť÷ء;Ö;…CÜŸc÷lôŒźłXç6´2¤1jŞŠť•e|y TćŠQoy<¤šúƒ—DNČ*S˛ş@řqÄĆÍ}Žv{Dż"Éăpkwňś‘Ëž-?>y÷Ÿ–"uV0íG€üx›$ˆ'%1đĽkďXx„Éľ0ŞÂ))ßw3×eĂé§ßänő#'™AkBD¨+i–?“×/°ĽÇ9×Đü‚łň7¸Ś(}ˇś§ßŠPjÇóZî&ŐyÄԃpâÉ:c-ä5áĚRN„x°młj ą‘ ?ńKăŕŸ§9Ç~ů0.|%C‚].PžĺĐ­˝™ ĆF7K“TöÉtüČĘÇwV3„‹a75R}4lrŹs!'ËćFŒ+"@ʔGÍ3űĺ?$—.߈ăĽbŽńFg|Ö´Uě óJś(N¨U+Ř—SŹÈ˛ źa—„kŠ\óDÔË/ě8Ÿű8§P‰ŢÝTžÝcd{;ÉúëŽä,̲a•H˝ĺ ;NząÁžP'ťŻĄćšő"ZX÷hëH„‚âAś'_nČ`oúë÷­˝Z1ӌL׾k:Ȉw ›ěd°čE?ŽŠŢŹŮž ÂĘăC:–ş]TSœÓňTÎ˟•C MɧËCŕ֋)CgŐM~ˇS<ź*‰{šOęŢçűĐĘĘŻÚŮä+Ź‚ßt'@Äތđ t˘•ł›[Ľ^ŸĚ,+çŘŻ9XiÎzō0šŘ{,#0"绀}íÍăPśł#˙J`Äő°WŽ…I ˝g˛BC"ű|i¸ĄŸäÚ7'äsY2 řXfČC™–Ů™†Śá°öA-Ečą˙clȖěń¤ĘŤN[˙ÄĹšUn§§#×!ÜULř ]gÓö–áë˜ -`ąz ~elv2B3âún!,BŃníĽ;}€÷CíĚčËŢk˛3ÔŒŹńŤOë|Güńq{Ů/ĄĂlŻ_ožţfóz?–<÷mŇŚńÝŹ˛QŔhD’"Ě~ޔ‚–$ŘôVÎRŕ™rW´‘Ž9Œ0&ŁdŒý(ńA'JšśXŁčČ؄b‰~é8SÎ9Á¸SLh€}Cԋťë{-Z–ęB<2 Ÿ ŰAÂ<™6ń­éšßNĆ-3íŃÉq[‡Ř#ˇë|„ÜÜ]|gÎş 3\@Öńlń^iâRGvĆÂ$ŐvZ7oAN ԃ°úÇĘdţˆy9-7 ńb˛Ň;7ß6 7G~öw[lÔ /ŘŰ/ů•Lž´/ Dâ°„i8–K32üÔZ˛ÜMţ˛áHVN:Pš ˆë‰pşh“€ 7˝ćăÖĂőş„çp0]#ěO]̍/ -M‹0I‚ŕ`™pĘŠ+žFÄěÔ*—[É›Ý L~…Vu‡2BŇ@{ÉČ#şĆyőęšyÁÍšAˆŐȃr¨°S,`\xs(&ÖjŰÉš.”z§}j™ĎËîŰ!I ¨u*BŚäńí/MźÉŞ˘ľb,!LfcŢ8[ĐĺŕB—šGOI˝6zfqĄ %.>q}žÝ*'!†şÜŸyűÍ‚„'–U¤xyŔúŰW”ő@ńp}•ňň¤ Œ[Wςj6÷SiĺU-;ŠŹţĂRb%Kö}źHKťĎ“ ű/vV´‰ÍŐ=ĚU2,*ĽÖL†ý¨€JĹď* läKqž[_ŕgŹżąž2ĺ—ŁÇ1\+™žÖ+ý^+{vłÚš@K7ľ̈ŽŇ:^˙¤ę´(W݊+ŘEö j+X`yÖâ!b˙ň›‰P)%mÎŮŔ6žĽˆQ@׹ŤĺGň׋Đ4ž/Iýż+Áť3Đ ęC%ë܌Ň}'uX'jd{2…“âŠLHëTÍ2ěë†cçD5JžˇI¨łżŔfżd°AşLž+ʸ Ľ—Qݟ[N†ÓÄáís“Xhäm;=ŠJmT÷áɢR%EĎL·Ӈ˝\ZzĘŞhh0ź?Č´şą`DsĺĹŞ?›Ű­)\⛠`L` úž,FaotĹUZđ™ýŁ0^~ătrb‰]?ÁˇëF_â'ďi%‚vşm­rÎmă{łaG†‰TX9cűďĘʐÝ1BĚT/wŹöçá-Ľ’‰Ďe^›ŒJT ŰÉnkŠŻ—cžß3Üxź>ˆbŽR|ôądQ@T‰Ĺ+?á<‘?+Ž)•5kbJf¸ö(ˇŠ ݰ†ć*bÖëĹý@”E…މio†Őp&7Źiá‚ÍbÚŚ ­ňD†h!űDÍ*żąśü5ľÇÚ§ň8ź'ŒĐ€^^ÍĄJ_0y–-Vk!ŇŇČ*‰ďi†ü94ǰ?éĂ×řJbL3Ü|Á ˜âĆ$­AƂěTčŇ„)WČĐŘZty+B!ŕtŘöËçłOŞŽ€ťÝőKS@—X<*ŕŒk9đ˝tŃł˝ÝŃÝQřiˇK Fż^ Q‰Š:]•ç×çgBżHKBF-WŸxZ¨e,†ÓUöâ5Lä|•@ňAçé¤ňŽUo:vżhĽX.ˇ‰25d,}#•7ŢmÚČç†(ČÔيEŒ|‘:jŰG<ą Ů9 Źp˙…Ą[Fš'^p_‰,űťŹRş–)ň˘Án4x`(öËY­sŗ$íČ \Ă`JkřXuWÍ|×˝“ŽęĎ Ş7ŢĆ6!Ď&Ď/ůT˜+€iӘ°F,óťrYvčkž8ŤOă'D„2ŠeҕÉţŕUě{Ýb¤ň\ƒ= ľA†É"‚*ĆrĹycC3Éq7OŠzŃóܚQڜÝ{ÔʘXű7QčqĆQžZżĽe’ĂU#cG<ŸÉ\x˝âüéL-ň8ĽYŒŠÖ„śśˆÇ˘ŠEˇ#čĄK¸žšíŰô!Ldu&śŹlĆ[ÁŤú4żŕ9ˇ†#¨Çˇ8‡ĄTŽ ÂÓlÝĐSuOŇ ťNöP"ĺ§őËPҟĂH}=ĄÍ&€ €&€+XAi+ ŚmÄpR‡ffÇ40łc<OyÂ& Abę’NHÚb fBëbčlLěnĽbwpŸ)%ĽNiTsŃŃ=ĄxäźČžž›É¤ěç6Ěłłó j4Ó Ë2Šľ ć’XŃâ€;ő|.u É%o€]\.éę`Ek9čőŸĆʍ‹žuŽ+0×-Ö â‚†{žCßÚs ZÚTAĄĄMEźöŹk”óŔĂ;ŁH̤îžô‹LœĽÍŢĘśö:?Á†ßɄ+l%ËÓv^ŕn­ÔôL‚âx í7áäęöŚ×ŞŠcBŠdU8űaú;…ĘČP^OWÚâ—ŠŚ”úfIp‘­!rKzKŞ!éȕ‡Šß݊óŽâ¸îĘýŠÓďńs-Ĺ_Sö:g!Zšô2Ô <ŠG•´…wmíCşCóeŇ˘šTö3-E° nŻîa•[Bsú͋ű8gž5h†ěÎgr~2nΑzƒńĹŰĽÁ‘ŞĂ{Qű†} ą ˙Ђ^ 㲭4ČÇejĘ:†ćƒ´âŔ‰G…ľžkGŁ–ZŹgßy˘öő9AV˙—@ý˘+* ]ć/ĘáÂçüÍüKeÔ­âűŒv˝ŻjÔ{Xśîß=ťűÄĐO§„SpŸŻqB?CŽIgď 4´vĂsŠţnˆđ‘ŽAäŇď:ÁQqżœé ‘?@×ü‚:EáoqúńXĄg+"0žž€Ż‘uM r„‹˛]ÓÔ&¨iľÓ´Á¸|é˙Ý ŐĄqäeżĄńźÓî•t"⋓“Ŕ˘:Ů9 ƒŔČP_ür ¨lűŞcŽľ;)Ţ×N^ ŘÍPŽÉżaűVĆ ŚrżlÚwď7ůžě ATƒ"B=ď3^÷+–zöc‚˝š`×Ç\˔5ťęÍyţ+*đ†ózĂý˛ÁSe–LI*n˝šÖP.Ž ŘZ1ţ ÜĽľŹR߯<đ“_=h‹i×C:Ľ~‰bń´o:ƒ-JŃÓ#ó'šwô”Öb?VÍ-–řÖú ?d\ČËăľ5ăĽř`ɅQ+Ń ş5v­˜°4í™8Ü +ҰŃŇúŚÜNhŽ}ݍ$ż\důP&ŠŃîF§ţ™á3‚ýqIWü†ƒևé‘\nÝ4™tŻě4“§?ťą b˛Z+h~ÁňT䎃§$ŃuŤç‹”¨gšŽ9•Up=őĹŃ]™ć¸Žč$i?/&‘ ­öč1JÂ7”ł!´­'’Gȓěç&0žy†[Â{9ňbŠV- ÉĐcžYšęűĂhn ŒŰ>ŘŹ<‘–˝MŔy€p4Ÿhî›óęI^Ť{çN°´%|SčÉćt6ĚštBéĎÖËőí‚Ë|N€xa§őW48Y›‡Œji*O§ç4ňTh X‹Ÿ3Ż!mW§ŕ(O„m/ë .Ž$†ěTL¨olm†-ŘŹöž ĆâQ_|}˛—gĹ $Z˙`ĄMńFý42“-™#“SUű­–ht÷mĎCbůUŘ!¤Mŕw`ÚţŽBžDOĄV Ř}Z&…ÝšwóÍ/ŸĹQˇW§˘Ŕ„dF –őρRlO7~áJÇĹł1i™¸-íŚôXęo…ššœů›>łëb FČdŢěôĽbZŽÂHËŠňIŚB‚„ęŔŤ{溤–ŠxcîóĹxK8Xí݅=2“!ń’ŒHG/ŒO™ëäĹe<ęÝŤłŤ4Ą+Z(ˆČÁęzČőeŐŁôëŔěđ}Jíí€5mtŒĽm™GlťýБőŔ ĽÉ€ j9ҝ^˛úş_Ń§Œˇ‰Éښúř}+c> V3Ź6ĘBG˛¸†s.ƒÉ† ąńt…Ö@Jˆ`}źpĎÄä,ÂĘCř°C.LR§×•ĹĐ QUňˇRfĽ–訏Űكp…™Ňӷ҆„Ç2>2<ĺ#‚ƒîÖ]5¤ZZeŽ™‚Á Í)Ú˝›ź‡ţ(Ÿ•4Ą#˝;i^ľwö#bÝHźš–Ĺ¤Ş‹úâ `jÄy_ĘĄTťĎĐꩄÄ^  p~˘ˆŮ†ĺ@J^}îý ĹzMńë¨6?ó̝âqՃoޞ+ט…,ČÚŰěPœőc`j|.lÖíŔśrÓFŔAÔC÷˝Úî ;cE÷łˆE&ŐËśë!uŻß‘ęĽŰCŠ™“Ľ$)%îąű,ť™6ÍdótČ6䕹č›Qä.łˇ!˘gš{RŠž;;;1ÇŚIś#ďč1˘út܇˜|&ďXîŞ)ŻqŮĐÉ!U‘ZÇŻˆôĺĐüăćĐ;î΂D++őň‘˜1č[ʼn?ďgu˝.‰¨•GĖ_ëĆ?‚(|'?ąáá@Vi}‡¸fÁŢz) ¤žikVZ¨Ó'á{߂Ňż•!E"tŠěţ2ŸŇćüJ˙ŰRvŚST]hhݡ‰–1ŃHFšąłYŘ­3 ű@B)c¸ż"YŹU$ϡ<"Jýa`ŕ×x€÷ĄíuoŐvkĹ,›KăŢĄŐ×OiýDÄŘ/‘o/ýô­/,w[""¸°B:€ży[ň8ƒś,ăřŕs\4ˇĂÁ-ě&KŽ˘]ż)\ĄˆÇó‘mS#ŔămÜs‡¨ĺ§ÇÜ,]„Soωétn#ŻŇ,ÜĘăá‡Z Ś#Đzlś4˜/c¨hÜńĘš*Ѱëť[ˤĺŕůÔűŤn”­ ZŘ#łwĄ[>Vt^\Í0—˝¨§˛óŕ*H #3f, K5Ł żm`.—üDŠ˜úA&”¨ŁRFác.:¸WgąďBáĂfŽ<Řkž¤ÍĎÇ%‰­—Wý‹ćrüáľý4EÚHćé+‹ęĽŕđî †łŔYĘy׃wń)!Üc˘řNÎlpoç]2^Q­™&‹e‘ű ăëؔ›Oˆ<í‘ŔiëŔsă¸O…íاŒoRHŹKżjmuVUÜâCýŚzŇżŁ*2 mŞl6őj;?ĨP‚<¸ÖžzB¸A„˜˜°bÉ=;ç; Pˇ˙Ć/tű:AE´z¸éHˇ•'„óŁ˘aČ6ĚkĺšúłŢ$ÔDü<"Ý:ßhjŕ~Q\ŚÎšÓÄűúÉ2Á&~C Ż “á‚Bű4ßGHł[gŤ¨¤ź&ňÖŐ懙„ĐzW{ŤH“œČĎ1?u¤…ˇůó­ž0^šüłšÎÎś”,ŠFÖuž#wU,ź-0AúVŘ\ŠŻźÄăB†1î¤fŐkdÝBŞčĽí[ONc˛‚Âçc@\RëŠţšĹńőě$EţˆĎq¤*ÎĚÂř„§›8ab uş‡`C´=aCw˙ř!Ndr$R=–ĄÖ'bň#dőřńu°o Źăj¨$Ňś‡Y)ą‰ťX‰^űáݒđÖçOy|ĐJ’"şl#(´Ł˜"ŇóÎ,ˆAB—’Ş"nöš€4†”’’D-÷Z Ů0]œĎâĽ~KĂz›đ§UʡšRۏׄ=ßÂłóSřzR¤˛}Űw¸w–ŽÎ÷UńážÉßܳŔkëÇXԝŰÂ×ஸ|žŹú•Ő$€ŇUŐˇ›ąl€ŤÜîď˙­§-$űŽćwFK[Jękˇž,pű0źY2“Z(˝Ĺ[ŹV,|@ľ)ß >gáváC—)śźÔĆĆć˜Y ëÖiK`…ě2ˆV&ń|×v<决ë1ĐĘź…U=‹ŠóBPnĆÓߏ‹üu•,˜Ł¨ĺ2ĄŘ¨!e.œ¨N­i§Â Őű;$<“ö­Oœ q_ůJšf óŕ+äqŐIODߎ`üńý<#.Á~,źÉ “|]@֍f%őOꐗ Ez˙‹vË­ä­ sËpŹ;ąÓN'^éä?>íQ‘›ľŁŒ‰Ąroh°'—ăÎ ě3q°€ŽČK„\Ľ]5VžăY,—î/_Mƃ ŤIC*†–OŐg$˘ ů¨íłIĘx01P ôÝşŸĹÚ6™Şą?ƒŠÔŢtGžówČüF˙:™Í Ÿ)ĺŎä6}ęökĆ]ɢœ Tʛog"˜S¸ŒóˡIÇŮ5°ŸůqͲXIŚ ­z˜Wr8šĘV׍6žđ`/|Ą0ö[Ř×4vŕëýŐX?hĽ#-ŻYëŞya3˝FY[ĄjOä>'\ű%?皎8JËTČ:+Văî2Q‹mn‘ĺ?…J˝*ČlˇŢĽţlT¨ţěUwb‘ąőŇ0}``¤ń<%q´é§F4ôIvŇ˝Äވ†9ˆˆÇâCłxÎaą˙›<œegćăl\Ě*iň÷´łÖ•d1Ÿú{EMétŹ:řÎČë7=?ڐ8Ü댏´˝˝–ŐSĆ›aÓ&ß^˜ČVŢ>ÖŊ€Š_ŁIf=YŹ[ ‚ň¤âW r›n~‹¨Î=̛*3MiăŽäK#éśÇODŁÖřes§E´m¤Žđ˛•”&ÍAWŐ°ÇŤáűJqŠäŒKĺ—ZŽaŃ˝m÷đ˝ŁÓfť‚Ę-4…ąWY9ˆWöĽ‘Ć<°díEŤąˆŽDŮÄQ uŚŹmŠ›''Á÷›ýŇîýňŐ%č˘÷üýťTnöߒ N 3 lb,d‹ ÍBĘ4‡<.äSŠć ĺßÜly´Z‘u-mŽ“aŻUU ź˘=ĐQB‹ŻżłéÇíˇcjž3‚}Xm—zcˇ79s~ 䗹üAąű´sĎěŕó#jÇiŘ&ׅ )%żżjńCYőj˜ˆ‰%žűŰ0e AÇ<2}(vfîÂ3˘2ĐóÂ[gâ–}™¤FS%Őw…}âŤ`e)Iށ ”Ö×_pťőf›R'hăšŮđ¤.p<őŽx"Žź@¤˜ěԏBVöĎąţyźűh†oJ-Ž… šÁč#¤ÄÎă}§Uľň]Ť\4ŮŞ÷‚˛BÂĹŃ}Äž˛`ęÜůGŸ;˝Ń)lœ˝´AďĐŔd2<)ÝvÜa6`ȈBž˛ű3lË Qý,1Ť:dp`őzăœÍӋEłUŒix3ƒˇ3ĆD”ťeEŢîÇö i)ŽÍďjŰtvśhŽĚŘ3z,ÁlľŰTŤ@Ł’¨1Ážz[ZFÔ ç:xé0?bIPíĹ%gv‰pËčhŤSTgř\FˇŮUۡo2bJ ÁÍŹĺŢĄ†k ŠV&ą†^Äń§Zw'Žňךj´ĐˆÓŕ\a÷ľ} ť!# ÷Śžę¨JŠ!îp›‚äA$,ZóĎXžšPťŇ꾸˛ÎĆŇ=[8+WF{ćúDďÔÂGÚXfúD‹ďŘďŸÇ¤“­cövšŽŤIJdƒTńˇi‘J¤ž¸‹â%2ßáŘěČh˙X,ŽeîˇÓšwřĄŞ|ăąyš­1¤ź–d Ą÷&&^3őQ­GůvćKžŠYŠÍą°éŚM`tźƒPŘ`)…űÍyánLß´hűő›bz( rPPm&žăLœ?-ý/#ű1Šy"1~ؗž(ŽbŃ`‘ş~0Żi§üŻoţ=“gŁ$oK’}v_(łź=bŠcÔ-9ŽojOŠűCř;,Ë]˛ŘƜq&b Ťľ+ău§GŹičáĹč!+Rő=Ş`)c éóĆrˇüo˛1aEďT8‹  ULiaÍZĘúŢhˇ}lŽśDżá7ˆ%}Ť‹:ŮßÜůôĽiŠŚŰŰWÇł0ý¨ę)…ڍ  ˟¤PŤL+’Ľ–ŞĂᝒ0ŕœÔÝAť-'˘‘Ő9ˇbƒw˜ZŠOTŢNľžź}ˆ_4˙kĘď{j% ¤ČŇą˝‡6fu}œÔVţ‡ę1l|cŠ"H@ üÔŢôłĆĽţĘSęQ ěX"ĽQötw@\LAĽŕxŞ?ą•őŁĐOîÄćJ@2všřU ••¸F’éˇÜ;ř:ÖÚ(8XóŧÝĺM÷°¨ÁŤO pzoB´BĂT>n:¨ú‚Ť/U_3ť˝çiݕL†ýS: Ź Ď=ň2hvůŰVŇ'ŃÄŽ˜EBǑ“ˆO’ťgDrF| W Bę4h­aĽ]-şó‹ö+9ţ’ŇQעšŃ)ßÄëÁK ˘ĽŔą +Ľ?{Úř$‡ÝďîC{DZ˛Áˆ¨CƒˇŢ™PęTNm8ôœd™=˝’%ű´Ü[\͖ăÚÁuŁ„ŸíQ ŸąBz—ßg'ńľÝeÇeD˜í:]tÚҁŢ*X™Ç7óč;ŤÎ 9rbŽ2ˆAĂfňśŐŸ¨÷ПT%¨üŐFáWxNńwďç陏~kôČâáőB q`;ˇÎ+4Y2łűŻ ¸&žŠ)>œ(EkĹ˝€]ť3ą7ýž ĽöĄi˝ţp"@_2T™˛i é Ë֔ZsÇZ*ź€×N’^9ܘŻ<´?Ĺ^:ËŁŐ Bý÷Voky(.V} É#ŚüÄĽŹ\šđ›ÄMŃ^+ rFĐŮľ D^E0 ű˝/hʡ­ÜÄđŚňˇuĘL;rF‡ŕQ‹Ą˜q|üňńTŠž ˘CËť÷5‘ÁI?œŽĚQŞ'IoQJˇ*sďRtKeXč­ ˛ČČC!DűNVÁ”ĘTąÂQ’Ş‘|Ó­‡˝ýjOîšÎ…?˜ďzڏHŮăÚŠę"ým(Ȩ˙Ýztęô+2YáiŔÜ_lÂSÔŔ4Hţ0Ĺ?ĂăśÎiÍ~ŔÚ‘ÚaŠĚüt*łŮ#ÇWĂúšR(Ó뗱Ř)ç}ś Nă„f#HĎťâ$ÔĺťEÚ#˘%n ~„vpßu1M4ĽçĐŽ°10¨•u÷ˇvĺĂř‘™=_5R™Ź*%ٜ3˙qý••šöŒ++E‚Ă/sçˇÜSžŇ˜œcVgXƒ=Ńź ńŒŔԂ'1LuH sÎUÍĂiŚńłŢŔ;75ŰqĽŹœCQę´YŠl^+Ľ'őĄŐĘçëč0Ýúsž'-ujS—CTŚÂŽ\NĺƒçΚť”É?!Á=Š9R÷˛†CŐŔňý4Lř%ŕ\Ët28ľŇ„?%A˘Á_÷űÄVęő‹›#S¨ŕݟĆç%ąĚL€ôů đ’ŕ°U&J„›”‰ąN3xě-äVěú÷SçóU+­úĂóz÷őćŇďÉę86˜#‡$Ɗ"ƒŚąžĆ"k(Ż7e{XHńMߌűáłQä~;l‡“*'ŰZŠ:œ°g8 Œů¸ŇősÄڕáZI—0ů Ń´>ĂXšůmÉŕ]ĂŻű,%“=ٰ°żĂ–^ë…̌_YƒIE_äb ‰ŁDŇŘ´P"mJ„Óg†~ĆkťŹĆœ@Î FH•ŕ ż% „BäîšzȏYx:ꅚ_†SMŰ śˆĹăÍęň°ż7ĹŏpʃM|žjŔQŢ óËťĄhŘÔ$6„7Ľm4]fÚ)’Üqý¸łkłmŒěÝđ&Ž%érW+8ćAä[׺ S‹ŔƒG‡lMX v^b\Ë요óĄ÷öŠM?Ž~ Öv<ö˝öEÔí‘üŠÖ,ţń‹ciŒS-™…c –Ĺŕt"ŚP?%vušPéK,QHířž$ĹRŚ ¨ŠÖĽĂe{°¨a‘˙zűÓŕZÍÉÍŕ+ňĐCŽŞą;˛w~¨ÂóO.SîŮą:Ő9TŮއpą¤ÎëÉ;jßs.ĽaŒ“đ3ĆY;䍍ÇÄ­35Sh)-§öŃ A› tS#֙ćă,Äó˘cĽoíć7ČłĄ+sAáńÉ)‚Ä{ϋĺ×í]Í$!+ÄvI"}{ß6.-çÄ Ůq~dřćN3ąWĂJĘ_\<ޤčQkv8ŁŸ+byĚÚńY[ђ§•*˜Ą+űę'|RżĄpÓ šMn˘Ÿ„§> îLdëŁZ¸@ŤĘË&¸´†ž‰×̞¨ŃŃm+ľÜĄę$ <ŮćŢfˇR:ŃĹ?†Ibœ}ťçcÜ<[[ újTóGş,a§%ƒ÷ŒőgR Žˆż2Y▍Rćl‰ŰQpĆpĚÉ˙3uyĹD¨]N˛!^‹ƒn1_“ĹŚ ;â{ímWľŞřŤ Ľ#bâŞeŇĄMŒŠ:ö’vę3ôS˝4ŰhîëŐ'c÷˘"}ćfĚqĘşƒi4ĺŠúƒç/ƒŁüUnĽ"ßTxœ7żŽ3p=ńŁ˝YŕÝ…üźMĂNřT_ ČÁ Ń&Ő3Öé5č8DĎŮöŠdEç M7Śg—_ęč…Ú`˜•} –Ť‰g7‹9 ¸äKŠý…¤/fkŃOeŘŕEßżC´éë<™Ř]}J=é"GşC§ŠŇşĂ5­"Ĺ1 ňžBĚ䏊‹˛ňŞ–Đ]ę^_ŃŚZý őýW‰”źů8ÝYďą×ŻŐqÓŐU>>˝éT Z¸ůCSÍVWŽPL…œżgeCEĚ2ő!î/T‹)ˆč'ďÉŁ8Ä(Ÿ×ŢvJ;î{•ý/Š42É庸ľÁ™ĽJń‰~몌Ť$}íA{í ÁT+0búČž‘…0 Á~ƒĂ í§đŽ[Áb#*8öŽ0/ ƒkślîýÜp.3PŁóŤ a+ĆŔIÎF,!ŠoÛqKşœýeň>ŞœzŻZyv†aÓj ‰c.ž×Źç’Q“\ĺąg‹bî}şŹźë‚ 5Š´‘`â?Ëđú‰ÉÜԓžľ@č€t$Ř )f!ˆ~VҎ }ľĚuÍpĘ㎍•2cr†ŰŠa—„ŸE,KzgŽ™lĹ,ZÚW_ëÇŐ˙šŁk(1OśŢěËŐť$ˇÄł÷-6}Ć<ÔF-ö0Y)ú ™Ü1 #˛ďŠ•Ů“Îć“ÎęU‹ů;`šmTMŰÁOăq`Œyąƒç5úAÔö-čyę}Ś—áŞÖş˛˜ež˘~a“Fô7DÂášH/f*<úŘÉUúąžÄŻĹ}ŞŰń~!ŕGq‡……ËűÂyOÜťëÁ@măÍp3˜Ľîڔ‡$žĚŠŤ"ąÚnęŢΕţ/żA5ɘę…ęßToTŮíhëá˙!Ƒ&dO,MH\´ŕ endstream endobj 1587 0 obj << /Type /FontDescriptor /FontName /FNXNQQ+CMR9 /Flags 4 /FontBBox [-39 -250 1036 750] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle 0 /StemV 74 /XHeight 431 /CharSet (/A/B/C/F/H/P/R/S/T/X/a/b/c/comma/d/e/eight/f/five/fl/four/g/h/i/k/l/m/n/nine/o/one/p/percent/period/q/r/s/seven/six/t/three/two/u/v/x/y/zero) /FontFile 1586 0 R >> endobj 1588 0 obj << /Length1 1476 /Length2 6638 /Length3 0 /Length 7640 /Filter /FlateDecode >> stream xڍ¸TSß-Œ€4éMéé5é¤Iď RBH $ĄƒHŻŇAš ˝ H‘Ţ‹ô&M¤ŇôĹňűˇď[뽕ľ’{öě™3sfĎ˝w…‹ÝŔXHŮeUG!1B a  @U×؁bÂ@ ( — ƒ€ţƒ“p™AÝŃpRć?ŞîP0‹Ýc°D]pω@2 I  J˙CDšËî‚=á]aŔ=Š&áREšů¸Ă0Ř}ţšđBř iiIÁßîeW¨;FtÁ'¨+vG0FAŕPŒĎ…ŕ•sÂ`ÜdDDźźź„ÁŽha”ťŁŸ Ŕ ŽqAŃPwO¨ŕWÉ=°+ôoiÂ$\'8úÁĂxÝĄ,€€C H4ÖĹéu`wkéôÝ Č?d?AŔßĂ€„A˙ ÷×űW 8ňˇ3Ašş‘>p¤#G@úę:ÂoŒ ŒtřE#Đ(Ź?Ř G€íą„ßЃęʆ0śÂżőĄ!îp7 Z GüŞQäWě1Ť!TQŽŽP$Mň+żťpw({î>"›ë‚Dy!ýţYÁŕHŘŻ2<ÜDL‘đ‡P­ť9Xˆäߘ#JKHˆƒĐ‡¨7ÄIä×&>nĐßĆß0ś†?7”†-‡Aą?$~h°'€q÷€řý§áżW$ ŔÁ졎p$ÉżŁca(ěĎŰw¸7Ŕ ˆ•üőůו5Va($Âçßôß-Q׾¸g¨.đˇäUTPŢ?!Qi€´$’’ ˙Žc†˙Íă?|ľ0@úOşŘsú'eĎżŕý; |€˙ŽĽ‡Â* ŕýˇĐŁěč˙Yîż]ţ˙Tţ+Ę˙Uč˙›‘şńŰÎű‡đ˙ąƒ]áŸż Źr=0Ř)ĐEagůżTsčŸŃՅ:Ŕ=\˙ת…c§AéˆU´čŽ0đÎŽV‡{C ŕˆÓŐüÁMÍŽ„ Đđ_wŹř?6ěA\°w4VšżMPě ý÷žjHĘá×°‰ŠKŔîî`lŻą+q€;•Pďßbˆ#QŹ [c†r'ůŐXV1"ö`ˆ F;ý˛ý˘XŘ " 0ĚŔbá?Ýý.Ž…ą' ý˄ŔÝ!(ä—ţţ+uˆ‡ť;vŽk [×?ëß7 (Ô !YœCAdC_†ś×(3y }#XYíˆJ°ěÇpĎ?÷sŇ!ĚԘ~¨bçPukäŠÁBYřԜ?˙çóqďÝŮAËiššľţu•CĄźĄoÇݎPVŁă„äÓ¨uރDC ;+|+ždóšË0Éą­›…Wč­űŇťW@ń)%{ć‰rNÇ.nŒ%;ç*fŘňeľťUş‡‰–éÄn <îLĽ-–á›ĎşU\ĆđŇŇëěţ§bGůÚ˝ŐUá4 ´ž÷ŘsF’čłď˝BăpŤˆŸŞ–Ľ&p0š†s/ăŮI.ŸÉhMóhpÔS şĄ˙h´ŃŁ%>'ŸÓł|Älť‘eňM„ěVSR”“`ÍSNŽjœÓáôƒj1Dn/>=+€ ŽăÝOÝTI陥îŰĆXÂG!b6›“ˇÎížd&‚D­SĺRƒ T$ Źn#0óˇ—rŠF.-<=vçU‘Ű‚Â_ úálÉȓOMŻŰ†{"QœŸY范,Ú3wűv_i‰ŸžĄ2ăW“ŔÔjĎŁ:můâsâgrsđ Z;4dď+I/Lrě‰Qä™P͛člá¤ë[ʄ)?žĄ$§qů\ĆňâmĽÄčsůŕ&ůTŠÇŔGď&ŻÝ5܋§Ź]żaŘóíşM‚˝űĄˆ(‘vnÇ}'ť=ž{˜; đĆ݄ËO*–ÓA‡’sËš*?LmiJ=ȅ=ů÷uë¤á ×Bš.ň>"*Ľs:pÝś`”Ľýţ@sz×ä^o;OꖷfĂĹ)ţ!ý°†Ě Gh˘˘1^źEui€.ĘÔjŹÓvŇDäŢ3 k<ůF ˛:“˝łäfóŠAďŔí{ůC•ťj ž…0iąő*ÝÇÜŇ~ř¤‘fwÉžJQ“'‚EçÂ8N°F’ „˘ö[úü]+ΘŚhŞş ˇĂÓ^ć%š–Zf‘{ƒž3ź˘`uŠďžbď?ˆXčKźöQFuÖ~~´ťemţén°n3A¤ĺ•’ăđ&Ş|ËřŮŃ| ľC+Ńu[ŃćUÍe(ÍT?ĐMďiÚĄžÎ6˙VŮů酹‹QŚZĘQń~Fsü îÉwî”őt›úOú:T¸FN Źę9ö_ŠŤ&"dŞçրâ˘w=źDĄĚž°YTˆlâVśîî>[]ŔB‘ÂżÉńšĘ&ШrÓşÜ5|ƒň ź$Tť\h:Ž]ëFě˙—ߡn}5˘úa‹™1—Íčý’>čĄÄ{ťĂ?ZB3sĂôyśŸ˙úׯ†`ąęĽźÔŽc)oüJ&ÂÂiL’ŚšriO՚lű[łĺÉdŞ-Ă´!f¨ş§ď<[rö’{ęRŘdS˛kĺGŢ+†Ź—Tt<ŕ¨ř֘šysĘh˙ş§‘jęB~śá]'ň%[ÁœAú‘lŠvjú'ö0Ė˛Öš ny]†×b&MąƒÖŚŻ /äL,Äű{kôPОń°ŠVĚO{źl ÍFúy̲ş-o_dĎł;~Â*Żůűk“—~žŇn†fHx2ľÜ˛OÜ˝‚‘wž‰ł‚œőNŚ%şŠ'uťŠŤÉnüsĄ’žäó7ĺ߀ĐëÉJ…zIâ6‡bŠQ&ë¤`-áFĂ∐f}žĐz˛J äĚć4yq¨iáE’‘oÍń1lŰ/b҆ęŽÓűš|żŒŒ5•Ô‘š€‹ŽĹ´(ŒGőŘgy­ĆvđĹĚ %kŤTr-’Qň!OĂć5íČË;.úň7÷T(͙’Jß#— Pj1Ë77]pßdđ“K=ÄłzËN°wvńj|áÓĚTk°Í<ç+î؏ÇGÖTRˆÔřWčfîĐĐn‘„ľ5žLv“}ÁdǸŤ•Ÿ'ëVéƒÚ9ňdă?Ľ^zŘŕG‘(‹eH¨ČS˝Ë÷DžË0Y'ŞĘˆŻhă›:+Łą! đ‹œRʝIˆa΄“_ť*ƒ€ÇݐCďÖëg>Ěú•“é•ă8qĄż•oćpšçWő éƒ7>Vš˝Ý é—eZŸ|Rœ$ĹÝ?˛Çä!’ӝ(%ęGzöؖmÖI'lđ öŮ ÝΈť˜ÎšÝ%ÎÚşe‹ęî§}ęŘđ\`•v!őĄŠŁoĐLňq“eź;4żHvfŘeOĘ…ZW.eŮűj¨*rpűC—ŠźŘ?ŐŚI<)22řÄšůŞYćgűžĄö8ľŰ ŸŠx*{?v2 57’žĹaęp}‰ ˆXědŠ]x“Ôu$Źúţ%c_žšÔD×ÉâČČqĂŠvˇ2:KGłčM‹öű“ăĆžôŻ„sćßA,}RűÇZ‹rłŽ‘ĐŘęŽĆ^Ů )ŐŠÍޘxN˛'j'OË0ĆĽC…ŠKľtř4ź!–!a}g.zć –]űę rŸTęŇś]ęŢőŽí󞝝°]ŕ˘â*_^횆śâĎSl#ü]CP3Ż÷Ęî0~lĄŤ ÍóyFăŸ˙֓ú@ŕQBa.k_ŠZ$îÍËEź$݁Ýy‘ŞSú]ĚBŢĽ&43|Ń@ľ~ŰSďó‡†DińŮgÂÜëPžň̈́ŽŘ˙­ލfłŮ/+ŃĽ•É`m“9­ď˛{Žížüw ?žň;#ẀbŢÎ[˝Šľá ž"ďë}§uzď‡ú7GÝ˝Ć:pGˆâŰ*Pmß­1šńžńEÓąňŕjD%QdÝëU†…&協ćîv ˘Łv\ó*Ď Ç$Č=Ž›ĎfĹ_˙ -‹/†wŕxšź¸ĹzŽ â“$*‡s<™ě=ć˛,üŞŻč5S„wRSGůoI ôűw)8ütö1É|ÔŰ`ć:¸ůt•áaɨŁę0CâqâÁBWKć5ißë­M"U—Eú0ZűÓĂŻ— Xř÷ŸJǸOĚjĹ䡜ŤM÷ľOiźóZ„‰ ĆÎěA5s/żöje!îęŢÇ :k4B˘NڎÚyä&-ŰW B{ ‘sňŘ\É X~5ńŰO"ž˘âŇüŹUË8ŕŠű:˛OFň ZpfŽ;GżŇű´?V4V…:’Šď×ö2t\zâ–ͲĄ!ž‹Ž|6Ţł[KŞcőčäőĎËsW2ZxœĚš‹vO˜ŁŘ.ĄľĚö…á+8s ă†[×ië0!!: WÜGŘ"$yzěߗMć|“ź}œâSvnžKEĹh´óR`E>č{ł\ăË*ŰèWńťŕ2sĂm.ßЙ[÷^6/X2ć÷ˆa´|€}Âř3ˇŁú­’o˛„Ü˝­ö&8ÉÍ­Zż˘ôkírşçťţŒĂ8Ryِj&Â_Í´g!óľcKa°-S†lY‡†;ö„ŽW:‰œä,+ŔâG× Œ ć›|ŤœäŘ[ŁÍżdĄÝƒűÎŹ‘Çwńţń¨2Ë[>bäçӉuł&m)T˝ ďtĆWČďímŰ܅—^Yʠ垽oía˙Bťlqៅ“v›ŕ›¸Yč.lĘ4zçĄAPŔŮĺ´żüĎŘLěűL¸žżA/Á'tŚô—Ö¸€Éü$,Žnʏkťĺý+DĹŠT‡‚%łžÎ’&¤U7<]`Ś ŢQ/ebjć§aŒ˛W[˘q…9˜˝ ¤NŒ äŸC7ć\ݎ>ߋ@Ő+ŐÔŽĽý´=ÜQž+Y3¤ŰîTa5;yÄy(­–ßBŸŕ,Oc­¨řôĚĎëzľ-…¸ŘY‘úgǙκ;ĎT2>mdí)—VPŻś?|9q8BÁśŇľś5Ô~ró¤3ĐűLƒóg.ShŃ΄p@^óřŃ”WĽ7ßOt¨e¤@jj3ƒĺoUuĂŘo^căi/&Ůň"č‹2’jáUZ\ŒÉô%ƒ4ľ+őęqkš>ÍY*P°`íš ý2Ź4Ž '7˙É1mŚŞůéü™Ô—›ł‰×ĺ|Îłő<ČŔ)„;EĽíýŸ˝ú˘žH„čKĘ&e-ëž›şçĆů›?-Ó‘ ŒÁO2âgšKůmâXy.!J8kˇ.š_ ůË­Œ÷>=ë`bÜŻĄţšłX.!ŻzÜ(—÷ȇÇu-—aş$íĆnہ[bŘööëOą^–FýÁęőtrÜţŇą.gëzj乘…½<_ĹĹťűĺőÎĂŽľŰ#ÉXžř=źioÉŤŔą(Ĺ˙)ŚchĚĽÔGěľ}Žóđř8Js˝‡,ţŽ×ZóšuácŇvŚş]‡ç~jItĂE˝1^A‹ ŤTœtfŤ[NŒ˜ěS_NNë;ťŐtř‡XSŢE5eŤ*žyšŇŃČńwąg§OÝ؆Őϓ 73˘đíWKéD܎Ż5?g6I~ŘĄ>%…oűcV™*ŠšKcř†đgžŤvœˇŻŹÜlgAëŃş\rt‚ž~7ťŕ ?ýŐC‹Ç&אG9ŚŮX—#"Ĺ2QWžœ‘ ŘIső~ęęZţšĎmŢőj;ގ~ĺL”%ěm†ŹŮ"@nôŠwó lKĽB rÖ=ć@mĺŔ 3őÖQ_›ů‰aççKyZĆÁóي;Jb>JkąrĆ4ňYćY.~ÝMć^Ìí˘YU‡‚ŐôëCîní 5 ZçŤ\u*FĘÎHHš“şŻÁsśŚú ­ĹżŠď”ŕGś-[&U>_í,oóEVQĂ ]Ý’†şP˛‡žÜŐĂgŞ+ĹôpuîŁëźL <üéŃm-5ç91BĎŞĘňLcžÖŞ5=7ŕhŐ¨h›śě€JŇ(+xSO‰ŕLL™:ő˛Ž.„ŇÝÔź–ZB ąť_?ËÚÍŇmm*OiĘÔżxžjŠÉbJnXkŐôkň 4˛ąœĘd $yΊ^ú&Móî④˘ŰĄĎÔÓfZƒe.uůÖŕžÁ•‚ÓĹÓ< í§şGzőVMřZĂś;‘U‰Mč}—§aÄ[Är3i)ą—A×ěî`ŸĘj š{ŚZÓuĺƒQ÷$ŞRîÔyŽîtžjż3÷Ë֝YSœRŚ{dýMÜA––Ę“-!Œ2ýşĹšěőPś$⨠šxaƒU-YĹ\v“ÂH€đWhú=źSSë!IňSŃ?n\%‰×wE?vŹ‹Qđ‘Żç_˛WĹëxdC֎égRvŻÍCđ4ž÷§^_{prś;ÄŹ„ť’gĚ-‰ÁPŕžzhřĘj;Ţy{<ő„Uö•ÇvěĹ{ăÔ´Ďö‘ĂËŻŞę;Š$ŠsH˜ לpOŢk΄8†g*Śäwƒž ˇ—÷CźQ÷ŹWçËŮG˝.%ô—„brcvGĹŠóÍÖFĘę*Њ^UVu]˛HFי˘ƒ3_̕ řl}îK&4ɍUżÔpw\3%čŁ匏xËí_ßĐMô(uIŁ|cA*çéY^5ŽçÇ^盘’őٗ‰|ä—ý,ëqë~CÜQó[aú ‰Œ‘ŽäÂąqU‡ÄFV7'ÓQzrΡ7‰~đoőľŞhČťdŘ(Ăč>ƒĚńĘ,@ăkOĂÂ×iîgÜaՎtŒŔ/ë˙TŘSśEAŁ›mR™˜ĺŸrp hűŰj|Č˝~äq7<;9Š<ŕ˜űńUŸ”´đŐ\Ië–=٧ D P­S@‘tHź8’!}bŃl 0‰tTčK*š˜_¸嗵ăŽXTó„źüĚRLŸMA×#gZňr^ĘÁůzž\Œ2B4ă6㗴) Eޝ´€šdíĄŢQ†CŹ”_żőQŹkó3‘†_(sZçăčŠ=b,qĂ ,ÓN°yĄÜhNś3Ř3Ôú žIŞ+˘nMô9PHŻUqdu;&ŤD?‹ď_4řw"ŤbcŻ_–,ö­“_ĺ†X]ˆ˛óՊÖůÎĎ\[}čť7$léœ]+vÁBŇt†"}Eu렏sş‡vŚkŽąRî9mŕYGŰv_mˇîTŘîˆĘMĽ ŕSîa˜{ĘkŹ&˛k#îĺý(ÓW*äŇMÔ ^Ţ&Ă7,x„„Ď>`lą_Ÿę=Ň5S§Š˙pŃú(j.­K ({ œ<ďk<ĂD4VülÉs./îőç(Šß<ůœ0G’;8dE7Ł픋gIMWǡ€—tĄ[ů‘|›+P3éŽ`Ľ÷¸˙ şí˝_¤™#§ŽMľžąp}lߊäFó}‰É[a8Ž‚ËSNĆBć÷ŠăÉńĆďÝâyUs6,_şńŢKďăł:0˘\&Šó\_|Ĺ`#ÔŤ×v2J ÍŽ˝,59Âaóqę›ăĂŇŔZ˜ÚŻŹ‡üad^8ËE˝?Ť:˛´MŹ˙íËŽő0Q‰[Rş_ÓJŠ–ÄMŐ4í+U<ݚgŽ´„ßpž0üÎ:ĽŞs’œŘDďîEüĄŁ˜%L˝i9ë:7Ů#ŽĐ ľd…ąp˙FY;|Š~RĎď\çloŤMŹö!sÖÁPÜh§ŚŒÎOV*B}˘1žŢł2†‰ô÷}li_š8p$—Ř luë‡[/ Ş˝?đHx­KXźTĽěźŤÍŞOČĐËâuTň˛†›eŒôXí>ڍŠŰfľĄPóŹ$\ÓĎňœŽfn˝ćIJâ{ńѤiůb¸¸Dkű4ëšU–ŻĎDŇ,'>TůÎeVüЃ‘ňžo˜’_‚üus…ÎĂČ …‹Äę-ĽÍţŸÍŚŤDż˙RčՔ„řĽĘů¨ŘK–!Řš˝ă[Ż+•Eź9H%rČĂ×îąąó§g w“#=đŒÇăó°?ťÂ;ąďŔú'7{Ű lf_¤Üâ›Íň{Ľß\Ł?w!JiTÚSOáýúÓ.[¤a?щ—ŠădâZەńUkNÇ|9"ËţđÔWśš6]ËgöÚüő(7÷R]ŇWJJ=PîŽçbŠéˆŢá(ŒńŮfKĐ>ß'7ŁÁóĺĹŽrŽ[˘ $éjĐ$ńsžĹtÉý#F"ÚÚ撯éśě# _2žÖ#¨sűO Œž„ž 8”ˏ×q Óhű>У͋Ýş\?ŁWŰ!\‡š‰NSÉëŢDŃđŃ ݃ š}(”™f4]jREÎżNć č44oy˘őu*ńżžď÷aHÓą3$ĽÂ’űrĺýÂÂMüގüŽ$uŠĺ­ŒúÓóׇ;‚ĘâČa­őčT‘lĹËŃčŒU2k0Z¸^Oä'UvŞżäB"Bď˘Ňq×]Ý@Š5mQ㑠¨˜űÚ1KG!——áÓ8ŤŮSŽ_jfđżím–Qő$ ĄŢ6Ę^°Ýν2äń¤W;˜đăşExĂVăr<[ý~óŮ}O…žI–šŚá}&Ľ5“7šž\†Í_İ”Łˇë‚š8ŰÝ<⒢$´p b¤ŸĺŚńt=“#đ.ŕp­żaaî–ШČßdÖl?–§Ő|Îý¨‹Ăˆă_iĹoË$Š­ŞE*˝p˘ńAS‹'Ÿt˝śŇź+§ą~ůţT^MçJ• ІŢ`§˜ľŰH˝ZŢtmöƒí¤sUŚwXíډăFěŘmŤňŢŕtJ>7S4kĆÉĺÖ\ŃŃŁ]vš85–Ň!Pś˝‘řŢEůŤOć+‹—Ŕƒ(ĐîqŻoťůĎŠú}X ˇ7€umDt6ŘzYě',y+Ő`yŐ,ÝV’ĺe3—ZZ,Dv(T> endobj 1590 0 obj << /Length1 2752 /Length2 19730 /Length3 0 /Length 21301 /Filter /FlateDecode >> stream xڌˇPÚ-Škp6¸ťKp Np÷gp ‚ťC‚,XpwwwˇŽorΚ'š÷˙Ş÷Š*˜Őśş{wď=ĐP¨Şłˆ[8še\Y8XŮ’Jěvv.VvvN Ťđ?r- Řäč ř‡…$hę ‘I™şB •ňnv.Ż Ÿ ;;€“]ŕ?†Ž`A€”Š;Č Ä wtş ĐH::yAVÖŽž˙|Л38ř˜˙rˆŰÁ sS€’ŠŤ5ĐÂhnjPw4]˝ţ+˝°ľŤŤ“ ›‡‡ŤŠ˝ Ť#ŘJ„ŕrľ¨]€`w ŕWÉeS{ŕ?Ľą˘Đ4ŹA.+Ô-]=LÁ@D`2:¸@\Ü,€`„ .§Pq:ümŹřˇ3ŕŸć8X9ţ ÷÷Ż@ ‡żœMÍÍíLź@VK "ŁČęęéĘ 0u°řehjçâń7u7ٙšA ţJÝ #ţ` ŠđŸú\ĚÁ 'WVÝŻŮ~…´YÚÁBŇŃŢčŕę‚ň+?)héťŰ?‡këŕčáŕód r°°üU†…››ŚČŮ ('ő D„ň[ftđ°łłósq€Î §š5Ű/ /'ŕ_JŽ_bH ~>NŽNKH@?%ňĹÇĹÔpťý|ţTü7BáŕX€Ě]f@+Ęďč1Đňo 90Č Ď?űݟ?B&ĚÂŃÁÎëˇů_GĚŚŹ(-Ľ-ÍôOÉ˙*%$=>,ÜN..€W€ŕ÷ßQTMA˙dń‡§œƒĽ#@ŕďd!]úOÂî˙Lý?ëÁřďXʎščš;ť9äÇ˙ó°˙ĺň˙7㿢ü_Çü3’qłłűKO˙ˇÁ˙Goj˛óúÇ2ˇnސPr„l‚Ă˙šj˙^\% ČÍţľrŽŚ]w°˛űˇ‘ 'ĐBäjný×lü-Öüľgv  ŞŁ č×Í`á`g˙dšĚm!ˇ‡ d$˙R!ťóߌŇ掿–Œ“‡` ›zĄ°C&‰“‡ŕĂŮF  ç_C `cupt…¸ Őů,Á(żŽ”—Ŕ&ţKô7â°IüF|6É߈Ŕ&ő ؤ˙E|ě6™ßˆŔ&űqŘ^˙F\6šßÂŽđAŘ#ťŇoaWţ ě*˙"~ťęoáSű |ęż7€Mă7‚°kţFv­ßÂŽýAŘuţE>˝ßbiú/âŕ„„1u1AÎÔÎřݜ›ó—2V ŰßM„¤cęú;„Ĺě7‚x˜™šŰşŘ™şX˙Ÿű—ü‡RĄŘÔh´týCĚóřď ü7*Çßb[ ëŮ pý+˙HŤÍ˙E<Íí ÓúoaÜż$öö´2Ćl˙B.HC,íěţĚr“ąýî dpـ˙EĘűKďěšţÉ2ĆvŚöDtČňwˆ…%Čý°żÔŽnŇBLŹ~“@ôVż^kŕŸ&r~w›ŇDk/'k ĂčIŢć™Ű? ¤_ż‹ŕ…4Ćî×6˙ÖCşűGEk›í7$–äřÝľƒ›˝ŮŻű×ꏔ  ›ăď¤!1˙đâŕ€ęô;$Ş y°÷››÷/Čńcƒ4ÂŮÍŃhaöťČťńˇđżf‡KŕéO$Ä­ĺ€d˙ťtˆ“ ĐôßÓÄóËčţGży A\ OῊBŇ˙Ÿ•ŕ€dő›ňȰšZƒ ¤ŤŽŽ8@b¸ý. ÂůסsGđŸmƒœű’°Çű ęů„°zý!-÷ţ3$’7üw˙u}›ťÁƒř녅Üí˙Á}a=ć( łŽćBÁ6_ƒ›o*ʼn=XvF_MŃěh§0°ř,€[ÜîĐ*2‚ÖŔW≝˜Ë[Ňô—b‹ä>G 5ˆĄńošî}ŒcŐ&všPćÇń{ÇňŽÄŤ{H‘IX4Äv}}ľma ŰäirœÝřŃU?áÜxtËzV÷”, ‡ĚîźŮ­ŕU@}(™d‰ÔühX8M“k–9CH‰ŕĘBŠÄˆ}ę‰1}y5…=öL.˄âwɕÎu;ă˝ňEƒÓĽˆšHö{x‚ÖGb?Iž`Χ¨ŕăÚŤš,vV¨ľárߥ6ŠA}E9lv;đ‚€ě0ľ_S5[ N× äŒu'ĆŻNGčs„L–2˛ŸTžtíö‡"_‡™,”ÜŁ•˝|v7ŕ.u.ŽNžŽé{ę[n"Łlâ-×KŹH=†:űá*!\ěňˇűć٤SWůtٌ;MyîzŞˇô–JwCGAĚKLĹŔÄÉKŤăŁˆ˝ŹÂá6@Žh2ƒB6č`Đ Z”Ń\bu>Ű}â>ÉÖKáW¸÷öđ Šő˛K+ă1ĂŽ'ˇ1=ŃĂűƒžÎϗ7;P˘P%xC%&żdQ.6Ń$s =˘şwÝa\’{oEeĹôőîčUýžČQ8Ü´^f¨Š˙ˇúdm’pĺKÜđ×<şl‹[Âz_{óöórC{âĄń‰ĽGňő‡Fis"ĺP;š÷gŽŻĐ>n#$aZ;ŮZև)ë—eĐŕK< žWČtŠZŠĽ*W~‰VŸR úÖţŒý%˙ŐeÉŚţ0IWü‚a%Ő۔a˝Š˝yŻAĎţŠ_CŤúľiĽôc§ Ňiąkwg„(HšŢŤúÝúľĆŽľuM˜^ÎÚ°?ŽFć,˝&Ż]q؍4:źéőˆ˜RŞŸbô´˙6ƒżŤ[žŒ;,rźŒĆ ŢÁůădéĂ.ŐîË+Vş—})dxČVŃjí;6ÎzS¨&ˇ:PŠ0 kŸawe´LŤ˝@ąŇçCV˙éôŃ^ŚűĺʏRŇ̚ä6âřÔŽ…ˇrř!ů|bř|âËJ÷*ŞčáŹBQ+1_2BtŞ˛„üžĆÝdáîÚôčę\JĎš•’7ćékrZŠ‘k.ŘČ Wŕ?çđ9˝i‰äf7‡~:=Ă}ęŚŒćĄŰҕ”–ľ“ÉŮŹď:>90˜´řůcM†¨őEjř7łŒ'ĆRę‹Ţ|“pj€ęűďÓ?bRĺœ3DűjNüč->úhI€p[Š#U›çzƒ9m‘ÜY˜óęKzĎČĎf&âşźď6|4G ąçdüMœ~,"艰! 6¨q簗šËă2U×1  ŽŇcA“ő+ŸÄĐ&>pu}ţ*c¤&šÄ’™˜yŢYŕŒŒh”Aq˙†‘ĂĘăzł=—›­ 'űW›XéŚA%Ÿ÷’Š÷áÉÇzÖőÔӟҞAştý%×‡Ü ďs˜eˆf„wx}ű*5źf9›[ź|żsxVp_diuLÓć”{/ :#W!٧ó)Žžů:„îQú¤žŤL§ă—z>š ŢŹćmßő#ť–) ˜)rœŠlŒ=Á1‚{בü]Ż őhá™.1Ś,ZĹgB&ĺC—éFşvŕý͘ĎJFžŞ˝řt?SŽÖÜ ÷Ęŕç¸ts|ňPB.# t”lUwڗ••[‡_b ŻŐÔŇK$ó%áŒ*x¨.ÄO6˜Dű$ލ÷–űĹâž ŇkÓí2ÆB=IôȖź bÇ kä†$Îŕë‚ŕ0‚%˜m3a‹öh1ýGKĽ)ÓÝΚt×ďŠM~ˆ`M™AŐĐ'–MŃ!اޑ˘*Đa(lNĄŃ‰dceHŻŤ*3 *íű„ŤsÉrŞĄ‹ńdŻ‹˛œÎáëDŇ,í_úËŕł:[§tÁ_ëgŸßŰ™–y /(—k:š”•]lŚ) T!lăĘ[MšyPl&żnvéԘL€*“j‡5 ÔvŚ0ôőćz4ś<ďçĂ!~¤Űé4Yˇ6Bč|ĄĄ-WęđúĐnťîVËHÜyÔuWŽ öĘŐěV`JŔŐÜ €ŽˆĚ)l ţ\Š.GĂîUé‡Íś‰/ElÇ*wđ(4&´Ç$>Áô„ =‚Ź’Ç OmžŻ{XpÜ7ĽŚš=yČÂv˘sÂÓş™/˛ -6íxč̆ĚVœ™“^_ąTâ+÷ů{6••ŽőşeĎáÝFČęűŞf•`Z/:ŹîŚ-Ř`aXOŢ2vˇ$ao4śb śqn†jQ8žősÄP€:ŚOúá#ţrÜEi‹ÔD€ő"ŤvȏÓű< ťČhrąţ~‘ŁÍ=[ Zça^Ü&†B îç;[žW‡˝´éşšÇ ˛Ÿ!CžE„™!î’Ş@ď-¸ŞŐČ™w›ňˆ*íĽOŢ˝š}]ŸĽYř?‹g¸š0%:.& •—ĄźóĆ5ŮĽđ}ň/3e,ąŘÓDCd`u•#ąvŽ{ #cd‡ÍqţĐXP!˛ʌק‰ÜĂŐKŢ˝Î‡Ń  âZ§ĎĺyĘf‡ýŮŕÔ;˙t?Ϗ¸–¨Bâ,ĽŘÓŇĺł|bň7žßÂ#Řw.MVţٛ­>c˙5]Ťuđ‡¨ÔyĽŃ<ţČźő¨č^=Ěá°(č<$až5Ÿ E§UŹŽk-ě}ŰÁeŽwÁÇŠŽy’~Ü"őzĎŕţJŸ&0A‡ŚŢł€tIöě´lů†[,ˇŔ˘Čş‰#‘së[PŢĆŰtĎͤhő÷ž–äs_DŰuÎXÝú%<-eͤX=´…îß§:2ˇ#äK(ÚÚ*Ôú X"YY=0CŰř–Ň6L˘+ő›2~žŚžú@ÚćNľ\'ŗyl~ŕ?ŇU‡X EWƒęđMcŹ/Y ú‰Î§ľ5´˘@´ÎöpĘ2ďÁMtG•Năß/ćzO$ŢyťďÄęőÄÉWZo×ĹL?=“vˆÍDcöD(GńĄŸuŰß˙řž1Kđá@ŁŔJ˘Ćg!R@óQćPžB”[ßɰu~ĐiÔúă|GÎh{\ŃYˆ& ŔŘLźwîŢjŤbˆhuŔL<Áƒ ™B„Půĺ]Žö3ͰNBđ%ő|¨ Ů€€ÓVŒ‘EšÄ(ŮŹź=4Ż>‹ă 7EF䄗.” Rí#=,jRĹÉ NŠŞ8UŻel€Ľ%ÉGJ8Qŕuň“N!mœZkˇtߪa§bŔaH7/܋3Qk~Úa<6 SLËwWIńěaľ§Ž˜őJÂ=°:ěĐŢ-kÔźÔxő~÷ÚÂk6; M>Ţ˝GęVî* teM5`ŻXq‡Ů}4WĂíÍžcƒŕĘůŤ3?ŇZ隡"ú-őÁĄvÖřśŠ(ŽUT‹{üˆwT?ĺF„šT °[jĎđՠ۞öĺ`™(űEÓ3㯜Ě$˛ÇFűćř}——dDzVW~5ž~âĐť`ÎśVáIŽ3Š€›ĂA!*¸ŽˇŐ´ƒ‰ďJEÖľŽ/JÓ0qhŽŢÔ÷NËŽ@˝÷ ŽY3$ßIż€ľaš{Ü}ŹĚë~éí–#fö9˘äYcŢťb^ÂŚˇď‘ ĄË"`GE/6‹`!˘q¨Ş[Ŕ_@îčRo×Yv9ŃM8'Ž˙˝-ËőF Űp\FŽ\ĂÖó4ÝĆĘ,ëuź+˝ JÇćŇ ֏ă0É4yNÎm%"řţ_DŒź=™}ŒâFĚ Á雼Žĺő!ľ —šýŤ_\_Çk,K>ŽÍU„Ɲ7 ůoŠq˝žŐK„9*‚Ń|^Yś×}ĄŚČÜôř1^žŁšeŒ@Çž+šsľpů„Ÿ. ­ěm^הVxÄ#űvÄžó[pČA:mQJ‚ žehćâM×Ö/¸3fŞ-^S’*ÂMȄňSŔăśöJžLăüŽ,ţu4‘îF=žĂ7œń1Ÿ‡*–@Œć›;¤,×çI?Շă×nźO…ňžŐ‰üsýSj$KŹ>ƒ&n+ĎúxaÄ䵅4 \aŃďů: fŔA!Ęň䵇Oc犏92eś_ž˘VߡŞŘ´%ˇź,_[ÜeŞAÔžœw)VšŃJŽ`(šIIúŮąŽX"ŚŤu6”Î_sÜÎŃńˆ`A%ŻČ/ŠŁTÓ/ŠCٓnV8üŚäGkƒĽyýřT6¸ŚĽUŘĘîmääXÝ …ąWę;g†G(bayƈ<3Ż]փî/—ńzŮÎ7#†mľHVÜv­śýs#fżcúŃqŰ%Ž'ěˆÝV´ŤČ­5𥏱ůÄÁy{ąX€G=Ń,‰s[†Éď°ůä×&fĎn‚çŚÚŻkÔ3‹ˇč˛_{ű5™ŐćO™ŰŞš!˝í „šGaĎ­ęěş)ń&ޒ›*ŁFÓx÷-B­„zŠ9Ÿ,¨č˜-g_*ďx3V:żŁ:ľďA ŮCó:ă˜;y~ą›9cTŞk˛ÖŔœ7ÔeŠtžPŠÍcŹĎ|ŰHÜî˝Ü(źę¨š+9.’Źű9„8[ʰqhÍŢ-3d”÷ŢOĺ€HšUĂŹVkŚám–1W¸Ö§šďD95ÄÜj”Ѥřy_ÇkO7ĐŃъC䓣´;hŰđ|ľőčoƒÇ_+"ˆí†ŽňY¨t}Ţ v֎1='ŞX.#Čt! At'c¤TF Kń:˜Ű´P–3€Oé剴žYÁ`1ˆżÝV$3›Ćë`ްRq ăÇxč/)+§ x)=B'Dúôžş’1čOGôÓTŻ`ˇGR4őĺŠď–2wÔ,@cR,‰ň q‚‡Ó¨M:^üŒľÇuľÝeŃ8|Q3†đýŸţw<˛í¨Á@~LăÓQ#Tbrcd‹d&ťR J2oĽą;XKe ˙StŒ%BŇ^vP‰őť5+śTĎŚÜJ剓Ţ)MNŃs+Éď¸oKqМPütĺôƒn{˜[§ŽĹS~¨Š“#ŞÚ‚„Żľ5 wâóbĐ֏LÂ\GUÂâT{Ó솣Ż4| Ř5PGČhú%wr”s^|…gOHv"z>yR<­IĐŠŠB[\˝•J0UFŘ1 Ä7sĎĹψÝZ´–$w$ěšWđŕVĂ6fđńşĽ,՘ęÍ_Š‚`ž]J—tbůIŸŇŚÇíí#Җ„¤Ë*ť 3^ű–ŠÇwVV…Ö¨.űŰŰ Oo†Hk wö*ۛz1JěöĐ/żߌnúŻ‹ÎƒŐyŃńoĂwOyß;Ú(¸ $t5Ź0SŕŞüđ5r5LSF²KÇ`,ńҧ­˛ šŚŸNu Œ™\8r9ÄgŃ}֊n~l™ż›ŤĚ‰--ňVe|3TœŹ>§ścÁHžg§|B0m†c3ZŒ ăŃâfÜSKHžFȕoÜfßő –mÍ˙ÍŮEľ›ĺĹć'”3:9de¸OM›˘8Î6%gŠ (ƒQGiS_™˛ęrĹąű&HÇÁŸ6›Šyi_'H Ěڃá}ťřŔ_ąĘŢ҆žËƒŸę„WéK­d:ťkŞßVxŞ (lŽNtŹëŢ龗Чźů–@+jYĎG–ź˜ść‡Ő§3´í¸śÇőAˇÉ¤ńčËwů6ŰóF@Ś5na0ˆë†2ü#%´…d …" ěŠED÷^ ¨É džë2˛-ŕbŽç[ׁ O-ŮŻ?A ŸžžC¤ź†ş˙şŢÚ+ô’ËW<Ö[fC—űJq^äő`ŠüFaÖĂŰg\šŒB3ý6,ŃŽł!źl5Đľ†>é2žĎ˘”YÚ;žB3ĺrźß#at`č ,Â÷n/\ü8?ůźgđx)芍ł…ârű¨†ÍŁ‘îĚkćKööč.Nř€óžČLÜď}`vęË|EiŢ˝{6L:Aňąéł˜šśšŘ"˛Fhź3~ŤrĐԗ˛Ě‰ĎĂJ&^~˛‡ƒ˘ ćqËđŤ?“Ňžů6P)ř%[˘ě X—_Ŕ8^’á×θ…šŁ(ÔŤ‹Ž°ë —6Ÿ+e9JĂlĚţH@Ö ł0* ˝í[Ż`BŚ@o]ś—mpô˛b)ŹĄ$ă8(81(Ž~‘Ť{Ąî‚5 !§Q˙qfÚý{¸_›KŽŹÖdënGí[ş>fwv:mAyă 5vÜz}÷&Ź:ŐÝűl/˝çÝ)0láŒ;Ú¤¨oXlvŇ(ZŞEWaęyŠGö˘“qcš/şém„ŇŽ¤äŧĺ —ě“”ŕ4b—ôQuÉň]˜W“^ƒ/îő§ď§„)X 8¨+yV•°°äXDžđgäžCq„ZPe`Ë |§M•‹†}OU뱊ZŤ3gl’Ŕ‚f**Ă[–Ńv°QňSÓuK5S…­*sOŰ35śR˛ĺŃsěv\ÁÝ&)ĘŽ~7i™ű–`íDśSdúažöh$Œ93çKʖ•í€!Œ4?N˝(lJöź‰i˜2›‰B!ĆŢčć''śčÎu™žMż[lËWH˛` ĘĐĚť5Łs‰ŹýŚY2" J˙ęÛăş&E{&ňĆëdօÓÎg8ü/(„XĎÇúˆŰťŰ•ŽżôýŘK7kK(PR J6ő1sTH—Űu˜Đ vüFě1cEzÎ×1éŤÖęL*ŠuZJwWŒą ­~7ë(7ŤeЍ¸dšŐ°ęˆÔ7^ÓŤ5>ś !)˙ü”Ŕ“WQD§ĚFƒČ$-čţ%|2öŰTɏb˙xÓO|Ą1ÝQ&Őö/ŽŤF{‘ç?~SššŹƒœE˜ť_ę9 ’vĽsív~ŽÓçWYőÎ;Ţŕ5^QŤÝÖ?g×>-šƒŻČŚƒÝ”4ˇ)á*˛äDQŽŤ䒔ŒRÁt§öÇďŻxŐ6j7EŘďƒ{w§4Ô^wE맸ëŕ–YŕO˜Ď˝”­Ľ?źÎÄúÉř˝ŮaľëUi Ç!kßŔlßT‡ůÄC…Ďvаpşűńőňˇ5üaďًPá;Ô¨ł¤ţńĎ+PĂ`„UÂÚ@Ę ł ׺ÔÁj݃ń’Ů\­c€Ąvaçěä´Čç•-vŘ,ŹKrŐ<‰¸zmFR=ɁŢôp•ŹCőŔä#öꃀÓh‚Ć ŃŮöF„őŕ*žŃÄk?žAHÓ˝ř ,éŒßä$ËŁ}8úBÄĂSÖôzŞˇˉŔ*ąô˛H¨/R°yˇČq›Ł? €śxÖ̰¤•Żż’“Ńy(v˘ĄAď0cľĄL<€ŇvŻöR5łtOoČť%Ąež yXňs˘ŽYV?ČňýI7m|ąjťçˇZ9l´Ô磟hĐ+zŒĄäœ}oÁ }?@őáČ,܄aM{š—ęĹƒĹÇ)}2Ř WŹFď mĄ k(ó|¤ŠęüÇŘ>™ąč3™ş_äšmń\Né¨ÁLéŽiĄť| Á kö´ŠÚĂoŚŃśůâĘŞ­ŽęCć~ƎÄÖQ˛†ľ7?[Â0ĽÓ7Q0* ”Ż‚ůH*.m^Ú§§Ŕž(Ą¨Ľ+€kĂĺjđÄí&Öžo—Â}˙Ctäłb”ęŇ8 ˜m”ŹäÓ% ßS;A3Ě?ą"ąĺ*ź¨MuT­í˛„Ěç׉¸űÖpLYüqâ폨ţ{™ŚvŰ牉a.çž0š)vઋčÝ9VíÎ[Š72Dő9 YńZ͕*” G=nŢa&2擳$8Œś?F3Ëë˜7á `?ˆVČŢ)+*3ꞣˇ|ń“F–x_%uźƒIó˜˘aN:Y(WJ[˘ =Lmä:•}6˝Őúş\ý¨ÜÉou„?!”ăŹ1qZ‘ŽÓÁŤ ń\Ž0U•ý<#RçtWÜńvţ}ů(2|Ň.ŽěĘ­şŔsED•đžuřšĄ¨e7ž1ßWtšâ÷"_ŠéR՞żá>˝Š,~´ú…żş¨ŘZťnېO#ŐĽŞĺÄŢźTňƙŚÉ:`<Ŕ=HaŅ™iײ(“…0"f*<ÇöůÚC=$;žŇg"CĐӂ!mݭ̀(ö:Ů7Ťt}nYčhvaÁŕs\)ĽŒ;á&jy"˜“ôEgiÓĺhz†Ći|šH‘ďI[/90Ź5wÉAˆÜr[|ěe§';}zVař÷›şĘfžĄÉŢ6)•Í4’iç`g˘uö9ă`&÷ŐÉ؁ćw@ŽfŞ7wËG”˝Wă˛Ň$ýą™Ď) aÖ'Ä˝ý}ŸňKŮꗔ FrŃyňčäş7/Ůsš¸U %ď⛱ˇ§ÜFś ‡Â×°1qOŐvčşÓ"_PÁ×Âs÷ť:Ďč{ ʏU~ľýČJt]Ř2+úŚ2>a%~uő…‰HS°ZԚ•ŠČx“apź´ÖŒß_…F1´WKXßĆ{œE@`ˇ8(ԝQś~L?3 S§"gíź=qíĆo{ŇoňfV•eLźź‚IżŽ¸€•nŚś7ţšwjźTqú=o hFž4aK/ÎXż‡ÜrĄFßęsř@+ęě›;üHŸWM-6÷ ´d˘”Í.§“Ćěď˘4 ű1ď˛Ýěřóă“ë çiéJď›Ü!Ý6‹ăô>uçbT˛ąa0ýŢ ‡(î$%'I‹Ť˜ú›X—z†ä$-ŸšâZéü,­yí‡'Z4=G˘Ě˜Ë†š’ˇ—”t­ĐäďMÇŢĎjoswuFJ +Ŕ<Íxë>×ÜvŠŤđŠžh¨Öʓ‡Ĺٌr†˘b Í;Z~Ú§ńű0î÷âĹČQăcZŘk=ôsî,;řű„ŠÍx˛=iĹBőŕĆ×vŻ5؍)^ëWJŃŠs4đƒ1a–Ú"ęÓŃ8VŻó8U0wŽ?šž0–ФŢ××oB1Ŕ*†ŹŔŠé—~2ܡôâz#M/wC I_¨ÔŕiˆRŞ˘P%ą“ÉŸ ¨żŤ€úţŠ0ĐG¸LĆâDřEřŹ 7ߝ͹R‘›3héƒ4H<ŞQ™Á˜"AŇçT.bâšvoDäkËĎąBł˜œŠ¨Üé5Ńݐî=Î&“(żmÎŃ-#zž› Nݑ+eĽ1ř "ˆ:ĆPŠ^Ţ4œ…Ô—ĹŒé}›mź{Ó§n2ćúĄq¨V$.†˛\ŃbĽ_!)1łĺ Ő=ŢäM`ąÔČ&4;iž*ňBEÎĚ-5Łóă’>‹Řx8ň”N5rľîÍ7_TWiQ)!$/FŐ䄉M‰*>{fŃoÔą­q%C‹@ĺ ˛‰ôÓ 3\Ĺěč,gQ",8Éď -´LżgSř4ŻWöćŠ.*›ú+ŐąTـ˝?bœHĐxÓ=$nâĚź¤ůiڌR|ú6ŞF°×wÂtJSŒÝdHŠ[i βYgŢzŸĐ~Š˙đ|I|yţhqԐÖ,č÷ ‚ߟIděiŁ3úËՓó ö§0œĆČWDœ‹§Pt+˘S•^” ŒAčýęüžÁ9ľîUę ýÂܝQ™M-ĆĹąôjՇ¤ŕĘh“¤4w…. ’óO!ˇ0JZ׎Ć|'e"†OG>ŠÖ%ćů›Č‡Œë_+Óúyp‘}’˘Ý–i^hěę˝äc Y€%kůžŁ~˛řĚçUĄ×‰žT‰NžŒOWů„šdÇcÉźDÚ§$֗Xn‡3lÁÁ=TMý“ ]™+S\áQik´”)šĂúŠÁ˙˝ƒ&řcz¤ž…FŒJĂ^sö˜ĐCë#ĄÉî§šœрWč[.6ş|ăRr]Ÿ[V|/;6cáŹDhNtřJňşcĐąçʑämôč>ě°7vRůIIKňÔCk#IS MiqĎŚ_&p{_)Hƒî›/X”îq'#Ő"hރt’°Dˇ‰”*ÎeçQ$FkĚTŞŮQçk_Ň ď\ĎHßjĚrS gĽô÷ľ*Lńěőó_ą••˝ ŐŃ͟7|aĚT!Ud†ÎŒ"×nłtů‹Eb˜Ł Öđ§}ԒdĚąîћť?Ăb-Ú”żUŢ.“DL{}ä1˘<öíżŢś´Ő5°¸Ő3Mq‚żÂ‹‹ë đsćĜâăłSSĺ‚wčHŚąý)™Kő,´ťŤ‘ďܛy‹Š3üL–,ř`[ R>Z9łÜăźôČ/č,|ŒGŢŽ Ż›ÖŕŚę~ˆű™Ęh×tU]&hUkĽ‹d9&v“Í/Hîđ.;ܤ¸ę˜ŘŻ˝/0Ř٧qgߊćŇÄ<—{yB˙F(ŒaáÇC ż=JTAs­˙‘ŃzîT7_ŞöAQ’]–ۇz™é}„ŚLKż1bgă!̙›ďţwp*eŔg܌ˇao§řPyœÖXő> ‘D ą~GÚwÍ1”—7(Ţr[ü•ƒCvXœ"hmÚíÄďYô•á"rĹŇŠÓ &_ţ6 ATétí‹ňLIWœŮĎpPĘó˛ 1>(F Ęi–"!=ëęöÖąt|ŔY䢠çNhÍř¸•˘[´Š(—çĚ´ŇĎŞč•hԜĘč3t,i§AΌ/°$öˆËZŮLĽf…ăş‚‹hî5ŸĘŽGkŇ9E–/)üڃ{yĚmϜpÉ6÷ěOX3ůęâś?=đ¨é|ć´nŰ[– •U€ÁÎĎJž‘ZzňŮ~fl"˝˘ű†˙Ą>{\‘e! Wpů6!뇺sfá=ň›&Ç̔‡ů[+Ôwߏď9Aîđ$ěaÔčnNű(ŽÍŰ2G´7ˇ››"/R •=ŔŁÄü˝É4Žwë+Ww؃üMc}í-┠źÂ|‘ŃÇ 76&ąšańŞ)ęőŇSbž$GV\ł¤dÂC#„łő´ŒÖNG¤Ă„ë"oďČŁđ__˝;­$šěĎ˝‰Y{dßYßĺ˙dEaÄkĎ]UűĹźâžr|´ĺë”nŸHu‡;/ôaeáKŽé‘&î"¨r1^9˛ŹđÓ wâUyF5AQĹG˜Vd#vÖ§9队uN̟ÓăIa?3žďŒ[Pé'˝ż œw$đ( ›LżW”+ÍF„Jŕ<ľ`ړi¨Ž9–éő‚­ßíZ6Í ¤˝OŚWKä…sňF‡Ň!PDg˜u”Öäî Ďà 쭏Ř{~˜ŃŹ´ľŤlBJ%y}™ĂČĂ8‰÷śő4ÁľÓÝOyƒů$œč߂\ŁLĄľŤŁź˝^q˝J¤ ŠąľCňţü‚›ď.l*Ő0—¸pÉ e0çž1Ć@1EkÓ(ëhäš.ňy‰öţHŻQwO2Ha(fcX€ÝŞő ’&ó˜FL*ZJŇ 3Ž–úćˆřs×*ƒÖ&~ÉݲÚ"5ţpíHFX‘Rm і+RLě7ŃřŮŇî ŸŽ/,SŞD“°%xĹáVͣ߇ ý'đ/m•ßVjżĽ°"ŽĎÓVҍƵŒ žŒ6˙¨HĚeuĺő¸1ŢhyL5hÇ.qş@]nŔް|ő#R˝€Uó˜›z4ŕâíS_C„YÖ<čűąîé­cťsb¨Đí"Ť:Ć+xv9F‚ú“ů&:‚LÄ~kzŚ2ą~žH-ľ^†Ŕ :ő–LYf)'áLQqĚ+|ÜžPŚĐU•“ŒĂ ŮďĆHĺŽá; đYEícÜĎ™ř]íoxŸgöŮL~¸N.çş ŇßŔĄśykbjxŃŠŠĂŠýÂĆOMžÔ+źĐýœěs[šO4Űş7>‡vˆ $´^*ž¤“^ëóţ˙ýÂű#F —–ݔٓŮĽŘ–öVn¨tĂęăĂ—!Ť€ ťň— [‹Ž\űwÓlď…?GśEM\ű\Ş…0ß^ěa/O´›ż$ťÝGD[ĺCŽćyşČŢ=öFjîeRÎÚ¨ÔÉ e-Út9)ŐL*ş ИăŠ]óÔ螛ßÓîm _]ŐÖ3>@ŁŚ˝wšTá>ţÓâs—Téói†|°AžCüQ2ĚŹfCĎë :–GőˇŹ&7ÇnˆŸ”/ů “ ´TŤńU‡ŘśŠ"şŤNl\ßť‹pN*X{#Ó˘– ę릜ůOR˘T …;[sb“tŽŻ2ơľÜXÄWé]6ćôŰŁ|‰"8‹Ţš*Ž ŚńŻAĞü‚€T,ms’˝&›Čývh.NЉžłĹuhšTᥙÉ-cŸŮęëĘŃÜG9ZĎŤލĂ˜†ÂĆf„' á–Y'?żrŸI•Źöď,h)1śĄ"8Űú19P ŤśFjŘźâŠˆ\D5Ďß~0?c[íg”EÚş  •ů/ĆqÂd6ť8"e’ŽÇ|kţ„fˀíŞHá†ćL.hšC?ŚXVőˇ?¸W(fź0CVń öąśÔYd§œ˜čÄGkT?Đ–ŞzdÄ+YóË!‘KlăŤßDI‹>aBFhςo‘yŐ1ŔŇŰ<.)L*<ÄwVő-“ ŃüÂNÄ"€}œDElĽşŒŒ 烧ƒ)ľůiÚjőúšD†(s’b˜­VpŽ’ŻÁe  cK_ÔŃ!d‰–•mĚ/ß5q ŽÍ‚ßBÝëEdęRí7„ér]9ٟŰa–őŔ›íţ’}Nô dŚ'ЎŞ)Ζ+ý°–ĂWłó>é°Lňc Ă˝7[” Ř÷ł$ƒă´˘řhÎhBÄřęĆ4~őíœ: /ŔQéŐ Š[q ř\_â"h+z{EÇž­—°Ş˙‡‡A‰Ů-Qrł|š:^-řHňč,Ůź“ÇŔ(˝™Št<~‡HĆ+AŁýá㨚¸nM KYĽů°cfÝ÷ŤŔŰ< :ą†”Ÿ- (5ƒésᡞcPţîDčWdfĺ§"‰(ˆlň0îŠ™ŽˆáSŰ֝`§e+?ľwHŐ‚ ÁGłŐXv›Űł{ zŘ×iR˘É`Űzť´'ćqŰąFóÉsIœŘ÷%‡đÎM~*áF|[“œşvk>œî[‰ ™‘*öVxő2śu-ؤĽžłł=čó€ŞÁyœ(  Č•ŻIĹx>'4 ~•3Ěř ˆ§>†]„ŞďçC|łâŽ#ŮĹ.˛œł×IĽ?VŐ ąĽdţx xíţćĆp<Ŕý' n{ĂĆ´q‚đ'.ýKtž"ҋą))ŒUM]v =”ŇŕçöŹóém;„Hoő€Ő Ăş /ĄĽ–*ÉNˇn Źśš|˜ œá16 ÉJúU’†Ă­wsžhž%aĽMÜ˲ÎŞ:~÷řZÖbdŰŇnU\­mEŃîjÍ7_†EžRqfŠ0:áŤyr” á*ęśĎ—'łÇ'T "7çÚgŒ´˘t1ÇŻŻvť”žŁQ+yˇÂŽ;ŚŇ<ĹžßQd„ĆJ „ŻéyŚŠÁ1çXeĘĎ+lQCłŚ’ć(*Źzëůd.L˙éLâŰčb[uŞ"z9z‚;Ă2GüϙNŁY´“ÖŽžťíWĂötU&‡×œáCŇ1‹úš\6),ÜA?]$i>ŠÇv#ç‡ýLżFĆ*ţüřlmţŠcčsľšyÇvTĹeHWŁwV`%#WJsbŞŸa˛‰×8F€DŤ'&TmšaŹ}‰žě–ă;[T!ć~Ą<&ظooÇt=ÂŹň鰖ŤtƒZHŻő7Iw§#“N”ΰWčMščŠ[ý“Ëx9üA”ŠOaŕ bQ, Ŕ[ŕđ[WˇçtF|RtËFý…nOäw&7ń™j7pC€ÝzNm'6ŽU™„p™nX9"dĆŔŮó€Z ÜqJČÚ- W-q2°´Ö” Ĺ+UyơŚžîâůöu­éąŤQîŤÎ ‹oÝ PєW…-VY¤swávVŮoF3+÷„_?c2šä輜 –yŮk•V0¨ä3ˆW>ĹÂbĽ÷¨XÚ G%íxՏŠÁČ'™ÍĆłđĽ"Ţ™4Ą}ńyˇœ–ŰÚ:‡Ć†ŚůhmÍ|V„ÔR7, žîÓۇąž C ?×E[Ô(u¤ƒéůű­Mkż/ J‡|E Séřç ޔ.šu„ĐŮGc[€dĚ`đ~Hń‚ąë(RŁA’Š˘yXđą´žÎM}*6¸\ą[6 złëŇ $$IŠŤé§Řh&×ö×5FŠ6. ҅u0çRͨ&>ćZ!ÎÝáHč¤ZąÁÍŤ!ýÉËČď¤]üűnľ- ¨QÄşiMm‰ĆĘi[Ę„Ż{°śÜAT– ĺ­ŒÎ­"ÄÔPÚI’›i‚{Ż~Ä+0}íkˇMú… ˘W—äżŐr#Ů WPÁßx,ŃkiäTE/‹Ř5{ÔfÇţšž&ĹĎŁŘ[÷á!Iůn G+ Ň?Ż;&śŰg”É&:ýqąĹů`r•ÚůťçeĐ.&)…Ý>×Lí•5ďŤ áC‰í<œŻ×• ßŢyôqRɲÇ✂éłF?1,okʍëi°nŏ’U¨ŻŮćáĽ|§[ ÷aŻßQŘŤ płČ_UH*&mŮÜ9™żš]›‡ňeËYCš+ýhăÄ)­Ť‡Č  W ŇűPž$¸óí3Î +ĐŢeKfSYéýu{ÁsBŒöYíť]šFěą×ŤÝYduđBŇ×LĽ{eË8ďůűăîy—VzfIy•RÎf1ó3ě0śr’\qýń…x…Űv s{ŽŽľ#NMĺˆ§CĘý'míEeKjş„üCHŠˆŚ$MŠ˜‚SˇđO‹mň…qš_sŻ4]¸áĐMsřB˝&oyëXó*!Gi1Oł/)§Ô’ĆÚťšE›äŠ7ĺËm—ŐdŠœPmT™9ň˝˙$ŘŤ}Búg‰•ř)eOę˛ĎŤR)^6hhŐĽťkIŃÉežؑÇú4*ćlš™“ŤK%čĺ2ý§ÂőŠ9dŠbĄ}ć1AMĚyKęsĆá̅^ź ˔KČsE…GŸ+ };Ś ZoĄ-$żłLÁ3ɈÎv¸ ľ\@wAąC‚^Ďr5ćĽŰk1ĂY'_ŠOچ„ ĘEĹĂľh̚ _nSyVž˙°¸ ě{n@˘ůś ő&Ś1ú›A6žÔ6*ӋŹSÎ CWŐAă@܌—›ßÚŤRĂ*řĂE÷Ü{cdűY2O˘ŚĆŇčŹô°Ürá(=Y$€˛Î“ˇß:Mƒ–’Ťše¸ďWŢđä/˘XFÇÂpŃľZ†ů/Žť|™áJ”că7N4ěaʋF2”Äd^QŐ\όźýRƒËN(˙ó5‘8Ît?•Ľ˙},{XV’Şš“ř'SmüƒĐGßú' VQmcE0şšW:ř¸ý˜î rI˙[‰ÇĹ śťÄ”÷çPúݚükOł™cy[LK3t‘Ľš ­WWő SltFTdđFŒ.Ńô!;rbČRń>§ƒ[âËpKîî§ďú‘ˆÖ'^ێ{l.ŮLö¸/Đ{şäzœçm˘ĺÝVĄ(ůóŚM´Ţ;öŸŒë›rŕÚ,„=ÔJŔ?~żińůÎőxB•ÉkŻ™­+~“*źîʉüłRşb‰Ś*B čŒg¸§!Ó2˝•ŔŚÓ5%˘… 05 Łyhҍǣ~: ćbŃefڃ\–šZU|מßFíÓ)Ű,˜o°CŻ˙Ĺŕ+7|‰:!eź4BľQűlĘŔcHáMľóáĆC,n+-ŠB•~vyA 8çn%fďńŤž7ŠÇţzÖćOíĆW#c¸ë‡R(ŽK3‘Ďî5%°V1žúᆤŰÎ+›ťCámݙo|Kęď%Ó1§K˝/1㠄˘aÁ–2ŢĕZŚCȢÉ6ú–Á5[mxűŰĽ\ö; ĎÔĎşsŮśnzÜřş° ™Vi˜yln5üňCřj A÷´ÎMâźÚĎŞ_”  čdőŐ¸1ú/ԟWpPńč:8‰Z P˜ŸĚg2č=#­yCRš3DŽŞ7ěÜĹxŚrź}r5&‘XvKwN ތbÁ&Č#˘2"V‡ ’23pQü”.ÉÄęĘő|k>ŰH Š%ýZ›ź|ŇłwcŰQ”›úĂ]ř9B°‹MŃmpĄJŻąýďâv̐ˆ\Ď­çj?׏Ki}R–Îöďa3$FŃ^›4¸h÷đˇTŽĆtY0ň“´ôœGňĐ?Ćę°–p• <'ĎÂvíc1()¨?AJÔIvŕU7˜ą)v‚5łů†QKÝĐĹ뽒›nŮúD ŞFVdYm}Î"Ýć˘Ó› n2RSč R0+ŘOňÂa{CŻRو°‡x¸łjýá:oĆӐ6Ó̔ľ"Ľf}‡ÚŢćQq°žH ťäŞ×ňÄűܲ’Čá†wä 5łöęI6Ž{ ˆS1w—÷$ť MřEŰ(\éŒă"ˇŸë#ÁmrRJćIYZlXˇđápäÓ˝Á řnŠůü]]a~ŤFMĆÂÄEuŠ7)'kMügĽnzd°,řĚ0Dúlxˇ0@ &ŰlĂgu계oCÁş/6 ž§¸:ýň9ň/ JcřóőVËTTN° {Ş%rfăÔĆz÷XSňÇom?Ý[7Ů1ۑ™ďň˘‹†ľ÷mˆDPâƒŃޛćxƒNWw6mo‹Š´ŽÉǙTSraĐŽqřĄéĺ­GŰŞ%;žĆ¤4+˜]ę.N|–ʼn‡& ŹőČáN@M6Cß›ŃŐKD„ŃâůT‡[ÚąšíehZCŐ[ ńÜLF^ëčĂáyϊ0ˇËrHžăhĎ oű!ÉŘG0§í_,ôç˝ şuÄŤ‰–cÔ/ř^ˇ€ńzQ)ŔŹŘőbČC˙‚v@…m™­ťkÚŞľŽGâۗşűąĂg*y´Čd2FšíôgÖ×Věú3¤‚ʨŒžH΅ŮßÉTüd­WĽ¸eZĐp¨Ă)€‡Ľ"ߟKTßůDřusqäíwý´Ńł­\ĄÉĚ ¨­Ô3é P`łŕ›čˉ4ÂűXüâCTœŽŠPŕŐŁFĎ8Çl>ČϟcŸ6öňnSąŠÎ2ýž0‘&Ť÷™•ŰăC`KŢ_KÚĂIŮ>‹ŮpěÓEţęĂ+ěsĽ6ăgka-[E1źČťî5zÔŔŇ&.XM1N*óW8K\ČJ‹ űžç8řMv¤¨‡KX´9ętš7Ň؛j†UzÉ˲ęŮćÚ"ÓĹáđpZĄ_¨(ŹÎJ,Ÿ@rjňkűőĘ?čĐ=śĄ’ĘvŘ[ƒ+üGKămî†džĘżţäĐďćt ă§ Eî°ĽűWÇÂsÜî­e‚~ŤáŰä㣠ć•{ü,a 絍8ó4ůš‹œ ń:čŒmÝ­ŮJ‘ŻČ`$–LÄT*<ŮŔ*ć`kUŘ×s˝P5=’Ýđ}{Őu˙Đ&Mţž)°×%ÚZÉŢVů:eÖÇGw2ŐĄÍá‚MaC'ž2ľĆÇçшO˝8łÚÄöJâ˘Öĺĺ0AŠŢř}˘Tú‡:)Ü˙PŻîŠ`WZoDĆŢ̝9vók—ŘĚą*6l9´ ś\›™ăślŠB…:Žî„ŽW>Yœ­‡›Bƒ(çÂo‰e‰Üůé0äôË#ńŐţ‚^eM9ŚşůŽę6Zý„yĽ ™ –,ĺŹ_D: ëęŇ.ęó”Ćtçd§ˆĐ›&ˇŁ54ľě“ՐŮŘ=ç&ŕiž@ŰŔóBôż|=AŕôϜ•‡śžSB=;#ZOé7Uțqů S­F\:$ŽŃpźvą|ŰĹHG€%gtŹy‘ç%3żú˝x(w•bôř EEĎ FĹ÷˘h^ĄL˙˜ĺg + ˙ž.8˛{O‡dpáÎěű& ÂúuZÄ^Ů168ýe,ŕUČÂ7Š:Ś-°Ý9x}Îw˙H­w/r(ČpQ/b™r3Ţ[A›}ýÁwÝÔúoŞűyYLžA>ŰS=€íŃ ˇóqă-Ú31bľ– Ďj¤÷Q‡s#d0ëÔUʈşUŘzˇľF€¤’2éę=F>a˙+oُîëąTpyA%Í üß°52i~Ÿ^ŽÎË5šŔIěˆR}–´‡NşÎęjŚŮ vÜěhŽáIčŕryrĎJp†/˛uvL]axťúl›ÓËö*ߌGÓZßVqaÝx+břřˇŐ+‚üäŹD˧w:“_‰„O†J˛ö˛Šč?ř;Ěb+č ’÷Čf+ ÎÜ/q2Sg×*d.* ™­§žŽ>f¸%t?ŕ3‡{(ţĆjŽÚâI*i'ÎY'ćŇđݘ3–lXâWřzpÖąÝ)TlműĆal‰ÉĽ& ᬔíM•źă'öÎM<Ć4I_.Œćŕ.HˇÖ˘âӚ_Ťᒡb(m#ŐňÁ°Ť@YĆä* >ŹÚDeÇSf _ÔZC ĹĺňŔ]ÉE|ŹöçF;?ĎŢƆRc AÄJŽ]źČW•ë^w¤8ѝlŕmg¨ěśž´=á ő“„Ü4 ؞ěŠ*.KOß S‡ZŒľ6)ˇĎĎ ‰A ćűZC †žŠ %K˘ň¤ŹźÚԛÇw„ĄŁ)a h_šężMÔôÖ2ĺ}sKY2śÜJş ŽĆčp§{2w7W5HΙěœŔ$–ѳϲSNpÝ?Ÿľë?Á`ă=ŕřĹs^ěŚŔć."Çň#ˇĆ¸2ažlŸ,nQŘhŸNŚřˇ|>ňL}úT=ůďí§Ôiˆ?Hş˙_€C{FZ8—I +Ć.\Ň?žBB sďĐE•€ß|)ívôt*2účšG>Ł“ foö¤Ś0A*ľąíćřÔ\čđrĹ♶eóÍ­űţÍČÉYK!ôŽJšÂŕo÷`!”ÜÖ¤…\榓€˛"GžŠ @?Ď (rXádҞ᏾}-_ßžI%ŞxQ ŠĽĚ‹%úžjÄ׹âoCńŁçnž]Ôż;ZW?jR’8„’éuAN_ą˝6rčŢœY&JĽŘ8 pĆ.z*§N҆łŞ~ą„AńGîÜik°ŁLŘwN“’äŞřŃ?Ňŕq–ŻzÁÍŚÜbqÎiçŒţ˘Ṡâá̧o6ٞK7´’ž8z¸ńnš| KŽŞĹnôŽ…LqŸŃgą.yXŒŽŔŸƒˇ•’ \˘ľ>>2ČlČîLH‚Ů_Ĺ䫞Lťź9fĹ.]fĂ T8msKÂgËďh€ÉR—áKAĘôăadîîŢaÜOŐŢYŸ{„dímúŠÁŁŔžął}R] rŻWN€ůóŚŇôbžůúůČú#{kxá&m3|ĺˆmagM °˛Úsî¤a;řŰŔ¨b¤–ĎFŃ$ž†dbLIÎ3|‰=kÂӒˇřq[iˇpą”˙?Âŕ­íżŔ›FPžq̓œꀥ‹űţC˙ëů’@}!>jŽä'v6ä‡}pYšĚ=ŸŠţnŤ?żtž?1˝ÔŻýxcšˇŚBŤrސC÷ ÁôńX˙˘ŽcdäżĆ!ŻćgŞěI"9%˙‰ÔűÚ}Pžcţ--T¸€É5_uŕű ćÉË/zVLkNU׸ϊ3Áiü—ôđ"‡h_€ý0Ź{o÷îŔ6{ÉŠĆ e (|nC\4?ɟ`*”ćěE˝ý3’ _€ňűž›Kn‘bĂűᐔÁ2Żos žÔ—ŢÁü‰îkúš ŔyœżÄëÇčŕÎ<Ôré Ě(n& n ďżÚőż:cŁH„ڐ—L^šbTŰ j{˙%™O”çóôÎČĐo­=Ÿ‹ś• ű`OËăz‡,ŮľüzĹ9óE3Š{+ěâß3*<âŢZćQţĄCBʼnżşZPôƒř:$É㖤93z$ŕG6Á |g—{“WŰW“qˇú›pžVk$fűP‚፛LľďqnZŰÚáŽňż›‰ĐDđŠÍÄîGBô•l{cęú'`XŮhż2¨ríQ’ƒ5ŒĐĂlb;đ@dz,MšTĎ#ÇɔhŮM.˘žŹŇ˙lˇŔĽ(Ä91\!ń’0Rlçăš8OúŽűč’ô´¸C 9˜NżsKB­@ˇŽŁTőqIóžŸ+ďRÝ)›ƒ°ASŕšg@^ůr§ńo 좠-üEř’GlÔgAIŤöŠî]ɞädÚŔUŇgý4‡őýkÂŰż)EŢÎP˝ÄꐂH⁠ß:ŻŚąVÔSĂ`âPr†ƒŞ°˜űťü9Ěó:#áf}oŽ?“ŻJ›ŇX޸ÜĂZ؎˝bčôWFľęC5܅쉏ժ’”ň?t=ˇt~Ĺ"ƒşĆ+Đ*l:Ä ËOŐˇĺE݇u†’˘úŻwKn¤y˜­›Řű‹ƒŔŽĆ~äK+čsJćv‡đýç—BŒcXÜßŇq˝Ü]2˘Â‘•’Ű÷]ԜăÍS”NČ^čIż€ŽCé0'Gd° r:ď. GX|ójŒkÖŞÝE[W谔ÔSúÓa?“GZL÷ŽLšú잙ő ƇůĽ<;CL˙}ë ąsÂÁ7\Ř=ÎW݉N~ g›cÂX‘Ĺ㹲ŠÓýx´9Äš—.^ˆbϚ@Hů(j@çí[ó˘ś9fRuH[­ł­F§”ây@zóšäŤŁ,(B‰Ŕ•ŃZ˜łÜ‰˝Vś¨Tš+Œľ9KJî,…Ɉx …ű7“˘÷ˆśËđEŠĂGrŹivĘV09fy…díĹ×|MŕúěG×!-&ŮŁbŢŇjÍ,ľłřjv˝ĚY(u-–ąĂH~;Ŕí))“Ş|6LúR,çŘG¨8ž‰“tő}Łó\‹7U”2ţ–—ŸâtÚ-gĐĚÂ&÷V ›¸Áf9ŁanFŔ,ňŽíIu&Őd˝Gh}ŽPwˆŔŁř3îďֈłŽî _ŽILßť:—é§ĺŇWę„ü%¨‹ţÖUĂÎÍ܂ŠIk´ĽkźJoŁčČ:ł„ĽöÁŚCwx¤ďF!ŚT‘[ŚĹ"Üvîpű%ëD•8P [C~'ĺä5”¤ ţś×n^’á~Ű;Ÿ Héԟ•růꍓˆt{ľX#•ôrJŢwß됔Đg)˜rŤp×-pz°šÍJљžÂ‹`ľŢQœÎę€4ÜW‹[ŁÎ4-4=Z¨“AĎ]ă?M›¨7“Ţvă nŻŹ/Ęţݤ™§ ^[UŕšĐBvłöÚY˝@D°Z9Î-4ý~Ă,ú ÄHĐ´{ XÚŰőӌđHhž4”iQšőEޜÖ-žĎW›] ĐYڎ™řäW§—f"¤öăÔ(O鄠‚Ž>!6ˆˇč 7Ćśo’D ďôž(Łč˜mŸ)eĚűĘ LG/ĚŁzÍw%€A7V°mÁ´P ˘› šî´ ŰęóŽ˙a =ŐqX“`¨XŹŃšó˒‘ďkQŤ×Ü#ŕŤ5č‡ýˆĐôCgTp˜#Ů”‚yv’@bc.Ľ˙Ű'œşÁsd…h–ő⢠ű͜ů'ĄX˜˙tćpĂČ]tE[VÜ žÇĚĄ éYP2&‰Îsť­đęFăE……ă8gŰ´Ž?k=—–cF].Ťâ”Wq ‹mŸďœ8ę)ŞĄ4\˘BÄäMĚ<„Ă8 2‘­ĺ5bÁĺ×ç?řˆ„ŹŞ‰ů´CéŞéΓČCĎháô~.Ç,؏îH~"ţÍOÔ.vƒIćś!0ąńäŮŔđ\‹CLá§×{7×NßěhÄFRÚízaĽ@ňăök_ĄŽ ⛠Ü9 §‹ăHŠFzCÜFSöTĄŰŽřŁ˝ŸÉydIJVĘĘ.Ěă}Ł•_ŁîaÎo>˘Öűä˙ś`'řĄvIŤ'›gsŕ (éňňߊ4E×BăäťÍČOČă1<Ąxb@Ôz茼ĜŚŢ0á˝\ä-Ŕ(x}JĽ’Ťł‚Xť'ŒŢţńŒüŁ#Ó 6vŢ_bdBŸű‰Ą3ßO"ţöġ!ŹČťÍŒěŰŰtyÁGE¸ÎoˆĚ¨ŔŕQPęHą+eŃyÉľćBe:’Đł7@kƒ¨ĺÔw­żžýĹUůo'Sů4żźŰa)aö–Šť?żĘ9űTv¸ŐxĹNuëéygŠť l¨şŇ•˙Ž´ÉÉ뙌l˜żű3PC‡ Ć᫖ĘƐk`¸ăqw ŠgŠ z#.ö^ćŠÓćţÁţ íŁM¨˛aÔg-ô„Ÿ‘Ýx|Lq“Q 5&Pœ—.<˙ +ô7] ˜„˘,ԇŸpŔ¨҅Y.HßF}fŽŇreę ß´`Ěbž{§<=é9óďúG\Ó Ăčœ=>„hő 7Î ¸ßs˜|¸˜J oÖĹíđٞ/ĎěŹužm"!Â&ůŒ‚ąC3aÝśuŻyŔä65*ľF&tśÉ—…uD§‚ $¸ĎýşzËFT€mŹ"á<Őmíe–ӭΚNΠŠ¤ă2 endstream endobj 1591 0 obj << /Type /FontDescriptor /FontName /NLEDWE+CMTT10 /Flags 4 /FontBBox [-4 -233 537 696] /Ascent 611 /CapHeight 611 /Descent -222 /ItalicAngle 0 /StemV 69 /XHeight 431 /CharSet (/A/B/C/D/E/F/G/H/I/K/L/M/N/O/P/R/S/T/U/V/W/X/Z/a/asciitilde/asterisk/at/b/backslash/bar/braceleft/braceright/bracketleft/bracketright/c/colon/comma/d/dollar/e/eight/equal/exclam/f/five/four/g/greater/h/hyphen/i/j/k/l/less/m/n/nine/numbersign/o/one/p/percent/period/quotedbl/quoteleft/quoteright/r/s/semicolon/seven/six/slash/t/three/two/u/underscore/v/w/x/y/z/zero) /FontFile 1590 0 R >> endobj 1592 0 obj << /Length1 1442 /Length2 1979 /Length3 0 /Length 2900 /Filter /FlateDecode >> stream xڍT 8TkŽÎݘräärě’[ łg$LȸF3îr9ujĚě1›ą7s1Ä$RG¨¨”H1R’D$Ý(şĄ”KnQ8Nú÷ ë˙?Ď˙?űyöŢk­w­o­ď{ßOkš‹ť>…‰úAv(Â×'€dŔšćáA$ hh‚$œ––Ěç@Ÿý8­M—Łů„5˘ó1Ÿ i(8 8Ń Ž%É @Đô3ĺ’z(Ěh€#Š@<œ–5΅ýŮ|lĎż€.C ššă§ÓJąt Ńůl([‘Açî(†řáߕĐ5cóůÁdA(Ѓx(×ßBa>pƒx7b’‘'z4;šN đ`Ăź™€;Ęâ é\Ŕ˜!<,E€0!.€­¸;Pç`™Sgx`vs˘ńKšŮlI!™NŚ3hP0 ‡€s ŔَjŔăă:”éŠĺÓCé0‡î‡Ś[§vW€ŽM8;Á…ƒů<̑ĚH”ÁśŮaZŁAAÂçá$ýŮŔ\ˆí{8aöpTˆD|śX0ÂdIĆ` ‚ ž"€lf1˜ ÷Őçń#M (€Âl‚dđ`h:H”¸ąDÁh0ŔÂƀD0 Â>¸=ř\$Šř6đ˝…#&Ěŕ~?ŒŕžVÇÜkĆĆΟ ‡żýˆ(yžümÁĆDNřWřôœ|\ŠťŐł# ZYĄa@„>Đ'ŽŒHk€ľŚF€čű*.txś đkŚÂBәfą]úÜpč,tgĺĄ|_Ë Ĺx ş_iž4؋ř“}:ĺżq\RĺŇüǎěÎt\wđqzĚ ŸE`źđ1 ĐPL ȏP/hF¸4ˆ ‚~Œ:đé˜(ˆ?çËFÂ<;8 bşŔ|{š3nO‰Î80š 1ŔŁ H=+*|ˇ"LĽá2ˇ;Â1Ë&˝ĽřˇÝ-ÇűěÍ´Ë ŢŸg/Đ)4X4Ż~_ÂeĂEóboPŽß(°*˘45—;ŹäXÖż>¤n×7~ŹşŽdô˛ći~.üâ˜jżlđĆąăýŠ˝•kU6nkš´ş*m•'“tcĆŽÇFëúńîš$ĺŹQayŒ\Č8݈ć–˝žŘľĄá\>ŠóÁú1ˇAăŘUţż%wČ=ĽZI\}É%•J'šč^7óѡkÜaĺ_đםœőš><ËL‡:żÖ?|ä٨Ťg("F+žvkahÄÁŮߎ ‰ Ľâ_ŒL<ŽœČ śĚp´/.폕ĹT2ň÷ˆćÍÚ™“Ďt„˝”ňóIYĂźß‹ĹmYßU…ƒ§˝K67ď6“SśŤWÔfŚd<Œ ąáŽX•ę,4OÜjÁM‘XľpĂae‡UJŞëʲŃöU“čh“Ź}žÂޛiÂ5É­o[DçƸu[ŰËöüžß¤Uv^öĘöś”ąŸŠů7kzeýď\wŕÍoVoZ>Va°čŠJŃÇţąĹĺqĂ?-§Ę—Ndź,L÷ž úGƒrŤLČGŘŰC|rNn.śĚsž/îÜßÇVŹŮÜ!‚„;ăcëX˛Ť6ŽđłLŐé:úpęžEĄ&eĺF˘Ë\ţiîčîXVZlȝqb÷gŚ˝rdßw:éWÎ4ý|Ÿń\QćU9m¤çŇÇą3›¸ˇu ¤ŞPOšţ-ŠćëĘhďç^ŢI==Vşîă‹Se"úęhDí᎛#ž?¤G8ŃşáíGś%vËŚţčłcú)œÄ§Š[/Ź Š9ú÷„cśźŔ Ż^­oßľ˘ÔlIÁxœóQÂxMpőËĚč͡ť)Ő)QĂGU֕g\ci?'SNU÷ź.sšó°łg—˝s H ¸öř^#­ÓžS˝1źƒ˝Ú§7ôęSe/ůi¨ó1 sC÷{ĂÂtż9ËÝĐö˙ÔW­+˝ł ŠU/˛ÂŰ ßJžŁdîNíX¨2ţćô^_Ťh¸ô`ŇŻ†Ć´UŻň{ާmú ű\ŰÉťTĚóó]˜7÷Ë}WűTUľô!íŇĹ+ZEEbĆÄMYE§nŁÎ(7UůTmo&H73âäNúŢ2şZ-{­d0&–Ń–•۸ŁÝg˛ďÔžĚچ]g|äćîď/šz÷úýDNĘ`UB‰Ú?ń”GŐőýiÁ°œœăŠđJ×ÉъeŃúKkćÝЅŞAπ_ŒBÍô&śűfłh;k.ć@ö ?E~÷Eăůře%IçĘ"ŔŞRŠŹŘ–ŠJMšŰ4Ż-ˇëzÂňšKöűK&ŠQŃőŃř…x-´[#ö÷7?=Y=Ď*T ż^9s|E…‰ÜÎŔt­ź,9Ýu”[ŠIAËXNęűçú#7†Řń{ˇzÉQžŤ/?g ¸˙fcş8D‰Ur•Ń­J<ÓÉŹ=Ş˛Đs šœ?Q?Ë9IߣËVtQ RŤ„×*Žź[ŐzzžRĂŐä ﮓ^Ÿ6˝ :Ÿ0ž}çhiM{AU_łďęÝ HŞýš‰PˆíöYélß}|ňryďŽcmˇ,ÜS˜ŠŇIďîmőz &'šSęŢ홒^ö¤z"Ąűžb΂Iˇ Íf‹NRZDŽԉ˜'ů—#=]u-V çřžSç%fĚ˓>hqĂhĽĎ1§×1:r›Ź—żžG“zU-uş+ŚßúÔű@#É~Kuoć"ń8›kÉvąšQOóÖŻ-/mŇšm°Ëáö’ބ:6ŠšągK­ÔŸŁpöňŒńĄDBĽŮž šżÝJí›Ý&ăó=O‡”ˇťäZ$´7œ•o›“–vr_šňȡˎKŠŔ€íŽůw¤x͑‹T?ž—а)Uç{o@T–Ň6Ľ'ŇL*2ĎZy9„˘%}ÎŤ"˛kՑŰ]۲sÓ,^žŘŇzâgłťç‹ĺ'^ţ‹Rą¨ˇ˘ˆŹnF˛|”o´Ţ¤:Ňw żëO{Ş'óŘuoëŚjůĂĽä˘ýŁđŰůćjP›=Â}!Œöfhě´N‰mˆÇŁşČ'çľGSŁrTŽŸě2bÇŇłbĺŠĎî^VÎ9œŢ2(vÎŁÓAËłnlóřGBźůę‚~Z8ůăĹđ˜câ!§˘*űޤq“Zed(>D‹>dhłXäýŚÁ•Ucî-Ľß_ČS6 VąĽW´ ŰnôŐNÚEđczlĎzůô*$jžŮˇW\ŸY›ĽćÝ]|ç>{ J×ňÚsđTEŞĆúm‰Ŕ6zđn‚juo㔨I{‹f|€ĽÖ¤(Eł;ßZ_Ÿ0ţT›j’azF~úůŠo‹•ŐřÎîĹ[ç?˜˙čjű›zú˘,ç.™˙ˆ’ŽW¨{Çľä—×+p.žG:ąŹvŒúh§ÖLq†śDŢ.Xžw%yęüöýɞpmńó4„4•ĄçV|pxr+çŠ4eţ?˙||Äę endstream endobj 1593 0 obj << /Type /FontDescriptor /FontName /NYQLAF+CMTT12 /Flags 4 /FontBBox [-1 -234 524 695] /Ascent 611 /CapHeight 611 /Descent -222 /ItalicAngle 0 /StemV 65 /XHeight 431 /CharSet (/a/c/e/h/k/m) /FontFile 1592 0 R >> endobj 1594 0 obj << /Length1 2222 /Length2 14460 /Length3 0 /Length 15757 /Filter /FlateDecode >> stream xڍˇPœÝŇŽ[pB>hpw îîî 0Řŕî‚wwîÁƒťťwKŻ|;Ůß˙WST sőęŐ}÷ZÝĎĚP(ŞĐ ™‚â`['zf&€ˆœŞ*7€‰‰•‰‰‰‚Bäd ü׌DĄtpmyţpq9˝ÚDœ^ýäŔśigk3+€™ƒ‡™“‡‰ ŔÂÄÄý?Ž`€¨‘ Č ǐŰ‘(DŔvî s §×4˙ó@eB `ććć¤ű{;@Čč21˛Č9Ym^3šYTŔ&  “ű… âłpr˛ăadtuue0˛qd;˜¤Ś¸‚œ,Ę@G ƒ ĐđWÁy#ŕ?•1 QT-@Ž˙ŘUŔfNŽF@ŔŤÁd´u|Ýálk tź&¨HÉ쀶˙8Ëţă@ř÷lĚ Ě˙ ÷ďl˙Ţldbśą3˛uٚĚ@Ö@€‚¸,ƒ“›ŔČÖô/G#kGđë~##ľ‘ńŤĂßʍâBJŁ×˙-ĎŃÄdçäČŕ˛ţŤDƿŸž˛˜­ŠŘĆhëäˆô—>QĐäőŘÝ˙šY+[°Ť­çż`˛55űŤSg;F5[˝3PJô_—WŇo›9Đ ŔÎÄÄÄĹĘ Ú€n&Œ…Wuˇţ˝řˇůľoO;°Ŕěľ 7Č řúÉÓŃČprpz{ţšđ߄ÄĚ 0™8Œć [¤ßŃ_Í@łřőň@nŚ×Ţc0ýő÷ŸwzŻíe śľv˙íţ÷ý2ŞĘ)ˆ(ËŇţSńք…ÁnOz= ++€ŔÁÍđţď ŠF E0ýŢ)ekp˙ŁőőţGŻËż×OőďhPţ;–<řľgŞß-ŽËÄÎdňúÂü˙Üčoů˙ë¬üßZü wśśţ{™ęďő˙ϲ‘ ČÚý_‡×–uvzm9đëŘţoW ŕ?#+49ŰüďU)'Ł×1˛5ˇţĎ1‚ĹAn@SE“‰ĹߍńYíŻłŮÁŽ żž)zf&Ś˙ľö:W&VŻĎ Ç×~ü{ ř:6˙QĚÖlú×|ą°sŒŒÜ‘˜^ۈ…ŕÉü:ˆŚ@ˇż;ŔČ` vzÝx­Î`v@úëB9ŘŒB™ţ!Łđoâ0Šü&.Łčoâ0Šý‡8™Œâż‰Ŕ(ń›XŒ’ż‰Ŕ(ő›^łËüŚ×첿é5ťÜozÍ.˙›^ł+ü‡¸^ł+ţŚ×ěJżé5ťňozÍŽň›Ř^ć7˝jQűMŻZÔÓŤßôŞEó7˝jŃúqżjŃţMŻűŒţCŻsÇhäřÚZ GŤß.ŻÁŒÓŤ‹ą‘‰•Łľ‘ŁĹŹĚ,ŻşŒL€Ö@3§?Ěě˙š˙™ą˙aţÇltú/nÖ˙Ř˙׆×L~‡}mCFÓ?đ5đ|•höž5˙_ĎôáLŻ AŕëŠZţŻÇcőž…őřŞĘć72żŞ˛ý_U˙ŔWUvŕŤ*ű?đU•ĂřŞĘń|UőÇŠ2żŞrţ_UšüŻŞ\˙¸‚WUnŕŤ*÷?đU•Çßř_CkâěŕđúĄő÷Sőu˘˙‡˙ţ„݀&H‹s`Ţ Ëš śűŻBřŽôťßů§)v5’Šé=ڝQᨍŇÖn…†zĐWśĹ¨n—ˆ_<›ëŕC[â”ZŸźž b”'w[‘&Ţ}Ď?Şí'D$ WÜózą÷R÷ˇ‚n†ě”ŚČśwćBUĚĹşwí“pŤí/] ™ŰUÚŤâyó\:EŠĄë_4C‘cœ1űžΉžóÜ mććv3küąt -’÷HÖOí –¨‡YŐrUÇ.\r\í÷„Đ7˜Ł“”žÂ‰Ň8óžĹ…ëüó™LÔ  śÝšçÂŚúˇŒ$,ôó´>—…Ć“œľů{JëŔŸŚŽP7ɛ`öĆsVůڧą ĹjîS5şx­ăę&lXٚÎŰýęaZĄnSžfĹ sű“ِnŚĹş[>Ż0ís˝f3ĺJľ/¸&銢ĂHę² PčŒaŤ;lĐ˜ (3ÍHŃ[üQ"č˜mGŇť<ŸÄŰůĐIűźq 0)–KóĽVĐŘdvOĹä˛Ńâ‚ÉsĄˆŐęĹLâĹh*ž  %bn°‡áMĘ[ŐňŚšÇďo— Ȓőö¸HP’Tź’ŠZóߕ’ŢOąq‰ŠóĄ|L‘çMÇk˜†Ď\Ů˝m×áÁ#) ͡2ř<BĄ<9mŒ3›˜jmČ_ӇE&­ĽcĆ\‘ä†â];kEŒŐˇ×'mÁŤ÷=z~q<Â7WĐťRşä>Iü31šuG~ăašQÉďGŢŢŚv’ě%ÖtW+uŐŠĐŔČ~wßŃ6§i'!ć7}ëţȍâ"ÎĐâÖCŠąâ‡3ž?eňIFgę°ŁâŃňş)pĺĽf]5Ţ²)yŚ+gŽćhÔؤ:× ˙ÁgœČę= “oŞ~žv˘Ţ÷â:ĘVVóˆ Ö˝#W–;˜Ž(;áˆtŠQ?XÔO<>Ńöĺ⨇ŸœůVőßCœK‰ńÓLJO0Thť†L™œÂ°úcĚqá˙ĐŞžc`Fˇ”rŒäm.8ďkş3üŽŹ?ăN,˘Ä†ŕŢľ6ˆş‹Ü0@é‰ë}Žd.Ž4[ŕb]٘sÖTň5w´ť i¸ßÇ/áníŠäŚç’ß‚—Gů؉ć6k\)ľŮŐőôŻMşĂŰ(Í8€ŢY~‡^ÖëRƒÇ†p.Eäq<Ü' ­H pç<ŢɅo‹ÎPţ°ŤÚ˙Š5xjÂÓÄß!ńÜřG¸‡™ó¨űMÓÚ7ř÷ô2/K>™Çwˇ1yĺMӍ¨’<?›y˝ťŹj;ˇ­Ch÷މ e=şVÜżĐ_C@śúÂmĄŢ5,‚;OFR´Éo”ĐG;Ťvđjś‰8€íDŽi]´§–Ÿ€óĂ:ő]œ8ˇôú–ąš[:go—p‘đĚ?E}ĺţŒţ‰ľyĄ7řŽhI7^ěCŘ'D äꦅ”e÷*iţŘŁřŒ)'€KJJüpÉÇő˝~Öb›”_•Ü8Ýçüv…a´ŰÖsŃÝśóĄÄŹćŮĹdœßx†•üßw Ö+úLŃ˙pœŽ=S×ĹwT)‰ĺýéƋ(]Y>ŽRůÁ.: ňŠĹ]`ôg´žČĐ ćĺƒJůI ­l§iC<” ´CÝeŮtKŠłňôďĐn‡?TŕŇŕ—"~ŹŽtżeúÉ˟iÍűu§×/[nRę# rXOŠ„hóm­6şőşT*AŸg[ÁŤÓ™AkRcßů /ÝŐŘđÇ$w űǚüű5Sié`äŻ}çL'×Wš_ χínł`tž;]­n`Á9ëS,^~¸AbRőÍA†‘ňD$ć°äĎÁ}„u _@j/č\ú„Đ:ŇĎ‚{?˜üŇ7žüŤ˙a‰Çóąđm ÚMVK¨€ľd][ őeŇ>W´BĽY~ŽŚ-]x-QňČzŠb*T;ôsaHO“5áDřÉÍ/™p ÜŒ@Ź#l­˛CßicßcŽŰvÄ=G8˜¨żśíD‹¸Ăós.Űnžň”U ˝‘%ŚZš!•íAţEŔ~—Šâ`ů„žpńćĹšÇć—gäâ:XQkÓ2-ŕ­ĎnéWR>Ń›Bö"QŻŘ¸ş¨ĎŚ#—¨{Ňä˙ŁňŚ",fßݘ# żçËŔöDŹĹlň› €%wƒ‡ů CĘ`Ď%cË›8ńNj~xn~Áň:jźç6ŒŠ÷Ş÷óű^=MŽí”nj„ÁZ›ú:HcřćŘĆdHj9NY‘@$`ŐËv˙×0fÂiĄńÚiŻxűŚB˜ô÷/<ěÄýíâőŽ—‘÷X2ú瞃×k)ŁřÁ$#Â)á¨vúqXX|ĎÉߔEł˝r (íjž Vƒ†’říޟ›˘´óŻ†Ă°XŠîţr9LʏZaFúvlt§,`;(Zt)†ďDž‡Ŕ<ŢýŤkŽŠ,\z_˜ŘIϧ٠kD|Ĺšś˛/'ËBZŇŇ'ˇoڏĺ$Ž0>rg*W);ódţëÄq߼ô ‰lfŘ2Jx&’vús ăOIz ż}ćꛖgŕšDcËćgčŘRíEŻžPj1nnrŽâ“‚˘Gy@v—ŒöQ^žË-pfeůjDŔiđŔašÓ7›ĹďVśńí†čÂYŞĄ=dŁKXŠF?É ´JŚä]\V@ĺÚoýˆal¤;,ťĽöžyv‘ľ´˘Ű#”˛ůRˆdśľ™čÔäŐůCť†Ę‹ćrĎ_3–œ\L ˛vߍk¤X„ŔÓžůˆ¸ý†Ń˘Ja­Ůźź9‹ÎĄdD+vő*ÜŚă+“|`?ŢÜgE§TcуOwĹS”A"ʧ_—1`Á{t+ ×+Ώ2ÔŐë$ó˛m`˘]łm_’\Ľ@€lô˛ŞrmQő­ĺMšÔBr 斆ȇÓtsTaĹśŻ#Ŕ02śœŘHřţ„3ČÝĽ]ĐÍŽŰ-é{8TŘ´~\(î0ÓŻľ‡ŠsyK‹őy!ĺŔˆCA_Żb™.Ĺt6!Ć0ôKżjzÍď 'ŠS§˜úIŤoľw¤čšóćú#łŤ|°păAAqąRçZŰ[Äe¨ rŐěcčżĘHBMĄłĚÇ6'üÜ蟃čî–ߝäڊKڊľ5Śj‰’>LŁęeCžX“S˘`nĚť´3h}ôöÇĚŽ6V{’zŻâ™2ÄšÄ]2őY\8Í*híRáž šÁ‡´oĐ÷zÇ)ëDá˝=ŤňZřŢbŁö˜NRRLĺÔö…čĎ;ŻŻBJë"’ÝáM†F‘“Ű,͡žüŕ쏰Î0”QL/Íë­ńźŔJ&f=őďý,&Ĺ÷ůéQľ†ŠŮ!q"}ŇĚţ˜ŒY“˛U?Q’ľLʆjňó?M Ŕ"Ţôz›q-AƊxW÷›R´i•s3DÄ\Ö ¤]˝O…l~Ş™ ő ˜EíUœňż=“bŁó&Ëv‡[MšŐŁPý8úxž„éM×­‚˜OâKăŰÍp•Œ—ě’ě´;ÁrwEˆŁƒŤĐ˜×C\­ s_ŚŐŠ2÷ă&Q%]eŚ”}6Ӛö#ęXTDu“5GŐŽZĽVËYɇŠâƒ\; ř3ţŻĎzú€Ž âó!űÓ=EÎRłŢŽX†d¸™íвŸŰçoĘu—Y˛ŒÄšœ éŰ@Řťńö˘ /UĄĄřFSŢťÁďzĐjr|ËôřČ`ĎŤXœëóńů^\ř.çĺąźr…Ÿ%đŹňGß0Ŕ+jU|›œ&Rŕ-nmVN' Ž(—Ş}í=WůšÇאĚkÔŻDÄáěÁ&ÓGA¨<äikÎăYércU֏:ąăłđÉvD?ţS—ŕZkŠÖmălŐ^ĽŰůb•Ó1ĽŚÖ%}k'Mţ%ә[ő¨ŘŠ“H§+Żš)3{ŸžŽY­5âƁvä^ţ¨”q”ůť/łŽŽŞ‘”e%…ÚŁM/Ô˘Á’¸!NĽ@ä†QŽÜ&Ÿöťůtź…ĘěşńاÍîřuŤ°Â`ę†ëşŰœ„A7ƒ"0Ľ IV–`řT*ëâícÂđ˝I/…yczńÄýI=†D‚Jĺ EQěxž™ęmŃ'… QŘŚ4=ўĘYXb~ĆݔÁÜ.ԛn™Sô›ŠŻů†sCâćJĂRH[ذśOöŠU­-eTÉć ř2”6}-NM=‡ĎĽŕ7ó†lElůô‘œĚVgŚhŽ _\‹uÝP´łbš ëPÝuSR• đs×§~œ[CŒ Îů-§_­ěőÔבĂW‘}Âď1úĐč9đT‹ĺ#cm9šŤ.|zqçĄVçË¨ÉŒŹ’łcĎßôӂ’ÓůŞ FâZ˝řAČ`Ś›ľOîůakÓ§G?8ÍiŠ)´ J‚’o`đif>Á{ęýů˝ĹZ}ďçGŚ Ą|“ĹŠŻÇŃ т ŽcŔaíÔëžJÂńĺš:dk"}RŹ–?WąaŒň~ĐY-jš´ůǸs†Ą1¤á°čŠ:şO-;Bš-Fx^ |˜ÄxdIŰ bŤf:źĆ7Óob¤# ÜYő1z`MĆî˝˝Ţ9á ś#>GžăƒŢâev‰ĚYóÄ›*/ACAN}›Ű͘*öƒ“Vß°~†–łG•p6y(Œ17Ë'%6W¸Ţ(•vĹN­R‰ĄšHě"^ L DžŞě´qďůÔgŔ<ÇćôÜq’}7cÄäšř ‰UĆIuëae<łb´WˇrşÍă,*֚ 4TÂ¸ĆîĹ ú…ĄÉű3(„P.†áeĎ.†“Ą6hHýašŮMĹ/IŢUwňrń™UŽĺE~l›ě-ÜS B}{CNÜSH§š#Ç>.˘°úŹžĚâO¸PâÜtÎóO0ˆBőtKGIX"˙ÁCŚ} ę`-ľNăŽŇŰ ďĽô”™óUv<̤“wBŇ6–zqźxřaĐËřž÷ý*J—÷jšÔ}‹Üř5Bî@‚Ćě9 -˝vůń:éZŠťYNąËLšžâO^B|Ă% pÝŽ^|¸†d9ćד -čUoœŠň†-*ÎÂfďČé2ÎfŚeogvŽů]Ńlj™lđŐĐgv­ýSބŠ*Ř:áćqĚˑjŽnÜúۡíŠF™1 Ű8r öeڤFďŮŘJn  ÍcŘLĽśŕ"Í­TÄŞĺ&BDœZšŮŽŞ-,§DôŠdŚ5ĺ952FŹě÷íľC\ş,ŻĚŻ/)Úˆ‘Ë+ę,˜>¸T7Ý‘˘ŠfAˆč~vzˇŁşNů3{qb^' SL˙j80 ÎĂѨˆ$5íÚä@P‚—2jż›ĘAícŘäëPÉĽ?t'aÍŚPcÍŇÖgžĽ˜č‡Ń2äEŒN Żd' •ËŞ´&ÉĎĹŢZ(Z숞/5(Ǥź§ďŞlĆSš<Üű´ß*€čY¸;›ŻÂőCNRšD7<ţîMP™Ë¸<AtŔpˆTŢh/ś‡}ޏ‡, ×ÔľţPƒBËúS‡Ď;Ćş€•ÚĹźŔńnOy˛lĎŠďaN÷{s$Źd \•Ćŕ\ä C'íBRdÜwJ"”2ŽpÎÖĂ3ҍŠ^čóP 5r‡0ą9qMsóďë”.ÒRe…ÔľŤ˛Ęď7i˘Şńa•ż4Ť œSŐé&bIK) ž”~‘ý”OĘć˛Ň\ĐłXââ×ŰŞ=pC‹´;;zú´Ž%x/ţé­§ď¨ËzK ­?üçďň4ZďâFhíAz÷§Œú˛ÔŰDáuᄱř6îëĚxüWaĄ2GőXQ()U>ž z'Ď)Ű%!Ą,5Śxtő;íiß1&ÂNbÖk‡îâoéŰÄW‚+ 1ĂóáÂÄ­qßČ"ş‚6űś'. wŕg°Jcԍ‘A„ßźŐ׍Ç>۲3ݞĐAŇZţ)Ď´…őóö÷4TĐcą+#é8Ż˝™Ć%iT’>Bĺ69†98čŹĘHă*ÇĺȆáy,Wxš‹ŃD0ӓ§Ó”ÔOčąń˝Ëř˝ž˘ˇü9 %ź•Ű0ďuŽ•ÇJČŞŰP EË,Šž&ˤl„š^Ně=ţUđ¨şMUcdĄœ…ŰÝN–"ĺՄgţŢe€ůSî„ţ\Îŕ b_ţLěˆ×Iu ŐSŤÁ]źÎŒ9ßWZ"%ýfâĄíÇĽ?¸– Ÿć9Uśăů%ůűfš+Ź*TgŹ›Ě\7Ç!WęŚËĐ\1&a<ŐĄW6!¤´™ŠáÖžĺcrŮŽiź&ҐáOňÝQŠŃ3âFçďR磯ë{­ůĺŮăçu‘ö鏏ÎSZce{F;™ƒ~M*ń7wabŢ8LĂělt q§x dŠŚ›Ž‚ƒŒ4{ŇS{ĽŹëˀá÷Ó/~ŽßÚßMB hWĘŰˆ¨ů†Ô=. <ÇĚE'đZűu™Ŕđęó•Ţľ1B ‹ů“oۓŤŘÍâ#âŤvÁŸăěe„ÄĆŢíq$FŁ]TŽőŽ)‰â—N~˜ł-䀁W(~‘˜Ú&ßD‹˝&ÖQjÝçrä“ĺH6穒O(öŽćŠkwŽóÎ3B@ŘŃjŇ<6ůI’“ˆL|éÄýЉąäÜNAŞŘŰâŒfË%źó^ú+V„ÚMÔn™Mj>kúĽ­PĘ,ĺ!Xs pý•v^(/`yěp|ލm}Łw)Î6­žLoŤw§ńEš=gĽNë§Gk›d5ˇşç„2w"é$OÍ21ŞE’ƒžŐ› *€áQůë¨VŞ—vl¨-ˇ<śš~qł•ý&ökÖІ.5˝?l+íč]í éńSÖţüąÖźę‰ÂGY !Due´ôDO‘DX ׃oߝaŮsdl…WčťNE[s{”_Ё˜_c‚šŠřË. ćŮT!T8üčĎ$ł; x#(-đĄĹkŠž/˝[D?ƒľ4ń´}é—ÜS›GˇˇĺޜŽMÓF§ß-†sUä•)Ëo/}œ”šHиŚ^8m+ugš†ŁU3$áÇWkK@áĺ5 ƒŚëލŇm=+śě­P$0UC˜ýäSӚ]ědy2]Lň.=5‚Ü!ǜŒF÷#č ŰłYĹęKĄMvx ÁŠřć™44t9î!5G7pÜŽýËd֎÷ˆ|ˆcză[ńD,D‹Şz*iK›ë5Ž~SięĘJIƒÍsÁö‚ŇnŸxu]qKÖÁÔŮ)9pcÝŰÍ›Ś†ś˝ˇEcŨŒÁ~C*t´Ďl‚Ş^ Wť´]d#ż ˛igvh TZŕ!ćweóŠnĆ=śb:‚u6+Rˆ÷í4Ŕbq9¸î榓Ź:YäéÉâąşoŕ ¸Šôž@Eˇ,Łú,`Qˇf=š"ŃËËŰĚĎXşYúyMqÁkŠÁroŮ7qaœĄg–Í@néě.ň3I'MłČSşVöLËҜ*XłČý&.Tcœjl"äóţĹXTŰöbUó ŰÎ#e0S /؃ôçýžB~—éŠF‘śgŕĹćëąeȋ+‡´Îéűx/ŕřIlłÁ6řvóąĐOm—5ޞ ­ťčĽtśÎúßlV_á÷zt˝Ç*neH%Ľ]+Gg˛pA`dEń;3^Z‡Ţ˜*ˆĐëž ×ę݂{Ŕqz6‘oh;Z•  ­e­JX1Îns`7°¨ŮâČ0Cîô'ž–]hú8RSÄw3ßďh‹¤ WTjlN×[)ĆĐl.˘Š‰gş;J9˘A@Ú)ÓkűZŠ×š˙őLMl`•S–őNxӖ%RÄ0ęäX˘ŽÓ]q¸%'đׇqŤ„ĎlW:ťPa’ŃŽ#”Ţœď9ő72#ŮÚęźĐ´š÷ÍIÜéšÝrçŰE}qŞpäęörpűŞ~yëAřăÂäŐ}„ŤLŽćW”MŔ-+Ĺ6§œI{!č̗çLŁX0ăX…`šĄ)ü…ÇÍřűćĽĎtĽĐvŢHu¸MĹěY'ŃÄF{€đůmO¨ ¤•~0ą#ˇP9|…0…žľĄ‰C™hÂ*…`)ęl÷W­ňÜALcřŞL\Üš|ŢÁÝÖŤÔ3ŤîXşťŒÎsęçÁś¸I‰÷˛5ĺÜm—ąçq6CŘÁ]O—ĆWő‘Œ¨bą)Íé&žƒe'&8ĹIhQwÁ>žî'U|Ţ52v$…€žu"œź€$ćéh¨¤aΊÜŕEńĐéČEőťô\Gý& PR,5Ä"•Këđ¤°÷¸ŃŒ–ţ%šgË ŽÖ˘ ,…ççĎSŔťÄjçĺÌ"é”ií!ݢŐq‰HL$ɝ˛"ĹČuSÓu.['ˇőjÓGŇ´C­ż¤žÚ2E7O(ÝEż47wŰU52ę4s‡ĹEmÇ,Pˆc¸l•‹­Ť›#6H0. P$c’Át~U3őéďƒŐwOESÜnçŠ ľIKřŞ{ßވ18şĚ•Ŕő”UăíjÖÁ8Š=ď÷™ĺˇ*ŤćoÔ"/7ĽŒ+Â~'19Äkłtž÷Š|ž^ę?g7B<¤›jě0y‹:Č"‡ƒ÷vŸŁ˝ł™Ž€ç§…Ü ĄrĹI{ô†‘we­ˇô(îBw°‰bąÔľţ!ü*wOěťYăě…Ú΍˙EOŮă'1˘"ţůBJřœ\C„ó…w‹:Ko/ˆ$Ś-XdrÖ9lĎ]XQ@žLˆvľĐĆ­ůđš KřßÎî 7ˇˇ/ƒ–ľ]Ç˝s†ˆťĐĆޔ…ˇuœ€ŁÖtŸÎˇJ{CU ë“<:~:n㵇ޒšôš„é˛űGšE1Og:˛ ƒ%ůʰíúˇBGÖ×h3ĝ!íŇb§ĐŒCn-süᎸô+™Ÿ"ËŒżŠH7^4rűŢúgt“śSŘy–Ć |T/€1gŐ1šb@˛……śŒšt}‡XÂż¨˜ˆžő8>b‹f& ć†6’KŁ6mďęŠ;|„*ŚÇ4ŮŕÖ6-î˙.+ŤfŢ31Z˘ź\úÖkDŢbpĺb 5zćz¤•‰qE„oŸkFó`Âj™Atőů{X°i|–ě>żcr1\Ţę.i1׀]ŔY–%mwńž\&ÚŹl%Ljn'>dţ)Ńşű}l^{ŢPEĄťđ4ÝCŢDvÉŘםĺD¡`vŐÉQŮp6zTEJ†„Í‚ZşhÉ(˜›úp_“óˆ@‰úO˘úˆyž°đ˘4Huź6"† ¨ËÍůΏgŰ6™VX¤G_>ŰuŽÚՉtľşą€ÚXzVďľHůӟšŽ‚ŕ-ôŁź3iĐ\Fm ‡ Ş,NĎßü|Ÿ@á”4JŃy6ş”Ť0Ď˙*l,ÁVő&ăĘdCÍKôÖ3 ě}sň ťbëîÇÉdŮ%.Œ‹FŚzîĄ ,N‘ÇÝĄĺbřU˛n¸^HÚÇ%e%Á÷ç0Ç˙úó~Ť=â"†|Sů9ý7'âq‚‰hţ~žuq×G]@Ë&XsOł§öž­q'mö-˘Š<9,&?Dţ懇áÝ;YÉؗl¨Ó•_EܟzLÎ}…ÎéŻúĆ'ęŹÎVšç}Żq§ĘJCJë !̝ohĺťvöŮĽ;×ĂÝłŽşäzcw§vŹ˝ŕVˇ0ÍpĆ ˝Ć Ĺč;r֗RD5~™ćzZ,ă-u‹dŁr…Răŕ0°–Ťé G\°áÁ”BVÚ88>3ĺi-ŮđělnśË'1XyˇVTCđ p•Î@Ő žŻŽd8Ş’ˆCI˛^žżŕ­)3ۆrî+2kş`p×ČĐĹ !e) /wtÇŻ•Ő˙zŹiϝ˜ |, aŇ:í*óÇ˝ňLežPĺYt'CżűQî÷Ő}Đ+´ž˘řĆ0-żJ%÷ Ѓ.¸@râbqi,ˆwG9|+CćYľgkŰ% űŢŹí›Y3˝o˘ŇU ¨qSţP}áË{%čôD˙“Ö˘"ĄF?ż: zçqc/ŻśÔ(ç/Ł/xFöAjâŘ´1öUĂDsů”ZەžD1í$Š–äřcÇ âH”VŒsS^:^a,–Ľö~9ą$üŔÜvăÎş qÍříë8 C{Ç9a—ŹI׈ţ.'Rçđ„ś–sąÇŚęäŚW×G˜}ŢŰEˆŒ’† fóďĚý‘%Ґ@CEňSľbő÷‰ayÍč&—pŤ&§#ęýľ­¨mK~rŃňF~gˆť/Ź?5Ęßo_ŽĘč)Ô9ôČÚÉŤ3˲vŢ'Žř˘Ůˇúň—ANyÚ?x”L“Ű+Ţ`R0‰ş}yŁ“M5Nœn?ŇĽ—ěXfˇ ĽqÝŕ•’ŽŻŠjçdĹUcŢgĚŹVlXY´c1ńhśŠŕĚ|W+ ¸mz˛h¸•.*EeűUŽűIÂËsrhEĺfL+Íoďź$üSšRŁ)v=V6E ëĹ –ŹbžÝĆ'ą-w .úú˜PGŕŠáúvk]Ԛąřg녺7ě\hnĆq#ŹHď¨ÎţÝzgç'Tű7â3‚‡höł}ôf÷.§â/-Ě*E¨>źK‚äaXt“bZ}Z;źbo‘Ń:a OĄ°ę”˜ótٟQîT9G,ź7[1ŹĄşöËóśFĆ9vW(\9žšŕ ŽăÓĂ´Şž’Ç$ąß^ĘD,(Ű؈]Î[OЇ¨rǍZΎĹ2:°ĎI×kKĄ˛c_oŸđć’]čy¨ ¤Tt–t˜Ů!佖[ݗ2í¸‡ËÓä/aÎÎÍŠjÄVěOă&Ť‰ś„čú×éźDÂB7KȚő)ŰB׿şôQy“¨ghmH ۜýű¨81{“ĐănЉż62$ >ÉŠ_?ˆ°ŽC4œÜ{@Mî%éVšQAvěY´˛ů­’7,wăîóU|~gE÷4üKłδ„CV¤dÓ řŞiLTŞݎˇˆżÄëG BŻé7?Ľi95\)ăR}SęËxŮ:Ş˘ëŽum>‰ľ˘11)B~oôž˜nčs"Tx›e3!̡d;˙)´”Q2łĚ36:¸dXČ•Ąx–ýâú° ű­a­âlzŽNŤp–ƒć|š1ď ó… ců1é\‘mÂz$`Ő8mšfšƒsĎrg|“šˇÝ-‚qXî3śĎ#÷Â2ZŒś/q˛žZlĚץFmądE¤úYhČÓ&ľů8›Ćâ)äçtŒy¸Ł—*łë¸UöĚ´ĺF—Ç`—Ş˝<ŒŒÂBĂMoVÔ2€ďjZř[Ÿ°ő„=ŠÁÚ~ÂĂüžX#2ĂjąÚrx§Âč9cŠÁš˜ÉšT’ŔŁľžNńďA”˛ÇŸ\(Žěׅ} sK7› TH:ŞxŃR5Ű”~‚€Đ[Ä$Ťę'.’Ă^řĹ>˜ƒ{•B[O5|F˘&fŔQbŒŞˇ<â"ŠEPw•ť¨Ç„Tš/ˇ!Sv€:ăŐű€ SÍÖqŕ.ł°Śď÷Ś/5˙Şś}=š~’‰?¨VÉMnWAl—1•9HŃ-­|—Öu3" œŞŞ+ 1I¸–!Ëî  Ť/Ѳ†ÍűŕČl "#?}‰ßčȒqқ#Gš˜ŠÖ˛Š:*#/X˜¸aşĐżM!`ęž{Ą÷f˜ĂA–Ŕ†f}ůĐĘD}ýěćO@n˜šŁ>6óxB‹ßcQNôuv[›¨×Š™‰q$$ލ0ëĘ P`$đQšłSwh5ß1o˙čmjB7xÇâçäH1dšŐRÁťţ!GöL^—üŸYŮQÝN)ľŞ„ÇúQ0܎ą2FXo˝äžIŔWw<ůěĹÁƒ™9€ 煚ű˛Č‰ćEëP„ &dáNţFľ%Â7Fśňę~q7P› ˝Øӯ÷%˘\ž­MS3ŇLÍžë_ďŁëŁP•Ɔ] iÝĐdRˇ˝nëUbNŒ:ä¨˘ŽĄ›1'ČÉěC¤kz?Ęđ֒DLiwZ#`Ō@ŤŢOř$•›t˘ľš}Չfp´gô…y@Ĺ(nřQ4^k,Đż„‰™Ó3”Ô­Vž&Z<ܰíöθ+S×V(‹Â4éXu[Í÷€Ó%¤ŠŮÍ-׿ˇ†&+˛b’"/”­AÔë˜v›Cőh:°ÁšN#—ŒuŢʎ÷áA% Ýřô‚VĽše†‚˙T ­–´MŸ˝Ł&Ň <(tn@”ÔÂußňɖłřÄćσ ĺ‚ýHťŢƒ6K„(HD8‘cÁە;˘'f ŢKf†ĹW•P^3{˙‰z0{‰¤zŰC}Ę\ţB‰ßK˜}˝Łŕh9Éţ H$•3í¤¸›éËńř€bdůÇđŃj6­aŰuH„­Gvë;Z$RŁř(9†đ6ľ™k"d>eđďÔ^âéwx+ەĆyŸtÍ#ţŚnđ2hR{&˛ź`SEf¸œmŇĎ€>§°ă!2$Őýë˜]R!Z˛ółw$4vx%ăü~źÁ‚řh^І9rcc[ Ż:Qŕ›ŁJPôŽ‚Ů4ôś4SŐHőVxř7@śč}a;ýăüJ˙LÇeLża–ĎćFšŘ^•™I+ݔEáO9Jb“%R…!dŤ@őúKŕűcřĎ÷ `óş”Îe[‹ ‰@%üíŽĐŻ)›ąŘŰ rÍ]x0]8f‚ŠýĹzžŃ/ŠDŕR÷A/‹q‘öT­†ĆÁÖŇ3ŠíJž‰šE'aä¸(łNN Ý|Ž@ČQ˙&ůéűFw[ĖËçXß łí›c$ÉěűˇąĹCłó1´¤şBw)§ź Z “_Z˛Œ|ž_ވPp†š%qĺ3¤JÝrŔ‘’űÝů5Ť)ˇ/ł$ů„˘Ď6żŁ5zŤÚÇ_í +Ÿ ŃfŁ‹x„Â˙]c“ťçˆćň Łů'—ř<2‘%Ţ ›vŸZĘ÷ sh!dőJFŢVďfáĎ>?şŞ˜Á#ežŐIďřl3đyWO}WéĚRRËœÔaÚö {Y)WßľjžĄAa%ě-őŽnXlv%Yn¤m>ZAĆçX]™o_ŽÝ׋sĽěý^žő6 -œŽO{ÖÚoÜ rŞS”{Ë)y\ă8xŮT>:9Ŕ““§C".ŠŽÚqůÜĚ]U˛ÓfŹ^Č,„×:{ÎlÍ É´a!ŰŘ=4÷řyn ł9Ď\BpĎąŽˆÎÇ]ŒĘ›Ţż(BVh˛q˛ =ž#$D~zֈt‡ˇ”nÎ$ŻĐ)•œŔTžď‡w×\҉ĚîZŃšî[Ój5+N5‡9r俉 WŻ*Ź“MĄ˘Ą˝}Ú‹jwÝŹëőĄ´<:}#D;ÉQˇ›ą˛Ŕ'+ĺ_L‡;f+Ź@ŘWY$n)ĺśŐç“'×ő ČĆC‘l‡}Ś“ÉsJՖîŔ=t ÔŞĘF=ƒ1dwúź˜tóɟA7Ô/]đůӎšX–ŃPŁ"`ÉšđbÓŠőÎU—Ápź“Ől‡Sʗ Öć…Y¤÷¸ćÚŃǟTţŢtČ9@ŢÚtś8Ąƒ€[RoÁżVMň"Ůc•UŽóů\>v5&ęŰžî‰!s–ýyńé+YŠ“*c]ÇÄ]CrސxíPŤFAZżř(V˘#Ţ|ŠÚxš„Ý ˇ˘x ’”ęŽ7DÜ{ďؗäÍeԝ_ˇ qĽN'E„+t ďyŃ3d œ㩗ŁWđrŐ0ć'Ÿ˛Đa Ž)DyUŚÝ3ĚöđńîďFCAS4Ěçú\\Ř2,.Ç!Ăő{­—÷ił9MŸĹż˙4sÄîi@F C?ma> F,KHşŞ1|ç+źËşaćć͚γңܾ@2˙‚z$˘H ARŮ0ŘŰJەülýóR­DÇJÔöѕpŘéKN摶´vćšÉYR‰ÉEą€ÎlŚwź#j"ŤrHńč›všS¤"`’ěJŰ|)T•ˇů÷cŇrědś˘K›afČÖL](9}?ŢOú…^ˇY¸Đ=­ şĹŠĹc†őYĄŞś’˜É&Ó|žmƒ+m~I7Ž ÷ŠšëBÉŹSđřoAśÝ,÷ΏŃQUîŽĘćóŞxąäMՖě0Ĺa’$Üô°0‘ î!ŃÍ* ŸD\ńţ %)¸WˇŠk„c[Ąí$__ÚĚH¤Ó™>­źwÜmʍ•™+í(zC Jş$"lÄô™+m~!ĺŠkŔB•-`ýWżIÝTű~Ō˙YžQ?Ě79”SM+eÎůZkŔ‡ďAł˝ ç7ƒ ĂČ_ŔtňsozeP^{ˆÜ­čĹí(†řůžĎ &äşxn™”ľËˆ :7X´::?LĄ;0žĽ†‰klŢ- ˙:MŘYÜ˝›€AăÝ{Ů˜ôşŽ˝Ăy!ĺ ‘ çvęs9ůÄÕ~MÜ/ wtŕfřôôć"Eh‰ĹTőiâăÂK7űhHĘlĘ#âĘ ö/1]˛.Ž3ôoIăď“h<žQzşŮşň >rÇ×Ĺdž;úžósßę5gŤTťJ×§ž ‹4PîŸ=N8#CîmăiîBÚÖAŔRÓ apY`iëůÓ ‘DnSÇ-ĆÉů­D öݏâš70g.XŁć7Ă8łmśľć˝ÜěčƒťBěQˆ*ü,řâj[ć†KXݲÚ˙G51°Ńŕč~üăIüzÝO˛ÖşÓ)ŽCŚúD%Ÿ‹gqľU{Lv‚°11éHןwNJßŰÉĺQśő)_°g‰>Ä CŢšéÇH[Ż1“†îźŮ%yhbŁ WŤmQ—)% W~"ąEyń<•fiž[ž^™Óë%‰œI4|ýI]Ý ^;U˘÷°Ť„>C3ۄzKiR'C 3ťz1Żf•›ůÁÄwpC¸jƒZˇ÷Ú$)1Ta°Ç•ŒTŕÁ sĘŐËřň“o2ą'!˜33ß°ŹŠ/ŇĂ<ˆUo™ŕŞ{ żÝƒpƒj¸>Ť7ߍÄGўźŽĎhĆ^ńÍÖŁĘŮXióů )CúĽ0ćSă/¸u"ţa9ü™eyͰ;` 4*jcšFU@kSďm•uÄ _†ĎlçÇ/§ńRěm%Ş4ç ׂr&}Œą=ČJ1†&×ŔËP¨“*Ł6saŢ%ÖçěčĹՎž‰oč?[f ’–Ö[˝éRŃœ>]˛dň¤.ÖďƒüK Ÿz) ő Ó&-Śnk40Ç ěr̖߹x¤ňKTŹĐ˝4F}iőŔ% şŁrŢQ_Ŕ{yDˇÇI#‰áّÖ vúŹ ˝;SÇC Çč čź_ŤZŮ(_fŽlÁłDˆÁˇöm~ ŸĄ…ÂG ŠMďhB ”tÂHHNŤĄÇÎ1Ag]Ě'Î Đ=šŮ.@N ™q§Š¤‰v| uQâ…ďIĽK#ޞą†ăgő 4 LT…‘Řz‹(nßnŚaUć{8Äą ÷—ń̙éÖ W‡úښ“—¤Œ Š@€=$7r$CăDö-„W}‘çĄl1ƒ|j2ë—ŃxşżtՌ@\GH,…ôÔËë=Ăť]ä~ÖW5uŹZÁMÎäňĂéáž˙Ě:ˇggJŠż$9Ş\;ËśßukQĺ1MŤ§ŽŔ60ž\gmďC]ôXXŒŇw¢ÚÎL bŃ" áÓÍa8Š03ýŇřĆóÍ|+ţÄf‚Ćőh’vŁůnăH*ŐăĐPX8rˇĘlzĹŻ "~Á€ořoěý’Oń]ŘRFĄIŸq.-€Í‚?Éq;Y´8ň{á–pŸż a<Ä-îčĂ˝ĺNݕ/ *Y)}}dś‡)2Ü*›fłëPň=JĆZcÄŕ“>Aő)‰‚ű ¨~ĚżŃăe=‡ÔóMô§çŹĽ†%f‡Ů‘0v¨‡„ĂSĎK@Şšˆ‡Y˘CŞv˛1ŁeŽgŽ]ÎĂ8[îŠ×ËP?ńݚń¨Uă‘$ů•E¤Ż+™× ÖqH öÉ8œu+2Ĺgd”˜ĎĆ E+ŠU/iŠžÇę„#VŕžĺÂm ˛É†ţąŞźë˛nđ–†Đçš°°}ŰŐŁE­›$Řöc"UYR§í—›˜xĘ6ł Ł°t†m3wćú“ǰťÔÓ¨”s÷lRVčőPZ­[Š6Ówę™ç„Ć÷÷¤‹¸ßó2vŤřâ‘!Gˆ¸†t‹P"&wˇ> endobj 7 0 obj << /Type /Font /Subtype /Type1 /BaseFont /TMHFPQ+CMBX12 /FontDescriptor 1573 0 R /FirstChar 12 /LastChar 122 /Widths 1571 0 R /ToUnicode 1 0 R >> endobj 8 0 obj << /Type /Font /Subtype /Type1 /BaseFont /RYQOUE+CMCSC10 /FontDescriptor 1575 0 R /FirstChar 97 /LastChar 105 /Widths 1570 0 R /ToUnicode 1 0 R >> endobj 1313 0 obj << /Type /Font /Subtype /Type1 /BaseFont /CUJHND+CMMI10 /FontDescriptor 1577 0 R /FirstChar 58 /LastChar 58 /Widths 1560 0 R >> endobj 1312 0 obj << /Type /Font /Subtype /Type1 /BaseFont /GPANTX+CMMI12 /FontDescriptor 1579 0 R /FirstChar 58 /LastChar 58 /Widths 1561 0 R >> endobj 104 0 obj << /Type /Font /Subtype /Type1 /BaseFont /NKOFVI+CMMI7 /FontDescriptor 1581 0 R /FirstChar 34 /LastChar 34 /Widths 1565 0 R >> endobj 485 0 obj << /Type /Font /Subtype /Type1 /BaseFont /PQILTH+CMMI9 /FontDescriptor 1583 0 R /FirstChar 58 /LastChar 58 /Widths 1563 0 R >> endobj 9 0 obj << /Type /Font /Subtype /Type1 /BaseFont /CGQJUW+CMR10 /FontDescriptor 1585 0 R /FirstChar 11 /LastChar 124 /Widths 1569 0 R /ToUnicode 1 0 R >> endobj 486 0 obj << /Type /Font /Subtype /Type1 /BaseFont /FNXNQQ+CMR9 /FontDescriptor 1587 0 R /FirstChar 13 /LastChar 121 /Widths 1562 0 R /ToUnicode 1 0 R >> endobj 14 0 obj << /Type /Font /Subtype /Type1 /BaseFont /FMXJQF+CMSY10 /FontDescriptor 1589 0 R /FirstChar 13 /LastChar 110 /Widths 1568 0 R >> endobj 25 0 obj << /Type /Font /Subtype /Type1 /BaseFont /NLEDWE+CMTT10 /FontDescriptor 1591 0 R /FirstChar 33 /LastChar 126 /Widths 1567 0 R /ToUnicode 3 0 R >> endobj 77 0 obj << /Type /Font /Subtype /Type1 /BaseFont /NYQLAF+CMTT12 /FontDescriptor 1593 0 R /FirstChar 97 /LastChar 109 /Widths 1566 0 R /ToUnicode 3 0 R >> endobj 484 0 obj << /Type /Font /Subtype /Type1 /BaseFont /TMOCRL+CMTT9 /FontDescriptor 1595 0 R /FirstChar 42 /LastChar 125 /Widths 1564 0 R /ToUnicode 3 0 R >> endobj 10 0 obj << /Type /Pages /Count 6 /Parent 1596 0 R /Kids [5 0 R 12 0 R 19 0 R 29 0 R 37 0 R 49 0 R] >> endobj 62 0 obj << /Type /Pages /Count 6 /Parent 1596 0 R /Kids [57 0 R 64 0 R 71 0 R 79 0 R 88 0 R 101 0 R] >> endobj 110 0 obj << /Type /Pages /Count 6 /Parent 1596 0 R /Kids [107 0 R 113 0 R 117 0 R 121 0 R 127 0 R 139 0 R] >> endobj 152 0 obj << /Type /Pages /Count 6 /Parent 1596 0 R /Kids [146 0 R 157 0 R 168 0 R 176 0 R 181 0 R 188 0 R] >> endobj 196 0 obj << /Type /Pages /Count 6 /Parent 1596 0 R /Kids [193 0 R 198 0 R 204 0 R 209 0 R 217 0 R 225 0 R] >> endobj 234 0 obj << /Type /Pages /Count 6 /Parent 1596 0 R /Kids [230 0 R 236 0 R 244 0 R 249 0 R 253 0 R 259 0 R] >> endobj 268 0 obj << /Type /Pages /Count 6 /Parent 1597 0 R /Kids [265 0 R 270 0 R 274 0 R 278 0 R 282 0 R 286 0 R] >> endobj 293 0 obj << /Type /Pages /Count 6 /Parent 1597 0 R /Kids [290 0 R 295 0 R 299 0 R 303 0 R 307 0 R 312 0 R] >> endobj 321 0 obj << /Type /Pages /Count 6 /Parent 1597 0 R /Kids [316 0 R 323 0 R 330 0 R 335 0 R 339 0 R 344 0 R] >> endobj 355 0 obj << /Type /Pages /Count 6 /Parent 1597 0 R /Kids [349 0 R 357 0 R 364 0 R 368 0 R 480 0 R 604 0 R] >> endobj 713 0 obj << /Type /Pages /Count 6 /Parent 1597 0 R /Kids [710 0 R 827 0 R 942 0 R 1049 0 R 1165 0 R 1214 0 R] >> endobj 1265 0 obj << /Type /Pages /Count 4 /Parent 1597 0 R /Kids [1261 0 R 1267 0 R 1309 0 R 1347 0 R] >> endobj 1596 0 obj << /Type /Pages /Count 36 /Parent 1598 0 R /Kids [10 0 R 62 0 R 110 0 R 152 0 R 196 0 R 234 0 R] >> endobj 1597 0 obj << /Type /Pages /Count 34 /Parent 1598 0 R /Kids [268 0 R 293 0 R 321 0 R 355 0 R 713 0 R 1265 0 R] >> endobj 1598 0 obj << /Type /Pages /Count 70 /Kids [1596 0 R 1597 0 R] >> endobj 1599 0 obj << /Type /Outlines /First 1351 0 R /Last 1558 0 R /Count 10 >> endobj 1558 0 obj << /Title 1559 0 R /A 1557 0 R /Parent 1599 0 R /Prev 1555 0 R >> endobj 1555 0 obj << /Title 1556 0 R /A 1554 0 R /Parent 1599 0 R /Prev 1465 0 R /Next 1558 0 R >> endobj 1552 0 obj << /Title 1553 0 R /A 1551 0 R /Parent 1483 0 R /Prev 1549 0 R >> endobj 1549 0 obj << /Title 1550 0 R /A 1548 0 R /Parent 1483 0 R /Prev 1546 0 R /Next 1552 0 R >> endobj 1546 0 obj << /Title 1547 0 R /A 1545 0 R /Parent 1483 0 R /Prev 1528 0 R /Next 1549 0 R >> endobj 1543 0 obj << /Title 1544 0 R /A 1542 0 R /Parent 1528 0 R /Prev 1540 0 R >> endobj 1540 0 obj << /Title 1541 0 R /A 1539 0 R /Parent 1528 0 R /Prev 1537 0 R /Next 1543 0 R >> endobj 1537 0 obj << /Title 1538 0 R /A 1536 0 R /Parent 1528 0 R /Prev 1534 0 R /Next 1540 0 R >> endobj 1534 0 obj << /Title 1535 0 R /A 1533 0 R /Parent 1528 0 R /Prev 1531 0 R /Next 1537 0 R >> endobj 1531 0 obj << /Title 1532 0 R /A 1530 0 R /Parent 1528 0 R /Next 1534 0 R >> endobj 1528 0 obj << /Title 1529 0 R /A 1527 0 R /Parent 1483 0 R /Prev 1513 0 R /Next 1546 0 R /First 1531 0 R /Last 1543 0 R /Count -5 >> endobj 1525 0 obj << /Title 1526 0 R /A 1524 0 R /Parent 1513 0 R /Prev 1522 0 R >> endobj 1522 0 obj << /Title 1523 0 R /A 1521 0 R /Parent 1513 0 R /Prev 1519 0 R /Next 1525 0 R >> endobj 1519 0 obj << /Title 1520 0 R /A 1518 0 R /Parent 1513 0 R /Prev 1516 0 R /Next 1522 0 R >> endobj 1516 0 obj << /Title 1517 0 R /A 1515 0 R /Parent 1513 0 R /Next 1519 0 R >> endobj 1513 0 obj << /Title 1514 0 R /A 1512 0 R /Parent 1483 0 R /Prev 1510 0 R /Next 1528 0 R /First 1516 0 R /Last 1525 0 R /Count -4 >> endobj 1510 0 obj << /Title 1511 0 R /A 1509 0 R /Parent 1483 0 R /Prev 1507 0 R /Next 1513 0 R >> endobj 1507 0 obj << /Title 1508 0 R /A 1506 0 R /Parent 1483 0 R /Prev 1486 0 R /Next 1510 0 R >> endobj 1504 0 obj << /Title 1505 0 R /A 1503 0 R /Parent 1486 0 R /Prev 1501 0 R >> endobj 1501 0 obj << /Title 1502 0 R /A 1500 0 R /Parent 1486 0 R /Prev 1498 0 R /Next 1504 0 R >> endobj 1498 0 obj << /Title 1499 0 R /A 1497 0 R /Parent 1486 0 R /Prev 1495 0 R /Next 1501 0 R >> endobj 1495 0 obj << /Title 1496 0 R /A 1494 0 R /Parent 1486 0 R /Prev 1492 0 R /Next 1498 0 R >> endobj 1492 0 obj << /Title 1493 0 R /A 1491 0 R /Parent 1486 0 R /Prev 1489 0 R /Next 1495 0 R >> endobj 1489 0 obj << /Title 1490 0 R /A 1488 0 R /Parent 1486 0 R /Next 1492 0 R >> endobj 1486 0 obj << /Title 1487 0 R /A 1485 0 R /Parent 1483 0 R /Next 1507 0 R /First 1489 0 R /Last 1504 0 R /Count -6 >> endobj 1483 0 obj << /Title 1484 0 R /A 1482 0 R /Parent 1465 0 R /Prev 1480 0 R /First 1486 0 R /Last 1552 0 R /Count -8 >> endobj 1480 0 obj << /Title 1481 0 R /A 1479 0 R /Parent 1465 0 R /Prev 1477 0 R /Next 1483 0 R >> endobj 1477 0 obj << /Title 1478 0 R /A 1476 0 R /Parent 1465 0 R /Prev 1474 0 R /Next 1480 0 R >> endobj 1474 0 obj << /Title 1475 0 R /A 1473 0 R /Parent 1465 0 R /Prev 1471 0 R /Next 1477 0 R >> endobj 1471 0 obj << /Title 1472 0 R /A 1470 0 R /Parent 1465 0 R /Prev 1468 0 R /Next 1474 0 R >> endobj 1468 0 obj << /Title 1469 0 R /A 1467 0 R /Parent 1465 0 R /Next 1471 0 R >> endobj 1465 0 obj << /Title 1466 0 R /A 1464 0 R /Parent 1599 0 R /Prev 1462 0 R /Next 1555 0 R /First 1468 0 R /Last 1483 0 R /Count -6 >> endobj 1462 0 obj << /Title 1463 0 R /A 1461 0 R /Parent 1599 0 R /Prev 1459 0 R /Next 1465 0 R >> endobj 1459 0 obj << /Title 1460 0 R /A 1458 0 R /Parent 1599 0 R /Prev 1435 0 R /Next 1462 0 R >> endobj 1456 0 obj << /Title 1457 0 R /A 1455 0 R /Parent 1435 0 R /Prev 1453 0 R >> endobj 1453 0 obj << /Title 1454 0 R /A 1452 0 R /Parent 1435 0 R /Prev 1450 0 R /Next 1456 0 R >> endobj 1450 0 obj << /Title 1451 0 R /A 1449 0 R /Parent 1435 0 R /Prev 1447 0 R /Next 1453 0 R >> endobj 1447 0 obj << /Title 1448 0 R /A 1446 0 R /Parent 1435 0 R /Prev 1444 0 R /Next 1450 0 R >> endobj 1444 0 obj << /Title 1445 0 R /A 1443 0 R /Parent 1435 0 R /Prev 1441 0 R /Next 1447 0 R >> endobj 1441 0 obj << /Title 1442 0 R /A 1440 0 R /Parent 1435 0 R /Prev 1438 0 R /Next 1444 0 R >> endobj 1438 0 obj << /Title 1439 0 R /A 1437 0 R /Parent 1435 0 R /Next 1441 0 R >> endobj 1435 0 obj << /Title 1436 0 R /A 1434 0 R /Parent 1599 0 R /Prev 1393 0 R /Next 1459 0 R /First 1438 0 R /Last 1456 0 R /Count -7 >> endobj 1432 0 obj << /Title 1433 0 R /A 1431 0 R /Parent 1393 0 R /Prev 1429 0 R >> endobj 1429 0 obj << /Title 1430 0 R /A 1428 0 R /Parent 1393 0 R /Prev 1426 0 R /Next 1432 0 R >> endobj 1426 0 obj << /Title 1427 0 R /A 1425 0 R /Parent 1393 0 R /Prev 1423 0 R /Next 1429 0 R >> endobj 1423 0 obj << /Title 1424 0 R /A 1422 0 R /Parent 1393 0 R /Prev 1420 0 R /Next 1426 0 R >> endobj 1420 0 obj << /Title 1421 0 R /A 1419 0 R /Parent 1393 0 R /Prev 1417 0 R /Next 1423 0 R >> endobj 1417 0 obj << /Title 1418 0 R /A 1416 0 R /Parent 1393 0 R /Prev 1414 0 R /Next 1420 0 R >> endobj 1414 0 obj << /Title 1415 0 R /A 1413 0 R /Parent 1393 0 R /Prev 1411 0 R /Next 1417 0 R >> endobj 1411 0 obj << /Title 1412 0 R /A 1410 0 R /Parent 1393 0 R /Prev 1408 0 R /Next 1414 0 R >> endobj 1408 0 obj << /Title 1409 0 R /A 1407 0 R /Parent 1393 0 R /Prev 1405 0 R /Next 1411 0 R >> endobj 1405 0 obj << /Title 1406 0 R /A 1404 0 R /Parent 1393 0 R /Prev 1402 0 R /Next 1408 0 R >> endobj 1402 0 obj << /Title 1403 0 R /A 1401 0 R /Parent 1393 0 R /Prev 1399 0 R /Next 1405 0 R >> endobj 1399 0 obj << /Title 1400 0 R /A 1398 0 R /Parent 1393 0 R /Prev 1396 0 R /Next 1402 0 R >> endobj 1396 0 obj << /Title 1397 0 R /A 1395 0 R /Parent 1393 0 R /Next 1399 0 R >> endobj 1393 0 obj << /Title 1394 0 R /A 1392 0 R /Parent 1599 0 R /Prev 1381 0 R /Next 1435 0 R /First 1396 0 R /Last 1432 0 R /Count -13 >> endobj 1390 0 obj << /Title 1391 0 R /A 1389 0 R /Parent 1381 0 R /Prev 1387 0 R >> endobj 1387 0 obj << /Title 1388 0 R /A 1386 0 R /Parent 1381 0 R /Prev 1384 0 R /Next 1390 0 R >> endobj 1384 0 obj << /Title 1385 0 R /A 1383 0 R /Parent 1381 0 R /Next 1387 0 R >> endobj 1381 0 obj << /Title 1382 0 R /A 1380 0 R /Parent 1599 0 R /Prev 1354 0 R /Next 1393 0 R /First 1384 0 R /Last 1390 0 R /Count -3 >> endobj 1378 0 obj << /Title 1379 0 R /A 1377 0 R /Parent 1354 0 R /Prev 1375 0 R >> endobj 1375 0 obj << /Title 1376 0 R /A 1374 0 R /Parent 1354 0 R /Prev 1372 0 R /Next 1378 0 R >> endobj 1372 0 obj << /Title 1373 0 R /A 1371 0 R /Parent 1354 0 R /Prev 1369 0 R /Next 1375 0 R >> endobj 1369 0 obj << /Title 1370 0 R /A 1368 0 R /Parent 1354 0 R /Prev 1366 0 R /Next 1372 0 R >> endobj 1366 0 obj << /Title 1367 0 R /A 1365 0 R /Parent 1354 0 R /Prev 1363 0 R /Next 1369 0 R >> endobj 1363 0 obj << /Title 1364 0 R /A 1362 0 R /Parent 1354 0 R /Prev 1360 0 R /Next 1366 0 R >> endobj 1360 0 obj << /Title 1361 0 R /A 1359 0 R /Parent 1354 0 R /Prev 1357 0 R /Next 1363 0 R >> endobj 1357 0 obj << /Title 1358 0 R /A 1356 0 R /Parent 1354 0 R /Next 1360 0 R >> endobj 1354 0 obj << /Title 1355 0 R /A 1353 0 R /Parent 1599 0 R /Prev 1351 0 R /Next 1381 0 R /First 1357 0 R /Last 1378 0 R /Count -8 >> endobj 1351 0 obj << /Title 1352 0 R /A 1350 0 R /Parent 1599 0 R /Next 1354 0 R >> endobj 1600 0 obj << /Names [(-1) 1311 0 R (-2) 1349 0 R (1) 21 0 R (10) 103 0 R (11) 109 0 R (12) 115 0 R] /Limits [(-1) (12)] >> endobj 1601 0 obj << /Names [(13) 119 0 R (14) 123 0 R (15) 129 0 R (16) 141 0 R (17) 148 0 R (18) 159 0 R] /Limits [(13) (18)] >> endobj 1602 0 obj << /Names [(19) 170 0 R (2) 31 0 R (20) 178 0 R (21) 183 0 R (22) 190 0 R (23) 195 0 R] /Limits [(19) (23)] >> endobj 1603 0 obj << /Names [(24) 200 0 R (25) 206 0 R (26) 211 0 R (27) 219 0 R (28) 227 0 R (29) 232 0 R] /Limits [(24) (29)] >> endobj 1604 0 obj << /Names [(3) 39 0 R (30) 238 0 R (31) 246 0 R (32) 251 0 R (33) 255 0 R (34) 261 0 R] /Limits [(3) (34)] >> endobj 1605 0 obj << /Names [(35) 267 0 R (36) 272 0 R (37) 276 0 R (38) 280 0 R (39) 284 0 R (4) 51 0 R] /Limits [(35) (4)] >> endobj 1606 0 obj << /Names [(40) 288 0 R (41) 292 0 R (42) 297 0 R (43) 301 0 R (44) 305 0 R (45) 309 0 R] /Limits [(40) (45)] >> endobj 1607 0 obj << /Names [(46) 314 0 R (47) 318 0 R (48) 325 0 R (49) 332 0 R (5) 59 0 R (50) 337 0 R] /Limits [(46) (50)] >> endobj 1608 0 obj << /Names [(51) 341 0 R (52) 346 0 R (53) 351 0 R (54) 359 0 R (55) 366 0 R (56) 370 0 R] /Limits [(51) (56)] >> endobj 1609 0 obj << /Names [(57) 482 0 R (58) 606 0 R (59) 712 0 R (6) 66 0 R (60) 829 0 R (61) 944 0 R] /Limits [(57) (61)] >> endobj 1610 0 obj << /Names [(62) 1051 0 R (63) 1167 0 R (64) 1216 0 R (65) 1263 0 R (66) 1269 0 R (7) 73 0 R] /Limits [(62) (7)] >> endobj 1611 0 obj << /Names [(8) 81 0 R (9) 90 0 R (APA\040Support) 172 0 R (Acronym\040Commands) 360 0 R (Apacite\040Commands) 342 0 R (AuthorDate\040Commands) 347 0 R] /Limits [(8) (AuthorDate\040Commands)] >> endobj 1612 0 obj << /Names [(Basic\040Commands) 242 0 R (Citation\040Commands) 174 0 R (Concept\040Index) 1264 0 R (Conditional\040Parsing) 186 0 R (Configuration) 97 0 R (Cross\040References) 142 0 R] /Limits [(Basic\040Commands) (Cross\040References)] >> endobj 1613 0 obj << /Names [(Czech\040Commands) 327 0 R (DOS\040or\040Windows) 52 0 R (Debugging) 124 0 R (Direct\040Conversion) 163 0 R (Environments) 362 0 R (Equations) 150 0 R] /Limits [(Czech\040Commands) (Equations)] >> endobj 1614 0 obj << /Names [(Error\040Messages\040and\040Logging) 207 0 R (Features) 130 0 R (Font\040Commands) 247 0 R (Font\040Configuration) 95 0 R (French\040Commands) 328 0 R (Function\040Index) 483 0 R] /Limits [(Error\040Messages\040and\040Logging) (Function\040Index)] >> endobj 1615 0 obj << /Names [(General) 41 0 R (General\040Assumptions) 92 0 R (General\040Commands) 241 0 R (German\040Commands) 326 0 R (Graphics) 161 0 R (Harvard\040Commands) 352 0 R] /Limits [(General) (Harvard\040Commands)] >> endobj 1616 0 obj << /Names [(History) 220 0 R (HyperLatex\040Commands) 353 0 R (Hyperlatex) 171 0 R (Ignore\040Command) 96 0 R (Input\040Encoding) 134 0 R (Input\040Processing) 184 0 R] /Limits [(History) (Input\040Processing)] >> endobj 1617 0 obj << /Names [(Installation) 40 0 R (Introduction) 22 0 R (Known\040Bugs) 27 0 R (LaTeX\040Commands) 240 0 R (LaTeX2RTF\040Options) 94 0 R (LaTeX2RTF\040under\040Development) 173 0 R] /Limits [(Installation) (LaTeX2RTF\040under\040Development)] >> endobj 1618 0 obj << /Names [(LaTeX2e) 131 0 R (Language\040Commands) 320 0 R (Language\040Configuration) 111 0 R (Language\040Support) 135 0 R (Letter\040Commands) 319 0 R (Logos) 256 0 R] /Limits [(LaTeX2e) (Logos)] >> endobj 1619 0 obj << /Names [(MS\040Windows\040systems) 60 0 R (Macintosh) 74 0 R (Math\040and\040Special\040Symbols) 136 0 R (Missing\040options) 98 0 R (Natbib\040Commands) 354 0 R (Obtaining\040LaTeX2RTF) 42 0 R] /Limits [(MS\040Windows\040systems) (Obtaining\040LaTeX2RTF)] >> endobj 1620 0 obj << /Names [(Other\040Commands) 361 0 R (Output\040Formatting) 191 0 R (Page\040Formatting) 149 0 R (Pagestyles) 162 0 R (Preamble\040Commands) 310 0 R (Problems\040Compiling) 75 0 R] /Limits [(Other\040Commands) (Problems\040Compiling)] >> endobj 1621 0 obj << /Names [(Problems\040with\040make\040check) 76 0 R (Reporting\040Bugs) 99 0 R (Russian\040Commands) 333 0 R (Sectioning\040Commands) 262 0 R (Special\040Characters) 257 0 R (Tables) 160 0 R] /Limits [(Problems\040with\040make\040check) (Tables)] >> endobj 1622 0 obj << /Names [(Todo\040List) 239 0 R (UNIX) 46 0 R (Uncategorized) 263 0 R (Unicode\040Support) 132 0 R (Unimplemented\040Features) 26 0 R (Using\040LaTeX2RTF) 91 0 R] /Limits [(Todo\040List) (Using\040LaTeX2RTF)] >> endobj 1623 0 obj << /Kids [1600 0 R 1601 0 R 1602 0 R 1603 0 R 1604 0 R 1605 0 R] /Limits [(-1) (4)] >> endobj 1624 0 obj << /Kids [1606 0 R 1607 0 R 1608 0 R 1609 0 R 1610 0 R 1611 0 R] /Limits [(40) (AuthorDate\040Commands)] >> endobj 1625 0 obj << /Kids [1612 0 R 1613 0 R 1614 0 R 1615 0 R 1616 0 R 1617 0 R] /Limits [(Basic\040Commands) (LaTeX2RTF\040under\040Development)] >> endobj 1626 0 obj << /Kids [1618 0 R 1619 0 R 1620 0 R 1621 0 R 1622 0 R] /Limits [(LaTeX2e) (Using\040LaTeX2RTF)] >> endobj 1627 0 obj << /Kids [1623 0 R 1624 0 R 1625 0 R 1626 0 R] /Limits [(-1) (Using\040LaTeX2RTF)] >> endobj 1628 0 obj << /Dests 1627 0 R >> endobj 1629 0 obj << /Type /Catalog /Pages 1598 0 R /Outlines 1599 0 R /Names 1628 0 R /PageMode /UseOutlines >> endobj 1630 0 obj << /Producer (MiKTeX pdfTeX-1.40.18) /Creator (TeX) /CreationDate (D:20200529191949+02'00') /ModDate (D:20200529191949+02'00') /Trapped /False /PTEX.Fullbanner (This is MiKTeX-pdfTeX 2.9.6607 (1.40.19)) >> endobj xref 0 1631 0000000000 65535 f 0000000015 00000 n 0000000681 00000 n 0000001358 00000 n 0000002623 00000 n 0000002518 00000 n 0000001962 00000 n 0000442849 00000 n 0000443010 00000 n 0000443752 00000 n 0000444704 00000 n 0000003775 00000 n 0000003667 00000 n 0000002713 00000 n 0000444073 00000 n 0000007120 00000 n 0000007421 00000 n 0000007698 00000 n 0000007955 00000 n 0000006965 00000 n 0000003856 00000 n 0000007853 00000 n 0000007904 00000 n 0000007271 00000 n 0000007560 00000 n 0000444218 00000 n 0000087248 00000 n 0000087360 00000 n 0000008346 00000 n 0000008187 00000 n 0000008058 00000 n 0000008295 00000 n 0000011561 00000 n 0000011898 00000 n 0000012189 00000 n 0000012339 00000 n 0000012943 00000 n 0000011392 00000 n 0000008386 00000 n 0000012676 00000 n 0000012727 00000 n 0000012778 00000 n 0000012833 00000 n 0000011730 00000 n 0000012044 00000 n 0000012508 00000 n 0000012888 00000 n 0000019560 00000 n 0000016516 00000 n 0000016302 00000 n 0000013046 00000 n 0000016410 00000 n 0000016461 00000 n 0000019732 00000 n 0000020026 00000 n 0000020181 00000 n 0000020442 00000 n 0000019405 00000 n 0000016619 00000 n 0000020336 00000 n 0000020387 00000 n 0000019880 00000 n 0000444814 00000 n 0000023638 00000 n 0000023479 00000 n 0000020545 00000 n 0000023587 00000 n 0000026187 00000 n 0000026345 00000 n 0000026508 00000 n 0000026910 00000 n 0000026046 00000 n 0000023742 00000 n 0000026694 00000 n 0000026745 00000 n 0000026800 00000 n 0000026855 00000 n 0000444380 00000 n 0000027325 00000 n 0000027166 00000 n 0000027037 00000 n 0000027274 00000 n 0000030626 00000 n 0000030777 00000 n 0000031062 00000 n 0000031201 00000 n 0000031348 00000 n 0000031706 00000 n 0000030464 00000 n 0000027365 00000 n 0000031494 00000 n 0000031545 00000 n 0000031596 00000 n 0000030920 00000 n 0000031651 00000 n 0000074797 00000 n 0000071714 00000 n 0000068138 00000 n 0000087304 00000 n 0000087416 00000 n 0000034675 00000 n 0000034511 00000 n 0000031809 00000 n 0000034622 00000 n 0000443464 00000 n 0000037468 00000 n 0000037675 00000 n 0000037336 00000 n 0000034781 00000 n 0000037622 00000 n 0000444926 00000 n 0000075957 00000 n 0000040571 00000 n 0000040406 00000 n 0000037781 00000 n 0000040518 00000 n 0000043377 00000 n 0000043212 00000 n 0000040653 00000 n 0000043324 00000 n 0000045803 00000 n 0000045581 00000 n 0000043470 00000 n 0000045693 00000 n 0000045746 00000 n 0000048832 00000 n 0000049483 00000 n 0000048692 00000 n 0000045907 00000 n 0000049150 00000 n 0000049203 00000 n 0000049256 00000 n 0000049312 00000 n 0000048991 00000 n 0000049369 00000 n 0000049426 00000 n 0000060904 00000 n 0000052767 00000 n 0000053033 00000 n 0000052635 00000 n 0000049600 00000 n 0000052923 00000 n 0000052976 00000 n 0000056478 00000 n 0000056770 00000 n 0000057085 00000 n 0000056330 00000 n 0000053137 00000 n 0000056922 00000 n 0000056975 00000 n 0000057028 00000 n 0000056625 00000 n 0000445044 00000 n 0000060345 00000 n 0000060495 00000 n 0000060669 00000 n 0000061128 00000 n 0000060197 00000 n 0000057189 00000 n 0000060851 00000 n 0000060957 00000 n 0000061014 00000 n 0000061071 00000 n 0000071657 00000 n 0000063653 00000 n 0000063805 00000 n 0000063969 00000 n 0000064287 00000 n 0000063505 00000 n 0000061244 00000 n 0000064120 00000 n 0000064173 00000 n 0000064230 00000 n 0000087195 00000 n 0000107278 00000 n 0000064698 00000 n 0000064533 00000 n 0000064403 00000 n 0000064645 00000 n 0000067798 00000 n 0000068304 00000 n 0000067658 00000 n 0000064739 00000 n 0000068085 00000 n 0000068190 00000 n 0000067942 00000 n 0000068247 00000 n 0000071770 00000 n 0000071435 00000 n 0000068408 00000 n 0000071547 00000 n 0000071600 00000 n 0000074853 00000 n 0000074632 00000 n 0000071874 00000 n 0000074744 00000 n 0000445162 00000 n 0000076010 00000 n 0000075792 00000 n 0000074957 00000 n 0000075904 00000 n 0000078731 00000 n 0000078877 00000 n 0000079126 00000 n 0000078591 00000 n 0000076114 00000 n 0000079020 00000 n 0000079073 00000 n 0000079525 00000 n 0000079360 00000 n 0000079230 00000 n 0000079472 00000 n 0000081927 00000 n 0000082098 00000 n 0000082437 00000 n 0000082810 00000 n 0000083299 00000 n 0000081747 00000 n 0000079566 00000 n 0000083193 00000 n 0000083246 00000 n 0000082268 00000 n 0000082624 00000 n 0000083002 00000 n 0000083698 00000 n 0000083533 00000 n 0000083403 00000 n 0000083645 00000 n 0000086803 00000 n 0000087472 00000 n 0000086663 00000 n 0000083739 00000 n 0000087142 00000 n 0000086973 00000 n 0000445280 00000 n 0000090439 00000 n 0000090046 00000 n 0000087588 00000 n 0000090158 00000 n 0000090211 00000 n 0000090268 00000 n 0000090325 00000 n 0000090382 00000 n 0000091317 00000 n 0000091095 00000 n 0000090555 00000 n 0000091207 00000 n 0000091260 00000 n 0000091967 00000 n 0000091802 00000 n 0000091398 00000 n 0000091914 00000 n 0000092851 00000 n 0000092576 00000 n 0000092037 00000 n 0000092688 00000 n 0000092741 00000 n 0000092794 00000 n 0000093795 00000 n 0000093516 00000 n 0000092944 00000 n 0000093628 00000 n 0000093681 00000 n 0000093738 00000 n 0000094549 00000 n 0000094384 00000 n 0000093876 00000 n 0000094496 00000 n 0000445398 00000 n 0000095393 00000 n 0000095228 00000 n 0000094619 00000 n 0000095340 00000 n 0000096146 00000 n 0000095981 00000 n 0000095474 00000 n 0000096093 00000 n 0000096862 00000 n 0000096697 00000 n 0000096216 00000 n 0000096809 00000 n 0000097643 00000 n 0000097478 00000 n 0000096932 00000 n 0000097590 00000 n 0000098354 00000 n 0000098189 00000 n 0000097713 00000 n 0000098301 00000 n 0000099123 00000 n 0000098958 00000 n 0000098424 00000 n 0000099070 00000 n 0000445516 00000 n 0000099821 00000 n 0000099656 00000 n 0000099193 00000 n 0000099768 00000 n 0000100508 00000 n 0000100343 00000 n 0000099891 00000 n 0000100455 00000 n 0000101221 00000 n 0000101056 00000 n 0000100578 00000 n 0000101168 00000 n 0000102413 00000 n 0000102191 00000 n 0000101291 00000 n 0000102303 00000 n 0000102356 00000 n 0000103220 00000 n 0000103055 00000 n 0000102506 00000 n 0000103167 00000 n 0000104218 00000 n 0000103941 00000 n 0000103290 00000 n 0000104053 00000 n 0000104106 00000 n 0000104163 00000 n 0000445634 00000 n 0000105180 00000 n 0000104849 00000 n 0000104311 00000 n 0000104961 00000 n 0000105014 00000 n 0000105067 00000 n 0000105123 00000 n 0000105971 00000 n 0000105749 00000 n 0000105273 00000 n 0000105861 00000 n 0000105914 00000 n 0000106587 00000 n 0000106422 00000 n 0000106052 00000 n 0000106534 00000 n 0000107391 00000 n 0000107113 00000 n 0000106657 00000 n 0000107225 00000 n 0000107335 00000 n 0000108133 00000 n 0000107915 00000 n 0000107472 00000 n 0000108027 00000 n 0000108080 00000 n 0000109101 00000 n 0000108769 00000 n 0000108214 00000 n 0000108881 00000 n 0000108934 00000 n 0000108987 00000 n 0000109044 00000 n 0000445752 00000 n 0000110207 00000 n 0000109871 00000 n 0000109182 00000 n 0000109983 00000 n 0000110036 00000 n 0000110093 00000 n 0000110150 00000 n 0000110977 00000 n 0000110812 00000 n 0000110312 00000 n 0000110924 00000 n 0000111576 00000 n 0000111411 00000 n 0000111047 00000 n 0000111523 00000 n 0000116476 00000 n 0000116609 00000 n 0000116742 00000 n 0000116875 00000 n 0000117007 00000 n 0000117140 00000 n 0000117273 00000 n 0000117406 00000 n 0000117539 00000 n 0000117672 00000 n 0000117805 00000 n 0000117938 00000 n 0000118071 00000 n 0000118203 00000 n 0000118336 00000 n 0000118469 00000 n 0000118602 00000 n 0000118735 00000 n 0000118868 00000 n 0000119001 00000 n 0000119132 00000 n 0000119264 00000 n 0000119397 00000 n 0000119530 00000 n 0000119663 00000 n 0000119796 00000 n 0000119929 00000 n 0000120062 00000 n 0000120195 00000 n 0000120328 00000 n 0000120460 00000 n 0000120593 00000 n 0000120726 00000 n 0000120859 00000 n 0000120992 00000 n 0000121125 00000 n 0000121258 00000 n 0000121391 00000 n 0000121524 00000 n 0000121657 00000 n 0000121789 00000 n 0000121922 00000 n 0000122055 00000 n 0000122187 00000 n 0000122320 00000 n 0000122453 00000 n 0000122586 00000 n 0000122719 00000 n 0000122850 00000 n 0000122981 00000 n 0000123110 00000 n 0000123239 00000 n 0000123368 00000 n 0000123497 00000 n 0000123626 00000 n 0000123755 00000 n 0000123884 00000 n 0000124013 00000 n 0000124142 00000 n 0000124271 00000 n 0000124400 00000 n 0000124529 00000 n 0000124657 00000 n 0000124785 00000 n 0000124913 00000 n 0000125041 00000 n 0000125170 00000 n 0000125299 00000 n 0000125432 00000 n 0000125561 00000 n 0000125694 00000 n 0000125823 00000 n 0000125952 00000 n 0000126080 00000 n 0000126209 00000 n 0000126338 00000 n 0000126467 00000 n 0000126596 00000 n 0000126725 00000 n 0000126854 00000 n 0000126983 00000 n 0000127112 00000 n 0000127241 00000 n 0000127370 00000 n 0000127499 00000 n 0000127628 00000 n 0000127757 00000 n 0000127886 00000 n 0000128015 00000 n 0000128144 00000 n 0000128273 00000 n 0000128402 00000 n 0000128531 00000 n 0000128660 00000 n 0000128789 00000 n 0000128918 00000 n 0000129047 00000 n 0000129176 00000 n 0000129305 00000 n 0000135138 00000 n 0000135271 00000 n 0000135404 00000 n 0000135537 00000 n 0000135670 00000 n 0000135802 00000 n 0000135935 00000 n 0000136068 00000 n 0000136201 00000 n 0000129540 00000 n 0000115560 00000 n 0000111646 00000 n 0000129434 00000 n 0000129487 00000 n 0000444542 00000 n 0000443608 00000 n 0000443912 00000 n 0000136334 00000 n 0000136467 00000 n 0000136600 00000 n 0000136733 00000 n 0000136866 00000 n 0000136999 00000 n 0000137131 00000 n 0000137264 00000 n 0000137397 00000 n 0000137530 00000 n 0000137663 00000 n 0000137796 00000 n 0000137929 00000 n 0000138062 00000 n 0000138195 00000 n 0000138327 00000 n 0000138460 00000 n 0000138592 00000 n 0000138724 00000 n 0000138857 00000 n 0000138990 00000 n 0000139123 00000 n 0000139256 00000 n 0000139389 00000 n 0000139522 00000 n 0000139655 00000 n 0000139788 00000 n 0000139920 00000 n 0000140052 00000 n 0000140184 00000 n 0000140317 00000 n 0000140450 00000 n 0000140583 00000 n 0000140716 00000 n 0000140849 00000 n 0000140982 00000 n 0000141115 00000 n 0000141248 00000 n 0000141380 00000 n 0000141512 00000 n 0000141644 00000 n 0000141776 00000 n 0000141908 00000 n 0000142041 00000 n 0000142174 00000 n 0000142307 00000 n 0000142440 00000 n 0000142573 00000 n 0000142706 00000 n 0000142839 00000 n 0000142971 00000 n 0000143104 00000 n 0000143234 00000 n 0000143364 00000 n 0000143493 00000 n 0000143620 00000 n 0000143749 00000 n 0000143878 00000 n 0000144007 00000 n 0000144135 00000 n 0000144264 00000 n 0000144393 00000 n 0000144521 00000 n 0000144650 00000 n 0000144779 00000 n 0000144908 00000 n 0000145037 00000 n 0000145166 00000 n 0000145295 00000 n 0000145423 00000 n 0000145552 00000 n 0000145681 00000 n 0000145810 00000 n 0000145939 00000 n 0000146068 00000 n 0000146197 00000 n 0000146324 00000 n 0000146453 00000 n 0000146582 00000 n 0000146711 00000 n 0000146840 00000 n 0000146969 00000 n 0000147098 00000 n 0000147227 00000 n 0000147356 00000 n 0000147485 00000 n 0000147614 00000 n 0000147743 00000 n 0000147872 00000 n 0000148001 00000 n 0000148129 00000 n 0000148257 00000 n 0000148386 00000 n 0000148515 00000 n 0000148644 00000 n 0000148773 00000 n 0000148902 00000 n 0000149031 00000 n 0000149160 00000 n 0000149289 00000 n 0000149418 00000 n 0000149546 00000 n 0000149675 00000 n 0000149804 00000 n 0000149931 00000 n 0000150059 00000 n 0000150188 00000 n 0000150317 00000 n 0000150445 00000 n 0000150574 00000 n 0000150701 00000 n 0000156196 00000 n 0000156329 00000 n 0000156462 00000 n 0000156595 00000 n 0000156727 00000 n 0000150881 00000 n 0000134054 00000 n 0000129670 00000 n 0000150828 00000 n 0000156859 00000 n 0000156992 00000 n 0000157125 00000 n 0000157258 00000 n 0000157391 00000 n 0000157524 00000 n 0000157657 00000 n 0000157790 00000 n 0000157923 00000 n 0000158056 00000 n 0000158189 00000 n 0000158322 00000 n 0000158455 00000 n 0000158588 00000 n 0000158720 00000 n 0000158852 00000 n 0000158985 00000 n 0000159118 00000 n 0000159251 00000 n 0000159384 00000 n 0000159517 00000 n 0000159649 00000 n 0000159782 00000 n 0000159915 00000 n 0000160048 00000 n 0000160180 00000 n 0000160311 00000 n 0000160444 00000 n 0000160577 00000 n 0000160710 00000 n 0000160842 00000 n 0000160974 00000 n 0000161107 00000 n 0000161240 00000 n 0000161373 00000 n 0000161506 00000 n 0000161639 00000 n 0000161772 00000 n 0000161905 00000 n 0000162038 00000 n 0000162171 00000 n 0000162303 00000 n 0000162435 00000 n 0000162568 00000 n 0000162701 00000 n 0000162834 00000 n 0000162967 00000 n 0000163098 00000 n 0000163229 00000 n 0000163358 00000 n 0000163486 00000 n 0000163615 00000 n 0000163744 00000 n 0000163873 00000 n 0000164000 00000 n 0000164129 00000 n 0000164258 00000 n 0000164387 00000 n 0000164515 00000 n 0000164644 00000 n 0000164773 00000 n 0000164902 00000 n 0000165031 00000 n 0000165160 00000 n 0000165289 00000 n 0000165418 00000 n 0000165547 00000 n 0000165676 00000 n 0000165805 00000 n 0000165934 00000 n 0000166063 00000 n 0000166192 00000 n 0000166321 00000 n 0000166450 00000 n 0000166579 00000 n 0000166707 00000 n 0000166836 00000 n 0000166965 00000 n 0000167094 00000 n 0000167222 00000 n 0000167351 00000 n 0000167480 00000 n 0000167608 00000 n 0000167736 00000 n 0000167865 00000 n 0000167994 00000 n 0000168122 00000 n 0000168251 00000 n 0000168380 00000 n 0000168508 00000 n 0000168637 00000 n 0000168766 00000 n 0000168895 00000 n 0000169023 00000 n 0000169152 00000 n 0000169281 00000 n 0000169410 00000 n 0000169538 00000 n 0000169667 00000 n 0000169794 00000 n 0000175331 00000 n 0000175464 00000 n 0000169974 00000 n 0000155232 00000 n 0000150999 00000 n 0000169921 00000 n 0000445870 00000 n 0000175597 00000 n 0000175730 00000 n 0000175863 00000 n 0000175996 00000 n 0000176129 00000 n 0000176262 00000 n 0000176395 00000 n 0000176527 00000 n 0000176660 00000 n 0000176793 00000 n 0000176926 00000 n 0000177059 00000 n 0000177192 00000 n 0000177325 00000 n 0000177458 00000 n 0000177591 00000 n 0000177724 00000 n 0000177857 00000 n 0000177989 00000 n 0000178122 00000 n 0000178255 00000 n 0000178388 00000 n 0000178521 00000 n 0000178654 00000 n 0000178787 00000 n 0000178920 00000 n 0000179052 00000 n 0000179185 00000 n 0000179318 00000 n 0000179451 00000 n 0000179584 00000 n 0000179717 00000 n 0000179850 00000 n 0000179983 00000 n 0000180116 00000 n 0000180248 00000 n 0000180380 00000 n 0000180513 00000 n 0000180646 00000 n 0000180779 00000 n 0000180912 00000 n 0000181045 00000 n 0000181178 00000 n 0000181311 00000 n 0000181444 00000 n 0000181576 00000 n 0000181708 00000 n 0000181841 00000 n 0000181974 00000 n 0000182107 00000 n 0000182240 00000 n 0000182373 00000 n 0000182506 00000 n 0000182639 00000 n 0000182772 00000 n 0000182903 00000 n 0000183034 00000 n 0000183163 00000 n 0000183292 00000 n 0000183421 00000 n 0000183549 00000 n 0000183677 00000 n 0000183805 00000 n 0000183934 00000 n 0000184063 00000 n 0000184192 00000 n 0000184321 00000 n 0000184450 00000 n 0000184579 00000 n 0000184708 00000 n 0000184837 00000 n 0000184966 00000 n 0000185095 00000 n 0000185224 00000 n 0000185353 00000 n 0000185482 00000 n 0000185611 00000 n 0000185740 00000 n 0000185869 00000 n 0000185998 00000 n 0000186127 00000 n 0000186256 00000 n 0000186385 00000 n 0000186513 00000 n 0000186641 00000 n 0000186769 00000 n 0000186898 00000 n 0000187027 00000 n 0000187156 00000 n 0000187285 00000 n 0000187414 00000 n 0000187543 00000 n 0000187672 00000 n 0000187801 00000 n 0000187930 00000 n 0000188059 00000 n 0000188188 00000 n 0000188317 00000 n 0000188446 00000 n 0000188575 00000 n 0000188704 00000 n 0000188833 00000 n 0000188962 00000 n 0000189091 00000 n 0000189220 00000 n 0000189349 00000 n 0000189476 00000 n 0000194542 00000 n 0000194675 00000 n 0000194808 00000 n 0000194939 00000 n 0000195070 00000 n 0000189655 00000 n 0000174335 00000 n 0000170092 00000 n 0000189602 00000 n 0000195202 00000 n 0000195334 00000 n 0000195467 00000 n 0000195600 00000 n 0000195733 00000 n 0000195866 00000 n 0000195999 00000 n 0000196132 00000 n 0000196265 00000 n 0000196398 00000 n 0000196530 00000 n 0000196663 00000 n 0000196796 00000 n 0000196929 00000 n 0000197062 00000 n 0000197195 00000 n 0000197328 00000 n 0000197461 00000 n 0000197594 00000 n 0000197727 00000 n 0000197860 00000 n 0000197993 00000 n 0000198126 00000 n 0000198259 00000 n 0000198391 00000 n 0000198523 00000 n 0000198655 00000 n 0000198788 00000 n 0000198921 00000 n 0000199054 00000 n 0000199187 00000 n 0000199320 00000 n 0000199453 00000 n 0000199586 00000 n 0000199719 00000 n 0000199852 00000 n 0000199985 00000 n 0000200118 00000 n 0000200250 00000 n 0000200383 00000 n 0000200514 00000 n 0000200647 00000 n 0000200780 00000 n 0000200913 00000 n 0000201042 00000 n 0000201171 00000 n 0000201300 00000 n 0000201429 00000 n 0000201558 00000 n 0000201687 00000 n 0000201816 00000 n 0000201945 00000 n 0000202074 00000 n 0000202203 00000 n 0000202332 00000 n 0000202461 00000 n 0000202590 00000 n 0000202719 00000 n 0000202848 00000 n 0000202977 00000 n 0000203106 00000 n 0000203239 00000 n 0000203368 00000 n 0000203497 00000 n 0000203626 00000 n 0000203755 00000 n 0000203884 00000 n 0000204012 00000 n 0000204141 00000 n 0000204269 00000 n 0000204398 00000 n 0000204527 00000 n 0000204655 00000 n 0000204782 00000 n 0000204910 00000 n 0000205038 00000 n 0000205166 00000 n 0000205294 00000 n 0000205421 00000 n 0000205549 00000 n 0000205678 00000 n 0000205807 00000 n 0000205936 00000 n 0000206065 00000 n 0000206194 00000 n 0000206323 00000 n 0000206452 00000 n 0000206581 00000 n 0000206710 00000 n 0000206839 00000 n 0000206968 00000 n 0000207097 00000 n 0000212996 00000 n 0000213129 00000 n 0000213262 00000 n 0000213395 00000 n 0000213528 00000 n 0000213661 00000 n 0000213794 00000 n 0000213927 00000 n 0000214060 00000 n 0000214193 00000 n 0000214326 00000 n 0000214459 00000 n 0000214592 00000 n 0000214725 00000 n 0000214858 00000 n 0000214991 00000 n 0000215124 00000 n 0000215257 00000 n 0000215390 00000 n 0000207279 00000 n 0000193642 00000 n 0000189773 00000 n 0000207226 00000 n 0000215523 00000 n 0000215656 00000 n 0000215789 00000 n 0000215921 00000 n 0000216053 00000 n 0000216184 00000 n 0000216316 00000 n 0000216448 00000 n 0000216581 00000 n 0000216714 00000 n 0000216847 00000 n 0000216980 00000 n 0000217113 00000 n 0000217246 00000 n 0000217379 00000 n 0000217512 00000 n 0000217645 00000 n 0000217778 00000 n 0000217911 00000 n 0000218044 00000 n 0000218177 00000 n 0000218310 00000 n 0000218443 00000 n 0000218576 00000 n 0000218709 00000 n 0000218842 00000 n 0000218975 00000 n 0000219108 00000 n 0000219241 00000 n 0000219374 00000 n 0000219507 00000 n 0000219640 00000 n 0000219773 00000 n 0000219904 00000 n 0000220035 00000 n 0000220164 00000 n 0000220292 00000 n 0000220421 00000 n 0000220550 00000 n 0000220679 00000 n 0000220808 00000 n 0000220937 00000 n 0000221066 00000 n 0000221194 00000 n 0000221323 00000 n 0000221452 00000 n 0000221581 00000 n 0000221710 00000 n 0000221838 00000 n 0000221967 00000 n 0000222096 00000 n 0000222225 00000 n 0000222354 00000 n 0000222487 00000 n 0000222616 00000 n 0000222748 00000 n 0000222877 00000 n 0000223007 00000 n 0000223137 00000 n 0000223267 00000 n 0000223397 00000 n 0000223527 00000 n 0000223657 00000 n 0000223785 00000 n 0000223914 00000 n 0000224044 00000 n 0000224178 00000 n 0000224308 00000 n 0000224438 00000 n 0000224568 00000 n 0000224701 00000 n 0000224830 00000 n 0000224959 00000 n 0000225089 00000 n 0000225219 00000 n 0000225349 00000 n 0000225479 00000 n 0000225609 00000 n 0000225739 00000 n 0000225869 00000 n 0000226003 00000 n 0000226133 00000 n 0000226267 00000 n 0000226397 00000 n 0000226527 00000 n 0000226657 00000 n 0000226787 00000 n 0000226917 00000 n 0000227047 00000 n 0000227177 00000 n 0000227306 00000 n 0000227435 00000 n 0000227565 00000 n 0000227698 00000 n 0000227827 00000 n 0000227955 00000 n 0000233940 00000 n 0000234074 00000 n 0000234208 00000 n 0000234342 00000 n 0000234476 00000 n 0000234610 00000 n 0000234744 00000 n 0000228137 00000 n 0000211908 00000 n 0000207397 00000 n 0000228082 00000 n 0000234878 00000 n 0000235012 00000 n 0000235146 00000 n 0000235279 00000 n 0000235412 00000 n 0000235546 00000 n 0000235680 00000 n 0000235814 00000 n 0000235948 00000 n 0000236081 00000 n 0000236215 00000 n 0000236349 00000 n 0000236483 00000 n 0000236617 00000 n 0000236751 00000 n 0000236884 00000 n 0000237018 00000 n 0000237152 00000 n 0000237286 00000 n 0000237420 00000 n 0000237554 00000 n 0000237688 00000 n 0000237821 00000 n 0000237954 00000 n 0000238088 00000 n 0000238222 00000 n 0000238356 00000 n 0000238490 00000 n 0000238623 00000 n 0000238757 00000 n 0000238891 00000 n 0000239025 00000 n 0000239159 00000 n 0000239293 00000 n 0000239427 00000 n 0000239561 00000 n 0000239695 00000 n 0000239829 00000 n 0000239963 00000 n 0000240097 00000 n 0000240231 00000 n 0000240365 00000 n 0000240499 00000 n 0000240633 00000 n 0000240767 00000 n 0000240900 00000 n 0000241034 00000 n 0000241168 00000 n 0000241302 00000 n 0000241434 00000 n 0000241566 00000 n 0000241696 00000 n 0000241826 00000 n 0000241956 00000 n 0000242085 00000 n 0000242215 00000 n 0000242345 00000 n 0000242474 00000 n 0000242604 00000 n 0000242734 00000 n 0000242864 00000 n 0000242994 00000 n 0000243124 00000 n 0000243254 00000 n 0000243384 00000 n 0000243514 00000 n 0000243644 00000 n 0000243774 00000 n 0000243903 00000 n 0000244033 00000 n 0000244163 00000 n 0000244292 00000 n 0000244422 00000 n 0000244552 00000 n 0000244682 00000 n 0000244810 00000 n 0000244940 00000 n 0000245070 00000 n 0000245199 00000 n 0000245329 00000 n 0000245459 00000 n 0000245589 00000 n 0000245719 00000 n 0000245849 00000 n 0000245979 00000 n 0000246109 00000 n 0000246239 00000 n 0000246369 00000 n 0000246499 00000 n 0000246629 00000 n 0000246759 00000 n 0000246889 00000 n 0000247019 00000 n 0000247148 00000 n 0000247278 00000 n 0000247408 00000 n 0000247537 00000 n 0000247667 00000 n 0000247797 00000 n 0000247927 00000 n 0000248056 00000 n 0000248190 00000 n 0000248320 00000 n 0000248454 00000 n 0000248584 00000 n 0000248713 00000 n 0000248842 00000 n 0000248972 00000 n 0000249102 00000 n 0000252108 00000 n 0000252242 00000 n 0000252375 00000 n 0000249285 00000 n 0000232769 00000 n 0000228256 00000 n 0000249230 00000 n 0000252509 00000 n 0000252643 00000 n 0000252776 00000 n 0000252910 00000 n 0000253044 00000 n 0000253178 00000 n 0000253312 00000 n 0000253445 00000 n 0000253579 00000 n 0000253712 00000 n 0000253846 00000 n 0000253980 00000 n 0000254113 00000 n 0000254247 00000 n 0000254381 00000 n 0000254515 00000 n 0000254649 00000 n 0000254783 00000 n 0000254917 00000 n 0000255051 00000 n 0000255184 00000 n 0000255318 00000 n 0000255451 00000 n 0000255585 00000 n 0000255719 00000 n 0000255849 00000 n 0000255979 00000 n 0000256109 00000 n 0000256238 00000 n 0000256367 00000 n 0000256497 00000 n 0000256627 00000 n 0000256757 00000 n 0000256886 00000 n 0000257014 00000 n 0000257144 00000 n 0000257274 00000 n 0000257404 00000 n 0000257534 00000 n 0000257664 00000 n 0000257794 00000 n 0000257924 00000 n 0000258054 00000 n 0000258184 00000 n 0000258314 00000 n 0000258499 00000 n 0000251549 00000 n 0000249404 00000 n 0000258444 00000 n 0000261581 00000 n 0000261714 00000 n 0000261848 00000 n 0000261982 00000 n 0000262114 00000 n 0000262248 00000 n 0000262382 00000 n 0000262516 00000 n 0000262650 00000 n 0000262782 00000 n 0000262916 00000 n 0000263050 00000 n 0000263184 00000 n 0000263315 00000 n 0000263449 00000 n 0000263583 00000 n 0000263717 00000 n 0000263851 00000 n 0000263982 00000 n 0000264116 00000 n 0000264250 00000 n 0000264383 00000 n 0000264517 00000 n 0000264651 00000 n 0000264785 00000 n 0000264915 00000 n 0000265045 00000 n 0000265175 00000 n 0000265305 00000 n 0000265432 00000 n 0000265562 00000 n 0000265692 00000 n 0000265821 00000 n 0000265951 00000 n 0000266081 00000 n 0000266211 00000 n 0000266341 00000 n 0000266471 00000 n 0000266601 00000 n 0000266731 00000 n 0000266860 00000 n 0000266990 00000 n 0000267120 00000 n 0000267360 00000 n 0000261066 00000 n 0000258618 00000 n 0000267250 00000 n 0000267305 00000 n 0000445991 00000 n 0000267768 00000 n 0000267597 00000 n 0000267466 00000 n 0000267713 00000 n 0000270751 00000 n 0000270884 00000 n 0000271016 00000 n 0000271145 00000 n 0000271277 00000 n 0000271406 00000 n 0000271535 00000 n 0000271664 00000 n 0000271793 00000 n 0000271922 00000 n 0000272049 00000 n 0000272180 00000 n 0000272309 00000 n 0000272440 00000 n 0000272570 00000 n 0000272703 00000 n 0000272833 00000 n 0000272961 00000 n 0000273091 00000 n 0000273221 00000 n 0000273351 00000 n 0000273481 00000 n 0000273611 00000 n 0000273741 00000 n 0000273871 00000 n 0000274001 00000 n 0000274131 00000 n 0000274260 00000 n 0000274390 00000 n 0000274524 00000 n 0000274654 00000 n 0000274784 00000 n 0000274914 00000 n 0000275044 00000 n 0000275174 00000 n 0000275303 00000 n 0000278127 00000 n 0000278257 00000 n 0000275486 00000 n 0000270299 00000 n 0000267810 00000 n 0000275431 00000 n 0000443318 00000 n 0000443172 00000 n 0000278391 00000 n 0000278524 00000 n 0000278654 00000 n 0000278784 00000 n 0000278914 00000 n 0000279044 00000 n 0000279174 00000 n 0000279304 00000 n 0000279434 00000 n 0000279563 00000 n 0000279692 00000 n 0000279822 00000 n 0000279952 00000 n 0000280082 00000 n 0000280211 00000 n 0000280340 00000 n 0000280469 00000 n 0000280599 00000 n 0000280729 00000 n 0000280859 00000 n 0000280989 00000 n 0000281119 00000 n 0000281249 00000 n 0000281379 00000 n 0000281508 00000 n 0000281638 00000 n 0000281768 00000 n 0000281898 00000 n 0000282027 00000 n 0000282157 00000 n 0000282286 00000 n 0000282420 00000 n 0000282609 00000 n 0000277693 00000 n 0000275620 00000 n 0000282554 00000 n 0000282720 00000 n 0000453407 00000 n 0000282771 00000 n 0000282804 00000 n 0000453267 00000 n 0000282855 00000 n 0000282888 00000 n 0000453183 00000 n 0000282934 00000 n 0000282962 00000 n 0000453084 00000 n 0000283023 00000 n 0000283127 00000 n 0000452985 00000 n 0000283170 00000 n 0000283195 00000 n 0000452886 00000 n 0000283254 00000 n 0000283287 00000 n 0000452787 00000 n 0000283350 00000 n 0000283395 00000 n 0000452688 00000 n 0000283443 00000 n 0000283473 00000 n 0000452589 00000 n 0000283533 00000 n 0000283575 00000 n 0000452505 00000 n 0000283647 00000 n 0000283701 00000 n 0000452365 00000 n 0000283758 00000 n 0000283797 00000 n 0000452281 00000 n 0000283858 00000 n 0000283901 00000 n 0000452182 00000 n 0000283960 00000 n 0000284062 00000 n 0000452098 00000 n 0000284110 00000 n 0000284140 00000 n 0000451957 00000 n 0000284187 00000 n 0000284216 00000 n 0000451873 00000 n 0000284262 00000 n 0000284290 00000 n 0000451774 00000 n 0000284347 00000 n 0000284386 00000 n 0000451675 00000 n 0000284442 00000 n 0000284480 00000 n 0000451576 00000 n 0000284538 00000 n 0000284578 00000 n 0000451477 00000 n 0000284636 00000 n 0000284676 00000 n 0000451378 00000 n 0000284733 00000 n 0000284772 00000 n 0000451279 00000 n 0000284820 00000 n 0000284850 00000 n 0000451180 00000 n 0000284922 00000 n 0000284976 00000 n 0000451081 00000 n 0000285021 00000 n 0000285048 00000 n 0000450982 00000 n 0000285095 00000 n 0000285124 00000 n 0000450883 00000 n 0000285173 00000 n 0000285204 00000 n 0000450784 00000 n 0000285253 00000 n 0000285284 00000 n 0000450700 00000 n 0000285337 00000 n 0000285372 00000 n 0000450560 00000 n 0000285424 00000 n 0000285458 00000 n 0000450476 00000 n 0000285516 00000 n 0000285556 00000 n 0000450377 00000 n 0000285617 00000 n 0000285660 00000 n 0000450278 00000 n 0000285719 00000 n 0000285760 00000 n 0000450179 00000 n 0000285819 00000 n 0000285860 00000 n 0000450080 00000 n 0000285916 00000 n 0000285954 00000 n 0000449981 00000 n 0000286014 00000 n 0000286056 00000 n 0000449897 00000 n 0000286120 00000 n 0000286166 00000 n 0000449798 00000 n 0000286240 00000 n 0000286296 00000 n 0000449699 00000 n 0000286342 00000 n 0000286388 00000 n 0000449559 00000 n 0000286460 00000 n 0000286514 00000 n 0000449475 00000 n 0000286578 00000 n 0000286624 00000 n 0000449376 00000 n 0000286681 00000 n 0000286720 00000 n 0000449277 00000 n 0000286772 00000 n 0000286806 00000 n 0000449178 00000 n 0000286862 00000 n 0000286900 00000 n 0000449079 00000 n 0000286951 00000 n 0000286984 00000 n 0000448954 00000 n 0000287040 00000 n 0000287076 00000 n 0000448829 00000 n 0000287134 00000 n 0000287174 00000 n 0000448745 00000 n 0000287230 00000 n 0000287268 00000 n 0000448646 00000 n 0000287323 00000 n 0000287360 00000 n 0000448547 00000 n 0000287404 00000 n 0000287430 00000 n 0000448448 00000 n 0000287490 00000 n 0000287532 00000 n 0000448349 00000 n 0000287593 00000 n 0000287636 00000 n 0000448265 00000 n 0000287688 00000 n 0000287722 00000 n 0000448166 00000 n 0000287781 00000 n 0000287822 00000 n 0000448067 00000 n 0000287879 00000 n 0000287918 00000 n 0000447927 00000 n 0000287977 00000 n 0000288018 00000 n 0000447843 00000 n 0000288075 00000 n 0000288114 00000 n 0000447744 00000 n 0000288170 00000 n 0000288208 00000 n 0000447645 00000 n 0000288265 00000 n 0000288304 00000 n 0000447561 00000 n 0000288362 00000 n 0000288402 00000 n 0000447421 00000 n 0000288461 00000 n 0000288502 00000 n 0000447337 00000 n 0000288560 00000 n 0000288600 00000 n 0000447238 00000 n 0000288661 00000 n 0000288704 00000 n 0000447139 00000 n 0000288762 00000 n 0000288802 00000 n 0000447040 00000 n 0000288863 00000 n 0000288906 00000 n 0000446956 00000 n 0000288963 00000 n 0000289003 00000 n 0000446857 00000 n 0000289061 00000 n 0000289101 00000 n 0000446758 00000 n 0000289157 00000 n 0000289195 00000 n 0000446674 00000 n 0000289246 00000 n 0000289279 00000 n 0000446575 00000 n 0000289335 00000 n 0000289373 00000 n 0000446491 00000 n 0000289428 00000 n 0000289465 00000 n 0000289491 00000 n 0000289515 00000 n 0000290159 00000 n 0000290185 00000 n 0000290541 00000 n 0000290567 00000 n 0000290665 00000 n 0000291061 00000 n 0000291624 00000 n 0000292257 00000 n 0000292329 00000 n 0000292971 00000 n 0000312146 00000 n 0000312549 00000 n 0000319991 00000 n 0000320212 00000 n 0000327176 00000 n 0000327405 00000 n 0000334369 00000 n 0000334598 00000 n 0000341739 00000 n 0000341967 00000 n 0000348934 00000 n 0000349162 00000 n 0000374957 00000 n 0000375535 00000 n 0000392938 00000 n 0000393296 00000 n 0000401057 00000 n 0000401330 00000 n 0000422753 00000 n 0000423335 00000 n 0000426356 00000 n 0000426586 00000 n 0000442465 00000 n 0000446098 00000 n 0000446216 00000 n 0000446337 00000 n 0000446410 00000 n 0000453491 00000 n 0000453622 00000 n 0000453753 00000 n 0000453882 00000 n 0000454013 00000 n 0000454141 00000 n 0000454269 00000 n 0000454400 00000 n 0000454529 00000 n 0000454660 00000 n 0000454789 00000 n 0000454922 00000 n 0000455134 00000 n 0000455392 00000 n 0000455619 00000 n 0000455900 00000 n 0000456132 00000 n 0000456364 00000 n 0000456627 00000 n 0000456848 00000 n 0000457129 00000 n 0000457387 00000 n 0000457657 00000 n 0000457889 00000 n 0000457994 00000 n 0000458120 00000 n 0000458272 00000 n 0000458390 00000 n 0000458494 00000 n 0000458534 00000 n 0000458647 00000 n trailer << /Size 1631 /Root 1629 0 R /Info 1630 0 R /ID [ ] >> startxref 458871 %%EOF latex2rtf-2.3.18/doc/header.html0000777000175000017500000000104013050672354016606 0ustar wilfriedwilfried HHTITLEHH

HHTITLEHH

latex2rtf-2.3.18/doc/latex2rtf.info0000777000175000017500000044213613664242040017273 0ustar wilfriedwilfriedThis is latex2rtf.info, produced by makeinfo version 4.13 from latex2rtf.texi. INFO-DIR-SECTION Document Preparation  File: latex2rtf.info, Node: Top, Next: Introduction, Prev: (dir), Up: (dir) LaTeX2RTF ********* This file documents LaTeX2RTF, a converter that translates LaTeX to RTF. * Menu: * Introduction:: * Installation:: * Using LaTeX2RTF:: * Features:: * Configuration:: * Error Messages and Logging:: * History:: * LaTeX2RTF under Development:: * Function Index:: * Concept Index:: --- The Detailed Node Listing --- Installation * General:: * Obtaining LaTeX2RTF:: * UNIX:: * DOS or Windows:: * MS Windows systems:: * Macintosh:: * Problems Compiling:: * Problems with make check:: Using LaTeX2RTF * General Assumptions:: * LaTeX2RTF Options:: * Debugging:: Features * LaTeX2e:: * Unicode Support:: * Input Encoding:: * Language Support:: * Cross References:: * Page Formatting:: * Equations:: * Math and Special Symbols:: * Tables:: * Graphics:: * Pagestyles:: * Hyperlatex:: * APA Support:: Configuration * Input Processing:: * Conditional Parsing:: * Output Formatting:: * Direct Conversion:: * Ignore Command:: * Font Configuration:: * Language Configuration:: LaTeX2RTF under Development * Unimplemented Features:: * Missing options:: * Known Bugs:: * Reporting Bugs:: * Todo List:: * LaTeX Commands:: Command List * General Commands:: * Preamble Commands:: * Letter Commands:: * Language Commands:: * Citation Commands:: * Acronym Commands:: * Other Commands:: * Environments:: General Commands * Basic Commands:: * Font Commands:: * Logos:: * Special Characters:: * Sectioning Commands:: * Uncategorized:: Language Commands * German Commands:: * Czech Commands:: * French Commands:: * Russian Commands:: Citation Commands * Apacite Commands:: * AuthorDate Commands:: * Harvard Commands:: * HyperLatex Commands:: * Natbib Commands:: Copyright 1998-2002 Georg Lehner, updates Copyright 1999-2018 by Wilfried Hennings and Scott Prahl, with contributions by Mikhail Polianski. Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies. Permission is granted to copy and distribute modified versions of this manual under the conditions for verbatim copying, provided also that the sections entitled "Copying" and "GNU General Public License" are included exactly as in the original, and provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one. Permission is granted to copy and distribute translations of this manual into another language, under the above conditions for modified versions, except that this permission notice may be stated in a translation approved by the Free Software Foundation.  File: latex2rtf.info, Node: Introduction, Next: Installation, Prev: Top, Up: Top 1 Introduction ************** LaTeX2RTF is a translator program from LaTeX text into "rich text format" files. These files are commonly referred to as RTF files. RTF is a published standard format by Microsoft. This standard can be ambiguous in places and Microsoft ignores parts of the standard it finds inconvenient, but RTF is widely used by many WYSIWIG text editors and is supported by Microsoft Word and most text processors. LaTeX2RTF translates the text and as much of the formatting information from LaTeX to RTF. Be forewarned that the typeset output is not nearly as good as what you would get from using LaTeX directly. So, why bother translating? Consider, 1. You use LaTeX and hate everything beginning with MS-... Nevertheless, you have to share your documents with people who don't even know that there are alternatives to MS-... 2. You know somebody who frequently sends you very fine LaTeX documents. Unfortunately, you are "on the other side" and need to import her files, steal some part, and then desktop publish it in your fine MS-... environment. 3. You like LaTeX and BibTeX. You interact with the rest of the world. You know someone that wants to include your writing in a Word document. There are drawbacks to the conversion process. In fact, don't expect any LaTeX file to be converted as you would like, don't expect it to be converted without errors or warnings, and don't be especially surprised when it doesn't convert at all. LaTeX2RTF is known to have many bugs and many missing features. Paradoxically, this number seems to grow more and more with each day. However, we can categorically state that there are some special cases in which a LaTeX file will be translated to RTF satisfactorily by LaTeX2RTF--This was sort of disclaimer, ok? OK! LaTeX is a system for typesetting text and therefore it focuses on the logical structure of a document, whilst RTF is meant to be a transport format for a family of Desktop Publishing Software, dealing mostly with the design of a text. Although the commands and styles in LaTeX are much more flexible and standardized than in RTF, only a small subset of commands has been implemented to date (*note Unimplemented Features::). Some of the capabilities of LaTeX2RTF are restricted in scope or buggy (*note Known Bugs::). RTF is a moving target, because Microsoft does not stop inventing new extensions and features; consequently you cannot view newer RTF files with older word processors. The syntax and semantics of RTF are somewhat artistic, i.e., you can generate a syntactically correct RTF file that cannot be displayed by some/most word processors. For more details on RTF the specification consult the links at `http://latex2rtf.sf.net/'  File: latex2rtf.info, Node: Installation, Next: Using LaTeX2RTF, Prev: Introduction, Up: Top 2 Installation ************** * Menu: * General:: * Obtaining LaTeX2RTF:: * UNIX:: * DOS or Windows:: * MS Windows systems:: * Macintosh:: * Problems Compiling:: * Problems with make check::  File: latex2rtf.info, Node: General, Next: Obtaining LaTeX2RTF, Prev: Installation, Up: Installation 2.1 General =========== The documentation of the program is found in the `doc/' directory in the file `latex2rtf.texi' in the GNU TeXInfo format. For your convenience, you can find HTML and PDF versions of the manual there as well. Note: In this manual, the terms "directory" and "folder" are used interchangeably.  File: latex2rtf.info, Node: Obtaining LaTeX2RTF, Next: UNIX, Prev: General, Up: Installation 2.2 Obtaining LaTeX2RTF ======================= LaTeX2RTF is available for many Unix Platforms, for the Macintosh, and for MS-DOS, including all versions of MS Windows. The latest version of LaTeX2RTF is available at SourceForge (http://sourceforge.net/projects/latex2rtf/) and -- with some delay -- on CTAN sites: e.g., `http://www.dante.de' or `http://www.ctan.org'. The DOS package will also run under all MS Windows versions up to Windows 7, except 64bit systems. It requires an i386 processor or better. It should only be used on older Microsoft systems. For Win9x, ME, NT, or newer, you should use the win or win-NO-GUI package. The win-NO-GUI package only runs under Win32 (Win9x, ME, NT, 2000, XP, 2003, Vista, Win7, probably Win8 and Win10). From LaTeX2RTF version 2.0.0 up it also runs on 64bit systems. The win package is the win-NO-GUI package plus graphical user interface (GUI) shell (l2rshell) and installer. It only runs under Win NT, 2000, XP, 2003, Vista, Win7 and newer. From LaTeX2RTF version 2.0.0 up it also runs on 64bit systems. The win64 package (only LaTeX2RTF version 1.9.19) is the win package but with 32bit versions of the shell utilities so that it also runs on 64bit systems. From LaTeX2RTF version 2.0.0 up, there is no separate win64 package, as the win32 package also runs on 64bit systems. There are a few people working on LaTeX2RTF, and some more make contributions, coordinated by Wilfried Hennings (texconvfaq "at" gmx.de). See the SourceForge (http://sourceforge.net/projects/latex2rtf/) project pages for the latest news.  File: latex2rtf.info, Node: UNIX, Next: DOS or Windows, Prev: Obtaining LaTeX2RTF, Up: Installation 2.3 UNIX ======== To install, 1. Edit `MAKEFILE' for your local configuration. In particular, pay attention to the `DESTDIR' variable (MAKEFILE line 21). If you do not have root access you might wish to set the makefile variable `DESTDIR' to be your home directory. On some machines the cc compiler will issue errors. Therefore the default compiler command in the Makefile is `CC=gcc'. 2. From version 1.9.13 up, LaTeX2RTF supports conversion of LaTeX equations to bitmaps using the shell script `latex2png', found in `scripts/'. `latex2png' requires that LaTeX, `Ghostscript' and `ImageMagick' are installed. LaTeX2RTF will translate documents without a working `latex2png', but some features will be missing. You can verify that the `latex2png' script is working by typing `make' in the `scripts/' directory. 3. `make' If this is not your first time installation, you may want to preserve your old configuration (`*.cfg') files. Copy them to a safe place before installing. On IBM AIX, the IBM make utility does not support some of the commands used in Makefile. In this case use `gmake' (from GNU) instead. Sun has decided to support the XPG4 standard on Solaris by an alternative set of binaries. To allow bitmap conversion of equations, two things are needed. First, change the first line of latex2png to `#!/usr/xpg4/bin/sh' Second, define the XPG4_GREP environment variable accordingly, for bash-like shells `XPG4_GREP=/usr/xpg4/bin/grep; export XPG4_GREP' or for tsch-like shells `setenv XPG4_GREP /usr/xpg4/bin/grep'. 4. `make install' Note that the Makefile does not contain a rule for make uninstall. This is by design. On modern Linux distributions, you would prefer to install LaTeX2RTF by the package manager of your distribution, which also provides an easy means for update and uninstallation. If your package manager does not provide the LaTeX2RTF package or you need to install LaTeX2RTF from the sources for some other reason, you should consider using `checkinstall' which creates a package for your package manager which then can be installed and uninstalled by the package manager. If you nevertheless need to run `make install', note the following: If your `mkdir' doesn't support the `-p' option, then create the necessary directories by hand and remove the option from the `$MKDIR' variable. If you have other problems, just copy `latex2rtf' and `latex2png' to a binary directory, and move the contents of the `cfg/' directory to the location specified by `$CFG_INSTALL'. 5. `make check' [OPTIONAL] This tests LaTeX2RTF on a variety of LaTeX files. Expect a whole lot of warnings, but no outright errors. (On IBM AIX, use `gmake check'.) Note that this will check the basic functionality of the `latex2png' script, and then that of `latex2rtf'. 6. `make install-info' [OPTIONAL] This installs `.info' files for use with the `info' program. You no longer need to define the environment variable `RTFPATH'. This is only necessary if you move the directory containing the `.cfg' files. Just define `RTFPATH' to be the path for the new location of the `cfg' directory.  File: latex2rtf.info, Node: DOS or Windows, Next: MS Windows systems, Prev: UNIX, Up: Installation 2.4 plain DOS ============= The UNIX and Mac packages do not contain an executable for DOS or Windows. You may compile it yourself (with djgpp or MinGW) or get the DOS package as file `latex2rtf-x.x.x_dos.zip' (where x.x.x is the version number) or the win-NO-GUI package as file `latex2rtf-x.x.x_win-NO-GUI.zip' (no installer, no graphical user interface (GUI)) from SourceForge (http://sourceforge.net/projects/latex2rtf/) The DOS package contains a precompiled executable which should run under plain DOS and also in the command prompt (or "console") of any MS Windows system including Vista and Windows 7 but not on 64bit systems. To install the DOS or win-no-GUI package of LaTeX2RTF, extract all files from the zip archive, preserving the folder structure (winzip: check "use folder names"), preferably to `C:\l2r', or under Windows, to your "Program Files" folder (which ever it is named in your system) because then it will find its cfg files by default. If you extracted them to another folder (e.g. `C:\my_files\l2r'), either edit the file `L2RPREP.BAT' and change the folder `C:\l2r' to where you put them, or specify the path to the cfg folder in the command line. Avoid blanks in folder and file names! Make sure that the folder containing the file `L2RPREP.BAT' is in your search path, or put this file into a folder which is in your search path. To display the current search path, enter `PATH' from the command prompt (with no arguments). Under plain DOS, conversion of equations or figures to bitmaps is not possible because Ghostscript and ImageMagick are not available for plain DOS.  File: latex2rtf.info, Node: MS Windows systems, Next: Macintosh, Prev: DOS or Windows, Up: Installation 2.5 MS Windows systems ====================== To install LaTeX2RTF on a MS Windows system (WinNT, Win2000, WinXP, Vista, Win7), download the win package, execute the `latex2rtf-x.x.x_win.exe' (where x.x.x is the version number) and follow the instructions. Note: The installer and GUI shell do not support Win9x and WinMe since LaTeX2RTF v.1.9.17. If you have one of these systems, you should use the win-NO-GUI package (1.9.19 and up) of LaTeX2RTF. To start the program double-click the LaTeX2RTF icon, or drag and drop a `.tex' file onto the icon. If your LaTeX document refers to external graphic files, e.g. eps, or you want to use the option to convert equations to bitmaps, you must have LaTeX, ImageMagick and Ghostscript installed. These programs are freely available for download at `http://www.miktex.org/', `http://www.imagemagick.org' and `http://www.ghostscript.com' The following versions were available at the time of writing and tested with LaTeX2RTF version 2.3.11: - MikTeX 2.9 - Ghostscript 9.19 - ImageMagick-7.0.1-8-Q16-x86-dll.exe When installing ImageMagick, be sure to choose (check) "Install legacy utilities (e.g. convert)" If MikTeX, ImageMagick and Ghostscript are installed, the paths to their executables are detected automatically. If for any reason this doesn't happen, these paths can be specified manually in the "Environment" tab of the LaTeX2RTF GUI shell window. If you need to start LaTeX2RTF not from its own shell but from commandline or another Windows application, you need to add the folder containing the latex2png script and the helper programs to the search path. Some applications (e.g. Lyx) allow to temporarily add the path by specifying it in the options. If this is not possible, you can add the latex2rtf folder to Windows' default path like follows: To add a folder - e.g. C:\Program Files\latex2rtf - to the search path: * Note that the folder name "Program Files" contains a blank. This would lead to some problems as some parts of the latex2rtf program package interpret the blank as a parameter delimiter. Therefore in the following example the folder name "Program Files" is replaced by its DOS equivalent "PROGRA~1" which has the additional effect that this is similar for several if not all European languages. * Win95, Win98, WinME * Open the file `C:\AUTOEXEC.BAT' either with Edit (DOS) or with Notepad (Windows). * At the end of that file, add the line `PATH=C:\PROGRA~1\latex2rtf;%PATH%' * Save the file to its original location. Shutdown and reboot the PC. * WinNT, Win2000, WinXP, Vista, Win7 * Right-click "My Computer" (German: "Arbeitsplatz"), then select "Properties"; * NT: Click the "Environment" tab; XP and up: Click the "Advanced" tab, then the "Environment variables" button; * Find the line beginning with `PATH=' and insert the string `C:\PROGRA~1\latex2rtf;' so that the complete line looks like `PATH=C:\PROGRA~1\latex2rtf;C:\WINDOWS;...' * Click "OK" If you do NOT use the GUI (l2rshell.exe), either the folders where TeX, ImageMagick and Ghostscript are installed must also be in your search path, or you must edit the file `L2RPREP.BAT', ensure that the pathes in this file point to the folders where TeX, ImageMagick and Ghostscript are installed on your machine, and call `l2rprep' before calling `latex2rt'. Or you edit `l2r.bat' and call `l2r' instead of calling `latex2rt'. If you DO use the GUI (l2rshell.exe), the TeX, ImageMagick and Ghostscript folders are automatically added to the search path by the GUI. When equations are to be converted to bitmaps, for each equation LaTeX2RTF first writes a temporary l2r_nnnn.tex file to disk which consists of only the equation to be converted. It then sends the call for `"bash latex2png l2r_nnnn.tex"' to the operating system. In previous versions of latex2rtf, some users got the message "Out of environment space" (can occur only under Windows 95, Windows 98 or Windows ME); this should be solved now by using bash.exe instead of command.com.  File: latex2rtf.info, Node: Macintosh, Next: Problems Compiling, Prev: MS Windows systems, Up: Installation 2.6 Macintosh ============= If you want a MacOS X version, make sure that you have installed the developer tools CD that is appropriate for your OS version, and then follow the directions above for a UNIX installation. Alternatively you can install using fink `http://www.finkproject.org/' and `http://sourceforge.net/projects/fink/'. As of 2006-01-30 there was a GUI shell for Macintosh at `http://www.inf.ethz.ch/personal/fischerk/LaTeX2rtf/index.html' but now (Nov. 2013) this is not available anymore. There is a PPC port of an old version 1.9k for Classic MacOS LaTeX2RTF. To convert a LaTeX file using this version, drag the file onto the LaTeX2RTF icon. The translation is best if there are `.aux' and `.bbl' files in the same folder as the `.tex' file to be converted. These should be generated using LaTeX and `bibtex'.  File: latex2rtf.info, Node: Problems Compiling, Next: Problems with make check, Prev: Macintosh, Up: Installation 2.7 Problems Compiling ====================== The code for LaTeX2RTF is standard ANSI C. Some possible pitfalls are * Not correctly defining your compiler in the Makefile. The default is to use `gcc'. * Encountering errors because the compiler options. During development all compiler warnings are turned on. However, different compilers have different interpretations of `-Wall' and may generate errors that were not found in a different development system. Please report these, but a quick fix is to remove all compiler options.  File: latex2rtf.info, Node: Problems with make check, Prev: Problems Compiling, Up: Installation 2.8 Problems with `make check' ============================== All the files in the `test' directory are converted (with varying degrees of success) using LaTeX2RTF and are tested before most CVS check-ins and with all released tarballs. There will be many warning messages, but there should be no actual error messages. If you do not have a working latex2png script, then some of the files will fail to be translated.  File: latex2rtf.info, Node: Using LaTeX2RTF, Next: Features, Prev: Installation, Up: Top 3 Using LaTeX2RTF ***************** * Menu: * General Assumptions:: * LaTeX2RTF Options:: * Debugging::  File: latex2rtf.info, Node: General Assumptions, Next: LaTeX2RTF Options, Prev: Using LaTeX2RTF, Up: Using LaTeX2RTF 3.1 General Assumptions ======================= LaTeX2RTF assumes that the `.tex' file you want to convert is a valid LaTeX document. The chances of a successful LaTeX2RTF conversion are slightly better than the proverbial snowball's if the `.tex' file doesn't `latex' properly. Use LaTeX to find and correct errors before using LaTeX2RTF. LaTeX2RTF also needs the `.aux' file and `.bbl' file which are generated by running `latex' on the `.tex' file To correctly convert font names you must edit the `fonts.cfg' configuration file. This file is used to specify the needed font names and how the LaTeX default font names should be converted to RTF (*note Font Configuration::). LaTeX variables and user defined commands are not evaluated. They will be simply ignored. To let LaTeX2RTF know the names of variables you can add them in the `ignore.cfg' file (*note Ignore Command::). The environment variable RTFPATH may contain a search path for the support files (all files ending in `.cfg'). If no file is found during the search in the search-path or if the environment variable is not set, the compiled-in default for the configuration-file directory is used. If the files are not found at all the program aborts. In the DOS and Windows versions the search path is separated by `;' in the Unix version by `:'. For the paths themselves apply `\' and `/'. A separator may appear at the beginning or ending of RTFPATH. Make sure that the configuration files are in the correct directory (or folder). LaTeX2RTF will need at least `fonts.cfg', `direct.cfg', `ignore.cfg', `english.cfg'. You may have to change one ore more of them to suit your needs (*note Configuration::). *Note Missing options::, for actual implementations irregularities. *Note Reporting Bugs::, for information on how to reach the maintainer.  File: latex2rtf.info, Node: LaTeX2RTF Options, Next: Debugging, Prev: General Assumptions, Up: Using LaTeX2RTF 3.2 LaTeX2RTF Options ===================== The LaTeX2RTF command converts a LaTeX file into RTF text format. The text and much of the formatting information is translated to RTF making the new file look similar to the original. The command line syntax is: latex2rtf [-options] inputfile[.tex] for the DOS and Windows versions: latex2rt [-options] inputfile[.tex] The options set in the Windows GUI (l2rshell.exe) are inserted as command line options when clicking RUN. The `-options' may consist of one or more of the following `-a auxfile' specify an `.aux' file (for table and figure references) that differs from `inputfile.aux'. If this is omitted, the name of the inputfile with the suffix replaced `.aux''will be taken. You must provide both files (`.tex' and the `.aux') to be able to convert cross-references in a LaTeX file. The `.aux' is created by running the `inputfile.tex' through `latex'. `-b bblfile' Unless an `bblfile' is specified with the `-b' option, LaTeX2RTF uses a `inputfile.bbl'. The `bblfile' file is used for citations and is typically created by running `inputfile.aux' through `bibtex'. `-C codepage' used to specify the character set (code page) used in the LaTeX document. This is only important when non-ansi characters are included in the LaTeX document. Typically this is done in a LaTeX2e file by using `\usepackage[codepage]{inputenc}' and in this case you need not specify the -C codepage option. If NO `\usepackage[codepage]{inputenc}' is in the LaTeX2e file, you must inform the converter about the codepage by the -C codepage option. You may select any of the following code pages: ansinew, applemac, cp437, cp437de, cp850, cp852, cp865, decmulti, cp1250, cp1252, latin1, latin2, latin3, latin4, latin5, latin9, next. The default behavior is to use ansinew (code page 1252). Cyrillic support includes conversion of koi8-r, koi8-u, cp1251, cp855, cp866, maccyr, and macukr encodings. `-d debug_level' The `-d' option determines the amount of debugging information to send to stderr while translating. debug_level=0 means only Errors, `1' Warning Messages (default) also. The debug_level can go as high as `7' for insane amounts of debugging fun. Warnings and error messages are output to stderr and by default listed in the console window. They can be redirected to a file "latex2rtf.log" by appending `2>latex2rtf.log' to the command line. `-D dots_per_inch' used to specify the number of dots per inch for equations converted to bitmaps. This value is also used when picture environments are converted to bitmaps as well as when EPS graphics are converted to png files. The default value is 300 dots per inch. `-E#' selects whether figures are included in the rtf (default) or created as external files with the filenames inserted in the rtf text. The options -E4, -E8 and -E12 are experimental and may not work as expected. `-E0' Do not include any figures in RTF. `-E1' Include figures that need no conversion. `-E2' Include figures that need conversion. `-E3' Include all figures (default). `-E4' Insert filenames for figures that do not need conversion. `-E8' Insert filenames for figures that need conversion. `-E12' Insert filenames for all figures. With options -E8 and -E12, pdf and ps graphics as well as tikz graphics are converted to eps and the eps filenames inserted in the document text. With -E4 and -E12, bitmap files are inserted in their original format. After opening the rtf in a textprocessing or dtp program, a macro can search for the inserted filenames and insert the files in their places. Further info is in the description of the -M option. `-f#' where # selects which fields to use during conversion: `-f0' do not use fields in RTF. This is handy when primitive RTF editors are being used to view the RTF output. `-f1' use fields for equations but not `\ref' and `\cite'. `-f2' use fields for `\ref' and `\cite' but not equations. This will be useful for versions of OpenOffice that import cross-references properly (as of Sept 2003 in a soon-to-be released version) but do not properly handle fields in equations. `-f3' use fields when possible. This is the default and is most useful when the RTF file is being exported to be used in Word. This retains the most information from the original LaTeX file. `-F' use LaTeX to create bitmaps for all figures. This may help when figures are not translated properly with the default settings. This typically requires a functional version of ImageMagick on your machine to work properly. `-h' a short usage description `-i language' used to set the idiom or language used by the LaTeX document. Typically, this is specified in a LaTeX2e document by including `\usepackage[language]{babel}' where `language' is one of the languages supported by the `babel' package. All languages listed in the babel system are supported so far as translations for "Chapter," "References," and the like. Furthermore, some commands found in the style files for german, french, russian, and czech style are supported (*note Language Configuration::). `-l' same as `-i latin1' (Note that the default behavior is to use `ansinew' which is a superset of `latin1'). Included for backwards compatibility. `-M#' where # selects the type of equation conversion. Use `-M1' convert displayed equations to RTF `-M2' convert inline equations to RTF `-M4' convert displayed equations to bitmap `-M8' convert inline equations to bitmap `-M16' insert Word comment field that contains the raw LaTeX equation `-M32' insert the raw latex equation in the RTF text delimited by `$ ... $' for inline equations and by `\[ ... \]' for displayed equations. This is useful when using version 6 of the MathType equation editor, which converts typed or pasted TeX code into a MathType equation. Probably this could also be useful for use in OpenOffice, as OO has an equation syntax which partially resembles TeX syntax. `-M64' convert displayed equations to EPS files and insert filenames in RTF text. `-M128' convert inline equations to EPS files and insert filenames in RTF text. These switches can be combined to get different effects. Handy examples are `-M3' convert both inline and displayed equations to RTF (default) `-M6' convert inline equations to RTF and displayed equations to bitmaps `-M12' convert both inline and displayed equations to bitmaps `-M192' convert both inline and displayed equations to EPS and insert filenames in RTF text Conversion to bitmaps or eps requires that you have installed a working latex2png script. Producing bitmaps is slow. When running the DOS version, conversion to bitmaps works for the first 26 equations but fails for the rest with the message "latex2png: pipe error: Too many open files (EMFILE)". This is probably a bug in the djgpp 2.04 compiler. The Windows version, compiled with MinGW, successfully converts at least 500 equations to bitmaps. When -M64, -M128 or both are specified, equations are converted to individual eps files, the filenames of which are literally inserted in the rtf file, delimited by [###...###]. After loading the rtf file in a text processing program, a macro can be run which searches for "[###" and "###]", extracts the filename, and inserts the eps in that place. The Windows installer package contains the code of such a macro for Word2010 in the file "WordMacro_InsertEPSfromNames.txt" in subfolder "scripts". (This macro may also run on other versions of Word but it was only tested on Word2010.) In Word, the inserted eps graphics display in bad quality on the screen and on non-postscript printers but can be printed in high quality on postscript and pdf printers. `-o outputfile' Unless an `outputfile' is specified with the `-o' option, the resulting RTF filename is formed by removing `.tex' from the `inputfile' and appending `.rtf'. `-p' Escape parentheses in mathematical formulas. This has no effect unless EQ fields are being generated. When this option is used, then a `(' or `)' that appears in an EQ field will be preceeded by a backslash. Despite documentation to the contrary (which says that all parentheses should be escaped), adding escapes usually produces a worse result than doing nothing. If Word displays some formulas with parentheses as "Error!", you might try this option as a last resort. See also the -S option. This is an option because it will break typesetting equations with non-matching parentheses (because an unmatched unquoted parenthesis would terminate the field). `-P /path/to/cfg' used to specify the folder (i.e. directory) that contains the `.cfg' files and/or the folder that contains the latex2png script. Unix, Mac: The folder that contains the latex2png script must be prepended by a ":". DOS, Windows: The scripts folder is not used, the scripts are always taken from the search path, therefore the folder containing the scripts and the helper programs must be the first in the search path. You can either add it to the search path permanently or add it temporarily by calling l2rprep.bat before starting conversions. If any of the folder names contains a blank, the folder string must be enclosed in single (Unix, Mac) or double (DOS, Windows) quotes. Examples: (Unix:) `latex2rtf -P ./cfg/:./scripts/ foo' (DOS/Windows:) `latex2rt -P "C:\Program Files\latex2rtf\cfg" foo' Note that without specifying the -P option, LaTeX2RTF tries to find its cfg files in the following locations: 1. the folder specified by the environment variable `RTFPATH', if this variable exists; 2. The folder `%PROGRAMFILES%\latex2rtf\cfg', if the variable `PROGRAMFILES' exists - this is the folder in which LaTeX2RTF is installed by the Windows GUI installer with default settings; 3. the folder specified at compilation time by the variable `CFGDIR'. This is set in the Makefile. The DOS version is compiled with `CFGDIR=C:/l2r', the Windows version with `CFGDIR=C:/PROGRA~1/latex2rtf'. `-se#' selects the scale for equation conversion, where # is the scale factor (default 1.00). `-sf#' selects the scale for figure conversion, where # is the scale factor (default 1.00). `-t#' where # selects the type of table conversion. Use `-t1' convert tables to RTF (default) `-t2' convert tables to bitmaps `-v or -V' prints version information on standard output and exits. `-S' used to specify that semicolons should be used to separate arguments in RTF fields (instead of commas). Typically this is needed when the machine that opens the RTF file has a version of Windows that uses `,' for decimal points. `-T /path/to/tmp' used to specify the folder where to put temporary files. The path can be absolute, e.g. `/path/to/tmp' or relative to the folder where the .tex input file is in, e.g. `tmp' or `./tmp'. If you call LaTeX2RTF from the commandline (e.g. under Linux or when called as export filter by LyX), make sure that the tmp folder exists. Only the LaTeX2RTF Windows shell tries to create the tmp folder, the command line program doesn't. `-W' includes warnings directly in the RTF file `-Z#' add the specified number of extra `}' to the end of the RTF file. This is useful for files that are not cleanly converted by LaTeX2RTF. With no arguments other than switches starting with a "-", LaTeX2RTF acts as a filter, i.e., it reads from `stdin' and writes to `stdout'. In addition, diagnostic messages are sent to `stderr'. If these standard channels are not redirected using `<' and `>', then the input is read from the command line, and both output and error messages are printed on the screen. To redirect warnings and error messages to a file "latex2rtf.log", append `2>latex2rtf.log' to the command line. If a non-switch argument is present, LaTeX2RTF assumes it is the name of the input file. The file must have extension ".tex" but the extension is optional. The output file is constructed from the input file name by removing the extension ".tex" and adding ".rtf".  File: latex2rtf.info, Node: Debugging, Prev: LaTeX2RTF Options, Up: Using LaTeX2RTF 3.3 Debugging ============= With the `-d' option you can specify how much processing information LaTeX2RTF reports. If there is a logfile specified the output goes to this file. Nonetheless Warnings and Errors are logged to stderr always. They can be redirected to a file "latex2rtf.log" by appending `2>latex2rtf.log' to the command line. Possible values of `-d' are 0. only errors. 1. Translation Warnings (default). 2. shows preparsing of sections 3. Reasonably high level debugging messages 4. Show all function calls 5. Show each character as it is processed 6. Show processing of characters as they are output as well  File: latex2rtf.info, Node: Features, Next: Configuration, Prev: Using LaTeX2RTF, Up: Top 4 Features ********** In this chapter you find what styles is LaTeX2RTF supposed to translate correctly to RTF. * Menu: * LaTeX2e:: * Unicode Support:: * Input Encoding:: * Language Support:: * Cross References:: * Page Formatting:: * Equations:: * Math and Special Symbols:: * Tables:: * Graphics:: * Pagestyles:: * Hyperlatex:: * APA Support::  File: latex2rtf.info, Node: LaTeX2e, Next: Unicode Support, Prev: Features, Up: Features 4.1 LaTeX2e =========== LaTeX2RTF understands most of the commands introduced with LaTeX2e. It translates both the old 2.09 version of `\documentstyle[options]{format#}' and the newer `\documentclass[options]{format}'.  File: latex2rtf.info, Node: Unicode Support, Next: Input Encoding, Prev: LaTeX2e, Up: Features 4.2 Unicode Support =================== As of version 1.9.17 and up, LaTeX2RTF has limited unicode support. LaTeX files that use unicode sequences are just emitted directly into the RTF file. Symbols and odd characters in math sequences may also be converted to a unicode sequence. Some of them need the STIXGeneral fonts (see *note Math and Special Symbols::) to be installed on the system where the rtf file is to be displayed or printed. Support for unicode encoded input is activated by the LaTeX command `\usepackage[utf8]{inputenc}' or `\usepackage[utf8x]{inputenc}'.  File: latex2rtf.info, Node: Input Encoding, Next: Language Support, Prev: Unicode Support, Up: Features 4.3 Input Encoding ================== It is not necesary to specify the `-C' option if you use `\usepackage{isolatin1}' or `\documentstyle[isolatin1]{...}'. LaTeX2RTF automagically detects these packages/style options and switches to processing of ISO-Latin1 codes. The following encodings are supported: ansinew, applemac, cp437, cp437de, cp850, cp852, cp865, decmulti, cp1250, cp1252, latin1, latin2, latin3, latin4, latin5, latin9, next, koi8-r, koi8-u, cp1251, cp855, cp866, maccyr, macukr, utf8, and utf8x. The encoding used in RTF files is cp1252. If cyrillic fonts are present, then these are represented in the RTF file using cp1251 (Windows Cyrillic).  File: latex2rtf.info, Node: Language Support, Next: Cross References, Prev: Input Encoding, Up: Features 4.4 Language Support ==================== The following languages from the Babel package are supported: afrikaans, german, nynorsk, spanish, bahasa, dutch, icelandic, polish, swedish, basque, english, portuges, turkish, brazil, esperanto, irish, romanian, usorbian, breton, estonian, italian, samin, welsh, catalan, finnish, latin, scottish, croatian, lsorbian, serbian, czech, french, magyar, slovak, danish, galician, norsk, slovene. The only thing that these files do is to translate various words usually emitted by LaTeX during processing. For example, this ensures that the LaTeX2RTF will provide the correct translation of the word "Chapter" in the converted document. You can select any of the above languages using the `-l' option. This is not needed if your LaTeX file contains `\usepackage[language]{babel}'. Encountering the `german' package or babel option (by H. Partl of the Vienna University) makes LaTeX2RTF behave like that: German Quotes, German Umlauts by `"a', etc... This support is programmed directly into LaTeX2RTF and supporting similar features for other languages will require patching the source code. There is similar support for `french' packages. There is reasonable support for english, latin1, latin2, and cyrillic languages. *Note Language Configuration::, for details on how to write a `language.cfg' file for your language by yourself.  File: latex2rtf.info, Node: Cross References, Next: Page Formatting, Prev: Language Support, Up: Features 4.5 Cross References ==================== Cross references include everything that you might expect and then some: bibliographic citations, equation references, table references, figure references, and section references. Section, equation, table and figure references are implemented by placing RTF bookmarks around the equation number (or table number or figure number). Page references work but are implemented as "warm" cross-references. This means that Word does not automatically update the page references when the file is opened. To update the page references you must select the entire document (in Word) and press `F9'. Bibliographic references currently require that a valid `.aux' file be present. This is where LaTeX2RTF obtains the reference numbers. It would be nice if LaTeX2RTF just automatically numbered the references when there was no `.aux' file, but LaTeX2RTF does not do this yet. LaTeX2RTF relies on BibTeX to convert and format bibliographic entries. Usually the style file for a particular BibTeX format does not use any special LaTeX commands and therefore the bibliography file `file.bbl' can be processed by LaTeX2RTF without difficulty. As a consequence, LaTeX2RTF can handle most bibliography styles without problem. There are several latex style packages that add additional latex commands to enhance bibliographic formatting. LaTeX2RTF currently supports the following bibliographic packages: apacite, apalike, authordate, harvard, natbib (also with apanat1b). These packages have many, many options and you may encounter problems with formatting in special cases. As of LaTeX2RTF 1.9.17 and up, the natbib command bibpunct is supported. Footnotes are implemented and appear at the bottom of each page. Indexing is reasonably-well supported. The simple mark-up of `makeindex' \index{topic!subtopic@\textit{subtopic}} is supported. The rest of the fancy indexing stuff is not implemented. The index is created at the location of the `\printindex' command. When a file with an index is first opened in Word, you must select the entire file and update the page references and fields by pressing `F9'. Currently, there is no support for `\labels' of `\item's in enumerate environments. The conversion of cross-references is not perfect because of the different mechanisms in the LaTeX and Word worlds. In particular, if there are multiple `\label' in a figure, table, or section environment then only the first gets processed. It is also possible to confuse the LaTeX2RTF in eqnarray environments.  File: latex2rtf.info, Node: Page Formatting, Next: Equations, Prev: Cross References, Up: Features 4.6 Page Formatting =================== LaTeX2RTF will handle some basic page formatting options, including \doublespacing (as implemented in the setspace package), and the margin setting options provided by the geometry package including commands in the ratio, centering and margin families. Not all geometry options are implemented yet, in part because there are no corresponding rtf commands for many of them.  File: latex2rtf.info, Node: Equations, Next: Math and Special Symbols, Prev: Page Formatting, Up: Features 4.7 Equations ============= There are six separate levels of equation translation based on the -M switch, see *note LaTeX2RTF Options::. Each equation is converted either to an EQ field or to a bitmap or inserted as raw TeX code in the document or converted to an eps file with the eps file name inserted in the document text delimited by [###...###]. This is an interim solution (for some definition of "interim"). Ideally the equations would become OLE equation objects in the RTF file, but this needs to be implemented. Some functions in the EQ fields have two or more parameters with a separator between each two. Unfortunately, the interpretation of these separators depends on the country specific settings in the MS Windows system in which the rtf file is opened. e.g. in English versions of MS Windows, the default parameter separator is the comma, in German versions the default is the semicolon. If the parameter in the RTF file does not match the Windows setting, some EQ fields are not interpreted correctly. You can check and set the separator in [Windows control panel - country settings - numbers - list separator]. By default, LaTeX2RTF uses the comma as separator. If LaTeX2RTF is called with the command line parameter -S , the semicolon is inserted as parameter delimiter. Theoretically, according to the Word help file, parentheses `(' or `)' in mathematical formulas should be escaped (by a preceding backslash). Despite this, adding escapes usually produces a worse result than doing nothing. If Word displays some formulas with parentheses as "Error!", you might try the -p option as a last resort. It is also possible to convert an EQ field generated by LaTeX2RTF to an Equation Editor object by opening the rtf file in Word and double-clicking on the equation. However there are bugs in the interface between Word and Equation Editor which prevent symbols in font Symbol or MTExtra to be converted correctly. The full commercial version of the Equation Editor, called MathType, handles this conversion correctly. If you have MathType version 6 or later, an even better way to convert LaTeX equations to MathType is letting LaTeX2RTF write the LaTeX code of the equations verbatim in the rtf file (option -M32), then open the rtf file in Word, select the LaTeX code of an equation, cut it to the clipboard, open MathType, and paste the code. MathType will convert the code into an equation. Wilfried tried to automate this in a Word macro, but this fails because the macro does not wait until MathType is started and ready to receive the pasted code. Maybe the MathType authors will give us a hint or provide such a macro. MathType can be downloaded from `http://www.dessci.com/' (30 day test version).  File: latex2rtf.info, Node: Math and Special Symbols, Next: Tables, Prev: Equations, Up: Features 4.8 Math and Special Symbols ============================ The way that symbols are converted in the RTF is based on the following observations. If the symbol is found in the latin 1 character set, then the current font is used, else the unicode code is inserted in the rtf code. (Implemented since version 2.1.0) The means that on the system where the `.rtf' file is opened, a unicode font should be available or these glyphs will not be displayed correctly. As only the STIX fonts contain all needed characters, these fonts should be installed on the system where the rtf file is to be displayed or printed. Many mathematical and special symbols are directly supported by LaTeX2RTF. Less common symbols (not found in the standard font) are supported by the conversion table in the file `direct.cfg', see *note Direct Conversion::. Required fonts are: * "Times" / "Times New Roman" or "Helvetica" / "Arial", preferably with Unicode extension (i.e. supporting all European languages including Cyrillic, Greek, and Hebrew). "Times" or "Times New Roman" and "Helvetica" or "Arial" are standard on all systems, but not their Unicode extension. * "STIXGeneral" (4 fonts in plain, italic, bold, bold-italic). These fonts are available from `http://sourceforge.net/projects/stixfonts/'. Note that while Office 2003 on Vista works correctly with the Open Type version, it does not on Windows XP (Word 2003 assigns no character spacing, and Publisher doesn't display the character at all). On Windows XP, Office 2003 only displays the symbols correctly with the TrueType (ttf) version of the fonts. But stixfonts.org only supplies the Open Type (otf) version. TrueType versions of the fonts can be downloaded from `http://sites.google.com/site/olegueret/stixfonts-ttf'.  File: latex2rtf.info, Node: Tables, Next: Graphics, Prev: Math and Special Symbols, Up: Features 4.9 Tables ========== Conversion of tabular and tabbing environments is somewhat lame. The main difficulty is that LaTeX (and html) will size the columns of a table automatically. There is no such feature in RTF. Consequently, the conversion defaults to making all the columns have equal size. This is suboptimal and should be revised. Another way is to use the option -t2 to make latex render them as bitmaps and insert the bitmaps into the RTF file. This feature was added in version 1.9.19.  File: latex2rtf.info, Node: Graphics, Next: Pagestyles, Prev: Tables, Up: Features 4.10 Graphics ============= There is now rudimentary support for `\includegraphics'. Three file types will be inserted into the RTF file without needing conversion: `.pict', `.jpeg', and `.png' files. EPS and PDF files are converted to PNG using `convert' from the ImageMagick package. Some options are even handled properly.  File: latex2rtf.info, Node: Pagestyles, Next: Hyperlatex, Prev: Graphics, Up: Features 4.11 Pagestyles =============== If there is no `\pagestyle' command, the RTF output is generated as with plain pagestyle, i.e. each page has its page number centered at the bottom. You must turn this off with the \pagestyle{empty} command in the LaTeX file if you don't want pagenumbers. The headings and myheadings styles are silently ignored by now. The twosided option to the \documentstyle or \documentclass produces the corresponding RTF tokens. Note that these features require RTF Version 1.4.  File: latex2rtf.info, Node: Hyperlatex, Next: APA Support, Prev: Pagestyles, Up: Features 4.12 Hyperlatex =============== Hyperlatex support is largely broken at the moment, but continues to improve. Otfried Schwarzkopf has created the "Hyperlatex Markup Language" which is a "little package that allows you to use LaTeX to prepare documents in HTML." It brings an Emacs lisp program with it to convert the Hyperlatex file to HTML. Hyperlatex can be obtained from the CTAN-sites, see *note Obtaining LaTeX2RTF::. There are two convenient commands that avoid typing: \link and \xlink that generate an "internal" label which then is used in the following \Ref and \Pageref commands. LaTeX makes it possible to write `\link{anchor}[ltx]{label}', which typesets: `anchor ltx'. LaTeX2RTF does NOT support this aproach since the optional parameter is thrown away right now, see *note LaTeX2RTF under Development::. Note that you have to update your `.cfg' files if you are upgrading, since there are a lot of HTML oriented commands in Hyperlatex that we simply can `ignore'.  File: latex2rtf.info, Node: APA Support, Prev: Hyperlatex, Up: Features 4.13 APA Support ================ Some APA citation styles are supported, see *note Citation Commands:: Support for APA text formatting is only rudimentary at the moment (headings without numbering). If you want to format a document according to APA, rename cfg/style.cfg to style_sav.cfg and rename cfg/styleAPA.cfg to style.cfg before starting LaTeX2RTF.  File: latex2rtf.info, Node: Configuration, Next: Error Messages and Logging, Prev: Features, Up: Top 5 Configuration *************** * Menu: * Input Processing:: * Conditional Parsing:: * Output Formatting:: * Direct Conversion:: * Ignore Command:: * Font Configuration:: * Language Configuration::  File: latex2rtf.info, Node: Input Processing, Next: Conditional Parsing, Prev: Configuration, Up: Configuration 5.1 Input processing ==================== On processing input LaTeX2RTF first converts the LaTeX special characters. If it encounters one of the standard commands it is converted internally. If a command is not known to LaTeX2RTF it is first looked up in `direct.cfg' and the RTF code specified there is output. If not found there it is looked up in the section `ignore.cfg'. This file includes a lot of LaTeX commands that do not affect the output (cross reference information and the like), or that we are not able or willing to convert to RTF. You can use `ignore.cfg' if you get tired of seeing WARNING: command: `foo' not found - ignored and you don't need `foo' in your RTF document. It would be nice to send your additions to the LaTeX2RTF mailing list for inclusion in later distributions. LaTeX2RTF accepts Unix, MS-DOS, and Macintosh line ending codes (\n, \r\n and \r). The files it creates get the line ending for the platform on which LaTeX2RTF was compiled. The LaTeX file may have been created with a wide variety of character sets. If the LaTeX lacks the `\package[codepage]{inputenc}' definition, then you may need to use the command line switch to manually select the proper code page (*note Input Encoding::).  File: latex2rtf.info, Node: Conditional Parsing, Next: Output Formatting, Prev: Input Processing, Up: Configuration 5.2 Conditional Parsing ======================= Starting with LaTeX2RTF 1.9.18, there is a handy method for controlling which content should be processed by LaTeX or by LaTeX2RTF. Control is achieved using the standard `\if' facility of TeX. If you include the following line in the preamble of your document (i.e., before `\begin{document}') \newif\iflatextortf Then you will create a new `\iflatextortf' command in LaTeX. TeX sets the value of this to `false' by default. Now, LaTeX2RTF internally sets `\iflatextortf' to be true, and to ensure that this is always the case, LaTeX2RTF ignores the command `\latextortffalse'. This means that you can control how different applications process your document by \iflatextortf This code is processed only by latex2rtf \else This code is processed only by latex \fi Note that `\iflatextortf' will only work within a section; you cannot use this command to conditionally parse code that crosses section boundaries. Also, it will only work on complete table or figure environments. Due to the mechanism used by LaTeX2RTF in processing these environments, at this time the only way to conditionally parse tables and figures is to include two complete versions of the environment in question, nested within an appropriate `\iflatex2rtf' structure. LaTeX2RTF versions 1.9.15 to 1.9.18 had the ability to hide contents from LaTeX but expose them to LaTeX2RTF by starting a line with `%latex2rtf:'. This code was horribly broken, and it was removed. The same functionality is readily achieved using the `\iflatextortf' mechanism. For example, the old method allowed %latex2rtf: This line will only appear in the latex2rtf output, To get the same behavior, define `\iflatextortf' and use \iflatextortf This code is processed only by latex2rtf \fi  File: latex2rtf.info, Node: Output Formatting, Next: Direct Conversion, Prev: Conditional Parsing, Up: Configuration 5.3 Output Formatting ===================== On writing output, LaTeX2RTF generates the operating system specific line ending code (`\n' on Unix, `\r\n' on DOS or Windows), depending on which system LaTeX2RTF was compiled. As both should be legal to any RTF Reader the resulting RTF rendering should not be affected. LaTeX2RTF does not offer a whole lot of flexibility in how files are translated, but it does offer some. This flexibility resides in four files `direct.cfg', `ignore.cfg', `fonts.cfg', and `language.cfg'. These filese are documented in the next four sections.  File: latex2rtf.info, Node: Direct Conversion, Next: Ignore Command, Prev: Output Formatting, Up: Configuration 5.4 Direct Conversion ===================== The file `direct.cfg' is used for converting LaTeX commands by simple text replacement. The format consists of lines with a LaTeX command with backslash followed by comma. The rest of the line until a `.' character will be written to the RTF file when the command is found in the LaTeX file. Lines starting with a `#' character are ignored. After the `.' everything is ignored to end of line. To select a specific font use `*fontname*', where `fontname' be defined in `fonts.cfg'. To write the `*' character use `**'. \bigstar,{\u8727**}. \copyright,\'a9. In general, specific fonts should not be specified in this file. There is a mechanism to do this, but it turns out that this is not as useful as originally thought. The main reason that this fails is because the conversion of equations from Word fields to Equation Editor objects is buggy. The consequence is that to have symbols show up properly, they must be encoded differently when the Symbol and MT Extra fonts are used -- depending on whether Word fields are active or not. It was all very tedious to figure out a mechanism that was "least broken."  File: latex2rtf.info, Node: Ignore Command, Next: Font Configuration, Prev: Direct Conversion, Up: Configuration 5.5 Ignore Command ================== The file `ignore.cfg' is used for defining how to ignore specific commands. This file is used for recognition of LaTeX variables, user defined variables, and some simple commands. All variables are ignored but the converter must know the names to correctly ignore assignments to variables. Lines in this file consist of a variable name with backslash, followed by comma and the type of the variable followed by `.'. Possible types are `NUMBER' simple numeric value `MEASURE' numeric value with following unit of measure `OTHER' ignores anything to the first character after `=' and from there to next space. e.g., `\setbox\bak=\hbox' `COMMAND' ignores anything to next `\' and from there to the occurence of anything but a letter e.g., `\newbox\bak' `SINGLE' ignores single command e.g., `\noindent' `PARAMETER' ignores a command with one parameter e.g., `\foo{bar}' `PACKAGE' does not produce a Warning message if PACKAGE is encountered, e.g., ``\kleenex,PACKAGE.'' ignores ``\usepackage{kleenex}'' `ENVCMD' intended to process contents of unknown environment as if it were plain LaTeX, e.g. ``\environ,ENVCMD.'' Therefore ``\begin{environ} text \end{environ}'' would be converted to `text'. Doesn't work in LaTeX2RTF version 2.1.0 up to and including 2.3.4. `ENVIRONMENT' ignores contents of that environment, e.g., with ``\ifhtml,ENVIRONMENT.'", ``\begin{ifhtml} text \end{ifhtml}'' ignores `text'. The types are in upper case exactly as above. Do not use spaces. Lines starting with a `#' character are ignored. After the `.' everything is ignored to end of line. Example: \pagelength,MEASURE.  File: latex2rtf.info, Node: Font Configuration, Next: Language Configuration, Prev: Ignore Command, Up: Configuration 5.6 Font Configuration ====================== The file `fonts.cfg' contains the font name mapping. For example, this file determines what font is used to represent `\rm' characters in the RTF file. A line consists of a font name in LaTeX followed by comma and a font name in RTF. The end is marked by a `.'. No spaces are allowed. The LaTeX font will be converted to the RTF font when it is found in the LaTeX file. If multiple translations for the same LaTeX font are specified, only the first is used. All fonts in a LaTeX file that are not in this file will be mapped to the default font. All RTF fonts listed in this file will be in every RTF file header whether used or not. Lines starting with a `#' character are ignored. After the `.' everything is ignored to end of line. To add a RTF font not used as substitute for a LaTeX font -- for example a Symbol font used in `direct.cfg' -- use a dummy LaTeX name like in the following Dummy3,MathematicalSymbols. Make sure you use the correct font name. Take care of spaces in font names. The default fonts are named Roman `\rm', Slanted `\sl', Sans Serif `\sf', Typewriter `\tt', or Calligraphic `\cal'.  File: latex2rtf.info, Node: Language Configuration, Prev: Font Configuration, Up: Configuration 5.7 Language Configuration ========================== The file(s) `language.cfg' control the translation of LaTeX's "hardcoded" sectioning names. The standard LaTeX styles have some fixed Title names like `Part', `Reference' or `Bibliography' that appeared in English or German in the output with the original versions of LaTeX2RTF. It is unlikely that you will need to create a new `language.cfg' file. However, just look at one of the existing files and follow the pattern. The format is really simple.  File: latex2rtf.info, Node: Error Messages and Logging, Next: History, Prev: Configuration, Up: Top 6 Error Messages and Logging **************************** As stated in the Debugging section, LaTeX2RTF provides a means to control the amount of debugging information through the `-d#' switch. By using a debugging level of 4, you can get a pretty good idea of what LaTeX command caused the problem and what line that command might be found on. Warnings and error messages are output to stderr and by default listed in the console window. They can be redirected to a file "latex2rtf.log" by appending `2>latex2rtf.log' to the command line. `Fatal error messages' indicate a bug in the source code. PLEASE report them, if they do not apear in the documentation (*note Reporting Bugs::). `Error messages' always abort the program and are caused by conditions that prevent further conversion of the input file. Typically this is cause by LaTeX2RTF getting hopelessly confused by the number of braces in the LaTeX file. `Warning messages' inform you, that there is some conversion loss from LaTeX to RTF, or that the output file has some restrictions on some RTF Readers. Most of these warnings can be supressed by add the offending command to the `ignore.cfg' file. Error and Warning messages should follow the GNU Coding standards, i.e. they have the format inputfile':line: Error|Warning: message You can also control the level of debugging output by inserting `\verbositylevel{#}' in the LaTeX file. This is very handy if you have a large LaTeX file that is failing in only a small section. For example, problem free latex file .... \verbositylevel{5} problematic code \verbositylevel{0} will cause a huge amount of debugging information to be emitted for the problematic code. Error reporting and logging still has many inconsistencies, but it gets better with each release. Don't try to make any sense in debugging levels above 4, these are for my own delight only and can change significantly between versions. The `inputfile' may be incorrectly identified if it is incorporated through `\input' or `\include'. The line may be also be wrong at times. *Note Known Bugs::.  File: latex2rtf.info, Node: History, Next: LaTeX2RTF under Development, Prev: Error Messages and Logging, Up: Top 7 History & Copyright ********************* In 1994 the first Version of LaTeX2RTF was written by Fernando Dorner and Andreas Granzer of the Viena University supervised by Ralf Schlatterbeck in a one-semester course. They created a simple LaTeX parser and added most of the infrastructure for the program. This was version 1.0 of LaTeX2RTF. In 1995, work on LaTeX2RTF was continued in another one-semester course by Friedrich Polzer and Gerhard Trisko. The result was LaTeX2RTF version 1.5. Ralf Schlatterbeck (ralf "at" zoo.priv.at) maintained and extended LaTeX2RTF until 1998. In 1998 Georg Lehner (jorge_lehner "at" gmx.net) found the reference to LaTeX2RTF on the TeX Conversion Webpage (http://tug.org/utilities/texconv/index.html) of Wilfried Hennings and added some functionality and took over the maintainence of the program. The last version release by Georg is 1.8aa. The bulk of development post 1.8aa was done by Scott Prahl. Wilfried Hennings now coordinates the development of the program and maintains the project on SourceForge (http://sourceforge.net/projects/latex2rtf/) where there are also (low volume) mailing lists for users and developers. Mailing via one of these lists requires subscription to the list (to prevent spam). For subscription to these lists visit the page: users list (http://lists.sourceforge.net/lists/listinfo/latex2rtf-users) or developers list (http://lists.sourceforge.net/lists/listinfo/latex2rtf-developers) As of Januar 2017, version 2.3.12 of LaTeX2RTF is available. The contents of this manual were composed by copying shamelessly what was available in the original sources and documentation.  File: latex2rtf.info, Node: LaTeX2RTF under Development, Next: Function Index, Prev: History, Up: Top 8 LaTeX2RTF under Development ***************************** * Menu: * Unimplemented Features:: * Missing options:: * Known Bugs:: * Reporting Bugs:: * Todo List:: * LaTeX Commands::  File: latex2rtf.info, Node: Unimplemented Features, Next: Missing options, Prev: LaTeX2RTF under Development, Up: LaTeX2RTF under Development 8.1 Unimplemented Features ========================== * LaTeX2RTF ignores some optional parameters of `\documentstyle' * Add the code to produce the corresponding chapter, section, and page numbering with headings and myheadings pagestyles. Implement `\markboth' and `\markright'. * To support `\tableofcontents' there would be two approaches: Transfer sectioning information, title text and then produce page numbers by the rtf- reader. Scan and label all of the sectioning commands while reading and then construct the sectioning information using these labels. Needs two passes on LaTeX input.  File: latex2rtf.info, Node: Missing options, Next: Known Bugs, Prev: Unimplemented Features, Up: LaTeX2RTF under Development 8.2 Missing options =================== Missing or buggy command line options. `-d' Information logging and Error reporting is not implemented consistently. Need to test and track problems with the linenumber and with the file name. `--long_names' It would be useful to implement the GNU long option names, e.g.: `-debug', `-output_file', `-quiet', etc. This could be done by switching to the GNU getopt package.  File: latex2rtf.info, Node: Known Bugs, Next: Reporting Bugs, Prev: Missing options, Up: LaTeX2RTF under Development 8.3 Known Bugs ============== 1. The first parameter of a \link{anchor}[ltx]{label} is converted to the rtf-output. Label is stored to hyperref for later use, the optional parameter is ignored. [ltx] should be processed as Otfried recommends it, to use for exclusive LaTeX output.e.g: \link{readhere}[~\Ref]{explaining: chapter}. Since {explaining:chapter} is yet read by LaTeX and hyperlatex when [...] is evaluated it produces the correct reference. LaTeX2RTF is only strolling from left to right through the text and can't remember what she will see in the future. 2. The diagnostics routine does not output the correct (actual) input filename. (`.aux', `.bbl', `\input').  File: latex2rtf.info, Node: Reporting Bugs, Next: Todo List, Prev: Known Bugs, Up: LaTeX2RTF under Development 8.4 Reporting Bugs ================== Report bugs to to the bug tracking system at SourceForge (http://sourceforge.net/projects/latex2rtf/). Only report bugs for the latest version of LaTeX2RTF that is available. Please provide the following information and observe the following guidelines when reporting a bug in the program: 1. State the version of LaTeX2RTF that you are using. You can get the version by specifying the `-V' option to LaTeX2RTF. 2. Specify the your operating system and version. Be sure to check the file `Makefile' for settings that may be specific to your machine, especially for some versions of SunOS there may be settings which are needed to compile successfully. Do this before submitting a bug report. 3. If the program produces wrong output or does not work for you, include a short LaTeX file along with a description of the problem. Isolating the bug into a small LaTeX file does two things. First, it provides a file that can be used to test future versions of LaTeX2RTF and second, it certainly improves the chances that the bug will get some attention. Do not send me large LaTeX or RTF files, I simply do not have the time to wade through large files to search for a bug! 4. Be patient. I am maintaining the program in my free time. I did not write most of the code. Often I do not have the time to answer to your question. I will, however, try to fix reported bugs in upcoming releases.  File: latex2rtf.info, Node: Todo List, Next: LaTeX Commands, Prev: Reporting Bugs, Up: LaTeX2RTF under Development 8.5 Todo List ============= Scott's ToDo list * Use lex/yacc to implement getSection * Add support for pagestyle * Better support for ignoring commands Georg's todo list * Make this Manual more consistent, the ToDo and Known Bug List shorter and the Features List longer. * Harmonize all of the error and warning messages. * Put warnings everywhere applicable about producing RTF 1.4 tokens. * Provide an Error and Warning recovery guide to the user. * Add a chapter with lists of all LaTeX commands that convert, and that do not convert to RTF, including their status (for future releases, never, partially functional, ...).  File: latex2rtf.info, Node: LaTeX Commands, Prev: Todo List, Up: LaTeX2RTF under Development 8.6 Command List ================ Listed here are all the LaTeX commands currently parsed by LaTeX2RTF. Note: inclusion in this list does not mean that a command is fully and correctly handled by LaTeX2RTF. In some cases the commands here are place-holders only, and are not implemented at all. The list is provided to encourage developers to note any departures from the behaviour that LaTeX users will expect. The location of the commands is noted to assist anyone interested in hacking on the C source code. This list is a work in progress, and may not be immediately useful to general users, other than to indicate those commands that we have at least contemplated implementing. * Menu: * General Commands:: * Preamble Commands:: * Letter Commands:: * Language Commands:: * Citation Commands:: * Acronym Commands:: * Other Commands:: * Environments::  File: latex2rtf.info, Node: General Commands, Next: Preamble Commands, Prev: LaTeX Commands, Up: LaTeX Commands 8.6.1 General Commands ---------------------- These commands are found in the `commands[]' array in commands.c. They are arranged alphabetically within sections according to function. * Menu: * Basic Commands:: * Font Commands:: * Logos:: * Special Characters:: * Sectioning Commands:: * Uncategorized::  File: latex2rtf.info, Node: Basic Commands, Next: Font Commands, Prev: General Commands, Up: General Commands 8.6.1.1 Basic Commands ...................... All listed commands work as expected. begin centerline end endnote footnote raggedright the today vcenter  File: latex2rtf.info, Node: Font Commands, Next: Logos, Prev: Basic Commands, Up: General Commands 8.6.1.2 Font Commands ..................... All listed commands work as expected. bf bfseries cal em emph enotesize footnotesize HUGE Huge huge it itshape LARGE Large large mathbf mathcal mathit mathmd mathnormal mathrm mathsc mathsf mathsl mathtt mathup mdseries mit normalfont normalsize rm rmfamily sc scfamily scriptsize scshape sf sffamily sl slshape small ssmall textbf textfont textit textmd textnormal textrm textsc textsf textsl texttt textup tiny tt ttfamily underbar underline upshape  File: latex2rtf.info, Node: Logos, Next: Special Characters, Prev: Font Commands, Up: General Commands 8.6.1.3 Logos ............. All listed commands work as expected. AmSLaTeX AmSTeX BibTeX kern LaTeX latex LaTeXe lower LyX SLiTeX TeX  File: latex2rtf.info, Node: Special Characters, Next: Sectioning Commands, Prev: Logos, Up: General Commands 8.6.1.4 Special Characters .......................... These commands all work as expected. \ acute b bar breve c check d ddot dot grave H hat i j l L r tilde u v vec  File: latex2rtf.info, Node: Sectioning Commands, Next: Uncategorized, Prev: Special Characters, Up: General Commands 8.6.1.5 Sectioning Commands ........................... chapter chapter* paragraph paragraph* part part* section section* subparagraph subparagraph* subsection subsection* subsubsection subsubsection*  File: latex2rtf.info, Node: Uncategorized, Prev: Sectioning Commands, Up: General Commands 8.6.1.6 Uncategorized ..................... These commands need to be organized into new or existing sections. abstract addcontents Ignored addcontentsline Ignored addvspace Ignored aleph Alph alph Ignored alpha Alpha Ignored amalg and angle appendix Ignored approx arabic Ignored ast author baselineskip because beta Beta bibentry bibitem bibliography bibliographystyle bibliographystyle Ignored bigskip bot BoxedEPSF bullet cap caption cdot cdots centering char chi Chi circ cite citeonline cleardoublepage clearpage clubsuit cong contentsline coprod cup date ddots delta Delta dfrac Diamond diamondsuit div doteq dotfill There is no rtf code for dotfill; LaTeX2RTF inserts an ellipsis only. dots dots downarrow Downarrow efloatseparator ell emptyset endinput endnotemark Ignored ensuremath epsfbox epsffile epsilon eqref equiv eta exists fbox fbox fnsymbol Ignored footnotemark Ignored forall frac Frac framebox Ignored frenchspacing Ignored gamma Gamma ge geq gg glossary Ignored glossaryentry Ignored hbar hbox heartsuit hsize hslash hspace Ignored hspace* Ignored htmladdnormallink htmlref iiint iint Im in include includegraphics includegraphics* includeonly Ignored indent index indexentry Ignored infty input int int iota kappa label lambda Lambda land langle lceil ldots le left leftarrow Leftarrow leftharpoondown leftleftarrows leftrightarrow Leftrightarrow leftrightarrows leq let Ignored letterspace lfloor lim liminf limsup linebreak Ignored lineskip listoffigures listoftables ll longleftarrow longleftrightarrows longrightarrow lor makebox Ignored maketitle mapsto marginpar Ignored markboth Ignored markright Ignored matrix mbox measuredangle medskip mho moveleft moveright mp mu multicolumn nabla ne nearrow neg neq newblock newcount Ignored newfont Ignored newpage newsavebox Ignored nobibliography Ignored nobreakspace nocite noindent nolinebreak Ignored nonfrenchspacing Ignored nonumber nopagebreak Ignored notag nu numberline nwarrow omega Omega omicron onecolumn onlinecite oplus oslash otimes output Ignored overline pagebreak pagenumbering Ignored pageref pagestyle Ignored par parbox partial perp phi Phi pi Pi pm prec printindex prod prod propto protect Ignored psfig psfrag Ignored psi Psi qquad quad raisebox Ignored rangle rceil Re ref refstepcounter rfloor rho right Rightarrow rightarrow rightharpoonup rightleftarrows rightleftharpoons rightrightarrows Roman Ignored roman Ignored rule samepage Ignored savebox Ignored sbox Ignored searrow setbox settowidth Ignored sigma Sigma sim simeq smallskip spadesuit sqrt stackrel stepcounter Ignored stretch Ignored subset subseteq succ sum sum supset supseteq surd swarrow tableofcontents tau textalpha textbeta textbullet textchi textcolor textDelta textdelta textellipsis textepsilon texteta textGamma textgamma textiota textkappa textLambda textlambda textmu textnu textOmega textomega textperiodcentered textPhi textphi textPi textpi textPsi textpsi textSigma textsigma textsubscript textsuperscript textTau texttau textTheta texttheta textXi textxi textzeta thanks therefore Theta theta tikzpicture times title to triangleleft triangleright twocolumn typeaout Ignored Typein Ignored typein Ignored typeout Ignored Uparrow uparrow updownarrow Updownarrow upsilon Upsilon url usebox Ignored value varepsilon varnothing varphi varpi varpropto varsigma vartheta vbox vdots vee verb verb* vref vsize vskip vspace vspace* wedge wp xi Xi zeta  File: latex2rtf.info, Node: Preamble Commands, Next: Letter Commands, Prev: General Commands, Up: LaTeX Commands 8.6.2 Preamble Commands ----------------------- These commands are found in `PreambleCommands[]' in commands.c, and are implemented in preamble.c. addtocounter addtolength baselineskip celsius cfoot chead cline DeclareRobustCommand DeclareRobustCommand* def degreecelsius documentclass documentstyle doublespacing Currently, the only command from the setspace package that is implemented, and the only way to modify line spacing. endnotetext EUR euro evensidemargin fancyfoot fancyhead flushbottom footnotetext geometry Currently recognizes *ratio, *centering, *margin, left, right, inner, outer, top, bottom, right, left (including vmargin, hratio etc.) headheight headsep hline hoffset htmladdnormallink htmlref hyphenation iflatextortf ifx include input latextortffalse Ignored latextortftrue Ignored lfoot lhead listoffiles Ignored makeglossary Ignored makeindex Ignored makelabels Ignored markboth Ignored markright Ignored newcommand newcounter newenvironment newif newlength newtheorem nobreakspace nofiles Ignored oddsidemargin pagenumbering Ignored pagestyle parindent parskip providecommand raggedbottom renewcommand renewenvironment renewtheorem Ignored resizebox resizebox* rfoot rhead setcounter setlength signature textheight textwidth theendnotes thepage thispagestyle Ignored topmargin usepackage verbositylevel voffset  File: latex2rtf.info, Node: Letter Commands, Next: Language Commands, Prev: Preamble Commands, Up: LaTeX Commands 8.6.3 Letter Commands --------------------- Found in `LetterCommands[]' in commands.c. address cc closing encl opening ps signature  File: latex2rtf.info, Node: Language Commands, Next: Citation Commands, Prev: Letter Commands, Up: LaTeX Commands 8.6.4 Language Commands ----------------------- * Menu: * German Commands:: * Czech Commands:: * French Commands:: * Russian Commands::  File: latex2rtf.info, Node: German Commands, Next: Czech Commands, Prev: Language Commands, Up: Language Commands 8.6.4.1 German Commands ....................... Found in `GermanModeCommands[]' in commands.c. ck glqq glq grq grqq  File: latex2rtf.info, Node: Czech Commands, Next: French Commands, Prev: German Commands, Up: Language Commands 8.6.4.2 Czech Commands ...................... uv  File: latex2rtf.info, Node: French Commands, Next: Russian Commands, Prev: Czech Commands, Up: Language Commands 8.6.4.3 French Commands ....................... deuxpoints dittomark FCS fg fup ieme iemes ier iere ieres iers inferieura LCS lq lqq numero Numero numeros Numeros og pointexclamation pointinterrogation pointvirgule primo quarto rq rqq secundo superieura tertio up  File: latex2rtf.info, Node: Russian Commands, Prev: French Commands, Up: Language Commands 8.6.4.4 Russian Commands ........................ CYRA cyra CYRB cyrb CYRC cyrc CYRCH cyrch CYRCHSH cyrchsh CYRD cyrd CYRE cyre CYREREV cyrerev CYRERY cyrery CYRF cyrf CYRG cyrg CYRH cyrh CYRHRDSN cyrhrdsn CYRI cyri CYRISHRT cyrishrt CYRK cyrk CYRL cyrl CYRM cyrm CYRN cyrn CYRO cyro CYRP cyrp CYRR cyrr CYRS cyrs CYRSFTSN cyrsftsn CYRSH cyrsh CYRT cyrt CYRU cyru CYRV cyrv CYRYA cyrya CYRYU cyryu CYRZ cyrz CYRZH cyrzh  File: latex2rtf.info, Node: Citation Commands, Next: Acronym Commands, Prev: Language Commands, Up: LaTeX Commands 8.6.5 Citation Commands ----------------------- * Menu: * Apacite Commands:: * AuthorDate Commands:: * Harvard Commands:: * HyperLatex Commands:: * Natbib Commands::  File: latex2rtf.info, Node: Apacite Commands, Next: AuthorDate Commands, Prev: Citation Commands, Up: Citation Commands 8.6.5.1 Apacite Commands ........................ AX BAnd BBA BBAA BBAB BBAY BBC BBCP BBCQ BBN BBOP BBOQ BCAY BCBL BCBT BCHAIR BCHAIRS BCnt BCntIP BED BEd BEDS Bem BIP BMTh BNUM BNUMS BOthers BOWP BPG BPGS BPhD BREPR BTR BTRANS BTRANSS BUMTh BUPhD BVOL BVOLS citeA citeauthor citeNP citeyear citeyearNP fullcite fullciteA fullciteauthor fullciteNP shortcite shortciteA shortciteauthor shortciteNP  File: latex2rtf.info, Node: AuthorDate Commands, Next: Harvard Commands, Prev: Apacite Commands, Up: Citation Commands 8.6.5.2 AuthorDate Commands ........................... citename shortcite  File: latex2rtf.info, Node: Harvard Commands, Next: HyperLatex Commands, Prev: AuthorDate Commands, Up: Citation Commands 8.6.5.3 Harvard Commands ........................ cite citeaffixed citeasnoun citename citeyear citeyear* harvardand harvarditem harvardyearleft harvardyearright possessivecite  File: latex2rtf.info, Node: HyperLatex Commands, Next: Natbib Commands, Prev: Harvard Commands, Up: Citation Commands 8.6.5.4 HyperLatex Commands ........................... Cite link Pageref Ref S xlink  File: latex2rtf.info, Node: Natbib Commands, Prev: HyperLatex Commands, Up: Citation Commands 8.6.5.5 Apacite Commands ........................ bibpunct cite citealp Citealp citealp* citealt Citealt citealt* citeauthor Citeauthor citeauthor* citep Citep citep* citet Citet citet* citetext citeyear citeyearpar  File: latex2rtf.info, Node: Acronym Commands, Next: Other Commands, Prev: Citation Commands, Up: LaTeX Commands 8.6.6 Acronym Commands ---------------------- usepackage [options] {acronym} ac acfi acro acrodef acrodefplural acused  File: latex2rtf.info, Node: Other Commands, Next: Environments, Prev: Acronym Commands, Up: LaTeX Commands 8.6.7 Other Commands -------------------- Other Commands: item caption center  File: latex2rtf.info, Node: Environments, Prev: Other Commands, Up: LaTeX Commands 8.6.8 Environments ------------------ Environments processed - found in `params[]' in commands.c. abstract acknowledgments align align* alltt array bf bfseries center comment compactenum compactitem description displaymath document em enumerate eqnarray eqnarray* equation equation* figure figure* flushleft flushright htmlonly Ignored it itemize itshape landscape latexonly Ignored letter list longtable longtable* math mdseries minipage multicolumn music picture quotation quote rawhtml Ignored rm rmfamily sc scshape sf sffamily sl sloppypar slshape small tabbing table table* tabular tabular* thebibliography theindex Ignored titlepage tt ttfamily verbatim Verbatim verse  File: latex2rtf.info, Node: Function Index, Next: Concept Index, Prev: LaTeX2RTF under Development, Up: Top 9 Function Index **************** [index] * Menu: * \: Special Characters. (line 8) * abstract <1>: Uncategorized. (line 8) * abstract: Environments. (line 8) * ac: Acronym Commands. (line 8) * acfi: Acronym Commands. (line 10) * acknowledgments: Environments. (line 10) * acro: Acronym Commands. (line 12) * acrodef: Acronym Commands. (line 14) * acrodefplural: Acronym Commands. (line 16) * acused: Acronym Commands. (line 18) * acute: Special Characters. (line 10) * addcontents: Uncategorized. (line 10) * addcontentsline: Uncategorized. (line 13) * address: Letter Commands. (line 8) * addtocounter: Preamble Commands. (line 9) * addtolength: Preamble Commands. (line 11) * addvspace: Uncategorized. (line 16) * aleph: Uncategorized. (line 19) * align: Environments. (line 12) * align*: Environments. (line 14) * alltt: Environments. (line 16) * Alph: Uncategorized. (line 21) * alph: Uncategorized. (line 23) * alpha: Uncategorized. (line 26) * Alpha: Uncategorized. (line 28) * amalg: Uncategorized. (line 31) * AmSLaTeX: Logos. (line 8) * AmSTeX: Logos. (line 10) * and: Uncategorized. (line 33) * angle: Uncategorized. (line 35) * appendix: Uncategorized. (line 37) * approx: Uncategorized. (line 40) * arabic: Uncategorized. (line 42) * array: Environments. (line 18) * ast: Uncategorized. (line 45) * author: Uncategorized. (line 47) * AX: Apacite Commands. (line 6) * b: Special Characters. (line 12) * BAnd: Apacite Commands. (line 8) * bar: Special Characters. (line 14) * baselineskip <1>: Preamble Commands. (line 13) * baselineskip: Uncategorized. (line 49) * BBA: Apacite Commands. (line 10) * BBAA: Apacite Commands. (line 12) * BBAB: Apacite Commands. (line 14) * BBAY: Apacite Commands. (line 16) * BBC: Apacite Commands. (line 18) * BBCP: Apacite Commands. (line 20) * BBCQ: Apacite Commands. (line 22) * BBN: Apacite Commands. (line 24) * BBOP: Apacite Commands. (line 26) * BBOQ: Apacite Commands. (line 28) * BCAY: Apacite Commands. (line 30) * BCBL: Apacite Commands. (line 32) * BCBT: Apacite Commands. (line 34) * BCHAIR: Apacite Commands. (line 36) * BCHAIRS: Apacite Commands. (line 38) * BCnt: Apacite Commands. (line 40) * BCntIP: Apacite Commands. (line 42) * because: Uncategorized. (line 51) * BEd: Apacite Commands. (line 46) * BED: Apacite Commands. (line 44) * BEDS: Apacite Commands. (line 48) * begin: Basic Commands. (line 8) * Bem: Apacite Commands. (line 50) * beta: Uncategorized. (line 53) * Beta: Uncategorized. (line 55) * bf <1>: Environments. (line 20) * bf: Font Commands. (line 8) * bfseries <1>: Environments. (line 22) * bfseries: Font Commands. (line 10) * bibentry: Uncategorized. (line 57) * bibitem: Uncategorized. (line 59) * bibliography: Uncategorized. (line 61) * bibliographystyle: Uncategorized. (line 65) * bibpunct: Natbib Commands. (line 6) * BibTeX: Logos. (line 12) * bigskip: Uncategorized. (line 68) * BIP: Apacite Commands. (line 52) * BMTh: Apacite Commands. (line 54) * BNUM: Apacite Commands. (line 56) * BNUMS: Apacite Commands. (line 58) * bot: Uncategorized. (line 70) * BOthers: Apacite Commands. (line 60) * BOWP: Apacite Commands. (line 62) * BoxedEPSF: Uncategorized. (line 72) * BPG: Apacite Commands. (line 64) * BPGS: Apacite Commands. (line 66) * BPhD: Apacite Commands. (line 68) * BREPR: Apacite Commands. (line 70) * breve: Special Characters. (line 16) * BTR: Apacite Commands. (line 72) * BTRANS: Apacite Commands. (line 74) * BTRANSS: Apacite Commands. (line 76) * bullet: Uncategorized. (line 74) * BUMTh: Apacite Commands. (line 78) * BUPhD: Apacite Commands. (line 80) * BVOL: Apacite Commands. (line 82) * BVOLS: Apacite Commands. (line 84) * c: Special Characters. (line 18) * cal: Font Commands. (line 12) * cap: Uncategorized. (line 76) * caption: Uncategorized. (line 78) * cc: Letter Commands. (line 10) * cdot: Uncategorized. (line 80) * cdots: Uncategorized. (line 82) * celsius: Preamble Commands. (line 15) * center: Environments. (line 24) * centering: Uncategorized. (line 84) * centerline: Basic Commands. (line 10) * cfoot: Preamble Commands. (line 17) * chapter: Sectioning Commands. (line 6) * chapter*: Sectioning Commands. (line 8) * char: Uncategorized. (line 86) * chead: Preamble Commands. (line 19) * check: Special Characters. (line 20) * Chi: Uncategorized. (line 90) * chi: Uncategorized. (line 88) * circ: Uncategorized. (line 92) * cite: Natbib Commands. (line 8) * Cite: HyperLatex Commands. (line 6) * cite <1>: Uncategorized. (line 94) * cite: Harvard Commands. (line 6) * citeA: Apacite Commands. (line 86) * citeaffixed: Harvard Commands. (line 8) * Citealp: Natbib Commands. (line 12) * citealp: Natbib Commands. (line 10) * citealp*: Natbib Commands. (line 14) * Citealt: Natbib Commands. (line 18) * citealt: Natbib Commands. (line 16) * citealt*: Natbib Commands. (line 20) * citeasnoun: Harvard Commands. (line 10) * citeauthor: Natbib Commands. (line 22) * Citeauthor: Natbib Commands. (line 24) * citeauthor: Apacite Commands. (line 88) * citeauthor*: Natbib Commands. (line 26) * citename <1>: Harvard Commands. (line 12) * citename: AuthorDate Commands. (line 6) * citeNP: Apacite Commands. (line 90) * citeonline: Uncategorized. (line 96) * citep: Natbib Commands. (line 28) * Citep: Natbib Commands. (line 30) * citep*: Natbib Commands. (line 32) * Citet: Natbib Commands. (line 36) * citet: Natbib Commands. (line 34) * citet*: Natbib Commands. (line 38) * citetext: Natbib Commands. (line 40) * citeyear <1>: Apacite Commands. (line 92) * citeyear <2>: Harvard Commands. (line 14) * citeyear: Natbib Commands. (line 42) * citeyear*: Harvard Commands. (line 16) * citeyearNP: Apacite Commands. (line 94) * citeyearpar: Natbib Commands. (line 44) * ck: German Commands. (line 8) * cleardoublepage: Uncategorized. (line 98) * clearpage: Uncategorized. (line 100) * cline: Preamble Commands. (line 21) * closing: Letter Commands. (line 12) * clubsuit: Uncategorized. (line 102) * comment: Environments. (line 26) * compactenum: Environments. (line 28) * compactitem: Environments. (line 30) * cong: Uncategorized. (line 104) * contentsline: Uncategorized. (line 106) * coprod: Uncategorized. (line 108) * cup: Uncategorized. (line 110) * CYRA: Russian Commands. (line 6) * cyra: Russian Commands. (line 8) * CYRB: Russian Commands. (line 10) * cyrb: Russian Commands. (line 12) * cyrc: Russian Commands. (line 16) * CYRC: Russian Commands. (line 14) * CYRCH: Russian Commands. (line 18) * cyrch: Russian Commands. (line 20) * CYRCHSH: Russian Commands. (line 22) * cyrchsh: Russian Commands. (line 24) * cyrd: Russian Commands. (line 28) * CYRD: Russian Commands. (line 26) * CYRE: Russian Commands. (line 30) * cyre: Russian Commands. (line 32) * CYREREV: Russian Commands. (line 34) * cyrerev: Russian Commands. (line 36) * CYRERY: Russian Commands. (line 38) * cyrery: Russian Commands. (line 40) * CYRF: Russian Commands. (line 42) * cyrf: Russian Commands. (line 44) * CYRG: Russian Commands. (line 46) * cyrg: Russian Commands. (line 48) * CYRH: Russian Commands. (line 50) * cyrh: Russian Commands. (line 52) * CYRHRDSN: Russian Commands. (line 54) * cyrhrdsn: Russian Commands. (line 56) * cyri: Russian Commands. (line 60) * CYRI: Russian Commands. (line 58) * CYRISHRT: Russian Commands. (line 62) * cyrishrt: Russian Commands. (line 64) * cyrk: Russian Commands. (line 68) * CYRK: Russian Commands. (line 66) * cyrl: Russian Commands. (line 72) * CYRL: Russian Commands. (line 70) * cyrm: Russian Commands. (line 76) * CYRM: Russian Commands. (line 74) * cyrn: Russian Commands. (line 80) * CYRN: Russian Commands. (line 78) * CYRO: Russian Commands. (line 82) * cyro: Russian Commands. (line 84) * CYRP: Russian Commands. (line 86) * cyrp: Russian Commands. (line 88) * cyrr: Russian Commands. (line 92) * CYRR: Russian Commands. (line 90) * CYRS: Russian Commands. (line 94) * cyrs: Russian Commands. (line 96) * CYRSFTSN: Russian Commands. (line 98) * cyrsftsn: Russian Commands. (line 100) * CYRSH: Russian Commands. (line 102) * cyrsh: Russian Commands. (line 104) * CYRT: Russian Commands. (line 106) * cyrt: Russian Commands. (line 108) * CYRU: Russian Commands. (line 110) * cyru: Russian Commands. (line 112) * CYRV: Russian Commands. (line 114) * cyrv: Russian Commands. (line 116) * CYRYA: Russian Commands. (line 118) * cyrya: Russian Commands. (line 120) * CYRYU: Russian Commands. (line 122) * cyryu: Russian Commands. (line 124) * CYRZ: Russian Commands. (line 126) * cyrz: Russian Commands. (line 128) * cyrzh: Russian Commands. (line 132) * CYRZH: Russian Commands. (line 130) * d: Special Characters. (line 22) * date: Uncategorized. (line 112) * ddot: Special Characters. (line 24) * ddots: Uncategorized. (line 114) * DeclareRobustCommand: Preamble Commands. (line 23) * DeclareRobustCommand*: Preamble Commands. (line 25) * def: Preamble Commands. (line 27) * degreecelsius: Preamble Commands. (line 29) * Delta: Uncategorized. (line 118) * delta: Uncategorized. (line 116) * description: Environments. (line 32) * deuxpoints: French Commands. (line 6) * dfrac: Uncategorized. (line 120) * Diamond: Uncategorized. (line 122) * diamondsuit: Uncategorized. (line 124) * displaymath: Environments. (line 34) * dittomark: French Commands. (line 8) * div: Uncategorized. (line 126) * document: Environments. (line 36) * documentclass: Preamble Commands. (line 31) * documentstyle: Preamble Commands. (line 33) * dot: Special Characters. (line 26) * doteq: Uncategorized. (line 128) * dotfill: Uncategorized. (line 130) * dots: Uncategorized. (line 136) * doublespacing: Preamble Commands. (line 35) * downarrow: Uncategorized. (line 138) * Downarrow: Uncategorized. (line 140) * efloatseparator: Uncategorized. (line 142) * ell: Uncategorized. (line 144) * em <1>: Environments. (line 38) * em: Font Commands. (line 14) * emph: Font Commands. (line 16) * emptyset: Uncategorized. (line 146) * encl: Letter Commands. (line 14) * end: Basic Commands. (line 12) * endinput: Uncategorized. (line 148) * endnote: Basic Commands. (line 14) * endnotemark: Uncategorized. (line 150) * endnotetext: Preamble Commands. (line 39) * enotesize: Font Commands. (line 18) * ensuremath: Uncategorized. (line 153) * enumerate: Environments. (line 40) * epsfbox: Uncategorized. (line 155) * epsffile: Uncategorized. (line 157) * epsilon: Uncategorized. (line 159) * eqnarray: Environments. (line 42) * eqnarray*: Environments. (line 44) * eqref: Uncategorized. (line 161) * equation: Environments. (line 46) * equation*: Environments. (line 48) * equiv: Uncategorized. (line 163) * eta: Uncategorized. (line 165) * EUR: Preamble Commands. (line 41) * euro: Preamble Commands. (line 43) * evensidemargin: Preamble Commands. (line 45) * exists: Uncategorized. (line 167) * fancyfoot: Preamble Commands. (line 47) * fancyhead: Preamble Commands. (line 49) * fbox: Uncategorized. (line 171) * FCS: French Commands. (line 10) * fg: French Commands. (line 12) * figure: Environments. (line 50) * figure*: Environments. (line 52) * flushbottom: Preamble Commands. (line 51) * flushleft: Environments. (line 54) * flushright: Environments. (line 56) * fnsymbol: Uncategorized. (line 173) * footnote: Basic Commands. (line 16) * footnotemark: Uncategorized. (line 176) * footnotesize: Font Commands. (line 20) * footnotetext: Preamble Commands. (line 53) * forall: Uncategorized. (line 179) * frac: Uncategorized. (line 181) * Frac: Uncategorized. (line 183) * framebox: Uncategorized. (line 185) * frenchspacing: Uncategorized. (line 188) * fullcite: Apacite Commands. (line 96) * fullciteA: Apacite Commands. (line 98) * fullciteauthor: Apacite Commands. (line 100) * fullciteNP: Apacite Commands. (line 102) * fup: French Commands. (line 14) * gamma: Uncategorized. (line 191) * Gamma: Uncategorized. (line 193) * ge: Uncategorized. (line 195) * geometry: Preamble Commands. (line 55) * geq: Uncategorized. (line 197) * gg: Uncategorized. (line 199) * glossary: Uncategorized. (line 201) * glossaryentry: Uncategorized. (line 204) * glq: German Commands. (line 12) * glqq: German Commands. (line 10) * grave: Special Characters. (line 28) * grq: German Commands. (line 14) * grqq: German Commands. (line 16) * H: Special Characters. (line 30) * harvardand: Harvard Commands. (line 18) * harvarditem: Harvard Commands. (line 20) * harvardyearleft: Harvard Commands. (line 22) * harvardyearright: Harvard Commands. (line 24) * hat: Special Characters. (line 32) * hbar: Uncategorized. (line 207) * hbox: Uncategorized. (line 209) * headheight: Preamble Commands. (line 60) * headsep: Preamble Commands. (line 62) * heartsuit: Uncategorized. (line 211) * hline: Preamble Commands. (line 64) * hoffset: Preamble Commands. (line 66) * hsize: Uncategorized. (line 213) * hslash: Uncategorized. (line 215) * hspace: Uncategorized. (line 217) * hspace*: Uncategorized. (line 220) * htmladdnormallink <1>: Uncategorized. (line 223) * htmladdnormallink: Preamble Commands. (line 68) * htmlonly: Environments. (line 58) * htmlref <1>: Preamble Commands. (line 70) * htmlref: Uncategorized. (line 225) * huge: Font Commands. (line 26) * HUGE: Font Commands. (line 22) * Huge: Font Commands. (line 24) * hyphenation: Preamble Commands. (line 72) * i: Special Characters. (line 34) * ieme: French Commands. (line 16) * iemes: French Commands. (line 18) * ier: French Commands. (line 20) * iere: French Commands. (line 22) * ieres: French Commands. (line 24) * iers: French Commands. (line 26) * iflatextortf: Preamble Commands. (line 74) * ifx: Preamble Commands. (line 76) * iiint: Uncategorized. (line 227) * iint: Uncategorized. (line 229) * Im: Uncategorized. (line 231) * in: Uncategorized. (line 233) * include <1>: Preamble Commands. (line 78) * include: Uncategorized. (line 235) * includegraphics: Uncategorized. (line 237) * includegraphics*: Uncategorized. (line 239) * includeonly: Uncategorized. (line 241) * indent: Uncategorized. (line 244) * index: Uncategorized. (line 246) * indexentry: Uncategorized. (line 248) * inferieura: French Commands. (line 28) * infty: Uncategorized. (line 251) * input <1>: Preamble Commands. (line 80) * input: Uncategorized. (line 253) * int: Uncategorized. (line 257) * iota: Uncategorized. (line 259) * it <1>: Font Commands. (line 28) * it: Environments. (line 61) * itemize: Environments. (line 63) * itshape <1>: Environments. (line 65) * itshape: Font Commands. (line 30) * j: Special Characters. (line 36) * kappa: Uncategorized. (line 261) * kern: Logos. (line 14) * l: Special Characters. (line 38) * L: Special Characters. (line 40) * label: Uncategorized. (line 263) * Lambda: Uncategorized. (line 267) * lambda: Uncategorized. (line 265) * land: Uncategorized. (line 269) * landscape: Environments. (line 67) * langle: Uncategorized. (line 271) * Large: Font Commands. (line 34) * LARGE: Font Commands. (line 32) * large: Font Commands. (line 36) * LaTeX: Logos. (line 16) * latex: Logos. (line 18) * LaTeXe: Logos. (line 20) * latexonly: Environments. (line 69) * latextortffalse: Preamble Commands. (line 82) * latextortftrue: Preamble Commands. (line 85) * lceil: Uncategorized. (line 273) * LCS: French Commands. (line 30) * ldots: Uncategorized. (line 275) * le: Uncategorized. (line 277) * left: Uncategorized. (line 279) * leftarrow: Uncategorized. (line 281) * Leftarrow: Uncategorized. (line 283) * leftharpoondown: Uncategorized. (line 285) * leftleftarrows: Uncategorized. (line 287) * leftrightarrow: Uncategorized. (line 289) * Leftrightarrow: Uncategorized. (line 291) * leftrightarrows: Uncategorized. (line 293) * leq: Uncategorized. (line 295) * let: Uncategorized. (line 297) * letter: Environments. (line 72) * letterspace: Uncategorized. (line 300) * lfloor: Uncategorized. (line 302) * lfoot: Preamble Commands. (line 88) * lhead: Preamble Commands. (line 90) * lim: Uncategorized. (line 304) * liminf: Uncategorized. (line 306) * limsup: Uncategorized. (line 308) * linebreak: Uncategorized. (line 310) * lineskip: Uncategorized. (line 313) * link: HyperLatex Commands. (line 8) * list: Environments. (line 74) * listoffigures: Uncategorized. (line 315) * listoffiles: Preamble Commands. (line 92) * listoftables: Uncategorized. (line 317) * ll: Uncategorized. (line 319) * longleftarrow: Uncategorized. (line 321) * longleftrightarrows: Uncategorized. (line 323) * longrightarrow: Uncategorized. (line 325) * longtable: Environments. (line 76) * longtable*: Environments. (line 78) * lor: Uncategorized. (line 327) * lower: Logos. (line 22) * lq: French Commands. (line 32) * lqq: French Commands. (line 34) * LyX: Logos. (line 24) * makebox: Uncategorized. (line 329) * makeglossary: Preamble Commands. (line 95) * makeindex: Preamble Commands. (line 98) * makelabels: Preamble Commands. (line 101) * maketitle: Uncategorized. (line 332) * mapsto: Uncategorized. (line 334) * marginpar: Uncategorized. (line 336) * markboth <1>: Uncategorized. (line 339) * markboth: Preamble Commands. (line 104) * markright <1>: Preamble Commands. (line 107) * markright: Uncategorized. (line 342) * math: Environments. (line 80) * mathbf: Font Commands. (line 38) * mathcal: Font Commands. (line 40) * mathit: Font Commands. (line 42) * mathmd: Font Commands. (line 44) * mathnormal: Font Commands. (line 46) * mathrm: Font Commands. (line 48) * mathsc: Font Commands. (line 50) * mathsf: Font Commands. (line 52) * mathsl: Font Commands. (line 54) * mathtt: Font Commands. (line 56) * mathup: Font Commands. (line 58) * matrix: Uncategorized. (line 345) * mbox: Uncategorized. (line 347) * mdseries <1>: Font Commands. (line 60) * mdseries: Environments. (line 82) * measuredangle: Uncategorized. (line 349) * medskip: Uncategorized. (line 351) * mho: Uncategorized. (line 353) * minipage: Environments. (line 84) * mit: Font Commands. (line 62) * moveleft: Uncategorized. (line 355) * moveright: Uncategorized. (line 357) * mp: Uncategorized. (line 359) * mu: Uncategorized. (line 361) * multicolumn <1>: Uncategorized. (line 363) * multicolumn: Environments. (line 86) * music: Environments. (line 88) * nabla: Uncategorized. (line 365) * ne: Uncategorized. (line 367) * nearrow: Uncategorized. (line 369) * neg: Uncategorized. (line 371) * neq: Uncategorized. (line 373) * newblock: Uncategorized. (line 375) * newcommand: Preamble Commands. (line 110) * newcount: Uncategorized. (line 377) * newcounter: Preamble Commands. (line 112) * newenvironment: Preamble Commands. (line 114) * newfont: Uncategorized. (line 380) * newif: Preamble Commands. (line 116) * newlength: Preamble Commands. (line 118) * newpage: Uncategorized. (line 383) * newsavebox: Uncategorized. (line 385) * newtheorem: Preamble Commands. (line 120) * nobibliography: Uncategorized. (line 388) * nobreakspace <1>: Preamble Commands. (line 122) * nobreakspace: Uncategorized. (line 391) * nocite: Uncategorized. (line 393) * nofiles: Preamble Commands. (line 124) * noindent: Uncategorized. (line 395) * nolinebreak: Uncategorized. (line 397) * nonfrenchspacing: Uncategorized. (line 400) * nonumber: Uncategorized. (line 403) * nopagebreak: Uncategorized. (line 405) * normalfont: Font Commands. (line 64) * normalsize: Font Commands. (line 66) * notag: Uncategorized. (line 408) * nu: Uncategorized. (line 410) * numberline: Uncategorized. (line 412) * Numero: French Commands. (line 38) * numero: French Commands. (line 36) * Numeros: French Commands. (line 42) * numeros: French Commands. (line 40) * nwarrow: Uncategorized. (line 414) * oddsidemargin: Preamble Commands. (line 127) * og: French Commands. (line 44) * Omega: Uncategorized. (line 418) * omega: Uncategorized. (line 416) * omicron: Uncategorized. (line 420) * onecolumn: Uncategorized. (line 422) * onlinecite: Uncategorized. (line 424) * opening: Letter Commands. (line 16) * oplus: Uncategorized. (line 426) * oslash: Uncategorized. (line 428) * otimes: Uncategorized. (line 430) * output: Uncategorized. (line 432) * overline: Uncategorized. (line 435) * pagebreak: Uncategorized. (line 437) * pagenumbering <1>: Uncategorized. (line 439) * pagenumbering: Preamble Commands. (line 129) * pageref: Uncategorized. (line 442) * Pageref: HyperLatex Commands. (line 10) * pagestyle <1>: Preamble Commands. (line 132) * pagestyle: Uncategorized. (line 444) * par: Uncategorized. (line 447) * paragraph: Sectioning Commands. (line 10) * paragraph*: Sectioning Commands. (line 12) * parbox: Uncategorized. (line 449) * parindent: Preamble Commands. (line 134) * parskip: Preamble Commands. (line 136) * part: Sectioning Commands. (line 14) * part*: Sectioning Commands. (line 16) * partial: Uncategorized. (line 451) * perp: Uncategorized. (line 453) * phi: Uncategorized. (line 455) * Phi: Uncategorized. (line 457) * pi: Uncategorized. (line 459) * Pi: Uncategorized. (line 461) * picture: Environments. (line 90) * pm: Uncategorized. (line 463) * pointexclamation: French Commands. (line 46) * pointinterrogation: French Commands. (line 48) * pointvirgule: French Commands. (line 50) * possessivecite: Harvard Commands. (line 26) * prec: Uncategorized. (line 465) * primo: French Commands. (line 52) * printindex: Uncategorized. (line 467) * prod: Uncategorized. (line 469) * propto: Uncategorized. (line 473) * protect: Uncategorized. (line 475) * providecommand: Preamble Commands. (line 138) * ps: Letter Commands. (line 18) * psfig: Uncategorized. (line 478) * psfrag: Uncategorized. (line 480) * Psi: Uncategorized. (line 485) * psi: Uncategorized. (line 483) * qquad: Uncategorized. (line 487) * quad: Uncategorized. (line 489) * quarto: French Commands. (line 54) * quotation: Environments. (line 92) * quote: Environments. (line 94) * r: Special Characters. (line 42) * raggedbottom: Preamble Commands. (line 140) * raggedright: Basic Commands. (line 18) * raisebox: Uncategorized. (line 491) * rangle: Uncategorized. (line 494) * rawhtml: Environments. (line 96) * rceil: Uncategorized. (line 496) * Re: Uncategorized. (line 498) * Ref: HyperLatex Commands. (line 12) * ref: Uncategorized. (line 500) * refstepcounter: Uncategorized. (line 502) * renewcommand: Preamble Commands. (line 142) * renewenvironment: Preamble Commands. (line 144) * renewtheorem: Preamble Commands. (line 146) * resizebox: Preamble Commands. (line 149) * resizebox*: Preamble Commands. (line 151) * rfloor: Uncategorized. (line 504) * rfoot: Preamble Commands. (line 153) * rhead: Preamble Commands. (line 155) * rho: Uncategorized. (line 506) * right: Uncategorized. (line 508) * Rightarrow: Uncategorized. (line 510) * rightarrow: Uncategorized. (line 512) * rightharpoonup: Uncategorized. (line 514) * rightleftarrows: Uncategorized. (line 516) * rightleftharpoons: Uncategorized. (line 518) * rightrightarrows: Uncategorized. (line 520) * rm <1>: Environments. (line 99) * rm: Font Commands. (line 68) * rmfamily <1>: Environments. (line 101) * rmfamily: Font Commands. (line 70) * roman: Uncategorized. (line 525) * Roman: Uncategorized. (line 522) * rq: French Commands. (line 56) * rqq: French Commands. (line 58) * rule: Uncategorized. (line 528) * S: HyperLatex Commands. (line 14) * samepage: Uncategorized. (line 530) * savebox: Uncategorized. (line 533) * sbox: Uncategorized. (line 536) * sc <1>: Environments. (line 103) * sc: Font Commands. (line 72) * scfamily: Font Commands. (line 74) * scriptsize: Font Commands. (line 76) * scshape <1>: Environments. (line 105) * scshape: Font Commands. (line 78) * searrow: Uncategorized. (line 539) * section: Sectioning Commands. (line 18) * section*: Sectioning Commands. (line 20) * secundo: French Commands. (line 60) * setbox: Uncategorized. (line 541) * setcounter: Preamble Commands. (line 157) * setlength: Preamble Commands. (line 159) * settowidth: Uncategorized. (line 543) * sf <1>: Environments. (line 107) * sf: Font Commands. (line 80) * sffamily <1>: Environments. (line 109) * sffamily: Font Commands. (line 82) * shortcite <1>: Apacite Commands. (line 104) * shortcite: AuthorDate Commands. (line 8) * shortciteA: Apacite Commands. (line 106) * shortciteauthor: Apacite Commands. (line 108) * shortciteNP: Apacite Commands. (line 110) * Sigma: Uncategorized. (line 548) * sigma: Uncategorized. (line 546) * signature <1>: Preamble Commands. (line 161) * signature: Letter Commands. (line 20) * sim: Uncategorized. (line 550) * simeq: Uncategorized. (line 552) * sl <1>: Environments. (line 111) * sl: Font Commands. (line 84) * SLiTeX: Logos. (line 26) * sloppypar: Environments. (line 113) * slshape <1>: Environments. (line 115) * slshape: Font Commands. (line 86) * small <1>: Environments. (line 117) * small: Font Commands. (line 88) * smallskip: Uncategorized. (line 554) * spadesuit: Uncategorized. (line 556) * sqrt: Uncategorized. (line 558) * ssmall: Font Commands. (line 90) * stackrel: Uncategorized. (line 560) * stepcounter: Uncategorized. (line 562) * stretch: Uncategorized. (line 565) * subparagraph: Sectioning Commands. (line 22) * subparagraph*: Sectioning Commands. (line 24) * subsection: Sectioning Commands. (line 26) * subsection*: Sectioning Commands. (line 28) * subset: Uncategorized. (line 568) * subseteq: Uncategorized. (line 570) * subsubsection: Sectioning Commands. (line 30) * subsubsection*: Sectioning Commands. (line 32) * succ: Uncategorized. (line 572) * sum: Uncategorized. (line 574) * superieura: French Commands. (line 62) * supset: Uncategorized. (line 578) * supseteq: Uncategorized. (line 580) * surd: Uncategorized. (line 582) * swarrow: Uncategorized. (line 584) * tabbing: Environments. (line 119) * table: Environments. (line 121) * table*: Environments. (line 123) * tableofcontents: Uncategorized. (line 586) * tabular: Environments. (line 125) * tabular*: Environments. (line 127) * tau: Uncategorized. (line 588) * tertio: French Commands. (line 64) * TeX: Logos. (line 28) * textalpha: Uncategorized. (line 590) * textbeta: Uncategorized. (line 592) * textbf: Font Commands. (line 92) * textbullet: Uncategorized. (line 594) * textchi: Uncategorized. (line 596) * textcolor: Uncategorized. (line 598) * textDelta: Uncategorized. (line 600) * textdelta: Uncategorized. (line 602) * textellipsis: Uncategorized. (line 604) * textepsilon: Uncategorized. (line 606) * texteta: Uncategorized. (line 608) * textfont: Font Commands. (line 94) * textGamma: Uncategorized. (line 610) * textgamma: Uncategorized. (line 612) * textheight: Preamble Commands. (line 163) * textiota: Uncategorized. (line 614) * textit: Font Commands. (line 96) * textkappa: Uncategorized. (line 616) * textLambda: Uncategorized. (line 618) * textlambda: Uncategorized. (line 620) * textmd: Font Commands. (line 98) * textmu: Uncategorized. (line 622) * textnormal: Font Commands. (line 100) * textnu: Uncategorized. (line 624) * textomega: Uncategorized. (line 628) * textOmega: Uncategorized. (line 626) * textperiodcentered: Uncategorized. (line 630) * textphi: Uncategorized. (line 634) * textPhi: Uncategorized. (line 632) * textPi: Uncategorized. (line 636) * textpi: Uncategorized. (line 638) * textPsi: Uncategorized. (line 640) * textpsi: Uncategorized. (line 642) * textrm: Font Commands. (line 102) * textsc: Font Commands. (line 104) * textsf: Font Commands. (line 106) * textsigma: Uncategorized. (line 646) * textSigma: Uncategorized. (line 644) * textsl: Font Commands. (line 108) * textsubscript: Uncategorized. (line 648) * textsuperscript: Uncategorized. (line 650) * textTau: Uncategorized. (line 652) * texttau: Uncategorized. (line 654) * texttheta: Uncategorized. (line 658) * textTheta: Uncategorized. (line 656) * texttt: Font Commands. (line 110) * textup: Font Commands. (line 112) * textwidth: Preamble Commands. (line 165) * textxi: Uncategorized. (line 662) * textXi: Uncategorized. (line 660) * textzeta: Uncategorized. (line 664) * thanks: Uncategorized. (line 666) * the: Basic Commands. (line 20) * thebibliography: Environments. (line 129) * theendnotes: Preamble Commands. (line 167) * theindex: Environments. (line 131) * thepage: Preamble Commands. (line 169) * therefore: Uncategorized. (line 668) * Theta: Uncategorized. (line 670) * theta: Uncategorized. (line 672) * thispagestyle: Preamble Commands. (line 171) * tikzpicture: Uncategorized. (line 674) * tilde: Special Characters. (line 44) * times: Uncategorized. (line 676) * tiny: Font Commands. (line 114) * title: Uncategorized. (line 678) * titlepage: Environments. (line 134) * to: Uncategorized. (line 680) * today: Basic Commands. (line 22) * topmargin: Preamble Commands. (line 174) * triangleleft: Uncategorized. (line 682) * triangleright: Uncategorized. (line 684) * tt <1>: Environments. (line 136) * tt: Font Commands. (line 116) * ttfamily <1>: Environments. (line 138) * ttfamily: Font Commands. (line 118) * twocolumn: Uncategorized. (line 686) * typeaout: Uncategorized. (line 688) * Typein: Uncategorized. (line 691) * typein: Uncategorized. (line 694) * typeout: Uncategorized. (line 697) * u: Special Characters. (line 46) * underbar: Font Commands. (line 120) * underline: Font Commands. (line 122) * up: French Commands. (line 66) * uparrow: Uncategorized. (line 702) * Uparrow: Uncategorized. (line 700) * Updownarrow: Uncategorized. (line 706) * updownarrow: Uncategorized. (line 704) * upshape: Font Commands. (line 124) * Upsilon: Uncategorized. (line 710) * upsilon: Uncategorized. (line 708) * url: Uncategorized. (line 712) * usebox: Uncategorized. (line 714) * usepackage: Preamble Commands. (line 176) * usepackage [options] {acronym}: Acronym Commands. (line 6) * uv: Czech Commands. (line 6) * v: Special Characters. (line 48) * value: Uncategorized. (line 717) * varepsilon: Uncategorized. (line 719) * varnothing: Uncategorized. (line 721) * varphi: Uncategorized. (line 723) * varpi: Uncategorized. (line 725) * varpropto: Uncategorized. (line 727) * varsigma: Uncategorized. (line 729) * vartheta: Uncategorized. (line 731) * vbox: Uncategorized. (line 733) * vcenter: Basic Commands. (line 24) * vdots: Uncategorized. (line 735) * vec: Special Characters. (line 50) * vee: Uncategorized. (line 737) * verb: Uncategorized. (line 739) * verb*: Uncategorized. (line 741) * Verbatim: Environments. (line 142) * verbatim: Environments. (line 140) * verbositylevel: Preamble Commands. (line 178) * verse: Environments. (line 144) * voffset: Preamble Commands. (line 180) * vref: Uncategorized. (line 743) * vsize: Uncategorized. (line 745) * vskip: Uncategorized. (line 747) * vspace: Uncategorized. (line 749) * vspace*: Uncategorized. (line 751) * wedge: Uncategorized. (line 753) * wp: Uncategorized. (line 755) * Xi: Uncategorized. (line 759) * xi: Uncategorized. (line 757) * xlink: HyperLatex Commands. (line 16) * zeta: Uncategorized. (line 761)  File: latex2rtf.info, Node: Concept Index, Prev: Function Index, Up: Top 10 Concept Index **************** [index] * Menu: * %latex2rtf: Conditional Parsing. (line 6) * APA Support: APA Support. (line 6) * apacite: Cross References. (line 29) * apalike: Cross References. (line 29) * apanat1b: Cross References. (line 29) * authordate: Cross References. (line 29) * babel: Language Support. (line 6) * bibliography: Cross References. (line 17) * bibliography, apacite: Cross References. (line 29) * bibliography, apalike: Cross References. (line 29) * bibliography, apanat1b: Cross References. (line 29) * bibliography, authordate: Cross References. (line 29) * bibliography, BibTeX: Cross References. (line 22) * bibliography, harvard: Cross References. (line 29) * bibliography, natbib: Cross References. (line 29) * BibTeX: Cross References. (line 22) * Conditional Parsing: Conditional Parsing. (line 6) * Copyright issues: History. (line 6) * direct.cfg: Input Processing. (line 6) * double spacing: Page Formatting. (line 6) * equations: Equations. (line 6) * footnotes: Cross References. (line 39) * geometry package: Page Formatting. (line 6) * graphics: Graphics. (line 6) * harvard: Cross References. (line 29) * History of the program: History. (line 6) * hyperlatex: Hyperlatex. (line 6) * iflatextortf: Conditional Parsing. (line 6) * ignore.cfg: Input Processing. (line 6) * index: Cross References. (line 41) * input processing: Input Processing. (line 6) * installation: Installation. (line 6) * language support: Language Support. (line 6) * line spacing: Page Formatting. (line 6) * margins: Page Formatting. (line 6) * math: Math and Special Symbols. (line 6) * natbib: Cross References. (line 29) * page formatting: Page Formatting. (line 6) * pagestyles: Pagestyles. (line 6) * RTF sucks: Introduction. (line 53) * setspace package: Page Formatting. (line 6) * special symbols: Math and Special Symbols. (line 6) * tables: Tables. (line 6)  Tag Table: Node: Top118 Node: Introduction2828 Node: Installation5711 Node: General6005 Node: Obtaining LaTeX2RTF6431 Node: UNIX8124 Node: DOS or Windows11600 Node: MS Windows systems13319 Node: Macintosh17652 Node: Problems Compiling18610 Node: Problems with make check19307 Node: Using LaTeX2RTF19832 Node: General Assumptions20035 Node: LaTeX2RTF Options22000 Node: Debugging35418 Node: Features36159 Node: LaTeX2e36606 Node: Unicode Support36924 Node: Input Encoding37606 Node: Language Support38382 Node: Cross References39895 Node: Page Formatting42596 Node: Equations43117 Node: Math and Special Symbols45989 Node: Tables47954 Node: Graphics48562 Node: Pagestyles48983 Node: Hyperlatex49586 Node: APA Support50679 Node: Configuration51121 Node: Input Processing51430 Node: Conditional Parsing52800 Node: Output Formatting54787 Node: Direct Conversion55495 Node: Ignore Command56779 Node: Font Configuration58646 Node: Language Configuration59949 Node: Error Messages and Logging60565 Node: History62851 Node: LaTeX2RTF under Development64635 Node: Unimplemented Features64929 Node: Missing options65718 Node: Known Bugs66299 Node: Reporting Bugs67151 Node: Todo List68787 Node: LaTeX Commands69583 Node: General Commands70541 Node: Basic Commands70969 Node: Font Commands71249 Node: Logos71912 Node: Special Characters72169 Node: Sectioning Commands72475 Node: Uncategorized72815 Node: Preamble Commands76949 Node: Letter Commands78570 Node: Language Commands78832 Node: German Commands79092 Node: Czech Commands79336 Node: French Commands79506 Node: Russian Commands79922 Node: Citation Commands80504 Node: Apacite Commands80795 Node: AuthorDate Commands81373 Node: Harvard Commands81577 Node: HyperLatex Commands81895 Node: Natbib Commands82113 Node: Acronym Commands82450 Node: Other Commands82696 Node: Environments82889 Node: Function Index83743 Node: Concept Index143191  End Tag Table latex2rtf-2.3.18/doc/copying.txt0000777000175000017500000004365513050672354016723 0ustar wilfriedwilfried GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS Appendix: How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) 19yy This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) 19yy name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. latex2rtf-2.3.18/doc/latex2rtf.10000777000175000017500000002011213050672354016466 0ustar wilfriedwilfried.TH LATEX2RTF "1" "October 2012" "latex2rtf 2.3" "User Commands" .SH NAME latex2rtf \- Convert a LaTeX file to an RTF file .SH SYNTAX latex2rtf [-hlpFSVW] [ -d# ] [ -D# ] [ -M# ] [ -se#] [ -sf#] [ -t# ] [ -Z# ] [ -a .I auxfile ] [ -b .I bblfile ] [ -C .I codepage ] [ -i .I language ] [ -o .I outputfile ] [ -P .I /path/to/cfg ] [ -T .I /path/to/tmp ] [ .I inputfile ] .PP .SH DESCRIPTION The .I latex2rtf command converts a LaTeX file into RTF text format. The text and much of the formatting information is translated to RTF. .TP .B \-a auxfile Used to specify a particular cross-referencing file. When this option is omitted, the .I auxfile is assumed to be the same as .I inputfile with the .tex suffix replaced by .aux. .TP .B \-b bblfile Used to specify a particular bibliography file When this option is omitted, the .I bblfile is assumed to be the same as .I inputfile with the .tex suffix replaced by .bbl. .TP .B \-C codepage used to specify the character set (code page) used in the LaTeX document for non-ansi characters. .I codepage may be one of the following: ansinew, applemac, cp437, cp437de, cp850, cp852, cp855, cp865, cp866, decmulti, cp1250, cp1252, koi8-r, koi8-u, latin1, latin2, latin3, latin4, latin5, latin9, maccyr, macukr, next, raw, raw437, raw852, raw1250, raw1251, and raw1253. The default behavior is to use ansinew (same as cp1252). For convenience, just the numbers 437, 437de, 850, 852, 855, 866, 1250 or 1252 may be specified. The raw character set encoding prevents any 8-bit character translation. The RTF file is marked to use the same encoding as the default encoding for the program interpreting the RTF file. This is particularly useful when translating a file written in a language (e.g., czech) that maps poorly into the ansinew (western european) character set. .TP .B \-d# Write extra debugging output to stderr. Higher numbers cause more debugging output and range from 0 (only errors) to 6 (absurdly many messages). The default is 1 (Warnings and Errors only). .TP .B \-D dots_per_inch Used to specify the number of dots per inch in equations that are converted to bitmaps and for graphics that must be converted. Default is 300 dpi. .TP .B \-E# where # selects the type of figure handling desired. RTF does not support insertion of PS, PDF, or EPS file types. These figures must be converted to a bitmap format and then inserted. One trick is to insert the filenames into the RTF file and then in post-processing, insert the file. These options can be added together. .br -E3 insert all figures (DEFAULT) .br -E0 no figures in the RTF .br -E1 insert figures having RTF-supported formats .br -E2 convert and insert unsupported figure formats .br -E4 insert only filenames for supported file formats .br -E8 insert only filenames for unsupported file formats .TP .B \-f use fields -f0 do not use fields in RTF. This is handy when primitive RTF editors are being used to view the RTF output. .br -f1 use fields for equations but not \\ref and \\cite. .br -f2 use fields for \\ref and \\cite but not equations. .br -f3 use fields when possible. This is the default and is most useful when the RTF file is being exported to be used in Word. This retains the most information from the original LaTeX file. .TP .B \-F use LaTeX to create bitmaps for all figures. This may help when figures are not translated properly. .TP .B \-h Print a short usage note .TP .B \-i language used to set the idiom or language used in the LaTeX document .I language may be one of the following afrikaans, bahasa, basque, brazil, breton, catalan, croatian, czech, danish, dutch, english, esperanto, estonian, finnish, french, galician, german, icelandic, irish,italian, latin, lsorbian, magyar, norsk, nynorsk, polish, portuges, romanian, russian, samin, scottish, serbian, slovak, slovene, spanish, swedish, turkish, usorbian, welsh. The default is english. .TP .B \-l Assume LaTeX source uses ISO 8859-1 (Latin-1) special characters (default behavior). .TP .B \-o outputfile Redirect output to .I outputfile Unless an .I outputfile is specified with the -o option, the resulting RTF is produced in a file with .tex replaced by .rtf. .TP .B \-M# where # selects the type of equation conversion. .br -M1 displayed equations to RTF .br -M2 inline equations to RTF .br -M4 displayed equations to bitmap .br -M8 inline equations to bitmap .br -M16 insert Word comment field containing the raw LaTeX equation .br -M32 insert raw LaTeX equation delimited by $...$ and \\[...\\] .br -M64 displayed equations to EPS files with filenames in RTF .br -M128 inline equations to EPS files with filenames in RTF .br .TP These options may be added together to get different results .br -M0 no equations fields in the RTF. .br -M3 converts both inline and displayed equations to RTF (DEFAULT). .br -M12 converts inline and displayed equations to bitmaps. .br -M192 converts inline and displayed equations to eps files and inserts a tag in RTF. .br Bitmap conversion requires a working latex2png script. Producing bitmaps is slow. .TP .B \-p Escape printed parentheses in mathematical formulas, as some versions of Word (e.g Word 2000) have deep psychological problems with EQ fields using quoted parentheses. If Word displays some formulas with parentheses as 'Error!', try this option. See also the -S option. .TP .B \-P /path/to/cfg used to specify the directory that contains the @code{.cfg} files .TP .B \-se# selects the scale for equation conversion, where # is the scale factor (default 1.00). .TP .B \-sf# selects the scale for figure conversion, where # is the scale factor (default 1.00). .TP .B \-S Use semicolons to separate arguments in RTF fields. This is needed when the machine opening the RTF file has a version of Word that uses commas for decimal points. This also can fix displaying some formulas as 'Error!' You may also need to try the -p option. .TP .B \-t# selects the type of table conversion. .br -t1 convert tables to RTF (default) .br -t2 convert tables to bitmaps .TP .B \-T /path/to/tmp used to specify the folder where to put temporary files. .TP .B \-V Prints version on standard output and exits. .TP .B \-W Emit warnings directly in RTF file. Handy for catching things that do not get translated correctly. .TP .B \-Z# Add # close braces to end of RTF file. (Handy when file is not converted correctly and will not open in another word processor.) .SH CONFIGURATION FILES The configuration files are searched first in any directory specified by -P, then in the location specified by the environment variable RTFPATH, and finally in the location CFGDIR specified when .I latex2rtf was compiled. If the configuration files are not found then .I latex2rtf aborts. The configuration files allow additional fonts to be recognized, additional simple commands to be translation, and additional commands to be ignored. .SH CAUTION The input file must be a valid LaTeX file. Use LaTeX to find and fix errors before converting with .I latex2rtf. .PP The configuration files .B direct.cfg and .B fonts.cfg are in the correct directory. You may have to change .B fonts.cfg or .B direct.cfg to suit your needs. .SH BUGS Some might consider RTF to be a bug. .PP Some environments are currently ignored. .PP Translation without a LaTeX generated .aux file is poor. .SH REPORTING BUGS Report bugs to to the bug tracking system at http://sourceforge.net/projects/latex2rtf/. Only report bugs for the latest version of .I latex2rtf that is available. Please identify your operating system. .PP If the program produces wrong output or does not work for you, INCLUDE A SHORT LATEX FILE that demonstrates the problem. The shorter the LaTeX file, the quicker your bug will get addressed. Bug reports with non-existent LaTeX files are not welcomed by the developers. Do not bother to send RTF files, since these are usually unhelpful. .SH SEE ALSO latex(1), rtf2LaTeX2e(1), LaTeX User's Guide & Reference Manual by Leslie Lamport .PP For complete, current documentation, refer to the Info file .B latex2rtf.info, the PDF file .B latex2rtf.pdf or the HTML file .B latex2rtf.html which are made from the TeXInfo source file .BR latex2rtf.texi. latex2rtf-2.3.18/doc/Makefile0000777000175000017500000000433113072756766016154 0ustar wilfriedwilfriedall: latex2rtf.info latex2rtf.pdf latex2rtf.txt \ latex2pn.txt latex2rt.txt latex2rtf.html latex2rtf.html: latex2rtf.texi makeinfo --html --no-split --no-headers latex2rtf.texi > latex2rtf.html chmod 644 latex2rtf.html latex2rtf.info: latex2rtf.texi makeinfo latex2rtf chmod 644 latex2rtf.info latex2rtf.txt: latex2rtf.texi makeinfo --no-headers latex2rtf > latex2rtf.txt chmod 644 latex2rtf.txt latex2rtf.pdf : latex2rtf.texi texi2pdf latex2rtf.texi chmod 644 latex2rtf.pdf latex2pn.txt: latex2png.1 man ./latex2png.1 | col -b > latex2pn.txt latex2rt.txt: latex2rtf.1 man ./latex2rtf.1 | col -b > latex2rt.txt web/manpage.html: header.html footer.html latex2rtf.1 man ./latex2rtf.1 | man2html --pgsize=100000 --bare > mid.html perl -pi.bak -e 's/^ {3}//' mid.html cat header.html mid.html footer.html > man.html sed "s/HHTITLEHH/latex2rtf: man page/" man.html > web/manpage.html rm mid.html mid.html.bak man.html web/latex2png.html: header.html footer.html latex2png.1 man ./latex2png.1 | man2html --pgsize=100000 --bare > mid.html perl -pi.bak -e 's/^ {3}//' mid.html cat header.html mid.html footer.html > man.html sed "s/HHTITLEHH/latex2rtf: man mage/" man.html > web/latex2png.html rm mid.html mid.html.bak man.html web/usage.html: header.html footer.html latex2rtf.html # drop first 24 lines tail -n +24 latex2rtf.html > temp1.html # drop last 3 lines sed -n -e :a -e '1,3!{P;N;D;};N;ba' temp1.html > temp2.html # assemble cat header.html temp2.html footer.html > temp3.html # insert title sed "s/HHTITLEHH/latex2rtf: User's Manual/" temp3.html > temp4.html # makeinfo creates html files using name= sed "s/name=/id=/" temp4.html > web/usage.html rm -f temp1.html temp2.html temp3.html temp4.html install: web/usage.html web/manpage.html web/latex2png.html rsync -ave ssh web/ web.sourceforge.net:/home/project-web/latex2rtf/htdocs clean: rm -f *.aux *.toc *.fn *.fns *.ky *.log *.pg *.tp *.vr *.vrs \ *.cp *.cps *.ind *.ilg *.tmp rm -f latex2rt.txt latex2pn.txt realclean: clean rm -f latex2rtf.pdf latex2rtf.info latex2rtf.txt latex2rtf.html rm -f latex2rtf.hlp latex2png.hlp rm -f web/usage.html web/latex2png.html web/manpage.html rm -f latex2pn.txt latex2rt.txt .PHONY: install clean realclean latex2rtf-2.3.18/doc/latex2rtf.txt0000777000175000017500000021672713664242067017175 0ustar wilfriedwilfriedLaTeX2RTF ********* This file documents LaTeX2RTF, a converter that translates LaTeX to RTF. Copyright 1998-2002 Georg Lehner, updates Copyright 1999-2018 by Wilfried Hennings and Scott Prahl, with contributions by Mikhail Polianski. Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies. Permission is granted to copy and distribute modified versions of this manual under the conditions for verbatim copying, provided also that the sections entitled "Copying" and "GNU General Public License" are included exactly as in the original, and provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one. Permission is granted to copy and distribute translations of this manual into another language, under the above conditions for modified versions, except that this permission notice may be stated in a translation approved by the Free Software Foundation. 1 Introduction ************** LaTeX2RTF is a translator program from LaTeX text into "rich text format" files. These files are commonly referred to as RTF files. RTF is a published standard format by Microsoft. This standard can be ambiguous in places and Microsoft ignores parts of the standard it finds inconvenient, but RTF is widely used by many WYSIWIG text editors and is supported by Microsoft Word and most text processors. LaTeX2RTF translates the text and as much of the formatting information from LaTeX to RTF. Be forewarned that the typeset output is not nearly as good as what you would get from using LaTeX directly. So, why bother translating? Consider, 1. You use LaTeX and hate everything beginning with MS-... Nevertheless, you have to share your documents with people who don't even know that there are alternatives to MS-... 2. You know somebody who frequently sends you very fine LaTeX documents. Unfortunately, you are "on the other side" and need to import her files, steal some part, and then desktop publish it in your fine MS-... environment. 3. You like LaTeX and BibTeX. You interact with the rest of the world. You know someone that wants to include your writing in a Word document. There are drawbacks to the conversion process. In fact, don't expect any LaTeX file to be converted as you would like, don't expect it to be converted without errors or warnings, and don't be especially surprised when it doesn't convert at all. LaTeX2RTF is known to have many bugs and many missing features. Paradoxically, this number seems to grow more and more with each day. However, we can categorically state that there are some special cases in which a LaTeX file will be translated to RTF satisfactorily by LaTeX2RTF--This was sort of disclaimer, ok? OK! LaTeX is a system for typesetting text and therefore it focuses on the logical structure of a document, whilst RTF is meant to be a transport format for a family of Desktop Publishing Software, dealing mostly with the design of a text. Although the commands and styles in LaTeX are much more flexible and standardized than in RTF, only a small subset of commands has been implemented to date (*note Unimplemented Features::). Some of the capabilities of LaTeX2RTF are restricted in scope or buggy (*note Known Bugs::). RTF is a moving target, because Microsoft does not stop inventing new extensions and features; consequently you cannot view newer RTF files with older word processors. The syntax and semantics of RTF are somewhat artistic, i.e., you can generate a syntactically correct RTF file that cannot be displayed by some/most word processors. For more details on RTF the specification consult the links at `http://latex2rtf.sf.net/' 2 Installation ************** 2.1 General =========== The documentation of the program is found in the `doc/' directory in the file `latex2rtf.texi' in the GNU TeXInfo format. For your convenience, you can find HTML and PDF versions of the manual there as well. Note: In this manual, the terms "directory" and "folder" are used interchangeably. 2.2 Obtaining LaTeX2RTF ======================= LaTeX2RTF is available for many Unix Platforms, for the Macintosh, and for MS-DOS, including all versions of MS Windows. The latest version of LaTeX2RTF is available at SourceForge (http://sourceforge.net/projects/latex2rtf/) and -- with some delay -- on CTAN sites: e.g., `http://www.dante.de' or `http://www.ctan.org'. The DOS package will also run under all MS Windows versions up to Windows 7, except 64bit systems. It requires an i386 processor or better. It should only be used on older Microsoft systems. For Win9x, ME, NT, or newer, you should use the win or win-NO-GUI package. The win-NO-GUI package only runs under Win32 (Win9x, ME, NT, 2000, XP, 2003, Vista, Win7, probably Win8 and Win10). From LaTeX2RTF version 2.0.0 up it also runs on 64bit systems. The win package is the win-NO-GUI package plus graphical user interface (GUI) shell (l2rshell) and installer. It only runs under Win NT, 2000, XP, 2003, Vista, Win7 and newer. From LaTeX2RTF version 2.0.0 up it also runs on 64bit systems. The win64 package (only LaTeX2RTF version 1.9.19) is the win package but with 32bit versions of the shell utilities so that it also runs on 64bit systems. From LaTeX2RTF version 2.0.0 up, there is no separate win64 package, as the win32 package also runs on 64bit systems. There are a few people working on LaTeX2RTF, and some more make contributions, coordinated by Wilfried Hennings (texconvfaq "at" gmx.de). See the SourceForge (http://sourceforge.net/projects/latex2rtf/) project pages for the latest news. 2.3 UNIX ======== To install, 1. Edit `MAKEFILE' for your local configuration. In particular, pay attention to the `DESTDIR' variable (MAKEFILE line 21). If you do not have root access you might wish to set the makefile variable `DESTDIR' to be your home directory. On some machines the cc compiler will issue errors. Therefore the default compiler command in the Makefile is `CC=gcc'. 2. From version 1.9.13 up, LaTeX2RTF supports conversion of LaTeX equations to bitmaps using the shell script `latex2png', found in `scripts/'. `latex2png' requires that LaTeX, `Ghostscript' and `ImageMagick' are installed. LaTeX2RTF will translate documents without a working `latex2png', but some features will be missing. You can verify that the `latex2png' script is working by typing `make' in the `scripts/' directory. 3. `make' If this is not your first time installation, you may want to preserve your old configuration (`*.cfg') files. Copy them to a safe place before installing. On IBM AIX, the IBM make utility does not support some of the commands used in Makefile. In this case use `gmake' (from GNU) instead. Sun has decided to support the XPG4 standard on Solaris by an alternative set of binaries. To allow bitmap conversion of equations, two things are needed. First, change the first line of latex2png to `#!/usr/xpg4/bin/sh' Second, define the XPG4_GREP environment variable accordingly, for bash-like shells `XPG4_GREP=/usr/xpg4/bin/grep; export XPG4_GREP' or for tsch-like shells `setenv XPG4_GREP /usr/xpg4/bin/grep'. 4. `make install' Note that the Makefile does not contain a rule for make uninstall. This is by design. On modern Linux distributions, you would prefer to install LaTeX2RTF by the package manager of your distribution, which also provides an easy means for update and uninstallation. If your package manager does not provide the LaTeX2RTF package or you need to install LaTeX2RTF from the sources for some other reason, you should consider using `checkinstall' which creates a package for your package manager which then can be installed and uninstalled by the package manager. If you nevertheless need to run `make install', note the following: If your `mkdir' doesn't support the `-p' option, then create the necessary directories by hand and remove the option from the `$MKDIR' variable. If you have other problems, just copy `latex2rtf' and `latex2png' to a binary directory, and move the contents of the `cfg/' directory to the location specified by `$CFG_INSTALL'. 5. `make check' [OPTIONAL] This tests LaTeX2RTF on a variety of LaTeX files. Expect a whole lot of warnings, but no outright errors. (On IBM AIX, use `gmake check'.) Note that this will check the basic functionality of the `latex2png' script, and then that of `latex2rtf'. 6. `make install-info' [OPTIONAL] This installs `.info' files for use with the `info' program. You no longer need to define the environment variable `RTFPATH'. This is only necessary if you move the directory containing the `.cfg' files. Just define `RTFPATH' to be the path for the new location of the `cfg' directory. 2.4 plain DOS ============= The UNIX and Mac packages do not contain an executable for DOS or Windows. You may compile it yourself (with djgpp or MinGW) or get the DOS package as file `latex2rtf-x.x.x_dos.zip' (where x.x.x is the version number) or the win-NO-GUI package as file `latex2rtf-x.x.x_win-NO-GUI.zip' (no installer, no graphical user interface (GUI)) from SourceForge (http://sourceforge.net/projects/latex2rtf/) The DOS package contains a precompiled executable which should run under plain DOS and also in the command prompt (or "console") of any MS Windows system including Vista and Windows 7 but not on 64bit systems. To install the DOS or win-no-GUI package of LaTeX2RTF, extract all files from the zip archive, preserving the folder structure (winzip: check "use folder names"), preferably to `C:\l2r', or under Windows, to your "Program Files" folder (which ever it is named in your system) because then it will find its cfg files by default. If you extracted them to another folder (e.g. `C:\my_files\l2r'), either edit the file `L2RPREP.BAT' and change the folder `C:\l2r' to where you put them, or specify the path to the cfg folder in the command line. Avoid blanks in folder and file names! Make sure that the folder containing the file `L2RPREP.BAT' is in your search path, or put this file into a folder which is in your search path. To display the current search path, enter `PATH' from the command prompt (with no arguments). Under plain DOS, conversion of equations or figures to bitmaps is not possible because Ghostscript and ImageMagick are not available for plain DOS. 2.5 MS Windows systems ====================== To install LaTeX2RTF on a MS Windows system (WinNT, Win2000, WinXP, Vista, Win7), download the win package, execute the `latex2rtf-x.x.x_win.exe' (where x.x.x is the version number) and follow the instructions. Note: The installer and GUI shell do not support Win9x and WinMe since LaTeX2RTF v.1.9.17. If you have one of these systems, you should use the win-NO-GUI package (1.9.19 and up) of LaTeX2RTF. To start the program double-click the LaTeX2RTF icon, or drag and drop a `.tex' file onto the icon. If your LaTeX document refers to external graphic files, e.g. eps, or you want to use the option to convert equations to bitmaps, you must have LaTeX, ImageMagick and Ghostscript installed. These programs are freely available for download at `http://www.miktex.org/', `http://www.imagemagick.org' and `http://www.ghostscript.com' The following versions were available at the time of writing and tested with LaTeX2RTF version 2.3.11: - MikTeX 2.9 - Ghostscript 9.19 - ImageMagick-7.0.1-8-Q16-x86-dll.exe When installing ImageMagick, be sure to choose (check) "Install legacy utilities (e.g. convert)" If MikTeX, ImageMagick and Ghostscript are installed, the paths to their executables are detected automatically. If for any reason this doesn't happen, these paths can be specified manually in the "Environment" tab of the LaTeX2RTF GUI shell window. If you need to start LaTeX2RTF not from its own shell but from commandline or another Windows application, you need to add the folder containing the latex2png script and the helper programs to the search path. Some applications (e.g. Lyx) allow to temporarily add the path by specifying it in the options. If this is not possible, you can add the latex2rtf folder to Windows' default path like follows: To add a folder - e.g. C:\Program Files\latex2rtf - to the search path: * Note that the folder name "Program Files" contains a blank. This would lead to some problems as some parts of the latex2rtf program package interpret the blank as a parameter delimiter. Therefore in the following example the folder name "Program Files" is replaced by its DOS equivalent "PROGRA~1" which has the additional effect that this is similar for several if not all European languages. * Win95, Win98, WinME * Open the file `C:\AUTOEXEC.BAT' either with Edit (DOS) or with Notepad (Windows). * At the end of that file, add the line `PATH=C:\PROGRA~1\latex2rtf;%PATH%' * Save the file to its original location. Shutdown and reboot the PC. * WinNT, Win2000, WinXP, Vista, Win7 * Right-click "My Computer" (German: "Arbeitsplatz"), then select "Properties"; * NT: Click the "Environment" tab; XP and up: Click the "Advanced" tab, then the "Environment variables" button; * Find the line beginning with `PATH=' and insert the string `C:\PROGRA~1\latex2rtf;' so that the complete line looks like `PATH=C:\PROGRA~1\latex2rtf;C:\WINDOWS;...' * Click "OK" If you do NOT use the GUI (l2rshell.exe), either the folders where TeX, ImageMagick and Ghostscript are installed must also be in your search path, or you must edit the file `L2RPREP.BAT', ensure that the pathes in this file point to the folders where TeX, ImageMagick and Ghostscript are installed on your machine, and call `l2rprep' before calling `latex2rt'. Or you edit `l2r.bat' and call `l2r' instead of calling `latex2rt'. If you DO use the GUI (l2rshell.exe), the TeX, ImageMagick and Ghostscript folders are automatically added to the search path by the GUI. When equations are to be converted to bitmaps, for each equation LaTeX2RTF first writes a temporary l2r_nnnn.tex file to disk which consists of only the equation to be converted. It then sends the call for `"bash latex2png l2r_nnnn.tex"' to the operating system. In previous versions of latex2rtf, some users got the message "Out of environment space" (can occur only under Windows 95, Windows 98 or Windows ME); this should be solved now by using bash.exe instead of command.com. 2.6 Macintosh ============= If you want a MacOS X version, make sure that you have installed the developer tools CD that is appropriate for your OS version, and then follow the directions above for a UNIX installation. Alternatively you can install using fink `http://www.finkproject.org/' and `http://sourceforge.net/projects/fink/'. As of 2006-01-30 there was a GUI shell for Macintosh at `http://www.inf.ethz.ch/personal/fischerk/LaTeX2rtf/index.html' but now (Nov. 2013) this is not available anymore. There is a PPC port of an old version 1.9k for Classic MacOS LaTeX2RTF. To convert a LaTeX file using this version, drag the file onto the LaTeX2RTF icon. The translation is best if there are `.aux' and `.bbl' files in the same folder as the `.tex' file to be converted. These should be generated using LaTeX and `bibtex'. 2.7 Problems Compiling ====================== The code for LaTeX2RTF is standard ANSI C. Some possible pitfalls are * Not correctly defining your compiler in the Makefile. The default is to use `gcc'. * Encountering errors because the compiler options. During development all compiler warnings are turned on. However, different compilers have different interpretations of `-Wall' and may generate errors that were not found in a different development system. Please report these, but a quick fix is to remove all compiler options. 2.8 Problems with `make check' ============================== All the files in the `test' directory are converted (with varying degrees of success) using LaTeX2RTF and are tested before most CVS check-ins and with all released tarballs. There will be many warning messages, but there should be no actual error messages. If you do not have a working latex2png script, then some of the files will fail to be translated. 3 Using LaTeX2RTF ***************** 3.1 General Assumptions ======================= LaTeX2RTF assumes that the `.tex' file you want to convert is a valid LaTeX document. The chances of a successful LaTeX2RTF conversion are slightly better than the proverbial snowball's if the `.tex' file doesn't `latex' properly. Use LaTeX to find and correct errors before using LaTeX2RTF. LaTeX2RTF also needs the `.aux' file and `.bbl' file which are generated by running `latex' on the `.tex' file To correctly convert font names you must edit the `fonts.cfg' configuration file. This file is used to specify the needed font names and how the LaTeX default font names should be converted to RTF (*note Font Configuration::). LaTeX variables and user defined commands are not evaluated. They will be simply ignored. To let LaTeX2RTF know the names of variables you can add them in the `ignore.cfg' file (*note Ignore Command::). The environment variable RTFPATH may contain a search path for the support files (all files ending in `.cfg'). If no file is found during the search in the search-path or if the environment variable is not set, the compiled-in default for the configuration-file directory is used. If the files are not found at all the program aborts. In the DOS and Windows versions the search path is separated by `;' in the Unix version by `:'. For the paths themselves apply `\' and `/'. A separator may appear at the beginning or ending of RTFPATH. Make sure that the configuration files are in the correct directory (or folder). LaTeX2RTF will need at least `fonts.cfg', `direct.cfg', `ignore.cfg', `english.cfg'. You may have to change one ore more of them to suit your needs (*note Configuration::). *Note Missing options::, for actual implementations irregularities. *Note Reporting Bugs::, for information on how to reach the maintainer. 3.2 LaTeX2RTF Options ===================== The LaTeX2RTF command converts a LaTeX file into RTF text format. The text and much of the formatting information is translated to RTF making the new file look similar to the original. The command line syntax is: latex2rtf [-options] inputfile[.tex] for the DOS and Windows versions: latex2rt [-options] inputfile[.tex] The options set in the Windows GUI (l2rshell.exe) are inserted as command line options when clicking RUN. The `-options' may consist of one or more of the following `-a auxfile' specify an `.aux' file (for table and figure references) that differs from `inputfile.aux'. If this is omitted, the name of the inputfile with the suffix replaced `.aux''will be taken. You must provide both files (`.tex' and the `.aux') to be able to convert cross-references in a LaTeX file. The `.aux' is created by running the `inputfile.tex' through `latex'. `-b bblfile' Unless an `bblfile' is specified with the `-b' option, LaTeX2RTF uses a `inputfile.bbl'. The `bblfile' file is used for citations and is typically created by running `inputfile.aux' through `bibtex'. `-C codepage' used to specify the character set (code page) used in the LaTeX document. This is only important when non-ansi characters are included in the LaTeX document. Typically this is done in a LaTeX2e file by using `\usepackage[codepage]{inputenc}' and in this case you need not specify the -C codepage option. If NO `\usepackage[codepage]{inputenc}' is in the LaTeX2e file, you must inform the converter about the codepage by the -C codepage option. You may select any of the following code pages: ansinew, applemac, cp437, cp437de, cp850, cp852, cp865, decmulti, cp1250, cp1252, latin1, latin2, latin3, latin4, latin5, latin9, next. The default behavior is to use ansinew (code page 1252). Cyrillic support includes conversion of koi8-r, koi8-u, cp1251, cp855, cp866, maccyr, and macukr encodings. `-d debug_level' The `-d' option determines the amount of debugging information to send to stderr while translating. debug_level=0 means only Errors, `1' Warning Messages (default) also. The debug_level can go as high as `7' for insane amounts of debugging fun. Warnings and error messages are output to stderr and by default listed in the console window. They can be redirected to a file "latex2rtf.log" by appending `2>latex2rtf.log' to the command line. `-D dots_per_inch' used to specify the number of dots per inch for equations converted to bitmaps. This value is also used when picture environments are converted to bitmaps as well as when EPS graphics are converted to png files. The default value is 300 dots per inch. `-E#' selects whether figures are included in the rtf (default) or created as external files with the filenames inserted in the rtf text. The options -E4, -E8 and -E12 are experimental and may not work as expected. `-E0' Do not include any figures in RTF. `-E1' Include figures that need no conversion. `-E2' Include figures that need conversion. `-E3' Include all figures (default). `-E4' Insert filenames for figures that do not need conversion. `-E8' Insert filenames for figures that need conversion. `-E12' Insert filenames for all figures. With options -E8 and -E12, pdf and ps graphics as well as tikz graphics are converted to eps and the eps filenames inserted in the document text. With -E4 and -E12, bitmap files are inserted in their original format. After opening the rtf in a textprocessing or dtp program, a macro can search for the inserted filenames and insert the files in their places. Further info is in the description of the -M option. `-f#' where # selects which fields to use during conversion: `-f0' do not use fields in RTF. This is handy when primitive RTF editors are being used to view the RTF output. `-f1' use fields for equations but not `\ref' and `\cite'. `-f2' use fields for `\ref' and `\cite' but not equations. This will be useful for versions of OpenOffice that import cross-references properly (as of Sept 2003 in a soon-to-be released version) but do not properly handle fields in equations. `-f3' use fields when possible. This is the default and is most useful when the RTF file is being exported to be used in Word. This retains the most information from the original LaTeX file. `-F' use LaTeX to create bitmaps for all figures. This may help when figures are not translated properly with the default settings. This typically requires a functional version of ImageMagick on your machine to work properly. `-h' a short usage description `-i language' used to set the idiom or language used by the LaTeX document. Typically, this is specified in a LaTeX2e document by including `\usepackage[language]{babel}' where `language' is one of the languages supported by the `babel' package. All languages listed in the babel system are supported so far as translations for "Chapter," "References," and the like. Furthermore, some commands found in the style files for german, french, russian, and czech style are supported (*note Language Configuration::). `-l' same as `-i latin1' (Note that the default behavior is to use `ansinew' which is a superset of `latin1'). Included for backwards compatibility. `-M#' where # selects the type of equation conversion. Use `-M1' convert displayed equations to RTF `-M2' convert inline equations to RTF `-M4' convert displayed equations to bitmap `-M8' convert inline equations to bitmap `-M16' insert Word comment field that contains the raw LaTeX equation `-M32' insert the raw latex equation in the RTF text delimited by `$ ... $' for inline equations and by `\[ ... \]' for displayed equations. This is useful when using version 6 of the MathType equation editor, which converts typed or pasted TeX code into a MathType equation. Probably this could also be useful for use in OpenOffice, as OO has an equation syntax which partially resembles TeX syntax. `-M64' convert displayed equations to EPS files and insert filenames in RTF text. `-M128' convert inline equations to EPS files and insert filenames in RTF text. These switches can be combined to get different effects. Handy examples are `-M3' convert both inline and displayed equations to RTF (default) `-M6' convert inline equations to RTF and displayed equations to bitmaps `-M12' convert both inline and displayed equations to bitmaps `-M192' convert both inline and displayed equations to EPS and insert filenames in RTF text Conversion to bitmaps or eps requires that you have installed a working latex2png script. Producing bitmaps is slow. When running the DOS version, conversion to bitmaps works for the first 26 equations but fails for the rest with the message "latex2png: pipe error: Too many open files (EMFILE)". This is probably a bug in the djgpp 2.04 compiler. The Windows version, compiled with MinGW, successfully converts at least 500 equations to bitmaps. When -M64, -M128 or both are specified, equations are converted to individual eps files, the filenames of which are literally inserted in the rtf file, delimited by [###...###]. After loading the rtf file in a text processing program, a macro can be run which searches for "[###" and "###]", extracts the filename, and inserts the eps in that place. The Windows installer package contains the code of such a macro for Word2010 in the file "WordMacro_InsertEPSfromNames.txt" in subfolder "scripts". (This macro may also run on other versions of Word but it was only tested on Word2010.) In Word, the inserted eps graphics display in bad quality on the screen and on non-postscript printers but can be printed in high quality on postscript and pdf printers. `-o outputfile' Unless an `outputfile' is specified with the `-o' option, the resulting RTF filename is formed by removing `.tex' from the `inputfile' and appending `.rtf'. `-p' Escape parentheses in mathematical formulas. This has no effect unless EQ fields are being generated. When this option is used, then a `(' or `)' that appears in an EQ field will be preceeded by a backslash. Despite documentation to the contrary (which says that all parentheses should be escaped), adding escapes usually produces a worse result than doing nothing. If Word displays some formulas with parentheses as "Error!", you might try this option as a last resort. See also the -S option. This is an option because it will break typesetting equations with non-matching parentheses (because an unmatched unquoted parenthesis would terminate the field). `-P /path/to/cfg' used to specify the folder (i.e. directory) that contains the `.cfg' files and/or the folder that contains the latex2png script. Unix, Mac: The folder that contains the latex2png script must be prepended by a ":". DOS, Windows: The scripts folder is not used, the scripts are always taken from the search path, therefore the folder containing the scripts and the helper programs must be the first in the search path. You can either add it to the search path permanently or add it temporarily by calling l2rprep.bat before starting conversions. If any of the folder names contains a blank, the folder string must be enclosed in single (Unix, Mac) or double (DOS, Windows) quotes. Examples: (Unix:) `latex2rtf -P ./cfg/:./scripts/ foo' (DOS/Windows:) `latex2rt -P "C:\Program Files\latex2rtf\cfg" foo' Note that without specifying the -P option, LaTeX2RTF tries to find its cfg files in the following locations: 1. the folder specified by the environment variable `RTFPATH', if this variable exists; 2. The folder `%PROGRAMFILES%\latex2rtf\cfg', if the variable `PROGRAMFILES' exists - this is the folder in which LaTeX2RTF is installed by the Windows GUI installer with default settings; 3. the folder specified at compilation time by the variable `CFGDIR'. This is set in the Makefile. The DOS version is compiled with `CFGDIR=C:/l2r', the Windows version with `CFGDIR=C:/PROGRA~1/latex2rtf'. `-se#' selects the scale for equation conversion, where # is the scale factor (default 1.00). `-sf#' selects the scale for figure conversion, where # is the scale factor (default 1.00). `-t#' where # selects the type of table conversion. Use `-t1' convert tables to RTF (default) `-t2' convert tables to bitmaps `-v or -V' prints version information on standard output and exits. `-S' used to specify that semicolons should be used to separate arguments in RTF fields (instead of commas). Typically this is needed when the machine that opens the RTF file has a version of Windows that uses `,' for decimal points. `-T /path/to/tmp' used to specify the folder where to put temporary files. The path can be absolute, e.g. `/path/to/tmp' or relative to the folder where the .tex input file is in, e.g. `tmp' or `./tmp'. If you call LaTeX2RTF from the commandline (e.g. under Linux or when called as export filter by LyX), make sure that the tmp folder exists. Only the LaTeX2RTF Windows shell tries to create the tmp folder, the command line program doesn't. `-W' includes warnings directly in the RTF file `-Z#' add the specified number of extra `}' to the end of the RTF file. This is useful for files that are not cleanly converted by LaTeX2RTF. With no arguments other than switches starting with a "-", LaTeX2RTF acts as a filter, i.e., it reads from `stdin' and writes to `stdout'. In addition, diagnostic messages are sent to `stderr'. If these standard channels are not redirected using `<' and `>', then the input is read from the command line, and both output and error messages are printed on the screen. To redirect warnings and error messages to a file "latex2rtf.log", append `2>latex2rtf.log' to the command line. If a non-switch argument is present, LaTeX2RTF assumes it is the name of the input file. The file must have extension ".tex" but the extension is optional. The output file is constructed from the input file name by removing the extension ".tex" and adding ".rtf". 3.3 Debugging ============= With the `-d' option you can specify how much processing information LaTeX2RTF reports. If there is a logfile specified the output goes to this file. Nonetheless Warnings and Errors are logged to stderr always. They can be redirected to a file "latex2rtf.log" by appending `2>latex2rtf.log' to the command line. Possible values of `-d' are 0. only errors. 1. Translation Warnings (default). 2. shows preparsing of sections 3. Reasonably high level debugging messages 4. Show all function calls 5. Show each character as it is processed 6. Show processing of characters as they are output as well 4 Features ********** In this chapter you find what styles is LaTeX2RTF supposed to translate correctly to RTF. 4.1 LaTeX2e =========== LaTeX2RTF understands most of the commands introduced with LaTeX2e. It translates both the old 2.09 version of `\documentstyle[options]{format#}' and the newer `\documentclass[options]{format}'. 4.2 Unicode Support =================== As of version 1.9.17 and up, LaTeX2RTF has limited unicode support. LaTeX files that use unicode sequences are just emitted directly into the RTF file. Symbols and odd characters in math sequences may also be converted to a unicode sequence. Some of them need the STIXGeneral fonts (see *note Math and Special Symbols::) to be installed on the system where the rtf file is to be displayed or printed. Support for unicode encoded input is activated by the LaTeX command `\usepackage[utf8]{inputenc}' or `\usepackage[utf8x]{inputenc}'. 4.3 Input Encoding ================== It is not necesary to specify the `-C' option if you use `\usepackage{isolatin1}' or `\documentstyle[isolatin1]{...}'. LaTeX2RTF automagically detects these packages/style options and switches to processing of ISO-Latin1 codes. The following encodings are supported: ansinew, applemac, cp437, cp437de, cp850, cp852, cp865, decmulti, cp1250, cp1252, latin1, latin2, latin3, latin4, latin5, latin9, next, koi8-r, koi8-u, cp1251, cp855, cp866, maccyr, macukr, utf8, and utf8x. The encoding used in RTF files is cp1252. If cyrillic fonts are present, then these are represented in the RTF file using cp1251 (Windows Cyrillic). 4.4 Language Support ==================== The following languages from the Babel package are supported: afrikaans, german, nynorsk, spanish, bahasa, dutch, icelandic, polish, swedish, basque, english, portuges, turkish, brazil, esperanto, irish, romanian, usorbian, breton, estonian, italian, samin, welsh, catalan, finnish, latin, scottish, croatian, lsorbian, serbian, czech, french, magyar, slovak, danish, galician, norsk, slovene. The only thing that these files do is to translate various words usually emitted by LaTeX during processing. For example, this ensures that the LaTeX2RTF will provide the correct translation of the word "Chapter" in the converted document. You can select any of the above languages using the `-l' option. This is not needed if your LaTeX file contains `\usepackage[language]{babel}'. Encountering the `german' package or babel option (by H. Partl of the Vienna University) makes LaTeX2RTF behave like that: German Quotes, German Umlauts by `"a', etc... This support is programmed directly into LaTeX2RTF and supporting similar features for other languages will require patching the source code. There is similar support for `french' packages. There is reasonable support for english, latin1, latin2, and cyrillic languages. *Note Language Configuration::, for details on how to write a `language.cfg' file for your language by yourself. 4.5 Cross References ==================== Cross references include everything that you might expect and then some: bibliographic citations, equation references, table references, figure references, and section references. Section, equation, table and figure references are implemented by placing RTF bookmarks around the equation number (or table number or figure number). Page references work but are implemented as "warm" cross-references. This means that Word does not automatically update the page references when the file is opened. To update the page references you must select the entire document (in Word) and press `F9'. Bibliographic references currently require that a valid `.aux' file be present. This is where LaTeX2RTF obtains the reference numbers. It would be nice if LaTeX2RTF just automatically numbered the references when there was no `.aux' file, but LaTeX2RTF does not do this yet. LaTeX2RTF relies on BibTeX to convert and format bibliographic entries. Usually the style file for a particular BibTeX format does not use any special LaTeX commands and therefore the bibliography file `file.bbl' can be processed by LaTeX2RTF without difficulty. As a consequence, LaTeX2RTF can handle most bibliography styles without problem. There are several latex style packages that add additional latex commands to enhance bibliographic formatting. LaTeX2RTF currently supports the following bibliographic packages: apacite, apalike, authordate, harvard, natbib (also with apanat1b). These packages have many, many options and you may encounter problems with formatting in special cases. As of LaTeX2RTF 1.9.17 and up, the natbib command bibpunct is supported. Footnotes are implemented and appear at the bottom of each page. Indexing is reasonably-well supported. The simple mark-up of `makeindex' \index{topic!subtopic@\textit{subtopic}} is supported. The rest of the fancy indexing stuff is not implemented. The index is created at the location of the `\printindex' command. When a file with an index is first opened in Word, you must select the entire file and update the page references and fields by pressing `F9'. Currently, there is no support for `\labels' of `\item's in enumerate environments. The conversion of cross-references is not perfect because of the different mechanisms in the LaTeX and Word worlds. In particular, if there are multiple `\label' in a figure, table, or section environment then only the first gets processed. It is also possible to confuse the LaTeX2RTF in eqnarray environments. 4.6 Page Formatting =================== LaTeX2RTF will handle some basic page formatting options, including \doublespacing (as implemented in the setspace package), and the margin setting options provided by the geometry package including commands in the ratio, centering and margin families. Not all geometry options are implemented yet, in part because there are no corresponding rtf commands for many of them. 4.7 Equations ============= There are six separate levels of equation translation based on the -M switch, see *note LaTeX2RTF Options::. Each equation is converted either to an EQ field or to a bitmap or inserted as raw TeX code in the document or converted to an eps file with the eps file name inserted in the document text delimited by [###...###]. This is an interim solution (for some definition of "interim"). Ideally the equations would become OLE equation objects in the RTF file, but this needs to be implemented. Some functions in the EQ fields have two or more parameters with a separator between each two. Unfortunately, the interpretation of these separators depends on the country specific settings in the MS Windows system in which the rtf file is opened. e.g. in English versions of MS Windows, the default parameter separator is the comma, in German versions the default is the semicolon. If the parameter in the RTF file does not match the Windows setting, some EQ fields are not interpreted correctly. You can check and set the separator in [Windows control panel - country settings - numbers - list separator]. By default, LaTeX2RTF uses the comma as separator. If LaTeX2RTF is called with the command line parameter -S , the semicolon is inserted as parameter delimiter. Theoretically, according to the Word help file, parentheses `(' or `)' in mathematical formulas should be escaped (by a preceding backslash). Despite this, adding escapes usually produces a worse result than doing nothing. If Word displays some formulas with parentheses as "Error!", you might try the -p option as a last resort. It is also possible to convert an EQ field generated by LaTeX2RTF to an Equation Editor object by opening the rtf file in Word and double-clicking on the equation. However there are bugs in the interface between Word and Equation Editor which prevent symbols in font Symbol or MTExtra to be converted correctly. The full commercial version of the Equation Editor, called MathType, handles this conversion correctly. If you have MathType version 6 or later, an even better way to convert LaTeX equations to MathType is letting LaTeX2RTF write the LaTeX code of the equations verbatim in the rtf file (option -M32), then open the rtf file in Word, select the LaTeX code of an equation, cut it to the clipboard, open MathType, and paste the code. MathType will convert the code into an equation. Wilfried tried to automate this in a Word macro, but this fails because the macro does not wait until MathType is started and ready to receive the pasted code. Maybe the MathType authors will give us a hint or provide such a macro. MathType can be downloaded from `http://www.dessci.com/' (30 day test version). 4.8 Math and Special Symbols ============================ The way that symbols are converted in the RTF is based on the following observations. If the symbol is found in the latin 1 character set, then the current font is used, else the unicode code is inserted in the rtf code. (Implemented since version 2.1.0) The means that on the system where the `.rtf' file is opened, a unicode font should be available or these glyphs will not be displayed correctly. As only the STIX fonts contain all needed characters, these fonts should be installed on the system where the rtf file is to be displayed or printed. Many mathematical and special symbols are directly supported by LaTeX2RTF. Less common symbols (not found in the standard font) are supported by the conversion table in the file `direct.cfg', see *note Direct Conversion::. Required fonts are: * "Times" / "Times New Roman" or "Helvetica" / "Arial", preferably with Unicode extension (i.e. supporting all European languages including Cyrillic, Greek, and Hebrew). "Times" or "Times New Roman" and "Helvetica" or "Arial" are standard on all systems, but not their Unicode extension. * "STIXGeneral" (4 fonts in plain, italic, bold, bold-italic). These fonts are available from `http://sourceforge.net/projects/stixfonts/'. Note that while Office 2003 on Vista works correctly with the Open Type version, it does not on Windows XP (Word 2003 assigns no character spacing, and Publisher doesn't display the character at all). On Windows XP, Office 2003 only displays the symbols correctly with the TrueType (ttf) version of the fonts. But stixfonts.org only supplies the Open Type (otf) version. TrueType versions of the fonts can be downloaded from `http://sites.google.com/site/olegueret/stixfonts-ttf'. 4.9 Tables ========== Conversion of tabular and tabbing environments is somewhat lame. The main difficulty is that LaTeX (and html) will size the columns of a table automatically. There is no such feature in RTF. Consequently, the conversion defaults to making all the columns have equal size. This is suboptimal and should be revised. Another way is to use the option -t2 to make latex render them as bitmaps and insert the bitmaps into the RTF file. This feature was added in version 1.9.19. 4.10 Graphics ============= There is now rudimentary support for `\includegraphics'. Three file types will be inserted into the RTF file without needing conversion: `.pict', `.jpeg', and `.png' files. EPS and PDF files are converted to PNG using `convert' from the ImageMagick package. Some options are even handled properly. 4.11 Pagestyles =============== If there is no `\pagestyle' command, the RTF output is generated as with plain pagestyle, i.e. each page has its page number centered at the bottom. You must turn this off with the \pagestyle{empty} command in the LaTeX file if you don't want pagenumbers. The headings and myheadings styles are silently ignored by now. The twosided option to the \documentstyle or \documentclass produces the corresponding RTF tokens. Note that these features require RTF Version 1.4. 4.12 Hyperlatex =============== Hyperlatex support is largely broken at the moment, but continues to improve. Otfried Schwarzkopf has created the "Hyperlatex Markup Language" which is a "little package that allows you to use LaTeX to prepare documents in HTML." It brings an Emacs lisp program with it to convert the Hyperlatex file to HTML. Hyperlatex can be obtained from the CTAN-sites, see *note Obtaining LaTeX2RTF::. There are two convenient commands that avoid typing: \link and \xlink that generate an "internal" label which then is used in the following \Ref and \Pageref commands. LaTeX makes it possible to write `\link{anchor}[ltx]{label}', which typesets: `anchor ltx'. LaTeX2RTF does NOT support this aproach since the optional parameter is thrown away right now, see *note LaTeX2RTF under Development::. Note that you have to update your `.cfg' files if you are upgrading, since there are a lot of HTML oriented commands in Hyperlatex that we simply can `ignore'. 4.13 APA Support ================ Some APA citation styles are supported, see *note Citation Commands:: Support for APA text formatting is only rudimentary at the moment (headings without numbering). If you want to format a document according to APA, rename cfg/style.cfg to style_sav.cfg and rename cfg/styleAPA.cfg to style.cfg before starting LaTeX2RTF. 5 Configuration *************** 5.1 Input processing ==================== On processing input LaTeX2RTF first converts the LaTeX special characters. If it encounters one of the standard commands it is converted internally. If a command is not known to LaTeX2RTF it is first looked up in `direct.cfg' and the RTF code specified there is output. If not found there it is looked up in the section `ignore.cfg'. This file includes a lot of LaTeX commands that do not affect the output (cross reference information and the like), or that we are not able or willing to convert to RTF. You can use `ignore.cfg' if you get tired of seeing WARNING: command: `foo' not found - ignored and you don't need `foo' in your RTF document. It would be nice to send your additions to the LaTeX2RTF mailing list for inclusion in later distributions. LaTeX2RTF accepts Unix, MS-DOS, and Macintosh line ending codes (\n, \r\n and \r). The files it creates get the line ending for the platform on which LaTeX2RTF was compiled. The LaTeX file may have been created with a wide variety of character sets. If the LaTeX lacks the `\package[codepage]{inputenc}' definition, then you may need to use the command line switch to manually select the proper code page (*note Input Encoding::). 5.2 Conditional Parsing ======================= Starting with LaTeX2RTF 1.9.18, there is a handy method for controlling which content should be processed by LaTeX or by LaTeX2RTF. Control is achieved using the standard `\if' facility of TeX. If you include the following line in the preamble of your document (i.e., before `\begin{document}') \newif\iflatextortf Then you will create a new `\iflatextortf' command in LaTeX. TeX sets the value of this to `false' by default. Now, LaTeX2RTF internally sets `\iflatextortf' to be true, and to ensure that this is always the case, LaTeX2RTF ignores the command `\latextortffalse'. This means that you can control how different applications process your document by \iflatextortf This code is processed only by latex2rtf \else This code is processed only by latex \fi Note that `\iflatextortf' will only work within a section; you cannot use this command to conditionally parse code that crosses section boundaries. Also, it will only work on complete table or figure environments. Due to the mechanism used by LaTeX2RTF in processing these environments, at this time the only way to conditionally parse tables and figures is to include two complete versions of the environment in question, nested within an appropriate `\iflatex2rtf' structure. LaTeX2RTF versions 1.9.15 to 1.9.18 had the ability to hide contents from LaTeX but expose them to LaTeX2RTF by starting a line with `%latex2rtf:'. This code was horribly broken, and it was removed. The same functionality is readily achieved using the `\iflatextortf' mechanism. For example, the old method allowed %latex2rtf: This line will only appear in the latex2rtf output, To get the same behavior, define `\iflatextortf' and use \iflatextortf This code is processed only by latex2rtf \fi 5.3 Output Formatting ===================== On writing output, LaTeX2RTF generates the operating system specific line ending code (`\n' on Unix, `\r\n' on DOS or Windows), depending on which system LaTeX2RTF was compiled. As both should be legal to any RTF Reader the resulting RTF rendering should not be affected. LaTeX2RTF does not offer a whole lot of flexibility in how files are translated, but it does offer some. This flexibility resides in four files `direct.cfg', `ignore.cfg', `fonts.cfg', and `language.cfg'. These filese are documented in the next four sections. 5.4 Direct Conversion ===================== The file `direct.cfg' is used for converting LaTeX commands by simple text replacement. The format consists of lines with a LaTeX command with backslash followed by comma. The rest of the line until a `.' character will be written to the RTF file when the command is found in the LaTeX file. Lines starting with a `#' character are ignored. After the `.' everything is ignored to end of line. To select a specific font use `*fontname*', where `fontname' be defined in `fonts.cfg'. To write the `*' character use `**'. \bigstar,{\u8727**}. \copyright,\'a9. In general, specific fonts should not be specified in this file. There is a mechanism to do this, but it turns out that this is not as useful as originally thought. The main reason that this fails is because the conversion of equations from Word fields to Equation Editor objects is buggy. The consequence is that to have symbols show up properly, they must be encoded differently when the Symbol and MT Extra fonts are used -- depending on whether Word fields are active or not. It was all very tedious to figure out a mechanism that was "least broken." 5.5 Ignore Command ================== The file `ignore.cfg' is used for defining how to ignore specific commands. This file is used for recognition of LaTeX variables, user defined variables, and some simple commands. All variables are ignored but the converter must know the names to correctly ignore assignments to variables. Lines in this file consist of a variable name with backslash, followed by comma and the type of the variable followed by `.'. Possible types are `NUMBER' simple numeric value `MEASURE' numeric value with following unit of measure `OTHER' ignores anything to the first character after `=' and from there to next space. e.g., `\setbox\bak=\hbox' `COMMAND' ignores anything to next `\' and from there to the occurence of anything but a letter e.g., `\newbox\bak' `SINGLE' ignores single command e.g., `\noindent' `PARAMETER' ignores a command with one parameter e.g., `\foo{bar}' `PACKAGE' does not produce a Warning message if PACKAGE is encountered, e.g., ``\kleenex,PACKAGE.'' ignores ``\usepackage{kleenex}'' `ENVCMD' intended to process contents of unknown environment as if it were plain LaTeX, e.g. ``\environ,ENVCMD.'' Therefore ``\begin{environ} text \end{environ}'' would be converted to `text'. Doesn't work in LaTeX2RTF version 2.1.0 up to and including 2.3.4. `ENVIRONMENT' ignores contents of that environment, e.g., with ``\ifhtml,ENVIRONMENT.'", ``\begin{ifhtml} text \end{ifhtml}'' ignores `text'. The types are in upper case exactly as above. Do not use spaces. Lines starting with a `#' character are ignored. After the `.' everything is ignored to end of line. Example: \pagelength,MEASURE. 5.6 Font Configuration ====================== The file `fonts.cfg' contains the font name mapping. For example, this file determines what font is used to represent `\rm' characters in the RTF file. A line consists of a font name in LaTeX followed by comma and a font name in RTF. The end is marked by a `.'. No spaces are allowed. The LaTeX font will be converted to the RTF font when it is found in the LaTeX file. If multiple translations for the same LaTeX font are specified, only the first is used. All fonts in a LaTeX file that are not in this file will be mapped to the default font. All RTF fonts listed in this file will be in every RTF file header whether used or not. Lines starting with a `#' character are ignored. After the `.' everything is ignored to end of line. To add a RTF font not used as substitute for a LaTeX font -- for example a Symbol font used in `direct.cfg' -- use a dummy LaTeX name like in the following Dummy3,MathematicalSymbols. Make sure you use the correct font name. Take care of spaces in font names. The default fonts are named Roman `\rm', Slanted `\sl', Sans Serif `\sf', Typewriter `\tt', or Calligraphic `\cal'. 5.7 Language Configuration ========================== The file(s) `language.cfg' control the translation of LaTeX's "hardcoded" sectioning names. The standard LaTeX styles have some fixed Title names like `Part', `Reference' or `Bibliography' that appeared in English or German in the output with the original versions of LaTeX2RTF. It is unlikely that you will need to create a new `language.cfg' file. However, just look at one of the existing files and follow the pattern. The format is really simple. 6 Error Messages and Logging **************************** As stated in the Debugging section, LaTeX2RTF provides a means to control the amount of debugging information through the `-d#' switch. By using a debugging level of 4, you can get a pretty good idea of what LaTeX command caused the problem and what line that command might be found on. Warnings and error messages are output to stderr and by default listed in the console window. They can be redirected to a file "latex2rtf.log" by appending `2>latex2rtf.log' to the command line. `Fatal error messages' indicate a bug in the source code. PLEASE report them, if they do not apear in the documentation (*note Reporting Bugs::). `Error messages' always abort the program and are caused by conditions that prevent further conversion of the input file. Typically this is cause by LaTeX2RTF getting hopelessly confused by the number of braces in the LaTeX file. `Warning messages' inform you, that there is some conversion loss from LaTeX to RTF, or that the output file has some restrictions on some RTF Readers. Most of these warnings can be supressed by add the offending command to the `ignore.cfg' file. Error and Warning messages should follow the GNU Coding standards, i.e. they have the format inputfile':line: Error|Warning: message You can also control the level of debugging output by inserting `\verbositylevel{#}' in the LaTeX file. This is very handy if you have a large LaTeX file that is failing in only a small section. For example, problem free latex file .... \verbositylevel{5} problematic code \verbositylevel{0} will cause a huge amount of debugging information to be emitted for the problematic code. Error reporting and logging still has many inconsistencies, but it gets better with each release. Don't try to make any sense in debugging levels above 4, these are for my own delight only and can change significantly between versions. The `inputfile' may be incorrectly identified if it is incorporated through `\input' or `\include'. The line may be also be wrong at times. *Note Known Bugs::. 7 History & Copyright ********************* In 1994 the first Version of LaTeX2RTF was written by Fernando Dorner and Andreas Granzer of the Viena University supervised by Ralf Schlatterbeck in a one-semester course. They created a simple LaTeX parser and added most of the infrastructure for the program. This was version 1.0 of LaTeX2RTF. In 1995, work on LaTeX2RTF was continued in another one-semester course by Friedrich Polzer and Gerhard Trisko. The result was LaTeX2RTF version 1.5. Ralf Schlatterbeck (ralf "at" zoo.priv.at) maintained and extended LaTeX2RTF until 1998. In 1998 Georg Lehner (jorge_lehner "at" gmx.net) found the reference to LaTeX2RTF on the TeX Conversion Webpage (http://tug.org/utilities/texconv/index.html) of Wilfried Hennings and added some functionality and took over the maintainence of the program. The last version release by Georg is 1.8aa. The bulk of development post 1.8aa was done by Scott Prahl. Wilfried Hennings now coordinates the development of the program and maintains the project on SourceForge (http://sourceforge.net/projects/latex2rtf/) where there are also (low volume) mailing lists for users and developers. Mailing via one of these lists requires subscription to the list (to prevent spam). For subscription to these lists visit the page: users list (http://lists.sourceforge.net/lists/listinfo/latex2rtf-users) or developers list (http://lists.sourceforge.net/lists/listinfo/latex2rtf-developers) As of Januar 2017, version 2.3.12 of LaTeX2RTF is available. The contents of this manual were composed by copying shamelessly what was available in the original sources and documentation. 8 LaTeX2RTF under Development ***************************** 8.1 Unimplemented Features ========================== * LaTeX2RTF ignores some optional parameters of `\documentstyle' * Add the code to produce the corresponding chapter, section, and page numbering with headings and myheadings pagestyles. Implement `\markboth' and `\markright'. * To support `\tableofcontents' there would be two approaches: Transfer sectioning information, title text and then produce page numbers by the rtf- reader. Scan and label all of the sectioning commands while reading and then construct the sectioning information using these labels. Needs two passes on LaTeX input. 8.2 Missing options =================== Missing or buggy command line options. `-d' Information logging and Error reporting is not implemented consistently. Need to test and track problems with the linenumber and with the file name. `--long_names' It would be useful to implement the GNU long option names, e.g.: `-debug', `-output_file', `-quiet', etc. This could be done by switching to the GNU getopt package. 8.3 Known Bugs ============== 1. The first parameter of a \link{anchor}[ltx]{label} is converted to the rtf-output. Label is stored to hyperref for later use, the optional parameter is ignored. [ltx] should be processed as Otfried recommends it, to use for exclusive LaTeX output.e.g: \link{readhere}[~\Ref]{explaining: chapter}. Since {explaining:chapter} is yet read by LaTeX and hyperlatex when [...] is evaluated it produces the correct reference. LaTeX2RTF is only strolling from left to right through the text and can't remember what she will see in the future. 2. The diagnostics routine does not output the correct (actual) input filename. (`.aux', `.bbl', `\input'). 8.4 Reporting Bugs ================== Report bugs to to the bug tracking system at SourceForge (http://sourceforge.net/projects/latex2rtf/). Only report bugs for the latest version of LaTeX2RTF that is available. Please provide the following information and observe the following guidelines when reporting a bug in the program: 1. State the version of LaTeX2RTF that you are using. You can get the version by specifying the `-V' option to LaTeX2RTF. 2. Specify the your operating system and version. Be sure to check the file `Makefile' for settings that may be specific to your machine, especially for some versions of SunOS there may be settings which are needed to compile successfully. Do this before submitting a bug report. 3. If the program produces wrong output or does not work for you, include a short LaTeX file along with a description of the problem. Isolating the bug into a small LaTeX file does two things. First, it provides a file that can be used to test future versions of LaTeX2RTF and second, it certainly improves the chances that the bug will get some attention. Do not send me large LaTeX or RTF files, I simply do not have the time to wade through large files to search for a bug! 4. Be patient. I am maintaining the program in my free time. I did not write most of the code. Often I do not have the time to answer to your question. I will, however, try to fix reported bugs in upcoming releases. 8.5 Todo List ============= Scott's ToDo list * Use lex/yacc to implement getSection * Add support for pagestyle * Better support for ignoring commands Georg's todo list * Make this Manual more consistent, the ToDo and Known Bug List shorter and the Features List longer. * Harmonize all of the error and warning messages. * Put warnings everywhere applicable about producing RTF 1.4 tokens. * Provide an Error and Warning recovery guide to the user. * Add a chapter with lists of all LaTeX commands that convert, and that do not convert to RTF, including their status (for future releases, never, partially functional, ...). 8.6 Command List ================ Listed here are all the LaTeX commands currently parsed by LaTeX2RTF. Note: inclusion in this list does not mean that a command is fully and correctly handled by LaTeX2RTF. In some cases the commands here are place-holders only, and are not implemented at all. The list is provided to encourage developers to note any departures from the behaviour that LaTeX users will expect. The location of the commands is noted to assist anyone interested in hacking on the C source code. This list is a work in progress, and may not be immediately useful to general users, other than to indicate those commands that we have at least contemplated implementing. 8.6.1 General Commands ---------------------- These commands are found in the `commands[]' array in commands.c. They are arranged alphabetically within sections according to function. 8.6.1.1 Basic Commands ...................... All listed commands work as expected. begin centerline end endnote footnote raggedright the today vcenter 8.6.1.2 Font Commands ..................... All listed commands work as expected. bf bfseries cal em emph enotesize footnotesize HUGE Huge huge it itshape LARGE Large large mathbf mathcal mathit mathmd mathnormal mathrm mathsc mathsf mathsl mathtt mathup mdseries mit normalfont normalsize rm rmfamily sc scfamily scriptsize scshape sf sffamily sl slshape small ssmall textbf textfont textit textmd textnormal textrm textsc textsf textsl texttt textup tiny tt ttfamily underbar underline upshape 8.6.1.3 Logos ............. All listed commands work as expected. AmSLaTeX AmSTeX BibTeX kern LaTeX latex LaTeXe lower LyX SLiTeX TeX 8.6.1.4 Special Characters .......................... These commands all work as expected. \ acute b bar breve c check d ddot dot grave H hat i j l L r tilde u v vec 8.6.1.5 Sectioning Commands ........................... chapter chapter* paragraph paragraph* part part* section section* subparagraph subparagraph* subsection subsection* subsubsection subsubsection* 8.6.1.6 Uncategorized ..................... These commands need to be organized into new or existing sections. abstract addcontents Ignored addcontentsline Ignored addvspace Ignored aleph Alph alph Ignored alpha Alpha Ignored amalg and angle appendix Ignored approx arabic Ignored ast author baselineskip because beta Beta bibentry bibitem bibliography bibliographystyle bibliographystyle Ignored bigskip bot BoxedEPSF bullet cap caption cdot cdots centering char chi Chi circ cite citeonline cleardoublepage clearpage clubsuit cong contentsline coprod cup date ddots delta Delta dfrac Diamond diamondsuit div doteq dotfill There is no rtf code for dotfill; LaTeX2RTF inserts an ellipsis only. dots dots downarrow Downarrow efloatseparator ell emptyset endinput endnotemark Ignored ensuremath epsfbox epsffile epsilon eqref equiv eta exists fbox fbox fnsymbol Ignored footnotemark Ignored forall frac Frac framebox Ignored frenchspacing Ignored gamma Gamma ge geq gg glossary Ignored glossaryentry Ignored hbar hbox heartsuit hsize hslash hspace Ignored hspace* Ignored htmladdnormallink htmlref iiint iint Im in include includegraphics includegraphics* includeonly Ignored indent index indexentry Ignored infty input int int iota kappa label lambda Lambda land langle lceil ldots le left leftarrow Leftarrow leftharpoondown leftleftarrows leftrightarrow Leftrightarrow leftrightarrows leq let Ignored letterspace lfloor lim liminf limsup linebreak Ignored lineskip listoffigures listoftables ll longleftarrow longleftrightarrows longrightarrow lor makebox Ignored maketitle mapsto marginpar Ignored markboth Ignored markright Ignored matrix mbox measuredangle medskip mho moveleft moveright mp mu multicolumn nabla ne nearrow neg neq newblock newcount Ignored newfont Ignored newpage newsavebox Ignored nobibliography Ignored nobreakspace nocite noindent nolinebreak Ignored nonfrenchspacing Ignored nonumber nopagebreak Ignored notag nu numberline nwarrow omega Omega omicron onecolumn onlinecite oplus oslash otimes output Ignored overline pagebreak pagenumbering Ignored pageref pagestyle Ignored par parbox partial perp phi Phi pi Pi pm prec printindex prod prod propto protect Ignored psfig psfrag Ignored psi Psi qquad quad raisebox Ignored rangle rceil Re ref refstepcounter rfloor rho right Rightarrow rightarrow rightharpoonup rightleftarrows rightleftharpoons rightrightarrows Roman Ignored roman Ignored rule samepage Ignored savebox Ignored sbox Ignored searrow setbox settowidth Ignored sigma Sigma sim simeq smallskip spadesuit sqrt stackrel stepcounter Ignored stretch Ignored subset subseteq succ sum sum supset supseteq surd swarrow tableofcontents tau textalpha textbeta textbullet textchi textcolor textDelta textdelta textellipsis textepsilon texteta textGamma textgamma textiota textkappa textLambda textlambda textmu textnu textOmega textomega textperiodcentered textPhi textphi textPi textpi textPsi textpsi textSigma textsigma textsubscript textsuperscript textTau texttau textTheta texttheta textXi textxi textzeta thanks therefore Theta theta tikzpicture times title to triangleleft triangleright twocolumn typeaout Ignored Typein Ignored typein Ignored typeout Ignored Uparrow uparrow updownarrow Updownarrow upsilon Upsilon url usebox Ignored value varepsilon varnothing varphi varpi varpropto varsigma vartheta vbox vdots vee verb verb* vref vsize vskip vspace vspace* wedge wp xi Xi zeta 8.6.2 Preamble Commands ----------------------- These commands are found in `PreambleCommands[]' in commands.c, and are implemented in preamble.c. addtocounter addtolength baselineskip celsius cfoot chead cline DeclareRobustCommand DeclareRobustCommand* def degreecelsius documentclass documentstyle doublespacing Currently, the only command from the setspace package that is implemented, and the only way to modify line spacing. endnotetext EUR euro evensidemargin fancyfoot fancyhead flushbottom footnotetext geometry Currently recognizes *ratio, *centering, *margin, left, right, inner, outer, top, bottom, right, left (including vmargin, hratio etc.) headheight headsep hline hoffset htmladdnormallink htmlref hyphenation iflatextortf ifx include input latextortffalse Ignored latextortftrue Ignored lfoot lhead listoffiles Ignored makeglossary Ignored makeindex Ignored makelabels Ignored markboth Ignored markright Ignored newcommand newcounter newenvironment newif newlength newtheorem nobreakspace nofiles Ignored oddsidemargin pagenumbering Ignored pagestyle parindent parskip providecommand raggedbottom renewcommand renewenvironment renewtheorem Ignored resizebox resizebox* rfoot rhead setcounter setlength signature textheight textwidth theendnotes thepage thispagestyle Ignored topmargin usepackage verbositylevel voffset 8.6.3 Letter Commands --------------------- Found in `LetterCommands[]' in commands.c. address cc closing encl opening ps signature 8.6.4 Language Commands ----------------------- 8.6.4.1 German Commands ....................... Found in `GermanModeCommands[]' in commands.c. ck glqq glq grq grqq 8.6.4.2 Czech Commands ...................... uv 8.6.4.3 French Commands ....................... deuxpoints dittomark FCS fg fup ieme iemes ier iere ieres iers inferieura LCS lq lqq numero Numero numeros Numeros og pointexclamation pointinterrogation pointvirgule primo quarto rq rqq secundo superieura tertio up 8.6.4.4 Russian Commands ........................ CYRA cyra CYRB cyrb CYRC cyrc CYRCH cyrch CYRCHSH cyrchsh CYRD cyrd CYRE cyre CYREREV cyrerev CYRERY cyrery CYRF cyrf CYRG cyrg CYRH cyrh CYRHRDSN cyrhrdsn CYRI cyri CYRISHRT cyrishrt CYRK cyrk CYRL cyrl CYRM cyrm CYRN cyrn CYRO cyro CYRP cyrp CYRR cyrr CYRS cyrs CYRSFTSN cyrsftsn CYRSH cyrsh CYRT cyrt CYRU cyru CYRV cyrv CYRYA cyrya CYRYU cyryu CYRZ cyrz CYRZH cyrzh 8.6.5 Citation Commands ----------------------- 8.6.5.1 Apacite Commands ........................ AX BAnd BBA BBAA BBAB BBAY BBC BBCP BBCQ BBN BBOP BBOQ BCAY BCBL BCBT BCHAIR BCHAIRS BCnt BCntIP BED BEd BEDS Bem BIP BMTh BNUM BNUMS BOthers BOWP BPG BPGS BPhD BREPR BTR BTRANS BTRANSS BUMTh BUPhD BVOL BVOLS citeA citeauthor citeNP citeyear citeyearNP fullcite fullciteA fullciteauthor fullciteNP shortcite shortciteA shortciteauthor shortciteNP 8.6.5.2 AuthorDate Commands ........................... citename shortcite 8.6.5.3 Harvard Commands ........................ cite citeaffixed citeasnoun citename citeyear citeyear* harvardand harvarditem harvardyearleft harvardyearright possessivecite 8.6.5.4 HyperLatex Commands ........................... Cite link Pageref Ref S xlink 8.6.5.5 Apacite Commands ........................ bibpunct cite citealp Citealp citealp* citealt Citealt citealt* citeauthor Citeauthor citeauthor* citep Citep citep* citet Citet citet* citetext citeyear citeyearpar 8.6.6 Acronym Commands ---------------------- usepackage [options] {acronym} ac acfi acro acrodef acrodefplural acused 8.6.7 Other Commands -------------------- Other Commands: item caption center 8.6.8 Environments ------------------ Environments processed - found in `params[]' in commands.c. abstract acknowledgments align align* alltt array bf bfseries center comment compactenum compactitem description displaymath document em enumerate eqnarray eqnarray* equation equation* figure figure* flushleft flushright htmlonly Ignored it itemize itshape landscape latexonly Ignored letter list longtable longtable* math mdseries minipage multicolumn music picture quotation quote rawhtml Ignored rm rmfamily sc scshape sf sffamily sl sloppypar slshape small tabbing table table* tabular tabular* thebibliography theindex Ignored titlepage tt ttfamily verbatim Verbatim verse 9 Function Index **************** 10 Concept Index **************** latex2rtf-2.3.18/doc/credits0000777000175000017500000000226613050672354016063 0ustar wilfriedwilfried* support for pdf->png files Adam Maxwell * leftrightarrows support Nino Vessella * Equation Fixes Christophe Bernard * Cyrillic support Mihail Baikov * Font fixes for latex test files Peter Dyballa * Many bug fixes, patches and suggestions Spago * suggestion for -W option Thomas D. Schneider * bug fix for citations with space Thomas D. Schneider * bug fix reports by W. Hennings * various code adapted from ltx2rtf by D. Taupin * core dump (assignment to string constant) in tabular environment: Peter FELECAN, Laurent Mugnier * \glq \glqq problem, german umlaut letters Oliver Moldenhauer * Problem with superscripts and subscripts $a^2$ vs. $a^{2}$ (only 1.1?????) daniele vigo, Franz-Werner Gergen * Problem with environment parsing Vladimir Menkov (fix), Laurent Mugnier * Add \oe to direct.cfg Laurent Mugnier * Add \oddsidemargin to ignore.cfg Laurent Mugnier * Wrong numbering of nested enumerates (+ fix) Ulrich Ziegler * {\em increment\/} -> {\i increment}} (only 1.1?????) J|rgen N|rgaard * Problem with wrong braces in \label following \section (only 1.1?????) J|rgen N|rgaard * Windows GUI shell (l2rshell): Mikhail Polianski latex2rtf-2.3.18/doc/latex2rt.txt0000644000175000017500000002171013664471447017010 0ustar wilfriedwilfriedLATEX2RTF(1) User Commands LATEX2RTF(1) NAME latex2rtf - Convert a LaTeX file to an RTF file SYNTAX latex2rtf [-hlpFSVW] [ -d# ] [ -D# ] [ -M# ] [ -se#] [ -sf#] [ -t# ] [ -Z# ] [ -a auxfile ] [ -b bblfile ] [ -C codepage ] [ -i language ] [ -o outputfile ] [ -P /path/to/cfg ] [ -T /path/to/tmp ] [ inputfile ] DESCRIPTION The latex2rtf command converts a LaTeX file into RTF text format. The text and much of the formatting information is translated to RTF. -a auxfile Used to specify a particular cross-referencing file. When this option is omitted, the auxfile is assumed to be the same as inputfile with the .tex suffix replaced by .aux. -b bblfile Used to specify a particular bibliography file When this option is omitted, the bblfile is assumed to be the same as inputfile with the .tex suffix replaced by .bbl. -C codepage used to specify the character set (code page) used in the LaTeX document for non-ansi characters. codepage may be one of the following: ansinew, applemac, cp437, cp437de, cp850, cp852, cp855, cp865, cp866, decmulti, cp1250, cp1252, koi8-r, koi8-u, latin1, latin2, latin3, latin4, latin5, latin9, maccyr, macukr, next, raw, raw437, raw852, raw1250, raw1251, and raw1253. The default behavior is to use ansinew (same as cp1252). For conve‐ nience, just the numbers 437, 437de, 850, 852, 855, 866, 1250 or 1252 may be specified. The raw character set encoding prevents any 8-bit character translation. The RTF file is marked to use the same encoding as the default encoding for the program interpreting the RTF file. This is particularly useful when translating a file written in a language (e.g., czech) that maps poorly into the ansinew (west‐ ern european) character set. -d# Write extra debugging output to stderr. Higher numbers cause more debugging output and range from 0 (only errors) to 6 (absurdly many messages). The default is 1 (Warnings and Errors only). -D dots_per_inch Used to specify the number of dots per inch in equations that are converted to bitmaps and for graphics that must be con‐ verted. Default is 300 dpi. -E# where # selects the type of figure handling desired. RTF does not support insertion of PS, PDF, or EPS file types. These fig‐ ures must be converted to a bitmap format and then inserted. One trick is to insert the filenames into the RTF file and then in post-processing, insert the file. These options can be added together. -E3 insert all figures (DEFAULT) -E0 no figures in the RTF -E1 insert figures having RTF-supported formats -E2 convert and insert unsupported figure formats -E4 insert only filenames for supported file formats -E8 insert only filenames for unsupported file formats -f use fields -f0 do not use fields in RTF. This is handy when primitive RTF editors are being used to view the RTF output. -f1 use fields for equations but not \ref and \cite. -f2 use fields for \ref and \cite but not equations. -f3 use fields when possible. This is the default and is most useful when the RTF file is being exported to be used in Word. This retains the most information from the original LaTeX file. -F use LaTeX to create bitmaps for all figures. This may help when figures are not translated properly. -h Print a short usage note -i language used to set the idiom or language used in the LaTeX document language may be one of the following afrikaans, bahasa, basque, brazil, breton, catalan, croatian, czech, danish, dutch, eng‐ lish, esperanto, estonian, finnish, french, galician, german, icelandic, irish,italian, latin, lsorbian, magyar, norsk, nynorsk, polish, portuges, romanian, russian, samin, scottish, serbian, slovak, slovene, spanish, swedish, turkish, usorbian, welsh. The default is english. -l Assume LaTeX source uses ISO 8859-1 (Latin-1) special characters (default behavior). -o outputfile Redirect output to outputfile Unless an outputfile is specified with the -o option, the resulting RTF is produced in a file with .tex replaced by .rtf. -M# where # selects the type of equation conversion. -M1 displayed equations to RTF -M2 inline equations to RTF -M4 displayed equations to bitmap -M8 inline equations to bitmap -M16 insert Word comment field containing the raw LaTeX equation -M32 insert raw LaTeX equation delimited by $...$ and \[...\] -M64 displayed equations to EPS files with filenames in RTF -M128 inline equations to EPS files with filenames in RTF These options may be added together to get different results -M0 no equations fields in the RTF. -M3 converts both inline and displayed equations to RTF (DEFAULT). -M12 converts inline and displayed equations to bitmaps. -M192 converts inline and displayed equations to eps files and inserts a tag in RTF. Bitmap conversion requires a working latex2png script. Produc‐ ing bitmaps is slow. -p Escape printed parentheses in mathematical formulas, as some versions of Word (e.g Word 2000) have deep psychological prob‐ lems with EQ fields using quoted parentheses. If Word displays some formulas with parentheses as 'Error!', try this option. See also the -S option. -P /path/to/cfg used to specify the directory that contains the @code{.cfg} files -se# selects the scale for equation conversion, where # is the scale factor (default 1.00). -sf# selects the scale for figure conversion, where # is the scale factor (default 1.00). -S Use semicolons to separate arguments in RTF fields. This is needed when the machine opening the RTF file has a version of Word that uses commas for decimal points. This also can fix displaying some formulas as 'Error!' You may also need to try the -p option. -t# selects the type of table conversion. -t1 convert tables to RTF (default) -t2 convert tables to bitmaps -T /path/to/tmp used to specify the folder where to put temporary files. -V Prints version on standard output and exits. -W Emit warnings directly in RTF file. Handy for catching things that do not get translated correctly. -Z# Add # close braces to end of RTF file. (Handy when file is not converted correctly and will not open in another word proces‐ sor.) CONFIGURATION FILES The configuration files are searched first in any directory specified by -P, then in the location specified by the environment variable RTF‐ PATH, and finally in the location CFGDIR specified when latex2rtf was compiled. If the configuration files are not found then latex2rtf aborts. The configuration files allow additional fonts to be recog‐ nized, additional simple commands to be translation, and additional commands to be ignored. CAUTION The input file must be a valid LaTeX file. Use LaTeX to find and fix errors before converting with latex2rtf. The configuration files direct.cfg and fonts.cfg are in the correct directory. You may have to change fonts.cfg or direct.cfg to suit your needs. BUGS Some might consider RTF to be a bug. Some environments are currently ignored. Translation without a LaTeX generated .aux file is poor. REPORTING BUGS Report bugs to to the bug tracking system at http://source‐ forge.net/projects/latex2rtf/. Only report bugs for the latest version of latex2rtf that is available. Please identify your operating system. If the program produces wrong output or does not work for you, INCLUDE A SHORT LATEX FILE that demonstrates the problem. The shorter the LaTeX file, the quicker your bug will get addressed. Bug reports with non-existent LaTeX files are not welcomed by the developers. Do not bother to send RTF files, since these are usually unhelpful. SEE ALSO latex(1), rtf2LaTeX2e(1), LaTeX User's Guide & Reference Manual by Leslie Lamport For complete, current documentation, refer to the Info file latex2rtf.info, the PDF file latex2rtf.pdf or the HTML file latex2rtf.html which are made from the TeXInfo source file latex2rtf.texi. latex2rtf 2.3 October 2012 LATEX2RTF(1) latex2rtf-2.3.18/doc/web/0000777000175000017500000000000013664230746015255 5ustar wilfriedwilfriedlatex2rtf-2.3.18/doc/web/style.css0000777000175000017500000000551313050672354017130 0ustar wilfriedwilfriedbody { text-align: center; min-width: 780px; background: #5d5048; } div#wrapper { margin: 0 auto; margin-top: 50px; border: 1px solid #ffffff; width: 780px; } div#logo { float: left; position: relative; width: 80px; height:500px; background: #5d5048 url('logo.png'); background-position: bottom right; background-repeat: no-repeat; } b { color: #ffffff; font-weight: bold; } div#footer { width: 780px; clear: both; margin: 0 auto; font-family: trebuchet ms,arial,verdana; font-size: 8pt; font-weight: normal; color: #ffffff; letter-spacing: 1.1pt; padding-top: 20px; text-align: right; } div#footer A { color: #ffffff; font-weight: normal; text-decoration: none; text-transform: uppercase; } div#footer a[href]:hover { text-decoration: underline; } div#content a:link { color: #A89D82; font-weight: bold; text-decoration: none; } div#content a:visited { color: #A3A3A3; font-weight: bold; text-decoration: none; } div#content a[href]:hover { text-decoration: underline; } h1 { color: #bbc6b6; font-weight: bold; font-size: 24pt; } h2 { color: #bbc6b6; font-weight: bold; font-size: 15pt; } h3 { color: #bbc6b6; font-size: 12pt; font-weight: bold; } pre, code, kbd, samp, tt{ font-family:courier, "courier new", monospace; font-size:1em; } div#content { text-align: left; padding: 15px 15px 15px 15px; float: right; width: 640px; height: 100%; font-family: trebuchet ms,arial,verdana; font-size: 12pt; font-weight: normal; color: #ffffff; border: 1px solid #ffffff; } div#content pre{ font-size: 10pt; } div#topbar { height: 75px; font-family: trebuchet ms,arial,verdana; font-size: 8pt; font-weight: normal; text-align: left; padding-left: 25px; padding-top: 10px; color: #ffffff; letter-spacing: 1.1pt; border-bottom: 1px solid #ffffff; clear: left; } div#topbar h1 { color: #bbc6b6; font-weight: bold; font-size: 25px; } div#menu { float: right; width: 780px; } div#menu A { display: block; width: 144px; position: relative; left:0px; top: 0px; z-index: 50; float: left; border: 1px solid #ffffff; height: 25px; line-height:25px; background: #998c84 url('arrow.gif'); background-position: center left; background-repeat: no-repeat; font-family: trebuchet ms,arial,verdana; text-align: left; text-indent: 25px; font-size: 14px; text-decoration: none; padding-right: 10px; padding-top: 3px; font-weight: bold; color: #ffffff; text-transform: uppercase; } div#menu a:hover { background: #423433 url('arrow.gif'); background-position: center left; background-repeat: no-repeat; color: #bbc6b6; } latex2rtf-2.3.18/doc/web/arrow.gif0000777000175000017500000000114613050672354017075 0ustar wilfriedwilfriedGIF89aćLĎ1Î2Ę2ůęçÉ3Ë3Î3Ç0ł °"Ç.ť* Ę4ÝrNš)ĐDÖZ4ÎDýřőĎ>ť' ą"Ă.Í= Ě1Ě+˝) Č+Ŕ+ Ë-ź, °"ľ!Ę,ÚnHĘ4Î2Ě6ź( Î4Í1ůďćĹ-Öa6˙˙ýÝsLČ0Ă.˛$Ě5Ë1Ĺ1ş) Ö[1Ë5Đ< Í/Ë0ŕ‚`óÓČÄ/Í7ü˙˙ŕ‰küůôŠË3˙ţ˙Í2Í3Ě4Ë4Ě2Í3˙˙˙˙˙˙!ůL,ÀL‚‚/: +ƒŽL 0HE>&)=1FC2FI@EJHC5B‚ IH%HG3*;GIJ'L J(CI!G6F$HJJ J, .#K<GEI4FJ7ADD?DK-K"89Jčęěîđňôěá;PíZśmÝž…WŽƒ0bƐ)c㠚´ L`ɢe —.^ž€ újTŠSŠVŐxiRĽK™6uzDČ"EŒ;latex2rtf-2.3.18/doc/web/usage.html0000777000175000017500000106701513250442012017242 0ustar wilfriedwilfried LaTeX2rtf

LaTeX2rtf

LaTeX2RTF

This file documents LaTeX2RTF, a converter that translates LaTeX to RTF.

Copyright 1998-2002 Georg Lehner, updates Copyright 1999-2016 by Wilfried Hennings and Scott Prahl, with contributions by Mikhail Polianski.

Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies.

Permission is granted to copy and distribute modified versions of this manual under the conditions for verbatim copying, provided also that the sections entitled “Copying” and “GNU General Public License” are included exactly as in the original, and provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one.

Permission is granted to copy and distribute translations of this manual into another language, under the above conditions for modified versions, except that this permission notice may be stated in a translation approved by the Free Software Foundation.


1 Introduction

LaTeX2RTF is a translator program from LaTeX text into “rich text format” files. These files are commonly referred to as RTF files. RTF is a published standard format by Microsoft. This standard can be ambiguous in places and Microsoft ignores parts of the standard it finds inconvenient, but RTF is widely used by many WYSIWIG text editors and is supported by Microsoft Word and most text processors.

LaTeX2RTF translates the text and as much of the formatting information from LaTeX to RTF. Be forewarned that the typeset output is not nearly as good as what you would get from using LaTeX directly. So, why bother translating? Consider,

  1. You use LaTeX and hate everything beginning with MS-... Nevertheless, you have to share your documents with people who don’t even know that there are alternatives to MS-...
  2. You know somebody who frequently sends you very fine LaTeX documents. Unfortunately, you are “on the other side” and need to import her files, steal some part, and then desktop publish it in your fine MS-… environment.
  3. You like LaTeX and BibTeX. You interact with the rest of the world. You know someone that wants to include your writing in a Word document.

There are drawbacks to the conversion process. In fact, don’t expect any LaTeX file to be converted as you would like, don’t expect it to be converted without errors or warnings, and don’t be especially surprised when it doesn’t convert at all. LaTeX2RTF is known to have many bugs and many missing features. Paradoxically, this number seems to grow more and more with each day. However, we can categorically state that there are some special cases in which a LaTeX file will be translated to RTF satisfactorily by LaTeX2RTF—This was sort of disclaimer, ok? OK!

LaTeX is a system for typesetting text and therefore it focuses on the logical structure of a document, whilst RTF is meant to be a transport format for a family of Desktop Publishing Software, dealing mostly with the design of a text.

Although the commands and styles in LaTeX are much more flexible and standardized than in RTF, only a small subset of commands has been implemented to date (see Unimplemented Features).

Some of the capabilities of LaTeX2RTF are restricted in scope or buggy (see Known Bugs).

RTF is a moving target, because Microsoft does not stop inventing new extensions and features; consequently you cannot view newer RTF files with older word processors. The syntax and semantics of RTF are somewhat artistic, i.e., you can generate a syntactically correct RTF file that cannot be displayed by some/most word processors. For more details on RTF the specification consult the links at http://latex2rtf.sf.net/


2 Installation


2.1 General

The documentation of the program is found in the doc/ directory in the file latex2rtf.texi in the GNU TeXInfo format. For your convenience, you can find HTML and PDF versions of the manual there as well.
Note: In this manual, the terms "directory" and "folder" are used interchangeably.


2.2 Obtaining LaTeX2RTF

LaTeX2RTF is available for many Unix Platforms, for the Macintosh, and for MS-DOS, including all versions of MS Windows.

The latest version of LaTeX2RTF is available at SourceForge and — with some delay — on CTAN sites: e.g., http://www.dante.de or http://www.ctan.org.

The DOS package will also run under all MS Windows versions up to Windows 7, except 64bit systems. It requires an i386 processor or better.
It should only be used on older Microsoft systems.
For Win9x, ME, NT, or newer, you should use the win or win-NO-GUI package.

The win-NO-GUI package only runs under Win32 (Win9x, ME, NT, 2000, XP, 2003, Vista, Win7). From LaTeX2RTF version 2.0.0 up it also runs on 64bit systems.

The win package is the win-NO-GUI package plus graphical user interface (GUI) shell (l2rshell) and installer.
It only runs under Win NT, 2000, XP, 2003, Vista, and Win7.
From LaTeX2RTF version 2.0.0 up it also runs on 64bit systems.

The win64 package (only LaTeX2RTF version 1.9.19) is the win package but with 32bit versions of the shell utilities so that it also runs on 64bit systems. From LaTeX2RTF version 2.0.0 up, there is no separate win64 package, as the win32 package also runs on 64bit systems.

There are a few people working on LaTeX2RTF, and some more make contributions, coordinated by Wilfried Hennings (texconvfaq “at” gmx.de). See the SourceForge project pages for the latest news.


2.3 UNIX

To install,

  1. Edit Makefile for your local configuration. In particular, pay attention to the DESTDIR variable. If you do not have root access you might wish to set the makefile variable DESTDIR to be your home directory.

    On some machines the cc compiler will issue errors. Therefore the default compiler command in the Makefile is CC=gcc.

  2. From version 1.9.13 up, LaTeX2RTF supports conversion of LaTeX equations to bitmaps using the shell script latex2png, found in scripts/. latex2png requires that LaTeX, Ghostscript and ImageMagick are installed. LaTeX2RTF will translate documents without a working latex2png, but some features will be missing. You can verify that the latex2png script is working by typing make in the scripts/ directory.
  3. make

    If this is not your first time installation, you may want to preserve your old configuration (*.cfg) files. Copy them to a safe place before installing.

    On IBM AIX, the IBM make utility does not support some of the commands used in Makefile. In this case use gmake (from GNU) instead.

    Sun has decided to support the XPG4 standard on Solaris by an alternative set of binaries. To allow bitmap conversion of equations, two things are needed. First, change the first line of latex2png to #!/usr/xpg4/bin/sh Second, define the XPG4_GREP environment variable accordingly, for bash-like shells XPG4_GREP=/usr/xpg4/bin/grep; export XPG4_GREP or for tsch-like shells setenv XPG4_GREP /usr/xpg4/bin/grep.

  4. make install

    If your mkdir doesn’t support the -p option, then create the necessary directories by hand and remove the option from the $MKDIR variable. If you have other problems, just copy latex2rtf and latex2png to a binary directory, and move the contents of the cfg/ directory to the location specified by $CFG_INSTALL.

  5. make check

    [OPTIONAL] This tests LaTeX2RTF on a variety of LaTeX files. Expect a whole lot of warnings, but no outright errors. (On IBM AIX, use gmake check.) Note that this will check the basic functionality of the latex2png script, and then that of latex2rtf.

  6. make install-info

    [OPTIONAL] This installs .info files for use with the info program.

You no longer need to define the environment variable RTFPATH. This is only necessary if you move the directory containing the .cfg files. Just define RTFPATH to be the path for the new location of the cfg directory.


2.4 plain DOS

The UNIX and Mac packages do not contain an executable for DOS or Windows. You may compile it yourself (with djgpp or MinGW) or get the
DOS package as file latex2rtf-x.x.x_dos.zip (where x.x.x is the version number)
or the win-NO-GUI package as file latex2rtf-x.x.x_win-NO-GUI.zip (no installer, no graphical user interface (GUI))
from SourceForge

The DOS package contains a precompiled executable which should run under plain DOS and also in the command prompt (or “console”) of any MS Windows system including Vista and Windows 7 but not on 64bit systems.

To install the DOS or win-no-GUI package of LaTeX2RTF, extract all files from the zip archive, preserving the folder structure (winzip: check “use folder names”), preferably to C:\l2r, or under Windows, to your "Program Files" folder (which ever it is named in your system) because then it will find its cfg files by default.
If you extracted them to another folder (e.g. C:\my_files\l2r), either edit the file L2RPREP.BAT and change the folder C:\l2r to where you put them, or specify the path to the cfg folder in the command line.
Avoid blanks in folder and file names!

Make sure that the folder containing the file L2RPREP.BAT is in your search path, or put this file into a folder which is in your search path.
To display the current search path, enter PATH from the command prompt (with no arguments).

Under plain DOS, conversion of equations or figures to bitmaps is not possible because Ghostscript and ImageMagick are not available for plain DOS.


2.5 MS Windows systems

To install LaTeX2RTF on a MS Windows system (WinNT, Win2000, WinXP, Vista, Win7), download the win package, execute the latex2rtf-x.x.x_win.exe (where x.x.x is the version number) and follow the instructions.

Note: The installer and GUI shell do not support Win9x and WinMe since LaTeX2RTF v.1.9.17. If you have one of these systems, you should use the win-NO-GUI package (1.9.19 and up) of LaTeX2RTF.

To start the program double-click the LaTeX2RTF icon, or drag and drop a .tex file onto the icon.

If your LaTeX document refers to external graphic files, e.g. eps, or you want to use the option to convert equations to bitmaps, you must have LaTeX, ImageMagick and Ghostscript installed. These programs are freely available for download at http://www.miktex.org/, http://www.imagemagick.org and http://www.ghostscript.com

The following versions were available at the time of writing and tested with LaTeX2RTF version 2.3.11:
- MikTeX 2.9
- Ghostscript 9.19
- ImageMagick-7.0.1-8-Q16-x86-dll.exe

When installing ImageMagick, be sure to choose (check)
"Install legacy utilities (e.g. convert)"

If MikTeX, ImageMagick and Ghostscript are installed, the paths to their executables are detected automatically. If for any reason this doesn’t happen, these paths can be specified manually in the “Environment” tab of the LaTeX2RTF GUI shell window.

If you need to start LaTeX2RTF not from its own shell but from commandline or another Windows application, you need to add the folder containing the latex2png script and the helper programs to the search path.
Some applications (e.g. Lyx) allow to temporarily add the path by specifying it in the options.
If this is not possible, you can add the latex2rtf folder to Windows’ default path like follows:

To add a folder – e.g. C:\Program Files\latex2rtf – to the search path:

  • Note that the folder name "Program Files" contains a blank. This would lead to some problems as some parts of the latex2rtf program package interpret the blank as a parameter delimiter. Therefore in the following example the folder name "Program Files" is replaced by its DOS equivalent "PROGRA~1" which has the additional effect that this is similar for several if not all European languages.
  • Win95, Win98, WinME
    • Open the file C:\AUTOEXEC.BAT either with Edit (DOS) or with Notepad (Windows).
    • At the end of that file, add the line PATH=C:\PROGRA~1\latex2rtf;%PATH%
    • Save the file to its original location. Shutdown and reboot the PC.
  • WinNT, Win2000, WinXP, Vista, Win7
    • Right-click “My Computer” (German: “Arbeitsplatz”), then select “Properties”;
    • NT: Click the “Environment” tab;
      XP and up: Click the “Advanced” tab, then the “Environment variables” button;
    • Find the line beginning with PATH= and insert the string
      C:\PROGRA~1\latex2rtf;
      so that the complete line looks like
      PATH=C:\PROGRA~1\latex2rtf;C:\WINDOWS;...
    • Click "OK"

If you do NOT use the GUI (l2rshell.exe), either the folders where TeX, ImageMagick and Ghostscript are installed must also be in your search path, or you must edit the file L2RPREP.BAT, ensure that the pathes in this file point to the folders where TeX, ImageMagick and Ghostscript are installed on your machine, and call l2rprep before calling latex2rt.
Or you edit l2r.bat and call l2r instead of calling latex2rt.

If you DO use the GUI (l2rshell.exe), the TeX, ImageMagick and Ghostscript folders are automatically added to the search path by the GUI.

When equations are to be converted to bitmaps, for each equation LaTeX2RTF first writes a temporary l2r_nnnn.tex file to disk which consists of only the equation to be converted. It then sends the call for "bash latex2png l2r_nnnn.tex" to the operating system.
In previous versions of latex2rtf, some users got the message “Out of environment space” (can occur only under Windows 95, Windows 98 or Windows ME); this should be solved now by using bash.exe instead of command.com.


2.6 Macintosh

If you want a MacOS X version, make sure that you have installed the developer tools CD that is appropriate for your OS version, and then follow the directions above for a UNIX installation. Alternatively you can install using fink http://www.finkproject.org/ and http://sourceforge.net/projects/fink/.

As of 2006-01-30 there was a GUI shell for Macintosh at
http://www.inf.ethz.ch/personal/fischerk/LaTeX2rtf/index.html
but now (Nov. 2013) this is not available anymore.

There is a PPC port of an old version 1.9k for Classic MacOS LaTeX2RTF. To convert a LaTeX file using this version, drag the file onto the LaTeX2RTF icon. The translation is best if there are .aux and .bbl files in the same folder as the .tex file to be converted. These should be generated using LaTeX and bibtex.


2.7 Problems Compiling

The code for LaTeX2RTF is standard ANSI C. Some possible pitfalls are

  • Not correctly defining your compiler in the Makefile. The default is to use gcc.
  • Encountering errors because the compiler options. During development all compiler warnings are turned on. However, different compilers have different interpretations of -Wall and may generate errors that were not found in a different development system. Please report these, but a quick fix is to remove all compiler options.

2.8 Problems with make check

All the files in the test directory are converted (with varying degrees of success) using LaTeX2RTF and are tested before most CVS check-ins and with all released tarballs. There will be many warning messages, but there should be no actual error messages. If you do not have a working latex2png script, then some of the files will fail to be translated.


3 Using LaTeX2RTF


3.1 General Assumptions

LaTeX2RTF assumes that the .tex file you want to convert is a valid LaTeX document. The chances of a successful LaTeX2RTF conversion are slightly better than the proverbial snowball’s if the .tex file doesn’t latex properly. Use LaTeX to find and correct errors before using LaTeX2RTF.
LaTeX2RTF also needs the .aux file and .bbl file which are generated by running latex on the .tex file

To correctly convert font names you must edit the fonts.cfg configuration file. This file is used to specify the needed font names and how the LaTeX default font names should be converted to RTF (see Font Configuration). LaTeX variables and user defined commands are not evaluated. They will be simply ignored. To let LaTeX2RTF know the names of variables you can add them in the ignore.cfg file (see Ignore Command).

The environment variable RTFPATH may contain a search path for the support files (all files ending in .cfg). If no file is found during the search in the search-path or if the environment variable is not set, the compiled-in default for the configuration-file directory is used. If the files are not found at all the program aborts.

In the DOS and Windows versions the search path is separated by ‘;’ in the Unix version by ‘:’. For the paths themselves apply ‘\’ and ‘/’. A separator may appear at the beginning or ending of RTFPATH.

Make sure that the configuration files are in the correct directory (or folder). LaTeX2RTF will need at least fonts.cfg, direct.cfg, ignore.cfg, english.cfg. You may have to change one ore more of them to suit your needs (see Configuration).

See Missing options, for actual implementations irregularities.

See Reporting Bugs, for information on how to reach the maintainer.


3.2 LaTeX2RTF Options

The LaTeX2RTF command converts a LaTeX file into RTF text format. The text and much of the formatting information is translated to RTF making the new file look similar to the original. The command line syntax is:

latex2rtf [-options] inputfile[.tex]

for the DOS and Windows versions:

latex2rt [-options] inputfile[.tex]

The options set in the Windows GUI (l2rshell.exe) are inserted as command line options when clicking RUN.

The -options may consist of one or more of the following

-a auxfile

specify an .aux file (for table and figure references) that differs from inputfile.aux. If this is omitted, the name of the inputfile with the suffix replaced .aux'will be taken. You must provide both files (.tex and the .aux) to be able to convert cross-references in a LaTeX file. The .aux is created by running the inputfile.tex through latex.

-b bblfile

Unless an bblfile is specified with the -b option, LaTeX2RTF uses a inputfile.bbl. The bblfile file is used for citations and is typically created by running inputfile.aux through bibtex.

-C codepage

used to specify the character set (code page) used in the LaTeX document. This is only important when non-ansi characters are included in the LaTeX document. Typically this is done in a LaTeX2e file by using \usepackage[codepage]{inputenc} and in this case you need not specify the -C codepage option. If NO \usepackage[codepage]{inputenc} is in the LaTeX2e file, you must inform the converter about the codepage by the -C codepage option. You may select any of the following code pages: ansinew, applemac, cp437, cp437de, cp850, cp852, cp865, decmulti, cp1250, cp1252, latin1, latin2, latin3, latin4, latin5, latin9, next. The default behavior is to use ansinew (code page 1252). Cyrillic support includes conversion of koi8-r, koi8-u, cp1251, cp855, cp866, maccyr, and macukr encodings.

-d debug_level

The -d option determines the amount of debugging information to send to stderr while translating. debug_level=0 means only Errors, ‘1’ Warning Messages (default) also. The debug_level can go as high as ‘7’ for insane amounts of debugging fun. Warnings and error messages are output to stderr and by default listed in the console window. They can be redirected to a file “latex2rtf.log” by appending 2>latex2rtf.log to the command line.

-D dots_per_inch

used to specify the number of dots per inch for equations converted to bitmaps. This value is also used when picture environments are converted to bitmaps as well as when EPS graphics are converted to png files. The default value is 300 dots per inch.

-E#

selects whether figures are included in the rtf (default) or created as external files with the filenames inserted in the rtf text.

The options -E4, -E8 and -E12 are experimental and may not work as expected.

-E0

Do not include any figures in RTF.

-E1

Include figures that need no conversion.

-E2

Include figures that need conversion.

-E3

Include all figures (default).

-E4

Insert filenames for figures that do not need conversion.

-E8

Insert filenames for figures that need conversion.

-E12

Insert filenames for all figures.

With options -E8 and -E12, pdf and ps graphics as well as tikz graphics are converted to eps and the eps filenames inserted in the document text. With -E4 and -E12, bitmap files are inserted in their original format. After opening the rtf in a textprocessing or dtp program, a macro can search for the inserted filenames and insert the files in their places. Further info is in the description of the -M option.

-f#

where # selects which fields to use during conversion:

-f0

do not use fields in RTF. This is handy when primitive RTF editors are being used to view the RTF output.

-f1

use fields for equations but not \ref and \cite.

-f2

use fields for \ref and \cite but not equations. This will be useful for versions of OpenOffice that import cross-references properly (as of Sept 2003 in a soon-to-be released version) but do not properly handle fields in equations.

-f3

use fields when possible. This is the default and is most useful when the RTF file is being exported to be used in Word. This retains the most information from the original LaTeX file.

-F

use LaTeX to create bitmaps for all figures. This may help when figures are not translated properly with the default settings. This typically requires a functional version of ImageMagick on your machine to work properly.

-h

a short usage description

-i language

used to set the idiom or language used by the LaTeX document. Typically, this is specified in a LaTeX2e document by including \usepackage[language]{babel} where language is one of the languages supported by the babel package. All languages listed in the babel system are supported so far as translations for “Chapter,” “References,” and the like. Furthermore, some commands found in the style files for german, french, russian, and czech style are supported (see Language Configuration).

-l

same as -i latin1 (Note that the default behavior is to use ansinew which is a superset of latin1). Included for backwards compatibility.

-M#

where # selects the type of equation conversion. Use

-M1

convert displayed equations to RTF

-M2

convert inline equations to RTF

-M4

convert displayed equations to bitmap

-M8

convert inline equations to bitmap

-M16

insert Word comment field that contains the raw LaTeX equation

-M32

insert the raw latex equation in the RTF text delimited by $ ... $ for inline equations and by \[ ... \] for displayed equations.
This is useful when using version 6 of the MathType equation editor, which converts typed or pasted TeX code into a MathType equation.
Probably this could also be useful for use in OpenOffice, as OO has an equation syntax which partially resembles TeX syntax.

-M64

convert displayed equations to EPS files and insert filenames in RTF text.

-M128

convert inline equations to EPS files and insert filenames in RTF text.

These switches can be combined to get different effects. Handy examples are

-M3

convert both inline and displayed equations to RTF (default)

-M6

convert inline equations to RTF and displayed equations to bitmaps

-M12

convert both inline and displayed equations to bitmaps

-M192

convert both inline and displayed equations to EPS and insert filenames in RTF text

Conversion to bitmaps or eps requires that you have installed a working latex2png script. Producing bitmaps is slow.
When running the DOS version, conversion to bitmaps works for the first 26 equations but fails for the rest with the message
"latex2png: pipe error: Too many open files (EMFILE)".
This is probably a bug in the djgpp 2.04 compiler.
The Windows version, compiled with MinGW, successfully converts at least 500 equations to bitmaps.
When -M64, -M128 or both are specified, equations are converted to individual eps files, the filenames of which are literally inserted in the rtf file, delimited by [###...###]. After loading the rtf file in a text processing program, a macro can be run which searches for "[###" and "###]", extracts the filename, and inserts the eps in that place. The Windows installer package contains the code of such a macro for Word2010 in the file "WordMacro_InsertEPSfromNames.txt" in subfolder "scripts". (This macro may also run on other versions of Word but it was only tested on Word2010.) In Word, the inserted eps graphics display in bad quality on the screen and on non-postscript printers but can be printed in high quality on postscript and pdf printers.

-o outputfile

Unless an outputfile is specified with the -o option, the resulting RTF filename is formed by removing .tex from the inputfile and appending .rtf.

-p

Escape parentheses in mathematical formulas. This has no effect unless EQ fields are being generated. When this option is used, then a ‘(’ or ‘)’ that appears in an EQ field will be preceeded by a backslash. Despite documentation to the contrary (which says that all parentheses should be escaped), adding escapes usually produces a worse result than doing nothing. If Word displays some formulas with parentheses as “Error!”, you might try this option as a last resort. See also the -S option.

This is an option because it will break typesetting equations with non-matching parentheses (because an unmatched unquoted parenthesis would terminate the field).

-P /path/to/cfg

used to specify the folder (i.e. directory) that contains the .cfg files and/or the folder that contains the latex2png script.
Unix, Mac: The folder that contains the latex2png script must be prepended by a ":".
DOS, Windows: The scripts folder is not used, the scripts are always taken from the search path, therefore the folder containing the scripts and the helper programs must be the first in the search path. You can either add it to the search path permanently or add it temporarily by calling l2rprep.bat before starting conversions.
If any of the folder names contains a blank, the folder string must be enclosed in single (Unix, Mac) or double (DOS, Windows) quotes.
Examples:
(Unix:) latex2rtf -P ./cfg/:./scripts/ foo
(DOS/Windows:) latex2rt -P "C:\Program Files\latex2rtf\cfg" foo
Note that without specifying the -P option, LaTeX2RTF tries to find its cfg files in the following locations:
1. the folder specified by the environment variable RTFPATH, if this variable exists;
2. The folder %PROGRAMFILES%\latex2rtf\cfg, if the variable PROGRAMFILES exists – this is the folder in which LaTeX2RTF is installed by the Windows GUI installer with default settings;
3. the folder specified at compilation time by the variable CFGDIR. This is set in the Makefile. The DOS version is compiled with CFGDIR=C:/l2r, the Windows version with CFGDIR=C:/PROGRA~1/latex2rtf.

-se#

selects the scale for equation conversion, where # is the scale factor (default 1.00).

-sf#

selects the scale for figure conversion, where # is the scale factor (default 1.00).

-t#

where # selects the type of table conversion. Use

-t1

convert tables to RTF (default)

-t2

convert tables to bitmaps

-v or -V

prints version information on standard output and exits.

-S

used to specify that semicolons should be used to separate arguments in RTF fields (instead of commas). Typically this is needed when the machine that opens the RTF file has a version of Windows that uses ‘,’ for decimal points.

-T /path/to/tmp

used to specify the folder where to put temporary files. The path can be absolute, e.g. /path/to/tmp or relative to the folder where the .tex input file is in, e.g. tmp or ./tmp.
If you call LaTeX2RTF from the commandline (e.g. under Linux or when called as export filter by LyX), make sure that the tmp folder exists. Only the LaTeX2RTF Windows shell tries to create the tmp folder, the command line program doesn’t.

-W

includes warnings directly in the RTF file

-Z#

add the specified number of extra } to the end of the RTF file. This is useful for files that are not cleanly converted by LaTeX2RTF.

With no arguments other than switches starting with a “-”, LaTeX2RTF acts as a filter, i.e., it reads from stdin and writes to stdout. In addition, diagnostic messages are sent to stderr. If these standard channels are not redirected using < and >, then the input is read from the command line, and both output and error messages are printed on the screen. To redirect warnings and error messages to a file “latex2rtf.log”, append 2>latex2rtf.log to the command line.

If a non-switch argument is present, LaTeX2RTF assumes it is the name of the input file. The file must have extension “.tex” but the extension is optional. The output file is constructed from the input file name by removing the extension “.tex” and adding “.rtf”.


3.3 Debugging

With the -d option you can specify how much processing information LaTeX2RTF reports. If there is a logfile specified the output goes to this file. Nonetheless Warnings and Errors are logged to stderr always. They can be redirected to a file “latex2rtf.log” by appending 2>latex2rtf.log to the command line.

Possible values of -d are

  1. only errors.
  2. Translation Warnings (default).
  3. shows preparsing of sections
  4. Reasonably high level debugging messages
  5. Show all function calls
  6. Show each character as it is processed
  7. Show processing of characters as they are output as well

4 Features

In this chapter you find what styles is LaTeX2RTF supposed to translate correctly to RTF.


4.1 LaTeX2e

LaTeX2RTF understands most of the commands introduced with LaTeX2e. It translates both the old 2.09 version of \documentstyle[options]{format#} and the newer \documentclass[options]{format}.


4.2 Unicode Support

As of version 1.9.17 and up, LaTeX2RTF has limited unicode support. LaTeX files that use unicode sequences are just emitted directly into the RTF file.
Symbols and odd characters in math sequences may also be converted to a unicode sequence. Some of them need the STIXGeneral fonts (see Math and Special Symbols) to be installed on the system where the rtf file is to be displayed or printed.

Support for unicode encoded input is activated by the LaTeX command
\usepackage[utf8]{inputenc}
or
\usepackage[utf8x]{inputenc}.


4.3 Input Encoding

It is not necesary to specify the -C option if you use \usepackage{isolatin1} or \documentstyle[isolatin1]{...}. LaTeX2RTF automagically detects these packages/style options and switches to processing of ISO-Latin1 codes. The following encodings are supported: ansinew, applemac, cp437, cp437de, cp850, cp852, cp865, decmulti, cp1250, cp1252, latin1, latin2, latin3, latin4, latin5, latin9, next, koi8-r, koi8-u, cp1251, cp855, cp866, maccyr, macukr, utf8, and utf8x. The encoding used in RTF files is cp1252. If cyrillic fonts are present, then these are represented in the RTF file using cp1251 (Windows Cyrillic).


4.4 Language Support

The following languages from the Babel package are supported: afrikaans, german, nynorsk, spanish, bahasa, dutch, icelandic, polish, swedish, basque, english, portuges, turkish, brazil, esperanto, irish, romanian, usorbian, breton, estonian, italian, samin, welsh, catalan, finnish, latin, scottish, croatian, lsorbian, serbian, czech, french, magyar, slovak, danish, galician, norsk, slovene.

The only thing that these files do is to translate various words usually emitted by LaTeX during processing. For example, this ensures that the LaTeX2RTF will provide the correct translation of the word “Chapter” in the converted document.

You can select any of the above languages using the -l option. This is not needed if your LaTeX file contains \usepackage[language]{babel}.

Encountering the german package or babel option (by H. Partl of the Vienna University) makes LaTeX2RTF behave like that: German Quotes, German Umlauts by "a, etc... This support is programmed directly into LaTeX2RTF and supporting similar features for other languages will require patching the source code.

There is similar support for french packages.

There is reasonable support for english, latin1, latin2, and cyrillic languages.

See Language Configuration, for details on how to write a language.cfg file for your language by yourself.


4.5 Cross References

Cross references include everything that you might expect and then some: bibliographic citations, equation references, table references, figure references, and section references. Section, equation, table and figure references are implemented by placing RTF bookmarks around the equation number (or table number or figure number).

Page references work but are implemented as “warm” cross-references. This means that Word does not automatically update the page references when the file is opened. To update the page references you must select the entire document (in Word) and press F9.

Bibliographic references currently require that a valid .aux file be present. This is where LaTeX2RTF obtains the reference numbers. It would be nice if LaTeX2RTF just automatically numbered the references when there was no .aux file, but LaTeX2RTF does not do this yet.

LaTeX2RTF relies on BibTeX to convert and format bibliographic entries. Usually the style file for a particular BibTeX format does not use any special LaTeX commands and therefore the bibliography file file.bbl can be processed by LaTeX2RTF without difficulty. As a consequence, LaTeX2RTF can handle most bibliography styles without problem.

There are several latex style packages that add additional latex commands to enhance bibliographic formatting. LaTeX2RTF currently supports the following bibliographic packages:
apacite, apalike, authordate, harvard, natbib (also with apanat1b). These packages have many, many options and you may encounter problems with formatting in special cases.

As of LaTeX2RTF 1.9.17 and up, the natbib command bibpunct is supported.

Footnotes are implemented and appear at the bottom of each page.

Indexing is reasonably-well supported. The simple mark-up of makeindex

\index{topic!subtopic@\textit{subtopic}}

is supported. The rest of the fancy indexing stuff is not implemented. The index is created at the location of the \printindex command. When a file with an index is first opened in Word, you must select the entire file and update the page references and fields by pressing F9.

Currently, there is no support for \labels of \items in enumerate environments.

The conversion of cross-references is not perfect because of the different mechanisms in the LaTeX and Word worlds. In particular, if there are multiple \label in a figure, table, or section environment then only the first gets processed. It is also possible to confuse the LaTeX2RTF in eqnarray environments.


4.6 Page Formatting

LaTeX2RTF will handle some basic page formatting options, including \doublespacing (as implemented in the setspace package), and the margin setting options provided by the geometry package including commands in the ratio, centering and margin families. Not all geometry options are implemented yet, in part because there are no corresponding rtf commands for many of them.


4.7 Equations

There are six separate levels of equation translation based on the -M switch, see LaTeX2RTF Options. Each equation is converted either to an EQ field or to a bitmap or inserted as raw TeX code in the document or converted to an eps file with the eps file name inserted in the document text delimited by [###...###].

This is an interim solution (for some definition of “interim”). Ideally the equations would become OLE equation objects in the RTF file, but this needs to be implemented.

Some functions in the EQ fields have two or more parameters with a separator between each two. Unfortunately, the interpretation of these separators depends on the country specific settings in the MS Windows system in which the rtf file is opened. e.g. in English versions of MS Windows, the default parameter separator is the comma, in German versions the default is the semicolon. If the parameter in the RTF file does not match the Windows setting, some EQ fields are not interpreted correctly. You can check and set the separator in [Windows control panel - country settings - numbers - list separator]. By default, LaTeX2RTF uses the comma as separator. If LaTeX2RTF is called with the command line parameter -S , the semicolon is inserted as parameter delimiter.

Theoretically, according to the Word help file, parentheses ‘(’ or ‘)’ in mathematical formulas should be escaped (by a preceding backslash). Despite this, adding escapes usually produces a worse result than doing nothing. If Word displays some formulas with parentheses as “Error!”, you might try the -p option as a last resort.

It is also possible to convert an EQ field generated by LaTeX2RTF to an Equation Editor object by opening the rtf file in Word and double-clicking on the equation. However there are bugs in the interface between Word and Equation Editor which prevent symbols in font Symbol or MTExtra to be converted correctly. The full commercial version of the Equation Editor, called MathType, handles this conversion correctly.

If you have MathType version 6 or later, an even better way to convert LaTeX equations to MathType is letting LaTeX2RTF write the LaTeX code of the equations verbatim in the rtf file (option -M32), then open the rtf file in Word, select the LaTeX code of an equation, cut it to the clipboard, open MathType, and paste the code. MathType will convert the code into an equation. Wilfried tried to automate this in a Word macro, but this fails because the macro does not wait until MathType is started and ready to receive the pasted code. Maybe the MathType authors will give us a hint or provide such a macro.

MathType can be downloaded from http://www.dessci.com/ (30 day test version).


4.8 Math and Special Symbols

The way that symbols are converted in the RTF is based on the following observations. If the symbol is found in the latin 1 character set, then the current font is used, else the unicode code is inserted in the rtf code. (Implemented since version 2.1.0)

The means that on the system where the .rtf file is opened, a unicode font should be available or these glyphs will not be displayed correctly. As only the STIX fonts contain all needed characters, these fonts should be installed on the system where the rtf file is to be displayed or printed.

Many mathematical and special symbols are directly supported by LaTeX2RTF. Less common symbols (not found in the standard font) are supported by the conversion table in the file direct.cfg, see Direct Conversion.

Required fonts are:

  • “Times” / “Times New Roman” or “Helvetica” / “Arial”, preferably with Unicode extension (i.e. supporting all European languages including Cyrillic, Greek, and Hebrew). “Times” or “Times New Roman” and “Helvetica” or “Arial” are standard on all systems, but not their Unicode extension.
  • “STIXGeneral” (4 fonts in plain, italic, bold, bold-italic). These fonts are available from http://sourceforge.net/projects/stixfonts/.

    Note that while Office 2003 on Vista works correctly with the Open Type version, it does not on Windows XP (Word 2003 assigns no character spacing, and Publisher doesn’t display the character at all). On Windows XP, Office 2003 only displays the symbols correctly with the TrueType (ttf) version of the fonts. But stixfonts.org only supplies the Open Type (otf) version. TrueType versions of the fonts can be downloaded from http://sites.google.com/site/olegueret/stixfonts-ttf.


4.9 Tables

Conversion of tabular and tabbing environments is somewhat lame. The main difficulty is that LaTeX (and html) will size the columns of a table automatically. There is no such feature in RTF. Consequently, the conversion defaults to making all the columns have equal size. This is suboptimal and should be revised.

Another way is to use the option -t2 to make latex render them as bitmaps and insert the bitmaps into the RTF file. This feature was added in version 1.9.19.


4.10 Graphics

There is now rudimentary support for \includegraphics. Three file types will be inserted into the RTF file without needing conversion: .pict, .jpeg, and .png files. EPS and PDF files are converted to PNG using convert from the ImageMagick package. Some options are even handled properly.


4.11 Pagestyles

If there is no \pagestyle command, the RTF output is generated as with plain pagestyle, i.e. each page has its page number centered at the bottom.

You must turn this off with the \pagestyle{empty} command in the LaTeX file if you don’t want pagenumbers. The headings and myheadings styles are silently ignored by now. The twosided option to the \documentstyle or \documentclass produces the corresponding RTF tokens. Note that these features require RTF Version 1.4.


4.12 Hyperlatex

Hyperlatex support is largely broken at the moment, but continues to improve.

Otfried Schwarzkopf has created the “Hyperlatex Markup Language” which is a “little package that allows you to use LaTeX to prepare documents in HTML.” It brings an Emacs lisp program with it to convert the Hyperlatex file to HTML. Hyperlatex can be obtained from the CTAN-sites, see Obtaining LaTeX2RTF. There are two convenient commands that avoid typing: \link and \xlink that generate an “internal” label which then is used in the following \Ref and \Pageref commands.

LaTeX makes it possible to write ‘\link{anchor}[ltx]{label}’, which typesets: ‘anchor ltx’. LaTeX2RTF does NOT support this aproach since the optional parameter is thrown away right now, see LaTeX2RTF under Development.

Note that you have to update your .cfg files if you are upgrading, since there are a lot of HTML oriented commands in Hyperlatex that we simply can ‘ignore’.


4.13 APA Support

Some APA citation styles are supported, see Citation Commands

Support for APA text formatting is only rudimentary at the moment (headings without numbering). If you want to format a document according to APA, rename cfg/style.cfg to style_sav.cfg and rename cfg/styleAPA.cfg to style.cfg before starting LaTeX2RTF.


5 Configuration


5.1 Input processing

On processing input LaTeX2RTF first converts the LaTeX special characters. If it encounters one of the standard commands it is converted internally. If a command is not known to LaTeX2RTF it is first looked up in direct.cfg and the RTF code specified there is output. If not found there it is looked up in the section ignore.cfg. This file includes a lot of LaTeX commands that do not affect the output (cross reference information and the like), or that we are not able or willing to convert to RTF.

You can use ignore.cfg if you get tired of seeing

WARNING: command: `foo' not found - ignored

and you don’t need ‘foo’ in your RTF document. It would be nice to send your additions to the LaTeX2RTF mailing list for inclusion in later distributions.

LaTeX2RTF accepts Unix, MS-DOS, and Macintosh line ending codes (\n, \r\n and \r). The files it creates get the line ending for the platform on which LaTeX2RTF was compiled.

The LaTeX file may have been created with a wide variety of character sets. If the LaTeX lacks the \package[codepage]{inputenc} definition, then you may need to use the command line switch to manually select the proper code page (see Input Encoding).


5.2 Conditional Parsing

Starting with LaTeX2RTF 1.9.18, there is a handy method for controlling which content should be processed by LaTeX or by LaTeX2RTF. Control is achieved using the standard \if facility of TeX. If you include the following line in the preamble of your document (i.e., before \begin{document})

\newif\iflatextortf

Then you will create a new \iflatextortf command in LaTeX. TeX sets the value of this to false by default. Now, LaTeX2RTF internally sets \iflatextortf to be true, and to ensure that this is always the case, LaTeX2RTF ignores the command \latextortffalse. This means that you can control how different applications process your document by

\iflatextortf
This code is processed only by latex2rtf
\else
This code is processed only by latex
\fi

Note that \iflatextortf will only work within a section; you cannot use this command to conditionally parse code that crosses section boundaries. Also, it will only work on complete table or figure environments. Due to the mechanism used by LaTeX2RTF in processing these environments, at this time the only way to conditionally parse tables and figures is to include two complete versions of the environment in question, nested within an appropriate \iflatex2rtf structure.

LaTeX2RTF versions 1.9.15 to 1.9.18 had the ability to hide contents from LaTeX but expose them to LaTeX2RTF by starting a line with %latex2rtf:. This code was horribly broken, and it was removed. The same functionality is readily achieved using the \iflatextortf mechanism. For example, the old method allowed

%latex2rtf: This line will only appear in the latex2rtf output, 

To get the same behavior, define \iflatextortf and use

\iflatextortf
This code is processed only by latex2rtf
\fi

5.3 Output Formatting

On writing output, LaTeX2RTF generates the operating system specific line ending code (\n on Unix, \r\n on DOS or Windows), depending on which system LaTeX2RTF was compiled. As both should be legal to any RTF Reader the resulting RTF rendering should not be affected.

LaTeX2RTF does not offer a whole lot of flexibility in how files are translated, but it does offer some. This flexibility resides in four files direct.cfg, ignore.cfg, fonts.cfg, and language.cfg. These filese are documented in the next four sections.


5.4 Direct Conversion

The file direct.cfg is used for converting LaTeX commands by simple text replacement. The format consists of lines with a LaTeX command with backslash followed by comma. The rest of the line until a ‘.’ character will be written to the RTF file when the command is found in the LaTeX file. Lines starting with a ‘#’ character are ignored. After the ‘.’ everything is ignored to end of line. To select a specific font use *fontname*, where fontname be defined in fonts.cfg. To write the ‘*’ character use ‘**’.

\bigstar,{\u8727**}.
\copyright,\'a9.

In general, specific fonts should not be specified in this file. There is a mechanism to do this, but it turns out that this is not as useful as originally thought. The main reason that this fails is because the conversion of equations from Word fields to Equation Editor objects is buggy. The consequence is that to have symbols show up properly, they must be encoded differently when the Symbol and MT Extra fonts are used — depending on whether Word fields are active or not. It was all very tedious to figure out a mechanism that was “least broken.”


5.5 Ignore Command

The file ignore.cfg is used for defining how to ignore specific commands. This file is used for recognition of LaTeX variables, user defined variables, and some simple commands. All variables are ignored but the converter must know the names to correctly ignore assignments to variables. Lines in this file consist of a variable name with backslash, followed by comma and the type of the variable followed by ‘.’. Possible types are

NUMBER

simple numeric value

MEASURE

numeric value with following unit of measure

OTHER

ignores anything to the first character after ‘=’ and from there to next space. e.g., \setbox\bak=\hbox

COMMAND

ignores anything to next ‘\’ and from there to the occurence of anything but a letter e.g., \newbox\bak

SINGLE

ignores single command e.g., \noindent

PARAMETER

ignores a command with one parameter e.g., \foo{bar}

PACKAGE

does not produce a Warning message if PACKAGE is encountered, e.g., ‘\kleenex,PACKAGE.’ ignores ‘\usepackage{kleenex}

ENVCMD

intended to process contents of unknown environment as if it were plain LaTeX, e.g. ‘\environ,ENVCMD.
Therefore ‘\begin{environ} text \end{environ}’ would be converted to ‘text’. Doesn’t work in LaTeX2RTF version 2.1.0 up to and including 2.3.4.

ENVIRONMENT

ignores contents of that environment, e.g., with ‘\ifhtml,ENVIRONMENT.”, ‘\begin{ifhtml} text \end{ifhtml}’ ignores ‘text’.

The types are in upper case exactly as above. Do not use spaces. Lines starting with a ‘#’ character are ignored. After the ‘.’ everything is ignored to end of line. Example:

\pagelength,MEASURE.

5.6 Font Configuration

The file fonts.cfg contains the font name mapping. For example, this file determines what font is used to represent \rm characters in the RTF file.

A line consists of a font name in LaTeX followed by comma and a font name in RTF. The end is marked by a ‘.’. No spaces are allowed. The LaTeX font will be converted to the RTF font when it is found in the LaTeX file. If multiple translations for the same LaTeX font are specified, only the first is used. All fonts in a LaTeX file that are not in this file will be mapped to the default font. All RTF fonts listed in this file will be in every RTF file header whether used or not. Lines starting with a ‘#’ character are ignored. After the ‘.’ everything is ignored to end of line.

To add a RTF font not used as substitute for a LaTeX font — for example a Symbol font used in direct.cfg — use a dummy LaTeX name like in the following

Dummy3,MathematicalSymbols.

Make sure you use the correct font name. Take care of spaces in font names. The default fonts are named Roman \rm, Slanted \sl, Sans Serif \sf, Typewriter \tt, or Calligraphic \cal.


5.7 Language Configuration

The file(s) language.cfg control the translation of LaTeX’s “hardcoded” sectioning names. The standard LaTeX styles have some fixed Title names like ‘Part’, ‘Reference’ or ‘Bibliography’ that appeared in English or German in the output with the original versions of LaTeX2RTF.

It is unlikely that you will need to create a new language.cfg file. However, just look at one of the existing files and follow the pattern. The format is really simple.


6 Error Messages and Logging

As stated in the Debugging section, LaTeX2RTF provides a means to control the amount of debugging information through the -d# switch. By using a debugging level of 4, you can get a pretty good idea of what LaTeX command caused the problem and what line that command might be found on. Warnings and error messages are output to stderr and by default listed in the console window. They can be redirected to a file “latex2rtf.log” by appending 2>latex2rtf.log to the command line.

Fatal error messages

indicate a bug in the source code. PLEASE report them, if they do not apear in the documentation (see Reporting Bugs).

Error messages

always abort the program and are caused by conditions that prevent further conversion of the input file. Typically this is cause by LaTeX2RTF getting hopelessly confused by the number of braces in the LaTeX file.

Warning messages

inform you, that there is some conversion loss from LaTeX to RTF, or that the output file has some restrictions on some RTF Readers. Most of these warnings can be supressed by add the offending command to the ignore.cfg file.

Error and Warning messages should follow the GNU Coding standards, i.e. they have the format

inputfile':line: Error|Warning: message

You can also control the level of debugging output by inserting \verbositylevel{#} in the LaTeX file. This is very handy if you have a large LaTeX file that is failing in only a small section. For example,

problem free latex file ....
\verbositylevel{5}
problematic code
\verbositylevel{0}

will cause a huge amount of debugging information to be emitted for the problematic code.

Error reporting and logging still has many inconsistencies, but it gets better with each release. Don’t try to make any sense in debugging levels above 4, these are for my own delight only and can change significantly between versions.

The inputfile may be incorrectly identified if it is incorporated through \input or \include. The line may be also be wrong at times. See Known Bugs.


7 History & Copyright

In 1994 the first Version of LaTeX2RTF was written by Fernando Dorner and Andreas Granzer of the Viena University supervised by Ralf Schlatterbeck in a one-semester course. They created a simple LaTeX parser and added most of the infrastructure for the program. This was version 1.0 of LaTeX2RTF. In 1995, work on LaTeX2RTF was continued in another one-semester course by Friedrich Polzer and Gerhard Trisko. The result was LaTeX2RTF version 1.5. Ralf Schlatterbeck (ralf “at” zoo.priv.at) maintained and extended LaTeX2RTF until 1998.

In 1998 Georg Lehner (jorge_lehner “at” gmx.net) found the reference to LaTeX2RTF on the TeX Conversion Webpage of Wilfried Hennings and added some functionality and took over the maintainence of the program. The last version release by Georg is 1.8aa. The bulk of development post 1.8aa was done by Scott Prahl. Wilfried Hennings now coordinates the development of the program and maintains the project on SourceForge where there are also (low volume) mailing lists for users and developers. Mailing via one of these lists requires subscription to the list (to prevent spam). For subscription to these lists visit the page: users list or developers list

As of June 2016, version 2.3.11 of LaTeX2RTF is available.

The contents of this manual were composed by copying shamelessly what was available in the original sources and documentation.


8 LaTeX2RTF under Development


8.1 Unimplemented Features

  • LaTeX2RTF ignores some optional parameters of \documentstyle
  • Add the code to produce the corresponding chapter, section, and page numbering with headings and myheadings pagestyles. Implement \markboth and \markright.
  • To support \tableofcontents there would be two approaches: Transfer sectioning information, title text and then produce page numbers by the rtf- reader. Scan and label all of the sectioning commands while reading and then construct the sectioning information using these labels. Needs two passes on LaTeX input.

8.2 Missing options

Missing or buggy command line options.

-d

Information logging and Error reporting is not implemented consistently. Need to test and track problems with the linenumber and with the file name.

--long_names

It would be useful to implement the GNU long option names, e.g.: ‘–debug’, ‘–output_file’, ‘–quiet’, etc. This could be done by switching to the GNU getopt package.


8.3 Known Bugs

  1. The first parameter of a \link{anchor}[ltx]{label} is converted to the rtf-output. Label is stored to hyperref for later use, the optional parameter is ignored. [ltx] should be processed as Otfried recommends it, to use for exclusive LaTeX output.e.g: \link{readhere}[~\Ref]{explaining: chapter}. Since {explaining:chapter} is yet read by LaTeX and hyperlatex when [...] is evaluated it produces the correct reference. LaTeX2RTF is only strolling from left to right through the text and can’t remember what she will see in the future.
  2. The diagnostics routine does not output the correct (actual) input filename. (‘.aux’, ‘.bbl’, \input).

8.4 Reporting Bugs

Report bugs to to the bug tracking system at SourceForge. Only report bugs for the latest version of LaTeX2RTF that is available. Please provide the following information and observe the following guidelines when reporting a bug in the program:

  1. State the version of LaTeX2RTF that you are using. You can get the version by specifying the -V option to LaTeX2RTF.
  2. Specify the your operating system and version. Be sure to check the file ‘Makefile’ for settings that may be specific to your machine, especially for some versions of SunOS there may be settings which are needed to compile successfully. Do this before submitting a bug report.
  3. If the program produces wrong output or does not work for you, include a short LaTeX file along with a description of the problem. Isolating the bug into a small LaTeX file does two things. First, it provides a file that can be used to test future versions of LaTeX2RTF and second, it certainly improves the chances that the bug will get some attention. Do not send me large LaTeX or RTF files, I simply do not have the time to wade through large files to search for a bug!
  4. Be patient. I am maintaining the program in my free time. I did not write most of the code. Often I do not have the time to answer to your question. I will, however, try to fix reported bugs in upcoming releases.

8.5 Todo List

Scott’s ToDo list

  • Use lex/yacc to implement getSection
  • Add support for pagestyle
  • Better support for ignoring commands

Georg’s todo list

  • Make this Manual more consistent, the ToDo and Known Bug List shorter and the Features List longer.
  • Harmonize all of the error and warning messages.
  • Put warnings everywhere applicable about producing RTF 1.4 tokens.
  • Provide an Error and Warning recovery guide to the user.
  • Add a chapter with lists of all LaTeX commands that convert, and that do not convert to RTF, including their status (for future releases, never, partially functional, ...).

8.6 Command List

Listed here are all the LaTeX commands currently parsed by LaTeX2RTF. Note: inclusion in this list does not mean that a command is fully and correctly handled by LaTeX2RTF. In some cases the commands here are place-holders only, and are not implemented at all. The list is provided to encourage developers to note any departures from the behaviour that LaTeX users will expect. The location of the commands is noted to assist anyone interested in hacking on the C source code. This list is a work in progress, and may not be immediately useful to general users, other than to indicate those commands that we have at least contemplated implementing.


8.6.1 General Commands

These commands are found in the commands[] array in commands.c. They are arranged alphabetically within sections according to function.


8.6.1.1 Basic Commands

All listed commands work as expected.

begin
centerline
end
endnote
footnote
raggedright
the
today
vcenter

8.6.1.2 Font Commands

All listed commands work as expected.

bf
bfseries
cal
em
emph
enotesize
footnotesize
HUGE
Huge
huge
it
itshape
LARGE
Large
large
mathbf
mathcal
mathit
mathmd
mathnormal
mathrm
mathsc
mathsf
mathsl
mathtt
mathup
mdseries
mit
normalfont
normalsize
rm
rmfamily
sc
scfamily
scriptsize
scshape
sf
sffamily
sl
slshape
small
ssmall
textbf
textfont
textit
textmd
textnormal
textrm
textsc
textsf
textsl
texttt
textup
tiny
tt
ttfamily
underbar
underline
upshape

8.6.1.3 Logos

All listed commands work as expected.

AmSLaTeX
AmSTeX
BibTeX
kern
LaTeX
latex
LaTeXe
lower
LyX
SLiTeX
TeX

8.6.1.4 Special Characters

These commands all work as expected.

\
acute
b
bar
breve
c
check
d
ddot
dot
grave
H
hat
i
j
l
L
r
tilde
u
v
vec

8.6.1.5 Sectioning Commands

chapter
chapter*
paragraph
paragraph*
part
part*
section
section*
subparagraph
subparagraph*
subsection
subsection*
subsubsection
subsubsection*

8.6.1.6 Uncategorized

These commands need to be organized into new or existing sections.

abstract
addcontents

Ignored

addcontentsline

Ignored

addvspace

Ignored

aleph
Alph
alph

Ignored

alpha
Alpha

Ignored

amalg
and
angle
appendix

Ignored

approx
arabic

Ignored

ast
author
baselineskip
because
beta
Beta
bibentry
bibitem
bibliography
bibliographystyle
bibliographystyle

Ignored

bigskip
bot
BoxedEPSF
bullet
cap
caption
cdot
cdots
centering
char
chi
Chi
circ
cite
citeonline
cleardoublepage
clearpage
clubsuit
cong
contentsline
coprod
cup
date
ddots
delta
Delta
dfrac
Diamond
diamondsuit
div
doteq
dotfill

There is no rtf code for dotfill; LaTeX2RTF inserts an ellipsis only.

dots
dots
downarrow
Downarrow
efloatseparator
ell
emptyset
endinput
endnotemark

Ignored

ensuremath
epsfbox
epsffile
epsilon
eqref
equiv
eta
exists
fbox
fbox
fnsymbol

Ignored

footnotemark

Ignored

forall
frac
Frac
framebox

Ignored

frenchspacing

Ignored

gamma
Gamma
ge
geq
gg
glossary

Ignored

glossaryentry

Ignored

hbar
hbox
heartsuit
hsize
hslash
hspace

Ignored

hspace*

Ignored

htmladdnormallink
htmlref
iiint
iint
Im
in
include
includegraphics
includegraphics*
includeonly

Ignored

indent
index
indexentry

Ignored

infty
input
int
int
iota
kappa
label
lambda
Lambda
land
langle
lceil
ldots
le
left
leftarrow
Leftarrow
leftharpoondown
leftleftarrows
leftrightarrow
Leftrightarrow
leftrightarrows
leq
let

Ignored

letterspace
lfloor
lim
liminf
limsup
linebreak

Ignored

lineskip
listoffigures
listoftables
ll
longleftarrow
longleftrightarrows
longrightarrow
lor
makebox

Ignored

maketitle
mapsto
marginpar

Ignored

markboth

Ignored

markright

Ignored

matrix
mbox
measuredangle
medskip
mho
moveleft
moveright
mp
mu
multicolumn
nabla
ne
nearrow
neg
neq
newblock
newcount

Ignored

newfont

Ignored

newpage
newsavebox

Ignored

nobibliography

Ignored

nobreakspace
nocite
noindent
nolinebreak

Ignored

nonfrenchspacing

Ignored

nonumber
nopagebreak

Ignored

notag
nu
numberline
nwarrow
omega
Omega
omicron
onecolumn
onlinecite
oplus
oslash
otimes
output

Ignored

overline
pagebreak
pagenumbering

Ignored

pageref
pagestyle

Ignored

par
parbox
partial
perp
phi
Phi
pi
Pi
pm
prec
printindex
prod
prod
propto
protect

Ignored

psfig
psfrag

Ignored

psi
Psi
qquad
quad
raisebox

Ignored

rangle
rceil
Re
ref
refstepcounter
rfloor
rho
right
Rightarrow
rightarrow
rightharpoonup
rightleftarrows
rightleftharpoons
rightrightarrows
Roman

Ignored

roman

Ignored

rule
samepage

Ignored

savebox

Ignored

sbox

Ignored

searrow
setbox
settowidth

Ignored

sigma
Sigma
sim
simeq
smallskip
spadesuit
sqrt
stackrel
stepcounter

Ignored

stretch

Ignored

subset
subseteq
succ
sum
sum
supset
supseteq
surd
swarrow
tableofcontents
tau
textalpha
textbeta
textbullet
textchi
textcolor
textDelta
textdelta
textellipsis
textepsilon
texteta
textGamma
textgamma
textiota
textkappa
textLambda
textlambda
textmu
textnu
textOmega
textomega
textperiodcentered
textPhi
textphi
textPi
textpi
textPsi
textpsi
textSigma
textsigma
textsubscript
textsuperscript
textTau
texttau
textTheta
texttheta
textXi
textxi
textzeta
thanks
therefore
Theta
theta
tikzpicture
times
title
to
triangleleft
triangleright
twocolumn
typeaout

Ignored

Typein

Ignored

typein

Ignored

typeout

Ignored

Uparrow
uparrow
updownarrow
Updownarrow
upsilon
Upsilon
url
usebox

Ignored

value
varepsilon
varnothing
varphi
varpi
varpropto
varsigma
vartheta
vbox
vdots
vee
verb
verb*
vref
vsize
vskip
vspace
vspace*
wedge
wp
xi
Xi
zeta

8.6.2 Preamble Commands

These commands are found in PreambleCommands[] in commands.c, and are implemented in preamble.c.

addtocounter
addtolength
baselineskip
celsius
cfoot
chead
cline
DeclareRobustCommand
DeclareRobustCommand*
def
degreecelsius
documentclass
documentstyle
doublespacing

Currently, the only command from the setspace package that is implemented, and the only way to modify line spacing.

endnotetext
EUR
euro
evensidemargin
fancyfoot
fancyhead
flushbottom
footnotetext
geometry

Currently recognizes *ratio, *centering, *margin, left, right, inner, outer, top, bottom, right, left (including vmargin, hratio etc.)

headheight
headsep
hline
hoffset
htmladdnormallink
htmlref
hyphenation
iflatextortf
ifx
include
input
latextortffalse

Ignored

latextortftrue

Ignored

lfoot
lhead
listoffiles

Ignored

makeglossary

Ignored

makeindex

Ignored

makelabels

Ignored

markboth

Ignored

markright

Ignored

newcommand
newcounter
newenvironment
newif
newlength
newtheorem
nobreakspace
nofiles

Ignored

oddsidemargin
pagenumbering

Ignored

pagestyle
parindent
parskip
providecommand
raggedbottom
renewcommand
renewenvironment
renewtheorem

Ignored

resizebox
resizebox*
rfoot
rhead
setcounter
setlength
signature
textheight
textwidth
theendnotes
thepage
thispagestyle

Ignored

topmargin
usepackage
verbositylevel
voffset

8.6.3 Letter Commands

Found in LetterCommands[] in commands.c.

address
cc
closing
encl
opening
ps
signature

8.6.4 Language Commands


8.6.4.1 German Commands

Found in GermanModeCommands[] in commands.c.

ck
glqq
glq
grq
grqq

8.6.4.2 Czech Commands

uv

8.6.4.3 French Commands

deuxpoints
dittomark
FCS
fg
fup
ieme
iemes
ier
iere
ieres
iers
inferieura
LCS
lq
lqq
numero
Numero
numeros
Numeros
og
pointexclamation
pointinterrogation
pointvirgule
primo
quarto
rq
rqq
secundo
superieura
tertio
up

8.6.4.4 Russian Commands

CYRA
cyra
CYRB
cyrb
CYRC
cyrc
CYRCH
cyrch
CYRCHSH
cyrchsh
CYRD
cyrd
CYRE
cyre
CYREREV
cyrerev
CYRERY
cyrery
CYRF
cyrf
CYRG
cyrg
CYRH
cyrh
CYRHRDSN
cyrhrdsn
CYRI
cyri
CYRISHRT
cyrishrt
CYRK
cyrk
CYRL
cyrl
CYRM
cyrm
CYRN
cyrn
CYRO
cyro
CYRP
cyrp
CYRR
cyrr
CYRS
cyrs
CYRSFTSN
cyrsftsn
CYRSH
cyrsh
CYRT
cyrt
CYRU
cyru
CYRV
cyrv
CYRYA
cyrya
CYRYU
cyryu
CYRZ
cyrz
CYRZH
cyrzh

8.6.5 Citation Commands


8.6.5.1 Apacite Commands

AX
BAnd
BBA
BBAA
BBAB
BBAY
BBC
BBCP
BBCQ
BBN
BBOP
BBOQ
BCAY
BCBL
BCBT
BCHAIR
BCHAIRS
BCnt
BCntIP
BED
BEd
BEDS
Bem
BIP
BMTh
BNUM
BNUMS
BOthers
BOWP
BPG
BPGS
BPhD
BREPR
BTR
BTRANS
BTRANSS
BUMTh
BUPhD
BVOL
BVOLS
citeA
citeauthor
citeNP
citeyear
citeyearNP
fullcite
fullciteA
fullciteauthor
fullciteNP
shortcite
shortciteA
shortciteauthor
shortciteNP

8.6.5.2 AuthorDate Commands

citename
shortcite

8.6.5.3 Harvard Commands

cite
citeaffixed
citeasnoun
citename
citeyear
citeyear*
harvardand
harvarditem
harvardyearleft
harvardyearright
possessivecite

8.6.5.4 HyperLatex Commands

Cite
link
Pageref
Ref
S
xlink

8.6.5.5 Apacite Commands

bibpunct
cite
citealp
Citealp
citealp*
citealt
Citealt
citealt*
citeauthor
Citeauthor
citeauthor*
citep
Citep
citep*
citet
Citet
citet*
citetext
citeyear
citeyearpar

8.6.6 Acronym Commands

usepackage [options] {acronym}
ac
acfi
acro
acrodef
acrodefplural
acused

8.6.7 Other Commands

Other Commands:
item
caption
center


8.6.8 Environments

Environments processed - found in params[] in commands.c.

abstract
acknowledgments
align
align*
alltt
array
bf
bfseries
center
comment
compactenum
compactitem
description
displaymath
document
em
enumerate
eqnarray
eqnarray*
equation
equation*
figure
figure*
flushleft
flushright
htmlonly

Ignored

it
itemize
itshape
landscape
latexonly

Ignored

letter
list
longtable
longtable*
math
mdseries
minipage
multicolumn
music
picture
quotation
quote
rawhtml

Ignored

rm
rmfamily
sc
scshape
sf
sffamily
sl
sloppypar
slshape
small
tabbing
table
table*
tabular
tabular*
thebibliography
theindex

Ignored

titlepage
tt
ttfamily
verbatim
Verbatim
verse

9 Function Index

Jump to:   \  
A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W   X   Z  
Index Entry  Section

\
\: Special Characters

A
abstract: Uncategorized
abstract: Environments
ac: Acronym Commands
acfi: Acronym Commands
acknowledgments: Environments
acro: Acronym Commands
acrodef: Acronym Commands
acrodefplural: Acronym Commands
acused: Acronym Commands
acute: Special Characters
addcontents: Uncategorized
addcontentsline: Uncategorized
address: Letter Commands
addtocounter: Preamble Commands
addtolength: Preamble Commands
addvspace: Uncategorized
aleph: Uncategorized
align: Environments
align*: Environments
alltt: Environments
Alph: Uncategorized
alph: Uncategorized
alpha: Uncategorized
Alpha: Uncategorized
amalg: Uncategorized
AmSLaTeX: Logos
AmSTeX: Logos
and: Uncategorized
angle: Uncategorized
appendix: Uncategorized
approx: Uncategorized
arabic: Uncategorized
array: Environments
ast: Uncategorized
author: Uncategorized
AX: Apacite Commands

B
b: Special Characters
BAnd: Apacite Commands
bar: Special Characters
baselineskip: Uncategorized
baselineskip: Preamble Commands
BBA: Apacite Commands
BBAA: Apacite Commands
BBAB: Apacite Commands
BBAY: Apacite Commands
BBC: Apacite Commands
BBCP: Apacite Commands
BBCQ: Apacite Commands
BBN: Apacite Commands
BBOP: Apacite Commands
BBOQ: Apacite Commands
BCAY: Apacite Commands
BCBL: Apacite Commands
BCBT: Apacite Commands
BCHAIR: Apacite Commands
BCHAIRS: Apacite Commands
BCnt: Apacite Commands
BCntIP: Apacite Commands
because: Uncategorized
BED: Apacite Commands
BEd: Apacite Commands
BEDS: Apacite Commands
begin: Basic Commands
Bem: Apacite Commands
beta: Uncategorized
Beta: Uncategorized
bf: Font Commands
bf: Environments
bfseries: Font Commands
bfseries: Environments
bibentry: Uncategorized
bibitem: Uncategorized
bibliography: Uncategorized
bibliographystyle: Uncategorized
bibliographystyle: Uncategorized
bibpunct: Natbib Commands
BibTeX: Logos
bigskip: Uncategorized
BIP: Apacite Commands
BMTh: Apacite Commands
BNUM: Apacite Commands
BNUMS: Apacite Commands
bot: Uncategorized
BOthers: Apacite Commands
BOWP: Apacite Commands
BoxedEPSF: Uncategorized
BPG: Apacite Commands
BPGS: Apacite Commands
BPhD: Apacite Commands
BREPR: Apacite Commands
breve: Special Characters
BTR: Apacite Commands
BTRANS: Apacite Commands
BTRANSS: Apacite Commands
bullet: Uncategorized
BUMTh: Apacite Commands
BUPhD: Apacite Commands
BVOL: Apacite Commands
BVOLS: Apacite Commands

C
c: Special Characters
cal: Font Commands
cap: Uncategorized
caption: Uncategorized
cc: Letter Commands
cdot: Uncategorized
cdots: Uncategorized
celsius: Preamble Commands
center: Environments
centering: Uncategorized
centerline: Basic Commands
cfoot: Preamble Commands
chapter: Sectioning Commands
chapter*: Sectioning Commands
char: Uncategorized
chead: Preamble Commands
check: Special Characters
chi: Uncategorized
Chi: Uncategorized
circ: Uncategorized
cite: Uncategorized
cite: Harvard Commands
Cite: HyperLatex Commands
cite: Natbib Commands
citeA: Apacite Commands
citeaffixed: Harvard Commands
citealp: Natbib Commands
Citealp: Natbib Commands
citealp*: Natbib Commands
citealt: Natbib Commands
Citealt: Natbib Commands
citealt*: Natbib Commands
citeasnoun: Harvard Commands
citeauthor: Apacite Commands
citeauthor: Natbib Commands
Citeauthor: Natbib Commands
citeauthor*: Natbib Commands
citename: AuthorDate Commands
citename: Harvard Commands
citeNP: Apacite Commands
citeonline: Uncategorized
citep: Natbib Commands
Citep: Natbib Commands
citep*: Natbib Commands
citet: Natbib Commands
Citet: Natbib Commands
citet*: Natbib Commands
citetext: Natbib Commands
citeyear: Apacite Commands
citeyear: Harvard Commands
citeyear: Natbib Commands
citeyear*: Harvard Commands
citeyearNP: Apacite Commands
citeyearpar: Natbib Commands
ck: German Commands
cleardoublepage: Uncategorized
clearpage: Uncategorized
cline: Preamble Commands
closing: Letter Commands
clubsuit: Uncategorized
comment: Environments
compactenum: Environments
compactitem: Environments
cong: Uncategorized
contentsline: Uncategorized
coprod: Uncategorized
cup: Uncategorized
CYRA: Russian Commands
cyra: Russian Commands
CYRB: Russian Commands
cyrb: Russian Commands
CYRC: Russian Commands
cyrc: Russian Commands
CYRCH: Russian Commands
cyrch: Russian Commands
CYRCHSH: Russian Commands
cyrchsh: Russian Commands
CYRD: Russian Commands
cyrd: Russian Commands
CYRE: Russian Commands
cyre: Russian Commands
CYREREV: Russian Commands
cyrerev: Russian Commands
CYRERY: Russian Commands
cyrery: Russian Commands
CYRF: Russian Commands
cyrf: Russian Commands
CYRG: Russian Commands
cyrg: Russian Commands
CYRH: Russian Commands
cyrh: Russian Commands
CYRHRDSN: Russian Commands
cyrhrdsn: Russian Commands
CYRI: Russian Commands
cyri: Russian Commands
CYRISHRT: Russian Commands
cyrishrt: Russian Commands
CYRK: Russian Commands
cyrk: Russian Commands
CYRL: Russian Commands
cyrl: Russian Commands
CYRM: Russian Commands
cyrm: Russian Commands
CYRN: Russian Commands
cyrn: Russian Commands
CYRO: Russian Commands
cyro: Russian Commands
CYRP: Russian Commands
cyrp: Russian Commands
CYRR: Russian Commands
cyrr: Russian Commands
CYRS: Russian Commands
cyrs: Russian Commands
CYRSFTSN: Russian Commands
cyrsftsn: Russian Commands
CYRSH: Russian Commands
cyrsh: Russian Commands
CYRT: Russian Commands
cyrt: Russian Commands
CYRU: Russian Commands
cyru: Russian Commands
CYRV: Russian Commands
cyrv: Russian Commands
CYRYA: Russian Commands
cyrya: Russian Commands
CYRYU: Russian Commands
cyryu: Russian Commands
CYRZ: Russian Commands
cyrz: Russian Commands
CYRZH: Russian Commands
cyrzh: Russian Commands

D
d: Special Characters
date: Uncategorized
ddot: Special Characters
ddots: Uncategorized
DeclareRobustCommand: Preamble Commands
DeclareRobustCommand*: Preamble Commands
def: Preamble Commands
degreecelsius: Preamble Commands
delta: Uncategorized
Delta: Uncategorized
description: Environments
deuxpoints: French Commands
dfrac: Uncategorized
Diamond: Uncategorized
diamondsuit: Uncategorized
displaymath: Environments
dittomark: French Commands
div: Uncategorized
document: Environments
documentclass: Preamble Commands
documentstyle: Preamble Commands
dot: Special Characters
doteq: Uncategorized
dotfill: Uncategorized
dots: Uncategorized
dots: Uncategorized
doublespacing: Preamble Commands
downarrow: Uncategorized
Downarrow: Uncategorized

E
efloatseparator: Uncategorized
ell: Uncategorized
em: Font Commands
em: Environments
emph: Font Commands
emptyset: Uncategorized
encl: Letter Commands
end: Basic Commands
endinput: Uncategorized
endnote: Basic Commands
endnotemark: Uncategorized
endnotetext: Preamble Commands
enotesize: Font Commands
ensuremath: Uncategorized
enumerate: Environments
epsfbox: Uncategorized
epsffile: Uncategorized
epsilon: Uncategorized
eqnarray: Environments
eqnarray*: Environments
eqref: Uncategorized
equation: Environments
equation*: Environments
equiv: Uncategorized
eta: Uncategorized
EUR: Preamble Commands
euro: Preamble Commands
evensidemargin: Preamble Commands
exists: Uncategorized

F
fancyfoot: Preamble Commands
fancyhead: Preamble Commands
fbox: Uncategorized
fbox: Uncategorized
FCS: French Commands
fg: French Commands
figure: Environments
figure*: Environments
flushbottom: Preamble Commands
flushleft: Environments
flushright: Environments
fnsymbol: Uncategorized
footnote: Basic Commands
footnotemark: Uncategorized
footnotesize: Font Commands
footnotetext: Preamble Commands
forall: Uncategorized
frac: Uncategorized
Frac: Uncategorized
framebox: Uncategorized
frenchspacing: Uncategorized
fullcite: Apacite Commands
fullciteA: Apacite Commands
fullciteauthor: Apacite Commands
fullciteNP: Apacite Commands
fup: French Commands

G
gamma: Uncategorized
Gamma: Uncategorized
ge: Uncategorized
geometry: Preamble Commands
geq: Uncategorized
gg: Uncategorized
glossary: Uncategorized
glossaryentry: Uncategorized
glq: German Commands
glqq: German Commands
grave: Special Characters
grq: German Commands
grqq: German Commands

H
H: Special Characters
harvardand: Harvard Commands
harvarditem: Harvard Commands
harvardyearleft: Harvard Commands
harvardyearright: Harvard Commands
hat: Special Characters
hbar: Uncategorized
hbox: Uncategorized
headheight: Preamble Commands
headsep: Preamble Commands
heartsuit: Uncategorized
hline: Preamble Commands
hoffset: Preamble Commands
hsize: Uncategorized
hslash: Uncategorized
hspace: Uncategorized
hspace*: Uncategorized
htmladdnormallink: Uncategorized
htmladdnormallink: Preamble Commands
htmlonly: Environments
htmlref: Uncategorized
htmlref: Preamble Commands
HUGE: Font Commands
Huge: Font Commands
huge: Font Commands
hyphenation: Preamble Commands

I
i: Special Characters
ieme: French Commands
iemes: French Commands
ier: French Commands
iere: French Commands
ieres: French Commands
iers: French Commands
iflatextortf: Preamble Commands
ifx: Preamble Commands
iiint: Uncategorized
iint: Uncategorized
Im: Uncategorized
in: Uncategorized
include: Uncategorized
include: Preamble Commands
includegraphics: Uncategorized
includegraphics*: Uncategorized
includeonly: Uncategorized
indent: Uncategorized
index: Uncategorized
indexentry: Uncategorized
inferieura: French Commands
infty: Uncategorized
input: Uncategorized
input: Preamble Commands
int: Uncategorized
int: Uncategorized
iota: Uncategorized
it: Font Commands
it: Environments
itemize: Environments
itshape: Font Commands
itshape: Environments

J
j: Special Characters

K
kappa: Uncategorized
kern: Logos

L
l: Special Characters
L: Special Characters
label: Uncategorized
lambda: Uncategorized
Lambda: Uncategorized
land: Uncategorized
landscape: Environments
langle: Uncategorized
LARGE: Font Commands
Large: Font Commands
large: Font Commands
LaTeX: Logos
latex: Logos
LaTeXe: Logos
latexonly: Environments
latextortffalse: Preamble Commands
latextortftrue: Preamble Commands
lceil: Uncategorized
LCS: French Commands
ldots: Uncategorized
le: Uncategorized
left: Uncategorized
leftarrow: Uncategorized
Leftarrow: Uncategorized
leftharpoondown: Uncategorized
leftleftarrows: Uncategorized
leftrightarrow: Uncategorized
Leftrightarrow: Uncategorized
leftrightarrows: Uncategorized
leq: Uncategorized
let: Uncategorized
letter: Environments
letterspace: Uncategorized
lfloor: Uncategorized
lfoot: Preamble Commands
lhead: Preamble Commands
lim: Uncategorized
liminf: Uncategorized
limsup: Uncategorized
linebreak: Uncategorized
lineskip: Uncategorized
link: HyperLatex Commands
list: Environments
listoffigures: Uncategorized
listoffiles: Preamble Commands
listoftables: Uncategorized
ll: Uncategorized
longleftarrow: Uncategorized
longleftrightarrows: Uncategorized
longrightarrow: Uncategorized
longtable: Environments
longtable*: Environments
lor: Uncategorized
lower: Logos
lq: French Commands
lqq: French Commands
LyX: Logos

M
makebox: Uncategorized
makeglossary: Preamble Commands
makeindex: Preamble Commands
makelabels: Preamble Commands
maketitle: Uncategorized
mapsto: Uncategorized
marginpar: Uncategorized
markboth: Uncategorized
markboth: Preamble Commands
markright: Uncategorized
markright: Preamble Commands
math: Environments
mathbf: Font Commands
mathcal: Font Commands
mathit: Font Commands
mathmd: Font Commands
mathnormal: Font Commands
mathrm: Font Commands
mathsc: Font Commands
mathsf: Font Commands
mathsl: Font Commands
mathtt: Font Commands
mathup: Font Commands
matrix: Uncategorized
mbox: Uncategorized
mdseries: Font Commands
mdseries: Environments
measuredangle: Uncategorized
medskip: Uncategorized
mho: Uncategorized
minipage: Environments
mit: Font Commands
moveleft: Uncategorized
moveright: Uncategorized
mp: Uncategorized
mu: Uncategorized
multicolumn: Uncategorized
multicolumn: Environments
music: Environments

N
nabla: Uncategorized
ne: Uncategorized
nearrow: Uncategorized
neg: Uncategorized
neq: Uncategorized
newblock: Uncategorized
newcommand: Preamble Commands
newcount: Uncategorized
newcounter: Preamble Commands
newenvironment: Preamble Commands
newfont: Uncategorized
newif: Preamble Commands
newlength: Preamble Commands
newpage: Uncategorized
newsavebox: Uncategorized
newtheorem: Preamble Commands
nobibliography: Uncategorized
nobreakspace: Uncategorized
nobreakspace: Preamble Commands
nocite: Uncategorized
nofiles: Preamble Commands
noindent: Uncategorized
nolinebreak: Uncategorized
nonfrenchspacing: Uncategorized
nonumber: Uncategorized
nopagebreak: Uncategorized
normalfont: Font Commands
normalsize: Font Commands
notag: Uncategorized
nu: Uncategorized
numberline: Uncategorized
numero: French Commands
Numero: French Commands
numeros: French Commands
Numeros: French Commands
nwarrow: Uncategorized

O
oddsidemargin: Preamble Commands
og: French Commands
omega: Uncategorized
Omega: Uncategorized
omicron: Uncategorized
onecolumn: Uncategorized
onlinecite: Uncategorized
opening: Letter Commands
oplus: Uncategorized
oslash: Uncategorized
otimes: Uncategorized
output: Uncategorized
overline: Uncategorized

P
pagebreak: Uncategorized
pagenumbering: Uncategorized
pagenumbering: Preamble Commands
pageref: Uncategorized
Pageref: HyperLatex Commands
pagestyle: Uncategorized
pagestyle: Preamble Commands
par: Uncategorized
paragraph: Sectioning Commands
paragraph*: Sectioning Commands
parbox: Uncategorized
parindent: Preamble Commands
parskip: Preamble Commands
part: Sectioning Commands
part*: Sectioning Commands
partial: Uncategorized
perp: Uncategorized
phi: Uncategorized
Phi: Uncategorized
pi: Uncategorized
Pi: Uncategorized
picture: Environments
pm: Uncategorized
pointexclamation: French Commands
pointinterrogation: French Commands
pointvirgule: French Commands
possessivecite: Harvard Commands
prec: Uncategorized
primo: French Commands
printindex: Uncategorized
prod: Uncategorized
prod: Uncategorized
propto: Uncategorized
protect: Uncategorized
providecommand: Preamble Commands
ps: Letter Commands
psfig: Uncategorized
psfrag: Uncategorized
psi: Uncategorized
Psi: Uncategorized

Q
qquad: Uncategorized
quad: Uncategorized
quarto: French Commands
quotation: Environments
quote: Environments

R
r: Special Characters
raggedbottom: Preamble Commands
raggedright: Basic Commands
raisebox: Uncategorized
rangle: Uncategorized
rawhtml: Environments
rceil: Uncategorized
Re: Uncategorized
ref: Uncategorized
Ref: HyperLatex Commands
refstepcounter: Uncategorized
renewcommand: Preamble Commands
renewenvironment: Preamble Commands
renewtheorem: Preamble Commands
resizebox: Preamble Commands
resizebox*: Preamble Commands
rfloor: Uncategorized
rfoot: Preamble Commands
rhead: Preamble Commands
rho: Uncategorized
right: Uncategorized
Rightarrow: Uncategorized
rightarrow: Uncategorized
rightharpoonup: Uncategorized
rightleftarrows: Uncategorized
rightleftharpoons: Uncategorized
rightrightarrows: Uncategorized
rm: Font Commands
rm: Environments
rmfamily: Font Commands
rmfamily: Environments
Roman: Uncategorized
roman: Uncategorized
rq: French Commands
rqq: French Commands
rule: Uncategorized

S
S: HyperLatex Commands
samepage: Uncategorized
savebox: Uncategorized
sbox: Uncategorized
sc: Font Commands
sc: Environments
scfamily: Font Commands
scriptsize: Font Commands
scshape: Font Commands
scshape: Environments
searrow: Uncategorized
section: Sectioning Commands
section*: Sectioning Commands
secundo: French Commands
setbox: Uncategorized
setcounter: Preamble Commands
setlength: Preamble Commands
settowidth: Uncategorized
sf: Font Commands
sf: Environments
sffamily: Font Commands
sffamily: Environments
shortcite: Apacite Commands
shortcite: AuthorDate Commands
shortciteA: Apacite Commands
shortciteauthor: Apacite Commands
shortciteNP: Apacite Commands
sigma: Uncategorized
Sigma: Uncategorized
signature: Preamble Commands
signature: Letter Commands
sim: Uncategorized
simeq: Uncategorized
sl: Font Commands
sl: Environments
SLiTeX: Logos
sloppypar: Environments
slshape: Font Commands
slshape: Environments
small: Font Commands
small: Environments
smallskip: Uncategorized
spadesuit: Uncategorized
sqrt: Uncategorized
ssmall: Font Commands
stackrel: Uncategorized
stepcounter: Uncategorized
stretch: Uncategorized
subparagraph: Sectioning Commands
subparagraph*: Sectioning Commands
subsection: Sectioning Commands
subsection*: Sectioning Commands
subset: Uncategorized
subseteq: Uncategorized
subsubsection: Sectioning Commands
subsubsection*: Sectioning Commands
succ: Uncategorized
sum: Uncategorized
sum: Uncategorized
superieura: French Commands
supset: Uncategorized
supseteq: Uncategorized
surd: Uncategorized
swarrow: Uncategorized

T
tabbing: Environments
table: Environments
table*: Environments
tableofcontents: Uncategorized
tabular: Environments
tabular*: Environments
tau: Uncategorized
tertio: French Commands
TeX: Logos
textalpha: Uncategorized
textbeta: Uncategorized
textbf: Font Commands
textbullet: Uncategorized
textchi: Uncategorized
textcolor: Uncategorized
textDelta: Uncategorized
textdelta: Uncategorized
textellipsis: Uncategorized
textepsilon: Uncategorized
texteta: Uncategorized
textfont: Font Commands
textGamma: Uncategorized
textgamma: Uncategorized
textheight: Preamble Commands
textiota: Uncategorized
textit: Font Commands
textkappa: Uncategorized
textLambda: Uncategorized
textlambda: Uncategorized
textmd: Font Commands
textmu: Uncategorized
textnormal: Font Commands
textnu: Uncategorized
textOmega: Uncategorized
textomega: Uncategorized
textperiodcentered: Uncategorized
textPhi: Uncategorized
textphi: Uncategorized
textPi: Uncategorized
textpi: Uncategorized
textPsi: Uncategorized
textpsi: Uncategorized
textrm: Font Commands
textsc: Font Commands
textsf: Font Commands
textSigma: Uncategorized
textsigma: Uncategorized
textsl: Font Commands
textsubscript: Uncategorized
textsuperscript: Uncategorized
textTau: Uncategorized
texttau: Uncategorized
textTheta: Uncategorized
texttheta: Uncategorized
texttt: Font Commands
textup: Font Commands
textwidth: Preamble Commands
textXi: Uncategorized
textxi: Uncategorized
textzeta: Uncategorized
thanks: Uncategorized
the: Basic Commands
thebibliography: Environments
theendnotes: Preamble Commands
theindex: Environments
thepage: Preamble Commands
therefore: Uncategorized
Theta: Uncategorized
theta: Uncategorized
thispagestyle: Preamble Commands
tikzpicture: Uncategorized
tilde: Special Characters
times: Uncategorized
tiny: Font Commands
title: Uncategorized
titlepage: Environments
to: Uncategorized
today: Basic Commands
topmargin: Preamble Commands
triangleleft: Uncategorized
triangleright: Uncategorized
tt: Font Commands
tt: Environments
ttfamily: Font Commands
ttfamily: Environments
twocolumn: Uncategorized
typeaout: Uncategorized
Typein: Uncategorized
typein: Uncategorized
typeout: Uncategorized

U
u: Special Characters
underbar: Font Commands
underline: Font Commands
up: French Commands
Uparrow: Uncategorized
uparrow: Uncategorized
updownarrow: Uncategorized
Updownarrow: Uncategorized
upshape: Font Commands
upsilon: Uncategorized
Upsilon: Uncategorized
url: Uncategorized
usebox: Uncategorized
usepackage: Preamble Commands
usepackage [options] {acronym}: Acronym Commands
uv: Czech Commands

V
v: Special Characters
value: Uncategorized
varepsilon: Uncategorized
varnothing: Uncategorized
varphi: Uncategorized
varpi: Uncategorized
varpropto: Uncategorized
varsigma: Uncategorized
vartheta: Uncategorized
vbox: Uncategorized
vcenter: Basic Commands
vdots: Uncategorized
vec: Special Characters
vee: Uncategorized
verb: Uncategorized
verb*: Uncategorized
verbatim: Environments
Verbatim: Environments
verbositylevel: Preamble Commands
verse: Environments
voffset: Preamble Commands
vref: Uncategorized
vsize: Uncategorized
vskip: Uncategorized
vspace: Uncategorized
vspace*: Uncategorized

W
wedge: Uncategorized
wp: Uncategorized

X
xi: Uncategorized
Xi: Uncategorized
xlink: HyperLatex Commands

Z
zeta: Uncategorized

Jump to:   \  
A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W   X   Z  

10 Concept Index

Jump to:   %  
A   B   C   D   E   F   G   H   I   L   M   N   P   R   S   T  
Index Entry  Section

%
%latex2rtf: Conditional Parsing

A
APA Support: APA Support
apacite: Cross References
apalike: Cross References
apanat1b: Cross References
authordate: Cross References

B
babel: Language Support
bibliography: Cross References
bibliography, apacite: Cross References
bibliography, apalike: Cross References
bibliography, apanat1b: Cross References
bibliography, authordate: Cross References
bibliography, BibTeX: Cross References
bibliography, harvard: Cross References
bibliography, natbib: Cross References
BibTeX: Cross References

C
Conditional Parsing: Conditional Parsing
Copyright issues: History

D
direct.cfg: Input Processing
double spacing: Page Formatting

E
equations: Equations

F
footnotes: Cross References

G
geometry package: Page Formatting
graphics: Graphics

H
harvard: Cross References
History of the program: History
hyperlatex: Hyperlatex

I
iflatextortf: Conditional Parsing
ignore.cfg: Input Processing
index: Cross References
input processing: Input Processing
installation: Installation

L
language support: Language Support
line spacing: Page Formatting

M
margins: Page Formatting
math: Math and Special Symbols

N
natbib: Cross References

P
page formatting: Page Formatting
pagestyles: Pagestyles

R
RTF sucks: Introduction

S
setspace package: Page Formatting
special symbols: Math and Special Symbols

T
tables: Tables

Jump to:   %  
A   B   C   D   E   F   G   H   I   L   M   N   P   R   S   T  

Table of Contents


latex2rtf-2.3.18/doc/web/docs.html0000777000175000017500000000767713050672354017111 0ustar wilfriedwilfried latex2rtf: Documentation

latex2rtf: Documentation

Usage

RTF

  • Version 1.0 TEXT | PDF
  • Version 1.2 PDF
  • Version 1.3 TEXT | PDF
  • Version 1.5 (Word97 and up) PDF
  • Version 1.6 (Word2000 and up) HTML
  • Version 1.7 (Word2002 and up) PDF

STIX Fonts

The RTF file generated by latex2rtf may contain some symbols formatted in the font STIXGeneral. In earlier versions of latex2rtf, some attempt was made to translate the wide range of TeX symbols using Adobe's Symbol font and MathType's MTExtra font. This was a nightmare. Thankfully, the STIX font project has created a font with a huge range of mathematical symbols. latex2rtf now creates documents assuming that you have the STIX font installed.

You only need the four files STIXGeneral.otf, STIXGeneralItalic.otf, STIXGeneralBol.otf, and STIXGeneralBolIta.otf. These fonts can be downloaded from SourceForge. Note that while Office 2003 on Vista works correctly with the Open Type version, it does not on Windows XP (Word 2003 assigns no character spacing, and Publisher doesn't display characters at all). On Windows XP, Office 2003 only displays the symbols correctly with the TrueType (ttf) version of the fonts. To include everyone, a TrueType version of the STIX fonts is available.

Older Versions

Get LaTeX to RTF converter at SourceForge
latex2rtf-2.3.18/doc/web/index.html0000777000175000017500000000712213050672354017251 0ustar wilfriedwilfried rtf2latex2e:

About latex2rtf

latex2rtf is a translator program to convert LaTeX formatted text files into “rich text format” (RTF) files. RTF is a published standard format by Microsoft. This standard can be ambiguous in places, but RTF is supported by many text editors. Specifically, it is supported by Microsoft Word. This means that the conversion of a LaTeX document to RTF allows anyone with a copy of Word to convert LaTeX files to Word .doc or .docx files.

Features

  • Conversion of a wide range of input encodings
  • Conversion of equations (unfortunately using the broken Microsoft implementation of EQ fields)
  • Conversion of tables
  • Conversion of graphics
  • Conversion of cross-references
  • Conversion of bibliographies

The Word-centric conversion of LaTeX files is because that is what I needed. Perhaps one day this will change, but because the Microsoft field extensions are poorly supported by Open Office (for good reason), the emitted RTF files tend to be Microsoft Word specific.

latex2rtf translates the text and as much of the formatting information from LaTeX to RTF. Be forewarned that the typeset output is not nearly as good as what you would get from using LaTeX directly. So, why bother translating? Consider,

  • You use LaTeX and hate everything associated with Microsoft. Nevertheless, you have to share your documents with people who don't even know that there are alternatives.
  • You know somebody who frequently sends you very fine LaTeX documents. Unfortunately, you are “on the other side” and need to work with this obscure LaTeX file.
  • You like LaTeX and BibTeX. You interact with the rest of the world. Unfortunately, your main collaborator is an unrepentant Word user.

There are drawbacks to the conversion process. In fact, don't expect any LaTeX file to be converted as you would like, don't expect it to be converted without errors or warnings, and don't be especially surprised when it doesn't convert at all. LaTeX2RTF is known to have many bugs and many missing features. Paradoxically, this number seems to grow more and more with each day. However, we can categorically state that there are some special cases in which a LaTeX file will be translated to RTF satisfactorily by LaTeX2RTF — This was sort of disclaimer, ok? OK!

Get RTF to LaTeX converter at SourceForge

latex2rtf-2.3.18/doc/web/logo.png0000777000175000017500000003054013050672354016722 0ustar wilfriedwilfried‰PNG  IHDRF‡ í$!ńiCCPICC ProfileX…•Y 8”Ń׿cƒěĆžďY˛ď{ö˝ÂűŢŘUĘ%Ń" EˆD” ‰Š,-JŠh‘Č%‘$Tž—Ô˙˙ý—ç{žű<÷žż9ďšçž{ι˙žŤÔČČP+aáŃt3CŠ›ť7Pl€ä¨´¨H;;kđ_ˡ~„)OĺÖdýwž˙XHž~Q4 ;űřFŃÂ|¸‰Ił&O4.:r A0;QÁĺk8ŕ7nZĂ>żqĎ:“ƒ‚‡ŔŠTzLӝK @ä0Ŕ˛…ű…#ŹëŇŠžđx#<˛aak8 Á’>˙$'ŕÉôů+“J ř‹Ďe˝ŕƒ˘"CŠ ˙Osüß%,4ćĎH%F…8Z!ONÄnń4މ#‚šœčga˝A݈Œ6tŘ ˇE[8­ŮÁĎc̝7đdLˆł‚ůü#$ÂjąŠ+ÜÇĆÁlĽEyü–‰RK trÝŕąöő36A0E(7z„ĂţŔ¨XÇ?ôÄÄ@#›?üÁTË53#8“J_Ÿ ˘*ß/Ôlm\a×DFŰ9mŒő(<Ôfc.¨1şŠĂ^ö‹ZŸďúXсNćżĺĂŹŃHü– óů™ZüÖV ¤›˙ĄëG†ŽÇ4Ňv˘Ç8ŹŮAÁţ~áÎ2áL_ŞąŐo›ŔEŔPř~ °FŔxŁĽ ôp¤ĽŠT:…ĺĎĚć ćć9fóň/ˇŃ>|‘ç:íŸčŽ |B¤ú¨?ŁĄyĐşh-´5Ňę#U­ŢňçÝŁéĆéżZýÖ5é+ˇA1ÜĐ>öŸľ÷ JĄ˙KŸż=ţ]'S0ś.uƒCąZqJńǟţ˙˜1ÖkŒ5ǚbĽŕđ¸nƒďÁ-p# Ŕˇŕ&¸n]Ă˙2 uĂ*ôőůZ!#ú˜ő_á˙Q٘żTfifUŕ°Î‚ź ú;‚ËşÖA˙&%Š>ˆ¤`äŐß9ţą´8b]U´!Zą3bc4'šČĄ7#7@ë!>PE¨F˙ÚkŁ•ţ붌]ŸK˜@pX´_|ôZ ED&ЃŁ)Čné'Ką§ÉËR”•”ÁÚŢű{iĎ;ŹďŠgď?hʨÎ!ą.ńZĐIn ë ˇó4qd 0ˇp/—CýMCŻ5d?gA˘ŸŮ9D€$˘§2PZ@˜K` œ€;đDŹÂăŔn ŇÁ!pœ ”óŕ"¨ ´.đ<ĎÁk0 ĆÁG0 ž‚pD†¸!AH ’”! H2Ź!Čň† p(Ú ĽB‡ cPtŞ‚.Cץ6čôz @SĐhو(v?JĽ€Ň@ ŹPN¨¨ÔNT"* •ĘG•˘jP ¨6ÔÔsÔ0ę#j0#Ě Ár°l۰?L‡“ŕL8.…káf$ŸÂĂđ4ź„ƢÉh Zń¤9ÚMCďD'ĄłĐčóčtú)z=‹ţ…aÂđad0š Œ&‡IÇäa*0×0ČzÇ|ĂbąœX Ź:íîŘ`ě.lö4ś{ű;Š]ŔápÜ8œÎGĹEăŇq§p5¸[¸>Ü8î;ž/ˆWƛâ=đář|ţţ&ž˙żÂŔĘ Ć É`ËŕːŔĂPÎĐĚĐË0ΰB $:'B0!™O¨%t 󌌌Œ[íƒ÷1ć3^bźË8¸Dd#JˆŰ‰1Älb%ń6ń%qž‰‰IœIŸÉƒ)š)›ŠŠéÓÓwf2ł<łł/ó^ćBćć>ć1O–D–<–+,˝,ÓŹ ŹâŹFŹTÖ$ÖBÖ돏 $2I‰dK #e‘.î‘&Ůplâl&lžlilelwŘFÉ0Y„lDŚ‘SÉĺäNň8;–]‚Ý‚=˜ýűEöGěłl›9\8â9 9Z9†9aNqN ÎPÎÎzÎ~ÎĺMü› 6ům:¸ŠvSߌE.^.}.?ŽLŽ:Žç\ËÜnîîŁÜÜoxĐ<Ň<ö!sĄĄłB„V„%„…S„ë„߈D4DüErEÚEfEEˇŠî­}%Ć Ś!(vRŹ[lQ\BÜUŃ4ńÜ.ô.ÚŽöÝBť“wě1Řs6 JňIjß+˛7mďř>ł}ç“ É!ÉSSŽĽ|MuMmNăOۗ6şßlu:s:=} C+Łřú@ЁGUž:ř+Ó7óţ!ĹCy‡~dѲîV:œx5Ű?űQŽZΙ#Ř#áGúę=Œt,ńŘčń­Çr)š™š_Ox¸—ˇ9Żř$ádĚÉá|ëüŚS˘§ŽœúQXđźĐ°°ŽˆŻč`ŃâißÓ}gôĎÔó*^. *yqÖělCŠxi^ś,śl˘ÜĽźűœĆšŞ žŠC?+Ă+‡Ď;œď¨RŻŞşŔw!§US=Uł˝ćńEă‹Mľrľgë8ë]—b.}¸ě}šżŢŞžýŠĆ•ÚŤbW‹Ž‘Że6@ łĂMîMOŽ[^ooÖjžvCţFe‹PKa+GkÎMÂÍ´›Ťˇo-܎ź=ÝĐ6ÚîŐţúŽŰgö:­:ďv™vÝé6čžuWçnË=Í{×ďkÜo| ö ĄGľçÚCՇ׊=jčUďmzźĺqóí'7űôúڞ?ízfńěÁs›çOúű_ l~áűbňečËšWąŻV^ďÄ fža}“7Ä7TúVęmݰÚpëˆńHĎ;ÇwŻGiŁǢĆ~Œ§M0Mä˝|_5Š<Ů2e:őřĂśă#?ŽL§"}*š‘œšúY˙sĎŹŰěř}nőKÖ<÷|ĺ×Í_Ű솞…}[YĚüÎýýü’ĆR÷˛ëňű•¸¸ů?Ľ~6˙˛ú5¸śşIĽSׯ0RQţţ|ŠDňwȏ 0˙΍6 Œ\>PČÓ:ˆÚ k ˇŸqĚ]l%.ŸŔŕGŘĆčL´grav`ń`ő&˛…“ÓŮ;9I›śqUpĎńjóeđżT¤$ =‘M{#Ą)™/őMĆIöŞ<‡B‚âˆ˛ľJ˝*ŸZşúç-Nš-ÚÂ:tgô ŽqǛź4Ó0?ią`ĺd]˝uԖlg`ćpŇąÍi…ŕ*ĺfęîéAߖşýȎBĎł^Ţ穕>•´2ß3~Gü÷„zŮk‡Č„ň†1†-‡OEźˆěŢŮHŻŒĘ‹ŢK‹sˆ7HMÜ´ Ú5˝{`O[RÍޓű’“ĂRÜRŇä÷ó¤cŇç2Ü=x5łäPVÖáĂ9ŮŮ9ŮG˛>včřÜ”{ň˘O†ćűœr)°(Ô*’=Íw†ńĚrńDÉŁłWJóËv—űœ3ݐŻdŻ\9˙Žęţ…ËŐ5)Ckëô.I]&_ţU?yĺéŐŚkE űiM&×%šń͓7ş[Îľ&ßÜ~Ký6ë튜śöü;áFÜs]ťŻÜÍť—xßóaäC㇠{;×<9їô4ŕ™ÝsÍ~‘ځĹ#/ű^ľżŽ,}sthßۈá#–ďTG)c„ą/ă/'n˝/ŸĚ˜ ů°őŁü4qzŕSÉLČgőYĚěŔ\͗´yďŻ bßXžý\œý>šônůÝĘ菉ŸŸ~}]]]÷ż ĘV€gĐm˜ Ź#NρĎĐE¨`Ě"Ć2y1›ł¨łň“IżČ ěžšœ=\0ˇ:O ďYž7<‚ö”lĄ‚¨™Ř~ń{’x)Kél™gr‚ň ה`e[•S›GŐäÔă4Ú5ľľ uFô¤ôĂ ę —ŒuMRM[Ě^˜OY|ˇÂZ“ś ŘHŘ*ŘŠŘŤ9¨9Ş8É9‹šđş˛¸ˇĎîCˇ5o?ťcŸç6/Uoď)j‡O m—ŻłŸ‚?Á<ŕv`aP\°}ˆl(.ô]XkřŠz¤őNq: żŠş}8& Ö Ž7îküŁ„ĘĔ]ŰvoŢCÜ3‘tkoţž¨dˇÝT‘4|ÚĚţgéÍ%ö É´;¤šĹľzx,űnNí‘cGcm;Ž—K9NźÍťu˛$?ůľŔ°P¤]4~şűLUńĄ’đłvĽ*eeßË_ŸťYQZ™rާĘđ‚p5\=Zsçbymjď%ăˢőčúą+WĎ]Kkđm4n˝Ž˝>ÝüüĆ͖ŞÖă7“n…Üvo3kWż#ŮÁÓÉ܅ęúŢ=swüޛűýz{î=ěyÔŰűäńÓ'ý}/žžz6ř|¨xŕ݋ą—ŻŢżţ08ýfvhţíˇáĽwШؘÍxÂDĺű—S¤6Nżœ‘ţœ:;úĹzţƂʷşď*K7VL ü Úđż<ôuvDăŃ×1ąX5ěŽ ŸÄ`Nŕ#Ě2v󘂙MX„X~‘°lœdiö-&œ.›‚šöqŸŕšČŰÉ7Äż,ČNQ˛ŽÉ˝(Ö+>/É%Ľ' “%{In@ţ§˘’Šr JććՇjÓÄ-’šćZžÚ{uŠtkőŞőĎä&…ť™č›Š›1˜MšwZœąŒś2ľfˇŢzÁ†nŤfťl×jŸä é°ŕxÉ)ÄYĚů­KŤ“ł[ˇ{˛‡ŚÇüśší;w xń˛đ†ź[¨‰>[|i žŃ~Ę~sţuaŇ“AÁž!”7Ąa.áäđވC‘ć;1;ďГŁtŁ~D_‰U‹ŤIHM,F"…swߞě$ó˝đŢ;ű˛XK™KmMËÜď’.’ţ9ăƁŒƒ™™]ËÚwŘ*›3{$§ćHěQĂc,ǏWĺƞ0Ę#ĺ ŹÎO8eZŔ^0‚œš{N[Ÿá93YÜP’vÖąTŹtĽŹżüŇšĚ ßJ˝óźçżUő]¨ŤÎŞ şhV+^‡ŽťtçrY}ęߍ–×4%šŻs5łß ľZŮoňŢť­ÜfÜî~'Ş#§łŽŤŻ{éĺţŽ#ôn~<ŢWň, _÷…ô+šÁ­C9Ă_F÷LČMóŸ _ ržĎ˙ˆXó˙ď˙ČÖ V €r6$ žŕő‹é!çGvL8m¨ýľ‰ Źžżç„´XŔŘ @É3ݑŒ{ČA˛ÉëHţ8Á/’%ZB4h”]E˛ŔĎ(f”j+*uuőő†-ŕH8nƒ?"g‘!:]„ž^ÂH"yY&Śó+‚uĂfcť°żpę8:î"î^@v+)†0†Ë ‹]B:Ą—‘‡Ńń2K¤[™ř˜v3˝e6bŽb!ł$ą|bőd}J˛"u!šLٚüœĘ>ǑĘÉÍyy“ĂŚď\%ܖ܋<•źî|L|üIšK‚Í”=BFÂDá"˘qb–⢐İdťT%˛ÓĹËúÉ9ʛ(h**)I+‹Ťˆm–P•QSV×ŇPÚ"Ľ)Ś%˘-Ş#ŠŤ §Šoi°Ý0Ú(Ǹ֤ĎtŮ\ÜÂĹ2ÓŞÝú§ąí1ťQ ÇĂČégŕZěśęAÝÖľCÎ3ϢFřźőuđëĐźlŇś=|6ň ]<ę^ĚÎ8Ářg‰Ůťm“Ř÷žMž”šąß'C˙ Sć@VivÄýc¤ăc'ޟĚ9Xhtšrfľd¤´łźś"˙üţ 15ľF—ęݞ5š0ÍŘڛ܎eڍ:¨]éwëďż{ČÝëü$ďOĺK•×7†4‡ŻŒ gź÷Ae:qŚivfž˛`šľtjĺĆĎáőýBnX@dŔ$Áf`ˆ‡A9h`b…$!Ch;ĺBőˆďż Č(U”j7’ßßEÍÂ\°!Ÿ‚ťŕy´Ú†äçSHVnä⭘ŻX9lś űǏێ+½ÁSđžř*ü,ƒC2C‹ŕG¸Â3:1VQÄâ#& Śr$ëMe^d cyĎJc%fŘČ8ň)vöťžH>ZąÉ™‹Ŕu‡{/Ď/ŢvžL~'!9ÁNJP´°ˆ‚(›č7ąań‡-’uRŇĹ2E˛…rgäËj›•î+Š,¨˛¨ÉŞ[ixn‰ŃĚŃŞÖžŻ3­GŇ×4đ3Ě5ę2^1U6 7ŻśřdĽlżľÓ–Űn§}Ł”ÓçiW{ˇfńmš;0žń^3Ô@ŸQ_šßX@pŕlpr({Xu„qä=9Z4Ś'.&A$ńŮîIz{—’›Röëe`teŚeeĂ9ÝG3Űœ ç˝Ě/.đ/’;˝PÜz6ŁĚáœ`ĹôůŐŘԒëŢ\ŽşwÍź‘ˇiŽůAKĹÍýˇýÚ-:ş8ďB÷Śźzř ˇőÉĺ§ôçrýď_”źr$źi|KaxwaĚ||č}řäň‡”iřÓž™•ŮČšŃy§ŻˇżÉ,ć-ĺ€•‡?Unř  đ  L‘ľRA!h}`ń˝,d@PÔ͢8PÚ(_ÔaTj &ÁúȊ? ?EăĐÚč(ôô(†Y횘>,Ö{ű'ˆóÇŐá–ńŚř\üƒĂA†ˇUB6aŠŃ„ąŒČHÜCüÂĚ4ÁěË<ÉÁ˛ÂšE!Ýbó!3’›Ů#8d8>"+;™Ë…[‘‡™g–w€Żż^ B°˜R(tZ¸L¤V´Eěžř€Ä”$Í'Ł%ë%w@ţšÂ„Ÿ˛ŤĘÉÍŻŐDŐ#5nj’´‚´;uEőęĎúő›Řšö˜ŰZô[ŃŹçmÂmÇí˝†œźœ'\#Ü~yŮ.ąŁÍ˛ŠöŠöuőÇÜŠ ‘ /AîćQs17ărhť´÷p&-ě{‘r3­*=ď@bŚs–r69çűŃĄăÝ'ęO–œ:R˜r:ś8ôŹ_™÷9ŻJĎ*jľăEĽ:–KŸę{Ž^hČhňiÖlaižUŰG§tÝşťëžęƒOK{ݟ0÷|úŕ9ÔŻ>ú˘äeßk0(÷Ći(îmŢpíHŰť‡ŁýcĎǟLtźŻŸ,šÚóÁëŁ*rc|óŠr†ţYíó÷ŮësŃ_äżLÍ}ľ]@-\úśc‘°xőűŽ%ěŇĹe‡ĺď+§čýů™úKäWűŞ÷š˙ŁüU”׏ˆhfhuu^Ü1~]]])]]ýY†$ƒÜýýÝeýŹa ¨q uĽíű×ď˙fŢĹčŠĆÚâ pHYs  šœIDATxœíolÇy‡Ÿ=˙J¤DJ¤D‘‘Ži"ťi'ÓŔľâ¤ˆ\°ĺ‰ăÄ.ŠĘH˛Ń$° ůbúƒÔą4@X_4€ÜŘH‘Šnž¤…!ĹvĐŚMdMj%Ö%R'RO"%ń߉Ó{”îöćÝÝŰŰ˝YňöŇÍÎîĚý8;łűÎĚűZJ)ŞI…s™|'Lďą˙]Xőľ˜é=pő]Ň@8{ ÚaŕZ8U4C=ÂôSúC Çr?}~:Z`şúĆ@-­HÔq+͞’őÜîrňA貰í]˜]ڂ×%|‚ ÓÝ[<ň|X>T|ąęrđç뀋űajƏÂŘ!]ŽtŔ+ÚGŠą„b?°.ľ˛śţŹěűC@?0Rž)h‹šĎGž xí¨ů˛&í+΄ ÂÜ*˜ł˙¢âČNMZUˇT˜Í΄"đ;¸ť6Ż‚ö1—5Ę}ţ}˝:FTö BůůBšWŞ ŮƒČ‘<+0!̚ F F F F F NÂl2]rL#=jŸnPůç4i—œ FZĚ"<ŻI~ŠAĹѤ}әÉť’Śá€ďťbż;íhŕěĺEŘ칂ýţ”8ó&îÄŠó‰0‰0‰0‰0‰0‰0ëTŤ {!SƞCˇjţëP˜|怏ýůÄ,Ě^‡ń“0}ŔďU >ůžŃwn-Uc BŠČ>ŕçîYƀţ!čp}1ŐbŔłÜřŤNŽ|Ąd9đβ{šţ˘kë1$LńXĺ÷~€Ď6śmǰ[˜CóJ‘-™łśěşKózë|OMÁÓSŘËŚ žŮӀޚ.†ő' ý0ŇV7lč…T†Çݍ`O Ů´î„YEÁŠ•Ü<ź wÉţ%gÂşĆI ü7pżpřgBÓSbTXMšÇíÔlÂЏ ‡v—i:a€ŇűËż4Ł0Ň(Ţ^ţĽ…Ů ¤w”iFa2~25Ł0 éůň/M&Œ•Bż‹ŕÝň/qšÔ˂Š÷tGJŰ}+¸‡aŃUÂEpŐ"đ>ˇf¨-0˝&Ůî(ŞIkś…lÁ[8“/BŻKž#cÂý[)ů™đb#Ďa 3Œ‡uąň<đ¤31ĚfűąŻŐ ëŽ5٨t“9 z•0„)L.ÄkEĘxľäjA4ň…)Ě;y8GOsؓ&Y8rúwÁ+nç„>ŻdA[śĂ˛îř ôn„ˇ5‡Nź|ZC­Đ y/!œ„ţŁ`÷ŰJščzí¸v} Ře3nËńEӎJ^$Â$Â$Â$Â$Â1T]Óěö@öbdS+ާ`|Ő,Ţ‚˜¨ˆ„ŃMVŠĹÖú¸Ţ’Ý'Iç+##ŃôI-ĚÂľťÁşKŻÁŽHLľb˛ó큹Dz`ňUŘî{wTĆJÁüuy~‰//7°BUęcÔ÷]DřFŁj"a ĹX(Żş0܀ʈh1j›Lg"݆&nĽ[|äy ňZx`Bí‘ěšláŒŮ&žc´îÜÚĄ{ˇOĎŠŔD‹‘9\oh-<ˆ“0ýBzœƲp: §O‚U}çp¸WpĐw°AĺďŻ.zy4sBúWTžÎŐeUČÂHěm4&”ĆsbődĘěđސ^ľoČŚ„‘Ţ…žňŞÍŔ˜ŞÄ;ňŁŤŇb쯓śM :ď6˛.:L6ۗ]všžK6Ž*Ő˝Ÿ{ěU­?‚)íRÓF`şŁ›@źĽúŸľŸPĎë׺Gˆia^>ŻwXbwvLAł1ž‰\š•~ýçÁĐö<¨ŸŔŔ˙‚u ßëúÔ p¸KW™Š/†„éěiŘVňöî{3„†Z6f¸–aŽeĄ3c `7Œ cĂŐ „űd˝’##ƒIýDśÉb•†ĽGŕżđą÷:NÂDśÉb•Gě~a’[I F F F F NÂ$‘,„ô$’ú8ś?lPŮßÖ¤}͙`ĚPuöNĂ= .´ÁËňdčüô|ÚĚÁO3šiăd/@œ:ßX‘###Đ@łĂU )¸đ~č;Í ŰŻç‚čzËś Ôf`sYú8(íú‚ˆGĽ7şŕÖĎÁüWasٜQ7ׁB: ;žÁă㚰,˜XąËtŽšĂiß?„ÓGDëÜz”ĘÖÚypş Ôôţë2â]ćĘIçyˆ2ćŁ"~Č)ĽT&„:őY`T‹­6/ŔŽ§ÂšŢn€,dŸŤóBž˘; ŤiƒÂBđiV/Ć/Á†AňÚpřŽ|QĚDΠWuźŠ"v—Wť„ Ŕ•[`ŰŠZĎ<Ł=pŸÇ yčҟóşy'”RcJd•ĘźŽTJYo*5řŚRƒ§•z0ŤT őňž őDŠTé˙ŁÂ…Cí|3n?a^)uAŠ~ŽőŞR=g}w”ËőŒZRa sš U}RŠJľŐz͒@âuËŘĽ0őŒJ{Ą[ŰŻĚŔĽ~č)y8Ť‰{Ą0=Ű˙n ÇuŁD‹[Żí´.vŔ“Ór€……٨L˝h,iYŘc„dŰُněAr^\/A…Ńúz)|?xu´œš‡!y%y_ Ł!—X˜żŃ%Śá뒷Óz耉´ëFŻžűŕj¨k‚ƒ ógBşŸ'Ě \ŔőśÚř,÷‡UXPa2΄e{n&jK˙)\L§F?FkÜjiœ/†—Żčٜ—X'„ aA„‘V<ýG=Š…MđhŢŇmΠтüD)vˆnę32zᣲŠo'0wźžëŻYc¸ľĺaźë.(Ž˝~˜Âě ńZž€kiWŻ!é§źeJfIH˙L „@×W‡ścřŒSNˆÂĽ`+`´¨_AQ˘˜ĽĆ‘*ˆ0 íŚň4ř˄EFćŕ„x´Ć‘*hó-}ňŇO^/şŕSňи˜=ŠO#Amž]ŔŹpěăŘ1`AŰ<,¸zŔ˛ŸŇś¤PvŸĚ-‰Xü’čŚ [żA™=pnĆcĽJÜćOŔÎO—üo†@ą4‹áš/ÖřpíÁŔ]0š„ŕŞvjŇ~DŠ"†-ڜĹűĄ-ŔŞo˂łż†!_ýIY˝n~‰ˇ0ă/ÁĐĂţóŸďƒÔT€ˆ!qż•œ =c ňÚ(;•\Üo;E֋2G–äH•Ü UĎÇŇí˘šUöA™eĽÔŇíňuóâÄeĽÔ´ó%oU uë_hÂ(Ľ)ĽxOŠ“Ň´É?Wy=RJĺ˛RîłJÎ)ŐYvÎgž˘˝'Ó¸0,éˇöÝŘ:mGÎq!—ľQ}J͈š&í]úUĺ˙NŠŃIeˇŇ÷”ĘŞJáPJ3T흃ˇKSŁ\†KďƒŢňIŻyœƒqš :Đ ĹsŔ"ܲÍe%…ewś–RژĎş9 ȕł§{íŞÁ$‘‡;áO덡˝&f"ó°oŔÇœi¸ż´]°nÖŔp ő“oäĂ*s 3u÷™ů—pfT˛üׂР˝iřý?Aú;Ř_÷ßÁ6Ç-`Ľŕ쯤ÇúՎ[ϐrńaY Ja“­<¨ęýá&†kĽćuž2ey2nĂpÎÎԖWŞOÎĽ”R§Ď< {hž,Ë3Ż”RUކ„ŃrĐ>6}Čí§ŽŮN+Ę@ĘýĄđ÷J)ŐSvŽî)돣 Q„'ßâqĽĆ$OJ)ĽŚ]B&ć”:ěvŽRÓŤçž d0ţ€Ws$‹ŕŠÇŘk7Áťň>‚Ü Řz—ŕbm™Ćí§â~hXĐvţo ö-BkÇě0/ ŐčUDÁâ űđ&âJl[ĚExd+ü ž‚ŠĽUë> ›ńž•€v{h.ŒÂް—2ĚúŘÉß[i.uŘ[Wra]óN˜Ű Ö9šŠ–Ř´oY‚ű•°˜{áG.őşAlZŒĽYŁ6˝ś˙‰—ü䍍0q#F FŔHŔÁQĹoT~Վ]}Œ´˜´ckLi }ŁÂ9żâLHk:dc6ßóĐס]€É[í—Ăš e^X‚Ű`Ë,źő‡pťr4œ5a 7AŇů $Â$Â$Â$ÂÄ)€Ś V ˛ťlkĺŘçË\…Ý/!y¸¸Žîƒ­?†Mż•Ÿ-5ÔaíúÓŁÔäˆŔaÖ}@Š˝ŐçĎ8fćUijĆWůŚźćsćvˇ…@sMĘvœ.pş ž.ťct+ďƒůS0ěˍżƒ÷9žˇČY‡ˇŔlɂ*?mǤó-–ŕ˛ăűu÷ě]Ŕ”Ť—łłô`ÉÝl˜g4!+é§äĺL‹iaöAŤdƒ­˘[akžww~×ýÂĜIa:ńX%Urp"ĚĂP7lđ+Ž‚•ax˛Úó˘ă@€kŻé/`lôYt]śšUęř9ÍjJĽ_ŮPľŐůšě%ŁÇ™ßT‹„Vq>™O…Tłž•űżv&˜FpI ŔđźEĄÝđQáĐ!g‚a, ýö^°ƒ=ä",<ˇŹo5ZFi§‘KŁGťŰ*ho ‡ś–1q+Ý­Kl×řŽŠÉ螣ü‹ aîŇĺž˙‚ž˝ü‹ anu&”l ëěk6„0› éh;\'ž\d›~%0äëˇâí!&Â3 ,ěsBzŲ|Â8M”,ŹuÇ+ńÉW„ô g&„Ńż´ŐéąŮ'ƒČîk+:ÂkáŽUMś‡ĎuÉţRU'œÔ'wnÁ^~Řp—pěœ &„)^í# ?Î—xÁm3؛Î#ŁŇř+ý‘v`ćWá—8{Ô%"Ŕ4ŤHM ך+b\ƒžŰ`2Ä(~—Ÿ+™0%žŚK4öłÉuÚ~äł`ůp[ aĽlG:›ŸpÉô4ÂŤˆÉź9\ߨ20.tĐ<99{;Ě\ˇ]Žč)=´Œˆ—0góľ?łžB:O*{ߛƒúéÚĽ‚Rt)•;¤ÔY?~•`Ožń‰ĹRłs’ő*:<ă!Äâ]iZźœŻ‡ČÇń$"Â((n‡ ăržş)9{ť/ˇ•ąě ˛!řČ4Ü/‡9 Ćé…TŚťO,ú'¤rđD/<[O¤ď<œ°ŕ˛9SŽC…YłÔďŕŢ4<šîňŠfUÎĂĽVřÇřnAn”gaĘąl_Űş`Ç4Ü\]=ś ŽuÂĎ.A!ŹŮË5#LىMç7aaaaaaaaÖŠ0Vöňą źŃdJf “ĎÂüśSÁ,|bś_ĺ$Lđ{ƒďJotÁĽuoÖXHÎÓ}„ú‡ cÂ-—ŠsîœĺĆ_ur…p6•}Ŕ;Ën c][!aŠÇ*ż÷|śąuh;†Ë\šĄh9ÚĆá+ô†UsĐîĹšňőÖůžš‚§§°góźmÇi@=Ť;˛Ţ„ĄFúÁę† ˝śíxxÜÝËĐhVs­;aVQ°˘@e 7/ŰóI_r&Ź[aœ´ŘóI÷ ‡Ÿq&40%F…o[pÜNÍ& íöťËż40ț,*<ý7Ł0Ň(^áíś…Ů ¤w”iFa2~25Ł0 é1 šL+|Y8řnů# ”‰˝Iuę=ݑŇF˛Š˝îyq3%*ÉSǀ÷š5Ł@mé}0yLŠ——ś—ľV˛oá Lž˝.yZpŒŒe÷oUÄeEx9q, S˜AüÇ(‰ĎO:Ălś ńZ a°ŕ°îX“J7™ÚQŔĘ S˜\ˆ×Š”3đjˇý,ůÂć<œđďO­qĚaOšdáČyčßźB™…>ŻdA[śĂ˛îř ôn„ˇ5‡Nź|ZC­Đ ůZcş…ţS ǑsÉ"Mt˝öHËOÝň§74}švTň"F F F F FŔˆĄęšŢłX$.ނbjEŐŕŒŻšĺ/Ă[CÇVŞŁŰrŹR‹­7s4ë~Ľ˝0uĚ]cĐ[ĺQ-F Ćŕmnjěnn.›qTŇMŸÄÁ׌qtN2΄fƗŻäfĆ×VîfFňőYA3׺| ÇĚ\̇ëЧk?(ŤzE‰Ą0ůNX:×Ăl&Ükݰ¨â΄ cĽ ˙,ô=a ZU/°1écŽî…Ľˇ}NŔGÁŽŮ‹8ŒJˇĂFc˘ĚŮÎ ŤŚtLˇ˜`Ćd,HéćŻ ÷1…™z[Š4ůěóŞŻ6bRżVťUżLŮ+†§m/d:žŢV/¤œ w†r0ě˛=ç>ě,ŐDĺßÎăă1KŠqĽ^@)ËqŽŽƒ~ĘCŠÔEĽ$˙x#şsLľ˜¤Kđ…AxÔŮąUúEuŹl•ó>ĽK4%Ě7t‰ p˘UˆOÖСkŇ´”‚đ>/ŢëL0!L ĐFĘiˇďy‰1MšÔ÷HTíK*Qľ(ڄ0ť„ô¸ŰJÎjŇjő]ĐďW*VYőLóÇBş›{Y€˙ѤŐ ŻÝvlě ÚË}œ„yÇă<)´|­>%§íŰĘż˜ŚŞ_(8^1I~+¤˙AĺK×(˙bBg°KżąO¤<÷ÔXţʐ^q[Ćá%Ň/W„ôŞŠ¤ŕškv#—Âg˜ą€Ě—‰‹0~G)8ŐŐP–ô‚ÇSô+Ě…ôżŻĄ0m¨4-Ƅ=fýn ď%ši„…ŐśiÔ׏ɢß9LYo˘ĹčԀÂ1;l›9EŠˆîł•Ł‚ ňfŃĘ-ELűÝL6睁˝ýžďŕűjV8/ëĚkB˜>oa”RJíÎwąĺLär—G\Ę:ŕĚoBˏ*Ş:|ůçů´\V)ʂ1.ľ@ލbĆ,x>˘W¸F$îr?u^)őŢI[¤yŻręĘ0%ŒŸŰé¨Ç5Ün _LÚ˙hŻolúd§@ëŞDŐ$˜“)(ô0=”я°ČŘ^ žusZŚ€ř˘l‡­ACƒí0Fâţ(ÓnXÎÂĐvXž„–a{7šŻ°¨ŤçOÂż-çĐC^Âě#b÷É)uhĆĽ?™PJĺ”:ä÷zĆ[L˜XĘÂŽ.řô•2Ë^źRkT‹u%L˜Ääí:~$Â$Â$Â$Â$Â$Â4Š03Âé,Œe!űœíŘŤ’f|ŔÓy˘?F F F F F F F F F ¨0Ąn‰A…™Ň×B¨˛_kŇr΄ Â,Î8źjäm7'ŢŃÚÍóňJ–üJTĹÁŽkEŐyčŰ ­';|lى XŮRça˜RŽˆМKÍ|ń˙'ú†.<RIENDŽB`‚latex2rtf-2.3.18/doc/latex2rtf.texi0000777000175000017500000026251413664236512017320 0ustar wilfriedwilfried\input texinfo @c -*-texinfo-*- @c %**start of header @setfilename latex2rtf.info @settitle LaTeX2rtf @setchapternewpage odd @dircategory Document Preparation @c %**end of header @ignore Permission is granted to process this file through TeX and print the results, provided the printed document carries a copying permission notice identical to this one except for the removal of this paragraph (this paragraph not being relevant to the printed manual). @end ignore @ifnottex @macro latex {} LaTeX @end macro @end ifnottex @tex \gdef\latex{L\kern-.36em\raise.3ex\hbox{\sc a}\kern-.15em\TeX} @end tex @ifnottex @macro bibtex {} BibTeX @end macro @end ifnottex @tex \gdef\bibtex{B\kern-.05em{\sc i\kern-.025em b}\kern-.08em\TeX} @end tex @ifnottex @macro latexe {} LaTeX2e @end macro @end ifnottex @tex \gdef\latexe{L\kern-.36em\raise.3ex\hbox{\sc a}\kern-.15em\TeX\kern.15em 2$_\varepsilon$} @end tex @ifnottex @macro ltor {} LaTeX2RTF @end macro @end ifnottex @tex \gdef\ltor{L\kern-.36em\raise.3ex\hbox{\sc a}\kern-.15em\TeX2RTF} @end tex @titlepage @title @ltor{} @subtitle A converter from @latex{} to RTF Edition 0.7.2 for program version 2.3.18 and up @author Georg Lehner, updated by Wilfried Hennings and Scott Prahl, with contributions by Mikhail Polianski @page @vskip 0pt plus 1 filll Copyright @copyright{} 1998-2018 Georg Lehner, Wilfried Hennings, Scott Prahl Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies. Permission is granted to copy and distribute modified versions of this manual under the conditions for verbatim copying, provided also that the sections entitled ``Copying'' and ``GNU General Public License'' are included exactly as in the original, and provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one. Permission is granted to copy and distribute translations of this manual into another language, under the above conditions for modified versions, except that this permission notice may be stated in a translation approved by the Free Software Foundation. @end titlepage @ifnottex @node Top, Introduction, (dir), (dir) @top LaTeX2RTF This file documents @ltor{}, a converter that translates @latex{} to RTF. @end ifnottex @menu * Introduction:: * Installation:: * Using LaTeX2RTF:: * Features:: * Configuration:: * Error Messages and Logging:: * History:: * LaTeX2RTF under Development:: * Function Index:: * Concept Index:: @detailmenu --- The Detailed Node Listing --- Installation * General:: * Obtaining LaTeX2RTF:: * UNIX:: * DOS or Windows:: * MS Windows systems:: * Macintosh:: * Problems Compiling:: * Problems with make check:: Using LaTeX2RTF * General Assumptions:: * LaTeX2RTF Options:: * Debugging:: Features * LaTeX2e:: * Unicode Support:: * Input Encoding:: * Language Support:: * Cross References:: * Page Formatting:: * Equations:: * Math and Special Symbols:: * Tables:: * Graphics:: * Pagestyles:: * Hyperlatex:: * APA Support:: Configuration * Input Processing:: * Conditional Parsing:: * Output Formatting:: * Direct Conversion:: * Ignore Command:: * Font Configuration:: * Language Configuration:: LaTeX2RTF under Development * Unimplemented Features:: * Missing options:: * Known Bugs:: * Reporting Bugs:: * Todo List:: * LaTeX Commands:: Command List * General Commands:: * Preamble Commands:: * Letter Commands:: * Language Commands:: * Citation Commands:: * Acronym Commands:: * Other Commands:: * Environments:: General Commands * Basic Commands:: * Font Commands:: * Logos:: * Special Characters:: * Sectioning Commands:: * Uncategorized:: Language Commands * German Commands:: * Czech Commands:: * French Commands:: * Russian Commands:: Citation Commands * Apacite Commands:: * AuthorDate Commands:: * Harvard Commands:: * HyperLatex Commands:: * Natbib Commands:: @end detailmenu @end menu @ifnottex Copyright 1998-2002 Georg Lehner, updates Copyright 1999-2018 by Wilfried Hennings and Scott Prahl, with contributions by Mikhail Polianski. Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies. Permission is granted to copy and distribute modified versions of this manual under the conditions for verbatim copying, provided also that the sections entitled ``Copying'' and ``GNU General Public License'' are included exactly as in the original, and provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one. Permission is granted to copy and distribute translations of this manual into another language, under the above conditions for modified versions, except that this permission notice may be stated in a translation approved by the Free Software Foundation. @c This document applies to versions 2.3.18 and up of @ltor{}. @end ifnottex @node Introduction, Installation, Top, Top @chapter Introduction @ltor{} is a translator program from @latex{} text into ``rich text format'' files. These files are commonly referred to as RTF files. RTF is a published standard format by Microsoft. This standard can be ambiguous in places and Microsoft ignores parts of the standard it finds inconvenient, but RTF is widely used by many WYSIWIG text editors and is supported by Microsoft Word and most text processors. @ltor{} translates the text and as much of the formatting information from @latex{} to RTF. Be forewarned that the typeset output is not nearly as good as what you would get from using @latex{} directly. So, why bother translating? Consider, @enumerate @item You use @latex{} and hate everything beginning with MS-@enddots{} Nevertheless, you have to share your documents with people who don't even know that there are alternatives to MS-@enddots{} @item You know somebody who frequently sends you very fine @latex{} documents. Unfortunately, you are ``on the other side'' and need to import her files, steal some part, and then desktop publish it in your fine MS-@dots{} environment. @item You like @latex{} and @bibtex{}. You interact with the rest of the world. You know someone that wants to include your writing in a Word document. @end enumerate There are drawbacks to the conversion process. In fact, don't expect any @latex{} file to be converted as you would like, don't expect it to be converted without errors or warnings, and don't be especially surprised when it doesn't convert at all. @ltor{} is known to have many bugs and many missing features. Paradoxically, this number seems to grow more and more with each day. However, we can categorically state that there are some special cases in which a @latex{} file will be translated to RTF satisfactorily by @ltor{}---This was sort of disclaimer, ok? OK! @latex{} is a system for typesetting text and therefore it focuses on the logical structure of a document, whilst RTF is meant to be a transport format for a family of Desktop Publishing Software, dealing mostly with the design of a text. Although the commands and styles in @latex{} are much more flexible and standardized than in RTF, only a small subset of commands has been implemented to date (@pxref{Unimplemented Features}). Some of the capabilities of @ltor{} are restricted in scope or buggy (@pxref{Known Bugs}). @cindex RTF sucks RTF is a moving target, because Microsoft does not stop inventing new extensions and features; consequently you cannot view newer RTF files with older word processors. The syntax and semantics of RTF are somewhat artistic, i.e., you can generate a syntactically correct RTF file that cannot be displayed by some/most word processors. For more details on RTF the specification consult the links at @uref{http://latex2rtf.sf.net/} @node Installation, Using LaTeX2RTF, Introduction, Top @chapter Installation @cindex installation @menu * General:: * Obtaining LaTeX2RTF:: * UNIX:: * DOS or Windows:: * MS Windows systems:: * Macintosh:: * Problems Compiling:: * Problems with make check:: @end menu @node General, Obtaining LaTeX2RTF, Installation, Installation @section General The documentation of the program is found in the @file{doc/} directory in the file @file{latex2rtf.texi} in the GNU TeXInfo format. For your convenience, you can find @acronym{HTML} and @acronym{PDF} versions of the manual there as well.@* Note: In this manual, the terms "directory" and "folder" are used interchangeably. @node Obtaining LaTeX2RTF, UNIX, General, Installation @section Obtaining @ltor{} @ltor{} is available for many Unix Platforms, for the Macintosh, and for MS-DOS, including all versions of MS Windows. The latest version of @ltor{} is available at @uref{http://sourceforge.net/projects/latex2rtf/,SourceForge} and --- with some delay --- on CTAN sites: e.g., @uref{http://www.dante.de} or @uref{http://www.ctan.org}. The DOS package will also run under all MS Windows versions up to Windows 7, except 64bit systems. It requires an i386 processor or better.@* It should only be used on older Microsoft systems.@* For Win9x, ME, NT, or newer, you should use the win or win-NO-GUI package. The win-NO-GUI package only runs under Win32 (Win9x, ME, NT, 2000, XP, 2003, Vista, Win7, probably Win8 and Win10). From @ltor{} version 2.0.0 up it also runs on 64bit systems. The win package is the win-NO-GUI package plus graphical user interface (GUI) shell (l2rshell) and installer.@* It only runs under Win NT, 2000, XP, 2003, Vista, Win7 and newer.@* From @ltor{} version 2.0.0 up it also runs on 64bit systems. The win64 package (only @ltor{} version 1.9.19) is the win package but with 32bit versions of the shell utilities so that it also runs on 64bit systems. From @ltor{} version 2.0.0 up, there is no separate win64 package, as the win32 package also runs on 64bit systems. There are a few people working on @ltor{}, and some more make contributions, coordinated by Wilfried Hennings (texconvfaq ``at'' gmx.de). See the @uref{http://sourceforge.net/projects/latex2rtf/,SourceForge} project pages for the latest news. @node UNIX, DOS or Windows, Obtaining LaTeX2RTF, Installation @section UNIX To install, @enumerate @item Edit @file{MAKEFILE} for your local configuration. In particular, pay attention to the @env{DESTDIR} variable (MAKEFILE line 21). If you do not have root access you might wish to set the makefile variable @env{DESTDIR} to be your home directory. On some machines the cc compiler will issue errors. Therefore the default compiler command in the Makefile is @code{CC=gcc}. @item From version 1.9.13 up, @ltor{} supports conversion of @latex{} equations to bitmaps using the shell script @file{latex2png}, found in @file{scripts/}. @file{latex2png} requires that @latex{}, @file{Ghostscript} and @file{ImageMagick} are installed. @ltor{} will translate documents without a working @file{latex2png}, but some features will be missing. You can verify that the @file{latex2png} script is working by typing @code{make} in the @file{scripts/} directory. @item @code{make} If this is not your first time installation, you may want to preserve your old configuration (@file{*.cfg}) files. Copy them to a safe place before installing. On IBM AIX, the IBM make utility does not support some of the commands used in Makefile. In this case use @code{gmake} (from GNU) instead. Sun has decided to support the XPG4 standard on Solaris by an alternative set of binaries. To allow bitmap conversion of equations, two things are needed. First, change the first line of latex2png to @code{#!/usr/xpg4/bin/sh} Second, define the XPG4_GREP environment variable accordingly, for bash-like shells @code{XPG4_GREP=/usr/xpg4/bin/grep; export XPG4_GREP} or for tsch-like shells @code{setenv XPG4_GREP /usr/xpg4/bin/grep}. @item @code{make install} Note that the Makefile does not contain a rule for make uninstall.@* This is by design.@* On modern Linux distributions, you would prefer to install @ltor{} by the package manager of your distribution, which also provides an easy means for update and uninstallation.@* If your package manager does not provide the @ltor{} package or you need to install @ltor{} from the sources for some other reason, you should consider using @code{checkinstall} which creates a package for your package manager which then can be installed and uninstalled by the package manager. If you nevertheless need to run @code{make install}, note the following:@* If your @code{mkdir} doesn't support the @option{-p} option, then create the necessary directories by hand and remove the option from the @code{$MKDIR} variable. If you have other problems, just copy @file{latex2rtf} and @file{latex2png} to a binary directory, and move the contents of the @file{cfg/} directory to the location specified by @code{$CFG_INSTALL}. @item @code{make check} [OPTIONAL] This tests @ltor{} on a variety of @latex{} files. Expect a whole lot of warnings, but no outright errors. (On IBM AIX, use @code{gmake check}.) Note that this will check the basic functionality of the @file{latex2png} script, and then that of @file{latex2rtf}. @item @code{make install-info} [OPTIONAL] This installs @file{.info} files for use with the @code{info} program. @end enumerate You no longer need to define the environment variable @env{RTFPATH}. This is only necessary if you move the directory containing the @file{.cfg} files. Just define @env{RTFPATH} to be the path for the new location of the @file{cfg} directory. @node DOS or Windows, MS Windows systems, UNIX, Installation @section plain DOS The @acronym{UNIX} and Mac packages do not contain an executable for DOS or Windows. You may compile it yourself (with djgpp or MinGW) or get the @* DOS package as file @file{latex2rtf-x.x.x_dos.zip} (where x.x.x is the version number) @* or the win-NO-GUI package as file @file{latex2rtf-x.x.x_win-NO-GUI.zip} (no installer, no graphical user interface (GUI))@* from @uref{http://sourceforge.net/projects/latex2rtf/,SourceForge}@* The DOS package contains a precompiled executable which should run under plain DOS and also in the command prompt (or ``console'') of any MS Windows system including Vista and Windows 7 but not on 64bit systems.@* To install the DOS or win-no-GUI package of @ltor{}, extract all files from the zip archive, preserving the folder structure (winzip: check ``use folder names''), preferably to @file{C:\l2r}, or under Windows, to your "Program Files" folder (which ever it is named in your system) because then it will find its cfg files by default.@* If you extracted them to another folder (e.g.@: @file{C:\my_files\l2r}), either edit the file @file{L2RPREP.BAT} and change the folder @file{C:\l2r} to where you put them, or specify the path to the cfg folder in the command line.@* Avoid blanks in folder and file names! Make sure that the folder containing the file @file{L2RPREP.BAT} is in your search path, or put this file into a folder which is in your search path.@* To display the current search path, enter @file{PATH} from the command prompt (with no arguments). Under plain DOS, conversion of equations or figures to bitmaps is not possible because Ghostscript and ImageMagick are not available for plain DOS. @node MS Windows systems, Macintosh, DOS or Windows, Installation @section MS Windows systems To install @ltor{} on a MS Windows system (WinNT, Win2000, WinXP, Vista, Win7), download the win package, execute the @file{latex2rtf-x.x.x_win.exe} (where x.x.x is the version number) and follow the instructions. Note: The installer and GUI shell do not support Win9x and WinMe since @ltor{} v.1.9.17. If you have one of these systems, you should use the win-NO-GUI package (1.9.19 and up) of @ltor{}. To start the program double-click the @ltor{} icon, or drag and drop a @file{.tex} file onto the icon. If your @latex{} document refers to external graphic files, e.g.@: eps, or you want to use the option to convert equations to bitmaps, you must have LaTeX, ImageMagick and Ghostscript installed. These programs are freely available for download at @uref{http://www.miktex.org/}, @uref{http://www.imagemagick.org} and @uref{http://www.ghostscript.com} The following versions were available at the time of writing and tested with @ltor{} version 2.3.11: @* - MikTeX 2.9 @* - Ghostscript 9.19 @* - ImageMagick-7.0.1-8-Q16-x86-dll.exe When installing ImageMagick, be sure to choose (check)@* "Install legacy utilities (e.g. convert)" If MikTeX, ImageMagick and Ghostscript are installed, the paths to their executables are detected automatically. If for any reason this doesn't happen, these paths can be specified manually in the ``Environment'' tab of the @ltor{} GUI shell window. If you need to start @ltor{} not from its own shell but from commandline or another Windows application, you need to add the folder containing the latex2png script and the helper programs to the search path.@* Some applications (e.g.@: Lyx) allow to temporarily add the path by specifying it in the options.@* If this is not possible, you can add the latex2rtf folder to Windows' default path like follows: To add a folder -- e.g.@: C:\Program Files\latex2rtf -- to the search path: @itemize @item Note that the folder name "Program Files" contains a blank. This would lead to some problems as some parts of the latex2rtf program package interpret the blank as a parameter delimiter. Therefore in the following example the folder name "Program Files" is replaced by its DOS equivalent "PROGRA~1" which has the additional effect that this is similar for several if not all European languages.@* @item Win95, Win98, WinME @itemize @item Open the file @file{C:\AUTOEXEC.BAT} either with Edit (DOS) or with Notepad (Windows). @item At the end of that file, add the line @file{PATH=C:\PROGRA~1\latex2rtf;%PATH%} @item Save the file to its original location. Shutdown and reboot the PC.@* @end itemize @item WinNT, Win2000, WinXP, Vista, Win7 @itemize @item Right-click ``My Computer'' (German: ``Arbeitsplatz''), then select ``Properties''; @item NT: Click the ``Environment'' tab;@* XP and up: Click the ``Advanced'' tab, then the ``Environment variables'' button; @item Find the line beginning with @file{PATH=} and insert the string @* @file{C:\PROGRA~1\latex2rtf;}@* so that the complete line looks like @* @file{PATH=C:\PROGRA~1\latex2rtf;C:\WINDOWS;...} @item Click "OK" @end itemize @end itemize If you do NOT use the GUI (l2rshell.exe), either the folders where TeX, ImageMagick and Ghostscript are installed must also be in your search path, or you must edit the file @file{L2RPREP.BAT}, ensure that the pathes in this file point to the folders where TeX, ImageMagick and Ghostscript are installed on your machine, and call @file{l2rprep} before calling @file{latex2rt}. @* Or you edit @file{l2r.bat} and call @file{l2r} instead of calling @file{latex2rt}. If you DO use the GUI (l2rshell.exe), the TeX, ImageMagick and Ghostscript folders are automatically added to the search path by the GUI. When equations are to be converted to bitmaps, for each equation @ltor{} first writes a temporary l2r_nnnn.tex file to disk which consists of only the equation to be converted. It then sends the call for @file{"bash latex2png l2r_nnnn.tex"} to the operating system. @* In previous versions of latex2rtf, some users got the message ``Out of environment space'' (can occur only under Windows 95, Windows 98 or Windows ME); this should be solved now by using bash.exe instead of command.com. @node Macintosh, Problems Compiling, MS Windows systems, Installation @section Macintosh If you want a MacOS X version, make sure that you have installed the developer tools CD that is appropriate for your OS version, and then follow the directions above for a @acronym{UNIX} installation. Alternatively you can install using fink @uref{http://www.finkproject.org/} and @uref{http://sourceforge.net/projects/fink/}. As of 2006-01-30 there was a GUI shell for Macintosh at@* @uref{http://www.inf.ethz.ch/personal/fischerk/LaTeX2rtf/index.html} @* but now (Nov. 2013) this is not available anymore. There is a PPC port of an old version 1.9k for Classic MacOS @ltor{}. To convert a @latex{} file using this version, drag the file onto the @ltor{} icon. The translation is best if there are @file{.aux} and @file{.bbl} files in the same folder as the @file{.tex} file to be converted. These should be generated using @latex{} and @file{bibtex}. @node Problems Compiling, Problems with make check, Macintosh, Installation @section Problems Compiling The code for @ltor{} is standard @acronym{ANSI} C. Some possible pitfalls are @itemize @bullet @item Not correctly defining your compiler in the Makefile. The default is to use @code{gcc}. @item Encountering errors because the compiler options. During development all compiler warnings are turned on. However, different compilers have different interpretations of @option{-Wall} and may generate errors that were not found in a different development system. Please report these, but a quick fix is to remove all compiler options. @end itemize @node Problems with make check, , Problems Compiling, Installation @section Problems with @code{make check} All the files in the @file{test} directory are converted (with varying degrees of success) using @ltor{} and are tested before most CVS check-ins and with all released tarballs. There will be many warning messages, but there should be no actual error messages. If you do not have a working latex2png script, then some of the files will fail to be translated. @node Using LaTeX2RTF, Features, Installation, Top @chapter Using LaTeX2RTF @menu * General Assumptions:: * LaTeX2RTF Options:: * Debugging:: @end menu @node General Assumptions, LaTeX2RTF Options, Using LaTeX2RTF, Using LaTeX2RTF @section General Assumptions @ltor{} assumes that the @file{.tex} file you want to convert is a valid @latex{} document. The chances of a successful @ltor{} conversion are slightly better than the proverbial snowball's if the @file{.tex} file doesn't @code{latex} properly. Use @latex{} to find and correct errors before using @ltor{}.@* @ltor{} also needs the @file{.aux} file and @file{.bbl} file which are generated by running @code{latex} on the @file{.tex} file To correctly convert font names you must edit the @file{fonts.cfg} configuration file. This file is used to specify the needed font names and how the @latex{} default font names should be converted to RTF (@pxref{Font Configuration}). @latex{} variables and user defined commands are not evaluated. They will be simply ignored. To let @ltor{} know the names of variables you can add them in the @file{ignore.cfg} file (@pxref{Ignore Command}). The environment variable RTFPATH may contain a search path for the support files (all files ending in @file{.cfg}). If no file is found during the search in the search-path or if the environment variable is not set, the compiled-in default for the configuration-file directory is used. If the files are not found at all the program aborts. In the DOS and Windows versions the search path is separated by `;' in the Unix version by `:'. For the paths themselves apply `\' and `/'. A separator may appear at the beginning or ending of RTFPATH. Make sure that the configuration files are in the correct directory (or folder). @ltor{} will need at least @file{fonts.cfg}, @file{direct.cfg}, @file{ignore.cfg}, @file{english.cfg}. You may have to change one ore more of them to suit your needs (@pxref{Configuration}). @xref{Missing options}, for actual implementations irregularities. @xref{Reporting Bugs}, for information on how to reach the maintainer. @node LaTeX2RTF Options, Debugging, General Assumptions, Using LaTeX2RTF @section @ltor{} Options The @ltor{} command converts a @latex{} file into RTF text format. The text and much of the formatting information is translated to RTF making the new file look similar to the original. The command line syntax is: @example latex2rtf [-options] inputfile[.tex] @end example for the DOS and Windows versions: @example latex2rt [-options] inputfile[.tex] @end example The options set in the Windows GUI (l2rshell.exe) are inserted as command line options when clicking RUN. The @code{-options} may consist of one or more of the following @table @code @item -a auxfile specify an @file{.aux} file (for table and figure references) that differs from @file{inputfile.aux}. If this is omitted, the name of the inputfile with the suffix replaced @file{.aux'}will be taken. You must provide both files (@file{.tex} and the @file{.aux}) to be able to convert cross-references in a @latex{} file. The @file{.aux} is created by running the @file{inputfile.tex} through @code{latex}. @item -b bblfile Unless an @file{bblfile} is specified with the @code{-b} option, @ltor{} uses a @file{inputfile.bbl}. The @file{bblfile} file is used for citations and is typically created by running @file{inputfile.aux} through @file{bibtex}. @item -C codepage used to specify the character set (code page) used in the @latex{} document. This is only important when non-ansi characters are included in the @latex{} document. Typically this is done in a @latexe{} file by using @code{\usepackage[codepage]@{inputenc@}} and in this case you need not specify the -C codepage option. If NO @code{\usepackage[codepage]@{inputenc@}} is in the @latexe{} file, you must inform the converter about the codepage by the -C codepage option. You may select any of the following code pages: ansinew, applemac, cp437, cp437de, cp850, cp852, cp865, decmulti, cp1250, cp1252, latin1, latin2, latin3, latin4, latin5, latin9, next. The default behavior is to use ansinew (code page 1252). Cyrillic support includes conversion of koi8-r, koi8-u, cp1251, cp855, cp866, maccyr, and macukr encodings. @item -d debug_level The @option{-d} option determines the amount of debugging information to send to stderr while translating. debug_level=0 means only Errors, `1' Warning Messages (default) also. The debug_level can go as high as `7' for insane amounts of debugging fun. Warnings and error messages are output to stderr and by default listed in the console window. They can be redirected to a file ``latex2rtf.log'' by appending @code{2>latex2rtf.log} to the command line. @item -D dots_per_inch used to specify the number of dots per inch for equations converted to bitmaps. This value is also used when picture environments are converted to bitmaps as well as when EPS graphics are converted to png files. The default value is 300 dots per inch. @item -E# selects whether figures are included in the rtf (default) or created as external files with the filenames inserted in the rtf text. The options -E4, -E8 and -E12 are experimental and may not work as expected. @table @code @item -E0 Do not include any figures in RTF. @item -E1 Include figures that need no conversion. @item -E2 Include figures that need conversion. @item -E3 Include all figures (default). @item -E4 Insert filenames for figures that do not need conversion. @item -E8 Insert filenames for figures that need conversion. @item -E12 Insert filenames for all figures. @end table With options -E8 and -E12, pdf and ps graphics as well as tikz graphics are converted to eps and the eps filenames inserted in the document text. With -E4 and -E12, bitmap files are inserted in their original format. After opening the rtf in a textprocessing or dtp program, a macro can search for the inserted filenames and insert the files in their places. Further info is in the description of the -M option. @item -f# where # selects which fields to use during conversion: @table @code @item -f0 do not use fields in RTF. This is handy when primitive RTF editors are being used to view the RTF output. @item -f1 use fields for equations but not @code{\ref} and @code{\cite}. @item -f2 use fields for @code{\ref} and @code{\cite} but not equations. This will be useful for versions of OpenOffice that import cross-references properly (as of Sept 2003 in a soon-to-be released version) but do not properly handle fields in equations. @item -f3 use fields when possible. This is the default and is most useful when the RTF file is being exported to be used in Word. This retains the most information from the original @latex{} file. @end table @item -F use LaTeX to create bitmaps for all figures. This may help when figures are not translated properly with the default settings. This typically requires a functional version of ImageMagick on your machine to work properly. @item -h a short usage description @item -i language used to set the idiom or language used by the @latex{} document. Typically, this is specified in a @latexe{} document by including @code{\usepackage[language]@{babel@}} where @code{language} is one of the languages supported by the @code{babel} package. All languages listed in the babel system are supported so far as translations for ``Chapter,'' ``References,'' and the like. Furthermore, some commands found in the style files for german, french, russian, and czech style are supported (@pxref{Language Configuration}). @item -l same as @option{-i latin1} (Note that the default behavior is to use @option{ansinew} which is a superset of @option{latin1}). Included for backwards compatibility. @item -M# where # selects the type of equation conversion. Use @table @code @item -M1 convert displayed equations to RTF @item -M2 convert inline equations to RTF @item -M4 convert displayed equations to bitmap @item -M8 convert inline equations to bitmap @item -M16 insert Word comment field that contains the raw LaTeX equation @item -M32 insert the raw latex equation in the RTF text delimited by @code{$ ... $} for inline equations and by @code{\[ ... \]} for displayed equations.@* This is useful when using version 6 of the MathType equation editor, which converts typed or pasted TeX code into a MathType equation.@* Probably this could also be useful for use in OpenOffice, as OO has an equation syntax which partially resembles TeX syntax. @item -M64 convert displayed equations to EPS files and insert filenames in RTF text. @item -M128 convert inline equations to EPS files and insert filenames in RTF text. @end table These switches can be combined to get different effects. Handy examples are @table @code @item -M3 convert both inline and displayed equations to RTF (default) @item -M6 convert inline equations to RTF and displayed equations to bitmaps @item -M12 convert both inline and displayed equations to bitmaps @item -M192 convert both inline and displayed equations to EPS and insert filenames in RTF text @end table Conversion to bitmaps or eps requires that you have installed a working latex2png script. Producing bitmaps is slow.@* When running the DOS version, conversion to bitmaps works for the first 26 equations but fails for the rest with the message@* "latex2png: pipe error: Too many open files (EMFILE)".@* This is probably a bug in the djgpp 2.04 compiler.@* The Windows version, compiled with MinGW, successfully converts at least 500 equations to bitmaps.@* When -M64, -M128 or both are specified, equations are converted to individual eps files, the filenames of which are literally inserted in the rtf file, delimited by [###...###]. After loading the rtf file in a text processing program, a macro can be run which searches for "[###" and "###]", extracts the filename, and inserts the eps in that place. The Windows installer package contains the code of such a macro for Word2010 in the file "WordMacro_InsertEPSfromNames.txt" in subfolder "scripts". (This macro may also run on other versions of Word but it was only tested on Word2010.) In Word, the inserted eps graphics display in bad quality on the screen and on non-postscript printers but can be printed in high quality on postscript and pdf printers. @item -o outputfile Unless an @file{outputfile} is specified with the @code{-o} option, the resulting RTF filename is formed by removing @file{.tex} from the @file{inputfile} and appending @file{.rtf}. @item -p Escape parentheses in mathematical formulas. This has no effect unless EQ fields are being generated. When this option is used, then a `(' or `)' that appears in an EQ field will be preceeded by a backslash. Despite documentation to the contrary (which says that all parentheses should be escaped), adding escapes usually produces a worse result than doing nothing. If Word displays some formulas with parentheses as ``Error!'', you might try this option as a last resort. See also the -S option. This is an option because it will break typesetting equations with non-matching parentheses (because an unmatched unquoted parenthesis would terminate the field). @item -P /path/to/cfg used to specify the folder (i.e. directory) that contains the @code{.cfg} files and/or the folder that contains the latex2png script.@* Unix, Mac: The folder that contains the latex2png script must be prepended by a ":".@* DOS, Windows: The scripts folder is not used, the scripts are always taken from the search path, therefore the folder containing the scripts and the helper programs must be the first in the search path. You can either add it to the search path permanently or add it temporarily by calling l2rprep.bat before starting conversions.@* If any of the folder names contains a blank, the folder string must be enclosed in single (Unix, Mac) or double (DOS, Windows) quotes.@* Examples:@* (Unix:) @code{latex2rtf -P ./cfg/:./scripts/ foo}@* (DOS/Windows:) @code{latex2rt -P "C:\Program Files\latex2rtf\cfg" foo}@* Note that without specifying the -P option, @ltor{} tries to find its cfg files in the following locations:@* 1. the folder specified by the environment variable @code{RTFPATH}, if this variable exists;@* 2. The folder @code{%PROGRAMFILES%\latex2rtf\cfg}, if the variable @code{PROGRAMFILES} exists -- this is the folder in which @ltor{} is installed by the Windows GUI installer with default settings;@* 3. the folder specified at compilation time by the variable @code{CFGDIR}. This is set in the Makefile. The DOS version is compiled with @code{CFGDIR=C:/l2r}, the Windows version with @code{CFGDIR=C:/PROGRA~1/latex2rtf}. @item -se# selects the scale for equation conversion, where # is the scale factor (default 1.00). @item -sf# selects the scale for figure conversion, where # is the scale factor (default 1.00). @item -t# where # selects the type of table conversion. Use @table @code @item -t1 convert tables to RTF (default) @item -t2 convert tables to bitmaps @end table @item -v or -V prints version information on standard output and exits. @item -S used to specify that semicolons should be used to separate arguments in RTF fields (instead of commas). Typically this is needed when the machine that opens the RTF file has a version of Windows that uses `,' for decimal points. @item -T /path/to/tmp used to specify the folder where to put temporary files. The path can be absolute, e.g.@: @code{/path/to/tmp} or relative to the folder where the .tex input file is in, e.g.@: @code{tmp} or @code{./tmp}.@* If you call @ltor{} from the commandline (e.g.@: under Linux or when called as export filter by LyX), make sure that the tmp folder exists. Only the @ltor{} Windows shell tries to create the tmp folder, the command line program doesn't. @item -W includes warnings directly in the RTF file @item -Z# add the specified number of extra @code{@}} to the end of the RTF file. This is useful for files that are not cleanly converted by @ltor{}. @end table With no arguments other than switches starting with a ``-'', @ltor{} acts as a filter, i.e., it reads from @code{stdin} and writes to @code{stdout}. In addition, diagnostic messages are sent to @code{stderr}. If these standard channels are not redirected using @code{<} and @code{>}, then the input is read from the command line, and both output and error messages are printed on the screen. To redirect warnings and error messages to a file ``latex2rtf.log'', append @code{2>latex2rtf.log} to the command line. If a non-switch argument is present, @ltor{} assumes it is the name of the input file. The file must have extension ``.tex'' but the extension is optional. The output file is constructed from the input file name by removing the extension ``.tex'' and adding ``.rtf''. @node Debugging, , LaTeX2RTF Options, Using LaTeX2RTF @section Debugging With the @option{-d} option you can specify how much processing information @ltor{} reports. If there is a logfile specified the output goes to this file. Nonetheless Warnings and Errors are logged to stderr always. They can be redirected to a file ``latex2rtf.log'' by appending @code{2>latex2rtf.log} to the command line. Possible values of @option{-d} are @enumerate 0 @item only errors. @item Translation Warnings (default). @item shows preparsing of sections @item Reasonably high level debugging messages @item Show all function calls @item Show each character as it is processed @item Show processing of characters as they are output as well @end enumerate @node Features, Configuration, Using LaTeX2RTF, Top @chapter Features In this chapter you find what styles is @ltor{} supposed to translate correctly to RTF. @menu * LaTeX2e:: * Unicode Support:: * Input Encoding:: * Language Support:: * Cross References:: * Page Formatting:: * Equations:: * Math and Special Symbols:: * Tables:: * Graphics:: * Pagestyles:: * Hyperlatex:: * APA Support:: @end menu @node LaTeX2e, Unicode Support, Features, Features @section LaTeX2e @ltor{} understands most of the commands introduced with @latexe{}. It translates both the old 2.09 version of @code{\documentstyle[options]@{format#@}} and the newer @code{\documentclass[options]@{format@}}. @node Unicode Support, Input Encoding, LaTeX2e, Features @section Unicode Support As of version 1.9.17 and up, @ltor{} has limited unicode support. @latex{} files that use unicode sequences are just emitted directly into the RTF file.@* Symbols and odd characters in math sequences may also be converted to a unicode sequence. Some of them need the STIXGeneral fonts (see @ref{Math and Special Symbols}) to be installed on the system where the rtf file is to be displayed or printed. Support for unicode encoded input is activated by the @latex{} command @* @code{\usepackage[utf8]@{inputenc@}} @* or @* @code{\usepackage[utf8x]@{inputenc@}}. @node Input Encoding, Language Support, Unicode Support, Features @section Input Encoding It is not necesary to specify the @option{-C} option if you use @code{\usepackage@{isolatin1@}} or @code{\documentstyle[isolatin1]@{...@}}. @ltor{} automagically detects these packages/style options and switches to processing of ISO-Latin1 codes. The following encodings are supported: ansinew, applemac, cp437, cp437de, cp850, cp852, cp865, decmulti, cp1250, cp1252, latin1, latin2, latin3, latin4, latin5, latin9, next, koi8-r, koi8-u, cp1251, cp855, cp866, maccyr, macukr, utf8, and utf8x. The encoding used in RTF files is cp1252. If cyrillic fonts are present, then these are represented in the RTF file using cp1251 (Windows Cyrillic). @node Language Support, Cross References, Input Encoding, Features @section Language Support @cindex language support @cindex babel The following languages from the Babel package are supported: afrikaans, german, nynorsk, spanish, bahasa, dutch, icelandic, polish, swedish, basque, english, portuges, turkish, brazil, esperanto, irish, romanian, usorbian, breton, estonian, italian, samin, welsh, catalan, finnish, latin, scottish, croatian, lsorbian, serbian, czech, french, magyar, slovak, danish, galician, norsk, slovene. The only thing that these files do is to translate various words usually emitted by @latex{} during processing. For example, this ensures that the @ltor{} will provide the correct translation of the word ``Chapter'' in the converted document. You can select any of the above languages using the @option{-l} option. This is not needed if your @latex{} file contains @code{\usepackage[language]@{babel@}}. Encountering the @option{german} package or babel option (by H. Partl of the Vienna University) makes @ltor{} behave like that: German Quotes, German Umlauts by @code{"a}, etc@enddots{} This support is programmed directly into @ltor{} and supporting similar features for other languages will require patching the source code. There is similar support for @option{french} packages. There is reasonable support for english, latin1, latin2, and cyrillic languages. @xref{Language Configuration}, for details on how to write a @file{language.cfg} file for your language by yourself. @node Cross References, Page Formatting, Language Support, Features @section Cross References Cross references include everything that you might expect and then some: bibliographic citations, equation references, table references, figure references, and section references. Section, equation, table and figure references are implemented by placing RTF bookmarks around the equation number (or table number or figure number). Page references work but are implemented as ``warm'' cross-references. This means that Word does not automatically update the page references when the file is opened. To update the page references you must select the entire document (in Word) and press @code{F9}. @cindex bibliography Bibliographic references currently require that a valid @file{.aux} file be present. This is where @ltor{} obtains the reference numbers. It would be nice if @ltor{} just automatically numbered the references when there was no @file{.aux} file, but @ltor{} does not do this yet. @cindex bibliography, BibTeX @cindex BibTeX @ltor{} relies on @bibtex{} to convert and format bibliographic entries. Usually the style file for a particular @bibtex{} format does not use any special @latex{} commands and therefore the bibliography file @file{file.bbl} can be processed by @ltor{} without difficulty. As a consequence, @ltor{} can handle most bibliography styles without problem. @cindex bibliography, apacite @cindex bibliography, apalike @cindex bibliography, authordate @cindex bibliography, harvard @cindex bibliography, natbib @cindex bibliography, apanat1b @cindex apacite @cindex apalike @cindex authordate @cindex harvard @cindex natbib @cindex apanat1b There are several latex style packages that add additional latex commands to enhance bibliographic formatting. @ltor{} currently supports the following bibliographic packages:@* apacite, apalike, authordate, harvard, natbib (also with apanat1b). These packages have many, many options and you may encounter problems with formatting in special cases. As of @ltor{} 1.9.17 and up, the natbib command bibpunct is supported. Footnotes are implemented and appear at the bottom of each page. @cindex footnotes @cindex index Indexing is reasonably-well supported. The simple mark-up of @code{makeindex} @example \index@{topic!subtopic@@\textit@{subtopic@}@} @end example is supported. The rest of the fancy indexing stuff is not implemented. The index is created at the location of the @code{\printindex} command. When a file with an index is first opened in Word, you must select the entire file and update the page references and fields by pressing @code{F9}. Currently, there is no support for @code{\labels} of @code{\item}s in enumerate environments. The conversion of cross-references is not perfect because of the different mechanisms in the @latex{} and Word worlds. In particular, if there are multiple @code{\label} in a figure, table, or section environment then only the first gets processed. It is also possible to confuse the @ltor{} in eqnarray environments. @node Page Formatting, Equations, Cross References, Features @section Page Formatting @cindex page formatting @cindex geometry package @cindex margins @cindex line spacing @cindex double spacing @cindex setspace package @ltor{} will handle some basic page formatting options, including \doublespacing (as implemented in the setspace package), and the margin setting options provided by the geometry package including commands in the ratio, centering and margin families. Not all geometry options are implemented yet, in part because there are no corresponding rtf commands for many of them. @node Equations, Math and Special Symbols, Page Formatting, Features @section Equations @cindex equations There are six separate levels of equation translation based on the -M switch, see @ref{LaTeX2RTF Options}. Each equation is converted either to an EQ field or to a bitmap or inserted as raw TeX code in the document or converted to an eps file with the eps file name inserted in the document text delimited by [###...###]. This is an interim solution (for some definition of ``interim''). Ideally the equations would become OLE equation objects in the RTF file, but this needs to be implemented. Some functions in the EQ fields have two or more parameters with a separator between each two. Unfortunately, the interpretation of these separators depends on the country specific settings in the MS Windows system in which the rtf file is opened. e.g.@: in English versions of MS Windows, the default parameter separator is the comma, in German versions the default is the semicolon. If the parameter in the RTF file does not match the Windows setting, some EQ fields are not interpreted correctly. You can check and set the separator in [Windows control panel - country settings - numbers - list separator]. By default, @ltor{} uses the comma as separator. If @ltor{} is called with the command line parameter -S , the semicolon is inserted as parameter delimiter. Theoretically, according to the Word help file, parentheses `(' or `)' in mathematical formulas should be escaped (by a preceding backslash). Despite this, adding escapes usually produces a worse result than doing nothing. If Word displays some formulas with parentheses as ``Error!'', you might try the -p option as a last resort. It is also possible to convert an EQ field generated by @ltor{} to an Equation Editor object by opening the rtf file in Word and double-clicking on the equation. However there are bugs in the interface between Word and Equation Editor which prevent symbols in font Symbol or MTExtra to be converted correctly. The full commercial version of the Equation Editor, called MathType, handles this conversion correctly. If you have MathType version 6 or later, an even better way to convert @latex{} equations to MathType is letting @ltor{} write the @latex{} code of the equations verbatim in the rtf file (option -M32), then open the rtf file in Word, select the @latex{} code of an equation, cut it to the clipboard, open MathType, and paste the code. MathType will convert the code into an equation. Wilfried tried to automate this in a Word macro, but this fails because the macro does not wait until MathType is started and ready to receive the pasted code. Maybe the MathType authors will give us a hint or provide such a macro. MathType can be downloaded from @uref{http://www.dessci.com/} (30 day test version). @node Math and Special Symbols, Tables, Equations, Features @section Math and Special Symbols @cindex math @cindex special symbols The way that symbols are converted in the RTF is based on the following observations. If the symbol is found in the latin 1 character set, then the current font is used, else the unicode code is inserted in the rtf code. (Implemented since version 2.1.0) The means that on the system where the @file{.rtf} file is opened, a unicode font should be available or these glyphs will not be displayed correctly. As only the STIX fonts contain all needed characters, these fonts should be installed on the system where the rtf file is to be displayed or printed. Many mathematical and special symbols are directly supported by @ltor{}. Less common symbols (not found in the standard font) are supported by the conversion table in the file @file{direct.cfg}, see @ref{Direct Conversion}. Required fonts are: @itemize @item ``Times'' / ``Times New Roman'' or ``Helvetica'' / ``Arial'', preferably with Unicode extension (i.e. supporting all European languages including Cyrillic, Greek, and Hebrew). ``Times'' or ``Times New Roman'' and ``Helvetica'' or ``Arial'' are standard on all systems, but not their Unicode extension. @item ``STIXGeneral'' (4 fonts in plain, italic, bold, bold-italic). These fonts are available from @uref{http://sourceforge.net/projects/stixfonts/}. Note that while Office 2003 on Vista works correctly with the Open Type version, it does not on Windows XP (Word 2003 assigns no character spacing, and Publisher doesn't display the character at all). On Windows XP, Office 2003 only displays the symbols correctly with the TrueType (ttf) version of the fonts. But stixfonts.org only supplies the Open Type (otf) version. TrueType versions of the fonts can be downloaded from @uref{http://sites.google.com/site/olegueret/stixfonts-ttf}. @end itemize @node Tables, Graphics, Math and Special Symbols, Features @section Tables @cindex tables Conversion of tabular and tabbing environments is somewhat lame. The main difficulty is that @latex{} (and html) will size the columns of a table automatically. There is no such feature in RTF. Consequently, the conversion defaults to making all the columns have equal size. This is suboptimal and should be revised. Another way is to use the option -t2 to make latex render them as bitmaps and insert the bitmaps into the RTF file. This feature was added in version 1.9.19. @node Graphics, Pagestyles, Tables, Features @section Graphics @cindex graphics There is now rudimentary support for @code{\includegraphics}. Three file types will be inserted into the RTF file without needing conversion: @file{.pict}, @file{.jpeg}, and @file{.png} files. EPS and PDF files are converted to PNG using @code{convert} from the ImageMagick package. Some options are even handled properly. @node Pagestyles, Hyperlatex, Graphics, Features @section Pagestyles @cindex pagestyles If there is no @code{\pagestyle} command, the RTF output is generated as with plain pagestyle, i.e. each page has its page number centered at the bottom. You must turn this off with the \pagestyle@{empty@} command in the @latex{} file if you don't want pagenumbers. The headings and myheadings styles are silently ignored by now. The twosided option to the \documentstyle or \documentclass produces the corresponding RTF tokens. Note that these features require RTF Version 1.4. @node Hyperlatex, APA Support, Pagestyles, Features @section Hyperlatex @cindex hyperlatex Hyperlatex support is largely broken at the moment, but continues to improve. Otfried Schwarzkopf has created the ``Hyperlatex Markup Language'' which is a ``little package that allows you to use @latex{} to prepare documents in HTML.'' It brings an Emacs lisp program with it to convert the Hyperlatex file to HTML. Hyperlatex can be obtained from the CTAN-sites, see @ref{Obtaining LaTeX2RTF}. There are two convenient commands that avoid typing: \link and \xlink that generate an ``internal'' label which then is used in the following \Ref and \Pageref commands. @latex{} makes it possible to write `\link@{anchor@}[ltx]@{label@}', which typesets: `anchor ltx'. @ltor{} does NOT support this aproach since the optional parameter is thrown away right now, see @ref{LaTeX2RTF under Development}. Note that you have to update your @file{.cfg} files if you are upgrading, since there are a lot of HTML oriented commands in Hyperlatex that we simply can `ignore'. @node APA Support, , Hyperlatex, Features @section APA Support @cindex APA Support Some APA citation styles are supported, see @ref{Citation Commands} Support for APA text formatting is only rudimentary at the moment (headings without numbering). If you want to format a document according to APA, rename cfg/style.cfg to style_sav.cfg and rename cfg/styleAPA.cfg to style.cfg before starting @ltor{}. @node Configuration, Error Messages and Logging, Features, Top @chapter Configuration @menu * Input Processing:: * Conditional Parsing:: * Output Formatting:: * Direct Conversion:: * Ignore Command:: * Font Configuration:: * Language Configuration:: @end menu @node Input Processing, Conditional Parsing, Configuration, Configuration @section Input processing @cindex input processing @cindex direct.cfg @cindex ignore.cfg On processing input @ltor{} first converts the @latex{} special characters. If it encounters one of the standard commands it is converted internally. If a command is not known to @ltor{} it is first looked up in @file{direct.cfg} and the RTF code specified there is output. If not found there it is looked up in the section @file{ignore.cfg}. This file includes a lot of @latex{} commands that do not affect the output (cross reference information and the like), or that we are not able or willing to convert to RTF. You can use @file{ignore.cfg} if you get tired of seeing @example WARNING: command: `foo' not found - ignored @end example @noindent and you don't need `foo' in your RTF document. It would be nice to send your additions to the @ltor{} mailing list for inclusion in later distributions. @ltor{} accepts Unix, MS-DOS, and Macintosh line ending codes (\n, \r\n and \r). The files it creates get the line ending for the platform on which @ltor{} was compiled. The @latex{} file may have been created with a wide variety of character sets. If the @latex{} lacks the @code{\package[codepage]@{inputenc@}} definition, then you may need to use the command line switch to manually select the proper code page (@pxref{Input Encoding}). @node Conditional Parsing, Output Formatting, Input Processing, Configuration @section Conditional Parsing @cindex Conditional Parsing @cindex %latex2rtf @cindex iflatextortf Starting with @ltor{} 1.9.18, there is a handy method for controlling which content should be processed by @latex{} or by @ltor{}. Control is achieved using the standard @code{\if} facility of @TeX{}. If you include the following line in the preamble of your document (i.e., before @code{\begin@{document@}}) @example \newif\iflatextortf @end example Then you will create a new @code{\iflatextortf} command in @latex{}. @TeX{} sets the value of this to @code{false} by default. Now, @ltor{} internally sets @code{\iflatextortf} to be true, and to ensure that this is always the case, @ltor{} ignores the command @code{\latextortffalse}. This means that you can control how different applications process your document by @example \iflatextortf This code is processed only by latex2rtf \else This code is processed only by latex \fi @end example Note that @code{\iflatextortf} will only work within a section; you cannot use this command to conditionally parse code that crosses section boundaries. Also, it will only work on complete table or figure environments. Due to the mechanism used by @ltor{} in processing these environments, at this time the only way to conditionally parse tables and figures is to include two complete versions of the environment in question, nested within an appropriate @code{\iflatex2rtf} structure. @ltor{} versions 1.9.15 to 1.9.18 had the ability to hide contents from @latex{} but expose them to @ltor{} by starting a line with @code{%latex2rtf:}. This code was horribly broken, and it was removed. The same functionality is readily achieved using the @code{\iflatextortf} mechanism. For example, the old method allowed @example %latex2rtf: This line will only appear in the latex2rtf output, @end example To get the same behavior, define @code{\iflatextortf} and use @example \iflatextortf This code is processed only by latex2rtf \fi @end example @node Output Formatting, Direct Conversion, Conditional Parsing, Configuration @section Output Formatting On writing output, @ltor{} generates the operating system specific line ending code (@code{\n} on Unix, @code{\r\n} on DOS or Windows), depending on which system @ltor{} was compiled. As both should be legal to any RTF Reader the resulting RTF rendering should not be affected. @ltor{} does not offer a whole lot of flexibility in how files are translated, but it does offer some. This flexibility resides in four files @file{direct.cfg}, @file{ignore.cfg}, @file{fonts.cfg}, and @file{language.cfg}. These filese are documented in the next four sections. @node Direct Conversion, Ignore Command, Output Formatting, Configuration @section Direct Conversion The file @file{direct.cfg} is used for converting @latex{} commands by simple text replacement. The format consists of lines with a @latex{} command with backslash followed by comma. The rest of the line until a @samp{.} character will be written to the RTF file when the command is found in the @latex{} file. Lines starting with a @samp{#} character are ignored. After the @samp{.} everything is ignored to end of line. To select a specific font use @code{*fontname*}, where @code{fontname} be defined in @file{fonts.cfg}. To write the @samp{*} character use @samp{**}. @verbatim \bigstar,{\u8727**}. \copyright,\'a9. @end verbatim In general, specific fonts should not be specified in this file. There is a mechanism to do this, but it turns out that this is not as useful as originally thought. The main reason that this fails is because the conversion of equations from Word fields to Equation Editor objects is buggy. The consequence is that to have symbols show up properly, they must be encoded differently when the Symbol and MT Extra fonts are used --- depending on whether Word fields are active or not. It was all very tedious to figure out a mechanism that was ``least broken.'' @node Ignore Command, Font Configuration, Direct Conversion, Configuration @section Ignore Command The file @file{ignore.cfg} is used for defining how to ignore specific commands. This file is used for recognition of @latex{} variables, user defined variables, and some simple commands. All variables are ignored but the converter must know the names to correctly ignore assignments to variables. Lines in this file consist of a variable name with backslash, followed by comma and the type of the variable followed by @samp{.}. Possible types are @table @samp @item NUMBER simple numeric value @item MEASURE numeric value with following unit of measure @item OTHER ignores anything to the first character after @samp{=} and from there to next space. e.g., @code{\setbox\bak=\hbox} @item COMMAND ignores anything to next @samp{\} and from there to the occurence of anything but a letter e.g., @code{\newbox\bak} @item SINGLE ignores single command e.g., @code{\noindent} @item PARAMETER ignores a command with one parameter e.g., @code{\foo@{bar@}} @item PACKAGE does not produce a Warning message if PACKAGE is encountered, e.g., `@code{\kleenex,PACKAGE.}' ignores `@code{\usepackage@{kleenex@}}' @item ENVCMD intended to process contents of unknown environment as if it were plain @latex{}, e.g.@: `@code{\environ,ENVCMD.}' @* Therefore `@code{\begin@{environ@} text \end@{environ@}}' would be converted to `text'. Doesn't work in @ltor{} version 2.1.0 up to and including 2.3.4. @item ENVIRONMENT ignores contents of that environment, e.g., with `@code{\ifhtml,ENVIRONMENT.}'', `@code{\begin@{ifhtml@} text \end@{ifhtml@}}' ignores `text'. @end table The types are in upper case exactly as above. Do not use spaces. Lines starting with a @samp{#} character are ignored. After the @samp{.} everything is ignored to end of line. Example: @example \pagelength,MEASURE. @end example @node Font Configuration, Language Configuration, Ignore Command, Configuration @section Font Configuration The file @file{fonts.cfg} contains the font name mapping. For example, this file determines what font is used to represent @code{\rm} characters in the RTF file. A line consists of a font name in @latex{} followed by comma and a font name in RTF. The end is marked by a @samp{.}. No spaces are allowed. The @latex{} font will be converted to the RTF font when it is found in the @latex{} file. If multiple translations for the same @latex{} font are specified, only the first is used. All fonts in a @latex{} file that are not in this file will be mapped to the default font. All RTF fonts listed in this file will be in every RTF file header whether used or not. Lines starting with a @samp{#} character are ignored. After the @samp{.} everything is ignored to end of line. To add a RTF font not used as substitute for a @latex{} font --- for example a Symbol font used in @file{direct.cfg} --- use a dummy @latex{} name like in the following @example Dummy3,MathematicalSymbols. @end example Make sure you use the correct font name. Take care of spaces in font names. The default fonts are named Roman @code{\rm}, Slanted @code{\sl}, Sans Serif @code{\sf}, Typewriter @code{\tt}, or Calligraphic @code{\cal}. @node Language Configuration, , Font Configuration, Configuration @section Language Configuration The file(s) @file{language.cfg} control the translation of @latex{}'s ``hardcoded'' sectioning names. The standard @latex{} styles have some fixed Title names like `Part', `Reference' or `Bibliography' that appeared in English or German in the output with the original versions of @ltor{}. It is unlikely that you will need to create a new @file{language.cfg} file. However, just look at one of the existing files and follow the pattern. The format is really simple. @node Error Messages and Logging, History, Configuration, Top @chapter Error Messages and Logging As stated in the Debugging section, @ltor{} provides a means to control the amount of debugging information through the @option{-d#} switch. By using a debugging level of 4, you can get a pretty good idea of what @latex{} command caused the problem and what line that command might be found on. Warnings and error messages are output to stderr and by default listed in the console window. They can be redirected to a file ``latex2rtf.log'' by appending @code{2>latex2rtf.log} to the command line. @table @samp @item Fatal error messages indicate a bug in the source code. PLEASE report them, if they do not apear in the documentation (@pxref{Reporting Bugs}). @item Error messages always abort the program and are caused by conditions that prevent further conversion of the input file. Typically this is cause by @ltor{} getting hopelessly confused by the number of braces in the @latex{} file. @item Warning messages inform you, that there is some conversion loss from @latex{} to RTF, or that the output file has some restrictions on some RTF Readers. Most of these warnings can be supressed by add the offending command to the @file{ignore.cfg} file. @end table Error and Warning messages should follow the GNU Coding standards, i.e. they have the format @example inputfile':line: Error|Warning: message @end example You can also control the level of debugging output by inserting @code{\verbositylevel@{#@}} in the @latex{} file. This is very handy if you have a large @latex{} file that is failing in only a small section. For example, @example problem free latex file .... \verbositylevel@{5@} problematic code \verbositylevel@{0@} @end example @noindent will cause a huge amount of debugging information to be emitted for the problematic code. Error reporting and logging still has many inconsistencies, but it gets better with each release. Don't try to make any sense in debugging levels above 4, these are for my own delight only and can change significantly between versions. The @file{inputfile} may be incorrectly identified if it is incorporated through @code{\input} or @code{\include}. The line may be also be wrong at times. @xref{Known Bugs}. @node History, LaTeX2RTF under Development, Error Messages and Logging, Top @chapter History & Copyright @cindex History of the program @cindex Copyright issues In 1994 the first Version of @ltor{} was written by Fernando Dorner and Andreas Granzer of the Viena University supervised by Ralf Schlatterbeck in a one-semester course. They created a simple @latex{} parser and added most of the infrastructure for the program. This was version 1.0 of @ltor{}. In 1995, work on @ltor{} was continued in another one-semester course by Friedrich Polzer and Gerhard Trisko. The result was @ltor{} version 1.5. Ralf Schlatterbeck (ralf ``at'' zoo.priv.at) maintained and extended @ltor{} until 1998. In 1998 Georg Lehner (jorge_lehner ``at'' gmx.net) found the reference to @ltor{} on the @uref{http://tug.org/utilities/texconv/index.html, TeX Conversion Webpage} of Wilfried Hennings and added some functionality and took over the maintainence of the program. The last version release by Georg is 1.8aa. The bulk of development post 1.8aa was done by Scott Prahl. Wilfried Hennings now coordinates the development of the program and maintains the project on @uref{http://sourceforge.net/projects/latex2rtf/,SourceForge} where there are also (low volume) mailing lists for users and developers. Mailing via one of these lists requires subscription to the list (to prevent spam). For subscription to these lists visit the page: @uref{http://lists.sourceforge.net/lists/listinfo/latex2rtf-users, users list} or @uref{http://lists.sourceforge.net/lists/listinfo/latex2rtf-developers, developers list} As of Januar 2017, version 2.3.12 of @ltor{} is available. The contents of this manual were composed by copying shamelessly what was available in the original sources and documentation. @node LaTeX2RTF under Development, Function Index, History, Top @chapter LaTeX2RTF under Development @menu * Unimplemented Features:: * Missing options:: * Known Bugs:: * Reporting Bugs:: * Todo List:: * LaTeX Commands:: @end menu @node Unimplemented Features, Missing options, LaTeX2RTF under Development, LaTeX2RTF under Development @section Unimplemented Features @itemize @bullet @item @ltor{} ignores some optional parameters of @code{\documentstyle} @item Add the code to produce the corresponding chapter, section, and page numbering with headings and myheadings pagestyles. Implement @code{\markboth} and @code{\markright}. @item To support @code{\tableofcontents} there would be two approaches: Transfer sectioning information, title text and then produce page numbers by the rtf- reader. Scan and label all of the sectioning commands while reading and then construct the sectioning information using these labels. Needs two passes on @latex{} input. @end itemize @node Missing options, Known Bugs, Unimplemented Features, LaTeX2RTF under Development @section Missing options Missing or buggy command line options. @table @option @item -d Information logging and Error reporting is not implemented consistently. Need to test and track problems with the linenumber and with the file name. @item --long_names It would be useful to implement the GNU long option names, e.g.: `--debug', `--output_file', `--quiet', etc. This could be done by switching to the GNU getopt package. @end table @node Known Bugs, Reporting Bugs, Missing options, LaTeX2RTF under Development @section Known Bugs @enumerate @item The first parameter of a \link@{anchor@}[ltx]@{label@} is converted to the rtf-output. Label is stored to hyperref for later use, the optional parameter is ignored. [ltx] should be processed as Otfried recommends it, to use for exclusive @latex{} output.e.g: \link@{readhere@}[~\Ref]@{explaining: chapter@}. Since @{explaining:chapter@} is yet read by @latex{} and hyperlatex when [...] is evaluated it produces the correct reference. @ltor{} is only strolling from left to right through the text and can't remember what she will see in the future. @item The diagnostics routine does not output the correct (actual) input filename. (`.aux', `.bbl', @code{\input}). @end enumerate @node Reporting Bugs, Todo List, Known Bugs, LaTeX2RTF under Development @section Reporting Bugs Report bugs to to the bug tracking system at @uref{http://sourceforge.net/projects/latex2rtf/,SourceForge}. Only report bugs for the latest version of @ltor{} that is available. Please provide the following information and observe the following guidelines when reporting a bug in the program: @enumerate @item State the version of @ltor{} that you are using. You can get the version by specifying the @option{-V} option to @ltor{}. @item Specify the your operating system and version. Be sure to check the file `Makefile' for settings that may be specific to your machine, especially for some versions of SunOS there may be settings which are needed to compile successfully. Do this before submitting a bug report. @item If the program produces wrong output or does not work for you, include a short @latex{} file along with a description of the problem. Isolating the bug into a small @latex{} file does two things. First, it provides a file that can be used to test future versions of @ltor{} and second, it certainly improves the chances that the bug will get some attention. Do not send me large @latex{} or RTF files, I simply do not have the time to wade through large files to search for a bug! @item Be patient. I am maintaining the program in my free time. I did not write most of the code. Often I do not have the time to answer to your question. I will, however, try to fix reported bugs in upcoming releases. @end enumerate @node Todo List, LaTeX Commands, Reporting Bugs, LaTeX2RTF under Development @section Todo List Scott's ToDo list @itemize @bullet @item Use lex/yacc to implement getSection @item Add support for pagestyle @item Better support for ignoring commands @end itemize @noindent Georg's todo list @itemize @bullet @item Make this Manual more consistent, the ToDo and Known Bug List shorter and the Features List longer. @item Harmonize all of the error and warning messages. @item Put warnings everywhere applicable about producing RTF 1.4 tokens. @item Provide an Error and Warning recovery guide to the user. @item Add a chapter with lists of all @latex{} commands that convert, and that do not convert to RTF, including their status (for future releases, never, partially functional, ...). @end itemize @node LaTeX Commands, , Todo List, LaTeX2RTF under Development @section Command List Listed here are all the @latex{} commands currently parsed by @ltor{}. Note: inclusion in this list does not mean that a command is fully and correctly handled by @ltor{}. In some cases the commands here are place-holders only, and are not implemented at all. The list is provided to encourage developers to note any departures from the behaviour that @latex{} users will expect. The location of the commands is noted to assist anyone interested in hacking on the C source code. This list is a work in progress, and may not be immediately useful to general users, other than to indicate those commands that we have at least contemplated implementing. @menu * General Commands:: * Preamble Commands:: * Letter Commands:: * Language Commands:: * Citation Commands:: * Acronym Commands:: * Other Commands:: * Environments:: @end menu @node General Commands, Preamble Commands, LaTeX Commands, LaTeX Commands @comment node-name, next, previous, up @subsection General Commands These commands are found in the @code{commands[]} array in commands.c. They are arranged alphabetically within sections according to function. @menu * Basic Commands:: * Font Commands:: * Logos:: * Special Characters:: * Sectioning Commands:: * Uncategorized:: @end menu @node Basic Commands, Font Commands, General Commands, General Commands @comment node-name, next, previous, up @subsubsection Basic Commands All listed commands work as expected. @ftable @asis @item begin @item centerline @item end @item endnote @item footnote @item raggedright @item the @item today @item vcenter @end ftable @node Font Commands, Logos, Basic Commands, General Commands @comment node-name, next, previous, up @subsubsection Font Commands All listed commands work as expected. @ftable @asis @item bf @item bfseries @item cal @item em @item emph @item enotesize @item footnotesize @item HUGE @item Huge @item huge @item it @item itshape @item LARGE @item Large @item large @item mathbf @item mathcal @item mathit @item mathmd @item mathnormal @item mathrm @item mathsc @item mathsf @item mathsl @item mathtt @item mathup @item mdseries @item mit @item normalfont @item normalsize @item rm @item rmfamily @item sc @item scfamily @item scriptsize @item scshape @item sf @item sffamily @item sl @item slshape @item small @item ssmall @item textbf @item textfont @item textit @item textmd @item textnormal @item textrm @item textsc @item textsf @item textsl @item texttt @item textup @item tiny @item tt @item ttfamily @item underbar @item underline @item upshape @end ftable @node Logos, Special Characters, Font Commands, General Commands @comment node-name, next, previous, up @subsubsection Logos All listed commands work as expected. @ftable @asis @item AmSLaTeX @item AmSTeX @item BibTeX @item kern @item LaTeX @item latex @item LaTeXe @item lower @item LyX @item SLiTeX @item TeX @end ftable @node Special Characters, Sectioning Commands, Logos, General Commands @comment node-name, next, previous, up @subsubsection Special Characters These commands all work as expected. @ftable @asis @item \ @item acute @item b @item bar @item breve @item c @item check @item d @item ddot @item dot @item grave @item H @item hat @item i @item j @item l @item L @item r @item tilde @item u @item v @item vec @end ftable @node Sectioning Commands, Uncategorized, Special Characters, General Commands @comment node-name, next, previous, up @subsubsection Sectioning Commands @ftable @asis @item chapter @item chapter* @item paragraph @item paragraph* @item part @item part* @item section @item section* @item subparagraph @item subparagraph* @item subsection @item subsection* @item subsubsection @item subsubsection* @end ftable @node Uncategorized, , Sectioning Commands, General Commands @comment node-name, next, previous, up @subsubsection Uncategorized These commands need to be organized into new or existing sections. @ftable @asis @item abstract @item addcontents Ignored @item addcontentsline Ignored @item addvspace Ignored @item aleph @item Alph @item alph Ignored @item alpha @item Alpha Ignored @item amalg @item and @item angle @item appendix Ignored @item approx @item arabic Ignored @item ast @item author @item baselineskip @item because @item beta @item Beta @item bibentry @item bibitem @item bibliography @item bibliographystyle @item bibliographystyle Ignored @item bigskip @item bot @item BoxedEPSF @item bullet @item cap @item caption @item cdot @item cdots @item centering @item char @item chi @item Chi @item circ @item cite @item citeonline @item cleardoublepage @item clearpage @item clubsuit @item cong @item contentsline @item coprod @item cup @item date @item ddots @item delta @item Delta @item dfrac @item Diamond @item diamondsuit @item div @item doteq @item dotfill There is no rtf code for dotfill; @ltor{} inserts an ellipsis only. @item dots @item dots @item downarrow @item Downarrow @item efloatseparator @item ell @item emptyset @item endinput @item endnotemark Ignored @item ensuremath @item epsfbox @item epsffile @item epsilon @item eqref @item equiv @item eta @item exists @item fbox @item fbox @item fnsymbol Ignored @item footnotemark Ignored @item forall @item frac @item Frac @item framebox Ignored @item frenchspacing Ignored @item gamma @item Gamma @item ge @item geq @item gg @item glossary Ignored @item glossaryentry Ignored @item hbar @item hbox @item heartsuit @item hsize @item hslash @item hspace Ignored @item hspace* Ignored @item htmladdnormallink @item htmlref @item iiint @item iint @item Im @item in @item include @item includegraphics @item includegraphics* @item includeonly Ignored @item indent @item index @item indexentry Ignored @item infty @item input @item int @item int @item iota @item kappa @item label @item lambda @item Lambda @item land @item langle @item lceil @item ldots @item le @item left @item leftarrow @item Leftarrow @item leftharpoondown @item leftleftarrows @item leftrightarrow @item Leftrightarrow @item leftrightarrows @item leq @item let Ignored @item letterspace @item lfloor @item lim @item liminf @item limsup @item linebreak Ignored @item lineskip @item listoffigures @item listoftables @item ll @item longleftarrow @item longleftrightarrows @item longrightarrow @item lor @item makebox Ignored @item maketitle @item mapsto @item marginpar Ignored @item markboth Ignored @item markright Ignored @item matrix @item mbox @item measuredangle @item medskip @item mho @item moveleft @item moveright @item mp @item mu @item multicolumn @item nabla @item ne @item nearrow @item neg @item neq @item newblock @item newcount Ignored @item newfont Ignored @item newpage @item newsavebox Ignored @item nobibliography Ignored @item nobreakspace @item nocite @item noindent @item nolinebreak Ignored @item nonfrenchspacing Ignored @item nonumber @item nopagebreak Ignored @item notag @item nu @item numberline @item nwarrow @item omega @item Omega @item omicron @item onecolumn @item onlinecite @item oplus @item oslash @item otimes @item output Ignored @item overline @item pagebreak @item pagenumbering Ignored @item pageref @item pagestyle Ignored @item par @item parbox @item partial @item perp @item phi @item Phi @item pi @item Pi @item pm @item prec @item printindex @item prod @item prod @item propto @item protect Ignored @item psfig @item psfrag Ignored @item psi @item Psi @item qquad @item quad @item raisebox Ignored @item rangle @item rceil @item Re @item ref @item refstepcounter @item rfloor @item rho @item right @item Rightarrow @item rightarrow @item rightharpoonup @item rightleftarrows @item rightleftharpoons @item rightrightarrows @item Roman Ignored @item roman Ignored @item rule @item samepage Ignored @item savebox Ignored @item sbox Ignored @item searrow @item setbox @item settowidth Ignored @item sigma @item Sigma @item sim @item simeq @item smallskip @item spadesuit @item sqrt @item stackrel @item stepcounter Ignored @item stretch Ignored @item subset @item subseteq @item succ @item sum @item sum @item supset @item supseteq @item surd @item swarrow @item tableofcontents @item tau @item textalpha @item textbeta @item textbullet @item textchi @item textcolor @item textDelta @item textdelta @item textellipsis @item textepsilon @item texteta @item textGamma @item textgamma @item textiota @item textkappa @item textLambda @item textlambda @item textmu @item textnu @item textOmega @item textomega @item textperiodcentered @item textPhi @item textphi @item textPi @item textpi @item textPsi @item textpsi @item textSigma @item textsigma @item textsubscript @item textsuperscript @item textTau @item texttau @item textTheta @item texttheta @item textXi @item textxi @item textzeta @item thanks @item therefore @item Theta @item theta @item tikzpicture @item times @item title @item to @item triangleleft @item triangleright @item twocolumn @item typeaout Ignored @item Typein Ignored @item typein Ignored @item typeout Ignored @item Uparrow @item uparrow @item updownarrow @item Updownarrow @item upsilon @item Upsilon @item url @item usebox Ignored @item value @item varepsilon @item varnothing @item varphi @item varpi @item varpropto @item varsigma @item vartheta @item vbox @item vdots @item vee @item verb @item verb* @item vref @item vsize @item vskip @item vspace @item vspace* @item wedge @item wp @item xi @item Xi @item zeta @end ftable @node Preamble Commands, Letter Commands, General Commands, LaTeX Commands @comment node-name, next, previous, up @subsection Preamble Commands These commands are found in @code{PreambleCommands[]} in commands.c, and are implemented in preamble.c. @ftable @asis @item addtocounter @item addtolength @item baselineskip @item celsius @item cfoot @item chead @item cline @item DeclareRobustCommand @item DeclareRobustCommand* @item def @item degreecelsius @item documentclass @item documentstyle @item doublespacing Currently, the only command from the setspace package that is implemented, and the only way to modify line spacing. @item endnotetext @item EUR @item euro @item evensidemargin @item fancyfoot @item fancyhead @item flushbottom @item footnotetext @item geometry Currently recognizes *ratio, *centering, *margin, left, right, inner, outer, top, bottom, right, left (including vmargin, hratio etc.) @item headheight @item headsep @item hline @item hoffset @item htmladdnormallink @item htmlref @item hyphenation @item iflatextortf @item ifx @item include @item input @item latextortffalse Ignored @item latextortftrue Ignored @item lfoot @item lhead @item listoffiles Ignored @item makeglossary Ignored @item makeindex Ignored @item makelabels Ignored @item markboth Ignored @item markright Ignored @item newcommand @item newcounter @item newenvironment @item newif @item newlength @item newtheorem @item nobreakspace @item nofiles Ignored @item oddsidemargin @item pagenumbering Ignored @item pagestyle @item parindent @item parskip @item providecommand @item raggedbottom @item renewcommand @item renewenvironment @item renewtheorem Ignored @item resizebox @item resizebox* @item rfoot @item rhead @item setcounter @item setlength @item signature @item textheight @item textwidth @item theendnotes @item thepage @item thispagestyle Ignored @item topmargin @item usepackage @item verbositylevel @item voffset @end ftable @node Letter Commands, Language Commands, Preamble Commands, LaTeX Commands @comment node-name, next, previous, up @subsection Letter Commands Found in @code{LetterCommands[]} in commands.c. @ftable @asis @item address @item cc @item closing @item encl @item opening @item ps @item signature @end ftable @node Language Commands, Citation Commands, Letter Commands, LaTeX Commands @comment node-name, next, previous, up @subsection Language Commands @menu * German Commands:: * Czech Commands:: * French Commands:: * Russian Commands:: @end menu @node German Commands, Czech Commands, Language Commands, Language Commands @comment node-name, next, previous, up @subsubsection German Commands Found in @code{GermanModeCommands[]} in commands.c. @ftable @asis @item ck @item glqq @item glq @item grq @item grqq @end ftable @node Czech Commands, French Commands, German Commands, Language Commands @comment node-name, next, previous, up @subsubsection Czech Commands @ftable @asis @item uv @end ftable @node French Commands, Russian Commands, Czech Commands, Language Commands @comment node-name, next, previous, up @subsubsection French Commands @ftable @asis @item deuxpoints @item dittomark @item FCS @item fg @item fup @item ieme @item iemes @item ier @item iere @item ieres @item iers @item inferieura @item LCS @item lq @item lqq @item numero @item Numero @item numeros @item Numeros @item og @item pointexclamation @item pointinterrogation @item pointvirgule @item primo @item quarto @item rq @item rqq @item secundo @item superieura @item tertio @item up @end ftable @node Russian Commands, , French Commands, Language Commands @comment node-name, next, previous, up @subsubsection Russian Commands @ftable @asis @item CYRA @item cyra @item CYRB @item cyrb @item CYRC @item cyrc @item CYRCH @item cyrch @item CYRCHSH @item cyrchsh @item CYRD @item cyrd @item CYRE @item cyre @item CYREREV @item cyrerev @item CYRERY @item cyrery @item CYRF @item cyrf @item CYRG @item cyrg @item CYRH @item cyrh @item CYRHRDSN @item cyrhrdsn @item CYRI @item cyri @item CYRISHRT @item cyrishrt @item CYRK @item cyrk @item CYRL @item cyrl @item CYRM @item cyrm @item CYRN @item cyrn @item CYRO @item cyro @item CYRP @item cyrp @item CYRR @item cyrr @item CYRS @item cyrs @item CYRSFTSN @item cyrsftsn @item CYRSH @item cyrsh @item CYRT @item cyrt @item CYRU @item cyru @item CYRV @item cyrv @item CYRYA @item cyrya @item CYRYU @item cyryu @item CYRZ @item cyrz @item CYRZH @item cyrzh @end ftable @node Citation Commands, Acronym Commands, Language Commands, LaTeX Commands @comment node-name, next, previous, up @subsection Citation Commands @menu * Apacite Commands:: * AuthorDate Commands:: * Harvard Commands:: * HyperLatex Commands:: * Natbib Commands:: @end menu @node Apacite Commands, AuthorDate Commands, Citation Commands, Citation Commands @comment node-name, next, previous, up @subsubsection Apacite Commands @ftable @asis @item AX @item BAnd @item BBA @item BBAA @item BBAB @item BBAY @item BBC @item BBCP @item BBCQ @item BBN @item BBOP @item BBOQ @item BCAY @item BCBL @item BCBT @item BCHAIR @item BCHAIRS @item BCnt @item BCntIP @item BED @item BEd @item BEDS @item Bem @item BIP @item BMTh @item BNUM @item BNUMS @item BOthers @item BOWP @item BPG @item BPGS @item BPhD @item BREPR @item BTR @item BTRANS @item BTRANSS @item BUMTh @item BUPhD @item BVOL @item BVOLS @item citeA @item citeauthor @item citeNP @item citeyear @item citeyearNP @item fullcite @item fullciteA @item fullciteauthor @item fullciteNP @item shortcite @item shortciteA @item shortciteauthor @item shortciteNP @end ftable @node AuthorDate Commands, Harvard Commands, Apacite Commands, Citation Commands @comment node-name, next, previous, up @subsubsection AuthorDate Commands @ftable @asis @item citename @item shortcite @end ftable @node Harvard Commands, HyperLatex Commands, AuthorDate Commands, Citation Commands @comment node-name, next, previous, up @subsubsection Harvard Commands @ftable @asis @item cite @item citeaffixed @item citeasnoun @item citename @item citeyear @item citeyear* @item harvardand @item harvarditem @item harvardyearleft @item harvardyearright @item possessivecite @end ftable @node HyperLatex Commands, Natbib Commands, Harvard Commands, Citation Commands @comment node-name, next, previous, up @subsubsection HyperLatex Commands @ftable @asis @item Cite @item link @item Pageref @item Ref @item S @item xlink @end ftable @node Natbib Commands, , HyperLatex Commands, Citation Commands @comment node-name, next, previous, up @subsubsection Apacite Commands @ftable @asis @item bibpunct @item cite @item citealp @item Citealp @item citealp* @item citealt @item Citealt @item citealt* @item citeauthor @item Citeauthor @item citeauthor* @item citep @item Citep @item citep* @item citet @item Citet @item citet* @item citetext @item citeyear @item citeyearpar @end ftable @node Acronym Commands, Other Commands, Citation Commands, LaTeX Commands @comment node-name, next, previous, up @subsection Acronym Commands @ftable @asis @item usepackage [options] @{acronym@} @item ac @item acfi @item acro @item acrodef @item acrodefplural @item acused @end ftable @node Other Commands, Environments, Acronym Commands, LaTeX Commands @comment node-name, next, previous, up @subsection Other Commands Other Commands: @* item @* caption @* center @* @node Environments,, Other Commands, LaTeX Commands @comment node-name, next, previous, up @subsection Environments Environments processed - found in @code{params[]} in commands.c. @ftable @asis @item abstract @item acknowledgments @item align @item align* @item alltt @item array @item bf @item bfseries @item center @item comment @item compactenum @item compactitem @item description @item displaymath @item document @item em @item enumerate @item eqnarray @item eqnarray* @item equation @item equation* @item figure @item figure* @item flushleft @item flushright @item htmlonly Ignored @item it @item itemize @item itshape @item landscape @item latexonly Ignored @item letter @item list @item longtable @item longtable* @item math @item mdseries @item minipage @item multicolumn @item music @item picture @item quotation @item quote @item rawhtml Ignored @item rm @item rmfamily @item sc @item scshape @item sf @item sffamily @item sl @item sloppypar @item slshape @item small @item tabbing @item table @item table* @item tabular @item tabular* @item thebibliography @item theindex Ignored @item titlepage @item tt @item ttfamily @item verbatim @item Verbatim @item verse @end ftable @node Function Index, Concept Index, LaTeX2RTF under Development, Top @chapter Function Index @printindex fn @node Concept Index, , Function Index, Top @chapter Concept Index @printindex cp @contents @bye latex2rtf-2.3.18/doc/latex2rtf.html0000644000175000017500000107035513664471451017310 0ustar wilfriedwilfried LaTeX2rtf

LaTeX2rtf

LaTeX2RTF

This file documents LaTeX2RTF, a converter that translates LaTeX to RTF.

Copyright 1998-2002 Georg Lehner, updates Copyright 1999-2018 by Wilfried Hennings and Scott Prahl, with contributions by Mikhail Polianski.

Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies.

Permission is granted to copy and distribute modified versions of this manual under the conditions for verbatim copying, provided also that the sections entitled “Copying” and “GNU General Public License” are included exactly as in the original, and provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one.

Permission is granted to copy and distribute translations of this manual into another language, under the above conditions for modified versions, except that this permission notice may be stated in a translation approved by the Free Software Foundation.


1 Introduction

LaTeX2RTF is a translator program from LaTeX text into “rich text format” files. These files are commonly referred to as RTF files. RTF is a published standard format by Microsoft. This standard can be ambiguous in places and Microsoft ignores parts of the standard it finds inconvenient, but RTF is widely used by many WYSIWIG text editors and is supported by Microsoft Word and most text processors.

LaTeX2RTF translates the text and as much of the formatting information from LaTeX to RTF. Be forewarned that the typeset output is not nearly as good as what you would get from using LaTeX directly. So, why bother translating? Consider,

  1. You use LaTeX and hate everything beginning with MS-... Nevertheless, you have to share your documents with people who don’t even know that there are alternatives to MS-...
  2. You know somebody who frequently sends you very fine LaTeX documents. Unfortunately, you are “on the other side” and need to import her files, steal some part, and then desktop publish it in your fine MS-… environment.
  3. You like LaTeX and BibTeX. You interact with the rest of the world. You know someone that wants to include your writing in a Word document.

There are drawbacks to the conversion process. In fact, don’t expect any LaTeX file to be converted as you would like, don’t expect it to be converted without errors or warnings, and don’t be especially surprised when it doesn’t convert at all. LaTeX2RTF is known to have many bugs and many missing features. Paradoxically, this number seems to grow more and more with each day. However, we can categorically state that there are some special cases in which a LaTeX file will be translated to RTF satisfactorily by LaTeX2RTF—This was sort of disclaimer, ok? OK!

LaTeX is a system for typesetting text and therefore it focuses on the logical structure of a document, whilst RTF is meant to be a transport format for a family of Desktop Publishing Software, dealing mostly with the design of a text.

Although the commands and styles in LaTeX are much more flexible and standardized than in RTF, only a small subset of commands has been implemented to date (see Unimplemented Features).

Some of the capabilities of LaTeX2RTF are restricted in scope or buggy (see Known Bugs).

RTF is a moving target, because Microsoft does not stop inventing new extensions and features; consequently you cannot view newer RTF files with older word processors. The syntax and semantics of RTF are somewhat artistic, i.e., you can generate a syntactically correct RTF file that cannot be displayed by some/most word processors. For more details on RTF the specification consult the links at http://latex2rtf.sf.net/


2 Installation


2.1 General

The documentation of the program is found in the doc/ directory in the file latex2rtf.texi in the GNU TeXInfo format. For your convenience, you can find HTML and PDF versions of the manual there as well.
Note: In this manual, the terms "directory" and "folder" are used interchangeably.


2.2 Obtaining LaTeX2RTF

LaTeX2RTF is available for many Unix Platforms, for the Macintosh, and for MS-DOS, including all versions of MS Windows.

The latest version of LaTeX2RTF is available at SourceForge and — with some delay — on CTAN sites: e.g., http://www.dante.de or http://www.ctan.org.

The DOS package will also run under all MS Windows versions up to Windows 7, except 64bit systems. It requires an i386 processor or better.
It should only be used on older Microsoft systems.
For Win9x, ME, NT, or newer, you should use the win or win-NO-GUI package.

The win-NO-GUI package only runs under Win32 (Win9x, ME, NT, 2000, XP, 2003, Vista, Win7, probably Win8 and Win10). From LaTeX2RTF version 2.0.0 up it also runs on 64bit systems.

The win package is the win-NO-GUI package plus graphical user interface (GUI) shell (l2rshell) and installer.
It only runs under Win NT, 2000, XP, 2003, Vista, Win7 and newer.
From LaTeX2RTF version 2.0.0 up it also runs on 64bit systems.

The win64 package (only LaTeX2RTF version 1.9.19) is the win package but with 32bit versions of the shell utilities so that it also runs on 64bit systems. From LaTeX2RTF version 2.0.0 up, there is no separate win64 package, as the win32 package also runs on 64bit systems.

There are a few people working on LaTeX2RTF, and some more make contributions, coordinated by Wilfried Hennings (texconvfaq “at” gmx.de). See the SourceForge project pages for the latest news.


2.3 UNIX

To install,

  1. Edit MAKEFILE for your local configuration. In particular, pay attention to the DESTDIR variable (MAKEFILE line 21). If you do not have root access you might wish to set the makefile variable DESTDIR to be your home directory.

    On some machines the cc compiler will issue errors. Therefore the default compiler command in the Makefile is CC=gcc.

  2. From version 1.9.13 up, LaTeX2RTF supports conversion of LaTeX equations to bitmaps using the shell script latex2png, found in scripts/. latex2png requires that LaTeX, Ghostscript and ImageMagick are installed. LaTeX2RTF will translate documents without a working latex2png, but some features will be missing. You can verify that the latex2png script is working by typing make in the scripts/ directory.
  3. make

    If this is not your first time installation, you may want to preserve your old configuration (*.cfg) files. Copy them to a safe place before installing.

    On IBM AIX, the IBM make utility does not support some of the commands used in Makefile. In this case use gmake (from GNU) instead.

    Sun has decided to support the XPG4 standard on Solaris by an alternative set of binaries. To allow bitmap conversion of equations, two things are needed. First, change the first line of latex2png to #!/usr/xpg4/bin/sh Second, define the XPG4_GREP environment variable accordingly, for bash-like shells XPG4_GREP=/usr/xpg4/bin/grep; export XPG4_GREP or for tsch-like shells setenv XPG4_GREP /usr/xpg4/bin/grep.

  4. make install

    Note that the Makefile does not contain a rule for make uninstall.
    This is by design.
    On modern Linux distributions, you would prefer to install LaTeX2RTF by the package manager of your distribution, which also provides an easy means for update and uninstallation.
    If your package manager does not provide the LaTeX2RTF package or you need to install LaTeX2RTF from the sources for some other reason, you should consider using checkinstall which creates a package for your package manager which then can be installed and uninstalled by the package manager.

    If you nevertheless need to run make install, note the following:
    If your mkdir doesn’t support the -p option, then create the necessary directories by hand and remove the option from the $MKDIR variable. If you have other problems, just copy latex2rtf and latex2png to a binary directory, and move the contents of the cfg/ directory to the location specified by $CFG_INSTALL.

  5. make check

    [OPTIONAL] This tests LaTeX2RTF on a variety of LaTeX files. Expect a whole lot of warnings, but no outright errors. (On IBM AIX, use gmake check.) Note that this will check the basic functionality of the latex2png script, and then that of latex2rtf.

  6. make install-info

    [OPTIONAL] This installs .info files for use with the info program.

You no longer need to define the environment variable RTFPATH. This is only necessary if you move the directory containing the .cfg files. Just define RTFPATH to be the path for the new location of the cfg directory.


2.4 plain DOS

The UNIX and Mac packages do not contain an executable for DOS or Windows. You may compile it yourself (with djgpp or MinGW) or get the
DOS package as file latex2rtf-x.x.x_dos.zip (where x.x.x is the version number)
or the win-NO-GUI package as file latex2rtf-x.x.x_win-NO-GUI.zip (no installer, no graphical user interface (GUI))
from SourceForge

The DOS package contains a precompiled executable which should run under plain DOS and also in the command prompt (or “console”) of any MS Windows system including Vista and Windows 7 but not on 64bit systems.

To install the DOS or win-no-GUI package of LaTeX2RTF, extract all files from the zip archive, preserving the folder structure (winzip: check “use folder names”), preferably to C:\l2r, or under Windows, to your "Program Files" folder (which ever it is named in your system) because then it will find its cfg files by default.
If you extracted them to another folder (e.g. C:\my_files\l2r), either edit the file L2RPREP.BAT and change the folder C:\l2r to where you put them, or specify the path to the cfg folder in the command line.
Avoid blanks in folder and file names!

Make sure that the folder containing the file L2RPREP.BAT is in your search path, or put this file into a folder which is in your search path.
To display the current search path, enter PATH from the command prompt (with no arguments).

Under plain DOS, conversion of equations or figures to bitmaps is not possible because Ghostscript and ImageMagick are not available for plain DOS.


2.5 MS Windows systems

To install LaTeX2RTF on a MS Windows system (WinNT, Win2000, WinXP, Vista, Win7), download the win package, execute the latex2rtf-x.x.x_win.exe (where x.x.x is the version number) and follow the instructions.

Note: The installer and GUI shell do not support Win9x and WinMe since LaTeX2RTF v.1.9.17. If you have one of these systems, you should use the win-NO-GUI package (1.9.19 and up) of LaTeX2RTF.

To start the program double-click the LaTeX2RTF icon, or drag and drop a .tex file onto the icon.

If your LaTeX document refers to external graphic files, e.g. eps, or you want to use the option to convert equations to bitmaps, you must have LaTeX, ImageMagick and Ghostscript installed. These programs are freely available for download at http://www.miktex.org/, http://www.imagemagick.org and http://www.ghostscript.com

The following versions were available at the time of writing and tested with LaTeX2RTF version 2.3.11:
- MikTeX 2.9
- Ghostscript 9.19
- ImageMagick-7.0.1-8-Q16-x86-dll.exe

When installing ImageMagick, be sure to choose (check)
"Install legacy utilities (e.g. convert)"

If MikTeX, ImageMagick and Ghostscript are installed, the paths to their executables are detected automatically. If for any reason this doesn’t happen, these paths can be specified manually in the “Environment” tab of the LaTeX2RTF GUI shell window.

If you need to start LaTeX2RTF not from its own shell but from commandline or another Windows application, you need to add the folder containing the latex2png script and the helper programs to the search path.
Some applications (e.g. Lyx) allow to temporarily add the path by specifying it in the options.
If this is not possible, you can add the latex2rtf folder to Windows’ default path like follows:

To add a folder – e.g. C:\Program Files\latex2rtf – to the search path:

  • Note that the folder name "Program Files" contains a blank. This would lead to some problems as some parts of the latex2rtf program package interpret the blank as a parameter delimiter. Therefore in the following example the folder name "Program Files" is replaced by its DOS equivalent "PROGRA~1" which has the additional effect that this is similar for several if not all European languages.
  • Win95, Win98, WinME
    • Open the file C:\AUTOEXEC.BAT either with Edit (DOS) or with Notepad (Windows).
    • At the end of that file, add the line PATH=C:\PROGRA~1\latex2rtf;%PATH%
    • Save the file to its original location. Shutdown and reboot the PC.
  • WinNT, Win2000, WinXP, Vista, Win7
    • Right-click “My Computer” (German: “Arbeitsplatz”), then select “Properties”;
    • NT: Click the “Environment” tab;
      XP and up: Click the “Advanced” tab, then the “Environment variables” button;
    • Find the line beginning with PATH= and insert the string
      C:\PROGRA~1\latex2rtf;
      so that the complete line looks like
      PATH=C:\PROGRA~1\latex2rtf;C:\WINDOWS;...
    • Click "OK"

If you do NOT use the GUI (l2rshell.exe), either the folders where TeX, ImageMagick and Ghostscript are installed must also be in your search path, or you must edit the file L2RPREP.BAT, ensure that the pathes in this file point to the folders where TeX, ImageMagick and Ghostscript are installed on your machine, and call l2rprep before calling latex2rt.
Or you edit l2r.bat and call l2r instead of calling latex2rt.

If you DO use the GUI (l2rshell.exe), the TeX, ImageMagick and Ghostscript folders are automatically added to the search path by the GUI.

When equations are to be converted to bitmaps, for each equation LaTeX2RTF first writes a temporary l2r_nnnn.tex file to disk which consists of only the equation to be converted. It then sends the call for "bash latex2png l2r_nnnn.tex" to the operating system.
In previous versions of latex2rtf, some users got the message “Out of environment space” (can occur only under Windows 95, Windows 98 or Windows ME); this should be solved now by using bash.exe instead of command.com.


2.6 Macintosh

If you want a MacOS X version, make sure that you have installed the developer tools CD that is appropriate for your OS version, and then follow the directions above for a UNIX installation. Alternatively you can install using fink http://www.finkproject.org/ and http://sourceforge.net/projects/fink/.

As of 2006-01-30 there was a GUI shell for Macintosh at
http://www.inf.ethz.ch/personal/fischerk/LaTeX2rtf/index.html
but now (Nov. 2013) this is not available anymore.

There is a PPC port of an old version 1.9k for Classic MacOS LaTeX2RTF. To convert a LaTeX file using this version, drag the file onto the LaTeX2RTF icon. The translation is best if there are .aux and .bbl files in the same folder as the .tex file to be converted. These should be generated using LaTeX and bibtex.


2.7 Problems Compiling

The code for LaTeX2RTF is standard ANSI C. Some possible pitfalls are

  • Not correctly defining your compiler in the Makefile. The default is to use gcc.
  • Encountering errors because the compiler options. During development all compiler warnings are turned on. However, different compilers have different interpretations of -Wall and may generate errors that were not found in a different development system. Please report these, but a quick fix is to remove all compiler options.

2.8 Problems with make check

All the files in the test directory are converted (with varying degrees of success) using LaTeX2RTF and are tested before most CVS check-ins and with all released tarballs. There will be many warning messages, but there should be no actual error messages. If you do not have a working latex2png script, then some of the files will fail to be translated.


3 Using LaTeX2RTF


3.1 General Assumptions

LaTeX2RTF assumes that the .tex file you want to convert is a valid LaTeX document. The chances of a successful LaTeX2RTF conversion are slightly better than the proverbial snowball’s if the .tex file doesn’t latex properly. Use LaTeX to find and correct errors before using LaTeX2RTF.
LaTeX2RTF also needs the .aux file and .bbl file which are generated by running latex on the .tex file

To correctly convert font names you must edit the fonts.cfg configuration file. This file is used to specify the needed font names and how the LaTeX default font names should be converted to RTF (see Font Configuration). LaTeX variables and user defined commands are not evaluated. They will be simply ignored. To let LaTeX2RTF know the names of variables you can add them in the ignore.cfg file (see Ignore Command).

The environment variable RTFPATH may contain a search path for the support files (all files ending in .cfg). If no file is found during the search in the search-path or if the environment variable is not set, the compiled-in default for the configuration-file directory is used. If the files are not found at all the program aborts.

In the DOS and Windows versions the search path is separated by ‘;’ in the Unix version by ‘:’. For the paths themselves apply ‘\’ and ‘/’. A separator may appear at the beginning or ending of RTFPATH.

Make sure that the configuration files are in the correct directory (or folder). LaTeX2RTF will need at least fonts.cfg, direct.cfg, ignore.cfg, english.cfg. You may have to change one ore more of them to suit your needs (see Configuration).

See Missing options, for actual implementations irregularities.

See Reporting Bugs, for information on how to reach the maintainer.


3.2 LaTeX2RTF Options

The LaTeX2RTF command converts a LaTeX file into RTF text format. The text and much of the formatting information is translated to RTF making the new file look similar to the original. The command line syntax is:

latex2rtf [-options] inputfile[.tex]

for the DOS and Windows versions:

latex2rt [-options] inputfile[.tex]

The options set in the Windows GUI (l2rshell.exe) are inserted as command line options when clicking RUN.

The -options may consist of one or more of the following

-a auxfile

specify an .aux file (for table and figure references) that differs from inputfile.aux. If this is omitted, the name of the inputfile with the suffix replaced .aux'will be taken. You must provide both files (.tex and the .aux) to be able to convert cross-references in a LaTeX file. The .aux is created by running the inputfile.tex through latex.

-b bblfile

Unless an bblfile is specified with the -b option, LaTeX2RTF uses a inputfile.bbl. The bblfile file is used for citations and is typically created by running inputfile.aux through bibtex.

-C codepage

used to specify the character set (code page) used in the LaTeX document. This is only important when non-ansi characters are included in the LaTeX document. Typically this is done in a LaTeX2e file by using \usepackage[codepage]{inputenc} and in this case you need not specify the -C codepage option. If NO \usepackage[codepage]{inputenc} is in the LaTeX2e file, you must inform the converter about the codepage by the -C codepage option. You may select any of the following code pages: ansinew, applemac, cp437, cp437de, cp850, cp852, cp865, decmulti, cp1250, cp1252, latin1, latin2, latin3, latin4, latin5, latin9, next. The default behavior is to use ansinew (code page 1252). Cyrillic support includes conversion of koi8-r, koi8-u, cp1251, cp855, cp866, maccyr, and macukr encodings.

-d debug_level

The -d option determines the amount of debugging information to send to stderr while translating. debug_level=0 means only Errors, ‘1’ Warning Messages (default) also. The debug_level can go as high as ‘7’ for insane amounts of debugging fun. Warnings and error messages are output to stderr and by default listed in the console window. They can be redirected to a file “latex2rtf.log” by appending 2>latex2rtf.log to the command line.

-D dots_per_inch

used to specify the number of dots per inch for equations converted to bitmaps. This value is also used when picture environments are converted to bitmaps as well as when EPS graphics are converted to png files. The default value is 300 dots per inch.

-E#

selects whether figures are included in the rtf (default) or created as external files with the filenames inserted in the rtf text.

The options -E4, -E8 and -E12 are experimental and may not work as expected.

-E0

Do not include any figures in RTF.

-E1

Include figures that need no conversion.

-E2

Include figures that need conversion.

-E3

Include all figures (default).

-E4

Insert filenames for figures that do not need conversion.

-E8

Insert filenames for figures that need conversion.

-E12

Insert filenames for all figures.

With options -E8 and -E12, pdf and ps graphics as well as tikz graphics are converted to eps and the eps filenames inserted in the document text. With -E4 and -E12, bitmap files are inserted in their original format. After opening the rtf in a textprocessing or dtp program, a macro can search for the inserted filenames and insert the files in their places. Further info is in the description of the -M option.

-f#

where # selects which fields to use during conversion:

-f0

do not use fields in RTF. This is handy when primitive RTF editors are being used to view the RTF output.

-f1

use fields for equations but not \ref and \cite.

-f2

use fields for \ref and \cite but not equations. This will be useful for versions of OpenOffice that import cross-references properly (as of Sept 2003 in a soon-to-be released version) but do not properly handle fields in equations.

-f3

use fields when possible. This is the default and is most useful when the RTF file is being exported to be used in Word. This retains the most information from the original LaTeX file.

-F

use LaTeX to create bitmaps for all figures. This may help when figures are not translated properly with the default settings. This typically requires a functional version of ImageMagick on your machine to work properly.

-h

a short usage description

-i language

used to set the idiom or language used by the LaTeX document. Typically, this is specified in a LaTeX2e document by including \usepackage[language]{babel} where language is one of the languages supported by the babel package. All languages listed in the babel system are supported so far as translations for “Chapter,” “References,” and the like. Furthermore, some commands found in the style files for german, french, russian, and czech style are supported (see Language Configuration).

-l

same as -i latin1 (Note that the default behavior is to use ansinew which is a superset of latin1). Included for backwards compatibility.

-M#

where # selects the type of equation conversion. Use

-M1

convert displayed equations to RTF

-M2

convert inline equations to RTF

-M4

convert displayed equations to bitmap

-M8

convert inline equations to bitmap

-M16

insert Word comment field that contains the raw LaTeX equation

-M32

insert the raw latex equation in the RTF text delimited by $ ... $ for inline equations and by \[ ... \] for displayed equations.
This is useful when using version 6 of the MathType equation editor, which converts typed or pasted TeX code into a MathType equation.
Probably this could also be useful for use in OpenOffice, as OO has an equation syntax which partially resembles TeX syntax.

-M64

convert displayed equations to EPS files and insert filenames in RTF text.

-M128

convert inline equations to EPS files and insert filenames in RTF text.

These switches can be combined to get different effects. Handy examples are

-M3

convert both inline and displayed equations to RTF (default)

-M6

convert inline equations to RTF and displayed equations to bitmaps

-M12

convert both inline and displayed equations to bitmaps

-M192

convert both inline and displayed equations to EPS and insert filenames in RTF text

Conversion to bitmaps or eps requires that you have installed a working latex2png script. Producing bitmaps is slow.
When running the DOS version, conversion to bitmaps works for the first 26 equations but fails for the rest with the message
"latex2png: pipe error: Too many open files (EMFILE)".
This is probably a bug in the djgpp 2.04 compiler.
The Windows version, compiled with MinGW, successfully converts at least 500 equations to bitmaps.
When -M64, -M128 or both are specified, equations are converted to individual eps files, the filenames of which are literally inserted in the rtf file, delimited by [###...###]. After loading the rtf file in a text processing program, a macro can be run which searches for "[###" and "###]", extracts the filename, and inserts the eps in that place. The Windows installer package contains the code of such a macro for Word2010 in the file "WordMacro_InsertEPSfromNames.txt" in subfolder "scripts". (This macro may also run on other versions of Word but it was only tested on Word2010.) In Word, the inserted eps graphics display in bad quality on the screen and on non-postscript printers but can be printed in high quality on postscript and pdf printers.

-o outputfile

Unless an outputfile is specified with the -o option, the resulting RTF filename is formed by removing .tex from the inputfile and appending .rtf.

-p

Escape parentheses in mathematical formulas. This has no effect unless EQ fields are being generated. When this option is used, then a ‘(’ or ‘)’ that appears in an EQ field will be preceeded by a backslash. Despite documentation to the contrary (which says that all parentheses should be escaped), adding escapes usually produces a worse result than doing nothing. If Word displays some formulas with parentheses as “Error!”, you might try this option as a last resort. See also the -S option.

This is an option because it will break typesetting equations with non-matching parentheses (because an unmatched unquoted parenthesis would terminate the field).

-P /path/to/cfg

used to specify the folder (i.e. directory) that contains the .cfg files and/or the folder that contains the latex2png script.
Unix, Mac: The folder that contains the latex2png script must be prepended by a ":".
DOS, Windows: The scripts folder is not used, the scripts are always taken from the search path, therefore the folder containing the scripts and the helper programs must be the first in the search path. You can either add it to the search path permanently or add it temporarily by calling l2rprep.bat before starting conversions.
If any of the folder names contains a blank, the folder string must be enclosed in single (Unix, Mac) or double (DOS, Windows) quotes.
Examples:
(Unix:) latex2rtf -P ./cfg/:./scripts/ foo
(DOS/Windows:) latex2rt -P "C:\Program Files\latex2rtf\cfg" foo
Note that without specifying the -P option, LaTeX2RTF tries to find its cfg files in the following locations:
1. the folder specified by the environment variable RTFPATH, if this variable exists;
2. The folder %PROGRAMFILES%\latex2rtf\cfg, if the variable PROGRAMFILES exists – this is the folder in which LaTeX2RTF is installed by the Windows GUI installer with default settings;
3. the folder specified at compilation time by the variable CFGDIR. This is set in the Makefile. The DOS version is compiled with CFGDIR=C:/l2r, the Windows version with CFGDIR=C:/PROGRA~1/latex2rtf.

-se#

selects the scale for equation conversion, where # is the scale factor (default 1.00).

-sf#

selects the scale for figure conversion, where # is the scale factor (default 1.00).

-t#

where # selects the type of table conversion. Use

-t1

convert tables to RTF (default)

-t2

convert tables to bitmaps

-v or -V

prints version information on standard output and exits.

-S

used to specify that semicolons should be used to separate arguments in RTF fields (instead of commas). Typically this is needed when the machine that opens the RTF file has a version of Windows that uses ‘,’ for decimal points.

-T /path/to/tmp

used to specify the folder where to put temporary files. The path can be absolute, e.g. /path/to/tmp or relative to the folder where the .tex input file is in, e.g. tmp or ./tmp.
If you call LaTeX2RTF from the commandline (e.g. under Linux or when called as export filter by LyX), make sure that the tmp folder exists. Only the LaTeX2RTF Windows shell tries to create the tmp folder, the command line program doesn’t.

-W

includes warnings directly in the RTF file

-Z#

add the specified number of extra } to the end of the RTF file. This is useful for files that are not cleanly converted by LaTeX2RTF.

With no arguments other than switches starting with a “-”, LaTeX2RTF acts as a filter, i.e., it reads from stdin and writes to stdout. In addition, diagnostic messages are sent to stderr. If these standard channels are not redirected using < and >, then the input is read from the command line, and both output and error messages are printed on the screen. To redirect warnings and error messages to a file “latex2rtf.log”, append 2>latex2rtf.log to the command line.

If a non-switch argument is present, LaTeX2RTF assumes it is the name of the input file. The file must have extension “.tex” but the extension is optional. The output file is constructed from the input file name by removing the extension “.tex” and adding “.rtf”.


3.3 Debugging

With the -d option you can specify how much processing information LaTeX2RTF reports. If there is a logfile specified the output goes to this file. Nonetheless Warnings and Errors are logged to stderr always. They can be redirected to a file “latex2rtf.log” by appending 2>latex2rtf.log to the command line.

Possible values of -d are

  1. only errors.
  2. Translation Warnings (default).
  3. shows preparsing of sections
  4. Reasonably high level debugging messages
  5. Show all function calls
  6. Show each character as it is processed
  7. Show processing of characters as they are output as well

4 Features

In this chapter you find what styles is LaTeX2RTF supposed to translate correctly to RTF.


4.1 LaTeX2e

LaTeX2RTF understands most of the commands introduced with LaTeX2e. It translates both the old 2.09 version of \documentstyle[options]{format#} and the newer \documentclass[options]{format}.


4.2 Unicode Support

As of version 1.9.17 and up, LaTeX2RTF has limited unicode support. LaTeX files that use unicode sequences are just emitted directly into the RTF file.
Symbols and odd characters in math sequences may also be converted to a unicode sequence. Some of them need the STIXGeneral fonts (see Math and Special Symbols) to be installed on the system where the rtf file is to be displayed or printed.

Support for unicode encoded input is activated by the LaTeX command
\usepackage[utf8]{inputenc}
or
\usepackage[utf8x]{inputenc}.


4.3 Input Encoding

It is not necesary to specify the -C option if you use \usepackage{isolatin1} or \documentstyle[isolatin1]{...}. LaTeX2RTF automagically detects these packages/style options and switches to processing of ISO-Latin1 codes. The following encodings are supported: ansinew, applemac, cp437, cp437de, cp850, cp852, cp865, decmulti, cp1250, cp1252, latin1, latin2, latin3, latin4, latin5, latin9, next, koi8-r, koi8-u, cp1251, cp855, cp866, maccyr, macukr, utf8, and utf8x. The encoding used in RTF files is cp1252. If cyrillic fonts are present, then these are represented in the RTF file using cp1251 (Windows Cyrillic).


4.4 Language Support

The following languages from the Babel package are supported: afrikaans, german, nynorsk, spanish, bahasa, dutch, icelandic, polish, swedish, basque, english, portuges, turkish, brazil, esperanto, irish, romanian, usorbian, breton, estonian, italian, samin, welsh, catalan, finnish, latin, scottish, croatian, lsorbian, serbian, czech, french, magyar, slovak, danish, galician, norsk, slovene.

The only thing that these files do is to translate various words usually emitted by LaTeX during processing. For example, this ensures that the LaTeX2RTF will provide the correct translation of the word “Chapter” in the converted document.

You can select any of the above languages using the -l option. This is not needed if your LaTeX file contains \usepackage[language]{babel}.

Encountering the german package or babel option (by H. Partl of the Vienna University) makes LaTeX2RTF behave like that: German Quotes, German Umlauts by "a, etc... This support is programmed directly into LaTeX2RTF and supporting similar features for other languages will require patching the source code.

There is similar support for french packages.

There is reasonable support for english, latin1, latin2, and cyrillic languages.

See Language Configuration, for details on how to write a language.cfg file for your language by yourself.


4.5 Cross References

Cross references include everything that you might expect and then some: bibliographic citations, equation references, table references, figure references, and section references. Section, equation, table and figure references are implemented by placing RTF bookmarks around the equation number (or table number or figure number).

Page references work but are implemented as “warm” cross-references. This means that Word does not automatically update the page references when the file is opened. To update the page references you must select the entire document (in Word) and press F9.

Bibliographic references currently require that a valid .aux file be present. This is where LaTeX2RTF obtains the reference numbers. It would be nice if LaTeX2RTF just automatically numbered the references when there was no .aux file, but LaTeX2RTF does not do this yet.

LaTeX2RTF relies on BibTeX to convert and format bibliographic entries. Usually the style file for a particular BibTeX format does not use any special LaTeX commands and therefore the bibliography file file.bbl can be processed by LaTeX2RTF without difficulty. As a consequence, LaTeX2RTF can handle most bibliography styles without problem.

There are several latex style packages that add additional latex commands to enhance bibliographic formatting. LaTeX2RTF currently supports the following bibliographic packages:
apacite, apalike, authordate, harvard, natbib (also with apanat1b). These packages have many, many options and you may encounter problems with formatting in special cases.

As of LaTeX2RTF 1.9.17 and up, the natbib command bibpunct is supported.

Footnotes are implemented and appear at the bottom of each page.

Indexing is reasonably-well supported. The simple mark-up of makeindex

\index{topic!subtopic@\textit{subtopic}}

is supported. The rest of the fancy indexing stuff is not implemented. The index is created at the location of the \printindex command. When a file with an index is first opened in Word, you must select the entire file and update the page references and fields by pressing F9.

Currently, there is no support for \labels of \items in enumerate environments.

The conversion of cross-references is not perfect because of the different mechanisms in the LaTeX and Word worlds. In particular, if there are multiple \label in a figure, table, or section environment then only the first gets processed. It is also possible to confuse the LaTeX2RTF in eqnarray environments.


4.6 Page Formatting

LaTeX2RTF will handle some basic page formatting options, including \doublespacing (as implemented in the setspace package), and the margin setting options provided by the geometry package including commands in the ratio, centering and margin families. Not all geometry options are implemented yet, in part because there are no corresponding rtf commands for many of them.


4.7 Equations

There are six separate levels of equation translation based on the -M switch, see LaTeX2RTF Options. Each equation is converted either to an EQ field or to a bitmap or inserted as raw TeX code in the document or converted to an eps file with the eps file name inserted in the document text delimited by [###...###].

This is an interim solution (for some definition of “interim”). Ideally the equations would become OLE equation objects in the RTF file, but this needs to be implemented.

Some functions in the EQ fields have two or more parameters with a separator between each two. Unfortunately, the interpretation of these separators depends on the country specific settings in the MS Windows system in which the rtf file is opened. e.g. in English versions of MS Windows, the default parameter separator is the comma, in German versions the default is the semicolon. If the parameter in the RTF file does not match the Windows setting, some EQ fields are not interpreted correctly. You can check and set the separator in [Windows control panel - country settings - numbers - list separator]. By default, LaTeX2RTF uses the comma as separator. If LaTeX2RTF is called with the command line parameter -S , the semicolon is inserted as parameter delimiter.

Theoretically, according to the Word help file, parentheses ‘(’ or ‘)’ in mathematical formulas should be escaped (by a preceding backslash). Despite this, adding escapes usually produces a worse result than doing nothing. If Word displays some formulas with parentheses as “Error!”, you might try the -p option as a last resort.

It is also possible to convert an EQ field generated by LaTeX2RTF to an Equation Editor object by opening the rtf file in Word and double-clicking on the equation. However there are bugs in the interface between Word and Equation Editor which prevent symbols in font Symbol or MTExtra to be converted correctly. The full commercial version of the Equation Editor, called MathType, handles this conversion correctly.

If you have MathType version 6 or later, an even better way to convert LaTeX equations to MathType is letting LaTeX2RTF write the LaTeX code of the equations verbatim in the rtf file (option -M32), then open the rtf file in Word, select the LaTeX code of an equation, cut it to the clipboard, open MathType, and paste the code. MathType will convert the code into an equation. Wilfried tried to automate this in a Word macro, but this fails because the macro does not wait until MathType is started and ready to receive the pasted code. Maybe the MathType authors will give us a hint or provide such a macro.

MathType can be downloaded from http://www.dessci.com/ (30 day test version).


4.8 Math and Special Symbols

The way that symbols are converted in the RTF is based on the following observations. If the symbol is found in the latin 1 character set, then the current font is used, else the unicode code is inserted in the rtf code. (Implemented since version 2.1.0)

The means that on the system where the .rtf file is opened, a unicode font should be available or these glyphs will not be displayed correctly. As only the STIX fonts contain all needed characters, these fonts should be installed on the system where the rtf file is to be displayed or printed.

Many mathematical and special symbols are directly supported by LaTeX2RTF. Less common symbols (not found in the standard font) are supported by the conversion table in the file direct.cfg, see Direct Conversion.

Required fonts are:

  • “Times” / “Times New Roman” or “Helvetica” / “Arial”, preferably with Unicode extension (i.e. supporting all European languages including Cyrillic, Greek, and Hebrew). “Times” or “Times New Roman” and “Helvetica” or “Arial” are standard on all systems, but not their Unicode extension.
  • “STIXGeneral” (4 fonts in plain, italic, bold, bold-italic). These fonts are available from http://sourceforge.net/projects/stixfonts/.

    Note that while Office 2003 on Vista works correctly with the Open Type version, it does not on Windows XP (Word 2003 assigns no character spacing, and Publisher doesn’t display the character at all). On Windows XP, Office 2003 only displays the symbols correctly with the TrueType (ttf) version of the fonts. But stixfonts.org only supplies the Open Type (otf) version. TrueType versions of the fonts can be downloaded from http://sites.google.com/site/olegueret/stixfonts-ttf.


4.9 Tables

Conversion of tabular and tabbing environments is somewhat lame. The main difficulty is that LaTeX (and html) will size the columns of a table automatically. There is no such feature in RTF. Consequently, the conversion defaults to making all the columns have equal size. This is suboptimal and should be revised.

Another way is to use the option -t2 to make latex render them as bitmaps and insert the bitmaps into the RTF file. This feature was added in version 1.9.19.


4.10 Graphics

There is now rudimentary support for \includegraphics. Three file types will be inserted into the RTF file without needing conversion: .pict, .jpeg, and .png files. EPS and PDF files are converted to PNG using convert from the ImageMagick package. Some options are even handled properly.


4.11 Pagestyles

If there is no \pagestyle command, the RTF output is generated as with plain pagestyle, i.e. each page has its page number centered at the bottom.

You must turn this off with the \pagestyle{empty} command in the LaTeX file if you don’t want pagenumbers. The headings and myheadings styles are silently ignored by now. The twosided option to the \documentstyle or \documentclass produces the corresponding RTF tokens. Note that these features require RTF Version 1.4.


4.12 Hyperlatex

Hyperlatex support is largely broken at the moment, but continues to improve.

Otfried Schwarzkopf has created the “Hyperlatex Markup Language” which is a “little package that allows you to use LaTeX to prepare documents in HTML.” It brings an Emacs lisp program with it to convert the Hyperlatex file to HTML. Hyperlatex can be obtained from the CTAN-sites, see Obtaining LaTeX2RTF. There are two convenient commands that avoid typing: \link and \xlink that generate an “internal” label which then is used in the following \Ref and \Pageref commands.

LaTeX makes it possible to write ‘\link{anchor}[ltx]{label}’, which typesets: ‘anchor ltx’. LaTeX2RTF does NOT support this aproach since the optional parameter is thrown away right now, see LaTeX2RTF under Development.

Note that you have to update your .cfg files if you are upgrading, since there are a lot of HTML oriented commands in Hyperlatex that we simply can ‘ignore’.


4.13 APA Support

Some APA citation styles are supported, see Citation Commands

Support for APA text formatting is only rudimentary at the moment (headings without numbering). If you want to format a document according to APA, rename cfg/style.cfg to style_sav.cfg and rename cfg/styleAPA.cfg to style.cfg before starting LaTeX2RTF.


5 Configuration


5.1 Input processing

On processing input LaTeX2RTF first converts the LaTeX special characters. If it encounters one of the standard commands it is converted internally. If a command is not known to LaTeX2RTF it is first looked up in direct.cfg and the RTF code specified there is output. If not found there it is looked up in the section ignore.cfg. This file includes a lot of LaTeX commands that do not affect the output (cross reference information and the like), or that we are not able or willing to convert to RTF.

You can use ignore.cfg if you get tired of seeing

WARNING: command: `foo' not found - ignored

and you don’t need ‘foo’ in your RTF document. It would be nice to send your additions to the LaTeX2RTF mailing list for inclusion in later distributions.

LaTeX2RTF accepts Unix, MS-DOS, and Macintosh line ending codes (\n, \r\n and \r). The files it creates get the line ending for the platform on which LaTeX2RTF was compiled.

The LaTeX file may have been created with a wide variety of character sets. If the LaTeX lacks the \package[codepage]{inputenc} definition, then you may need to use the command line switch to manually select the proper code page (see Input Encoding).


5.2 Conditional Parsing

Starting with LaTeX2RTF 1.9.18, there is a handy method for controlling which content should be processed by LaTeX or by LaTeX2RTF. Control is achieved using the standard \if facility of TeX. If you include the following line in the preamble of your document (i.e., before \begin{document})

\newif\iflatextortf

Then you will create a new \iflatextortf command in LaTeX. TeX sets the value of this to false by default. Now, LaTeX2RTF internally sets \iflatextortf to be true, and to ensure that this is always the case, LaTeX2RTF ignores the command \latextortffalse. This means that you can control how different applications process your document by

\iflatextortf
This code is processed only by latex2rtf
\else
This code is processed only by latex
\fi

Note that \iflatextortf will only work within a section; you cannot use this command to conditionally parse code that crosses section boundaries. Also, it will only work on complete table or figure environments. Due to the mechanism used by LaTeX2RTF in processing these environments, at this time the only way to conditionally parse tables and figures is to include two complete versions of the environment in question, nested within an appropriate \iflatex2rtf structure.

LaTeX2RTF versions 1.9.15 to 1.9.18 had the ability to hide contents from LaTeX but expose them to LaTeX2RTF by starting a line with %latex2rtf:. This code was horribly broken, and it was removed. The same functionality is readily achieved using the \iflatextortf mechanism. For example, the old method allowed

%latex2rtf: This line will only appear in the latex2rtf output, 

To get the same behavior, define \iflatextortf and use

\iflatextortf
This code is processed only by latex2rtf
\fi

5.3 Output Formatting

On writing output, LaTeX2RTF generates the operating system specific line ending code (\n on Unix, \r\n on DOS or Windows), depending on which system LaTeX2RTF was compiled. As both should be legal to any RTF Reader the resulting RTF rendering should not be affected.

LaTeX2RTF does not offer a whole lot of flexibility in how files are translated, but it does offer some. This flexibility resides in four files direct.cfg, ignore.cfg, fonts.cfg, and language.cfg. These filese are documented in the next four sections.


5.4 Direct Conversion

The file direct.cfg is used for converting LaTeX commands by simple text replacement. The format consists of lines with a LaTeX command with backslash followed by comma. The rest of the line until a ‘.’ character will be written to the RTF file when the command is found in the LaTeX file. Lines starting with a ‘#’ character are ignored. After the ‘.’ everything is ignored to end of line. To select a specific font use *fontname*, where fontname be defined in fonts.cfg. To write the ‘*’ character use ‘**’.

\bigstar,{\u8727**}.
\copyright,\'a9.

In general, specific fonts should not be specified in this file. There is a mechanism to do this, but it turns out that this is not as useful as originally thought. The main reason that this fails is because the conversion of equations from Word fields to Equation Editor objects is buggy. The consequence is that to have symbols show up properly, they must be encoded differently when the Symbol and MT Extra fonts are used — depending on whether Word fields are active or not. It was all very tedious to figure out a mechanism that was “least broken.”


5.5 Ignore Command

The file ignore.cfg is used for defining how to ignore specific commands. This file is used for recognition of LaTeX variables, user defined variables, and some simple commands. All variables are ignored but the converter must know the names to correctly ignore assignments to variables. Lines in this file consist of a variable name with backslash, followed by comma and the type of the variable followed by ‘.’. Possible types are

NUMBER

simple numeric value

MEASURE

numeric value with following unit of measure

OTHER

ignores anything to the first character after ‘=’ and from there to next space. e.g., \setbox\bak=\hbox

COMMAND

ignores anything to next ‘\’ and from there to the occurence of anything but a letter e.g., \newbox\bak

SINGLE

ignores single command e.g., \noindent

PARAMETER

ignores a command with one parameter e.g., \foo{bar}

PACKAGE

does not produce a Warning message if PACKAGE is encountered, e.g., ‘\kleenex,PACKAGE.’ ignores ‘\usepackage{kleenex}

ENVCMD

intended to process contents of unknown environment as if it were plain LaTeX, e.g. ‘\environ,ENVCMD.
Therefore ‘\begin{environ} text \end{environ}’ would be converted to ‘text’. Doesn’t work in LaTeX2RTF version 2.1.0 up to and including 2.3.4.

ENVIRONMENT

ignores contents of that environment, e.g., with ‘\ifhtml,ENVIRONMENT.”, ‘\begin{ifhtml} text \end{ifhtml}’ ignores ‘text’.

The types are in upper case exactly as above. Do not use spaces. Lines starting with a ‘#’ character are ignored. After the ‘.’ everything is ignored to end of line. Example:

\pagelength,MEASURE.

5.6 Font Configuration

The file fonts.cfg contains the font name mapping. For example, this file determines what font is used to represent \rm characters in the RTF file.

A line consists of a font name in LaTeX followed by comma and a font name in RTF. The end is marked by a ‘.’. No spaces are allowed. The LaTeX font will be converted to the RTF font when it is found in the LaTeX file. If multiple translations for the same LaTeX font are specified, only the first is used. All fonts in a LaTeX file that are not in this file will be mapped to the default font. All RTF fonts listed in this file will be in every RTF file header whether used or not. Lines starting with a ‘#’ character are ignored. After the ‘.’ everything is ignored to end of line.

To add a RTF font not used as substitute for a LaTeX font — for example a Symbol font used in direct.cfg — use a dummy LaTeX name like in the following

Dummy3,MathematicalSymbols.

Make sure you use the correct font name. Take care of spaces in font names. The default fonts are named Roman \rm, Slanted \sl, Sans Serif \sf, Typewriter \tt, or Calligraphic \cal.


5.7 Language Configuration

The file(s) language.cfg control the translation of LaTeX’s “hardcoded” sectioning names. The standard LaTeX styles have some fixed Title names like ‘Part’, ‘Reference’ or ‘Bibliography’ that appeared in English or German in the output with the original versions of LaTeX2RTF.

It is unlikely that you will need to create a new language.cfg file. However, just look at one of the existing files and follow the pattern. The format is really simple.


6 Error Messages and Logging

As stated in the Debugging section, LaTeX2RTF provides a means to control the amount of debugging information through the -d# switch. By using a debugging level of 4, you can get a pretty good idea of what LaTeX command caused the problem and what line that command might be found on. Warnings and error messages are output to stderr and by default listed in the console window. They can be redirected to a file “latex2rtf.log” by appending 2>latex2rtf.log to the command line.

Fatal error messages

indicate a bug in the source code. PLEASE report them, if they do not apear in the documentation (see Reporting Bugs).

Error messages

always abort the program and are caused by conditions that prevent further conversion of the input file. Typically this is cause by LaTeX2RTF getting hopelessly confused by the number of braces in the LaTeX file.

Warning messages

inform you, that there is some conversion loss from LaTeX to RTF, or that the output file has some restrictions on some RTF Readers. Most of these warnings can be supressed by add the offending command to the ignore.cfg file.

Error and Warning messages should follow the GNU Coding standards, i.e. they have the format

inputfile':line: Error|Warning: message

You can also control the level of debugging output by inserting \verbositylevel{#} in the LaTeX file. This is very handy if you have a large LaTeX file that is failing in only a small section. For example,

problem free latex file ....
\verbositylevel{5}
problematic code
\verbositylevel{0}

will cause a huge amount of debugging information to be emitted for the problematic code.

Error reporting and logging still has many inconsistencies, but it gets better with each release. Don’t try to make any sense in debugging levels above 4, these are for my own delight only and can change significantly between versions.

The inputfile may be incorrectly identified if it is incorporated through \input or \include. The line may be also be wrong at times. See Known Bugs.


7 History & Copyright

In 1994 the first Version of LaTeX2RTF was written by Fernando Dorner and Andreas Granzer of the Viena University supervised by Ralf Schlatterbeck in a one-semester course. They created a simple LaTeX parser and added most of the infrastructure for the program. This was version 1.0 of LaTeX2RTF. In 1995, work on LaTeX2RTF was continued in another one-semester course by Friedrich Polzer and Gerhard Trisko. The result was LaTeX2RTF version 1.5. Ralf Schlatterbeck (ralf “at” zoo.priv.at) maintained and extended LaTeX2RTF until 1998.

In 1998 Georg Lehner (jorge_lehner “at” gmx.net) found the reference to LaTeX2RTF on the TeX Conversion Webpage of Wilfried Hennings and added some functionality and took over the maintainence of the program. The last version release by Georg is 1.8aa. The bulk of development post 1.8aa was done by Scott Prahl. Wilfried Hennings now coordinates the development of the program and maintains the project on SourceForge where there are also (low volume) mailing lists for users and developers. Mailing via one of these lists requires subscription to the list (to prevent spam). For subscription to these lists visit the page: users list or developers list

As of Januar 2017, version 2.3.12 of LaTeX2RTF is available.

The contents of this manual were composed by copying shamelessly what was available in the original sources and documentation.


8 LaTeX2RTF under Development


8.1 Unimplemented Features

  • LaTeX2RTF ignores some optional parameters of \documentstyle
  • Add the code to produce the corresponding chapter, section, and page numbering with headings and myheadings pagestyles. Implement \markboth and \markright.
  • To support \tableofcontents there would be two approaches: Transfer sectioning information, title text and then produce page numbers by the rtf- reader. Scan and label all of the sectioning commands while reading and then construct the sectioning information using these labels. Needs two passes on LaTeX input.

8.2 Missing options

Missing or buggy command line options.

-d

Information logging and Error reporting is not implemented consistently. Need to test and track problems with the linenumber and with the file name.

--long_names

It would be useful to implement the GNU long option names, e.g.: ‘–debug’, ‘–output_file’, ‘–quiet’, etc. This could be done by switching to the GNU getopt package.


8.3 Known Bugs

  1. The first parameter of a \link{anchor}[ltx]{label} is converted to the rtf-output. Label is stored to hyperref for later use, the optional parameter is ignored. [ltx] should be processed as Otfried recommends it, to use for exclusive LaTeX output.e.g: \link{readhere}[~\Ref]{explaining: chapter}. Since {explaining:chapter} is yet read by LaTeX and hyperlatex when [...] is evaluated it produces the correct reference. LaTeX2RTF is only strolling from left to right through the text and can’t remember what she will see in the future.
  2. The diagnostics routine does not output the correct (actual) input filename. (‘.aux’, ‘.bbl’, \input).

8.4 Reporting Bugs

Report bugs to to the bug tracking system at SourceForge. Only report bugs for the latest version of LaTeX2RTF that is available. Please provide the following information and observe the following guidelines when reporting a bug in the program:

  1. State the version of LaTeX2RTF that you are using. You can get the version by specifying the -V option to LaTeX2RTF.
  2. Specify the your operating system and version. Be sure to check the file ‘Makefile’ for settings that may be specific to your machine, especially for some versions of SunOS there may be settings which are needed to compile successfully. Do this before submitting a bug report.
  3. If the program produces wrong output or does not work for you, include a short LaTeX file along with a description of the problem. Isolating the bug into a small LaTeX file does two things. First, it provides a file that can be used to test future versions of LaTeX2RTF and second, it certainly improves the chances that the bug will get some attention. Do not send me large LaTeX or RTF files, I simply do not have the time to wade through large files to search for a bug!
  4. Be patient. I am maintaining the program in my free time. I did not write most of the code. Often I do not have the time to answer to your question. I will, however, try to fix reported bugs in upcoming releases.

8.5 Todo List

Scott’s ToDo list

  • Use lex/yacc to implement getSection
  • Add support for pagestyle
  • Better support for ignoring commands

Georg’s todo list

  • Make this Manual more consistent, the ToDo and Known Bug List shorter and the Features List longer.
  • Harmonize all of the error and warning messages.
  • Put warnings everywhere applicable about producing RTF 1.4 tokens.
  • Provide an Error and Warning recovery guide to the user.
  • Add a chapter with lists of all LaTeX commands that convert, and that do not convert to RTF, including their status (for future releases, never, partially functional, ...).

8.6 Command List

Listed here are all the LaTeX commands currently parsed by LaTeX2RTF. Note: inclusion in this list does not mean that a command is fully and correctly handled by LaTeX2RTF. In some cases the commands here are place-holders only, and are not implemented at all. The list is provided to encourage developers to note any departures from the behaviour that LaTeX users will expect. The location of the commands is noted to assist anyone interested in hacking on the C source code. This list is a work in progress, and may not be immediately useful to general users, other than to indicate those commands that we have at least contemplated implementing.


8.6.1 General Commands

These commands are found in the commands[] array in commands.c. They are arranged alphabetically within sections according to function.


8.6.1.1 Basic Commands

All listed commands work as expected.

begin
centerline
end
endnote
footnote
raggedright
the
today
vcenter

8.6.1.2 Font Commands

All listed commands work as expected.

bf
bfseries
cal
em
emph
enotesize
footnotesize
HUGE
Huge
huge
it
itshape
LARGE
Large
large
mathbf
mathcal
mathit
mathmd
mathnormal
mathrm
mathsc
mathsf
mathsl
mathtt
mathup
mdseries
mit
normalfont
normalsize
rm
rmfamily
sc
scfamily
scriptsize
scshape
sf
sffamily
sl
slshape
small
ssmall
textbf
textfont
textit
textmd
textnormal
textrm
textsc
textsf
textsl
texttt
textup
tiny
tt
ttfamily
underbar
underline
upshape

8.6.1.3 Logos

All listed commands work as expected.

AmSLaTeX
AmSTeX
BibTeX
kern
LaTeX
latex
LaTeXe
lower
LyX
SLiTeX
TeX

8.6.1.4 Special Characters

These commands all work as expected.

\
acute
b
bar
breve
c
check
d
ddot
dot
grave
H
hat
i
j
l
L
r
tilde
u
v
vec

8.6.1.5 Sectioning Commands

chapter
chapter*
paragraph
paragraph*
part
part*
section
section*
subparagraph
subparagraph*
subsection
subsection*
subsubsection
subsubsection*

8.6.1.6 Uncategorized

These commands need to be organized into new or existing sections.

abstract
addcontents

Ignored

addcontentsline

Ignored

addvspace

Ignored

aleph
Alph
alph

Ignored

alpha
Alpha

Ignored

amalg
and
angle
appendix

Ignored

approx
arabic

Ignored

ast
author
baselineskip
because
beta
Beta
bibentry
bibitem
bibliography
bibliographystyle
bibliographystyle

Ignored

bigskip
bot
BoxedEPSF
bullet
cap
caption
cdot
cdots
centering
char
chi
Chi
circ
cite
citeonline
cleardoublepage
clearpage
clubsuit
cong
contentsline
coprod
cup
date
ddots
delta
Delta
dfrac
Diamond
diamondsuit
div
doteq
dotfill

There is no rtf code for dotfill; LaTeX2RTF inserts an ellipsis only.

dots
dots
downarrow
Downarrow
efloatseparator
ell
emptyset
endinput
endnotemark

Ignored

ensuremath
epsfbox
epsffile
epsilon
eqref
equiv
eta
exists
fbox
fbox
fnsymbol

Ignored

footnotemark

Ignored

forall
frac
Frac
framebox

Ignored

frenchspacing

Ignored

gamma
Gamma
ge
geq
gg
glossary

Ignored

glossaryentry

Ignored

hbar
hbox
heartsuit
hsize
hslash
hspace

Ignored

hspace*

Ignored

htmladdnormallink
htmlref
iiint
iint
Im
in
include
includegraphics
includegraphics*
includeonly

Ignored

indent
index
indexentry

Ignored

infty
input
int
int
iota
kappa
label
lambda
Lambda
land
langle
lceil
ldots
le
left
leftarrow
Leftarrow
leftharpoondown
leftleftarrows
leftrightarrow
Leftrightarrow
leftrightarrows
leq
let

Ignored

letterspace
lfloor
lim
liminf
limsup
linebreak

Ignored

lineskip
listoffigures
listoftables
ll
longleftarrow
longleftrightarrows
longrightarrow
lor
makebox

Ignored

maketitle
mapsto
marginpar

Ignored

markboth

Ignored

markright

Ignored

matrix
mbox
measuredangle
medskip
mho
moveleft
moveright
mp
mu
multicolumn
nabla
ne
nearrow
neg
neq
newblock
newcount

Ignored

newfont

Ignored

newpage
newsavebox

Ignored

nobibliography

Ignored

nobreakspace
nocite
noindent
nolinebreak

Ignored

nonfrenchspacing

Ignored

nonumber
nopagebreak

Ignored

notag
nu
numberline
nwarrow
omega
Omega
omicron
onecolumn
onlinecite
oplus
oslash
otimes
output

Ignored

overline
pagebreak
pagenumbering

Ignored

pageref
pagestyle

Ignored

par
parbox
partial
perp
phi
Phi
pi
Pi
pm
prec
printindex
prod
prod
propto
protect

Ignored

psfig
psfrag

Ignored

psi
Psi
qquad
quad
raisebox

Ignored

rangle
rceil
Re
ref
refstepcounter
rfloor
rho
right
Rightarrow
rightarrow
rightharpoonup
rightleftarrows
rightleftharpoons
rightrightarrows
Roman

Ignored

roman

Ignored

rule
samepage

Ignored

savebox

Ignored

sbox

Ignored

searrow
setbox
settowidth

Ignored

sigma
Sigma
sim
simeq
smallskip
spadesuit
sqrt
stackrel
stepcounter

Ignored

stretch

Ignored

subset
subseteq
succ
sum
sum
supset
supseteq
surd
swarrow
tableofcontents
tau
textalpha
textbeta
textbullet
textchi
textcolor
textDelta
textdelta
textellipsis
textepsilon
texteta
textGamma
textgamma
textiota
textkappa
textLambda
textlambda
textmu
textnu
textOmega
textomega
textperiodcentered
textPhi
textphi
textPi
textpi
textPsi
textpsi
textSigma
textsigma
textsubscript
textsuperscript
textTau
texttau
textTheta
texttheta
textXi
textxi
textzeta
thanks
therefore
Theta
theta
tikzpicture
times
title
to
triangleleft
triangleright
twocolumn
typeaout

Ignored

Typein

Ignored

typein

Ignored

typeout

Ignored

Uparrow
uparrow
updownarrow
Updownarrow
upsilon
Upsilon
url
usebox

Ignored

value
varepsilon
varnothing
varphi
varpi
varpropto
varsigma
vartheta
vbox
vdots
vee
verb
verb*
vref
vsize
vskip
vspace
vspace*
wedge
wp
xi
Xi
zeta

8.6.2 Preamble Commands

These commands are found in PreambleCommands[] in commands.c, and are implemented in preamble.c.

addtocounter
addtolength
baselineskip
celsius
cfoot
chead
cline
DeclareRobustCommand
DeclareRobustCommand*
def
degreecelsius
documentclass
documentstyle
doublespacing

Currently, the only command from the setspace package that is implemented, and the only way to modify line spacing.

endnotetext
EUR
euro
evensidemargin
fancyfoot
fancyhead
flushbottom
footnotetext
geometry

Currently recognizes *ratio, *centering, *margin, left, right, inner, outer, top, bottom, right, left (including vmargin, hratio etc.)

headheight
headsep
hline
hoffset
htmladdnormallink
htmlref
hyphenation
iflatextortf
ifx
include
input
latextortffalse

Ignored

latextortftrue

Ignored

lfoot
lhead
listoffiles

Ignored

makeglossary

Ignored

makeindex

Ignored

makelabels

Ignored

markboth

Ignored

markright

Ignored

newcommand
newcounter
newenvironment
newif
newlength
newtheorem
nobreakspace
nofiles

Ignored

oddsidemargin
pagenumbering

Ignored

pagestyle
parindent
parskip
providecommand
raggedbottom
renewcommand
renewenvironment
renewtheorem

Ignored

resizebox
resizebox*
rfoot
rhead
setcounter
setlength
signature
textheight
textwidth
theendnotes
thepage
thispagestyle

Ignored

topmargin
usepackage
verbositylevel
voffset

8.6.3 Letter Commands

Found in LetterCommands[] in commands.c.

address
cc
closing
encl
opening
ps
signature

8.6.4 Language Commands


8.6.4.1 German Commands

Found in GermanModeCommands[] in commands.c.

ck
glqq
glq
grq
grqq

8.6.4.2 Czech Commands

uv

8.6.4.3 French Commands

deuxpoints
dittomark
FCS
fg
fup
ieme
iemes
ier
iere
ieres
iers
inferieura
LCS
lq
lqq
numero
Numero
numeros
Numeros
og
pointexclamation
pointinterrogation
pointvirgule
primo
quarto
rq
rqq
secundo
superieura
tertio
up

8.6.4.4 Russian Commands

CYRA
cyra
CYRB
cyrb
CYRC
cyrc
CYRCH
cyrch
CYRCHSH
cyrchsh
CYRD
cyrd
CYRE
cyre
CYREREV
cyrerev
CYRERY
cyrery
CYRF
cyrf
CYRG
cyrg
CYRH
cyrh
CYRHRDSN
cyrhrdsn
CYRI
cyri
CYRISHRT
cyrishrt
CYRK
cyrk
CYRL
cyrl
CYRM
cyrm
CYRN
cyrn
CYRO
cyro
CYRP
cyrp
CYRR
cyrr
CYRS
cyrs
CYRSFTSN
cyrsftsn
CYRSH
cyrsh
CYRT
cyrt
CYRU
cyru
CYRV
cyrv
CYRYA
cyrya
CYRYU
cyryu
CYRZ
cyrz
CYRZH
cyrzh

8.6.5 Citation Commands


8.6.5.1 Apacite Commands

AX
BAnd
BBA
BBAA
BBAB
BBAY
BBC
BBCP
BBCQ
BBN
BBOP
BBOQ
BCAY
BCBL
BCBT
BCHAIR
BCHAIRS
BCnt
BCntIP
BED
BEd
BEDS
Bem
BIP
BMTh
BNUM
BNUMS
BOthers
BOWP
BPG
BPGS
BPhD
BREPR
BTR
BTRANS
BTRANSS
BUMTh
BUPhD
BVOL
BVOLS
citeA
citeauthor
citeNP
citeyear
citeyearNP
fullcite
fullciteA
fullciteauthor
fullciteNP
shortcite
shortciteA
shortciteauthor
shortciteNP

8.6.5.2 AuthorDate Commands

citename
shortcite

8.6.5.3 Harvard Commands

cite
citeaffixed
citeasnoun
citename
citeyear
citeyear*
harvardand
harvarditem
harvardyearleft
harvardyearright
possessivecite

8.6.5.4 HyperLatex Commands

Cite
link
Pageref
Ref
S
xlink

8.6.5.5 Apacite Commands

bibpunct
cite
citealp
Citealp
citealp*
citealt
Citealt
citealt*
citeauthor
Citeauthor
citeauthor*
citep
Citep
citep*
citet
Citet
citet*
citetext
citeyear
citeyearpar

8.6.6 Acronym Commands

usepackage [options] {acronym}
ac
acfi
acro
acrodef
acrodefplural
acused

8.6.7 Other Commands

Other Commands:
item
caption
center


8.6.8 Environments

Environments processed - found in params[] in commands.c.

abstract
acknowledgments
align
align*
alltt
array
bf
bfseries
center
comment
compactenum
compactitem
description
displaymath
document
em
enumerate
eqnarray
eqnarray*
equation
equation*
figure
figure*
flushleft
flushright
htmlonly

Ignored

it
itemize
itshape
landscape
latexonly

Ignored

letter
list
longtable
longtable*
math
mdseries
minipage
multicolumn
music
picture
quotation
quote
rawhtml

Ignored

rm
rmfamily
sc
scshape
sf
sffamily
sl
sloppypar
slshape
small
tabbing
table
table*
tabular
tabular*
thebibliography
theindex

Ignored

titlepage
tt
ttfamily
verbatim
Verbatim
verse

9 Function Index

Jump to:   \  
A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W   X   Z  
Index Entry  Section

\
\: Special Characters

A
abstract: Uncategorized
abstract: Environments
ac: Acronym Commands
acfi: Acronym Commands
acknowledgments: Environments
acro: Acronym Commands
acrodef: Acronym Commands
acrodefplural: Acronym Commands
acused: Acronym Commands
acute: Special Characters
addcontents: Uncategorized
addcontentsline: Uncategorized
address: Letter Commands
addtocounter: Preamble Commands
addtolength: Preamble Commands
addvspace: Uncategorized
aleph: Uncategorized
align: Environments
align*: Environments
alltt: Environments
Alph: Uncategorized
alph: Uncategorized
alpha: Uncategorized
Alpha: Uncategorized
amalg: Uncategorized
AmSLaTeX: Logos
AmSTeX: Logos
and: Uncategorized
angle: Uncategorized
appendix: Uncategorized
approx: Uncategorized
arabic: Uncategorized
array: Environments
ast: Uncategorized
author: Uncategorized
AX: Apacite Commands

B
b: Special Characters
BAnd: Apacite Commands
bar: Special Characters
baselineskip: Uncategorized
baselineskip: Preamble Commands
BBA: Apacite Commands
BBAA: Apacite Commands
BBAB: Apacite Commands
BBAY: Apacite Commands
BBC: Apacite Commands
BBCP: Apacite Commands
BBCQ: Apacite Commands
BBN: Apacite Commands
BBOP: Apacite Commands
BBOQ: Apacite Commands
BCAY: Apacite Commands
BCBL: Apacite Commands
BCBT: Apacite Commands
BCHAIR: Apacite Commands
BCHAIRS: Apacite Commands
BCnt: Apacite Commands
BCntIP: Apacite Commands
because: Uncategorized
BED: Apacite Commands
BEd: Apacite Commands
BEDS: Apacite Commands
begin: Basic Commands
Bem: Apacite Commands
beta: Uncategorized
Beta: Uncategorized
bf: Font Commands
bf: Environments
bfseries: Font Commands
bfseries: Environments
bibentry: Uncategorized
bibitem: Uncategorized
bibliography: Uncategorized
bibliographystyle: Uncategorized
bibliographystyle: Uncategorized
bibpunct: Natbib Commands
BibTeX: Logos
bigskip: Uncategorized
BIP: Apacite Commands
BMTh: Apacite Commands
BNUM: Apacite Commands
BNUMS: Apacite Commands
bot: Uncategorized
BOthers: Apacite Commands
BOWP: Apacite Commands
BoxedEPSF: Uncategorized
BPG: Apacite Commands
BPGS: Apacite Commands
BPhD: Apacite Commands
BREPR: Apacite Commands
breve: Special Characters
BTR: Apacite Commands
BTRANS: Apacite Commands
BTRANSS: Apacite Commands
bullet: Uncategorized
BUMTh: Apacite Commands
BUPhD: Apacite Commands
BVOL: Apacite Commands
BVOLS: Apacite Commands

C
c: Special Characters
cal: Font Commands
cap: Uncategorized
caption: Uncategorized
cc: Letter Commands
cdot: Uncategorized
cdots: Uncategorized
celsius: Preamble Commands
center: Environments
centering: Uncategorized
centerline: Basic Commands
cfoot: Preamble Commands
chapter: Sectioning Commands
chapter*: Sectioning Commands
char: Uncategorized
chead: Preamble Commands
check: Special Characters
chi: Uncategorized
Chi: Uncategorized
circ: Uncategorized
cite: Uncategorized
cite: Harvard Commands
Cite: HyperLatex Commands
cite: Natbib Commands
citeA: Apacite Commands
citeaffixed: Harvard Commands
citealp: Natbib Commands
Citealp: Natbib Commands
citealp*: Natbib Commands
citealt: Natbib Commands
Citealt: Natbib Commands
citealt*: Natbib Commands
citeasnoun: Harvard Commands
citeauthor: Apacite Commands
citeauthor: Natbib Commands
Citeauthor: Natbib Commands
citeauthor*: Natbib Commands
citename: AuthorDate Commands
citename: Harvard Commands
citeNP: Apacite Commands
citeonline: Uncategorized
citep: Natbib Commands
Citep: Natbib Commands
citep*: Natbib Commands
citet: Natbib Commands
Citet: Natbib Commands
citet*: Natbib Commands
citetext: Natbib Commands
citeyear: Apacite Commands
citeyear: Harvard Commands
citeyear: Natbib Commands
citeyear*: Harvard Commands
citeyearNP: Apacite Commands
citeyearpar: Natbib Commands
ck: German Commands
cleardoublepage: Uncategorized
clearpage: Uncategorized
cline: Preamble Commands
closing: Letter Commands
clubsuit: Uncategorized
comment: Environments
compactenum: Environments
compactitem: Environments
cong: Uncategorized
contentsline: Uncategorized
coprod: Uncategorized
cup: Uncategorized
CYRA: Russian Commands
cyra: Russian Commands
CYRB: Russian Commands
cyrb: Russian Commands
CYRC: Russian Commands
cyrc: Russian Commands
CYRCH: Russian Commands
cyrch: Russian Commands
CYRCHSH: Russian Commands
cyrchsh: Russian Commands
CYRD: Russian Commands
cyrd: Russian Commands
CYRE: Russian Commands
cyre: Russian Commands
CYREREV: Russian Commands
cyrerev: Russian Commands
CYRERY: Russian Commands
cyrery: Russian Commands
CYRF: Russian Commands
cyrf: Russian Commands
CYRG: Russian Commands
cyrg: Russian Commands
CYRH: Russian Commands
cyrh: Russian Commands
CYRHRDSN: Russian Commands
cyrhrdsn: Russian Commands
CYRI: Russian Commands
cyri: Russian Commands
CYRISHRT: Russian Commands
cyrishrt: Russian Commands
CYRK: Russian Commands
cyrk: Russian Commands
CYRL: Russian Commands
cyrl: Russian Commands
CYRM: Russian Commands
cyrm: Russian Commands
CYRN: Russian Commands
cyrn: Russian Commands
CYRO: Russian Commands
cyro: Russian Commands
CYRP: Russian Commands
cyrp: Russian Commands
CYRR: Russian Commands
cyrr: Russian Commands
CYRS: Russian Commands
cyrs: Russian Commands
CYRSFTSN: Russian Commands
cyrsftsn: Russian Commands
CYRSH: Russian Commands
cyrsh: Russian Commands
CYRT: Russian Commands
cyrt: Russian Commands
CYRU: Russian Commands
cyru: Russian Commands
CYRV: Russian Commands
cyrv: Russian Commands
CYRYA: Russian Commands
cyrya: Russian Commands
CYRYU: Russian Commands
cyryu: Russian Commands
CYRZ: Russian Commands
cyrz: Russian Commands
CYRZH: Russian Commands
cyrzh: Russian Commands

D
d: Special Characters
date: Uncategorized
ddot: Special Characters
ddots: Uncategorized
DeclareRobustCommand: Preamble Commands
DeclareRobustCommand*: Preamble Commands
def: Preamble Commands
degreecelsius: Preamble Commands
delta: Uncategorized
Delta: Uncategorized
description: Environments
deuxpoints: French Commands
dfrac: Uncategorized
Diamond: Uncategorized
diamondsuit: Uncategorized
displaymath: Environments
dittomark: French Commands
div: Uncategorized
document: Environments
documentclass: Preamble Commands
documentstyle: Preamble Commands
dot: Special Characters
doteq: Uncategorized
dotfill: Uncategorized
dots: Uncategorized
dots: Uncategorized
doublespacing: Preamble Commands
downarrow: Uncategorized
Downarrow: Uncategorized

E
efloatseparator: Uncategorized
ell: Uncategorized
em: Font Commands
em: Environments
emph: Font Commands
emptyset: Uncategorized
encl: Letter Commands
end: Basic Commands
endinput: Uncategorized
endnote: Basic Commands
endnotemark: Uncategorized
endnotetext: Preamble Commands
enotesize: Font Commands
ensuremath: Uncategorized
enumerate: Environments
epsfbox: Uncategorized
epsffile: Uncategorized
epsilon: Uncategorized
eqnarray: Environments
eqnarray*: Environments
eqref: Uncategorized
equation: Environments
equation*: Environments
equiv: Uncategorized
eta: Uncategorized
EUR: Preamble Commands
euro: Preamble Commands
evensidemargin: Preamble Commands
exists: Uncategorized

F
fancyfoot: Preamble Commands
fancyhead: Preamble Commands
fbox: Uncategorized
fbox: Uncategorized
FCS: French Commands
fg: French Commands
figure: Environments
figure*: Environments
flushbottom: Preamble Commands
flushleft: Environments
flushright: Environments
fnsymbol: Uncategorized
footnote: Basic Commands
footnotemark: Uncategorized
footnotesize: Font Commands
footnotetext: Preamble Commands
forall: Uncategorized
frac: Uncategorized
Frac: Uncategorized
framebox: Uncategorized
frenchspacing: Uncategorized
fullcite: Apacite Commands
fullciteA: Apacite Commands
fullciteauthor: Apacite Commands
fullciteNP: Apacite Commands
fup: French Commands

G
gamma: Uncategorized
Gamma: Uncategorized
ge: Uncategorized
geometry: Preamble Commands
geq: Uncategorized
gg: Uncategorized
glossary: Uncategorized
glossaryentry: Uncategorized
glq: German Commands
glqq: German Commands
grave: Special Characters
grq: German Commands
grqq: German Commands

H
H: Special Characters
harvardand: Harvard Commands
harvarditem: Harvard Commands
harvardyearleft: Harvard Commands
harvardyearright: Harvard Commands
hat: Special Characters
hbar: Uncategorized
hbox: Uncategorized
headheight: Preamble Commands
headsep: Preamble Commands
heartsuit: Uncategorized
hline: Preamble Commands
hoffset: Preamble Commands
hsize: Uncategorized
hslash: Uncategorized
hspace: Uncategorized
hspace*: Uncategorized
htmladdnormallink: Uncategorized
htmladdnormallink: Preamble Commands
htmlonly: Environments
htmlref: Uncategorized
htmlref: Preamble Commands
HUGE: Font Commands
Huge: Font Commands
huge: Font Commands
hyphenation: Preamble Commands

I
i: Special Characters
ieme: French Commands
iemes: French Commands
ier: French Commands
iere: French Commands
ieres: French Commands
iers: French Commands
iflatextortf: Preamble Commands
ifx: Preamble Commands
iiint: Uncategorized
iint: Uncategorized
Im: Uncategorized
in: Uncategorized
include: Uncategorized
include: Preamble Commands
includegraphics: Uncategorized
includegraphics*: Uncategorized
includeonly: Uncategorized
indent: Uncategorized
index: Uncategorized
indexentry: Uncategorized
inferieura: French Commands
infty: Uncategorized
input: Uncategorized
input: Preamble Commands
int: Uncategorized
int: Uncategorized
iota: Uncategorized
it: Font Commands
it: Environments
itemize: Environments
itshape: Font Commands
itshape: Environments

J
j: Special Characters

K
kappa: Uncategorized
kern: Logos

L
l: Special Characters
L: Special Characters
label: Uncategorized
lambda: Uncategorized
Lambda: Uncategorized
land: Uncategorized
landscape: Environments
langle: Uncategorized
LARGE: Font Commands
Large: Font Commands
large: Font Commands
LaTeX: Logos
latex: Logos
LaTeXe: Logos
latexonly: Environments
latextortffalse: Preamble Commands
latextortftrue: Preamble Commands
lceil: Uncategorized
LCS: French Commands
ldots: Uncategorized
le: Uncategorized
left: Uncategorized
leftarrow: Uncategorized
Leftarrow: Uncategorized
leftharpoondown: Uncategorized
leftleftarrows: Uncategorized
leftrightarrow: Uncategorized
Leftrightarrow: Uncategorized
leftrightarrows: Uncategorized
leq: Uncategorized
let: Uncategorized
letter: Environments
letterspace: Uncategorized
lfloor: Uncategorized
lfoot: Preamble Commands
lhead: Preamble Commands
lim: Uncategorized
liminf: Uncategorized
limsup: Uncategorized
linebreak: Uncategorized
lineskip: Uncategorized
link: HyperLatex Commands
list: Environments
listoffigures: Uncategorized
listoffiles: Preamble Commands
listoftables: Uncategorized
ll: Uncategorized
longleftarrow: Uncategorized
longleftrightarrows: Uncategorized
longrightarrow: Uncategorized
longtable: Environments
longtable*: Environments
lor: Uncategorized
lower: Logos
lq: French Commands
lqq: French Commands
LyX: Logos

M
makebox: Uncategorized
makeglossary: Preamble Commands
makeindex: Preamble Commands
makelabels: Preamble Commands
maketitle: Uncategorized
mapsto: Uncategorized
marginpar: Uncategorized
markboth: Uncategorized
markboth: Preamble Commands
markright: Uncategorized
markright: Preamble Commands
math: Environments
mathbf: Font Commands
mathcal: Font Commands
mathit: Font Commands
mathmd: Font Commands
mathnormal: Font Commands
mathrm: Font Commands
mathsc: Font Commands
mathsf: Font Commands
mathsl: Font Commands
mathtt: Font Commands
mathup: Font Commands
matrix: Uncategorized
mbox: Uncategorized
mdseries: Font Commands
mdseries: Environments
measuredangle: Uncategorized
medskip: Uncategorized
mho: Uncategorized
minipage: Environments
mit: Font Commands
moveleft: Uncategorized
moveright: Uncategorized
mp: Uncategorized
mu: Uncategorized
multicolumn: Uncategorized
multicolumn: Environments
music: Environments

N
nabla: Uncategorized
ne: Uncategorized
nearrow: Uncategorized
neg: Uncategorized
neq: Uncategorized
newblock: Uncategorized
newcommand: Preamble Commands
newcount: Uncategorized
newcounter: Preamble Commands
newenvironment: Preamble Commands
newfont: Uncategorized
newif: Preamble Commands
newlength: Preamble Commands
newpage: Uncategorized
newsavebox: Uncategorized
newtheorem: Preamble Commands
nobibliography: Uncategorized
nobreakspace: Uncategorized
nobreakspace: Preamble Commands
nocite: Uncategorized
nofiles: Preamble Commands
noindent: Uncategorized
nolinebreak: Uncategorized
nonfrenchspacing: Uncategorized
nonumber: Uncategorized
nopagebreak: Uncategorized
normalfont: Font Commands
normalsize: Font Commands
notag: Uncategorized
nu: Uncategorized
numberline: Uncategorized
numero: French Commands
Numero: French Commands
numeros: French Commands
Numeros: French Commands
nwarrow: Uncategorized

O
oddsidemargin: Preamble Commands
og: French Commands
omega: Uncategorized
Omega: Uncategorized
omicron: Uncategorized
onecolumn: Uncategorized
onlinecite: Uncategorized
opening: Letter Commands
oplus: Uncategorized
oslash: Uncategorized
otimes: Uncategorized
output: Uncategorized
overline: Uncategorized

P
pagebreak: Uncategorized
pagenumbering: Uncategorized
pagenumbering: Preamble Commands
pageref: Uncategorized
Pageref: HyperLatex Commands
pagestyle: Uncategorized
pagestyle: Preamble Commands
par: Uncategorized
paragraph: Sectioning Commands
paragraph*: Sectioning Commands
parbox: Uncategorized
parindent: Preamble Commands
parskip: Preamble Commands
part: Sectioning Commands
part*: Sectioning Commands
partial: Uncategorized
perp: Uncategorized
phi: Uncategorized
Phi: Uncategorized
pi: Uncategorized
Pi: Uncategorized
picture: Environments
pm: Uncategorized
pointexclamation: French Commands
pointinterrogation: French Commands
pointvirgule: French Commands
possessivecite: Harvard Commands
prec: Uncategorized
primo: French Commands
printindex: Uncategorized
prod: Uncategorized
prod: Uncategorized
propto: Uncategorized
protect: Uncategorized
providecommand: Preamble Commands
ps: Letter Commands
psfig: Uncategorized
psfrag: Uncategorized
psi: Uncategorized
Psi: Uncategorized

Q
qquad: Uncategorized
quad: Uncategorized
quarto: French Commands
quotation: Environments
quote: Environments

R
r: Special Characters
raggedbottom: Preamble Commands
raggedright: Basic Commands
raisebox: Uncategorized
rangle: Uncategorized
rawhtml: Environments
rceil: Uncategorized
Re: Uncategorized
ref: Uncategorized
Ref: HyperLatex Commands
refstepcounter: Uncategorized
renewcommand: Preamble Commands
renewenvironment: Preamble Commands
renewtheorem: Preamble Commands
resizebox: Preamble Commands
resizebox*: Preamble Commands
rfloor: Uncategorized
rfoot: Preamble Commands
rhead: Preamble Commands
rho: Uncategorized
right: Uncategorized
Rightarrow: Uncategorized
rightarrow: Uncategorized
rightharpoonup: Uncategorized
rightleftarrows: Uncategorized
rightleftharpoons: Uncategorized
rightrightarrows: Uncategorized
rm: Font Commands
rm: Environments
rmfamily: Font Commands
rmfamily: Environments
Roman: Uncategorized
roman: Uncategorized
rq: French Commands
rqq: French Commands
rule: Uncategorized

S
S: HyperLatex Commands
samepage: Uncategorized
savebox: Uncategorized
sbox: Uncategorized
sc: Font Commands
sc: Environments
scfamily: Font Commands
scriptsize: Font Commands
scshape: Font Commands
scshape: Environments
searrow: Uncategorized
section: Sectioning Commands
section*: Sectioning Commands
secundo: French Commands
setbox: Uncategorized
setcounter: Preamble Commands
setlength: Preamble Commands
settowidth: Uncategorized
sf: Font Commands
sf: Environments
sffamily: Font Commands
sffamily: Environments
shortcite: Apacite Commands
shortcite: AuthorDate Commands
shortciteA: Apacite Commands
shortciteauthor: Apacite Commands
shortciteNP: Apacite Commands
sigma: Uncategorized
Sigma: Uncategorized
signature: Preamble Commands
signature: Letter Commands
sim: Uncategorized
simeq: Uncategorized
sl: Font Commands
sl: Environments
SLiTeX: Logos
sloppypar: Environments
slshape: Font Commands
slshape: Environments
small: Font Commands
small: Environments
smallskip: Uncategorized
spadesuit: Uncategorized
sqrt: Uncategorized
ssmall: Font Commands
stackrel: Uncategorized
stepcounter: Uncategorized
stretch: Uncategorized
subparagraph: Sectioning Commands
subparagraph*: Sectioning Commands
subsection: Sectioning Commands
subsection*: Sectioning Commands
subset: Uncategorized
subseteq: Uncategorized
subsubsection: Sectioning Commands
subsubsection*: Sectioning Commands
succ: Uncategorized
sum: Uncategorized
sum: Uncategorized
superieura: French Commands
supset: Uncategorized
supseteq: Uncategorized
surd: Uncategorized
swarrow: Uncategorized

T
tabbing: Environments
table: Environments
table*: Environments
tableofcontents: Uncategorized
tabular: Environments
tabular*: Environments
tau: Uncategorized
tertio: French Commands
TeX: Logos
textalpha: Uncategorized
textbeta: Uncategorized
textbf: Font Commands
textbullet: Uncategorized
textchi: Uncategorized
textcolor: Uncategorized
textDelta: Uncategorized
textdelta: Uncategorized
textellipsis: Uncategorized
textepsilon: Uncategorized
texteta: Uncategorized
textfont: Font Commands
textGamma: Uncategorized
textgamma: Uncategorized
textheight: Preamble Commands
textiota: Uncategorized
textit: Font Commands
textkappa: Uncategorized
textLambda: Uncategorized
textlambda: Uncategorized
textmd: Font Commands
textmu: Uncategorized
textnormal: Font Commands
textnu: Uncategorized
textOmega: Uncategorized
textomega: Uncategorized
textperiodcentered: Uncategorized
textPhi: Uncategorized
textphi: Uncategorized
textPi: Uncategorized
textpi: Uncategorized
textPsi: Uncategorized
textpsi: Uncategorized
textrm: Font Commands
textsc: Font Commands
textsf: Font Commands
textSigma: Uncategorized
textsigma: Uncategorized
textsl: Font Commands
textsubscript: Uncategorized
textsuperscript: Uncategorized
textTau: Uncategorized
texttau: Uncategorized
textTheta: Uncategorized
texttheta: Uncategorized
texttt: Font Commands
textup: Font Commands
textwidth: Preamble Commands
textXi: Uncategorized
textxi: Uncategorized
textzeta: Uncategorized
thanks: Uncategorized
the: Basic Commands
thebibliography: Environments
theendnotes: Preamble Commands
theindex: Environments
thepage: Preamble Commands
therefore: Uncategorized
Theta: Uncategorized
theta: Uncategorized
thispagestyle: Preamble Commands
tikzpicture: Uncategorized
tilde: Special Characters
times: Uncategorized
tiny: Font Commands
title: Uncategorized
titlepage: Environments
to: Uncategorized
today: Basic Commands
topmargin: Preamble Commands
triangleleft: Uncategorized
triangleright: Uncategorized
tt: Font Commands
tt: Environments
ttfamily: Font Commands
ttfamily: Environments
twocolumn: Uncategorized
typeaout: Uncategorized
Typein: Uncategorized
typein: Uncategorized
typeout: Uncategorized

U
u: Special Characters
underbar: Font Commands
underline: Font Commands
up: French Commands
Uparrow: Uncategorized
uparrow: Uncategorized
updownarrow: Uncategorized
Updownarrow: Uncategorized
upshape: Font Commands
upsilon: Uncategorized
Upsilon: Uncategorized
url: Uncategorized
usebox: Uncategorized
usepackage: Preamble Commands
usepackage [options] {acronym}: Acronym Commands
uv: Czech Commands

V
v: Special Characters
value: Uncategorized
varepsilon: Uncategorized
varnothing: Uncategorized
varphi: Uncategorized
varpi: Uncategorized
varpropto: Uncategorized
varsigma: Uncategorized
vartheta: Uncategorized
vbox: Uncategorized
vcenter: Basic Commands
vdots: Uncategorized
vec: Special Characters
vee: Uncategorized
verb: Uncategorized
verb*: Uncategorized
verbatim: Environments
Verbatim: Environments
verbositylevel: Preamble Commands
verse: Environments
voffset: Preamble Commands
vref: Uncategorized
vsize: Uncategorized
vskip: Uncategorized
vspace: Uncategorized
vspace*: Uncategorized

W
wedge: Uncategorized
wp: Uncategorized

X
xi: Uncategorized
Xi: Uncategorized
xlink: HyperLatex Commands

Z
zeta: Uncategorized

Jump to:   \  
A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W   X   Z  

10 Concept Index

Jump to:   %  
A   B   C   D   E   F   G   H   I   L   M   N   P   R   S   T  
Index Entry  Section

%
%latex2rtf: Conditional Parsing

A
APA Support: APA Support
apacite: Cross References
apalike: Cross References
apanat1b: Cross References
authordate: Cross References

B
babel: Language Support
bibliography: Cross References
bibliography, apacite: Cross References
bibliography, apalike: Cross References
bibliography, apanat1b: Cross References
bibliography, authordate: Cross References
bibliography, BibTeX: Cross References
bibliography, harvard: Cross References
bibliography, natbib: Cross References
BibTeX: Cross References

C
Conditional Parsing: Conditional Parsing
Copyright issues: History

D
direct.cfg: Input Processing
double spacing: Page Formatting

E
equations: Equations

F
footnotes: Cross References

G
geometry package: Page Formatting
graphics: Graphics

H
harvard: Cross References
History of the program: History
hyperlatex: Hyperlatex

I
iflatextortf: Conditional Parsing
ignore.cfg: Input Processing
index: Cross References
input processing: Input Processing
installation: Installation

L
language support: Language Support
line spacing: Page Formatting

M
margins: Page Formatting
math: Math and Special Symbols

N
natbib: Cross References

P
page formatting: Page Formatting
pagestyles: Pagestyles

R
RTF sucks: Introduction

S
setspace package: Page Formatting
special symbols: Math and Special Symbols

T
tables: Tables

Jump to:   %  
A   B   C   D   E   F   G   H   I   L   M   N   P   R   S   T  

Table of Contents


latex2rtf-2.3.18/doc/footer.html0000777000175000017500000000041113050672354016655 0ustar wilfriedwilfried Get LaTeX to RTF converter at SourceForge
latex2rtf-2.3.18/README.Solaris0000777000175000017500000000063313050672360016222 0ustar wilfriedwilfriedSun make does not work. Use gmake instead. Sun has decided to support the XPG4 standard on Solaris by an alternative set of binaries. So to get make check to work, change the first line of latex2png to: #!/usr/xpg4/bin/sh -- Rodney Sparapani Medical College of Wisconsin Sr. Biostatistician Patient Care & Outcomes Research rsparapa@mcw.edu http://www.mcw.edu/pcor latex2rtf-2.3.18/graphics.h0000777000175000017500000000132413050672360015676 0ustar wilfriedwilfried#ifndef _INCLUDED_GRAPHICS_H #define _INCLUDED_GRAPHICS_H 1 #define FIGURE_INCLUDEGRAPHICS 1 #define FIGURE_EPSFFILE 2 #define FIGURE_EPSFBOX 3 #define FIGURE_BOXEDEPSF 4 #define FIGURE_PSFIG 5 typedef enum {BITMAP, EPS} conversion_t; void PrepareDisplayedBitmap(char *the_type); void FinishDisplayedBitmap(void); void WriteLatexAsBitmapOrEPS(char *pre, char *eq, char *post, conversion_t convertTo); void CmdGraphics(int code); void CmdPicture(int code); void CmdPsPicture(int code); void CmdPsGraph(int code); void CmdMusic(int code); void CmdTikzPicture(int code); void CmdTikzlib(int code); void CmdPsset(int code); void CmdNewPsStyle(int code); void CmdGraphicsPath(int code); #endif latex2rtf-2.3.18/vms_make.com0000777000175000017500000002170013050672360016227 0ustar wilfriedwilfried$! Compile and link latex2rtf under OpenVMS $! $! In case of problems with the install you might contact me at $! zinser@zinser.no-ip.info (preferred) or zinser@sysdev.deutsche-boerse.de $! $!------------------------------------------------------------------------------ $! $! Define some general constants $! $ true = 1 $ false = 0 $ tmpnam = "temp_" + f$getjpi("","pid") $ tc = tmpnam + ".c" $ prognam = "Latex2rtf" $ its_decc = false $ its_vaxc = false $ its_gnuc = false $ ccopt = "" $ lopts = "" $ allcdef = "" $ linkonly = false $ its_vax = f$getsyi("cpu") .lt. 128 $ need_x11vms = false $! $ gosub check_opts $! $ open/write optf 'prognam'.opt $ open/write topt tmp.opt $ gosub check_compiler $ close topt $! $ if its_decc .and. its_vax then ccopt = "/DECC" + ccopt $ $ cdef = "NEED_SNPRINTF" $ gosub check_cc_def $ if (need_x11vms) $ then $ gosub check_create_vmslib $ i = 0 $LDEFLOOP: $ lldef = f$element(i,"\",libdefs) $ if lldef .nes. "\" $ then $ allcdef = allcdef + lldef $ i = i + 1 $ goto ldefloop $ endif $ ccopt = ccopt + "/define=(''allcdef')" $ endif $FLOOP: $ CSRC = f$search("*.c") $ if csrc .nes. "" $ then $ fname = f$parse(csrc,,,"name") $ write optf fname, ".obj" $ if linkonly then goto floop $ cfname = f$parse(csrc,,,"name") + f$parse(csrc,,,"type") $ write sys$output "Compiling ", cfname $ cc 'ccopt' 'cfname' $ goto floop $ endif $ close optf $ write sys$output "Linking ''prognam'..." $ if f$search("lib.opt").nes. "" then copy 'prognam'.opt,lib.opt 'prognam'.opt $ link/exe='prognam'.exe 'lopts' 'prognam'.opt/opt $ exit $CC_ERR: $ write sys$output "C compiler required to build ''prognam'" $ goto err_exit $ERR_EXIT: $ set message/facil/ident/sever/text $ close/nolog optf $ close/nolog aconf_in $ close/nolog aconf $ close/nolog tmpc $ write sys$output "Exiting..." $ exit 2 $!------------------------------------------------------------------------------ $! $! Look for the compiler used $! $CHECK_COMPILER: $ if (.not. (its_decc .or. its_vaxc .or. its_gnuc)) $ then $ its_decc = (f$search("SYS$SYSTEM:DECC$COMPILER.EXE") .nes. "") $ its_vaxc = .not. its_decc .and. (F$Search("SYS$System:VAXC.Exe") .nes. "") $ its_gnuc = .not. (its_decc .or. its_vaxc) .and. (f$trnlnm("gnu_cc") .nes. "") $ endif $! $! Exit if no compiler available $! $ if (.not. (its_decc .or. its_vaxc .or. its_gnuc)) $ then goto CC_ERR $ else $ if its_decc $ then $ write sys$output "CC compiler check ... Compaq C" $ else $ if its_vaxc then write sys$output "CC compiler check ... VAX C" $ if its_gnuc then write sys$output "CC compiler check ... GNU C" $ if f$trnlnm(topt) then write topt "sys$share:vaxcrtl.exe/share" $ if f$trnlnm(optf) then write optf "sys$share:vaxcrtl.exe/share" $ endif $ endif $ return $!------------------------------------------------------------------------------ $! $! Check command line options and set symbols accordingly $! $ CHECK_OPTS: $ i = 1 $ OPT_LOOP: $ if i .lt. 9 $ then $ cparm = f$edit(p'i',"upcase") $ if cparm .eqs. "DEBUG" $ then $ ccopt = ccopt + "/noopt/deb" $ lopts = lopts + "/deb" $ endif $ if f$locate("CCOPT=",cparm) .lt. f$length(cparm) $ then $ start = f$locate("=",cparm) + 1 $ len = f$length(cparm) - start $ ccopt = ccopt + f$extract(start,len,cparm) $ endif $ if cparm .eqs. "LINK" then linkonly = true $ if f$locate("LOPTS=",cparm) .lt. f$length(cparm) $ then $ start = f$locate("=",cparm) + 1 $ len = f$length(cparm) - start $ lopts = lopts + f$extract(start,len,cparm) $ endif $ if f$locate("CC=",cparm) .lt. f$length(cparm) $ then $ start = f$locate("=",cparm) + 1 $ len = f$length(cparm) - start $ cc_com = f$extract(start,len,cparm) if (cc_com .nes. "DECC") .and. - (cc_com .nes. "VAXC") .and. - (cc_com .nes. "GNUC") $ then $ write sys$output "Unsupported compiler choice ''cc_com' ignored" $ write sys$output "Use DECC, VAXC, or GNUC instead" $ else $ if cc_com .eqs. "DECC" then its_decc = true $ if cc_com .eqs. "VAXC" then its_vaxc = true $ if cc_com .eqs. "GNUC" then its_gnuc = true $ endif $ endif $ i = i + 1 $ goto opt_loop $ endif $ return $!------------------------------------------------------------------------------ $! $! Check if this is a define relating to the properties of the C/C++ $! compiler $! $CHECK_CC_DEF: $ if (cdef .eqs. "NEED_SNPRINTF") $ then $ copy sys$input: 'tc $ deck #include int main(){ char test[10]; snprintf(test,6,"%s","hello"); } $ eod $ test_inv = false $ gosub cc_prop_check $ return $ endif $ return $!------------------------------------------------------------------------------ $! $! Check for properties of C/C++ compiler $! $! Version history $! 0.01 20031020 First version to receive a number $! 0.02 20031022 Added logic for defines with value $CC_PROP_CHECK: $ cc_prop = true $ is_need = false $ is_need = (f$extract(0,4,cdef) .eqs. "NEED") .or. (test_inv .eq. true) $ set message/nofac/noident/nosever/notext $ on error then continue $ cc 'tmpnam' $ if .not. ($status) then cc_prop = false $ on error then continue $! The headers might lie about the capabilities of the RTL $ link 'tmpnam',tmp.opt/opt $ if .not. ($status) then cc_prop = false $ set message/fac/ident/sever/text $ on error then goto err_exit $ delete/nolog 'tmpnam'.*;* $ if (cc_prop .and. .not. is_need) .or. - (.not. cc_prop .and. is_need) $ then $ write sys$output "Checking for ''cdef'... yes" $ allcdef = allcdef + cdef + "," $ need_x11vms = true $ else $ write sys$output "Checking for ''cdef'... no" $ endif $ return $!------------------------------------------------------------------------------ $! $! Take care of driver file with information about external libraries $! $CHECK_CREATE_VMSLIB: $! $ if f$search("VMSLIB.DAT") .eqs. "" $ then $ type/out=vmslib.dat sys$input ! ! This is a simple driver file with information used by vms_make.com to ! check if external libraries (like t1lib and freetype) are available on ! the system. ! ! Layout of the file: ! ! - Lines starting with ! are treated as comments ! - Elements in a data line are separated by # signs ! - The elements need to be listed in the following order ! 1.) Name of the Library (only used for informative messages ! from vms_make.com) ! 2.) Location where the object library can be found ! 3.) Location where the include files for the library can be found ! 4.) Include file used to verify library location ! 5.) CPP define to pass to the build to indicate availability of ! the library ! ! Example: The following lines show how definitions ! might look like. They are site specific and the locations of the ! library and include files need almost certainly to be changed. ! ! Location: All of the libaries can be found at the following addresses ! ! Xvmsutils: http://www.no-ip.info/vms/sw/xvmsutils.htmlx ! !X11VMS # pubbin:x11vmsshr.exe # x11vms: # vmsutil.h # HAVE_X11VMS $ write sys$output "New driver file vmslib.dat created." $ write sys$output "Please customize libary locations for your site" $ write sys$output "and afterwards re-execute vms_make.com" $ write sys$output "Exiting..." $ close/nolog optf $ exit $ endif $! $! Init symbols used to hold CPP definitons and include path $! $ libdefs = "" $ libincs = "" $! $! Open data file with location of libraries $! $ open/write lopt lib.opt $ open/read/end=end_lib/err=err_lib libdata VMSLIB.DAT $LIB_LOOP: $ read/end=end_lib libdata libline $ libline = f$edit(libline, "UNCOMMENT,COLLAPSE") $ if libline .eqs. "" then goto LIB_LOOP ! Comment line $ libname = f$edit(f$element(0,"#",libline),"UPCASE") $ write sys$output "Processing ''libname' setup ..." $ libloc = f$element(1,"#",libline) $ libsrc = f$element(2,"#",libline) $ testinc = f$element(3,"#",libline) $ cppdef = f$element(4,"#",libline) $ old_cpp = f$locate("=1",cppdef) $ if old_cpp.lt.f$length(cppdef) then cppdef = f$extract(0,old_cpp,cppdef) $ if f$search("''libloc'").eqs. "" $ then $ write sys$output "Can not find library ''libloc' - Skipping ''libname'" $ goto LIB_LOOP $ endif $ libsrc_elem = 0 $ libsrc_found = false $LIBSRC_LOOP: $ libsrcdir = f$element(libsrc_elem,",",libsrc) $ if (libsrcdir .eqs. ",") then goto END_LIBSRC $ if f$search("''libsrcdir'''testinc'") .nes. "" then libsrc_found = true $ libsrc_elem = libsrc_elem + 1 $ goto LIBSRC_LOOP $END_LIBSRC: $ if .not. libsrc_found $ then $ write sys$output "Can not find includes at ''libsrc' - Skipping ''libname'" $ goto LIB_LOOP $ endif $ if (cppdef .nes. "") then libdefs = libdefs + cppdef + "\" $ libincs = libincs + "," + libsrc $ lqual = "/lib" $ libtype = f$edit(f$parse(libloc,,,"TYPE"),"UPCASE") $ if f$locate("EXE",libtype) .lt. f$length(libtype) then lqual = "/share" $ write lopt libloc , lqual $ if (f$trnlnm("topt") .nes. "") then write topt libloc , lqual $ goto LIB_LOOP $END_LIB: $ close libdata $ close lopt $ returnlatex2rtf-2.3.18/fields.h0000777000175000017500000000074013050672360015345 0ustar wilfriedwilfried#define FIELD_EQ 1 #define FIELD_REF 2 #define FIELD_SYMBOL 3 #define FIELD_PAGE 4 #define FIELD_PAGE_REF 5 #define FIELD_COMMENT 6 void startField(int type); void endCurrentField(void); void endAllFields(void); void fprintfRTF_field_separator(void); void set_field_separator(char c); void set_fields_use_REF(int i); int fields_use_REF(void); void set_fields_use_EQ(int i); int fields_use_EQ(void); int processing_fields(void); int EQ_field_active(void); latex2rtf-2.3.18/README.VMS0000777000175000017500000000276213050672360015260 0ustar wilfriedwilfriedInstallation Just execute @vms_make to build the program. This checks if a C compiler is installed and will exit with an error message if none can be found. Build options VMS_make.com currently accepts the following options in arbitrary order: DEBUG Build the program with debug information and without optimization. lopts= Options to pass to the link command e.g. lopts=/traceback ccopt= Options to pass to the C compiler e.g. ccopt=/float=ieee LINK Do not compile, just link Latex2RTF. CC= Force usage of the given C compiler over the intrinsic selection (which is DEC C, VAX C, and finally GNU C). In case you are on an OpenVMS version prior to 7.3-2 you will need a copy of the Xvmsutils (http://zinser.no-ip.info/vms/sw/xvmstuils.htmlx) library. The procedure will check if or if not this is required and create a config file you need to customize in case it is. Environment The operation of Latex2RTF is governed by a number of configuration files, which the program tries to locate using the following logical names: L2RCFGDIR This logical should point to the system wide configuration files. RTFPATH This logical should point to user customized configuration files, which the particular user wants to use on a regular basis. Additional for specific customisations you may use the "-P path" commandline qualifier while invoking Latex2RTF A reasonable set of standard configuration files may be found in the [.cfg] subdirectory. latex2rtf-2.3.18/README.OSX0000777000175000017500000000400213050672360015251 0ustar wilfriedwilfriedlatex2rtf is a translator program that translates LaTeX formatted documents into RTF formatted files. RTF (Rich Text Format) is a common mark-up used by various text processors, most notably Word. For the Copyright of the Program see the file Copyright. latex2rtf does not require a TeX implementation, nor does it require that ImageMagick be installed. However, latex2rtf does make use of the auxilary files created by LaTeX and BibTeX --- specifically the .aux and .bbl files if they are available. Latex2rtf will convert equations to bitmaps with the right set of options. This facility requires that both a working TeX implementation as well as a working installation of ImageMagick. Finally, translation of figures is greatly facilitated by the presence of ImageMagick. To install (on a UNIX system) - Make sure that you have installed the developer tools for your system - Edit Makefile for your local configuration. The default install is reasonable, but if you do not have root access, then you might need to set $PREFIX to be your home directory. - make - If this is not your first-time installation, you may want to preserve your old configuration (*.cfg) files. Copy them to a safe place before installing. - make check (expect warnings but no errors) - make install If all this is too much trouble, you can install using fink http://fink.sourceforge.net/ or as an i-installer package http://www.rna.nl/ii.html Reporting bugs to the homepage at Sourceforge http://sourceforge.net/projects/latex2rtf/ * Please verify your bug with the most recent version of the program. * Please provide the version of the program you are using * Please provide your operating system and version number * Provide a short latex file that exhibits the bug. It is imperative that you spend time isolating the problem into a small latex file. This shows that you actually care enough about the problem to spend some of your time trying to help isolate the bug. * Be patient. Provide patches. Enjoy. latex2rtf-2.3.18/encodings.h0000777000175000017500000000145613050672360016055 0ustar wilfriedwilfried#ifndef _ENCODINGS_INCLUDED #define _ENCODINGS_INCLUDED 1 enum { ENCODING_CMR = 1, ENCODING_CMTT, ENCODING_437, ENCODING_850, ENCODING_852, ENCODING_855, ENCODING_857, ENCODING_865, ENCODING_866, ENCODING_1250, ENCODING_1251, ENCODING_1252, ENCODING_1253, ENCODING_APPLE, ENCODING_APPLE_CE, ENCODING_APPLE_CYRILLIC, ENCODING_DEC, ENCODING_KOI8_R, ENCODING_KOI8_U, ENCODING_LATIN_2, ENCODING_LATIN_3, ENCODING_LATIN_4, ENCODING_LATIN_5, ENCODING_LATIN_9, ENCODING_LATIN_10, ENCODING_NEXT, ENCODING_OT2, ENCODING_RAW, ENCODING_T2A, ENCODING_T2B, ENCODING_UTF8 }; void CmdOT2Transliteration(int cThis); void CmdChar(int code); void WriteEightBitChar(unsigned char cThis, FILE *f); #endif latex2rtf-2.3.18/convert.h0000777000175000017500000000013713050672360015557 0ustar wilfriedwilfriedvoid ConvertString(const char *string); void ConvertAllttString(char *s); void Convert(void); latex2rtf-2.3.18/preparse.h0000777000175000017500000000007113050672360015715 0ustar wilfriedwilfriedvoid preParse(char **body, char **header, char **label); latex2rtf-2.3.18/fonts.c0000777000175000017500000006645213050672355015243 0ustar wilfriedwilfried /* l2r_fonts.c - LaTeX commands that alter font size, style, or face Copyright (C) 2001-2002 The Free Software Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. This file is available from http://sourceforge.net/projects/latex2rtf/ Authors: 2001-2002 Scott Prahl */ /* All changes to font size, font style, and font face are handled in this file. Explicit changing of font characteristics should not be done elsewhere. Font handling in LaTeX uses five independent parameters * Font encoding --- OT1, OT * Font family --- roman, typewriter, sans serif * Font size --- normal, large, ... * Font shape --- upright, italics, small caps * Font series --- medium, bold Font changes in LaTeX use commands that fall into three categories. commands that are independent of the previous state, e.g., {\sc before {\it some text}} will typeset in "some text" in italics commands that add to the previous state {\sc before \textit{some text}} will typeset "some text" in italic small caps (if available) commands that are affected by the previous state {\it before \emph{some text}} will typeset "some text" in an upright font RTF has no commands to directly emulate this third type of command. The first type is readily simulated by resetting the font properties before setting the desired setting. The second type of command is the normal way that RTF handles fonts, and therefore is not a problem. Limiting the extent of font changes is handled by braces in the RTF file. This leads to the following problem, \textit{some text {\em roman text} more italic text {\em more roman text}} which should be translated to {\i some text {\i0 roman text} more italic text {\i0 more roman text}} when \em is encountered by latex2rtf, the extent of the emphasis is unknown: it may continue to the next brace, it may continue to the end of an environment \end{center}, or it may continue to the end of the document. In the example above, the text will be reset to italics by the first closing brace. This is easy, but the problem is that the at the next \em, it is necessary to know that the font has been changed back. Consequently, it is necessary to know the current latex font setting *for each RTF brace level*. The easiest way to do this is to filter everything fprintf'ed to the RTF file */ #include #include #include #include "main.h" #include "convert.h" #include "fonts.h" #include "funct1.h" #include "commands.h" #include "cfg.h" #include "parser.h" #include "stack.h" #include "vertical.h" typedef struct RtfFontInfoType { int family; int shape; int series; int size; int encoding; } RtfFontInfoType; #define MAX_FONT_INFO_DEPTH 301 static RtfFontInfoType RtfFontInfo[MAX_FONT_INFO_DEPTH]; static int FontInfoDepth = 0; /**************************************************************************** * purpose: returns the RTF font number from an RTF font name example: RtfFontNumber("Times") ****************************************************************************/ int RtfFontNumber(const char *Fname) { ConfigEntryT **config_handle; char *font_type, *font_name; int font_id; diagnostics(6, "seeking=%s", Fname); config_handle = CfgStartIterate(); while ((config_handle = CfgNext(FONT_A, config_handle)) != NULL) { font_type = (char *) (*config_handle)->TexCommand; font_name = (char *) (*config_handle)->RtfCommand; font_id = (int ) (*config_handle)->original_id; diagnostics(6, "RTF font %d has name='%s' of type='%s'", font_id, font_name, font_type); if (strcmp(font_name, Fname) == 0) return font_id; } return TexFontNumber("Roman"); /* default font */ } int TexFontNumber(const char *Fname) /**************************************************************************** purpose: returns the RTF font number for a particular LaTeX font example: TexFontNumber("Roman") ****************************************************************************/ { ConfigEntryT **p; int number=0; if (strcmp(Fname,"CurrentFontSize")==0) return CurrentFontSize(); if (strcmp(Fname,"DefaultFontSize")==0) return DefaultFontSize(); p = SearchCfgEntry(Fname, FONT_A); if (p) number = (**p).original_id; diagnostics(6,"TexFontNumber for '%s' is %d", Fname, number); return number; } void CmdFontFamily(int code) /****************************************************************************** purpose: selects the appropriate font family F_FAMILY_ROMAN for \rmfamily F_FAMILY_ROMAN_1 for \rm F_FAMILY_ROMAN_2 for \textrm{...} F_FAMILY_ROMAN_3 for \begin{rmfamily} or \end{rmfamily} ******************************************************************************/ { char *s; int num, true_code; true_code = code & ~ON; diagnostics(6, "CmdFontFamily (before) depth=%d, family=%d, size=%d, shape=%d, series=%d", FontInfoDepth, RtfFontInfo[FontInfoDepth].family, RtfFontInfo[FontInfoDepth].size, RtfFontInfo[FontInfoDepth].shape, RtfFontInfo[FontInfoDepth].series); if (!(code & ON) && (true_code == F_FAMILY_CALLIGRAPHIC_3 || true_code == F_FAMILY_TYPEWRITER_3 || true_code == F_FAMILY_SANSSERIF_3 || true_code == F_FAMILY_ROMAN_3 || true_code == F_FAMILY_TYPEWRITER_4 || true_code == F_FAMILY_SANSSERIF_4 || true_code == F_FAMILY_ROMAN_4)) return; switch (true_code) { case F_FAMILY_SANSSERIF: case F_FAMILY_SANSSERIF_1: case F_FAMILY_SANSSERIF_2: case F_FAMILY_SANSSERIF_3: case F_FAMILY_SANSSERIF_4: num = TexFontNumber("Sans Serif"); break; case F_FAMILY_TYPEWRITER: case F_FAMILY_TYPEWRITER_1: case F_FAMILY_TYPEWRITER_2: case F_FAMILY_TYPEWRITER_3: case F_FAMILY_TYPEWRITER_4: num = TexFontNumber("Typewriter"); break; case F_FAMILY_CALLIGRAPHIC: case F_FAMILY_CALLIGRAPHIC_1: case F_FAMILY_CALLIGRAPHIC_2: case F_FAMILY_CALLIGRAPHIC_3: num = TexFontNumber("Calligraphic"); break; case F_FAMILY_ROMAN: case F_FAMILY_ROMAN_1: case F_FAMILY_ROMAN_2: case F_FAMILY_ROMAN_3: case F_FAMILY_ROMAN_4: default: num = TexFontNumber("Roman"); break; } switch (true_code) { case F_FAMILY_ROMAN: case F_FAMILY_SANSSERIF: case F_FAMILY_TYPEWRITER: case F_FAMILY_CALLIGRAPHIC: case F_FAMILY_ROMAN_3: case F_FAMILY_SANSSERIF_3: case F_FAMILY_TYPEWRITER_3: case F_FAMILY_CALLIGRAPHIC_3: fprintRTF("\\f%d ", num); break; case F_FAMILY_ROMAN_1: case F_FAMILY_SANSSERIF_1: case F_FAMILY_TYPEWRITER_1: case F_FAMILY_ROMAN_4: case F_FAMILY_SANSSERIF_4: case F_FAMILY_TYPEWRITER_4: fprintRTF("\\i0\\scaps0\\b0\\f%d ", num); break; case F_FAMILY_ROMAN_2: case F_FAMILY_SANSSERIF_2: case F_FAMILY_TYPEWRITER_2: case F_FAMILY_CALLIGRAPHIC_2: fprintRTF("{\\f%d ", num); s = getBraceParam(); ConvertString(s); free(s); fprintRTF("}"); break; } diagnostics(6, "CmdFontFamily (after) depth=%d, family=%d, size=%d, shape=%d, series=%d", FontInfoDepth, RtfFontInfo[FontInfoDepth].family, RtfFontInfo[FontInfoDepth].size, RtfFontInfo[FontInfoDepth].shape, RtfFontInfo[FontInfoDepth].series); } void CmdFontShape(int code) /**************************************************************************** purpose : sets the font to upright, italic, or small caps F_SHAPE_ITALIC for \itshape F_SHAPE_ITALIC_1 for \it F_SHAPE_ITALIC_2 for \textit{...} F_SHAPE_ITALIC_3 for \begin{itshape} F_SHAPE_ITALIC_4 for \begin{it} ****************************************************************************/ { int true_code = code & ~ON; diagnostics(5, "CmdFontShape (before) depth=%d, family=%d, size=%d, shape=%d, series=%d", FontInfoDepth, RtfFontInfo[FontInfoDepth].family, RtfFontInfo[FontInfoDepth].size, RtfFontInfo[FontInfoDepth].shape, RtfFontInfo[FontInfoDepth].series); /* \end{itshape}, \end{sc} ... */ if (!(code & ON) && (true_code == F_SHAPE_UPRIGHT_3 || true_code == F_SHAPE_ITALIC_3 || true_code == F_SHAPE_SLANTED_3 || true_code == F_SHAPE_CAPS_3 || true_code == F_SHAPE_ITALIC_4 || true_code == F_SHAPE_SLANTED_4 || true_code == F_SHAPE_CAPS_4)) return; switch (true_code) { case F_SHAPE_UPRIGHT: case F_SHAPE_UPRIGHT_3: fprintRTF("\\i0\\scaps0 "); break; case F_SHAPE_UPRIGHT_1: fprintRTF("\\i0\\scaps0\\b0 "); break; case F_SHAPE_UPRIGHT_2: fprintRTF("{\\i0\\b0\\scaps0 "); break; case F_SHAPE_SLANTED: case F_SHAPE_ITALIC: fprintRTF("\\scaps0\\i "); break; case F_SHAPE_SLANTED_1: case F_SHAPE_ITALIC_1: fprintRTF("\\scaps0\\b0\\i "); break; case F_SHAPE_SLANTED_2: case F_SHAPE_ITALIC_2: fprintRTF("{\\i "); break; case F_SHAPE_SLANTED_3: case F_SHAPE_ITALIC_3: fprintRTF("\\scaps0\\i "); break; case F_SHAPE_SLANTED_4: case F_SHAPE_ITALIC_4: fprintRTF("\\scaps0\\b0\\i "); break; case F_SHAPE_CAPS: case F_SHAPE_CAPS_3: fprintRTF("\\scaps "); break; case F_SHAPE_CAPS_1: case F_SHAPE_CAPS_4: fprintRTF("\\i0\\b0\\scaps "); break; case F_SHAPE_CAPS_2: fprintRTF("{\\scaps "); break; } if (true_code == F_SHAPE_UPRIGHT_2 || true_code == F_SHAPE_ITALIC_2 || true_code == F_SHAPE_SLANTED_2 || true_code == F_SHAPE_CAPS_2) { char *s; s = getBraceParam(); ConvertString(s); fprintRTF("}"); free(s); } diagnostics(5, "CmdFontShape (after) depth=%d, family=%d, size=%d, shape=%d, series=%d", FontInfoDepth, RtfFontInfo[FontInfoDepth].family, RtfFontInfo[FontInfoDepth].size, RtfFontInfo[FontInfoDepth].shape, RtfFontInfo[FontInfoDepth].series); } void CmdFontSeries(int code) /**************************************************************************** purpose : sets the font weight to medium or bold F_SERIES_BOLD for \bfseries ... F_SERIES_BOLD_1 for \bf ... F_SERIES_BOLD_2 for \textbf{...} F_SERIES_BOLD_3 for \begin{bfseries} ... \end{bfseries} ****************************************************************************/ { int true_code = code & ~ON; diagnostics(5, "CmdFontSeries (before) depth=%d, family=%d, size=%d, shape=%d, series=%d", FontInfoDepth, RtfFontInfo[FontInfoDepth].family, RtfFontInfo[FontInfoDepth].size, RtfFontInfo[FontInfoDepth].shape, RtfFontInfo[FontInfoDepth].series); /* either \end{bfseries} or \end{mdseries} */ if ((true_code == F_SERIES_MEDIUM_3 || true_code == F_SERIES_BOLD_3 || true_code == F_SERIES_BOLD_4) && !(code & ON)) return; if (getTexMode() == MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); switch (code) { case F_SERIES_MEDIUM_3: case F_SERIES_MEDIUM: fprintRTF("\\b0 "); break; case F_SERIES_MEDIUM_1: fprintRTF("\\i0\\scaps0\\b0 "); break; case F_SERIES_MEDIUM_2: fprintRTF("{\\b0 "); break; case F_SERIES_BOLD: case F_SERIES_BOLD_3: fprintRTF("\\b "); break; case F_SERIES_BOLD_1: case F_SERIES_BOLD_4: fprintRTF("\\i0\\scaps0\\b "); break; case F_SERIES_BOLD_2: fprintRTF("{\\b "); break; } if (true_code == F_SERIES_BOLD_2 || true_code == F_SERIES_MEDIUM_2) { char *s; s = getBraceParam(); ConvertString(s); fprintRTF("}"); free(s); } diagnostics(5, "CmdFontShape (after) depth=%d, family=%d, size=%d, shape=%d, series=%d", FontInfoDepth, RtfFontInfo[FontInfoDepth].family, RtfFontInfo[FontInfoDepth].size, RtfFontInfo[FontInfoDepth].shape, RtfFontInfo[FontInfoDepth].series); } void CmdFontSize(int code) /****************************************************************************** purpose : handles LaTeX commands that change the font size ******************************************************************************/ { int scaled_size; diagnostics(5, "CmdFontSize (before) depth=%d, family=%d, size=%d, shape=%d, series=%d", FontInfoDepth, RtfFontInfo[FontInfoDepth].family, RtfFontInfo[FontInfoDepth].size, RtfFontInfo[FontInfoDepth].shape, RtfFontInfo[FontInfoDepth].series); // if (getTexMode() == MODE_VERTICAL) // changeTexMode(MODE_HORIZONTAL); if (code == F_SMALLER) scaled_size = (int) (CurrentFontSize() / 1.2 + 0.5); else if (code == F_LARGER) scaled_size = (int) (CurrentFontSize() * 1.2 + 0.5); else scaled_size = (int) (code * DefaultFontSize() / 20.0 + 0.5); fprintRTF("\\fs%d ", scaled_size); diagnostics(5, "CmdFontSize (after) depth=%d, family=%d, size=%d, shape=%d, series=%d", FontInfoDepth, RtfFontInfo[FontInfoDepth].family, RtfFontInfo[FontInfoDepth].size, RtfFontInfo[FontInfoDepth].shape, RtfFontInfo[FontInfoDepth].series); } void CmdFontSizeEnviron(int code) /****************************************************************************** purpose: sets the font size e.g., \begin{small} ... \end{small} ******************************************************************************/ { int true_code = code & ~ON; diagnostics(6, "CmdFontSizeEnviron (before) depth=%d, family=%d, size=%d, shape=%d, series=%d", FontInfoDepth, RtfFontInfo[FontInfoDepth].family, RtfFontInfo[FontInfoDepth].size, RtfFontInfo[FontInfoDepth].shape, RtfFontInfo[FontInfoDepth].series); if (!(code & ON)) return; CmdFontSize(true_code); diagnostics(6, "CmdFontSizeEnviron (after) depth=%d, family=%d, size=%d, shape=%d, series=%d", FontInfoDepth, RtfFontInfo[FontInfoDepth].family, RtfFontInfo[FontInfoDepth].size, RtfFontInfo[FontInfoDepth].shape, RtfFontInfo[FontInfoDepth].series); } void CmdEmphasize(int code) /**************************************************************************** purpose: LaTeX commands \em, \emph, and \begin{em} ... \end{em} the \emph{string} construction is handled by \textit{string} or \textup{string} {\em string} should be properly localized by brace mechanisms \begin{em} ... \end{em} will be localized by environment mechanisms F_EMPHASIZE_1 for \em ... F_EMPHASIZE_2 for \emph{...} F_EMPHASIZE_3 for \begin{em} ... \end{em} ******************************************************************************/ { int true_code = code & ~ON; diagnostics(5, "CmdEmphasize (before) depth=%d, family=%d, size=%d, shape=%d, series=%d", FontInfoDepth, RtfFontInfo[FontInfoDepth].family, RtfFontInfo[FontInfoDepth].size, RtfFontInfo[FontInfoDepth].shape, RtfFontInfo[FontInfoDepth].series); if (getTexMode() == MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); if (true_code == F_EMPHASIZE_3 && !(code & ON)) return; if (true_code == F_EMPHASIZE_2) { if (CurrentFontShape() == F_SHAPE_UPRIGHT) CmdFontShape(F_SHAPE_ITALIC_2); else CmdFontShape(F_SHAPE_UPRIGHT_2); } else { if (CurrentFontShape() == F_SHAPE_UPRIGHT) fprintRTF("\\i "); else fprintRTF("\\i0 "); } diagnostics(5, "CmdEmphasize (after) depth=%d, family=%d, size=%d, shape=%d, series=%d", FontInfoDepth, RtfFontInfo[FontInfoDepth].family, RtfFontInfo[FontInfoDepth].size, RtfFontInfo[FontInfoDepth].shape, RtfFontInfo[FontInfoDepth].series); } void CmdUnderline(int code) /**************************************************************************** purpose: handle \underline{text} ******************************************************************************/ { char *s; diagnostics(5, "Entering CmdUnderline"); if (getTexMode() == MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); fprintRTF("{\\ul "); s = getBraceParam(); ConvertString(s); free(s); fprintRTF("}"); diagnostics(5, "Exiting CmdUnderline"); } void CmdTextNormal(int code) /**************************************************************************** purpose: handle \textnormal{text} {\normalfont ...} commands F_TEXT_NORMAL for \normalfont ... F_TEXT_NORMAL_1 F_TEXT_NORMAL_2 for \textnormal{...} F_TEXT_NORMAL_3 for \begin{normalfont} ... \end{normalfont} ******************************************************************************/ { int true_code = code & ~ON; diagnostics(5, "CmdTextNormal (before) depth=%d, family=%d, size=%d, shape=%d, series=%d", FontInfoDepth, RtfFontInfo[FontInfoDepth].family, RtfFontInfo[FontInfoDepth].size, RtfFontInfo[FontInfoDepth].shape, RtfFontInfo[FontInfoDepth].series); if (true_code == F_TEXT_NORMAL_3 && !(code & ON)) return; if (getTexMode() == MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); if (code == F_TEXT_NORMAL_2) fprintRTF("{"); if (CurrentFontShape() != DefaultFontShape()) CmdFontShape(DefaultFontShape()); if (CurrentFontSeries() != DefaultFontSeries()) CmdFontSeries(DefaultFontSeries()); if (CurrentFontSize() != DefaultFontSize()) CmdFontSize(DefaultFontSize()); if (CurrentFontFamily() != DefaultFontFamily()) CmdFontFamily(DefaultFontFamily()); if (code == F_TEXT_NORMAL_2) { char *s; s = getBraceParam(); ConvertString(s); free(s); fprintRTF("}"); } diagnostics(5, "CmdTextNormal (after) depth=%d, family=%d, size=%d, shape=%d, series=%d", FontInfoDepth, RtfFontInfo[FontInfoDepth].family, RtfFontInfo[FontInfoDepth].size, RtfFontInfo[FontInfoDepth].shape, RtfFontInfo[FontInfoDepth].series); } static int strstart(const unsigned char *text, const char *str) /* returns true if text begins with str */ { while (*str && (*str == *text)) { str++; text++; } if (*str) return FALSE; else return TRUE; } static int strstartnum(const unsigned char *text, const char *str, int *num) /* returns true if text begins with str and followed by an integer*/ { const unsigned char *numptr; *num = 0; if (!strstart(text, str)) return FALSE; text += strlen(str); numptr = text; while (isdigit((int) *numptr)) { *num = (*num * 10) + (*numptr - '0'); numptr++; } if (numptr == text) return FALSE; else return TRUE; } void InitializeDocumentFont(int family, int size, int shape, int series, int encoding) /****************************************************************************** purpose: Initialize the basic font properties for a document pass -1 to avoid setting any parameter ******************************************************************************/ { if (size >= 0) RtfFontInfo[0].size = size; if (family >= 0) RtfFontInfo[0].family = family; if (shape >= 0) RtfFontInfo[0].shape = shape; if (series >= 0) RtfFontInfo[0].series = series; if (encoding >= 0) RtfFontInfo[0].encoding = encoding; diagnostics(5, "InitializeDocumentFont family=%d, size=%d, shape=%d, series=%d", RtfFontInfo[0].family, RtfFontInfo[0].size, RtfFontInfo[0].shape, RtfFontInfo[0].series); } int DefaultFontFamily(void) { diagnostics(5, "DefaultFontFamily -- family=%d", RtfFontInfo[0].family); return RtfFontInfo[0].family; } int DefaultFontSize(void) { diagnostics(5, "DefaultFontSize -- size=%d", RtfFontInfo[0].size); return RtfFontInfo[0].size; } int DefaultFontShape(void) { diagnostics(5, "DefaultFontShape -- shape=%d", RtfFontInfo[0].shape); return RtfFontInfo[0].shape; } int DefaultFontSeries(void) { diagnostics(5, "DefaultFontSeries -- series=%d", RtfFontInfo[0].series); return RtfFontInfo[0].series; } int DefaultFontEncoding(void) { diagnostics(6, "DefaultFontSeries -- series=%d", RtfFontInfo[0].encoding); return RtfFontInfo[0].encoding; } int CurrentFontFamily(void) /****************************************************************************** purpose: returns the current RTF family ******************************************************************************/ { diagnostics(5, "CurrentFontFamily -- family=%d", RtfFontInfo[FontInfoDepth].family); return RtfFontInfo[FontInfoDepth].family; } int CurrentFontShape(void) /****************************************************************************** purpose: returns the current RTF shape ******************************************************************************/ { diagnostics(5, "CurrentFontShape -- shape=%d", RtfFontInfo[FontInfoDepth].shape); return RtfFontInfo[FontInfoDepth].shape; } int CurrentFontSize(void) /****************************************************************************** purpose: returns the current RTF size in twips ******************************************************************************/ { diagnostics(5, "CurrentFontSize -- size=%d", RtfFontInfo[FontInfoDepth].size); return RtfFontInfo[FontInfoDepth].size; } int CurrentFontSeries(void) /****************************************************************************** purpose: returns the current RTF series ******************************************************************************/ { diagnostics(6, "CurrentFontSeries -- series=%d", RtfFontInfo[FontInfoDepth].series); return RtfFontInfo[FontInfoDepth].series; } int CurrentFontEncoding(void) /****************************************************************************** purpose: returns the current RTF encoding ******************************************************************************/ { diagnostics(6, "CurrentFontSeries -- encoding=%d", RtfFontInfo[FontInfoDepth].encoding); return RtfFontInfo[FontInfoDepth].encoding; } void CmdFontEncoding(int code) /****************************************************************************** purpose: sets the current RTF encoding ******************************************************************************/ { /* fprintf(stderr,"setting encoding from %d to %d\n",RtfFontInfo[FontInfoDepth].encoding,code);*/ RtfFontInfo[FontInfoDepth].encoding = code; diagnostics(6, "CurrentFontSeries -- encoding=%d", RtfFontInfo[FontInfoDepth].encoding); } void PushFontSettings(void) { if (FontInfoDepth == MAX_FONT_INFO_DEPTH) diagnostics(ERROR, "FontInfoDepth too large, cannot PushFontSettings()!"); RtfFontInfo[FontInfoDepth + 1].size = RtfFontInfo[FontInfoDepth].size; RtfFontInfo[FontInfoDepth + 1].family = RtfFontInfo[FontInfoDepth].family; RtfFontInfo[FontInfoDepth + 1].shape = RtfFontInfo[FontInfoDepth].shape; RtfFontInfo[FontInfoDepth + 1].series = RtfFontInfo[FontInfoDepth].series; RtfFontInfo[FontInfoDepth + 1].encoding = RtfFontInfo[FontInfoDepth].encoding; FontInfoDepth++; diagnostics(6, "PushFontSettings depth=%2d, family=%2d, size=%2d, shape=%2d, series=%2d, encoding=%2d", FontInfoDepth, RtfFontInfo[FontInfoDepth].family, RtfFontInfo[FontInfoDepth].size, RtfFontInfo[FontInfoDepth].shape, RtfFontInfo[FontInfoDepth].series, RtfFontInfo[FontInfoDepth].encoding); } void PopFontSettings(void) { if (FontInfoDepth == 0) diagnostics(WARNING, "FontInfoDepth = 0, cannot PopFontSettings()!"); FontInfoDepth--; diagnostics(6, "PopFontSettings depth=%2d, family=%2d, size=%2d, shape=%2d, series=%2d, encoding=%2d", FontInfoDepth, RtfFontInfo[FontInfoDepth].family, RtfFontInfo[FontInfoDepth].size, RtfFontInfo[FontInfoDepth].shape, RtfFontInfo[FontInfoDepth].series, RtfFontInfo[FontInfoDepth].encoding); } void MonitorFontChanges(const unsigned char *text) { int n; diagnostics(6, "\nMonitorFont %10s\n", text); diagnostics(6, "MonitorFont before depth=%d, family=%d, size=%d, shape=%d, series=%d", FontInfoDepth, RtfFontInfo[FontInfoDepth].family, RtfFontInfo[FontInfoDepth].size, RtfFontInfo[FontInfoDepth].shape, RtfFontInfo[FontInfoDepth].series); if (strstart(text, "\\b0")) RtfFontInfo[FontInfoDepth].series = F_SERIES_MEDIUM; else if (strstart(text, "\\b ") || strstart(text, "\\b\\")) RtfFontInfo[FontInfoDepth].series = F_SERIES_BOLD; else if (strstart(text, "\\i0")) { int mode=getTexMode(); if (mode==MODE_MATH || mode==MODE_DISPLAYMATH) RtfFontInfo[FontInfoDepth].shape = F_SHAPE_MATH_UPRIGHT; else RtfFontInfo[FontInfoDepth].shape = F_SHAPE_UPRIGHT; } else if (strstart(text, "\\i ") || strstart(text, "\\i\\")) RtfFontInfo[FontInfoDepth].shape = F_SHAPE_ITALIC; else if (strstart(text, "\\scaps0")){ int mode=getTexMode(); if (mode==MODE_MATH || mode==MODE_DISPLAYMATH) RtfFontInfo[FontInfoDepth].shape = F_SHAPE_MATH_UPRIGHT; else RtfFontInfo[FontInfoDepth].shape = F_SHAPE_UPRIGHT; } else if (strstart(text, "\\scaps ") || strstart(text, "\\scaps\\")) RtfFontInfo[FontInfoDepth].shape = F_SHAPE_CAPS; else if (strstartnum(text, "\\fs", &n)) RtfFontInfo[FontInfoDepth].size = n; else if (strstartnum(text, "\\f", &n)) RtfFontInfo[FontInfoDepth].family = n; else if (strstart(text, "\\plain")) { RtfFontInfo[FontInfoDepth].size = RtfFontInfo[0].size; RtfFontInfo[FontInfoDepth].family = RtfFontInfo[0].family; RtfFontInfo[FontInfoDepth].shape = RtfFontInfo[0].shape; RtfFontInfo[FontInfoDepth].series = RtfFontInfo[0].series; } diagnostics(6, "MonitorFont after depth=%d, family=%d, size=%d, shape=%d, series=%d", FontInfoDepth, RtfFontInfo[FontInfoDepth].family, RtfFontInfo[FontInfoDepth].size, RtfFontInfo[FontInfoDepth].shape, RtfFontInfo[FontInfoDepth].series); } latex2rtf-2.3.18/definitions.c0000777000175000017500000005324713050672354016422 0ustar wilfriedwilfried /* definitions.c - Routines to handle TeX \def and LaTeX \newcommand Copyright (C) 2001-2002 The Free Software Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. This file is available from http://sourceforge.net/projects/latex2rtf/ */ #include #include #include #include "main.h" #include "convert.h" #include "definitions.h" #include "parser.h" #include "funct1.h" #include "utils.h" #include "cfg.h" #include "counters.h" #include "funct1.h" #define MAX_DEFINITIONS 2000 #define MAX_ENVIRONMENTS 200 #define MAX_THEOREMS 200 typedef struct { char *name; char *opt_param; char *def; int params; } definition_type; definition_type Definitions[MAX_DEFINITIONS]; typedef struct { char *name; char *opt_param; char *begname; char *endname; char *begdef; char *enddef; int params; } environment_type; environment_type NewEnvironments[MAX_ENVIRONMENTS]; typedef struct { char *name; char *numbered_like; char *caption; char *within; } theorem_type; theorem_type NewTheorems[MAX_THEOREMS]; static int iDefinitionCount = 0; static int iNewEnvironmentCount = 0; static int iNewTheoremCount = 0; static int strequal(char *a, char *b) { if (a == NULL || b == NULL) return 0; while (*a && *b && *a == *b) { a++; b++; } if (*a || *b) return 0; else return 1; } /* static void printDefinitions(void) { int i=0; diagnostics(WARNING, "\n"); while(i < iDefinitionCount ) { diagnostics(WARNING, "[%d] name =<%s>\n",i, Definitions[i].name); diagnostics(WARNING, " opt_param=<%s>\n", Definitions[i].opt_param); diagnostics(WARNING, " def =<%s>\n", Definitions[i].def); diagnostics(WARNING, " params =<%d>\n", Definitions[i].params); i++; } } static void printTheorems(void) { int i=0; diagnostics(WARNING, "\n"); for (i=0; i< iNewTheoremCount; i++) { diagnostics(WARNING, "[%d] name =<%s>\n",i, NewTheorems[i].name); diagnostics(WARNING, " caption =<%s>\n", NewTheorems[i].caption); diagnostics(WARNING, " like =<%s>\n", NewTheorems[i].numbered_like); diagnostics(WARNING, " within =<%s>\n", NewTheorems[i].within); } } */ #define POUND_POUND 9997 static char *expandmacro(char *macro, char *opt_param, int params) /************************************************************************** purpose: retrieves and expands a defined macro care is taken to avoid buffer overruns **************************************************************************/ { int i = 0, param; char *args[9], *dmacro, *macro_piece, *next_piece, *expanded, *buffer=NULL, *cs; int buff_size = 512; /* extra slop for macro expansion */ diagnostics(5, "expandmacro..."); diagnostics(5, "expandmacro: contents '%s'", macro); diagnostics(5, "expandmacro: optional '%s'", opt_param); diagnostics(5, "expandmacro: num args %d", params); if (params <= 0) return strdup(macro); if (opt_param) { args[0] = getBracketParam(); if (!args[0]) args[0] = strdup(opt_param); buff_size += (int) strlen(args[0]); i = 1; } for (; i < params; i++) { args[i] = getBraceRawParam(); buff_size += strlen(args[i]); diagnostics(5, "Macro #%d --> '%s'", i + 1, args[i]); } dmacro = strdup(macro); macro_piece = dmacro; buff_size += (int) strlen(macro_piece); diagnostics(5, "expandmacro: buff_size = %d\n", buff_size); if(buff_size > 0) buffer = (char*) calloc(sizeof(char) * (buff_size+1), sizeof(char)); expanded = buffer; /* convert "\csname " but leave inital backslash */ while ((cs = strstr(dmacro, "\\csname ")) != NULL) my_strcpy(cs+1, cs + strlen("\\csname ")); while ((cs = strstr(dmacro, "\\csname")) != NULL) my_strcpy(cs+1, cs + strlen("\\csname")); /* remove "\endcsname" */ while ((cs = strstr(dmacro, "\\endcsname ")) != NULL) my_strcpy(cs, cs + strlen("\\endcsname ")); while ((cs = strstr(dmacro, "\\endcsname")) != NULL) my_strcpy(cs, cs + strlen("\\endcsname")); diagnostics(5, "expandmacro: after removing cs crap '%s'", macro_piece); /* do not use strtok because it may be used elsewhere */ while (macro_piece && *macro_piece) { param = -1; next_piece = strchr(macro_piece, '#'); if (next_piece) { *next_piece = '\0'; /* later we'll copy macro up to this point */ next_piece++; /* the only characters that should follow # are '1'-'9' and '#' */ if (*next_piece == '#') param = POUND_POUND; /* just a flag for below */ else param = *next_piece - '1'; next_piece++; } diagnostics(5, "expandmacro: next section of macro before '#' is '%s'", macro_piece); /* copy unchanged part of macro into expanded */ strcpy(expanded, macro_piece); expanded += strlen(macro_piece); diagnostics(5, "expandmacro: before appending next piece '%s'", buffer); if (param > -1) { if (param == POUND_POUND) { diagnostics(5, "expandmacro: found ##, appending # to expanded macro"); if (expanded+1 < buffer+buff_size) { *expanded='#'; expanded++; } else diagnostics(WARNING, "insufficient buffer to expand macro <%s>", macro); } else if (param < params) { diagnostics(5, "expandmacro: found #%d appending '%s'", param+1, args[param]); if (expanded+strlen(args[param])+1 ", macro); } else diagnostics(WARNING, "expandmacro: confusing definition in macro=<%s>", macro); } macro_piece = next_piece; } expanded = strdup(buffer); for (i = 0; i < params; i++) { if (args[i]) free(args[i]); } if (dmacro) free(dmacro); if (buffer) free(buffer); diagnostics(4, "expandmacro: result is '%s'", expanded); return expanded; } int maybeDefinition(char *s, size_t n) /************************************************************************** purpose: checks to see if a named TeX definition possibly exists returns: the array index of the named TeX definition **************************************************************************/ { int i; if (n == 0) return TRUE; for (i = 0; i < iDefinitionCount; i++) { /* char *ss = my_strndup(s,strlen(Definitions[i].name)); diagnostics(WARNING, "def seeking=<%s>, i=%d, current=<%s>", ss, i, Definitions[i].name); free(ss); */ if (strncmp(s, Definitions[i].name, n) == 0) return TRUE; } return FALSE; } int existsDefinition(char *s) /************************************************************************** purpose: checks to see if a named TeX definition exists returns: the array index of the named TeX definition **************************************************************************/ { int i; for (i = 0; i < iDefinitionCount; i++) { /* char *tt = my_strndup(s,strlen(Definitions[i].name)); diagnostics(WARNING, "def text has=<%s>, i=%d, trying=<%s>", tt, i, Definitions[i].name); free(tt); */ if (strcmp(s, Definitions[i].name) == 0) { /* char *ss = my_strndup(s,strlen(Definitions[i].name)); diagnostics(WARNING, "def text has=<%s>, i=%d, matched=<%s>", ss, i, Definitions[i].name); free(ss); */ break; } } if (i == iDefinitionCount) return -1; else return i; } void newDefinition(char *name, char *opt_param, char *def, int params) /************************************************************************** purpose: allocates and initializes a named TeX definition name should not begin with a '\' for example to define \hd, name = "hd" **************************************************************************/ { diagnostics(2, "Adding macro '%s' = [%s]", name, def); if (strcmp(name, "LaTeX") == 0) return; if (strcmp(name, "TeX") == 0) return; if (strcmp(name, "AmSTeX") == 0) return; if (strcmp(name, "BibTex") == 0) return; if (strcmp(name, "LaTeXe") == 0) return; if (strcmp(name, "AmSLaTeX") == 0) return; if (iDefinitionCount == MAX_DEFINITIONS) { diagnostics(WARNING, "Too many definitions, ignoring %s", name); return; } Definitions[iDefinitionCount].params = params; Definitions[iDefinitionCount].name = strdup(name); if (Definitions[iDefinitionCount].name == NULL) { diagnostics(ERROR, "\nCannot allocate name for definition \\%s\n", name); } if (opt_param) { Definitions[iDefinitionCount].opt_param = strdup(opt_param); if (Definitions[iDefinitionCount].opt_param == NULL) { diagnostics(ERROR, "\nCannot allocate opt_param for definition \\%s\n", name); } } else { Definitions[iDefinitionCount].opt_param = NULL; } Definitions[iDefinitionCount].def = strdup(def); if (Definitions[iDefinitionCount].def == NULL) { diagnostics(ERROR, "\nCannot allocate def for definition \\%s\n", name); } iDefinitionCount++; diagnostics(3, "Successfully added macro #%d", iDefinitionCount); } void renewDefinition(char *name, char *opt_param, char *def, int params) /************************************************************************** purpose: allocates (if necessary) and sets a named TeX definition **************************************************************************/ { int i; diagnostics(3, "renewDefinition seeking '%s'\n", name); i = existsDefinition(name); if (i < 0) { newDefinition(name, opt_param, def, params); diagnostics(2, "No existing definition for \\%s", name); } else { free(Definitions[i].def); if (Definitions[i].opt_param) free(Definitions[i].opt_param); Definitions[i].params = params; if (opt_param) { Definitions[i].opt_param = strdup(opt_param); if (Definitions[i].opt_param == NULL) { diagnostics(ERROR, "\nCannot allocate opt_param for definition \\%s\n", name); } } else { Definitions[i].opt_param = NULL; } Definitions[i].def = strdup(def); if (Definitions[i].def == NULL) { diagnostics(WARNING, "\nCannot allocate def for definition \\%s\n", name); exit(1); } } } char *expandDefinition(int thedef) /************************************************************************** purpose: retrieves and expands a \newcommand macro **************************************************************************/ { if (thedef < 0 || thedef >= iDefinitionCount) return NULL; diagnostics(4, "expandDefinition name =<%s>", Definitions[thedef].name); diagnostics(5, "expandDefinition opt_param=<%s>", (Definitions[thedef].opt_param) ? Definitions[thedef].opt_param : ""); diagnostics(5, "expandDefinition def =<%s>", Definitions[thedef].def); diagnostics(5, "expandDefinition params =<%d>", Definitions[thedef].params); return expandmacro(Definitions[thedef].def, Definitions[thedef].opt_param, Definitions[thedef].params); } int existsEnvironment(char *s) /************************************************************************** purpose: checks to see if a user created environment exists returns: the array index of the \newenvironment **************************************************************************/ { int i = 0; while (i < iNewEnvironmentCount && !strequal(s, NewEnvironments[i].name)) { diagnostics(6, "existsEnv seeking=<%s>, i=%d, current=<%s>", s, i, NewEnvironments[i].name); i++; } if (i == iNewEnvironmentCount) return -1; else { diagnostics(4, "user env found=<%s>, i=%d, current=<%s>", s, i, NewEnvironments[i].name); return i; } } int maybeEnvironment(char *s, size_t n) /************************************************************************** purpose: checks to see if a named TeX environment possibly exists returns: the array index of the named TeX definition **************************************************************************/ { int i; if (n == 0) return TRUE; for (i = 0; i < iNewEnvironmentCount; i++) { if (0) { char *ss = my_strndup(s,n); diagnostics(2, "trying env seeking=<%s>, i=%d, current=<%s>", ss, i, NewEnvironments[i].endname); free(ss); } if (strncmp(s, NewEnvironments[i].begname, n) == 0) { if (0) { char *ss = my_strndup(s,n); diagnostics(2, "possible env seeking=<%s>, i=%d, current=<%s>", ss, i, NewEnvironments[i].begname); free(ss); } return TRUE; } if (strncmp(s, NewEnvironments[i].endname, n) == 0) { if (0) { char *ss = my_strndup(s,n); diagnostics(2, "possible env seeking=<%s>, i=%d, current=<%s>", ss, i, NewEnvironments[i].endname); free(ss); } return TRUE; } } if (0) { char *ss = my_strndup(s,n); diagnostics(2, "failed all env seeking=<%s>", ss); free(ss); } return FALSE; } void newEnvironment(char *name, char *opt_param, char *begdef, char *enddef, int params) /************************************************************************** purpose: allocates and initializes a \newenvironment name should not begin with a '\' **************************************************************************/ { if (iNewEnvironmentCount == MAX_ENVIRONMENTS) { diagnostics(WARNING, "Too many newenvironments, ignoring %s", name); return; } NewEnvironments[iNewEnvironmentCount].name = strdup(name); NewEnvironments[iNewEnvironmentCount].begname = strdup_together("\\begin{", name); NewEnvironments[iNewEnvironmentCount].endname = strdup_together("\\end{", name); NewEnvironments[iNewEnvironmentCount].begdef = strdup(begdef); NewEnvironments[iNewEnvironmentCount].enddef = strdup(enddef); NewEnvironments[iNewEnvironmentCount].params = params; if (opt_param) { NewEnvironments[iNewEnvironmentCount].opt_param = strdup(opt_param); if (NewEnvironments[iNewEnvironmentCount].opt_param == NULL) { diagnostics(ERROR, "\nCannot allocate opt_param for \\newenvironment{%s}", name); } } else { NewEnvironments[iNewEnvironmentCount].opt_param = NULL; } if (NewEnvironments[iNewEnvironmentCount].name == NULL || NewEnvironments[iNewEnvironmentCount].begdef == NULL || NewEnvironments[iNewEnvironmentCount].begname == NULL || NewEnvironments[iNewEnvironmentCount].endname == NULL || NewEnvironments[iNewEnvironmentCount].enddef == NULL) { diagnostics(ERROR, "Cannot allocate memory for \\newenvironment{%s}", name); } iNewEnvironmentCount++; } void renewEnvironment(char *name, char *opt_param, char *begdef, char *enddef, int params) /************************************************************************** purpose: allocates and initializes a \renewenvironment **************************************************************************/ { int i; i = existsEnvironment(name); if (i < 0) { newEnvironment(name, opt_param, begdef, enddef, params); diagnostics(2, "No existing \\newevironment{%s}", name); } else { free(NewEnvironments[i].begdef); free(NewEnvironments[i].enddef); free(NewEnvironments[i].begname); free(NewEnvironments[i].endname); if (NewEnvironments[i].opt_param) free(NewEnvironments[i].opt_param); if (opt_param) { NewEnvironments[i].opt_param = strdup(opt_param); if (NewEnvironments[i].opt_param == NULL) { diagnostics(ERROR, "\nCannot allocate opt_param for \\renewenvironment{%s}", name); } } else { NewEnvironments[i].opt_param = NULL; } NewEnvironments[i].params = params; NewEnvironments[i].begdef = strdup(begdef); NewEnvironments[i].enddef = strdup(enddef); if (NewEnvironments[i].begdef == NULL || NewEnvironments[i].enddef == NULL) { diagnostics(ERROR, "Cannot allocate memory for \\renewenvironment{%s}", name); } } } char *expandEnvironment(int thedef, int code) /************************************************************************** purpose: retrieves and expands a \newenvironment **************************************************************************/ { char *s, *t; if (thedef < 0 || thedef >= iNewEnvironmentCount) return NULL; if (code == CMD_BEGIN) { diagnostics(3, "\\begin{%s} <%s>", NewEnvironments[thedef].name, NewEnvironments[thedef].begdef); s= expandmacro(NewEnvironments[thedef].begdef, NewEnvironments[thedef].opt_param, NewEnvironments[thedef].params); t = strdup_together("{",s); } else { diagnostics(3, "\\end{%s} <%s>", NewEnvironments[thedef].name, NewEnvironments[thedef].enddef); s = expandmacro(NewEnvironments[thedef].enddef, NULL, 0); t = strdup_together(s,"}"); } free(s); return t; } void newTheorem(char *name, char *caption, char *numbered_like, char *within) /************************************************************************** purpose: allocates and initializes a \newtheorem **************************************************************************/ { if (iNewTheoremCount == MAX_THEOREMS) { diagnostics(WARNING, "Too many \\newtheorems, ignoring %s", name); return; } NewTheorems[iNewTheoremCount].name = strdup(name); NewTheorems[iNewTheoremCount].caption = strdup(caption); if (numbered_like) NewTheorems[iNewTheoremCount].numbered_like = strdup(numbered_like); else NewTheorems[iNewTheoremCount].numbered_like = strdup(name); if (within) NewTheorems[iNewTheoremCount].within = strdup(within); else NewTheorems[iNewTheoremCount].within = NULL; setCounter(NewTheorems[iNewTheoremCount].numbered_like, 0); iNewTheoremCount++; } int existsTheorem(char *s) /************************************************************************** purpose: checks to see if a user created environment exists returns: the array index of the \newtheorem **************************************************************************/ { int i = 0; while (i < iNewTheoremCount && !strequal(s, NewTheorems[i].name)) { diagnostics(6, "seeking=<%s>, i=%d, current=<%s>", s, i, NewTheorems[i].name); i++; } if (i == iNewTheoremCount) return -1; else return i; } char *expandTheorem(int i, char *option) /************************************************************************** purpose: retrieves and expands a \newtheorem into a string **************************************************************************/ { char s[128], *num; int ithm; if (i < 0 || i >= iNewTheoremCount) return strdup(""); incrementCounter(NewTheorems[i].numbered_like); ithm = getCounter(NewTheorems[i].numbered_like); if (NewTheorems[i].within) { num = FormatUnitNumber(NewTheorems[i].within); if (option) snprintf(s, 128, "%s %s.%d (%s)", NewTheorems[i].caption, num, ithm, option); else snprintf(s, 128, "%s %s.%d", NewTheorems[i].caption, num, ithm); free(num); } else { if (option) snprintf(s, 128, "%s %d (%s)", NewTheorems[i].caption, ithm, option); else snprintf(s, 128, "%s %d", NewTheorems[i].caption, ithm); } return strdup(s); } void resetTheoremCounter(char *unit) /************************************************************************** purpose: resets theorem counters based on unit **************************************************************************/ { int i; for (i = 0; i < iNewTheoremCount; i++) { if (strequal(unit, NewTheorems[i].within)) setCounter(NewTheorems[i].numbered_like, 0); } } latex2rtf-2.3.18/counters.c0000777000175000017500000001050513664232741015742 0ustar wilfriedwilfried /* counters.c - Routines to access TeX variables that contain TeX counters Copyright (C) 2001-2002 The Free Software Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. This file is available from http://sourceforge.net/projects/latex2rtf/ */ #include #include #include "main.h" #include "utils.h" #include "counters.h" #define MAX_COUNTERS 500 typedef struct { char *name; int number; } counter_type; counter_type Counters[MAX_COUNTERS]; static int iCounterCount = 0; static int existsCounter(char *s) /************************************************************************** purpose: checks to see if a named TeX counter exists returns: the array index of the named TeX counter **************************************************************************/ { int i = 0; while (i < iCounterCount && strstr(Counters[i].name, s) == NULL) i++; if (i == iCounterCount) return -1; else return i; } static void newCounter(char *s, int n) /************************************************************************** purpose: allocates and initializes a named TeX counter **************************************************************************/ { if (iCounterCount == MAX_COUNTERS) { diagnostics(WARNING, "Too many counters, ignoring %s", s); return; } Counters[iCounterCount].number = n; Counters[iCounterCount].name = strdup(s); if (Counters[iCounterCount].name == NULL) { diagnostics(WARNING, "\nCannot allocate name for counter \\%s\n", s); exit(1); } iCounterCount++; } void incrementCounter(char *s) /************************************************************************** purpose: increments a TeX counter (or initializes to 1) **************************************************************************/ { int i; i = existsCounter(s); if (i < 0) newCounter(s, 1); else Counters[i].number++; } void setCounter(char *s, int n) /************************************************************************** purpose: allocates (if necessary) and sets a named TeX counter **************************************************************************/ { int i; i = existsCounter(s); if (i < 0) newCounter(s, n); else Counters[i].number = n; } int getCounter(char *s) /************************************************************************** purpose: retrieves a named TeX counter **************************************************************************/ { int i; i = existsCounter(s); if (i < 0) { diagnostics(2, "No counter of type <%s>", s); return 0; } return Counters[i].number; } void zeroKeyCounters(char *key) /************************************************************************** purpose: zeros all the acronym counters **************************************************************************/ { int i; for (i=0; i < iCounterCount; i++) { if (strstr(Counters[i].name,key)!=Counters[i].name) Counters[i].number = 0; } } int TryTheCounter(char *theCommand) /* Purpose: see if this is a \the for a defined counter */ { char *varCandidate = NULL; int varValue; if (strlen(theCommand) <= 3) return FALSE; if (strncmp(theCommand, "the", 3) != 0) return FALSE; varCandidate = &theCommand[3]; varValue = existsCounter(varCandidate); if (varValue == -1) { diagnostics(WARNING, "Can '%s' reference a variable?", varCandidate); } else { varValue = getCounter(varCandidate); /* diagnostics(WARNING, "Assuming '%s' is a variable: [%d]", varCandidate, varValue); */ fprintRTF("%d", varValue); } return TRUE; } latex2rtf-2.3.18/ChangeLog0000777000175000017500000010324113664466544015520 0ustar wilfriedwilfried############## ## latex2rtf changes from 2.3.0 ############## r1267 | whennings cleaning up Makefile (Windows) r1266 | whennings resolving "latex2rtf ignores '-C'" (Michael Artmann 2018-09-08) cleaning up Makefile, isolating DESTDIR from PREFIX (Pedro Andres Aranda Gutierrez 2018-12-28) adding support for user defined counters accessed through \the (Pedro Andres Aranda Gutierrez 2018-12-28) adding hebrew.cfg r1265 | whennings reverting unwanted deletes r1264 | whennings updating Changelog r1263 | whennings add missing source files utf8_support.c, utf8_support.h, proof.c, proof.h, test/html.sty r1262 | whennings updating source files for release 2.3.17 r1261 | whennings adding support for non-ascii characters in verbatim blocks and theorem captions and support for the proof environment r1260 | whennings updated documentation (Linux uninstall) r1259 | whennings updated documentation (Linux uninstall) r1258 | whennings updated documentation (Linux uninstall) r1257 | whennings updated Russian translation for l2rshell r1256 | whennings committing updated README as released as v.2.3.16 r1255 | whennings committing updated l2rshell files as released as v.2.3.16 r1254 | whennings in l2rshell.cpp, added check for buffer overflow during construction of command line for latex2rt.exe released as v.2.3.16 r1253 | whennings fixed ukrainian.cfg r1252 | whennings updated version info for l2rshell released as v.2.3.15 r1251 | whennings fixed bug when \int was followed by \frac r1250 | whennings fixed bug when \int was followed by \left or \right released as v.2.3.14 r1249 | whennings added support for package bm, supporting \bm (bold math) r1248 | whennings fixed bug in main.c line 368: comparison changed to using strcmp() (was =) released as v.2.3.13 r1247 | whennings - updated documentation for installation under unix - in MAKEFILE, variable PREFIX was changed to DESTDIR r1246 | whennings added error message if output file is equal to input file fixed windows gui shell handling of output file choice (default output file extension was .tex!) released as v.2.3.12 r1245 | whennings increased malloc size for character array by one to allow terminating null character in definitions.c line 157, graphics.c line 1882, tables.c line 1548 and line 1561 released as v.2.3.11 r1244 | whennings in funct1.c line 1797 added "%s" format to fix a potential vulnerability in processing the \keywords command released as v.2.3.10 r1243 | whennings (making up) unix version of latex2png script r1242 | whennings (making up) l2rshell source for v.2.3.9 r1241 r1241 | whennings Use eps2eps from Ghostscript instead of from MikTeX distribution. Therefore changed the order of program folders in PATH setting in l2rshell.exe (windows GUI) as well as in l2rprep.bat Modified latex2png script for compatibility with Ghostscript 9.14 and newer (gs 9.14 and newer use a different eps2eps script producing better quality eps files on the expense of containing binary stuff) r1240 | whennings convert.c line 398 blank after exclamation mark removed convert.c line 410 blank after question mark removed r1239 | whennings a) in doc\Makefile added latex2rtf.html to rule "all" b) in graphics.c restored lines 1836-1837 and changed outputting \begin{equation}...\end{equation} to outputting \begin{displaymath}...\end{displaymath} Reason: In the l2r_nnnn.tex file, \begin{equation}...\end{equation} can not reliably be replaced by $$...$$, but the equation snippet must not be numbered, as the number is inserted as rtf code. r1238 | whennings updated address of FSF in GPL license text in 3 more files r1237 | whennings updated address of FSF in GPL license text r1236 | whennings a) in graphics.c commented-out lines 1836-1837 which caused \begin{equation}...\end{equation} to be output to l2r_nnnn.tex as $$...$$ b) in latex2png script, changed order in which to try conversion from latex-dvi / pdflatex / xelatex to pdflatex / xelatex / latex r1235 | whennings WH: update sourceforge links in l2rshell "you can help" r1234 | whennings WH: fixed a typo in documentation r1233 | whennings WH: updated documentation for tikz support r1232 | prahl add another tikz test file r1231 | whennings WH: changed latex2png for cases where "grep -c tikzpicture" >2 added trying pdflatex before trying xelatex added test file "membrane-ions.tex" r1230 | whennings WH: changed latex2png to unix version (previous upload erroneously was DOS/Win version) added tikz.rtf to test/Makefile r1229 | whennings WH: added conversion of tikz picture to eps (option -E8) re-included r1221 modification to latex2png script so that it also tries pdflatex and xelatex incremented version to 2.3.4 r1228 | prahl add test tikzpicture file r1227 | prahl replace static keywords and clean up graphics.h r1226 | prahl updated latex2png to work with tikzpictures. r1225 | prahl backing out many of the changes need for tikz. Much simpler method used now. r1224 | prahl include the tikz files that I forgot r1223 | prahl Add tikz support r1222 | whennings WH: incremented version to 2.3.3 fixed bug ticket #148 "graphicspath not working" r1221 | whennings WH: incremented version to 2.3.2 do not split equations at \\ in align environments even when converting to bitmap or eps latex2png: suppress verbose messages unless opt_k (debugging) is set creating html files in doc/web removed from doc/Makefile in Unix distribution (but not in SVN repository) (Windows l2rshell) Find MikTeX also when that is user installed and not added to PATH fixed typo in version.h in graphics.c, fixed incorrect handling of tmp_dir in latex2png, delete existing output files before conversion in latex2png, changed parameter in call to xelatex in graphics.c, adding tmp_path to PutPdfFile and PutPsFile latex2png script for unix (previous upload was for Windows, sorry) modified latex2png script to that it also tries xelatex increased buffer size in parser.c for an extra large \begin{environment} ... \end{environment} r1220 | whennings WH: modified latex2png script - - also try conversion with pdflatex - in call of ImageMagick convert, changed to "-type TrueColor" for better quality of png bitmaps r1219 | prahl update man pages r1218 | prahl bump version number of latex2png r1217 | whennings WH: graphics.c: fixed bug in "PutEpsFile" (variable eps was undefined) fixed bug in funct1.c (figure numbers missing with "-F" option, patch tracker no.3537371) incremented version to 2.3.1 ############## ## latex2rtf changes from 2.2.0 ############## r1216 | whennings WH: graphics.c: added conversion of pdf and ps to eps when inserting graphics file names (-E4 -E8 and -E12) latex2png: added convert parameter "-type PaletteMatte" for eps to png, resolving Patches item #3519195 Makefile: fixed wrong default cfg dir in Windows version of Makefile incremented version to 2.3.0 r1215 | whennings WH: given that the conflict between -E12 and -M12 options is now fixed, reactivated -E option in GUI shell and incremented version to 2.2.4 r1214 | prahl make -M12 and -E12 work together r1213 | whennings WH: added code for Word Macro InsertEPSfromNames r1212 | whennings WH: updated documentation r1211 | whennings WH: baseline adjustment when including eps file names (-M64 and -M128) -E option removed from GUI shell because it conflicts with -M12 version number increased to 2.2.3 r1210 | whennings WH: version of Windows GUI shell supporting -E#, -M64 and -M128 r1209 | whennings WH: modified parameter description in main.c WH: changed version.h to version 2.2.2 WH: modified documentation for new options r1208 | prahl update usage r1207 | prahl fix should not happen warnings r1206 | prahl new options for eps eqns and fix preamble bug r1205 | whennings WH: added insertion of eps file names for png files r1204 | prahl support eps with new options r1203 | prahl infrastructure for figure comments r1202 | prahl handle UTF8 Byte Order Mark r1201 | prahl update changelog r1200 | prahl correct tautologic statement r1199 | prahl add comments to README r1198 | prahl remove unneeded gcc options r1197 | prahl add all files for 'make fullcheck' r1196 | prahl Jussi Lehtola's linux Makefile patch r1195 | whennings updated documentation r1194 | whennings corrected manpage r1193 | whennings updated changelog and manpage ############## ## latex2rtf changes from 2.1.0 ############## r1192 | whennings updated changelog and version.h r1191 | prahl normalizing file attributes r1190 | prahl tweaks to silence compiler warnings r1189 | whennings test files babel_french.tex and qualisex.tex did not LaTeX properly, added \usepackage[T1]{fontenc} r1188 | whennings documentation updated r1187 | prahl updated changelog r1186 | prahl bump version number r1185 | prahl add function to font.h r1184 | prahl support \\begin{small} and \\accent23 r1183 | prahl improve czech style and inputenc r1182 | prahl handle missing arguments in geometry package r1181 | prahl fix compile error in WriteEquationAsMTEF r1180 | whennings WH: updated changelog r1179 | whennings funct1.c: support french quotes in German mode r1178 | whennings updated documentation (num of eqns converted to bitmaps, MinGW compiler) r1177 | whennings minor updates to l2rshell r1176 | prahl adding new html files r1175 | prahl changing how html pages are made r1174 | prahl fix permissions on latex2rtf.1 r1173 | prahl start plumbing to emit MTEF r1172 | prahl support \textminus in direct.cfg r1171 | prahl more editing of HACKING r1170 | prahl fix spelling r1169 | whennings Makefile adaptation for Windows r1168 | prahl Add setspace.tex as a test file. Think about spacing issues around environment. r1167 | prahl Improve handling of indentation in many situations. This fixes a bunch of minor bugs. There probably remain several, but latex2rtf works much better now in many situations. r1166 | prahl add support for setspace package. Hacking this in revealed problems with how \\ was handled an the end of lines and also how paragraph indentation is handled. Spacing between paragraphs is also suboptimal. Good grief, this stuff should work better than it currently does. r1165 | whennings Makefile adaptation for Windows r1164 | prahl change default directory from /opt/local to /usr/local r1163 | prahl fix install directories in Makefile r1162 | whennings scripts/README updated to reflect recent version of the latex2png script scripts/l2rprep.bat updated to recent versions of Ghostscript and MikTeX r1161 | prahl Change PREFIX to DESTDIR to follow the GNU standard http://www.gnu.org/prep/standards/html_node/DESTDIR.html r1160 | prahl Improve error message. We seem to fail in this routine surprisingly often. Create a new define to make it easier to resize this buffer. r1159 | prahl The last fix exposed a latent bug in the mapping of latin1->cp1251 instead of cp1252. r1158 | whennings fixed handling of cp1251 r1157 | paaguti This new Makefile is better adapted for usage in MacPorts as well as for Debian r1156 | prahl fix labeling after \appendix in article document r1155 | prahl fixes for \appendix command r1154 | prahl add translations for glossary from recent Babel distribution r1153 | paaguti And the test file for the keywords command r1152 | paaguti Include the support for the keywords command r1151 | prahl prevent spurious RTF getting written to stderr r1150 | whennings l2rshell: make logfile name field read-only if no logging to file latex2png script: under MS Win, TEXINPUTS needs ";" separator r1149 | prahl fix for 3117074, seems to work. Also fix a bug when mathmode is not active in eqnalign. r1148 | prahl fix leak r1147 | prahl fix off by one error r1146 | prahl fix for addgraphics r1145 | whennings l2rshell: bugfixes, and additions to french and italian translation r1144 | whennings l2rshell: added checkbox for writing the debug output to file documentation: added how to redirect stderr to a file graphics.c, exists_with_extension(): removed insertion of path separator r1143 | prahl intermediate check-in of some debugging code because \graphicspath is not working correctly r1142 | whennings l2rshell: fixed broken links for Help and About page, for debug level >1 the debug output is written to file r1141 | prahl turn down the debugging noise r1140 | prahl allow for unusual case of horizontal text mode in an equation array environment r1139 | prahl tweaks to get bib_apacite2 working again. Things look good now except for ttgfsr7 r1138 | prahl add british.cfg (identical to english.cfg) remove debugging commands fix overeager writing of raw latex to rtf file r1137 | prahl fixes for multiple languages in babel add greek.cfg r1136 | prahl add frenchb.cfg and improve cfg warning r1135 | prahl Fixes for odd scoping problems. These were exposed by bib_style.tex and carefully delineated for me by Wilfried. These problems have been around for a long time. The bugs have not really been noticed before because we had not looked carefully. These fixes may introduce other regressions and have not be thoroughly tested. r1134 | whennings corrected unintentional changes in GPL copyright header in xrefs.c r1133 | prahl This patch adds support to version 2.1.0 for the \bibstyle{...} command. It simulates the natbib.sty features invoked for different styles, principally mimicking the \bibpunct for each style, and varies particular numeric bibliographies to have alternative numeric punctuation (for example, "1." rather than "[1]"). (Patch by G. Helffrich). r1132 | whennings documentation updated for delimiters used with the -M32 option r1131 | prahl silence warning r1130 | whennings corrected equations.c lines 750 and 752 (backslashes need not be escaped here) r1129 | prahl unintentional change r1128 | prahl remove \nonumber and \notag when using -M32 option r1127 | prahl use \[ ... \] instead of $$ ... $$ replace \begin{eqnarray} with \begin{align} all changes to streamline MathType conversion r1126 | prahl attempt to streamline conversion of latex to MathType when using -M32 r1125 | prahl Improve parsing of rows in tabular and longtable environments In particular, ignore \\ when surrounded by braces r1124 | prahl increase buffer size from 512 to 1024 r1123 | prahl support for tabularnewline r1122 | whennings updated documentation reflecting current versions of GhostScript and ImageMagick r1121 | whennings again updated documentation regarding use of STIX fonts r1120 | whennings documentation updated because STIX fonts are now officially released r1119 | prahl Fix bug in which babel language was not functional for most of the languages that were supposed to be supported r1118 | prahl fix for command option -i r1117 | paaguti Trivial change in the Makefile to make it more Debian friendly Included $(DESTDIR) and moved the drive specification to the lines which define the different directories. It's the only magic needed, the rest happens in debian/rules if present. r1116 | prahl fix bug when parsing brackets [text {]} more text] r1115 | whennings Updated Makefile for move of file inc_test.tex from /cfg to /test r1114 | whennings In styles.c commented out lines 135-136 because the extra blank is unnecessary. Extended file test/style.tex Moved file inc_test.tex from /cfg to /test r1113 | prahl revert changes to style.cfg because they don't work with MS Word under Windows r1112 | prahl Use Title Case for all style definitions Remove extra blank at in rtf header following style definition This should help OpenOffice r1111 | paaguti Include DeclareGraphicsExtensions in cfg/ignore.cfg until a better solution is found r1110 | prahl tighten up comments from the last check in. Looks great otherwise. r1109 | whennings In graphics.c, changed path delimiter handling. In graphics.c, fixed creation of temporary file names. Updated documentation. ############## ## latex2rtf changes from 2.0.0 ############## r1108 | whennings In main.c, use of tmp directory for intermediate files enabled for DOS/Windows Added option to choose tmp directory to GUI shell r1107 | prahl support for \={\i} r1106 | prahl Somehow \'{\i} and \`{\i} were reversed r1105 | prahl Last simplification to Makefile to ease packaging by other environments r1104 | prahl eliminate unnecessary compile time options from Makefile eliminate unneeded option for rsx compiler remove all tabs from header files and remaining .c files r1103 | whennings added MinGW and djgpp options to Makefile r1102 | prahl Update ChangeLog Update Copyright Update date r1101 | prahl fix bug in abbreviate() debugging command add hskip to ignore.cfg fix more whitespace problems in graphics.c eliminate unused variables add const to inline functions in utils.h r1100 | whennings main.c, debug_malloc : ask for "press return" only if -d2 or higher r1099 | prahl remove MAC_CLASSIC from Makefile ... it has not been built for a *long* time Fix leak in WriteLatexAsBitmap() r1098 | whennings added section "APA support" to documentation for release 2.1.0 r1097 | prahl rename strfree to safe_free fix leak in left right equation fix leak in preparse r1096 | prahl add a few extra compile time options fix bug with \ensuremath{} and bitmaps add -M12 to Makefile for testing purposes r1095 | prahl replaced broken my_fgets() in acronyms.c with version in utils.c removed version of my_fgets() from xrefs.c inserted some strfree() calls fixed some whitespace issues r1094 | prahl use strfree and delete comments r1093 | prahl more white space fixes r1092 | prahl white space fixes for graphics fix leak in InsertStyle() r1091 | whennings updated documentation for release 2.1.0, also commenting text in ignore.cfg r1090 | prahl fix warnings found when compiling with C++ r1089 | prahl add casts to compile under c++ r1088 | prahl small changes so that the program compiles under g++ rename 'template' to 'HA_template' to avoid reserved word do a careful pointer casting dance in graphics.c to avoid error r1087 | prahl improvements to ignore.c fix bugs improve documentation add more ignored commands r1086 | whennings added "qualisex" to test/Makefile r1085 | prahl fix pretty serious bug found in qualisex.tex that showed that font shape was not being carried over into new paragraphs. Also removed vestigal variable from convert that has not been used for some time. r1084 | prahl fix bug in getStringBraceParam() so that it is closer to getBraceParam(). r1083 | prahl update changlog for 2.1 release r1082 | prahl touch version.h update dependancies in Makefile add Makefile target to remove OS X metadata r1081 | prahl interpret RequirePackage as usepackage ignore ifpdf add overlooked cp855 encoding r1080 | prahl move WARNING to level 2 diagnostic fix some 8 space indents simplify exists_with_extension to use strdup_together3() r1079 | paaguti Basic docs for ignore package in cfg/ignore.cfg and a test file for ignored packages r1078 | whennings in chars.c, formatting two more overstrike unicode characters to Stix font r1077 | whennings removed cfg/direct.ucs.cfg (no longer needed) in chars.c, formatting most overstrike unicode characters to Stix font r1076 | prahl reverse the zero-width overstrike unicode character order. I am not sure this is better. Looks just as bad in Word 2004 for the Mac. r1075 | paaguti Moved ignored package list ignore.cfg Consolidated ignored package treatment r1074 | prahl I commented out the Apple specific image conversion code. Something is wrong with the sizes. We just rely on gs now. r1073 | prahl Remove spurious style warnings. r1072 | prahl nearly complete support for OT2 input encoding. Fix bug in unicode input with spacing Add four test files for cyrillic r1071 | prahl First step towards supporting multiple encodings in one latex file. remove g_font_encoding_name remove g_charset_encoding add CmdFontEncoding() add DefaultFontEncoding() add CurrentFontEncoding() These all refer to the encoding being used in the latex file. r1070 | prahl add enumerate*, description*, and itemize* as environments simplify filename processing at in the main program r1069 | prahl remove all use of the Symbol font during conversion. Rely on unicode for all our needs. r1068 | prahl remove executable property from greek.tex r1067 | prahl fix repeated headers in the auto-generated table of contents There are missing numbers in the auto-generated table, but the actual headers are right. The problems seems to be that latex emits headers without the numbers in the text, but incorporates them in the table of contents. I don't see any easy solution. r1066 | prahl eliminate cyrillic and latin2 output encodings. We only use unicode now. simplify fonts.cfg by removing above fonts. move Times -> Times New Roman Helvetica -> Arial Courier -> New Courier because those fonts tend to have more complete Unicode character sets. r1065 | prahl reduce size of colortable in the header when the color package is not explicitly used. r1064 | prahl finished removing the use of the overstrike field. Eliminated unused code and simplified existing code. r1063 | prahl More movement to unicode. Using combining characters to avoid the clumy overstrike in Word. With this check-in, MT Extra is no longer used by latex2rtf. r1062 | prahl adding Wilfried's changes to direct.cfg and ucsymbols.tex r1061 | prahl fix problem when \textbf{} is at the start of a new paragraph r1060 | prahl Fix font size in Title r1059 | paaguti Not yet included in Makefile for compilation. It's just a proposal of how we could create an RTF layer r1058 | prahl When I fixed the rest rtf style header, I changed how one must indicate fonts in the .cfg files. Basically, now we must use \f*Unicode* whereas before we used just *STIXFonts* r1057 | prahl properly convert \char representation of backslash in typewriter font. r1056 | prahl partial solution to the style vs font problem. This removes a brace at the beginning of every paragraph and one at the end. This change is pretty significant and probably breaks a bunch of stuff, but a quick perusal of misc4.tex does not reveal serious problems (aside from selecting the wrong character when in the typewriter font). r1055 | paaguti Careless me... a family and a project are sometimes too much.. r1054 | paaguti cleanup in CmdHarvardItem: use the ignore.. macros and a switch-case construct to make code more readable add harvardand to comment/documentation r1053 | prahl test file illustrating the problem with styles r1052 | prahl revert font changes added to vertical.c r1051 | whennings removed problematic double definitions of heading styles from funct1.c and style.cfg. Added file styleAPA.cfg r1050 | prahl fix seriously broken style header. This does not fix the problem arising from conflicts between fonts and styles. rename style 'HTML Formatted' to 'verbatim' because most usage has nothing to do with HTML. r1049 | whennings In Makefile, cleaned options from CFLAGS line 8 which are already either in PLATFORM or in line39 r1048 | paaguti WIN32 inside UNIX made little sense... reverted that r1047 | paaguti I use winmake.bat to call make in my MinGW environment Defining the variables in winmake.bat is complemented by the ?= assignments in Makefile r1046 | paaguti mea culpa, I tried to fclose(NULL) in utils.c r1045 | paaguti Orderly bail-out when latex2png can't be called Previously there was an exception r1044 | paaguti a further step towards better portability in Makefile xrefs.h last line without CRLF graphics.c: yet another step towards understanding where the failures in MINGW come from r1043 | paaguti small glitch detected in one of the reorder_citations calls. more comments to document change better r1042 | paaguti Constants in ScanAux make the code more readable. They are used in reorder_citations too. r1041 | paaguti changed string tokens with integer ID in ScanAux r1040 | paaguti closing } in the acronym style was missing... r1039 | paaguti run make depend to refresh dependencies ScanAux doesn't use g_aux_name anymore r1038 | paaguti Cleanup acronym rests from this header file r1037 | paaguti move the loading of the auxfile to label and biblio management cleanup: remove old ScanAux code r1036 | whennings in acronym.tex, removed blank before \acroextra r1035 | paaguti Another step before getting rid of the original ScanAux code once and for all. r1034 | paaguti Moved the graphicspath test to an independent file Minor changes in Makefile to improve portability (hopefully) r1033 | paaguti portable my_fgets() in auxfile.c after tests with win32 (taken from xrefs.c) r1032 | paaguti move harvardcite parsing to LoadAuxFile functionality r1031 | paaguti compiler complained about missing CRLF at end of file r1030 | paaguti these files are needed for the graphicspath test r1029 | paaguti final integration of the graphicspath functionality I have included the test for it in my acronym.tex test file r1028 | paaguti first step towards \graphicspath support parse the arguments and put them in a string array use acronym.tex to test it r1027 | paaguti Implemented file searches as loops using GraphConvertTable r1026 | paaguti Define a table to handle graphics conversion in a uniform way. Better integration of new formats and uniform treatment of all formats make the effort worthwhile r1025 | paaguti first step towards uniforming the graphics interface. added int at the end of PutPngFile() in order to have the same parameters here as in the other Put...File() functions r1024 | paaguti final cleanup of the acronym orgy r1023 | paaguti defined a paragraph style for the acronyms which resembles most what LaTEX uses. It is based on Normal and gets part of the formatting (tabs) in vertical.c Inserted code in vertical.c to fit this style into the textwidth. Prepared a callback in acronyms.c to eventually honour the maximum length acronym hint r1022 | paaguti move all acronym functionality to acronyms.c take CommandArray from commands.c take functions from xrefs.c and funct1.c redirect \usapackage{acronym} handling in preamble.c acronym commands are enabled with an extra Environment to make them available only when \usepackage{acronym} is invoked enable acronym handling in auxfile.c NOTE: portions of xrefs.c and funct1.c disabled with #if 0/#endif will disappear in the next wave of patches. r1021 | paaguti this is the first step towards parsing the .aux file once I'm testing with labels, which are pretty consistently implemented right now. commands.c : hook in the CmdNewLabel function auxfile.: simplify and parse \newlabel only xref.c: new layer to ScanAux: go for the original implementation for everything except labels. Treat labels using the label table which is created the first time a label is needed by parsing the auxfile once. r1020 | paaguti added the possibility of getting the whole label definition unparsed this is a step towards getting rid of the current ScanAux function r1019 | paaguti simplified .aux file handling r1018 | paaguti Moved TRUE/FALSE definition from cfg.h to main.h main.h is included everywhere, while cfg.h is not r1017 | paaguti move CommandArray definition to commands.h this will allow to have all acronym related stuff in one isolated file r1016 | paaguti trivial ifpdf package support r1015 | paaguti Minor bug correction in allocation Allocate labels 8 by 8 r1014 | paaguti new acronym TeX test file r1013 | paaguti acronym should allow to remake the acronym test without depending on acronym.rtf r1012 | paaguti handy little macro to free strings which were allocated r1011 | paaguti GetAcronymFromAux can return NULL! Corrected pointer core dump r1010 | paaguti compiler complained about no end of line for funct1.h and trivial support for the ifpdf package r1009 | paaguti Trivial patch for the tests r1008 | prahl include "acronyms.h' not "acronym.h" r1007 | prahl Fix misspelling of Auxiliary in function name r1006 | prahl eliminate redundant ACRONYM defines between xrefs.c and acronyms.c rename acronym.c to acronyms.c so that it is consistent with other files in the codebase. r1005 | prahl Eliminated unnecessary headers. Renamed CmdAC -> CmdACNew so that new implementation and old ones can coexist. r1004 | prahl refactoring of cfg.c by Pedro Aranda file_exists() function added to utils.c r1003 | prahl Changes to ignore.cfg by Pedro Aranda r1002 | prahl rename aux to auxfile to avoid problems on windows r1001 | prahl the great detabbing ... from now on there should be no tabs in the source files. Indents should always be four tabs. r1000 | prahl convert // to /* */ remove executable bit from acronym.bib r999 | prahl New inline utility functions by Pedro Aranda r998 | prahl decrease verbosity when entering and leaving environments r997 | prahl new inline utilities by Pedro Aranda r996 | prahl adding new files to the packaged distribution r995 | prahl New files from Pedro Aranda that improve processing of aux files and improved support for acronym.sty. These are not actually used yet. r994 | prahl Pedro Aranda's test files for the acronym.sty package r993 | whennings fixed some bugs and added two characters to test/ucsymbols.tex r992 | prahl remove executable bit on direct.tex add direct.tex to list of files translated when 'make char' is used add direct.tex to the package r991 | whennings fixed a bug and addes STIXGeneral to two more characters in direct.cfg. added direct.tex as test file for all characters in direct.cfg r990 | prahl fix for harvard citations found by Pedro A Aranda r989 | whennings modifications to make test/babel_* files LaTeX properly r988 | prahl add babel* file to the list to be converted after "make all" add encoding tables for 0t2, t2a, t2b. The later two will probably go away and the former is not used yet r987 | whennings modified cfg/direct.cfg so that symbols which are not available under MS Windows get formatted in font STIXGeneral Corrected test/ucsymbols.tex r986 | prahl add macintosh central european character encoding r985 | prahl More unicode conversion. Eliminate all use of Symbol font. Directly convert from various character encodings e.g. latin5 to Unicode. Delete lots of code that is no longer needed. r984 | prahl start of missing characters for XP r983 | prahl More of the great Unicode migration. This moves all the instances of CmdSymbolChar and CmdMTExtraChar out of commands.c Now, these characters can be found in direct.cfg. Future work will remove all instances of CmdSymbolChar and CmdMTExtraChar from the rest of the code base. r982 | prahl Fix problem on Fedora. It turns out that strcpy(p1,p2) is allowed undefined behavior if p1 and p2 point to overlapping areas. r981 | whennings modified direct_ucs.cfg to use the Unicode font for special symbols. updated documentation (but font usage for special symbols is work in progress) updated l2rshell to version number 2.1.0 r980 | prahl reduce debugging noise r979 | prahl fix bug related to the new style system. There is a pretty big mismatch between LaTeX and Word styles. This is probably not the right patch because it regresses the way that section headings look. It does fix the bug associated with {\tt \begintabular{ll} a & b \end{tabular} } r978 | prahl improve how vcenter interacts with fields r977 | prahl fix \makebox and \framebox so they actually emit something fix \char'123 (regression) move a whole bunch of MTExtra characters to Unicode because MTExtra varies in which characters are present. r976 | prahl all characters in ucsymbol.tex and misc3.tex are converted now r975 | prahl add support for a few more math commands found in misc3.tex misc3.rtf should convert pretty cleanly now. r974 | prahl change strlcpy to my_strlcpy comment out CmdAcronym r973 | prahl support for \not r972 | prahl working version of halign! fixed bug when converting \char92 r971 | prahl insert a few instances of uint16_t when bit shifting as a defense against 64-bit problems r970 | prahl beginning of support for \halign r969 | prahl address warnings found when compiling for Fedora latex2rtf-2.3.18/ignore.c0000777000175000017500000001474613050672355015374 0ustar wilfriedwilfried /* ignore.c - ignore commands found in ignore.cfg Copyright (C) 1995-2002 The Free Software Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. This file is available from http://sourceforge.net/projects/latex2rtf/ Authors: 1995-1997 Ralf Schlatterbeck 1998-2000 Georg Lehner 2001-2002 Scott Prahl */ #include #include #include #include "main.h" #include "direct.h" #include "fonts.h" #include "cfg.h" #include "ignore.h" #include "funct1.h" #include "commands.h" #include "parser.h" #include "convert.h" #include "utils.h" #include "vertical.h" /**************************************************************************** purpose : ignores anything till an alphanumeric character ****************************************************************************/ static void IgnoreCmd(void) { char c; do { c = getTexChar(); } while (c && c != '\\'); do { c = getTexChar(); } while (c && isalpha((int) c)); ungetTexChar(c); } /**************************************************************************** purpose : ignores a number \tolerance = 10000 \tolerance 10000 \tolerance10000 ****************************************************************************/ static void IgnoreNumber(void) { char c; c = getNonSpace(); if (c == '=') c = getNonSpace(); while (c=='-' || c=='+' || c== '.' || isdigit(c)) c = getTexChar(); ungetTexChar(c); } /**************************************************************************** purpose : ignores a dimension ****************************************************************************/ static void IgnoreMeasure(void) { char c = getNonSpace(); if (c == '=') c = getNonSpace(); ungetTexChar(c); getDimension(); } /**************************************************************************** purpose : ignores variable-formats shown in file "ignore.cfg" returns : TRUE if variable was ignored correctly, otherwise FALSE # SINGLE ignore single command. e.g., \noindent # NUMBER simple numeric value e.g., \tolerance10000 # MEASURE numeric value with following unit of measure # OTHER ignores anything to the first character after '=' # and from there to next space. eg. \setbox\bak=\hbox # COMMAND ignores anything to next '\' and from there to occurence # of anything but a letter. eg. \newbox\bak # PARAMETER ignores a command with one paramter # PACKAGE does not produce a Warning message if PACKAGE is encountered # ENVCMD proceses contents of unknown environment as if it were plain latex # ENVIRONMENT ignores contents of that environment ****************************************************************************/ int TryVariableIgnore(const char *command) { const char *RtfCommand; char *TexCommand, c; TexCommand = strdup_together("\\", command); RtfCommand = SearchCfgRtf(TexCommand, IGNORE_A); free(TexCommand); diagnostics(4, "Ignoring '%s' as '%s'", command, RtfCommand); if (RtfCommand == NULL) return FALSE; if (strcmp(RtfCommand, "SINGLE") == 0) { /* don't need to do anything */ } else if (strcmp(RtfCommand, "NUMBER") == 0) { IgnoreNumber(); } else if (strcmp(RtfCommand, "MEASURE") == 0) { IgnoreMeasure(); } else if (strcmp(RtfCommand, "OTHER") == 0) { c = getNonSpace(); if (c == '=') c = getNonSpace(); while (c && !isspace(c)) c = getTexChar(); if (c) { c = getNonSpace(); ungetTexChar(c); } } else if (strcmp(RtfCommand, "COMMAND") == 0) { IgnoreCmd(); } else if (strcmp(RtfCommand, "PARAMETER") == 0) { CmdIgnoreParameter(No_Opt_One_NormParam); } else if (strcmp(RtfCommand, "TWOPARAMETER") == 0) { CmdIgnoreParameter(No_Opt_Two_NormParam); } else if (strcmp(RtfCommand, "ENVIRONMENT") == 0) { char *str = strdup_together3("end{", command, "}"); Ignore_Environment(str); free(str); } else if (strcmp(RtfCommand, "ENVCMD") == 0) { PushEnvironment(IGNORE_MODE); } return TRUE; } int TryPackageIgnore(const char *package) { const char *RtfCommand; char *TexCommand; int result = FALSE; diagnostics(4, "trying to ignore '%s'", package); TexCommand = strdup_together("\\", package); RtfCommand = SearchCfgRtf(TexCommand, IGNORE_A); free(TexCommand); if (NULL != RtfCommand) result = (0 == strcmp(RtfCommand,"PACKAGE")); return result; } /****************************************************************************** purpose: function, which ignores an unconvertable environment in LaTex and writes text unchanged into the Rtf-file. parameter: searchstring : includes the string to search for example: \begin{unknown} ... \end{unknown} searchstring="end{unknown}" ******************************************************************************/ void Ignore_Environment(char *cCommand) { char unknown_environment[100]; char *buffer; int font; diagnostics(4, "Entering IgnoreEnvironment <%s>", cCommand); snprintf(unknown_environment, 100, "\\%s%s%s", "end{", cCommand, "}"); font = TexFontNumber("Typewriter"); CmdEndParagraph(0); CmdIndent(INDENT_NONE); startParagraph("Normal", PARAGRAPH_GENERIC); fprintRTF("\\qc [Sorry. Ignored "); fprintRTF("{\\plain\\f%d\\\\begin\\{%s\\} ... \\\\end\\{%s\\}}]", font, cCommand, cCommand); CmdEndParagraph(0); CmdIndent(INDENT_INHIBIT); buffer = getTexUntil(unknown_environment, 0); ConvertString(unknown_environment); free(buffer); diagnostics(4, "Exiting IgnoreEnvironment"); } latex2rtf-2.3.18/utils.c0000777000175000017500000005246213050672354015245 0ustar wilfriedwilfried /* * utils.c - handy routines * * Copyright (C) 1995-2002 The Free Software Foundation * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License as published by the Free * Software Foundation; either version 2 of the License, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. * * You should have received a copy of the GNU General Public License along with * this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * * This file is available from http://sourceforge.net/projects/latex2rtf/ * * Authors: 1995-1997 Ralf Schlatterbeck 1998-2000 Georg Lehner 2001-2002 Scott * Prahl */ #if defined(NOSTDERR) #define ERROUT stdout #else #define ERROUT stderr #endif #include #include #include #include #ifdef UNIX # include # include # include #else # include #endif #include "cfg.h" #include "main.h" #include "utils.h" #include "parser.h" /****************************************************************************** purpose: returns true if n is odd ******************************************************************************/ int odd(long n) { return (int) (n & 1); } /****************************************************************************** purpose: returns true if n is even ******************************************************************************/ int even(long n) { return (int) (!(n & 1)); } /****************************************************************************** purpose: rounds to nearest integer. round() in math.h is not always present *****************************************************************************/ double my_rint(double nr) { double f = floor(nr); double c = ceil(nr); return (((c-nr) >= (nr-f)) ? f :c); } /****************************************************************************** purpose: this works with overlapping pointers ... the C standard says that strcpy can do anything it likes for this case (which it happens to do under Fedora ******************************************************************************/ char *my_strcpy(char *dest, const char *src) { char *save = dest; while ( (*dest++ = *src++) ); return save; } /****************************************************************************** purpose: count the number of occurences of the string t in the string s ******************************************************************************/ int strstr_count(const char *s, char *t) { int n = 0; size_t len; char *p; if (t == NULL || s == NULL) return n; len = strlen(t); p = strstr(s, t); while (p) { n++; p = strstr(p + len - 1, t); } return n; } /****************************************************************************** purpose: returns a new string having n characters from src terminated with '\0' at the end. (so the length is n+1) ******************************************************************************/ char *my_strndup(const char *src, size_t n) { char *dst; dst = (char *) calloc(n + 1, sizeof(char)); if (dst == NULL) return NULL; strncpy(dst, src, n); return dst; } /****************************************************************************** purpose: returns a new string consisting of s+t ******************************************************************************/ char *strdup_together(const char *s, const char *t) { char *both; size_t siz; if (s == NULL) { if (t == NULL) return NULL; return strdup(t); } if (t == NULL) return strdup(s); if (0) diagnostics(1, "'%s' + '%s'", s, t); siz = strlen(s) + strlen(t) + 1; both = (char *) malloc(siz); if (both == NULL) diagnostics(ERROR, "Could not allocate memory for both strings."); my_strlcpy(both, s, siz); my_strlcat(both, t, siz); return both; } /****************************************************************************** purpose: returns a new string consisting of s+t+u ******************************************************************************/ char *strdup_together3(const char *s, const char *t, const char *u) { char *two, *three; two = strdup_together(s,t); three = strdup_together(two,u); free(two); return three; } /****************************************************************************** purpose: returns a new string consisting of s+t+u+v ******************************************************************************/ char *strdup_together4(const char *s, const char *t, const char *u, const char *v) { char *four, *three; three = strdup_together3(s,t,u); four = strdup_together(three,v); free(three); return four; } /****************************************************************************** purpose: duplicates a string but removes TeX %comment\n ******************************************************************************/ char *strdup_nocomments(const char *s) { char *p, *duplicate; if (s == NULL) return NULL; duplicate = (char *) malloc(strlen(s) + 1); p = duplicate; while (*s) { while (*s == '%') { /* remove comment */ s++; /* one char past % */ while (*s && *s != '\n') s++; /* find end of line */ if (*s == '\0') goto done; s++; /* first char after comment */ } *p = *s; p++; s++; } done: *p = '\0'; return duplicate; } /****************************************************************************** purpose: duplicates a string without including spaces or newlines ******************************************************************************/ char *strdup_noblanks(const char *s) { char *p, *duplicate; if (s == NULL) return NULL; while (*s == ' ' || *s == '\n') s++; /* skip to non blank */ duplicate = (char *) malloc(strlen(s) + 1); p = duplicate; while (*s) { *p = *s; if (*p != ' ' && *p != '\n') p++; /* increment if non-blank */ s++; } *p = '\0'; return duplicate; } /************************************************************************* purpose: duplicate text with only a..z A..Z 0..9 and _ **************************************************************************/ char *strdup_nobadchars(const char *text) { char *duplicate, *s; duplicate = strdup_noblanks(text); s = duplicate; while (*s) { if (!('a' <= *s && *s <= 'z') && !('A' <= *s && *s <= 'Z') && !('0' <= *s && *s <= '9')) *s = '_'; s++; } return duplicate; } /****************************************************************************** purpose: duplicates a string without newlines and CR replaced by '\n' or '\r' ******************************************************************************/ char *strdup_printable(const char *s) { char *duplicate; int i; if (s == NULL) return NULL; duplicate = (char *) malloc(2*strlen(s)); i=0; while (*s) { if (*s=='\r') { duplicate[i++]='\\'; duplicate[i++]='r'; } else if (*s=='\n') { duplicate[i++]='\\'; duplicate[i++]='n'; } else if (*s=='\t') { duplicate[i++]='\\'; duplicate[i++]='t'; } else duplicate[i++]=*s; s++; } duplicate[i]='\0'; return duplicate; } /****************************************************************************** purpose: duplicates a string without newlines and CR replaced by '\n' or '\r' ******************************************************************************/ void strncpy_printable(char* dst, char *src, int n) { int i=0; if (dst == NULL) return; while (i= t && (*p == ' ' || *p == '\n')) p--; /* last non blank char */ if (t > p) return strdup(""); return my_strndup(t, (size_t) (p - t + 1)); } /****************************************************************************** purpose: replaces all occurences of target in s with blanks ******************************************************************************/ void str_blank_out(char *s, const char *target) { char *p; int i, n; if (s == NULL || target == NULL || *target == '\0') return; n = strlen(target); p = strstr(s,target); while (p) { for (i=0; i", (label) ? label : "missing"); return label; } /************************************************************************** purpose: provide functionality of getBraceParam() for strings if s contains "aaa {stuff}cdef", then parameter = getStringBraceParam(&s) gives parameter = "stuff" s="cdef" \alpha\beta ---> "\beta" \bar \alpha ---> "\alpha" ^ ^ \bar{text} ---> "text" \bar text ---> "t" ^ ^ _\alpha ---> "\alpha" _{\alpha} ---> "\alpha" ^ ^ _2 ---> "2" _{2} ---> "2" ^ ^ ******************************************************************************/ char *getStringBraceParam(char **s) { char *p_start, *p, *parameter, last; int braces; if (*s == NULL) return strdup(""); /* skip white space ... and one possible newline*/ while (**s == ' ') (*s)++; if (**s == '\n') { while (**s == ' ') (*s)++; } p_start = *s; /* return simple command like \alpha */ if (**s == '\\') { do { (*s)++; } while (isalpha(**s)); diagnostics(1,"getstringbraceparam \\ before='%s'", *s); return my_strndup(p_start,(*s)-p_start); } /* no brace ... advance one and return next character */ if (**s != '{' ) { (*s)++; return my_strndup(p_start,1); } /* usual case, return contents between braces */ p_start++; p=p_start; last = '\0'; braces = 1; while (*p != '\0' && braces > 0) { if (*p == '{' && last != '\\') braces++; if (*p == '}' && last != '\\') braces--; last = *p; p++; } parameter = my_strndup(p_start, p-p_start-1); *s = p; diagnostics(6,"Extract parameter=<%s> after=<%s>", parameter, *s); return parameter; } /****************************************************************************** purpose: remove 'tag{contents}' from text and return contents note that tag should typically be "\\caption" ******************************************************************************/ char *ExtractAndRemoveTag(char *tag, char *text) { char *s, *contents, *start=NULL; if (text==NULL || *text=='\0') return NULL; s = text; diagnostics(5, "target tag = <%s>", tag); diagnostics(5, "original text = <%s>", text); while (s) { /* find start of caption */ start = strstr(s, tag); if (!start) return NULL; s = start + strlen(tag); if (*s == ' ' || *s == '{') break; } contents = getStringBraceParam(&s); if (contents == NULL) return NULL; /* erase "tag{contents}" */ do *start++ = *s++; while (*s); *start = '\0'; diagnostics(5, "final contents = <%s>", contents); diagnostics(5, "final text = <%s>", text); return contents; } /* this extracts a comma-delimited, key-value pair from the string s the string is untouched, and the return value from the function is a pointer to the next character in the string to be parsed to get the next pair. EXAMPLE: s= " option=param,singleoptionname,opt2=crazy" first iteration return="singleoptionname,opt2=crazy", key="option", value="param" second iteration return="opt2=crazy", key="singleoptionname", value=NULL third iteration return=NULL, key="opt2", value="crazy" */ char * keyvalue_pair(char *s, char **key, char **value) { char *k, *v; *key = NULL; *value = NULL; if (s==NULL) return NULL; /* skip any blanks at start */ while (*s == ' ') s++; if (*s=='\0') return NULL; /*possibly all blanks*/ /* find the end of the key */ k = s; while (*k != '=' && *k != ',' && *k != '\0') k++; /* allocate and copy string into the key */ *key = my_strndup(s, k-s); if (*k == '\0') return NULL; if (*k == ',') return k+1; /* '=' found, now parse value */ s = k+1; /* skip any blanks at start */ while (*s == ' ') s++; /* find the end of the value */ v = s; while (*v != ',' && *v != '\0') { if (*v == '{') while (*(++v) != '}') ; else v++; } /* allocate and copy this into the value */ *value = my_strndup(s, v-s); if (*v == '\0') return NULL; return v+1; } int getStringDimension(char *s) { int size = 0; if (s != NULL) { PushSource(NULL, s); size = getDimension(); PopSource(); } diagnostics(5, "getStringDimension fore '%s' is %d twips", s, size); return size; } void show_string(int level, const char *s, const char *label) { int width=100; long i; char c; long len; if (g_verbosity_level1 && i % width == 0) fprintf(ERROUT, "\n%s: ",label); c = s[i]; if (c == '\n') c = '='; if (c == '\0') c = '*'; fprintf(ERROUT,"%c",c); } } /* these next two routines fall under the copyright banner below. The names of the routines have had 'my_' prepended to avoid conflicting with existing versions in string.h */ /* * Copyright (c) 1998 Todd C. Miller * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ /* * Copy src to string dst of size siz. At most siz-1 characters * will be copied. Always NUL terminates (unless siz == 0). * Returns strlen(src); if retval >= siz, truncation occurred. */ size_t my_strlcpy(char *dst, const char *src, size_t siz) { char *d = dst; const char *s = src; size_t n = siz; /* Copy as many bytes as will fit */ if (n != 0) { while (--n != 0) { if ((*d++ = *s++) == '\0') break; } } /* Not enough room in dst, add NUL and traverse rest of src */ if (n == 0) { if (siz != 0) *d = '\0'; /* NUL-terminate dst */ while (*s++) ; } return(s - src - 1); /* count does not include NUL */ } /* * Appends src to string dst of size siz (unlike strncat, siz is the * full size of dst, not space left). At most siz-1 characters * will be copied. Always NUL terminates (unless siz <= strlen(dst)). * Returns strlen(src) + MIN(siz, strlen(initial dst)). * If retval >= siz, truncation occurred. */ size_t my_strlcat(char *dst, const char *src, size_t siz) { char *d = dst; const char *s = src; size_t n = siz; size_t dlen; /* Find the end of dst and adjust bytes left but don't go past end */ while (n-- != 0 && *d != '\0') d++; dlen = d - dst; n = siz - dlen; if (n == 0) return(dlen + strlen(s)); while (*s != '\0') { if (n != 1) { *d++ = *s; n--; } s++; } *d = '\0'; return(dlen + (s - src)); /* count does not include NUL */ } /* * handy litte portable file existance check */ int file_exists(char *fname) { int result = FALSE; #ifdef UNIX struct stat fStat; result = (stat(fname,&fStat) == 0); #else FILE *f = fopen(fname,"rb"); if (NULL != f) { result = TRUE; fclose(f); } #endif diagnostics(5,"file_exists(%s) returns %d",fname,result); return result; } #define CR (char) 0x0d #define LF (char) 0x0a int my_fgetc(FILE *f) { int c; c = fgetc(f); if (feof(f)) return '\0'; if (c==CR) { c = fgetc(f); if (c == LF) return '\n'; ungetc(c,f); return '\n'; } if (c == LF ) return '\n'; if (c =='\t') return ' '; return c; } /* fgets function that honors '\' at end of line \harvardcite{aharanov1995}{Aharanov, Whitehead, Kelemen \harvardand \ Spiegelman}{Aharanov et~al.}{1995} returns number of characters read */ char * my_fgets(char *buffer, int maxBuffer, FILE *f) { int i; int cLast = '\0'; if (f == NULL || feof(f)) return NULL; for (i=0; i #include #include "main.h" #include "direct.h" #include "fonts.h" #include "cfg.h" #include "utils.h" #include "parser.h" #include "styles.h" #include "vertical.h" static char *g_current_style = NULL; void SetCurrentStyle(const char *style) { if (g_current_style) free(g_current_style); g_current_style = strdup(style); } char *GetCurrentStyle(void) { return g_current_style; } int IsSameAsCurrentStyle(const char *s) { if (g_current_style==NULL) return FALSE; if (strcmp(s,g_current_style)==0) return TRUE; else return FALSE; } void InsertCurrentStyle(void) { if (g_current_style==NULL) InsertStyle("Normal"); else InsertStyle(g_current_style); } void InsertBasicStyle(const char *rtf, int how) /****************************************************************************** purpose: uses data from style.cfg to try and insert RTF commands that correspond to the appropriate style sheet or character style for example InsertBasicStyle(rtf, INSERT_STYLE_NORMAL); where rtf="\rtfsequence,\rtfheader" ******************************************************************************/ { char *style, *comma; char *style_end = NULL; if (rtf == NULL) return; /* skip over 0,0, */ style = strchr((char *) rtf, ',') + 1; if (style == NULL) return; style = strchr(style+1, ','); if (style == NULL) return; /* skip blanks */ style++; while (*style == ' ') style++; /* locate end of style */ comma = strchr(style, ','); if (comma == NULL) return; switch (how) { case INSERT_STYLE_NORMAL: style_end = comma; break; case INSERT_STYLE_FOR_HEADER: style_end = style + strlen(style); break; case INSERT_STYLE_NO_STYLE: /* move start just past style bit e.g., \s2 */ if (strstarts(style,"\\s")) { style += 2; while (*style >= '0' && *style <= '9') style++; } style_end = comma; break; } while (style < style_end) { if (style == comma) fprintRTF(" "); else if (*style == '*') WriteCFGFontNumber(&style); else fprintRTF("%c", *style); style++; } /* emit final blank to make sure that RTF is properly terminated */ /* if (how != INSERT_STYLE_FOR_HEADER) fprintRTF(" "); */ } /* if the_style ends with '0' then do not insert the style sequence \s2 and just insert the rtf commands, otherwise do both This is needed so that chapter headings work properly in the table of contents */ void InsertStyle(const char *the_style) { char *rtf, *last_char; int how = INSERT_STYLE_NORMAL; char *style = strdup(the_style); last_char = style + strlen(style) - 1; if (*last_char == '0') { how = INSERT_STYLE_NO_STYLE; *last_char = '\0'; } if (strcmp(style,"Normal")==0) { if (getAlignment()==CENTERED) { InsertStyle("centerpar"); free(style); return; } if (getAlignment()==RIGHT) { InsertStyle("rightpar"); free(style); return; } if (getAlignment()==LEFT) { InsertStyle("leftpar"); free(style); return; } } diagnostics(4, "InsertStyle(%s)", style); rtf = SearchCfgRtf(style, STYLE_A); if (rtf == NULL) { diagnostics(WARNING, "Cannot find '%s' style using 'Normal' style", style); SetCurrentStyle("Normal"); rtf = SearchCfgRtf("Normal", STYLE_A); InsertBasicStyle(rtf, INSERT_STYLE_NORMAL); } else { SetCurrentStyle(style); InsertBasicStyle(rtf, how); } free(style); } latex2rtf-2.3.18/version.h0000777000175000017500000000007013664535177015577 0ustar wilfriedwilfriedchar *Version = "2.3.18 r1267 (released May 30, 2020)"; latex2rtf-2.3.18/proof.c0000777000175000017500000000301413256466534015230 0ustar wilfriedwilfried/* proof.c - LaTeX to RTF conversion program This file contains a function used to display data within \begin{proof} ... \end{proof} environment. Authors: 2018 Alex Itkes */ #include #include "main.h" #include "chars.h" #include "parser.h" #include "commands.h" #include "vertical.h" #include "convert.h" #include "cfg.h" /* This function writes the text within \begin{proof} ... \end{proof} environment to RTF. First it writes the word "Proof" translated to a proper language, then converts the text within the environment just as any other text block, and then terminates the with a square mark. Actually all the work is done while processing the begin tag. */ void CmdProof (int code) { if (code & ON) { /* Get the text until the end tag. */ char * proof = getTexUntil ("\\end{proof}", 0); diagnostics(4, "Entering CmdProof"); startParagraph ("Normal", PARAGRAPH_GENERIC); /* The PROOFNAME command will display the "Proof" word translated to the right language. */ fprintRTF("{\\i "); ConvertBabelName("PROOFNAME"); fprintRTF("}. "); /* Transform all text until the end tag. */ ConvertString (proof); /* A square marks the end of a proof. */ CmdUnicodeChar (9633); CmdEndParagraph(0); ConvertString ("\\end{proof}"); diagnostics(4, "Exiting CmdProof"); /* The getTexUntil () function returns the pointer created by strdup (), so free it. */ free (proof); } } latex2rtf-2.3.18/Makefile0000777000175000017500000003616013664464323015404 0ustar wilfriedwilfriedCC?=gcc TAR?=gnutar RM?=rm -f MKDIR?=mkdir -p RMDIR?=rm -rf PKGMANDIR?=man #reasonable flags for developing #CFLAGS = -g -D_FORTIFY_SOURCE=2 -Wall -Waggregate-return -Wmissing-declarations -Wmissing-prototypes -Wredundant-decls -Wshadow -Wstrict-prototypes -Wformat=2 PLATFORM?=-DUNIX # Mac OS X, Linux, BSD #PLATFORM?=-DMSDOS # Windows/DOS #PLATFORM?=-DOS2 # OS/2 (does anyone still use this?) #PLATFORM?=-DMSDOS -DNOSTDERR # Windows/DOS without stderr #Uncomment for some windows machines (neither needed for djgpp nor for MinGW) #EXE_SUFFIX=.exe #Base directory - adapt as needed # Unix: PREFIX?=/usr/local #Uncomment next 2 lines for Windows #DESTDIR_DRIVE=C: #PREFIX?=$(DESTDIR_DRIVE)/PROGRA~1/latex2rtf #Name of executable binary --- beware of 8.3 restriction under DOS BINARY_NAME=latex2rtf$(EXE_SUFFIX) # Location of binary, man, info, and support files - adapt as needed BINDIR=$(PREFIX)/bin MANDIR=$(PREFIX)/share/$(PKGMANDIR)/man1 INFODIR=$(PREFIX)/share/info SUPPORTDIR=$(PREFIX)/share/latex2rtf CFGDIR=$(PREFIX)/share/latex2rtf/cfg #Uncomment next 5 lines for Windows #BINDIR= #MANDIR= #INFODIR= #SUPPORTDIR= #CFGDIR=/cfg # Nothing to change below this line - except: # for Windows, change "all : checkdir latex2rtf" to "all : latex2rtf" CFLAGS:=$(CFLAGS) $(PLATFORM) LIBS= -lm L2R_VERSION:="latex2rtf-`grep 'Version' version.h | sed 's/[^"]*"\([^" ]*\).*/\1/'`" SRCS=commands.c chars.c direct.c encodings.c fonts.c funct1.c tables.c ignore.c \ main.c stack.c cfg.c utils.c parser.c lengths.c counters.c letterformat.c \ preamble.c equations.c convert.c xrefs.c definitions.c graphics.c \ mygetopt.c styles.c preparse.c vertical.c fields.c \ labels.c biblio.c acronyms.c auxfile.c HDRS=commands.h chars.h direct.h encodings.h fonts.h funct1.h tables.h ignore.h \ main.h stack.h cfg.h utils.h parser.h lengths.h counters.h letterformat.h \ preamble.h equations.h convert.h xrefs.h definitions.h graphics.h encoding_tables.h \ version.h mygetopt.h styles.h preparse.h vertical.h fields.h labels.h biblio.h acronyms.h \ auxfile.h CFGS=cfg/fonts.cfg cfg/direct.cfg cfg/ignore.cfg cfg/style.cfg \ cfg/afrikaans.cfg cfg/bahasa.cfg cfg/basque.cfg cfg/brazil.cfg cfg/breton.cfg \ cfg/catalan.cfg cfg/croatian.cfg cfg/czech.cfg cfg/danish.cfg cfg/dutch.cfg \ cfg/english.cfg cfg/esperanto.cfg cfg/estonian.cfg cfg/finnish.cfg cfg/french.cfg \ cfg/galician.cfg cfg/german.cfg cfg/icelandic.cfg cfg/irish.cfg cfg/italian.cfg \ cfg/latin.cfg cfg/lsorbian.cfg cfg/magyar.cfg cfg/norsk.cfg cfg/nynorsk.cfg \ cfg/polish.cfg cfg/portuges.cfg cfg/romanian.cfg cfg/samin.cfg cfg/scottish.cfg \ cfg/serbian.cfg cfg/slovak.cfg cfg/slovene.cfg cfg/spanish.cfg cfg/swedish.cfg \ cfg/turkish.cfg cfg/usorbian.cfg cfg/welsh.cfg cfg/russian.cfg \ cfg/ukrainian.cfg cfg/frenchb.cfg cfg/greek.cfg cfg/british.cfg DOCS= doc/latex2rtf.1 doc/latex2png.1 doc/latex2rtf.texi doc/latex2rtf.pdf \ doc/latex2rtf.txt doc/latex2rtf.info doc/latex2rtf.html doc/credits \ doc/copying.txt doc/Makefile doc/latex2pn.txt doc/latex2rt.txt README= README README.DOS README.Mac README.OS2 README.Solaris README.VMS README.OSX \ Copyright ChangeLog SCRIPTS= scripts/latex2png scripts/latex2png_1 scripts/latex2png_2 \ scripts/pdf2pnga scripts/README \ scripts/Makefile scripts/test1.tex scripts/test2.tex scripts/test3.tex \ scripts/test3a.tex scripts/test4.tex scripts/test1fig.eps TEST= \ test/Makefile test/enc_cp852.tex test/fig_testd.pdf \ test/accentchars.tex test/enc_cp855.tex test/fig_testd.ps \ test/align.tex test/enc_cp865.tex test/fig_teste.pdf \ test/array.tex test/enc_cp866.tex test/fig_testf.png \ test/babel_czech.tex test/enc_decmulti.tex test/fig_tex.eps \ test/babel_french.tex test/enc_koi8-r.tex test/fonts.tex \ test/babel_frenchb.tex test/enc_koi8-u.tex test/fontsize.tex \ test/babel_german.tex test/enc_latin1.tex test/fonttest.tex \ test/babel_russian.tex test/enc_latin2.tex test/frac.tex \ test/babel_spanish.tex test/enc_latin3.tex test/geometry.tex \ test/bib_apacite.tex test/enc_latin4.tex test/geotest.tex \ test/bib_apacite_dblsp.tex test/enc_latin5.tex test/german.tex \ test/bib_apalike.tex test/enc_latin9.tex test/head_article.tex \ test/bib_apalike2.tex test/enc_maccyr.tex test/head_book.tex \ test/bib_apanat.tex test/head_report.tex \ test/bib_authordate.tex test/enc_next.tex test/hndout.sty \ test/bib_harvard.bib test/enc_utf8x.tex test/ifclause.tex \ test/bib_harvard.tex test/endnote.tex test/include.tex \ test/bib_natbib1.tex test/eqnnumber.tex test/include1.tex \ test/bib_natbib2.tex test/eqnnumber2.tex test/include2.tex \ test/bib_natbib3.tex test/eqns-koi8.tex test/include3.tex \ test/bib_simple.bib test/eqns.tex test/linux.tex \ test/bib_simple.tex test/eqns2.tex test/list.tex \ test/bib_super.tex test/essential.tex test/logo.tex \ test/bibentry_apalike.bib test/excalibur.tex test/misc1.tex \ test/bibentry_apalike.tex test/fancy.tex test/misc2.tex \ test/bibentry_plain.bib test/fig_endfloat.tex test/misc3.tex \ test/bibentry_plain.tex test/fig_oval.eps test/misc4.tex \ test/box.tex test/fig_oval.pict test/oddchars.tex \ test/bracecheck test/fig_oval.png test/overstrike.tex \ test/ch.tex test/fig_size.tex test/percent.tex \ test/chem.tex test/fig_test.eps test/picture.tex \ test/color.tex test/fig_test.tex test/qualisex.tex \ test/dblspace.tex test/fig_test2.tex test/report.tex \ test/defs.tex test/fig_test3.tex test/spago1.tex \ test/enc_applemac.tex test/fig_test4.tex test/subsup.tex \ test/enc_cp1250.tex test/fig_testa.eps test/tabbing.tex \ test/enc_cp1251.tex test/fig_testb.pdf test/tabular.tex \ test/enc_cp1252.tex test/fig_testb.ps test/theorem.tex \ test/enc_cp437.tex test/fig_testc.pdf test/ttgfsr7.tex \ test/enc_cp850.tex test/fig_testc.ps test/ucsymbols.tex \ test/bib_apa.tex test/bib_apa.bib test/bib_apacite2.tex \ test/bib_apacite2.bib test/fig_subfig.tex test/include4.tex \ test/include5.tex test/hyperref.tex test/bib_super.bib \ test/longstack.tex test/table_array1.tex test/table_array2.tex \ test/bib_apacite3.tex test/bib_apacite3.bib test/color2.tex \ test/fig_png.tex test/fig_10x15.png test/psfig.sty \ test/cyrillic.tex test/greek.tex test/direct.tex \ test/acronym.tex test/acronym.bib test/style.tex \ test/enc_moroz_koi8.tex test/enc_moroz_ot2.tex test/enc_moroz_utf8.tex\ test/enc_ot2.tex test/keywords.tex test/bib_natbib4.tex \ test/graphicspath.tex test/bib_style.tex test/tikz.tex \ test/tikz2.tex OBJS=fonts.o direct.o encodings.o commands.o stack.o funct1.o tables.o \ chars.o ignore.o cfg.o main.o utils.o parser.o lengths.o counters.o \ preamble.o letterformat.o equations.o convert.o xrefs.o definitions.o graphics.o \ mygetopt.o styles.o preparse.o vertical.o fields.o \ labels.o biblio.o auxfile.o acronyms.o all : checkdir latex2rtf # Windows: remove "checkdir" latex2rtf: $(OBJS) $(HDRS) $(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) $(LIBS) -o $(BINARY_NAME) cfg.o: Makefile cfg.c $(CC) $(CFLAGS) -DCFGDIR=\"$(CFGDIR)\" $(PLATFORM) -c $*.c main.o: Makefile main.c $(CC) $(CFLAGS) -DCFGDIR=\"$(CFGDIR)\" $(PLATFORM) -c $*.c %.o: Makefile %.c $(CC) $(CFLAGS) $(PLATFORM) -c $*.c check test: latex2rtf cd test && $(MAKE) clean cd test && $(MAKE) cd test && $(MAKE) check fullcheck: latex2rtf cd scripts && $(MAKE) cd test && $(MAKE) clean cd test && $(MAKE) all cd test && $(MAKE) check checkdir: $(README) $(SRCS) $(HDRS) $(CFGS) $(SCRIPTS) $(TEST) doc/latex2rtf.texi Makefile vms_make.com clean: checkdir -$(RM) $(OBJS) core $(BINARY_NAME) -$(RMDIR) tmp depend: $(SRCS) $(CC) -MM $(SRCS) >makefile.depend @echo "***** Append makefile.depend to Makefile manually ******" dist: checkdir releasedate latex2rtf doc $(SRCS) $(HDRS) $(CFGS) $(README) Makefile vms_make.com $(SCRIPTS) $(DOCS) $(TEST) $(MAKE) releasedate $(RMDIR) $(L2R_VERSION) $(MKDIR) $(L2R_VERSION) $(MKDIR) $(L2R_VERSION)/cfg $(MKDIR) $(L2R_VERSION)/doc $(MKDIR) $(L2R_VERSION)/test $(MKDIR) $(L2R_VERSION)/scripts ln $(SRCS) $(L2R_VERSION) ln $(HDRS) $(L2R_VERSION) ln $(README) $(L2R_VERSION) ln Makefile $(L2R_VERSION) ln vms_make.com $(L2R_VERSION) ln $(CFGS) $(L2R_VERSION)/cfg ln $(DOCS) $(L2R_VERSION)/doc ln $(SCRIPTS) $(L2R_VERSION)/scripts ln $(TEST) $(L2R_VERSION)/test $(TAR) cvfz $(L2R_VERSION).tar.gz $(L2R_VERSION) $(RMDIR) $(L2R_VERSION) uptodate: perl -pi.bak -e '$$date=scalar localtime; s/\(.*/($$date)";/' version.h $(RM) version.h.bak releasedate: perl -pi.bak -e '$$date=scalar localtime; s/\(.*/(released $$date)";/; s/d ..../d /;s/\d\d:\d\d:\d\d //;' version.h $(RM) version.h.bak doc: doc/latex2rtf.texi doc/Makefile cd doc && $(MAKE) -k install: latex2rtf doc/latex2rtf.1 $(CFGS) scripts/latex2png cd doc && $(MAKE) $(MKDIR) $(DESTDIR)$(BINDIR) $(MKDIR) $(DESTDIR)$(MANDIR) $(MKDIR) $(DESTDIR)$(CFGDIR) cp -p scripts/latex2png $(DESTDIR)$(BINDIR) cp -p doc/latex2rtf.1 $(DESTDIR)$(MANDIR) cp -p doc/latex2png.1 $(DESTDIR)$(MANDIR) cp -p $(CFGS) $(DESTDIR)$(CFGDIR) cp -p doc/latex2rtf.html $(DESTDIR)$(SUPPORTDIR) cp -p doc/latex2rtf.pdf $(DESTDIR)$(SUPPORTDIR) cp -p doc/latex2rtf.txt $(DESTDIR)$(SUPPORTDIR) cp -p $(BINARY_NAME) $(DESTDIR)$(BINDIR) @echo "******************************************************************" @echo "*** latex2rtf successfully installed as \"$(BINARY_NAME)\"" @echo "*** in directory \"$(BINDIR)\"" @echo "***" @echo "*** \"make install-info\" will install TeXInfo files " @echo "***" @echo "*** latex2rtf was compiled to search for its configuration files in" @echo "*** \"$(CFGDIR)\" " @echo "***" @echo "*** If the configuration files are moved then either" @echo "*** 1) set the environment variable RTFPATH to this new location, or" @echo "*** 2) use the command line option -P /path/to/cfg, or" @echo "*** 3) edit the Makefile and recompile" @echo "******************************************************************" install-info: doc/latex2rtf.info $(MKDIR) $(DESTDIR)$(INFODIR) cp -p doc/latex2rtf.info $(DESTDIR)$(INFODIR) install-info --info-dir=$(DESTDIR)$(INFODIR) doc/latex2rtf.info realclean: checkdir clean $(RM) makefile.depend $(L2R_VERSION).tar.gz cd doc && $(MAKE) clean cd test && $(MAKE) clean appleclean: sudo xattr -r -d com.apple.FinderInfo ../trunk sudo xattr -r -d com.apple.TextEncoding ../trunk splint: splint -weak $(SRCS) $(HDRS) .PHONY: all check checkdir clean depend dist doc install install_info realclean latex2rtf uptodate releasedate splint fullcheck # created using "make depend" commands.o: commands.c cfg.h main.h convert.h chars.h fonts.h preamble.h \ funct1.h tables.h equations.h letterformat.h commands.h parser.h \ xrefs.h ignore.h lengths.h definitions.h graphics.h vertical.h \ encodings.h labels.h acronyms.h biblio.h chars.o: chars.c main.h commands.h fonts.h cfg.h ignore.h encodings.h \ parser.h chars.h funct1.h convert.h utils.h vertical.h fields.h direct.o: direct.c main.h direct.h fonts.h cfg.h utils.h encodings.o: encodings.c main.h encoding_tables.h encodings.h fonts.h \ chars.h parser.h vertical.h fonts.o: fonts.c main.h convert.h fonts.h funct1.h commands.h cfg.h \ parser.h stack.h vertical.h funct1.o: funct1.c main.h convert.h funct1.h commands.h stack.h fonts.h \ cfg.h ignore.h utils.h encodings.h parser.h counters.h lengths.h \ definitions.h preamble.h xrefs.h equations.h direct.h styles.h \ graphics.h vertical.h tables.o: tables.c main.h convert.h fonts.h commands.h funct1.h tables.h \ stack.h cfg.h parser.h counters.h utils.h lengths.h preamble.h \ graphics.h vertical.h ignore.o: ignore.c main.h direct.h fonts.h cfg.h ignore.h funct1.h \ commands.h parser.h convert.h utils.h vertical.h main.o: main.c main.h mygetopt.h convert.h commands.h chars.h fonts.h \ stack.h direct.h ignore.h version.h funct1.h cfg.h encodings.h utils.h \ parser.h lengths.h counters.h preamble.h xrefs.h preparse.h vertical.h \ fields.h stack.o: stack.c main.h stack.h fonts.h cfg.o: cfg.c main.h convert.h funct1.h cfg.h utils.h utils.o: utils.c cfg.h main.h utils.h parser.h parser.o: parser.c main.h commands.h cfg.h stack.h utils.h parser.h \ fonts.h lengths.h definitions.h funct1.h lengths.o: lengths.c main.h utils.h lengths.h parser.h counters.o: counters.c main.h utils.h counters.h letterformat.o: letterformat.c main.h parser.h letterformat.h cfg.h \ commands.h funct1.h convert.h vertical.h preamble.o: preamble.c main.h convert.h utils.h preamble.h fonts.h cfg.h \ encodings.h parser.h funct1.h lengths.h ignore.h commands.h counters.h \ xrefs.h direct.h styles.h vertical.h auxfile.h acronyms.h equations.o: equations.c main.h convert.h commands.h stack.h fonts.h \ cfg.h ignore.h parser.h equations.h counters.h funct1.h lengths.h \ utils.h graphics.h xrefs.h chars.h preamble.h vertical.h fields.h convert.o: convert.c main.h convert.h commands.h chars.h funct1.h fonts.h \ stack.h tables.h equations.h direct.h ignore.h cfg.h encodings.h \ utils.h parser.h lengths.h counters.h preamble.h vertical.h fields.h xrefs.o: xrefs.c main.h utils.h convert.h funct1.h commands.h cfg.h \ xrefs.h parser.h preamble.h lengths.h fonts.h styles.h definitions.h \ equations.h vertical.h fields.h counters.h auxfile.h labels.h \ acronyms.h biblio.h definitions.o: definitions.c main.h convert.h definitions.h parser.h \ funct1.h utils.h cfg.h counters.h graphics.o: graphics.c main.h cfg.h graphics.h parser.h utils.h \ commands.h convert.h funct1.h preamble.h counters.h vertical.h mygetopt.o: mygetopt.c main.h mygetopt.h styles.o: styles.c main.h direct.h fonts.h cfg.h utils.h parser.h \ styles.h vertical.h preparse.o: preparse.c preparse.h cfg.h main.h utils.h definitions.h \ parser.h funct1.h vertical.o: vertical.c main.h funct1.h cfg.h utils.h parser.h lengths.h \ vertical.h convert.h commands.h styles.h fonts.h stack.h xrefs.h \ counters.h fields.h acronyms.h fields.o: fields.c main.h fields.h labels.o: labels.c main.h parser.h utils.h auxfile.h labels.h biblio.o: biblio.c main.h utils.h parser.h auxfile.h biblio.h acronyms.o: acronyms.c main.h parser.h utils.h cfg.h convert.h commands.h \ lengths.h vertical.h auxfile.h acronyms.h biblio.h labels.h auxfile.o: auxfile.c main.h utils.h parser.h convert.h latex2rtf-2.3.18/xrefs.c0000777000175000017500000022265013664233561015236 0ustar wilfriedwilfried /* * xrefs.c - commands for LaTeX cross references * * Copyright (C) 2001-2002 The Free Software Foundation * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License as published by the Free * Software Foundation; either version 2 of the License, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. * * You should have received a copy of the GNU General Public License along with * this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * * This file is available from http://sourceforge.net/projects/latex2rtf/ * * Authors: 2001-2002 Scott Prahl */ #include #include #include #include "main.h" #include "utils.h" #include "convert.h" #include "funct1.h" #include "commands.h" #include "cfg.h" #include "xrefs.h" #include "parser.h" #include "preamble.h" #include "lengths.h" #include "fonts.h" #include "styles.h" #include "definitions.h" #include "equations.h" #include "vertical.h" #include "fields.h" #include "counters.h" #include "auxfile.h" #include "labels.h" #include "acronyms.h" #include "biblio.h" char *g_figure_label = NULL; char *g_table_label = NULL; char *g_equation_label = NULL; char *g_section_label = NULL; int g_suppress_name = FALSE; static int g_warned_once = FALSE; #define MAX_LABELS 200 #define MAX_CITATIONS 1000 #define BIB_STYLE_ALPHA 0 #define BIB_STYLE_SUPER 1 #define BIB_STYLE_NUMBER 2 #define MAX_AUTHOR_SIZE 201 #define MAX_YEAR_SIZE 51 char *BIB_DASH_MARKER="%dash%"; char *g_label_list[MAX_LABELS]; int g_label_list_number = -1; typedef struct citekey_type { char *key; int number; } citekey_type; static char *g_all_citations[MAX_CITATIONS]; static int g_last_citation = 0; static int g_current_cite_type = 0; static int g_current_cite_seen = 0; static int g_current_cite_paren = 0; static char g_last_author_cited[MAX_AUTHOR_SIZE]; static char g_last_year_cited[MAX_YEAR_SIZE]; static int g_citation_longnamesfirst = 0; static int g_current_cite_item = 0; static int g_sorted_citations = FALSE; static int g_compressed_citations = FALSE; static char *g_bibpunct_open = NULL; static char *g_bibpunct_close = NULL; static char *g_bibpunct_cite_sep = NULL; static char *g_bibpunct_author_date_sep = NULL; static char *g_bibpunct_numbers_sep = NULL; static char *g_bibpunct_postnote_sep = NULL; static char *g_bibstyle_punct[2] = {"[", "]"}; static int g_bibpunct_cite_sep_touched = FALSE; static int g_bibpunct_style_paren_touched = FALSE; static int g_bibpunct_style = BIB_STYLE_ALPHA; static int g_in_bibliography = FALSE; void InitializeBibliography(void) { g_bibpunct_open = strdup("("); g_bibpunct_close = strdup(")"); g_bibpunct_cite_sep = strdup(","); g_bibpunct_author_date_sep = strdup(","); g_bibpunct_numbers_sep = strdup(","); g_bibpunct_postnote_sep = strdup(", "); g_bibpunct_cite_sep_touched = FALSE; g_bibpunct_style_paren_touched = FALSE; g_bibpunct_style = BIB_STYLE_ALPHA; } void set_longnamesfirst(void) { g_citation_longnamesfirst = TRUE; } void set_bibpunct_style_super(void) { g_bibpunct_style = BIB_STYLE_SUPER; } void set_bibpunct_style_number(void) { g_bibpunct_style = BIB_STYLE_NUMBER; } void set_bibpunct_style_separator(char *s) { g_bibpunct_cite_sep_touched = TRUE; g_bibpunct_cite_sep=strdup(s); } void set_bibpunct_style_paren(char *open, char *close) { g_bibpunct_style_paren_touched = TRUE; g_bibpunct_open = strdup(open); g_bibpunct_close = strdup(close); } static void set_author_date_and_numbers_sep(char *ad, char *n) { safe_free(g_bibpunct_author_date_sep); g_bibpunct_author_date_sep = strdup(ad); safe_free(g_bibpunct_numbers_sep); g_bibpunct_numbers_sep = strdup(n); } void set_sorted_citations(void) { g_sorted_citations = TRUE; } void set_compressed_citations(void) { g_compressed_citations = TRUE; } /************************************************************************* * return 1 if citation used otherwise return 0 and add citation to list ************************************************************************/ static int citation_used(char *citation) { int i; for (i = 0; i < g_last_citation; i++) { if (strcmp(citation, g_all_citations[i]) == 0) return 1; } if (g_last_citation > MAX_CITATIONS - 1) { diagnostics(WARNING, "Too many citations ... increase MAX_CITATIONS"); } else { g_all_citations[g_last_citation] = strdup(citation); g_last_citation++; } return 0; } /************************************************************************* purpose: obtains a reference from .aux file code==SCANAUX_NUMBER (0) means \token{reference}{number} -> "number" code==SCANAUX_SECT (1) means \token{reference}{{sect}{line}} -> "sect" for 'newlabel' (NEWLABEL_TOKEN) and 'bibcite' (BIBCITE_TOKEN) harvardcite is done natively without calling ScanAux ************************************************************************/ static char *ScanAux(int token_id, char *reference, int code) { switch (token_id) { case NEWLABEL_TOKEN : switch (code) { case SCANAUX_NUMBER: return getLabelDefinition(reference); case SCANAUX_SECT: return getLabelSection(reference); default: diagnostics(ERROR,"assert failed in ScanAux: unknown code (%d) for token %d",code,token_id); return NULL; } break; case BIBCITE_TOKEN: switch (code) { case SCANAUX_NUMBER: return getBiblioRef(reference); case SCANAUX_SECT: return getBiblioFirst(reference); default: diagnostics(ERROR,"assert failed in ScanAux: unknown code (%d) for token %d",code,token_id); return NULL; } break; default: diagnostics(ERROR,"assert failed in ScanAux: unknown token_id %d",token_id); } return NULL; } /************************************************************************* purpose: obtains a \bibentry{reference} from the .bbl file this consists of all lines after \bibentry{reference} until two newlines in a row are found. Finally, remove a '.' if at the end ************************************************************************/ static char *ScanBbl(char *reference) { char line[512]; static FILE *f_bbl = NULL; char *buffer, *target; char *s=NULL; char last_c; int i=1; if (g_bbl_file_missing || strlen(reference) == 0) { return NULL; } target = strdup_together3("{", reference,"}"); diagnostics(4, "seeking '%s' in .bbl", target); if (f_bbl == NULL && (f_bbl = my_fopen(g_bbl_name, "rb")) == NULL) { diagnostics(WARNING, "No .bbl file. Run LaTeX to create one."); g_bbl_file_missing = TRUE; return NULL; } rewind(f_bbl); /* scan each line for \bibentry{reference} */ while (my_fgets(line, 511, f_bbl)) { s = strstr(line,target); if (s) break; } safe_free(target); if (s == NULL) return NULL; buffer = (char *) malloc(4096); /* scan bbl file until we encounter \n\n */ last_c = '\0'; for (i=0; i<4096; i++) { buffer[i] = my_fgetc(f_bbl); if (feof(f_bbl)) break; if (buffer[i] == '\n' && last_c == '\n') break; last_c = buffer[i]; } /* strip trailing . and any spaces at the end */ while (buffer[i] ==' ' || buffer[i] == '\n') i--; if (buffer[i] == '.') i--; buffer[i+1] = '\0'; s = strdup_nocomments(buffer); safe_free(buffer); return s; } /****************************************************************************** purpose: creates RTF so that endnotes will be emitted at this point ******************************************************************************/ void CmdTheEndNotes(int code) { diagnostics(4, "Entering CmdTheEndNotes"); CmdVspace(VSPACE_BIG_SKIP); startParagraph("bibliography", PARAGRAPH_SECTION_TITLE); fprintRTF("{\\sect "); InsertStyle("section"); fprintRTF(" Notes"); CmdEndParagraph(0); fprintRTF("\\endnhere}"); } /****************************************************************************** purpose: converts footnotes and endnotes from LaTeX to Rtf params : code specifies whether it is a footnote or a thanks-mark ******************************************************************************/ void CmdFootNote(int code) { char *number, *text; static int thankno = 0; /*WH 2009-11-10: changed from 1 to 0*/ diagnostics(4, "Entering ConvertFootNote"); number = getBracketParam(); /* ignored by automatic footnumber * generation */ text = getBraceParam(); switch (code) { case FOOTNOTE_THANKS: thankno++; fprintRTF("{"); InsertStyle("footnote reference"); fprintRTF(" %d}\n", thankno); fprintRTF("{\\*\\footnote\\pard "); InsertStyle("footnote text"); fprintRTF("{"); InsertStyle("footnote reference"); fprintRTF("%d} ", thankno); break; case FOOTNOTE: fprintRTF("{"); InsertStyle("footnote reference"); fprintRTF("\\chftn}\n"); fprintRTF("{\\*\\footnote\\pard "); InsertStyle("footnote text"); fprintRTF("{"); InsertStyle("footnote reference"); fprintRTF("\\chftn} "); break; case FOOTNOTE_TEXT: fprintRTF("{\\*\\footnote\\pard "); InsertStyle("footnote text"); break; case ENDNOTE: fprintRTF("{"); InsertStyle("endnote reference"); fprintRTF("\\chftn}\n"); fprintRTF("{\\*\\footnote\\ftnalt\\pard "); InsertStyle("endnote text"); fprintRTF("{"); InsertStyle("endnote reference"); fprintRTF("\\chftn} "); break; case ENDNOTE_TEXT: fprintRTF("{\\*\\footnote\\ftnalt\\pard "); InsertStyle("endnote text"); break; } ConvertString(text); fprintRTF("}\n"); diagnostics(4, "Exiting CmdFootNote"); safe_free(text); if (number) safe_free(number); } /****************************************************************************** purpose: handle the \nocite{tag} ******************************************************************************/ void CmdNoCite(int code) { safe_free(getBraceParam()); /* just skip the parameter */ } /****************************************************************************** purpose: handle the \bibliographystyle ******************************************************************************/ void CmdBibliographyStyle(int code) { char *s = getBraceParam(); /* throw away bib style name */ diagnostics(4, "CmdBibliographyStyle <%s>", s); safe_free(s); } /****************************************************************************** purpose: handle the \bibstyle ******************************************************************************/ void CmdBibStyle(int code) { char *s = getBraceParam(); /* get style name */ diagnostics(4, "CmdBibStyle <%s>", s); /* Derived from `natbib.sty' on 2 Nov. 2010 */ if (strcmp(s, "nature") == 0) { g_bibstyle_punct[0] = "" ; g_bibstyle_punct[1] = "."; g_bibpunct_style = BIB_STYLE_SUPER; g_sorted_citations = TRUE; g_compressed_citations = TRUE; set_bibpunct_style_separator(","); set_bibpunct_style_paren("",""); set_author_date_and_numbers_sep("", ","); } else if (strcmp(s, "chicago") == 0) { g_bibpunct_style = BIB_STYLE_ALPHA; set_bibpunct_style_separator(";"); set_bibpunct_style_paren("(",")"); set_author_date_and_numbers_sep(",", ","); } else if (strcmp(s, "named") == 0) { g_bibpunct_style = BIB_STYLE_ALPHA; set_bibpunct_style_separator(";"); set_bibpunct_style_paren("[","]"); set_bibpunct_style_separator(";"); } else if (strcmp(s, "agu") == 0) { g_bibpunct_style = BIB_STYLE_ALPHA; set_bibpunct_style_separator(";"); set_bibpunct_style_paren("[","]"); set_bibpunct_style_separator(";"); set_author_date_and_numbers_sep(",", ",~"); } else if (strcmp(s, "egs") == 0) { g_bibpunct_style = BIB_STYLE_ALPHA; set_bibpunct_style_paren("(",")"); set_bibpunct_style_separator(";"); set_author_date_and_numbers_sep(",", ","); } else if (strcmp(s, "agsm") == 0) { g_bibpunct_style = BIB_STYLE_ALPHA; set_bibpunct_style_paren("(",")"); set_bibpunct_style_separator(","); set_author_date_and_numbers_sep("", ","); } else if (strcmp(s, "kluwer") == 0) { g_bibpunct_style = BIB_STYLE_ALPHA; set_bibpunct_style_paren("(",")"); set_bibpunct_style_separator(","); set_author_date_and_numbers_sep("", ","); } else if (strcmp(s, "dcu") == 0) { g_bibpunct_style = BIB_STYLE_ALPHA; set_bibpunct_style_paren("(",")"); set_bibpunct_style_separator(";"); set_author_date_and_numbers_sep(";", ","); } else if (strcmp(s, "aa") == 0) { g_bibpunct_style = BIB_STYLE_ALPHA; set_bibpunct_style_paren("(",")"); set_bibpunct_style_separator(";"); set_author_date_and_numbers_sep("", ","); } else if (strcmp(s, "pass") == 0) { g_bibpunct_style = BIB_STYLE_ALPHA; set_bibpunct_style_paren("(",")"); set_bibpunct_style_separator(";"); set_author_date_and_numbers_sep(",", ","); } else if (strcmp(s, "anngeo") == 0) { g_bibpunct_style = BIB_STYLE_ALPHA; set_bibpunct_style_paren("(",")"); set_bibpunct_style_separator(";"); set_author_date_and_numbers_sep(",", ","); } else if (strcmp(s, "nlinproc") == 0) { g_bibpunct_style = BIB_STYLE_ALPHA; set_bibpunct_style_paren("(",")"); set_bibpunct_style_separator(";"); set_author_date_and_numbers_sep(",", ","); } else if (strcmp(s, "cospar") == 0) { g_bibstyle_punct[0] = "" ; g_bibstyle_punct[1] = "."; g_bibpunct_style = BIB_STYLE_NUMBER; set_bibpunct_style_paren("/","/"); set_bibpunct_style_separator(","); set_author_date_and_numbers_sep("", ""); } else if (strcmp(s, "esa") == 0) { g_bibstyle_punct[0] = "" ; g_bibstyle_punct[1] = "."; g_bibpunct_style = BIB_STYLE_NUMBER; set_bibpunct_style_paren("(Ref.~",")"); set_bibpunct_style_separator(","); set_author_date_and_numbers_sep("", ""); } else if (strcmp(s, "plain") == 0 || strcmp(s, "alpha") == 0 || strcmp(s, "abbrv") == 0 || strcmp(s, "unsrt") == 0) { g_bibpunct_style = BIB_STYLE_NUMBER; set_bibpunct_style_paren("[","]"); set_bibpunct_style_separator(","); set_author_date_and_numbers_sep("", ","); } else if (strcmp(s, "plainnat") == 0 || strcmp(s, "abbrvnat") == 0 || strcmp(s, "unsrtnat") == 0) { g_bibpunct_style = BIB_STYLE_ALPHA; set_bibpunct_style_paren("[","]"); set_bibpunct_style_separator(","); set_author_date_and_numbers_sep(",", ","); } else diagnostics(WARNING, "\\bibstyle{%s} unknown -- ignored.", s); safe_free(s); } /****************************************************************************** purpose: handle the \bibliography ******************************************************************************/ void CmdBibliography(int code) { int err; char *s; s = getBraceParam(); /* throw away bibliography name */ safe_free(s); err = PushSource(g_bbl_name, NULL); g_in_bibliography = TRUE; if (!err) { diagnostics(2, "CmdBibliography ... begin Convert()"); Convert(); diagnostics(2, "CmdBibliography ... done Convert()"); /* PopSource();*/ } else diagnostics(WARNING, "Cannot open bibliography file. Create %s using BibTeX", g_bbl_name); g_in_bibliography = FALSE; } /****************************************************************************** purpose: handle the \thebibliography ******************************************************************************/ void CmdThebibliography(int code) { int amount = 450; int i; if (code & ON) { char *s = getBraceParam(); /* throw away widest_label */ diagnostics(4,"\\begin{thebibliography}"); safe_free(s); CmdEndParagraph(0); CmdVspace(VSPACE_MEDIUM_SKIP); if (g_document_type == FORMAT_APA) { ConvertString("\\begin{center}{\\bf"); } else { startParagraph("bibliography", PARAGRAPH_SECTION_TITLE); fprintRTF("{\\plain\\b\\fs32 "); } i = existsDefinition("refname"); /* see if refname has * been redefined */ if (i > -1) { char *str = expandDefinition(i); ConvertString(str); safe_free(str); } else { if (g_document_type == FORMAT_ARTICLE || g_document_type == FORMAT_APA) ConvertBabelName("REFNAME"); else ConvertBabelName("BIBNAME"); } if (g_document_type == FORMAT_APA) { ConvertString("}\\end{center}"); } else { fprintRTF("}"); CmdEndParagraph(0); } CmdVspace(VSPACE_SMALL_SKIP); PushEnvironment(BIBLIOGRAPHY_MODE); setLength("parindent", -amount); setLeftMarginIndent(getLeftMarginIndent() + amount); } else { diagnostics(4,"\\end{thebibliography}"); CmdEndParagraph(0); CmdVspace(VSPACE_SMALL_SKIP); PopEnvironment(); g_processing_list_environment = FALSE; } } /****************************************************************************** purpose: handle the \bibitem ******************************************************************************/ void CmdBibitem(int code) { char *label, *key, *signet, *s, *raw, *raw2, c; g_processing_list_environment = TRUE; CmdEndParagraph(0); startParagraph("bibitem", PARAGRAPH_FIRST); label = getBracketParam(); raw = getBraceParam(); raw2 = strdup_nocomments(raw); key = strdup_noblanks(raw2); safe_free(raw); safe_free(raw2); signet = strdup_nobadchars(key); s = ScanAux(BIBCITE_TOKEN, key, SCANAUX_NUMBER); if (label && !s) { /* happens when file needs to be latex'ed again */ if (!g_warned_once){ diagnostics(WARNING, "Cannot locate \\bibcite{%s} in .aux file",key); diagnostics(WARNING, "**** The .tex file probably needs to be LaTeXed again ***"); g_warned_once = TRUE; } fprintRTF("["); ConvertString(label); fprintRTF("]"); } else { diagnostics(4, "CmdBibitem <%s>", s); if (g_document_bibstyle == BIBSTYLE_STANDARD || (g_document_bibstyle == BIBSTYLE_NATBIB && g_bibpunct_style != BIB_STYLE_ALPHA)) { fprintRTF("%s", g_bibstyle_punct[0]); fprintRTF("{\\v\\*\\bkmkstart BIB_%s}", signet); ConvertString(s); fprintRTF("{\\*\\bkmkend BIB_%s}", signet); fprintRTF("%s", g_bibstyle_punct[1]); fprintRTF("\\tab\n"); } /* else emit nothing for APALIKE */ } if (s) safe_free(s); if (label) safe_free(label); safe_free(signet); safe_free(key); c = getNonBlank(); ungetTexChar(c); } /****************************************************************************** purpose: handle the \bibentry ******************************************************************************/ void CmdBibEntry(int code) { char *key, *s; key = getBraceParam(); s = ScanBbl(key); if (s) { ConvertString(s); safe_free(s); } safe_free(key); } void CmdNewblock(int code) { /* * if openbib chosen then start a paragraph with 1.5em indent * otherwise do nothing */ } /****************************************************************************** purpose: convert \index{classe!article@\textit{article}!section} to {\xe\v "classe:{\i article}:section"} ******************************************************************************/ void CmdIndex(int code) { char *text, *r, *s, *t; getNonBlank(); text = getDelimitedText('{', '}', TRUE); diagnostics(4, "CmdIndex \\index{%s}", text); fprintRTF("{\\xe{\\v "); t = text; while (t) { s = t; t = strchr(s, '!'); if (t) *t = '\0'; r = strchr(s, '@'); if (r) s = r + 1; ConvertString(s); /* while (*s && *s != '@') fprintRTF("%c",*s++); */ if (t) { fprintRTF("\\:"); t++; } } fprintRTF("}}"); diagnostics(4, "leaving CmdIndex"); safe_free(text); } void CmdPrintIndex(int code) { CmdEndParagraph(0); fprintRTF("\\page "); fprintRTF("{\\field{\\*\\fldinst{INDEX \\\\c 2}}{\\fldrslt{}}}"); } static int ExistsBookmark(char *s) { int i; if (!s) return FALSE; for (i = 0; i <= g_label_list_number; i++) { if (strcmp(s, g_label_list[i]) == 0) return TRUE; } return FALSE; } static void RecordBookmark(char *s) { if (!s) return; if (g_label_list_number >= MAX_LABELS) diagnostics(WARNING, "Too many labels...some cross-references will fail"); else { g_label_list_number++; g_label_list[g_label_list_number] = strdup(s); } } void InsertBookmark(char *name, char *text) { char *signet; if (!name) { if (getTexMode() == MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); fprintRTF("%s", text); return; } signet = strdup_nobadchars(name); if (ExistsBookmark(signet)) { diagnostics(4, "bookmark %s already exists", signet); } else { diagnostics(4, "bookmark %s being inserted around <%s>", signet, text); RecordBookmark(signet); if (fields_use_REF()) fprintRTF("{\\*\\bkmkstart BM%s}", signet); fprintRTF("%s", text); if (fields_use_REF()) fprintRTF("{\\*\\bkmkend BM%s}", signet); } safe_free(signet); } void InsertContentMark(char marker, char *s1, char *s2, char *s3) { fprintRTF("{\\field{\\*\\fldinst TC \""); ConvertString(s1); ConvertString(s2); ConvertString(s3); fprintRTF("\" \\\\f %c}{\\fldrslt }}", marker); } /****************************************************************************** purpose: handles \label \ref \pageref \cite ******************************************************************************/ void CmdLabel(int code) { int brace; char *text, *signet, *s, *t, *p; char *option = NULL; int mode = getTexMode(); option = getBracketParam(); text = getBraceParam(); if (strlen(text) == 0) { safe_free(text); return; } switch (code) { case LABEL_LABEL: if (g_processing_figure || g_processing_table) break; if (mode == MODE_DISPLAYMATH) { g_equation_label = strdup_nobadchars(text); diagnostics(4, "equation label is <%s>", text); } else InsertBookmark(text, ""); break; case LABEL_HYPERREF: case LABEL_REF: case LABEL_EQREF: case LABEL_VREF: signet = strdup_nobadchars(text); s = ScanAux(NEWLABEL_TOKEN, text, SCANAUX_SECT); if (code == LABEL_EQREF) fprintRTF("("); if (fields_use_REF()) { fprintRTF("{\\field{\\*\\fldinst{\\lang1024 REF BM%s \\\\* MERGEFORMAT }}", signet); fprintRTF("{\\fldrslt{"); } if (s) ConvertString(s); else fprintRTF("?"); if (fields_use_REF()) fprintRTF("}}}"); if (code == LABEL_EQREF) fprintRTF(")"); if (code == LABEL_VREF) { fprintRTF(" "); if (fields_use_REF()) { fprintRTF("{\\field{\\*\\fldinst{\\lang1024 PAGEREF BM%s \\\\p }}", signet); fprintRTF("{\\fldrslt{"); } fprintRTF("%s", signet); if (fields_use_REF()) fprintRTF("}}}"); } safe_free(signet); if (s) safe_free(s); break; case LABEL_HYPERPAGEREF: case LABEL_PAGEREF: signet = strdup_nobadchars(text); if (fields_use_REF()) { fprintRTF("{\\field{\\*\\fldinst{\\lang1024 PAGEREF BM%s \\\\* MERGEFORMAT }}", signet); fprintRTF("{\\fldrslt{"); } fprintRTF("%s", signet); if (fields_use_REF()) fprintRTF("}}}"); safe_free(signet); break; case LABEL_NAMEREF: signet = strdup_nobadchars(text); s = ScanAux(NEWLABEL_TOKEN, text, SCANAUX_NUMBER); if (s) { /* s should look like {2}{1}{Random Stuff\relax }{section.2}{} */ t = strchr(s,'{'); if (t) t=strchr(t+1,'{'); if (t) t=strchr(t+1,'{'); if (t) { t++; p=t; brace = 1; /* find end of string ... counting braces */ while (p && *p) { if (*p=='{') brace++; if (*p=='}') { brace--; if (brace == 0) break; } p++; } if (p) *p='\0'; ConvertString(t); } } safe_free(signet); if (s) safe_free(s); break; } safe_free(text); if (option) safe_free(option); } /* * given s="name1,name2,name3" returns "name2,name3" and makes s="name1" no * memory is allocated, commas are replaced by '\0' */ static char *popCommaName(char *s) { char *t; if (s == NULL || *s == '\0') return NULL; t = strchr(s, ','); if (!t) return NULL; *t = '\0'; /* replace ',' with '\0' */ return t + 1; /* next string starts after ',' */ } /****************************************************************************** purpose: return bracketed parameter \item<1> ---> "1" \item<> ---> "" \item the ---> NULL ^ ^ ^ \item <1> ---> "1" \item <> ---> "" \item the ---> NULL ^ ^ ^ ******************************************************************************/ static char *getAngleParam(void) { char c, *text; c = getNonBlank(); if (c == '<') { text = getDelimitedText('<', '>', TRUE); diagnostics(5, "getAngleParam [%s]", text); } else { ungetTexChar(c); text = NULL; diagnostics(5, "getAngleParam []"); } return text; } static int isEmptyName(char *s) { if (s == NULL) return 1; if (s[0] == '\0') return 1; if (s[0] == '{' && s[1] == '}') return 1; return 0; } static void ConvertNatbib(char *s, int code, char *pre, char *post, int first, int last) { char *n, *year, *abbv, *full, *v; int author_repeated, year_repeated; PushSource(NULL, s); n = getBraceParam(); year = getBraceParam(); abbv = getBraceParam(); full = getBraceParam(); PopSource(); diagnostics(4, "natbib pre=[%s] post=<%s> n=<%s> year=<%s> abbv=<%s> full=<%s>", pre, post, n, year, abbv, full); author_repeated = FALSE; year_repeated = FALSE; /* for numbers just write and then exit */ if (g_bibpunct_style != BIB_STYLE_ALPHA){ if (!first) { ConvertString(g_bibpunct_cite_sep); if (g_bibpunct_style == BIB_STYLE_NUMBER) fprintRTF(" "); } ConvertString(n); safe_free(n); safe_free(year); safe_free(abbv); safe_free(full); return; } switch (code) { case CITE_CITE: v = abbv; if (g_citation_longnamesfirst && !isEmptyName(full)) v = full; if (isEmptyName(v)) v = n; if (strcmp(v, g_last_author_cited) == 0) author_repeated = TRUE; if (strncmp(year, g_last_year_cited, 4) == 0) /* over simplistic test * ... */ year_repeated = TRUE; if (!first && !author_repeated) { ConvertString(g_bibpunct_cite_sep); fprintRTF(" "); } ConvertString(v); fprintRTF(" "); ConvertString(g_bibpunct_open); ConvertString(year); ConvertString(g_bibpunct_close); break; case CITE_T: case CITE_T_STAR: case CITE_T_CAP: v = abbv; if (CITE_T == code && g_citation_longnamesfirst && !g_current_cite_seen) if (!isEmptyName(full)) v = full; if (CITE_T_STAR == code) if (!isEmptyName(full)) v = full; if (strcmp(v, g_last_author_cited) == 0) author_repeated = TRUE; if (!first && !author_repeated) { ConvertString(g_bibpunct_close); ConvertString(g_bibpunct_cite_sep); fprintRTF(" "); } if (CITE_T_CAP == code) { v[1]=toupper(v[1]); } if (!author_repeated) { /* suppress repeated names */ ConvertString(v); my_strlcpy(g_last_author_cited, v, MAX_AUTHOR_SIZE); my_strlcpy(g_last_year_cited, year, MAX_YEAR_SIZE); if (g_bibpunct_style == BIB_STYLE_ALPHA) { fprintRTF(" "); ConvertString(g_bibpunct_open); if (pre) { ConvertString(pre); fprintRTF(" "); } ConvertString(year); } } else if (g_bibpunct_style == BIB_STYLE_ALPHA) { if (!year_repeated) { ConvertString(g_bibpunct_numbers_sep); fprintRTF(" "); ConvertString(year); } else { char *ss = strdup(year + 4); ConvertString(g_bibpunct_numbers_sep); ConvertString(ss); safe_free(ss); } } if (g_bibpunct_style == BIB_STYLE_ALPHA) { if (last && post && !isEmptyName(post)) { ConvertString(g_bibpunct_postnote_sep); ConvertString(post); } if (last) ConvertString(g_bibpunct_close); } break; case CITE_ALT: case CITE_ALT_STAR: case CITE_ALT_CAP: v = abbv; if (strcmp(v, g_last_author_cited) == 0) author_repeated = TRUE; if (strncmp(year, g_last_year_cited, 4) == 0) /* over simplistic test * ... */ year_repeated = TRUE; if (!first && !author_repeated) { ConvertString(g_bibpunct_cite_sep); fprintRTF(" "); } if (CITE_ALT_CAP == code) { v[1]=toupper(v[1]); } if (!author_repeated) { /* suppress repeated names */ ConvertString(v); my_strlcpy(g_last_author_cited, v, MAX_AUTHOR_SIZE); my_strlcpy(g_last_year_cited, year, MAX_YEAR_SIZE); fprintRTF(" "); if (pre) { ConvertString(pre); fprintRTF(" "); } ConvertString(year); } else { if (!year_repeated) { ConvertString(g_bibpunct_numbers_sep); fprintRTF(" "); ConvertString(year); } else { char *ss = strdup(year + 4); ConvertString(g_bibpunct_numbers_sep); ConvertString(ss); safe_free(ss); } } if (last && post && !isEmptyName(post)) { ConvertString(g_bibpunct_postnote_sep); ConvertString(post); } break; case CITE_P: case CITE_P_CAP: v = abbv; if (strcmp(v, g_last_author_cited) == 0) author_repeated = TRUE; if (strncmp(year, g_last_year_cited, 4) == 0) /* over simplistic test * ... */ year_repeated = TRUE; if (!first && !author_repeated) { ConvertString(g_bibpunct_cite_sep); fprintRTF(" "); } if (pre && g_current_cite_item == 1) { ConvertString(pre); fprintRTF(" "); } if (CITE_P_CAP == code) { v[1]=toupper(v[1]); } if (!author_repeated) { /* suppress repeated names */ ConvertString(v); my_strlcpy(g_last_author_cited, v, MAX_AUTHOR_SIZE); my_strlcpy(g_last_year_cited, year, MAX_YEAR_SIZE); ConvertString(g_bibpunct_author_date_sep); fprintRTF(" "); } else { ConvertString(g_bibpunct_numbers_sep); fprintRTF(" "); } ConvertString(year); if (last && post && !isEmptyName(post)) { ConvertString(g_bibpunct_postnote_sep); ConvertString(post); } break; case CITE_P_STAR: case CITE_ALP: case CITE_ALP_STAR: case CITE_ALP_CAP: v = abbv; if (CITE_P == code && g_citation_longnamesfirst && !g_current_cite_seen) if (!isEmptyName(full)) v = full; if (CITE_P_STAR == code) if (!isEmptyName(full)) v = full; if (strcmp(v, g_last_author_cited) == 0) author_repeated = TRUE; if (strncmp(year, g_last_year_cited, 4) == 0) /* over simplistic test * ... */ year_repeated = TRUE; if (pre && g_current_cite_item == 1) { ConvertString(pre); fprintRTF(" "); } if (!first && !author_repeated) { ConvertString(g_bibpunct_cite_sep); fprintRTF(" "); } if (CITE_ALP_CAP == code) { v[1]=toupper(v[1]); } if (!author_repeated) { /* suppress repeated names */ ConvertString(v); my_strlcpy(g_last_author_cited, v, MAX_AUTHOR_SIZE); my_strlcpy(g_last_year_cited, year, MAX_YEAR_SIZE); ConvertString(g_bibpunct_author_date_sep); fprintRTF(" "); ConvertString(year); } else { if (!year_repeated) { ConvertString(g_bibpunct_numbers_sep); fprintRTF(" "); ConvertString(year); } else { char *ss = strdup(year + 4); ConvertString(g_bibpunct_numbers_sep); ConvertString(ss); safe_free(ss); } } if (last && post && !isEmptyName(post)) { ConvertString(g_bibpunct_postnote_sep); ConvertString(post); } break; case CITE_AUTHOR: case CITE_AUTHOR_STAR: case CITE_AUTHOR_CAP: v = abbv; if (!first) { ConvertString(g_bibpunct_cite_sep); fprintRTF(" "); } if (CITE_AUTHOR == code && g_citation_longnamesfirst && !g_current_cite_seen) if (!isEmptyName(full)) v = full; if (CITE_AUTHOR_CAP == code) { v[1]=toupper(v[1]); } if (CITE_AUTHOR_STAR == code) if (!isEmptyName(full)) v = full; ConvertString(v); if (last && post && !isEmptyName(post)) { ConvertString(g_bibpunct_postnote_sep); ConvertString(post); } break; case CITE_YEAR: case CITE_YEAR_P: if (!first) { ConvertString(g_bibpunct_cite_sep); fprintRTF(" "); } if (CITE_YEAR != code && pre && g_current_cite_item == 1) { ConvertString(pre); fprintRTF(" "); } ConvertString(year); if (last && post && !isEmptyName(post)) { ConvertString(g_bibpunct_postnote_sep); ConvertString(post); } break; } safe_free(n); safe_free(year); safe_free(abbv); safe_free(full); } /* convert preparsed harvard cites */ static void ConvertHarvard(biblioElem *bibElem, int code, char *pre, char *post, int first) { char *year, *abbv, *full; int author_repeated, year_repeated; year = strdup(bibElem->biblioYear); abbv = strdup(bibElem->biblioAbbr); full = strdup(bibElem->biblioFull); diagnostics(4, "harvard pre=[%s] post=<%s> full=<%s> abbv=<%s> year=<%s>", pre, post, full, abbv, year); author_repeated = FALSE; year_repeated = FALSE; switch (code) { case CITE_AFFIXED: if (first && pre) { ConvertString(pre); fprintRTF(" "); } ConvertString(full); fprintRTF(" "); ConvertString(year); break; case CITE_CITE: ConvertString(full); fprintRTF(" "); ConvertString(year); break; case CITE_YEAR: case CITE_YEAR_STAR: ConvertString(year); break; case CITE_NAME: ConvertString(full); break; case CITE_AS_NOUN: ConvertString(full); fprintRTF(" ("); ConvertString(year); fprintRTF(")"); break; case CITE_POSSESSIVE: ConvertString(full); fprintRTF("\\rquote s ("); ConvertString(year); fprintRTF(")"); break; } safe_free(full); safe_free(year); safe_free(abbv); } void CmdNatexlab(int code) { char *s = getBracketParam(); if (!BIB_STYLE_NUMBER) ConvertString(s); safe_free(s); } /****************************************************************************** Use \bibpunct (in the preamble only) with 6 mandatory arguments: 1. opening bracket for citation 2. closing bracket 3. citation separator (for multiple citations in one \cite) 4. the letter n for numerical styles, s for superscripts else anything for author-year 5. punctuation between authors and date 6. punctuation between years (or numbers) when common authors missing One optional argument is the character coming before post-notes. It appears in square braces before all other arguments. May be left off. Example (and default) \bibpunct[, ]{(}{)}{;}{a}{,}{,} ******************************************************************************/ void CmdBibpunct(int code) { char *s = NULL; s = getBracketParam(); if (s) { safe_free(g_bibpunct_postnote_sep); g_bibpunct_postnote_sep = s; } safe_free(g_bibpunct_open); g_bibpunct_open=getBraceParam(); safe_free(g_bibpunct_close); g_bibpunct_close=getBraceParam(); safe_free(g_bibpunct_cite_sep); g_bibpunct_cite_sep=getBraceParam(); /* not implemented */ s=getBraceParam(); if (*s == 's') g_bibpunct_style = BIB_STYLE_SUPER; if (*s == 'n') g_bibpunct_style = BIB_STYLE_NUMBER; if (*s == 'a') g_bibpunct_style = BIB_STYLE_ALPHA; safe_free(s); safe_free(g_bibpunct_author_date_sep); g_bibpunct_author_date_sep=getBraceParam(); safe_free(g_bibpunct_numbers_sep); g_bibpunct_numbers_sep=getBraceParam(); g_bibpunct_cite_sep_touched = TRUE; g_bibpunct_style_paren_touched = TRUE; } static int CmpFunc( const void * _a, const void * _b) { citekey_type * aa = (citekey_type *) _a; citekey_type * bb = (citekey_type *) _b; int a = (*aa).number; int b = (*bb).number; if (a > b) return 1; if (a == b) return 0; return -1; } static char * reorder_citations(char *keys, int scan_aux_code) { char *key, *remaining_keys,*ordered_keys,*a,*b; int n,i; int dash; citekey_type names[100]; diagnostics(4,"original list <%s> scan aux code=%d",keys,scan_aux_code); /* gather citekeys and numbers into list */ key = keys; remaining_keys = popCommaName(key); n=0; while (key && n < 100) { char *s = ScanAux(BIBCITE_TOKEN, key, scan_aux_code); if (s) { int number; sscanf(s,"%d",&number); safe_free(s); names[n].key = key; names[n].number = number; n++; } key = remaining_keys; remaining_keys = popCommaName(key); } /* if there is no .aux file or only one key return original list */ if (n<=1) { ordered_keys = strdup(keys); return ordered_keys; } /* sort list according to the numbers */ qsort(names, n, sizeof(citekey_type), CmpFunc); /* write the sorted list of keys into a string */ ordered_keys=strdup(names[0].key); dash = FALSE; for (i=1; i",ordered_keys); return ordered_keys; } /****************************************************************************** purpose: handles \cite ******************************************************************************/ void CmdCite(int code) { char *text, *str1; char *keys, *key, *next_keys; char *option = NULL; char *pretext = NULL; int first_key = TRUE; /* Setup punctuation and read options before citation */ g_current_cite_paren = TRUE; g_last_author_cited[0] = '\0'; g_last_year_cited[0] = '\0'; if (g_document_bibstyle == BIBSTYLE_STANDARD) { safe_free(g_bibpunct_open); safe_free(g_bibpunct_close); g_bibpunct_open = strdup("["); g_bibpunct_close = strdup("]"); option = getBracketParam(); } if (g_document_bibstyle == BIBSTYLE_APALIKE) { option = getBracketParam(); } if (g_document_bibstyle == BIBSTYLE_AUTHORDATE) { option = getBracketParam(); } if (g_document_bibstyle == BIBSTYLE_APACITE) { pretext = getAngleParam(); option = getBracketParam(); if (code != CITE_CITE && code != CITE_FULL && code != CITE_SHORT && code != CITE_YEAR) g_current_cite_paren = FALSE; g_current_cite_type = code; } text = getBraceParam(); str1 = strdup_nocomments(text); safe_free(text); text = str1; if (strlen(text) == 0) { safe_free(text); if (pretext) safe_free(pretext); if (option) safe_free(option); return; } /* output text before citation */ if (g_current_cite_paren) { fprintRTF("\n"); ConvertString(g_bibpunct_open); } if (pretext && g_document_bibstyle == BIBSTYLE_APACITE) { ConvertString(pretext); fprintRTF(" "); } /* clean-up keys and sort if necessary */ keys = strdup_noblanks(text); safe_free(text); if (g_sorted_citations){ text = reorder_citations(keys,SCANAUX_NUMBER); safe_free(keys); keys = text; } /* now start processing keys */ key = keys; next_keys = popCommaName(key); g_current_cite_item = 0; while (key) { char *s, *t; g_current_cite_item++; if (strcmp(key,BIB_DASH_MARKER)==0) { fprintRTF("-"); first_key = TRUE; /* inhibit comma after dash */ key = next_keys; next_keys = popCommaName(key); /* key modified to be a * single key */ continue; } s = ScanAux(BIBCITE_TOKEN, key, SCANAUX_NUMBER); /* look up bibliographic * reference */ if (g_document_bibstyle == BIBSTYLE_APALIKE) { /* can't use Word refs for APALIKE or APACITE */ t = s ? s : key; if (!first_key) { ConvertString(g_bibpunct_cite_sep); fprintRTF(" "); } ConvertString(t); } if (g_document_bibstyle == BIBSTYLE_AUTHORDATE) { if (!first_key) { ConvertString(g_bibpunct_cite_sep); fprintRTF(" "); } t = s ? s : key; if (code == CITE_SHORT) g_suppress_name = TRUE; ConvertString(t); if (code == CITE_SHORT) g_suppress_name = FALSE; } if (g_document_bibstyle == BIBSTYLE_APACITE) { if (!first_key) { ConvertString(g_bibpunct_cite_sep); fprintRTF(" "); } t = s ? s : key; g_current_cite_seen = citation_used(key); ConvertString(t); } if (g_document_bibstyle == BIBSTYLE_STANDARD) { char *signet = strdup_nobadchars(key); if (!first_key) { ConvertString(g_bibpunct_cite_sep); fprintRTF(" "); } t = s ? s : signet; /* if .aux is missing or * incomplete use original * citation */ if (fields_use_REF()) { fprintRTF("{\\field{\\*\\fldinst{\\lang1024 REF BIB_%s \\\\* MERGEFORMAT }}", signet); fprintRTF("{\\fldrslt{"); } ConvertString(t); if (fields_use_REF()) fprintRTF("}}}"); safe_free(signet); } first_key = FALSE; key = next_keys; next_keys = popCommaName(key); /* key modified to be a * single key */ safe_free(s); } /* final text after citation */ if (option) { ConvertString(g_bibpunct_postnote_sep); ConvertString(option); } if (g_current_cite_paren) { fprintRTF("\n"); ConvertString(g_bibpunct_close); } safe_free(keys); safe_free(option); safe_free(pretext); } /****************************************************************************** purpose: handles \citations for natbib package ******************************************************************************/ void CmdNatbibCite(int code) { char *text, *str1; char *keys, *key, *next_keys; char *option = NULL; char *pretext = NULL; int first_key = TRUE; int last_key = FALSE; /* Setup punctuation and read options before citation */ g_current_cite_paren = TRUE; g_last_author_cited[0] = '\0'; g_last_year_cited[0] = '\0'; if (!g_bibpunct_cite_sep_touched) { safe_free(g_bibpunct_cite_sep); g_bibpunct_cite_sep = strdup(";"); } if (!g_bibpunct_style_paren_touched) { safe_free(g_bibpunct_cite_sep); g_bibpunct_cite_sep = strdup(";"); } pretext = getBracketParam(); option = getBracketParam(); if (option == NULL) { option = pretext; pretext = NULL; } if (code != CITE_P && code != CITE_P_STAR && code != CITE_YEAR_P) g_current_cite_paren = FALSE; if (g_bibpunct_style == BIB_STYLE_SUPER) g_current_cite_paren = FALSE; if (g_bibpunct_style == BIB_STYLE_NUMBER) g_current_cite_paren = TRUE; text = getBraceParam(); str1 = strdup_nocomments(text); safe_free(text); text = str1; /* no citation, just clean up and exit */ if (strlen(text) == 0) { safe_free(text); if (pretext) safe_free(pretext); if (option) safe_free(option); return; } /* superscript style */ if (g_bibpunct_style == BIB_STYLE_SUPER) fprintRTF("{\\up%d\\fs%d ", script_shift(), script_size()); /* write open parenthesis before citation starts */ if (g_current_cite_paren) ConvertString(g_bibpunct_open); /* clean-up keys and sort if necessary */ keys = strdup_noblanks(text); safe_free(text); if (g_sorted_citations){ text = reorder_citations(keys,SCANAUX_SECT); safe_free(keys); keys = text; } /* now process each citation key */ g_current_cite_item = 0; key = keys; next_keys = popCommaName(key); last_key = !next_keys; while (key) { char *s; g_current_cite_item++; if (strcmp(key,BIB_DASH_MARKER)==0) { /* a citation, not a dash */ fprintRTF("-"); /* just write a dash */ first_key = TRUE; /* no comma after dash */ } else { /* look up citation and write it to the RTF stream */ s = ScanAux(BIBCITE_TOKEN, key, SCANAUX_NUMBER); diagnostics(4, "natbib key=[%s] <%s> ", key, s); if (s) { g_current_cite_seen = citation_used(key); ConvertNatbib(s, code, pretext, option, first_key, last_key); } else { if (!first_key) { ConvertString(g_bibpunct_cite_sep); fprintRTF(" "); } ConvertString(key); } if (s) safe_free(s); first_key = FALSE; } key = next_keys; next_keys = popCommaName(key); last_key = !next_keys; } if (g_current_cite_paren) ConvertString(g_bibpunct_close); if (g_bibpunct_style == BIB_STYLE_SUPER) fprintRTF("}"); if (keys) safe_free(keys); if (option) safe_free(option); if (pretext) safe_free(pretext); } /****************************************************************************** purpose: handles \citations for harvard.sty ******************************************************************************/ void CmdHarvardCite(int code) { char *text, *s; char *keys, *key, *next_keys; char *posttext = NULL; char *pretext = NULL; int first_key = TRUE; /* Setup punctuation and read options before citation */ g_current_cite_paren = TRUE; g_last_author_cited[0] = '\0'; g_last_year_cited[0] = '\0'; if (code == CITE_AS_NOUN || code == CITE_YEAR_STAR || code == CITE_NAME || code == CITE_POSSESSIVE) g_current_cite_paren = FALSE; /* read citation entry */ posttext = getBracketParam(); text = getBraceParam(); if (code == CITE_AFFIXED) pretext = getBraceParam(); s = strdup_nocomments(text); safe_free(text); text = s; if (strlen(text) == 0) { safe_free(text); if (pretext) safe_free(pretext); if (posttext)safe_free(posttext); return; } /* output text before citation */ if (g_current_cite_paren) { fprintRTF("\n"); ConvertString(g_bibpunct_open); } /* clean-up keys and sort if necessary */ keys = strdup_noblanks(text); safe_free(text); if (g_sorted_citations){ text = reorder_citations(keys,SCANAUX_NUMBER); safe_free(keys); keys = text; } /* now start processing keys */ key = keys; next_keys = popCommaName(key); g_current_cite_item = 0; while (key) { biblioElem *hcite; g_current_cite_item++; if (strcmp(key,BIB_DASH_MARKER)==0) { fprintRTF("-"); first_key = TRUE; key = next_keys; next_keys = popCommaName(key); continue; } hcite = getBiblio(key); if (!first_key) { ConvertString(g_bibpunct_cite_sep); fprintRTF(" "); } /* make sure the cite was found and that the type is hardvard */ if (NULL != hcite && hcite->biblioType == BIBLIO_HARVARD) { g_current_cite_seen = citation_used(key); ConvertHarvard(hcite, code, pretext, NULL, first_key); } else { ConvertString(key); } first_key = FALSE; key = next_keys; next_keys = popCommaName(key); } /* final text after citation */ if (posttext) { fprintRTF("%s", g_bibpunct_postnote_sep); ConvertString(posttext); } if (g_current_cite_paren) { fprintRTF("\n"); ConvertString(g_bibpunct_close); } if (keys) safe_free(keys); if (posttext) safe_free(posttext); if (pretext) safe_free(pretext); } static void putHtmlRTF(const char *style) { int n; if (style) { /* possible styles are "tt", "rm", "sf", and "same" */ if (strstr(style,"rm")) CmdFontFamily(F_FAMILY_ROMAN); else if (strstr(style,"tt")) CmdFontFamily(F_FAMILY_TYPEWRITER); else if (strstr(style,"sf")) CmdFontFamily(F_FAMILY_SANSSERIF); } else CmdFontFamily(F_FAMILY_TYPEWRITER); n = existsDefinition("UrlFont"); if (n != -1) ConvertString("\\UrlFont"); } /****************************************************************************** purpose: just create a hyperlink using word fields ******************************************************************************/ static void InsertRtfHyperlink(const char *text, const char *url, const char *baseurl, const char *style) { char * fullurl = strdup_together(baseurl,url); fprintRTF("{"); putHtmlRTF(style); fprintRTF("\\field{\\*\\fldinst{ HYPERLINK \""); putRtfStrEscaped(fullurl); fprintRTF("\" }{{}}}{\\fldrslt{"); ConvertString(text); fprintRTF("}}}"); safe_free(fullurl); } /****************************************************************************** purpose: handles \htmladdnormallink{text}{link} ******************************************************************************/ void CmdHtml(int code) { static char *baseurl = NULL; static char *urlstyle = NULL; char *text=NULL; char *url=NULL; char *s = NULL; switch (code) { case LABEL_HTMLADDNORMALREF: text = getBraceParam(); url = getBraceParam(); while ((s = strstr(text, "\\~{}")) != NULL) { *s = '~'; my_strcpy(s + 1, s + 4); } while ((s = strstr(url, "\\~{}")) != NULL) { *s = '~'; my_strcpy(s + 1, s + 4); } InsertRtfHyperlink(text, url, NULL, NULL); break; case LABEL_HTMLREF: text = getBraceParam(); url = getBraceParam(); ConvertString(text); break; case LABEL_HYPERREF: /* \hyperref[label]{text} or \hyperref{url}{category}{name}{text} */ url = getBracketParam(); if (!url) { char *a, *b, *category, *name; a = getBraceParam(); category = getBraceParam(); name = getBraceParam(); b = strdup_together3(a,"#",category); url = strdup_together3(b,".",name); safe_free(b); safe_free(name); safe_free(category); safe_free(a); } text = getBraceParam(); InsertRtfHyperlink(text, url, baseurl, urlstyle); break; case LABEL_HREF: url = getBraceParam(); text = getBraceParam(); InsertRtfHyperlink(text, url, baseurl, urlstyle); break; case LABEL_URL_HYPER: /* cannot use insertHyperlink because url has toxic characters */ url = getBraceRawParam(); text = strdup_together(baseurl,url); fprintRTF("{"); putHtmlRTF(urlstyle); fprintRTF("\\field{\\*\\fldinst{ HYPERLINK \""); putRtfStrEscaped(text); fprintRTF("\" }{{}}}{\\fldrslt{"); putRtfStrEscaped(text); fprintRTF("}}}"); break; case LABEL_URL: case LABEL_NO_LINK_URL: url = getBraceRawParam(); text = strdup_together(baseurl,url); fprintRTF("{"); putHtmlRTF(urlstyle); putRtfStrEscaped(text); fprintRTF("}"); break; case LABEL_BASE_URL: if (baseurl) safe_free(baseurl); baseurl = getBraceRawParam(); break; case LABEL_URLSTYLE: if (urlstyle) safe_free(urlstyle); urlstyle = getBraceParam(); break; } if (text) safe_free(text); if (url) safe_free(url); } void CmdBCAY(int code) { char *s=NULL, *t, *v, *year; s = getBraceParam(); diagnostics(4, "Entering CmdBCAY", s); t = getBraceParam(); year = getBraceParam(); v = g_current_cite_seen ? t : s; diagnostics(4, "s = <%s>", s); diagnostics(4, "t = <%s>", t); diagnostics(4, "year = <%s>", year); diagnostics(4, "type = %d, seen = %d, item= %d", g_current_cite_type, g_current_cite_seen, g_current_cite_item); switch (g_current_cite_type) { case CITE_CITE: case CITE_CITE_NP: case CITE_CITE_A: if (strcmp(v, g_last_author_cited) != 0) { /* suppress repeated names */ ConvertString(v); my_strlcpy(g_last_author_cited, v, MAX_AUTHOR_SIZE); my_strlcpy(g_last_year_cited, year, MAX_YEAR_SIZE); if (g_current_cite_type == CITE_CITE_A) fprintRTF(" ("); else fprintRTF(", "); } ConvertString(year); if (g_current_cite_type == CITE_CITE_A) fprintRTF(")"); break; case CITE_CITE_AUTHOR: ConvertString(v); break; case CITE_FULL: case CITE_FULL_NP: case CITE_FULL_A: ConvertString(s); if (g_current_cite_type == CITE_FULL_A) fprintRTF(" ("); else fprintRTF(", "); ConvertString(year); if (g_current_cite_type == CITE_FULL_A) fprintRTF(")"); break; case CITE_FULL_AUTHOR: ConvertString(s); break; case CITE_SHORT: case CITE_SHORT_NP: case CITE_SHORT_A: case CITE_SHORT_AUTHOR: ConvertString(t); if (g_current_cite_type == CITE_SHORT_A) fprintRTF(" ("); else fprintRTF(", "); ConvertString(year); if (g_current_cite_type == CITE_SHORT_A) fprintRTF(")"); break; case CITE_YEAR: case CITE_YEAR_NP: ConvertString(year); break; } safe_free(s); safe_free(t); safe_free(year); } static void ConvertBraceParam(char *pre, char *post) { char *s=NULL; char *t=NULL; s = getBraceParam(); if (strlen(s)>0) { t = strdup_together3(pre,s,post); ConvertString(t); safe_free(t); } safe_free(s); } static void DiscardBraceParam(void) { char *s; s = getBraceParam(); if (s) safe_free(s); } /****************************************************************************** purpose: handles apacite stuff ******************************************************************************/ void CmdApaCite(int code) { int n; char *s; char * month[] = {"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"}; switch (code) { case 0: fprintRTF(" ("); break; /* BBOP */ case 1: fprintRTF("&"); break; /* BBAA */ case 2: fprintRTF("and"); break; /* BBAB */ case 3: fprintRTF(", "); break; /* BBAY */ case 4: fprintRTF("; "); break; /* BBC */ case 5: fprintRTF(", "); break; /* BBN */ case 6: fprintRTF(")"); break; /* BBCP */ case 7: fprintRTF(""); break; /* BBOQ */ case 8: fprintRTF(""); break; /* BBCQ */ case 9: fprintRTF(","); break; /* BCBT */ case 10: fprintRTF(","); break; /* BCBL */ case 11: s = getBraceParam(); fprintRTF("et al."); safe_free(s); break; /* BOthers */ case 12: fprintRTF("in press"); break; /* BIP */ case 13: fprintRTF("and"); break; /* BAnd */ case 14: fprintRTF("Ed."); break; /* BED */ case 15: fprintRTF("Eds."); break; /* BEDS */ case 16: fprintRTF("Trans."); break; /* BTRANS */ case 17: fprintRTF("Trans."); break; /* BTRANSS */ case 18: fprintRTF("Chair"); break; /* BCHAIR */ case 19: fprintRTF("Chairs"); break; /* BCHAIRS */ case 20: fprintRTF("Vol."); break; /* BVOL */ case 21: fprintRTF("Vols."); break; /* BVOLS */ case 22: fprintRTF("No."); break; /* BNUM */ case 23: fprintRTF("Nos."); break; /* BNUMS */ case 24: fprintRTF("ed."); break; /* BEd */ case 25: fprintRTF("p."); break; /* BPG */ case 26: fprintRTF("pp."); break; /* BPGS */ case 27: fprintRTF("Tech. Rep."); break; /* BTR */ case 28: fprintRTF("Doctoral dissertation"); break; /* BPhD */ case 29: fprintRTF("Unpublished doctoral dissertation"); break; /* BUPhD */ case 30: fprintRTF("Master's thesis"); break; /* BMTh */ case 31: fprintRTF("Unpublished master's thesis"); break; /* BUMTh */ case 32: fprintRTF("Original work published "); break; /* BOWP */ case 33: fprintRTF("Reprinted from "); break; /* BREPR */ case 34: s = getBraceParam(); /* BCnt {1} */ if (sscanf(s, "%d", &n) == 1) fprintRTF("%c", (char) 'a' + n - 1); safe_free(s); break; case 35: if (g_current_cite_paren || g_in_bibliography) fprintRTF("&"); else fprintRTF("and"); /* BBA */ break; case 36: DiscardBraceParam(); /* \AX{entry} */ diagnostics(4, "Ignoring \\AX{blah blah}"); break; case 37: fprintRTF(". "); break; /* BPBI */ case 38: fprintRTF("In"); break; /* BIn */ case CITE_APA_CITE_METASTAR: ConvertString("$\\star"); break; case CITE_APA_CITE_YEAR: ConvertBraceParam("",""); /* \APACyear{1991} */ break; case CITE_APA_CITE_A_TITLE: ConvertBraceParam("``","''"); break; case CITE_APA_CITE_B_TITLE: ConvertBraceParam("\\textit{","}"); /* \APACcitebtitle{title} */ break; case CITE_APA_CITE_INSERT: DiscardBraceParam(); /* discard \APACinsertmetastar{art 1} ?? */ break; case CITE_APA_YMD: fprintRTF("("); ConvertBraceParam("",""); /* \APACrefYearMonthDay{1991}{month}{day} */ ConvertBraceParam(", ",""); /* month */ ConvertBraceParam(" ",""); /* day */ fprintRTF(")"); break; case CITE_APA_REF_A_TITLE: DiscardBraceParam(); /* ignore first entry?? */ ConvertBraceParam("",""); /* \APACrefatitle{title}{title} */ break; case CITE_APA_REF_B_TITLE: DiscardBraceParam(); /* ignore first entry?? */ ConvertBraceParam("\\textit{","}"); /* \APACrefbtitle{title}{title} */ break; case CITE_APA_JVNP: ConvertBraceParam("\\textit{","}"); /* \APACjournalVolNumPages{Journal of nothingness}{2}{}{1-2} */ ConvertBraceParam(", \\textit{","}"); /* volume */ ConvertBraceParam("(",")"); /* number (10) */ ConvertBraceParam(", ",""); /* pages */ break; case CITE_APA_REF_YEAR: ConvertBraceParam("(",")"); /* \APACrefYear{1991} */ break; case CITE_APA_ADD_PUB: ConvertBraceParam("",": "); /* \APACaddressPublisher{Somewhere}{PublishCo} */ ConvertBraceParam("",""); break; case CITE_PRINT_BACK_REFS: /* ignore \PrintBackRefs{\CurrentBib} */ DiscardBraceParam(); break; case CITE_PRINT_ORDINAL: case CITE_PRINT_CARDINAL: ConvertBraceParam("",""); break; case CITE_APA_ADD_PUB_EQ_AUTHOR: /* \APACaddressPublisherEqAuth{Washington, DC}{{American Psychiatric Association}} */ ConvertBraceParam("",": Author"); DiscardBraceParam(); break; case CITE_APA_REF_A_E_TITLE: /* english translation of article */ DiscardBraceParam(); ConvertBraceParam("[","]"); break; case CITE_APA_REF_B_E_TITLE: /* english translation of book */ DiscardBraceParam(); ConvertBraceParam("[","]"); break; case CITE_APA_MONTH: s = getBraceParam(); if (s && *s) { sscanf(s, "%d", &n); ConvertString(month[n-1]); safe_free(s); } break; case CITE_APA_B_VOL_ED_TR: /* \APACbVolEdTR{}{tech report}*/ DiscardBraceParam(); ConvertBraceParam("(",")"); break; case CITE_APA_B_VOL_ED_TR_PGS: /* \APACbVolEdTRpgs{}{tech report}{}*/ fprintRTF("("); DiscardBraceParam(); ConvertBraceParam("",""); /* \APACbVolEdTRpgs{}{tech report}{}*/ ConvertBraceParam(", ",""); /* more info */ fprintRTF(")"); break; case CITE_APA_ADD_INST: /* APACaddressInstitution{add}{inst} */ ConvertBraceParam("",""); ConvertBraceParam(": ",""); /* more info */ break; case CITE_APA_HOW: ConvertBraceParam("",""); break; case CITE_APA_ORIG_YEAR_NOTE: ConvertBraceParam("(Original work published ",")"); DiscardBraceParam(); break; case CITE_APA_ORIG_JOUR: s = getBraceParam(); /* year */ ConvertBraceParam("(Reprinted from \\textit{","}"); /* article */ if (s && *s) { fprintRTF(", "); ConvertString(s); safe_free(s); } ConvertBraceParam(", \\textit{","}"); /* volume */ ConvertBraceParam("(",")"); /* number (10) */ ConvertBraceParam(", ",""); /* pages */ fprintRTF(")"); break; case CITE_APA_REF_NOTE: ConvertBraceParam("(",")"); break; case CITE_APA_UNSKIP: /*do nothing! */ break; default:; } } /****************************************************************************** purpose: handles \citename from authordate bib style ******************************************************************************/ void CmdCiteName(int code) { char *s=NULL; s = getBraceParam(); diagnostics(4, "Entering CmdCitename [%s]", (s) ? s : ""); if (!g_suppress_name) ConvertString(s); safe_free(s); } /****************************************************************************** purpose: handles \numberline{3.2.1} ******************************************************************************/ void CmdNumberLine(int code) { char *number; number = getBraceParam(); diagnostics(4, "Entering CmdNumberLine [%s]", number); ConvertString(number); fprintRTF("\\tab\n"); safe_free(number); } /****************************************************************************** purpose: handles \harvarditem[optional]{a}{b}{c} \harvardyearleft \harvardyearright \harvardand ******************************************************************************/ void CmdHarvard(int code) { switch (code) { case CITE_HARVARD_ITEM: ignoreBracketParam(); ignoreBraceParam(); ignoreBraceParam(); ignoreBraceParam(); break; case CITE_HARVARD_YEAR_LEFT: fprintRTF("("); break; case CITE_HARVARD_YEAR_RIGHT: fprintRTF(")"); break; case CITE_HARVARD_AND: fprintRTF("&"); default: break; } } /****************************************************************************** purpose: handles \citename from authordate bib style ******************************************************************************/ void CmdContentsLine(int code) { char *type, *text, *num, *contents_type; type = getBraceParam(); text = getBraceParam(); num = getBraceParam(); diagnostics(4, "Entering CmdContentsLine %s [%s]", type, text); startParagraph("contents", PARAGRAPH_SECTION_TITLE); fprintRTF("{"); contents_type = strdup_together("contents_", type); InsertStyle(contents_type); fprintRTF(" "); ConvertString(text); CmdEndParagraph(0); fprintRTF("}"); safe_free(type); safe_free(text); safe_free(num); safe_free(contents_type); } /****************************************************************************** purpose: handles \listoffigures \listoftables ******************************************************************************/ void CmdListOf(int code) { char c = ' '; diagnostics(4, "Entering CmdListOf"); startParagraph("contents", PARAGRAPH_SECTION_TITLE); fprintRTF(" "); switch (code) { case LIST_OF_FIGURES: ConvertBabelName("LISTFIGURENAME"); c = 'f'; break; case LIST_OF_TABLES: ConvertBabelName("LISTTABLENAME"); c = 't'; break; case TABLE_OF_CONTENTS: ConvertBabelName("CONTENTSNAME"); c = 'c'; break; } CmdEndParagraph(0); startParagraph("Normal", PARAGRAPH_GENERIC); CmdVspace(VSPACE_SMALL_SKIP); g_tableofcontents = TRUE; fprintRTF("{\\field{\\*\\fldinst TOC \\\\f %c }{\\fldrslt }}\n",c); CmdNewPage(NewPage); CmdEndParagraph(0); } latex2rtf-2.3.18/utf8_support.c0000777000175000017500000000623213256466465016575 0ustar wilfriedwilfried/* utf8_support.c - LaTeX to RTF conversion program This file contains a function used to convert verbatim sections containing Utf-8 characters properly. Authors: 2018 Alex Itkes */ #include "main.h" #include "chars.h" #include "fonts.h" #include "encodings.h" /* Initializes a unicode character represented by the Utf-8 sequencd based on the first byte of the sequence. The returned value must then be updated with updateUf8Sequence a number of times (returned by getUtf8SequenceLength using the following bytes of the input stream. */ uint16_t getUtf8SequenceInitialValue (uint8_t byte) { if (byte >= 0xF0) { return byte & ~0xF0; } else if (byte >= 0xE0) { return byte & ~0xE0; } else if (byte >= 0xC0) { return byte & ~0xC0; } else { return 0; } } /* Determines the length of a Utf-8 sequence based on its first byte. Actually returns the length decreased by 1, i.e. the number of bytes to be read later. */ uint16_t getUtf8SequenceLength (uint8_t byte) { if (byte >= 0xF0) { return 3; } else if (byte >= 0xE0) { return 2; } else if (byte >= 0xC0) { return 1; } else { return 0; } } /* Adds a following byte of Utf-8 sequence to the unicode character, return the resulting code. */ uint16_t updateUtf8Sequence (uint16_t value, uint8_t byte) { return ((value << 6) + (byte & ~0xC0)); } /* Prints a string to RTF with escaped characters if needed. unlike putRtfStrEscaped it prints Utf8 characters properly. */ void putRtfUtf8StrEscaped(const char * string) { char *s = (char *) string; if (string == NULL) return; while (*s) { /* Much of code actually copied from Convert () function, but some code later moved to additional functions (getUtf8SequenceLength, getUtf8SequenceInitialValue and updateUtf8Sequence). TODO: Could it be a good idea to call them also from Convert? */ if ((uint8_t)(*s) >= 0x80 && (CurrentFontEncoding() == ENCODING_UTF8) && *(s + 1)) { /* Handle a Utf-8 byte sequence. Try to convert it to a Unicode character in same way with the Convert function does and then output it with CmdUnicodeChar. */ uint8_t byte = *s; uint16_t len = getUtf8SequenceLength (byte); uint16_t value = getUtf8SequenceInitialValue (byte); uint16_t i; s++; for (i=0; imakefile.depend @echo "***** Append makefile.depend to Makefile manually ******" dist: checkdir releasedate latex2rtf doc $(SRCS) $(HDRS) $(CFGS) $(README) Makefile vms_make.com $(SCRIPTS) $(DOCS) $(TEST) $(MAKE) releasedate $(RMDIR) $(L2R_VERSION) $(MKDIR) $(L2R_VERSION) $(MKDIR) $(L2R_VERSION)/cfg $(MKDIR) $(L2R_VERSION)/doc $(MKDIR) $(L2R_VERSION)/test $(MKDIR) $(L2R_VERSION)/scripts ln $(SRCS) $(L2R_VERSION) ln $(HDRS) $(L2R_VERSION) ln $(README) $(L2R_VERSION) ln Makefile $(L2R_VERSION) ln vms_make.com $(L2R_VERSION) ln $(CFGS) $(L2R_VERSION)/cfg ln $(DOCS) $(L2R_VERSION)/doc ln $(SCRIPTS) $(L2R_VERSION)/scripts ln $(TEST) $(L2R_VERSION)/test $(TAR) cvfz $(L2R_VERSION).tar.gz $(L2R_VERSION) $(RMDIR) $(L2R_VERSION) uptodate: perl -pi.bak -e '$$date=scalar localtime; s/\(.*/($$date)";/' version.h $(RM) version.h.bak releasedate: perl -pi.bak -e '$$date=scalar localtime; s/\(.*/(released $$date)";/; s/d ..../d /;s/\d\d:\d\d:\d\d //;' version.h $(RM) version.h.bak doc: doc/latex2rtf.texi doc/Makefile cd doc && $(MAKE) -k install: latex2rtf doc/latex2rtf.1 $(CFGS) scripts/latex2png cd doc && $(MAKE) $(MKDIR) $(DESTDIR)$(BINDIR) $(MKDIR) $(DESTDIR)$(MANDIR) $(MKDIR) $(DESTDIR)$(CFGDIR) cp -p scripts/latex2png $(DESTDIR)$(BINDIR) cp -p doc/latex2rtf.1 $(DESTDIR)$(MANDIR) cp -p doc/latex2png.1 $(DESTDIR)$(MANDIR) cp -p $(CFGS) $(DESTDIR)$(CFGDIR) cp -p doc/latex2rtf.html $(DESTDIR)$(SUPPORTDIR) cp -p doc/latex2rtf.pdf $(DESTDIR)$(SUPPORTDIR) cp -p doc/latex2rtf.txt $(DESTDIR)$(SUPPORTDIR) cp -p $(BINARY_NAME) $(DESTDIR)$(BINDIR) @echo "******************************************************************" @echo "*** latex2rtf successfully installed as \"$(BINARY_NAME)\"" @echo "*** in directory \"$(BINDIR)\"" @echo "***" @echo "*** \"make install-info\" will install TeXInfo files " @echo "***" @echo "*** latex2rtf was compiled to search for its configuration files in" @echo "*** \"$(CFGDIR)\" " @echo "***" @echo "*** If the configuration files are moved then either" @echo "*** 1) set the environment variable RTFPATH to this new location, or" @echo "*** 2) use the command line option -P /path/to/cfg, or" @echo "*** 3) edit the Makefile and recompile" @echo "******************************************************************" install-info: doc/latex2rtf.info $(MKDIR) $(DESTDIR)$(INFODIR) cp -p doc/latex2rtf.info $(DESTDIR)$(INFODIR) install-info --info-dir=$(DESTDIR)$(INFODIR) doc/latex2rtf.info realclean: checkdir clean $(RM) makefile.depend $(L2R_VERSION).tar.gz cd doc && $(MAKE) clean cd test && $(MAKE) clean appleclean: sudo xattr -r -d com.apple.FinderInfo ../trunk sudo xattr -r -d com.apple.TextEncoding ../trunk splint: splint -weak $(SRCS) $(HDRS) .PHONY: all check checkdir clean depend dist doc install install_info realclean latex2rtf uptodate releasedate splint fullcheck # created using "make depend" commands.o: commands.c cfg.h main.h convert.h chars.h fonts.h preamble.h \ funct1.h tables.h equations.h letterformat.h commands.h parser.h \ xrefs.h ignore.h lengths.h definitions.h graphics.h vertical.h \ encodings.h labels.h acronyms.h biblio.h chars.o: chars.c main.h commands.h fonts.h cfg.h ignore.h encodings.h \ parser.h chars.h funct1.h convert.h utils.h vertical.h fields.h direct.o: direct.c main.h direct.h fonts.h cfg.h utils.h encodings.o: encodings.c main.h encoding_tables.h encodings.h fonts.h \ chars.h parser.h vertical.h fonts.o: fonts.c main.h convert.h fonts.h funct1.h commands.h cfg.h \ parser.h stack.h vertical.h funct1.o: funct1.c main.h convert.h funct1.h commands.h stack.h fonts.h \ cfg.h ignore.h utils.h encodings.h parser.h counters.h lengths.h \ definitions.h preamble.h xrefs.h equations.h direct.h styles.h \ graphics.h vertical.h tables.o: tables.c main.h convert.h fonts.h commands.h funct1.h tables.h \ stack.h cfg.h parser.h counters.h utils.h lengths.h preamble.h \ graphics.h vertical.h ignore.o: ignore.c main.h direct.h fonts.h cfg.h ignore.h funct1.h \ commands.h parser.h convert.h utils.h vertical.h main.o: main.c main.h mygetopt.h convert.h commands.h chars.h fonts.h \ stack.h direct.h ignore.h version.h funct1.h cfg.h encodings.h utils.h \ parser.h lengths.h counters.h preamble.h xrefs.h preparse.h vertical.h \ fields.h stack.o: stack.c main.h stack.h fonts.h cfg.o: cfg.c main.h convert.h funct1.h cfg.h utils.h utils.o: utils.c cfg.h main.h utils.h parser.h parser.o: parser.c main.h commands.h cfg.h stack.h utils.h parser.h \ fonts.h lengths.h definitions.h funct1.h lengths.o: lengths.c main.h utils.h lengths.h parser.h counters.o: counters.c main.h utils.h counters.h letterformat.o: letterformat.c main.h parser.h letterformat.h cfg.h \ commands.h funct1.h convert.h vertical.h preamble.o: preamble.c main.h convert.h utils.h preamble.h fonts.h cfg.h \ encodings.h parser.h funct1.h lengths.h ignore.h commands.h counters.h \ xrefs.h direct.h styles.h vertical.h auxfile.h acronyms.h equations.o: equations.c main.h convert.h commands.h stack.h fonts.h \ cfg.h ignore.h parser.h equations.h counters.h funct1.h lengths.h \ utils.h graphics.h xrefs.h chars.h preamble.h vertical.h fields.h convert.o: convert.c main.h convert.h commands.h chars.h funct1.h fonts.h \ stack.h tables.h equations.h direct.h ignore.h cfg.h encodings.h \ utils.h parser.h lengths.h counters.h preamble.h vertical.h fields.h xrefs.o: xrefs.c main.h utils.h convert.h funct1.h commands.h cfg.h \ xrefs.h parser.h preamble.h lengths.h fonts.h styles.h definitions.h \ equations.h vertical.h fields.h counters.h auxfile.h labels.h \ acronyms.h biblio.h definitions.o: definitions.c main.h convert.h definitions.h parser.h \ funct1.h utils.h cfg.h counters.h graphics.o: graphics.c main.h cfg.h graphics.h parser.h utils.h \ commands.h convert.h funct1.h preamble.h counters.h vertical.h mygetopt.o: mygetopt.c main.h mygetopt.h styles.o: styles.c main.h direct.h fonts.h cfg.h utils.h parser.h \ styles.h vertical.h preparse.o: preparse.c preparse.h cfg.h main.h utils.h definitions.h \ parser.h funct1.h vertical.o: vertical.c main.h funct1.h cfg.h utils.h parser.h lengths.h \ vertical.h convert.h commands.h styles.h fonts.h stack.h xrefs.h \ counters.h fields.h acronyms.h fields.o: fields.c main.h fields.h labels.o: labels.c main.h parser.h utils.h auxfile.h labels.h biblio.o: biblio.c main.h utils.h parser.h auxfile.h biblio.h acronyms.o: acronyms.c main.h parser.h utils.h cfg.h convert.h commands.h \ lengths.h vertical.h auxfile.h acronyms.h biblio.h labels.h auxfile.o: auxfile.c main.h utils.h parser.h convert.h latex2rtf-2.3.18/commands.c0000777000175000017500000014575213664232306015713 0ustar wilfriedwilfried/* commands.c - Defines subroutines to translate LaTeX commands to RTF Copyright (C) 1995-2002 The Free Software Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. This file is available from http://sourceforge.net/projects/latex2rtf/ Authors: 1995-1997 Ralf Schlatterbeck 1998-2000 Georg Lehner 2001-2002 Scott Prahl */ #include #include #include "cfg.h" #include "main.h" #include "convert.h" #include "chars.h" #include "fonts.h" #include "preamble.h" #include "funct1.h" #include "tables.h" #include "equations.h" #include "letterformat.h" #include "commands.h" #include "parser.h" #include "xrefs.h" #include "ignore.h" #include "lengths.h" #include "definitions.h" #include "graphics.h" #include "vertical.h" #include "encodings.h" #include "labels.h" #include "acronyms.h" #include "biblio.h" static int iEnvCount = 0; /* number of current environments */ static CommandArray *Environments[101]; /* call chain for current environments */ static int g_par_indent_array[100]; static int g_left_indent_array[100]; static int g_right_indent_array[100]; static char g_align_array[100]; static CommandArray commands[] = { {"begin", CmdBeginEnd, CMD_BEGIN}, {"end", CmdBeginEnd, CMD_END}, {"today", CmdToday, 0}, {"footnote", CmdFootNote, FOOTNOTE}, {"endnote", CmdFootNote, ENDNOTE}, {"rmfamily", CmdFontFamily, F_FAMILY_ROMAN }, {"rm", CmdFontFamily, F_FAMILY_ROMAN_1}, {"mathrm", CmdFontFamily, F_FAMILY_ROMAN_2}, {"textrm", CmdFontFamily, F_FAMILY_ROMAN_2}, {"sffamily", CmdFontFamily, F_FAMILY_SANSSERIF}, {"sf", CmdFontFamily, F_FAMILY_SANSSERIF_1}, {"mathsf", CmdFontFamily, F_FAMILY_SANSSERIF_2}, {"textsf", CmdFontFamily, F_FAMILY_SANSSERIF_2}, {"ttfamily", CmdFontFamily, F_FAMILY_TYPEWRITER}, {"tt", CmdFontFamily, F_FAMILY_TYPEWRITER_1}, {"mathtt", CmdFontFamily, F_FAMILY_TYPEWRITER_2}, {"texttt", CmdFontFamily, F_FAMILY_TYPEWRITER_2}, {"cal", CmdFontFamily, F_FAMILY_CALLIGRAPHIC_1}, {"mathcal", CmdFontFamily, F_FAMILY_CALLIGRAPHIC_2}, {"bfseries", CmdFontSeries, F_SERIES_BOLD}, {"bf", CmdFontSeries, F_SERIES_BOLD_1}, {"textbf", CmdFontSeries, F_SERIES_BOLD_2}, {"mathbf", CmdFontSeries, F_SERIES_BOLD_2}, {"bm", CmdFontSeries, F_SERIES_BOLD_2}, {"mdseries", CmdFontSeries, F_SERIES_MEDIUM}, {"textmd", CmdFontSeries, F_SERIES_MEDIUM_2}, {"mathmd", CmdFontSeries, F_SERIES_MEDIUM_2}, {"itshape", CmdFontShape, F_SHAPE_ITALIC}, {"it", CmdFontShape, F_SHAPE_ITALIC_1}, {"mit", CmdFontShape, F_SHAPE_ITALIC_1}, {"textit", CmdFontShape, F_SHAPE_ITALIC_2}, {"mathit", CmdFontShape, F_SHAPE_ITALIC_2}, {"upshape", CmdFontShape, F_SHAPE_UPRIGHT}, {"textup", CmdFontShape, F_SHAPE_UPRIGHT_2}, {"mathup", CmdFontShape, F_SHAPE_UPRIGHT_2}, {"scfamily", CmdFontShape, F_SHAPE_CAPS}, {"scshape", CmdFontShape, F_SHAPE_CAPS}, {"sc", CmdFontShape, F_SHAPE_CAPS_1}, {"textsc", CmdFontShape, F_SHAPE_CAPS_2}, {"mathsc", CmdFontShape, F_SHAPE_CAPS_2}, {"slshape", CmdFontShape, F_SHAPE_SLANTED}, {"sl", CmdFontShape, F_SHAPE_SLANTED_1}, {"textsl", CmdFontShape, F_SHAPE_SLANTED_2}, {"mathsl", CmdFontShape, F_SHAPE_SLANTED_2}, {"tiny", CmdFontSize, 10}, {"scriptsize", CmdFontSize, 14}, {"footnotesize", CmdFontSize, 16}, {"enotesize", CmdFontSize, 16}, {"small", CmdFontSize, 18}, {"normalsize", CmdFontSize, 20}, {"large", CmdFontSize, 24}, {"Large", CmdFontSize, 28}, {"LARGE", CmdFontSize, 34}, {"huge", CmdFontSize, 40}, {"Huge", CmdFontSize, 50}, {"HUGE", CmdFontSize, 60}, /* from moresize.sty */ /* ---------- OTHER FONT STUFF ------------------- */ {"em", CmdEmphasize, F_EMPHASIZE_1}, {"emph", CmdEmphasize, F_EMPHASIZE_2}, {"underline", CmdUnderline, 0}, {"underbar", CmdUnderline, 0}, {"textnormal", CmdTextNormal, F_TEXT_NORMAL_2}, {"normalfont", CmdTextNormal, F_TEXT_NORMAL_2}, {"mathnormal", CmdTextNormal, F_TEXT_NORMAL_3}, {"textfont", CmdTextFont, 0}, {"the", CmdThe, 0}, {"raggedright", CmdAlign, PAR_RAGGEDRIGHT}, {"centerline", CmdAlign, PAR_CENTERLINE}, {"vcenter", CmdAlign, PAR_VCENTER}, /* ---------- LOGOS ------------------- */ {"latex", CmdLogo, CMD_LATEX}, {"LaTeX", CmdLogo, CMD_LATEX}, {"LaTeXe", CmdLogo, CMD_LATEXE}, {"TeX", CmdLogo, CMD_TEX}, {"SLiTeX", CmdLogo, CMD_SLITEX}, {"BibTeX", CmdLogo, CMD_BIBTEX}, {"AmSTeX", CmdLogo, CMD_AMSTEX}, {"AmSLaTeX", CmdLogo, CMD_AMSLATEX}, {"LyX", CmdLogo, CMD_LYX}, {"lower",CmdSubscript,2}, {"kern",CmdKern,0}, /* ---------- SPECIAL CHARACTERS ------------------- */ {"hat", CmdHatChar, 0}, {"check", CmdCaronChar, 0}, {"breve", CmdBreveChar, 0}, {"acute", CmdAcuteChar, 0}, {"grave", CmdGraveChar, 0}, {"tilde", CmdTildeChar, 0}, {"bar", CmdMacronChar, 0}, {"vec", CmdVecChar, 0}, {"overrightarrow", CmdVecChar, 0}, {"dot", CmdDotChar, 0}, {"ddot", CmdUmlauteChar, 0}, {"\"", CmdUmlauteChar, 0}, {"u", CmdBreveChar, 0}, {"d", CmdUnderdotChar, 0}, {"v", CmdCaronChar, 0}, {"r", CmdRingChar, 0}, {"accent", CmdRingChar, 1}, {"b", CmdUnderbarChar, 0}, {"c", CmdCedillaChar, 0}, {"i", CmdDotlessChar, 0}, {"j", CmdDotlessChar, 1}, {"H", CmdDoubleAcuteChar, 0}, {"l", CmdUnicodeChar, 323}, {"L", CmdUnicodeChar, 322}, /* sectioning commands */ {"part", CmdSection, SECT_PART}, {"part*", CmdSection, SECT_PART_STAR}, {"chapter", CmdSection, SECT_CHAPTER}, {"chapter*", CmdSection, SECT_CHAPTER_STAR}, {"section", CmdSection, SECT_NORM}, {"section*", CmdSection, SECT_NORM_STAR}, {"subsection", CmdSection, SECT_SUB}, {"subsection*", CmdSection, SECT_SUB_STAR}, {"subsubsection", CmdSection, SECT_SUBSUB}, {"subsubsection*", CmdSection, SECT_SUBSUB_STAR}, {"paragraph", CmdSection, SECT_SUBSUBSUB}, {"paragraph*", CmdSection, SECT_SUBSUBSUB_STAR}, {"subparagraph", CmdSection, SECT_SUBSUBSUBSUB}, {"subparagraph*", CmdSection, SECT_SUBSUBSUBSUB_STAR}, {"ldots", CmdUnicodeChar, 8230}, {"dots", CmdUnicodeChar, 8230}, {"dotfill", CmdUnicodeChar, 8230}, {"textellipsis", CmdUnicodeChar, 8230}, {"maketitle", CmdMakeTitle, 0}, {"par", CmdEndParagraph, 0}, {"noindent", CmdIndent, INDENT_NONE}, {"indent", CmdIndent, INDENT_USUAL}, {"caption", CmdCaption, 0}, {"appendix", CmdAppendix, 0}, {"protect", CmdIgnore, 0}, {"clearpage", CmdNewPage, NewPage}, {"efloatseparator", CmdNewPage, NewPage}, {"cleardoublepage", CmdNewPage, NewPage}, {"newpage", CmdNewPage, NewColumn}, {"pagebreak", CmdNewPage, NewPage}, {"mbox", CmdBox, BOX_MBOX}, {"hbox", CmdBox, BOX_HBOX}, {"vbox", CmdBox, BOX_VBOX}, {"fbox", CmdBox, BOX_FBOX}, {"parbox", CmdBox, BOX_PARBOX}, {"makebox", CmdBox, BOX_MAKEBOX}, {"framebox", CmdBox, BOX_FRAMEBOX}, {"frenchspacing", CmdIgnore, 0}, {"nonfrenchspacing", CmdIgnore, 0}, {"include", CmdIgnoreParameter, No_Opt_One_NormParam}, /* should not happen */ {"input", CmdIgnoreParameter, No_Opt_One_NormParam}, /* should not happen */ {"verb", CmdVerb, VERB_VERB}, {"verb*", CmdVerb, VERB_STAR}, {"onecolumn", CmdColumn, One_Column}, {"twocolumn", CmdColumn, Two_Column}, {"includegraphics", CmdGraphics, FIGURE_INCLUDEGRAPHICS}, {"epsffile", CmdGraphics, FIGURE_EPSFFILE}, {"epsfbox", CmdGraphics, FIGURE_EPSFBOX}, {"BoxedEPSF", CmdGraphics, FIGURE_BOXEDEPSF}, {"psfig", CmdGraphics, FIGURE_PSFIG}, {"includegraphics*", CmdGraphics, FIGURE_INCLUDEGRAPHICS}, {"moveleft", CmdLength, 0}, {"moveright", CmdLength, 0}, {"hsize", CmdLength, 0}, {"letterspace", CmdLength, 0}, {"footnotemark", CmdIgnoreParameter, One_Opt_No_NormParam}, {"endnotemark", CmdIgnoreParameter, One_Opt_No_NormParam}, {"label", CmdLabel, LABEL_LABEL}, {"ref", CmdLabel, LABEL_REF}, {"vref", CmdLabel, LABEL_VREF}, {"eqref", CmdLabel, LABEL_EQREF}, {"pageref", CmdLabel, LABEL_PAGEREF}, {"nameref", CmdLabel, LABEL_NAMEREF}, {"cite", CmdCite, CITE_CITE}, {"onlinecite", CmdCite, CITE_CITE}, {"citeonline", CmdCite, CITE_CITE}, {"nobibliography", CmdIgnoreParameter, No_Opt_One_NormParam}, {"bibliography", CmdBibliography, 0}, {"bibitem", CmdBibitem, 0}, {"bibentry", CmdBibEntry, 0}, {"newblock", CmdNewblock, 0}, {"newsavebox", CmdIgnoreParameter, No_Opt_One_NormParam}, {"usebox", CmdIgnoreParameter, No_Opt_One_NormParam}, {"subfigure", CmdSubFigure, 0}, {"quad", CmdQuad, 1}, {"qquad", CmdQuad, 2}, {"textsuperscript", CmdSuperscript, 1}, {"textsubscript", CmdSubscript, 1}, {"hspace", CmdIgnoreParameter, No_Opt_One_NormParam}, {"hspace*", CmdIgnoreParameter, No_Opt_One_NormParam}, {"vspace", CmdVspace, VSPACE_VSPACE}, {"vspace*", CmdVspace, VSPACE_VSPACE}, {"vskip", CmdVspace, VSPACE_VSKIP}, {"smallskip", CmdVspace, VSPACE_SMALL_SKIP}, {"medskip", CmdVspace, VSPACE_MEDIUM_SKIP}, {"bigskip", CmdVspace, VSPACE_BIG_SKIP}, {"addvspace", CmdIgnoreParameter, No_Opt_One_NormParam}, {"addcontentsline", CmdIgnoreParameter, No_Opt_Three_NormParam}, {"addcontents", CmdIgnoreParameter, No_Opt_Two_NormParam}, {"stretch", CmdIgnoreParameter, No_Opt_One_NormParam}, {"typeaout", CmdIgnoreParameter, No_Opt_One_NormParam}, {"index", CmdIndex, 0}, {"printindex", CmdPrintIndex, 0}, {"indexentry", CmdIgnoreParameter, No_Opt_Two_NormParam}, {"glossary", CmdIgnoreParameter, No_Opt_One_NormParam}, {"glossaryentry", CmdIgnoreParameter, No_Opt_Two_NormParam}, {"typeout", CmdIgnoreParameter, No_Opt_One_NormParam}, {"Typein", CmdIgnoreParameter, One_Opt_One_NormParam}, {"includeonly", CmdIgnoreParameter, No_Opt_One_NormParam}, {"nocite", CmdNoCite, No_Opt_One_NormParam}, {"stepcounter", CmdIgnoreParameter, No_Opt_One_NormParam}, {"refstepcounter", CmdCounter, COUNTER_INCR}, {"fnsymbol", CmdIgnoreParameter, No_Opt_One_NormParam}, {"Alph", CmdIgnoreParameter, No_Opt_One_NormParam}, {"alph", CmdIgnoreParameter, No_Opt_One_NormParam}, {"Roman", CmdIgnoreParameter, No_Opt_One_NormParam}, {"roman", CmdIgnoreParameter, No_Opt_One_NormParam}, {"arabic", CmdIgnoreParameter, No_Opt_One_NormParam}, {"newcount", CmdIgnoreDef, 0}, {"output", CmdIgnoreDef, 0}, {"value", CmdCounter, COUNTER_VALUE}, {"sbox", CmdIgnoreParameter, No_Opt_Two_NormParam}, {"savebox", CmdIgnoreParameter, Two_Opt_Two_NormParam}, {"rule", CmdRule,0}, {"raisebox", CmdIgnoreParameter, Two_Opt_Two_NormParam}, {"newfont", CmdIgnoreParameter, No_Opt_Two_NormParam}, {"settowidth", CmdIgnoreParameter, No_Opt_Two_NormParam}, {"nopagebreak", CmdIgnoreParameter, One_Opt_No_NormParam}, {"samepage", CmdIgnore, 0}, {"expandafter", CmdIgnore, 0}, {"long", CmdIgnore, 0}, {"nobreak", CmdIgnore, 0}, {"linebreak", CmdIgnoreParameter, One_Opt_No_NormParam}, {"nolinebreak", CmdIgnoreParameter, One_Opt_No_NormParam}, {"typein", CmdIgnoreParameter, One_Opt_One_NormParam}, {"marginpar", CmdIgnoreParameter, One_Opt_One_NormParam}, {"baselineskip", Cmd_OptParam_Without_braces, 0}, {"psfrag", CmdIgnoreParameter, No_Opt_Two_NormParam}, {"lineskip", Cmd_OptParam_Without_braces, 0}, {"vsize", Cmd_OptParam_Without_braces, 0}, {"setbox", Cmd_OptParam_Without_braces, 0}, {"thanks", CmdFootNote, FOOTNOTE_THANKS}, {"bibliographystyle", CmdIgnoreParameter, No_Opt_One_NormParam}, {"let", CmdIgnoreLet, 0}, {"multicolumn", CmdMultiCol, 0}, {"ensuremath", CmdEnsuremath, 0}, {"frac", CmdFraction, 0}, {"dfrac", CmdFraction, 0}, {"Frac", CmdFraction, 0}, {"sqrt", CmdRoot, 0}, {"lim", CmdLim, 0}, {"limsup", CmdLim, 1}, {"liminf", CmdLim, 2}, {"int", CmdIntegral, 0}, {"iint", CmdIntegral, 3}, {"iiint", CmdIntegral, 4}, {"sum", CmdIntegral, 1}, {"prod", CmdIntegral, 2}, {"left", CmdLeftRight, 0}, {"right", CmdLeftRight, 1}, {"stackrel", CmdStackrel, 0}, {"matrix", CmdMatrix, 0}, {"overline",CmdOverLine,0}, {"rightleftharpoons", CmdArrows, RIGHT_LEFT_HARPOONS}, {"psset", CmdPsset, 0}, {"newpsstyle", CmdNewPsStyle, 0}, {"nonumber", CmdNonumber, EQN_NO_NUMBER}, {"notag", CmdNonumber, EQN_NO_NUMBER}, {"char", CmdSymbol, 0}, {"symbol", CmdSymbol, 1}, {"rlap", CmdLap, 0}, {"llap", CmdLap, 1}, {"not", CmdNot, 0}, {"url", CmdHtml, LABEL_URL}, {"urlstyle", CmdHtml, LABEL_URLSTYLE}, {"htmladdnormallink", CmdHtml, LABEL_HTMLADDNORMALREF}, {"htmlref", CmdHtml, LABEL_HTMLREF}, {"nobreakspace", CmdNonBreakSpace, 100}, {"thinspace", CmdNonBreakSpace, 50}, {"abstract", CmdAbstract, ABSTRACT_SIMPLE}, {"keywords", CmdKeywords, 0}, {"endinput", CmdEndInput, 0}, {"color", CmdTextColor, 0}, {"textcolor", CmdTextColor, 1}, {"tableofcontents", CmdTableOfContents, 0}, {"listoffigures", CmdListOf, LIST_OF_FIGURES}, {"listoftables", CmdListOf, LIST_OF_TABLES}, {"numberline", CmdNumberLine, 0}, {"contentsline", CmdContentsLine, 0}, {"centering", CmdAlign, PAR_CENTERING}, {"halign", CmdHAlign, 0}, {"efloatseparator", CmdIgnoreParameter,0}, {"pagestyle", CmdIgnoreParameter, No_Opt_One_NormParam}, {"pagenumbering", CmdIgnoreParameter, No_Opt_One_NormParam}, {"markboth", CmdIgnoreParameter, No_Opt_Two_NormParam}, {"markright", CmdIgnoreParameter, No_Opt_One_NormParam}, /************ commands for auxfile.c *******************/ { "newlabel", CmdNewLabel, 0 }, { "newacro", CmdAcrodef, ACRONYM_NEWACRO }, { "newacroplural", CmdAcrodef, ACRONYM_NEWACROPLURAL }, { "harvardcite", CmdAuxHarvardCite, 0 }, { "bibcite", CmdBibCite, 0 }, {"usetikzlibrary",CmdTikzlib, 0}, {"", NULL, 0} }; /******************************************************************** commands found in the preamble of the LaTeX file ********************************************************************/ static CommandArray PreambleCommands[] = { {"documentclass", CmdDocumentStyle, 0}, {"documentstyle", CmdDocumentStyle, 0}, {"usepackage", CmdUsepackage, 0}, {"RequirePackage", CmdUsepackage, 0}, {"flushbottom", CmdBottom, 0}, {"raggedbottom", CmdBottom, 0}, {"addtolength", CmdLength, LENGTH_ADD}, {"setlength", CmdLength, LENGTH_SET}, {"newlength", CmdLength, LENGTH_NEW}, {"newcounter", CmdCounter, COUNTER_NEW}, {"setcounter", CmdCounter, COUNTER_SET}, {"addtocounter", CmdCounter, COUNTER_ADD}, {"cfoot", CmdHeadFoot, CFOOT}, {"rfoot", CmdHeadFoot, RFOOT}, {"lfoot", CmdHeadFoot, LFOOT}, {"chead", CmdHeadFoot, CHEAD}, {"rhead", CmdHeadFoot, RHEAD}, {"lhead", CmdHeadFoot, LHEAD}, {"fancyfoot", CmdHeadFoot, CFOOT}, {"fancyhead", CmdHeadFoot, CHEAD}, {"thepage", CmdThePage, 0}, {"hyphenation", CmdHyphenation, 0}, {"def", CmdNewDef, DEF_DEF}, {"newcommand", CmdNewDef, DEF_NEW}, {"providecommand", CmdNewDef, DEF_NEW}, {"DeclareRobustCommand", CmdNewDef, DEF_NEW}, {"DeclareRobustCommand*", CmdNewDef, DEF_NEW}, {"renewcommand", CmdNewDef, DEF_RENEW}, {"newenvironment", CmdNewEnvironment, DEF_NEW}, {"renewenvironment", CmdNewEnvironment, DEF_RENEW}, {"newtheorem", CmdNewTheorem, 0}, {"renewtheorem", CmdIgnoreParameter, One_Opt_Two_NormParam}, {"pagestyle", CmdIgnoreParameter, No_Opt_One_NormParam}, {"thispagestyle", CmdIgnoreParameter, No_Opt_One_NormParam}, {"pagenumbering", CmdIgnoreParameter, No_Opt_One_NormParam}, {"markboth", CmdIgnoreParameter, No_Opt_Two_NormParam}, {"markright", CmdIgnoreParameter, No_Opt_One_NormParam}, {"makeindex", CmdIgnoreParameter, 0}, {"hfil", CmdHfill, 0}, {"hfill", CmdHfill, 1}, {"makeglossary", CmdIgnoreParameter, 0}, {"listoffiles", CmdIgnoreParameter, 0}, {"nofiles", CmdIgnoreParameter, 0}, {"makelabels", CmdIgnoreParameter, 0}, {"hoffset", CmdSetTexLength, SL_HOFFSET}, {"voffset", CmdSetTexLength, SL_VOFFSET}, {"parindent", CmdSetTexLength, SL_PARINDENT}, {"parskip", CmdSetTexLength, SL_PARSKIP}, {"baselineskip", CmdSetTexLength, SL_BASELINESKIP}, {"topmargin", CmdSetTexLength, SL_TOPMARGIN}, {"textheight", CmdSetTexLength, SL_TEXTHEIGHT}, {"headheight", CmdSetTexLength, SL_HEADHEIGHT}, {"headsep", CmdSetTexLength, SL_HEADSEP}, {"textwidth", CmdSetTexLength, SL_TEXTWIDTH}, {"linewidth", CmdSetTexLength, SL_LINEWIDTH}, {"oddsidemargin", CmdSetTexLength, SL_ODDSIDEMARGIN}, {"evensidemargin", CmdSetTexLength, SL_EVENSIDEMARGIN}, {"footnotetext", CmdFootNote, FOOTNOTE_TEXT}, {"endnotetext", CmdFootNote, ENDNOTE_TEXT}, {"include", CmdInclude, 0}, {"input", CmdInclude, 1}, {"nobreakspace", CmdNonBreakSpace, 100}, {"signature", CmdSignature, 0}, {"hline", CmdHline, 0}, {"cline", CmdHline, 1}, {"ifx", CmdIf, 0}, {"ifpdf", CmdIf, 0}, {"theendnotes", CmdTheEndNotes, 0}, {"euro", CmdEuro, 0}, {"EUR", CmdEuro, 1}, {"celsius", CmdDegreeCelsius, 0}, {"degreecelsius", CmdDegreeCelsius, 0}, {"resizebox", CmdResizeBox, 0}, {"resizebox*", CmdResizeBox, 1}, {"geometry",CmdGeometry,0}, {"singlespacing", CmdLineSpacing, LINE_SPACING_SINGLE}, {"onehalfspacing", CmdLineSpacing, LINE_SPACING_ONE_AND_A_HALF}, {"doublespacing", CmdLineSpacing, LINE_SPACING_DOUBLE}, {"verbositylevel", CmdVerbosityLevel, 0}, {"iflatextortf",CmdIflatextortf,0}, {"latextortftrue",CmdIgnore,1}, {"latextortffalse",CmdIgnore,0}, {"newif",CmdNewif,0}, {"else",CmdElse,0}, {"fi",CmdFi,0}, {"title", CmdTitle, TITLE_TITLE}, {"author", CmdTitle, TITLE_AUTHOR}, {"and", CmdAnd, 0}, {"date", CmdTitle, TITLE_DATE}, {"affiliation", CmdTitle, TITLE_AFFILIATION}, {"abstract", CmdTitle, TITLE_ABSTRACT}, {"keywords", CmdKeywords, 0}, {"acknowledgements", CmdTitle, TITLE_ACKNOWLEDGE}, {"bibliographystyle", CmdBibliographyStyle, 0}, {"bibstyle", CmdBibStyle, 0}, {"extrasfrench", CmdIgnoreParameter, No_Opt_One_NormParam}, {"AtEndDocument", CmdIgnoreParameter, No_Opt_One_NormParam}, {"docnumber", CmdIgnoreParameter, No_Opt_One_NormParam}, {"graphicspath", CmdGraphicsPath, 0 }, {"", NULL, 0} }; /* end of list */ static CommandArray ItemizeCommands[] = { {"item", CmdItem, ITEMIZE_MODE}, {"", NULL, 0} }; static CommandArray DescriptionCommands[] = { {"item", CmdItem, DESCRIPTION_MODE}, /* {"acro", CmdAcronymItem, 0}, */ {"", NULL, 0} }; static CommandArray EnumerateCommands[] = { {"item", CmdItem, ENUMERATE_MODE}, {"", NULL, 0} }; static CommandArray InparaenumCommands[] = { {"item", CmdItem, INPARAENUM_MODE}, {"", NULL, 0} }; static CommandArray FigureCommands[] = { {"caption", CmdCaption, 0}, {"center", CmdAlign, PAR_CENTER}, {"", NULL, 0} }; static CommandArray LetterCommands[] = { {"opening", CmdOpening, 0}, {"closing", CmdClosing, 0}, {"address", CmdAddress, 0}, {"signature", CmdSignature, 0}, {"ps", CmdPs, LETTER_PS}, {"cc", CmdPs, LETTER_CC}, {"encl", CmdPs, LETTER_ENCL}, {"", NULL, 0} }; static CommandArray GermanModeCommands[] = { {"ck", GermanPrint, GP_CK}, {"glqq", GermanPrint, GP_LDBL}, {"glq", GermanPrint, GP_L}, {"grq", GermanPrint, GP_R}, {"grqq", GermanPrint, GP_RDBL}, {"", NULL, 0} }; static CommandArray CzechModeCommands[] = { {"uv", CmdCzechAbbrev, 0}, {"", NULL, 0} }; static CommandArray FrenchModeCommands[] = { /* {"degree", CmdFrenchAbbrev, DEGREE}, */ {"ier", CmdFrenchAbbrev, IERF}, {"iere", CmdFrenchAbbrev, IEREF}, {"iers", CmdFrenchAbbrev, IERSF}, {"ieres", CmdFrenchAbbrev, IERESF}, {"ieme", CmdFrenchAbbrev, IEMEF}, {"iemes", CmdFrenchAbbrev, IEMESF}, {"numero", CmdFrenchAbbrev, NUMERO}, {"numeros", CmdFrenchAbbrev, NUMEROS}, {"Numero", CmdFrenchAbbrev, CNUMERO}, {"Numeros", CmdFrenchAbbrev, CNUMEROS}, /* {"degres", CmdFrenchAbbrev, DEGREE}, */ /* {"textdegree", CmdFrenchAbbrev, DEGREE}, */ {"primo", CmdFrenchAbbrev, PRIMO}, {"secundo", CmdFrenchAbbrev, SECUNDO}, {"tertio", CmdFrenchAbbrev, TERTIO}, {"quarto", CmdFrenchAbbrev, QUARTO}, {"inferieura", CmdFrenchAbbrev, INFERIEURA}, {"superieura", CmdFrenchAbbrev, SUPERIEURA}, {"lq", CmdFrenchAbbrev, FRENCH_LQ}, {"rq", CmdFrenchAbbrev, FRENCH_RQ}, {"lqq", CmdFrenchAbbrev, FRENCH_LQQ}, {"rqq", CmdFrenchAbbrev, FRENCH_RQQ}, {"pointvirgule", CmdFrenchAbbrev, POINT_VIRGULE}, {"pointexclamation", CmdFrenchAbbrev, POINT_EXCLAMATION}, {"pointinterrogation", CmdFrenchAbbrev, POINT_INTERROGATION}, {"dittomark", CmdFrenchAbbrev, DITTO_MARK}, {"deuxpoints", CmdFrenchAbbrev, DEUX_POINTS}, {"fup", CmdFrenchAbbrev, FUP}, {"up", CmdFrenchAbbrev, FUP}, {"LCS", CmdFrenchAbbrev, LCS}, {"FCS", CmdFrenchAbbrev, FCS}, {"og", CmdFrenchAbbrev, FRENCH_OG}, {"fg", CmdFrenchAbbrev, FRENCH_FG}, {"", NULL, 0} }; /********************************************************************/ /* commands for Russian Mode */ /********************************************************************/ static CommandArray RussianModeCommands[] = { {"cyr", CmdFontEncoding, ENCODING_OT2}, {"CYRYO",CmdUnicodeChar,0x0401}, {"CYRDJE",CmdUnicodeChar,0x0402}, {"CYRIE",CmdUnicodeChar,0x0404}, {"CYRDZE",CmdUnicodeChar,0x0405}, {"CYRII",CmdUnicodeChar,0x0406}, {"CYRYI",CmdUnicodeChar,0x0407}, {"CYRJE",CmdUnicodeChar,0x0408}, {"CYRLJE",CmdUnicodeChar,0x0409}, {"CYRNJE",CmdUnicodeChar,0x040A}, {"CYRTSHE",CmdUnicodeChar,0x040B}, {"CYRUSHRT",CmdUnicodeChar,0x040E}, {"CYRDZHE",CmdUnicodeChar,0x040F}, {"CYRA",CmdUnicodeChar,0x0410}, {"CYRB",CmdUnicodeChar,0x0411}, {"CYRV",CmdUnicodeChar,0x0412}, {"CYRG",CmdUnicodeChar,0x0413}, {"CYRD",CmdUnicodeChar,0x0414}, {"CYRE",CmdUnicodeChar,0x0415}, {"CYRZH",CmdUnicodeChar,0x0416}, {"CYRZ",CmdUnicodeChar,0x0417}, {"CYRI",CmdUnicodeChar,0x0418}, {"CYRISHRT",CmdUnicodeChar,0x0419}, {"CYRK",CmdUnicodeChar,0x041A}, {"CYRL",CmdUnicodeChar,0x041B}, {"CYRM",CmdUnicodeChar,0x041C}, {"CYRN",CmdUnicodeChar,0x041D}, {"CYRO",CmdUnicodeChar,0x041E}, {"CYRP",CmdUnicodeChar,0x041F}, {"CYRR",CmdUnicodeChar,0x0420}, {"CYRS",CmdUnicodeChar,0x0421}, {"CYRT",CmdUnicodeChar,0x0422}, {"CYRU",CmdUnicodeChar,0x0423}, {"CYRF",CmdUnicodeChar,0x0424}, {"CYRH",CmdUnicodeChar,0x0425}, {"CYRC",CmdUnicodeChar,0x0426}, {"CYRCH",CmdUnicodeChar,0x0427}, {"CYRSH",CmdUnicodeChar,0x0428}, {"CYRSHCH",CmdUnicodeChar,0x0429}, {"CYRHRDSN",CmdUnicodeChar,0x042A}, {"CYRERY",CmdUnicodeChar,0x042B}, {"CYRSFTSN",CmdUnicodeChar,0x042C}, {"CYREREV",CmdUnicodeChar,0x042D}, {"CYRYU",CmdUnicodeChar,0x042E}, {"CYRYA",CmdUnicodeChar,0x042F}, {"cyra",CmdUnicodeChar,0x0430}, {"cyrb",CmdUnicodeChar,0x0431}, {"cyrv",CmdUnicodeChar,0x0432}, {"cyrg",CmdUnicodeChar,0x0433}, {"cyrd",CmdUnicodeChar,0x0434}, {"cyre",CmdUnicodeChar,0x0435}, {"cyrzh",CmdUnicodeChar,0x0436}, {"cyrz",CmdUnicodeChar,0x0437}, {"cyri",CmdUnicodeChar,0x0438}, {"cyrishrt",CmdUnicodeChar,0x0439}, {"cyrk",CmdUnicodeChar,0x043A}, {"cyrl",CmdUnicodeChar,0x043B}, {"cyrm",CmdUnicodeChar,0x043C}, {"cyrn",CmdUnicodeChar,0x043D}, {"cyro",CmdUnicodeChar,0x043E}, {"cyrp",CmdUnicodeChar,0x043F}, {"cyrr",CmdUnicodeChar,0x0440}, {"cyrs",CmdUnicodeChar,0x0441}, {"cyrt",CmdUnicodeChar,0x0442}, {"cyru",CmdUnicodeChar,0x0443}, {"cyrf",CmdUnicodeChar,0x0444}, {"cyrh",CmdUnicodeChar,0x0445}, {"cyrc",CmdUnicodeChar,0x0446}, {"cyrch",CmdUnicodeChar,0x0447}, {"cyrsh",CmdUnicodeChar,0x0448}, {"cyrshch",CmdUnicodeChar,0x0449}, {"cyrhrdsn",CmdUnicodeChar,0x044A}, {"cyrery",CmdUnicodeChar,0x044B}, {"cyrsftsn",CmdUnicodeChar,0x044C}, {"cyrerev",CmdUnicodeChar,0x044D}, {"cyryu",CmdUnicodeChar,0x044E}, {"cyrya",CmdUnicodeChar,0x044F}, {"cyryo",CmdUnicodeChar,0x0451}, {"cyrdje",CmdUnicodeChar,0x0452}, {"cyrie",CmdUnicodeChar,0x0454}, {"cyrdze",CmdUnicodeChar,0x0455}, {"cyrii",CmdUnicodeChar,0x0456}, {"cyryi",CmdUnicodeChar,0x0457}, {"cyrje",CmdUnicodeChar,0x0458}, {"cyrlje",CmdUnicodeChar,0x0459}, {"cyrnje",CmdUnicodeChar,0x045A}, {"cyrtshe",CmdUnicodeChar,0x045B}, {"cyrushrt",CmdUnicodeChar,0x045E}, {"cyrdzhe",CmdUnicodeChar,0x045F}, {"CYRYAT",CmdUnicodeChar,0x0462}, {"cyryat",CmdUnicodeChar,0x0463}, {"CYRBYUS",CmdUnicodeChar,0x046A}, {"cyrbyus",CmdUnicodeChar,0x046B}, {"CYRFITA",CmdUnicodeChar,0x0472}, {"cyrfita",CmdUnicodeChar,0x0473}, {"CYRIZH",CmdUnicodeChar,0x0474}, {"cyrizh",CmdUnicodeChar,0x0475}, {"U", CmdWideBreveChar, 0}, {"", NULL, 0} }; static CommandArray spacingCommands[] = { {"", NULL, 0} }; /********************************************************************/ /* commands for begin-end environments */ /* only strings used in the form \begin{text} or \end{text} */ /********************************************************************/ static CommandArray params[] = { {"center", CmdAlign, PAR_CENTER}, {"flushright", CmdAlign, PAR_RIGHT}, {"flushleft", CmdAlign, PAR_LEFT}, {"document", Environment, DOCUMENT_MODE}, {"tabbing", CmdTabbing, TABBING}, {"figure", CmdFigure, FIGURE}, {"wrapfigure", CmdFigure, WRAP_FIGURE}, {"figure*", CmdFigure, FIGURE_1}, {"picture", CmdPicture, 0}, {"minipage", CmdMinipage, 0}, {"music", CmdMusic, 0}, {"pspicture", CmdPsPicture, 0}, {"psgraph", CmdPsGraph, 0}, {"quote", CmdQuote, QUOTE_MODE}, {"quotation", CmdQuote, QUOTATION_MODE}, {"enumerate", CmdList, ENUMERATE_MODE}, {"list", CmdList, ITEMIZE_MODE}, {"itemize", CmdList, ITEMIZE_MODE}, {"compactitem", CmdList, ITEMIZE_MODE}, {"description", CmdList, DESCRIPTION_MODE}, {"enumerate*", CmdList, ENUMERATE_MODE}, {"itemize*", CmdList, ITEMIZE_MODE}, {"description*", CmdList, DESCRIPTION_MODE}, {"basedescipt", CmdList, DESCRIPTION_MODE}, {"acronym", CmdBeginAcronym, 0}, {"asparaenum", CmdList, ENUMERATE_MODE}, {"inparaenum", CmdList, INPARAENUM_MODE}, {"compactenum", CmdList, ENUMERATE_MODE}, {"compactdesc", CmdList, DESCRIPTION_MODE}, {"compactitem", CmdList, ITEMIZE_MODE}, {"verbatim", CmdVerbatim, VERBATIM_1}, {"comment", CmdVerbatim, VERBATIM_4}, {"verse", CmdVerse, 0}, {"tabular", CmdTabular, TABULAR}, {"tabular*", CmdTabular, TABULAR_STAR}, {"longtable", CmdTabular, TABULAR_LONG}, {"longtable*", CmdTabular, TABULAR_LONG_STAR}, {"array", CmdArray, 1}, {"displaymath", CmdEquation, EQN_DISPLAYMATH}, {"equation", CmdEquation, EQN_EQUATION}, {"equation*", CmdEquation, EQN_EQUATION_STAR}, {"eqnarray*", CmdEquation, EQN_ARRAY_STAR}, {"eqnarray", CmdEquation, EQN_ARRAY}, {"align*", CmdEquation, EQN_ALIGN_STAR}, {"align", CmdEquation, EQN_ALIGN}, {"math", CmdEquation, EQN_MATH}, {"multicolumn", CmdMultiCol, 0}, {"letter", CmdLetter, 0}, {"table", CmdTable, TABLE}, {"table*", CmdTable, TABLE_STAR}, {"thebibliography", CmdThebibliography, 0}, {"abstract", CmdAbstract, ABSTRACT_BEGIN_END}, {"acknowledgments", CmdAcknowledgments, 0}, {"titlepage", CmdTitlepage, 0}, {"em", CmdEmphasize, F_EMPHASIZE_3}, {"rmfamily", CmdFontFamily, F_FAMILY_ROMAN_3}, {"sffamily", CmdFontFamily, F_FAMILY_SANSSERIF_3}, {"ttfamily", CmdFontFamily, F_FAMILY_TYPEWRITER_3}, {"bfseries", CmdFontSeries, F_SERIES_BOLD_3}, {"mdseries", CmdFontSeries, F_SERIES_MEDIUM_3}, {"itshape", CmdFontShape, F_SHAPE_ITALIC_3}, {"scshape", CmdFontShape, F_SHAPE_CAPS_3}, {"slshape", CmdFontShape, F_SHAPE_SLANTED_3}, {"it", CmdFontShape, F_SHAPE_ITALIC_4}, {"sc", CmdFontShape, F_SHAPE_CAPS_4}, {"sl", CmdFontShape, F_SHAPE_SLANTED_4}, {"bf", CmdFontShape, F_SERIES_BOLD_4}, {"rm", CmdFontFamily, F_FAMILY_ROMAN_4}, {"sf", CmdFontFamily, F_FAMILY_SANSSERIF_4}, {"tt", CmdFontFamily, F_FAMILY_TYPEWRITER_4}, {"Verbatim", CmdVerbatim, VERBATIM_2}, {"alltt", CmdVerbatim, VERBATIM_3}, {"latexonly", CmdIgnore, 0}, {"htmlonly", CmdIgnoreEnviron, IGNORE_HTMLONLY}, {"rawhtml", CmdIgnoreEnviron, IGNORE_RAWHTML}, {"theindex", CmdIgnoreEnviron, 0}, {"landscape", CmdTolerateEnviron, 0}, {"sloppypar", CmdTolerateEnviron, 0}, {"doublespace", CmdSpacingEnviron, 2}, {"spacing", CmdSpacingEnviron, 0}, {"small", CmdFontSizeEnviron, 12}, {"tiny", CmdFontSizeEnviron, 10}, {"scriptsize", CmdFontSizeEnviron, 14}, {"footnotesize", CmdFontSizeEnviron, 16}, {"normalsize", CmdFontSizeEnviron, 20}, {"large", CmdFontSizeEnviron, 24}, {"Large", CmdFontSizeEnviron, 28}, {"LARGE", CmdFontSizeEnviron, 34}, {"huge", CmdFontSizeEnviron, 40}, {"Huge", CmdFontSizeEnviron, 50}, {"tikzpicture",CmdTikzPicture, 0}, {"", NULL, 0} }; /* end of list */ /******************************************************************** purpose: commands for hyperlatex package ********************************************************************/ static CommandArray hyperlatexCommands[] = { {"link", CmdLink, 0}, {"xlink", CmdLink, 0}, {"Cite", CmdLabel, LABEL_HYPERCITE}, {"Ref", CmdLabel, LABEL_HYPERREF}, {"Pageref", CmdLabel, LABEL_HYPERPAGEREF}, {"S", CmdColsep, 0}, {"", NULL, 0} }; /* end of list */ /******************************************************************** purpose: commands for hyperref package ********************************************************************/ static CommandArray hyperrefCommands[] = { {"url", CmdHtml, LABEL_URL_HYPER}, {"href", CmdHtml, LABEL_HREF}, {"hypersetup", CmdIgnoreParameter, No_Opt_One_NormParam}, {"nolinkurl", CmdHtml, LABEL_NO_LINK_URL}, {"hyperbaseurl", CmdHtml, LABEL_BASE_URL}, {"hyperref", CmdHtml, LABEL_HYPERREF}, {"", NULL, 0} }; /* end of list */ /******************************************************************** purpose: commands for apacite package ********************************************************************/ static CommandArray apaciteCommands[] = { {"BBOP", CmdApaCite, 0}, /* Open parenthesis Default is "(" */ {"BBAA", CmdApaCite, 1}, /* Last ``and'' Default is "\&" */ {"BBAB", CmdApaCite, 2}, /* Last ``and'' Default is "and" */ {"BBAY", CmdApaCite, 3}, /* Punctuation Default is ", " */ {"BBC", CmdApaCite, 4}, /* Punctuation Default is "; " */ {"BBN", CmdApaCite, 5}, /* Punctuation Default is ", " */ {"BBCP", CmdApaCite, 6}, /* Closing parenthesis, Default is ")" */ {"BBOQ", CmdApaCite, 7}, /* Opening quote Default is the empty string */ {"BBCQ", CmdApaCite, 8}, /* Closing quote Default is the empty string */ {"BCBT", CmdApaCite, 9}, /* Comma Default is "," */ {"BCBL", CmdApaCite, 10}, /* Comma Default is "," */ {"BOthers", CmdApaCite, 11}, /* Used for ``others'' Default is "et~al." */ {"BIP", CmdApaCite, 12}, /* ``In press'', Default is "in press" */ {"BAnd", CmdApaCite, 13}, /* Used as ``and'' Default is "&" */ {"BED", CmdApaCite, 14}, /* Editor Default is "Ed." */ {"BEDS", CmdApaCite, 15}, /* Editors Default is "Eds." */ {"BTRANS", CmdApaCite, 16}, /* Translator. Default is "Trans." */ {"BTRANSS", CmdApaCite, 17}, /* Translators. Default is "Trans." */ {"BCHAIR", CmdApaCite, 18}, /* Chair Default is "Chair" */ {"BCHAIRS", CmdApaCite, 19}, /* Chairs. Default is "Chairs" */ {"BVOL", CmdApaCite, 20}, /* Volume, Default is "Vol." */ {"BVOLS", CmdApaCite, 21}, /* Volumes, Default is "Vols." */ {"BNUM", CmdApaCite, 22}, /* Number, Default is "No." */ {"BNUMS", CmdApaCite, 23}, /* Numbers, Default is "Nos." */ {"BEd", CmdApaCite, 24}, /* Edition, Default is "ed." */ {"BPG", CmdApaCite, 25}, /* Page, default is "p." */ {"BPGS", CmdApaCite, 26}, /* Pages, default is "pp." */ {"BTR", CmdApaCite, 27}, /* technical report Default is "Tech.\ Rep." */ {"BPhD", CmdApaCite, 28}, /* Default is "Doctoral dissertation" */ {"BUPhD", CmdApaCite, 29}, /* Unpublished PhD Default is "Unpublished doctoral dissertation" */ {"BMTh", CmdApaCite, 30}, /* MS thesis Default is "Master's thesis" */ {"BUMTh", CmdApaCite, 31}, /* unpublished MS Default is "Unpublished master's thesis" */ {"BOWP", CmdApaCite, 32}, /* default is "Original work published " */ {"BREPR", CmdApaCite, 33}, /* default is "Reprinted from " */ {"BCnt", CmdApaCite, 34}, /* convert number to letter */ {"BCntIP", CmdApaCite, 34}, /* convert number to letter */ {"BBA", CmdApaCite, 35}, /* "&" in paren, "and" otherwise */ {"AX", CmdApaCite, 36}, /* index name */ {"BPBI", CmdApaCite,37}, /* Period between initials */ {"BIn", CmdApaCite, 38}, {"APACyear", CmdApaCite, CITE_APA_CITE_YEAR}, {"APACmetastar", CmdApaCite, CITE_APA_CITE_METASTAR}, {"APACciteatitle", CmdApaCite, CITE_APA_CITE_A_TITLE}, {"APACcitebtitle", CmdApaCite, CITE_APA_CITE_B_TITLE}, {"APACinsertmetastar", CmdApaCite, CITE_APA_CITE_INSERT}, {"APACrefYearMonthDay", CmdApaCite, CITE_APA_YMD}, {"APACrefatitle", CmdApaCite, CITE_APA_REF_A_TITLE}, {"APACrefbtitle", CmdApaCite, CITE_APA_REF_B_TITLE}, {"APACjournalVolNumPages", CmdApaCite, CITE_APA_JVNP}, {"APACrefYear", CmdApaCite, CITE_APA_REF_YEAR}, {"APACaddressPublisher", CmdApaCite, CITE_APA_ADD_PUB}, {"PrintBackRefs", CmdApaCite, CITE_PRINT_BACK_REFS}, {"PrintCardinal", CmdApaCite, CITE_PRINT_CARDINAL}, {"PrintOrdinal", CmdApaCite, CITE_PRINT_ORDINAL}, {"APACaddressPublisherEqAuth", CmdApaCite, CITE_APA_ADD_PUB_EQ_AUTHOR}, {"APACrefaetitle", CmdApaCite, CITE_APA_REF_A_E_TITLE}, {"APACrefbetitle", CmdApaCite, CITE_APA_REF_B_E_TITLE}, {"APACmonth", CmdApaCite, CITE_APA_MONTH}, {"APACbVolEdTR", CmdApaCite, CITE_APA_B_VOL_ED_TR}, {"APACaddressInstitution", CmdApaCite, CITE_APA_ADD_INST}, {"APAChowpublished", CmdApaCite, CITE_APA_HOW}, {"APACorigyearnote", CmdApaCite, CITE_APA_ORIG_YEAR_NOTE}, {"APACrefnote", CmdApaCite, CITE_APA_REF_NOTE}, {"APACbVolEdTRpgs", CmdApaCite, CITE_APA_B_VOL_ED_TR_PGS}, {"APACorigjournalnote", CmdApaCite, CITE_APA_ORIG_JOUR}, {"APACaddressInstitutionEqAuth", CmdApaCite, CITE_APA_ADD_PUB_EQ_AUTHOR}, {"unskip", CmdApaCite, CITE_APA_UNSKIP}, {"Bem", CmdEmphasize, F_EMPHASIZE_2}, {"BCAY", CmdBCAY, 0}, {"citeauthoryear", CmdBCAY, 0}, {"fullcite", CmdCite, CITE_FULL}, {"shortcite", CmdCite, CITE_SHORT}, {"citeNP", CmdCite, CITE_CITE_NP}, {"fullciteNP", CmdCite, CITE_FULL_NP}, {"shortciteNP", CmdCite, CITE_SHORT_NP}, {"citeA", CmdCite, CITE_CITE_A}, {"fullciteA", CmdCite, CITE_FULL_A}, {"shortciteA", CmdCite, CITE_SHORT_A}, {"citeauthor", CmdCite, CITE_CITE_AUTHOR}, {"fullciteauthor", CmdCite, CITE_FULL_AUTHOR}, {"shortciteauthor", CmdCite, CITE_SHORT_AUTHOR}, {"citeyear", CmdCite, CITE_YEAR}, {"citeyearNP", CmdCite, CITE_YEAR_NP}, {"shorttitle", CmdIgnoreParameter, No_Opt_One_NormParam}, {"rightheader", CmdIgnoreParameter, No_Opt_One_NormParam}, {"leftheader", CmdIgnoreParameter, No_Opt_One_NormParam}, {"", NULL, 0} }; /******************************************************************** purpose: commands for apacite package ********************************************************************/ static CommandArray natbibCommands[] = { {"cite", CmdNatbibCite, CITE_CITE}, {"citet", CmdNatbibCite, CITE_T}, {"citet*", CmdNatbibCite, CITE_T_STAR}, {"citep", CmdNatbibCite, CITE_P}, {"citep*", CmdNatbibCite, CITE_P_STAR}, {"citealt", CmdNatbibCite, CITE_ALT}, {"citealp", CmdNatbibCite, CITE_ALP}, {"citealt*", CmdNatbibCite, CITE_ALT_STAR}, {"citealp*", CmdNatbibCite, CITE_ALP_STAR}, {"citetext", CmdNatbibCite, CITE_TEXT}, {"citeauthor", CmdNatbibCite, CITE_AUTHOR}, {"citeauthor*", CmdNatbibCite, CITE_AUTHOR_STAR}, {"citeyear", CmdNatbibCite, CITE_YEAR}, {"citeyearpar", CmdNatbibCite, CITE_YEAR_P}, {"Citet", CmdNatbibCite, CITE_T_CAP}, {"Citep", CmdNatbibCite, CITE_P_CAP}, {"Citealt", CmdNatbibCite, CITE_ALT_CAP}, {"Citealp", CmdNatbibCite, CITE_ALP_CAP}, {"Citeauthor", CmdNatbibCite, CITE_AUTHOR_CAP}, {"bibpunct", CmdBibpunct, 0}, {"natexlab", CmdNatexlab, 0}, {"", NULL, 0} }; /******************************************************************** purpose: commands for harvard package ********************************************************************/ static CommandArray harvardCommands[] = { {"cite", CmdHarvardCite, CITE_CITE}, {"citeasnoun", CmdHarvardCite, CITE_AS_NOUN}, {"possessivecite", CmdHarvardCite, CITE_POSSESSIVE}, {"citeaffixed", CmdHarvardCite, CITE_AFFIXED}, {"citeyear", CmdHarvardCite, CITE_YEAR}, {"citeyear*", CmdHarvardCite, CITE_YEAR_STAR}, {"citename", CmdHarvardCite, CITE_NAME}, {"harvarditem", CmdHarvard, CITE_HARVARD_ITEM}, {"harvardand", CmdHarvard, CITE_HARVARD_AND}, {"harvardyearleft", CmdHarvard, CITE_HARVARD_YEAR_LEFT}, {"harvardyearright", CmdHarvard, CITE_HARVARD_YEAR_RIGHT}, {"", NULL, 0} }; /******************************************************************** purpose: commands for authordate package ********************************************************************/ static CommandArray authordateCommands[] = { {"citename", CmdCiteName, 0}, {"shortcite", CmdCite, CITE_SHORT}, {"", NULL, 0} }; /******************************************************************** purpose: commands for verbatim commands (placeholder) ********************************************************************/ static CommandArray verbatimCommands[] = { {"", NULL, 0} }; /******************************************************************** purpose: commands for quote commands (placeholder) ********************************************************************/ static CommandArray quoteCommands[] = { {"", NULL, 0} }; /******************************************************************** purpose: commands for quotation commands (placeholder) ********************************************************************/ static CommandArray quotationCommands[] = { {"", NULL, 0} }; /******************************************************************** purpose: commands for verse commands (placeholder) ********************************************************************/ static CommandArray verseCommands[] = { {"", NULL, 0} }; /******************************************************************** purpose: commands for generic commands (placeholder) ********************************************************************/ static CommandArray genericCommands[] = { {"", NULL, 0} }; /******************************************************************** purpose: commands for bibliography commands (placeholder) ********************************************************************/ static CommandArray bibliographyCommands[] = { {"", NULL, 0} }; /******************************************************************** purpose: commands for ignored commands (placeholder) ********************************************************************/ static CommandArray ignoreCommands[] = { {"", NULL, 0} }; int CurrentEnvironmentCount(void) /**************************************************************************** purpose: to eliminate the iEnvCount global variable ****************************************************************************/ { return iEnvCount; } /**************************************************************************** purpose: returns a name for the current environment ****************************************************************************/ static char *EnvironmentName(CommandArray *code) { if (code == PreambleCommands) return strdup("preamble"); if (code == commands) return strdup("document"); if (code == ItemizeCommands) return strdup("itemize"); if (code == EnumerateCommands) return strdup("enumerate"); if (code == DescriptionCommands) return strdup("description"); if (code == InparaenumCommands) return strdup("inparaenum"); if (code == LetterCommands) return strdup("letter"); if (code == GermanModeCommands) return strdup("german"); if (code == FrenchModeCommands) return strdup("french"); if (code == RussianModeCommands) return strdup("russian"); if (code == CzechModeCommands) return strdup("czech"); if (code == FigureCommands) return strdup("figure or wrapfigure"); if (code == ignoreCommands) return strdup("unknown environment"); if (code == hyperlatexCommands) return strdup("hyperlatex"); if (code == apaciteCommands) return strdup("apacite"); if (code == natbibCommands) return strdup("natbib"); if (code == harvardCommands) return strdup("harvard"); if (code == authordateCommands) return strdup("authordate"); if (code == verbatimCommands) return strdup("verbatim"); if (code == quoteCommands) return strdup("quote"); if (code == quotationCommands) return strdup("quotation"); if (code == bibliographyCommands) return strdup("bibliography"); if (code == verseCommands) return strdup("verse"); if (code == genericCommands) return strdup("generic"); if (code == acronymCommands) return strdup("acronym"); if (code == spacingCommands) return strdup("setpace"); return strdup("unknown"); } /**************************************************************************** purpose: prints the names of all the current environments ****************************************************************************/ #if 0 static void WriteEnvironmentStack(void) { int i; char *s; for (i=0; i (%d environments to look through)", cCommand, iEnvCount); user_def_index = existsDefinition(cCommand); if (user_def_index > -1) { macro_string = expandDefinition(user_def_index); diagnostics(5, "CallCommandFunc <%s> expanded to <%s>", cCommand, macro_string); ConvertString(macro_string); free(macro_string); return TRUE; } /* search backwards through chain of environments*/ for (iEnv = iEnvCount - 1; iEnv >= 0; iEnv--) { /* test every command in the current enviroment */ iCommand = 0; while (strcmp(Environments[iEnv][iCommand].cmd_name, "") != 0) { /* if (iCommand<3) diagnostics(1,"CallCommandFunc (%d,%3d) Trying %s",iEnv,iCommand,Environments[iEnv][iCommand].cmd_name); */ if (strcmp(Environments[iEnv][iCommand].cmd_name, cCommand) == 0) { if (Environments[iEnv][iCommand].func == NULL) return FALSE; if (*Environments[iEnv][iCommand].func == CmdIgnoreParameter) { diagnostics(2, "Unknown command '\\%s'", cCommand); } diagnostics(5, "CallCommandFunc Found '%s' iEnvCommand=%d number=%d", Environments[iEnv][iCommand].cmd_name, iEnv, iCommand); (*Environments[iEnv][iCommand].func) ((Environments[iEnv][iCommand].param)); return TRUE; /* Command Function found */ } ++iCommand; } } return FALSE; } void CallParamFunc(char *cCommand, int AddParam) /**************************************************************************** purpose: Try to call the environment-function for the commandname params: cCommand - string with command name AddParam - param "ORed"(||) to the int param of command-funct returns: sucess or not globals: command-functions have side effects or recursive calls ****************************************************************************/ { int i = 0; char unknown_environment[100]; while (strcmp(params[i].cmd_name, "") != 0) { if (strcmp(params[i].cmd_name, cCommand) == 0) { assert(params[i].func != NULL); (*params[i].func) ((params[i].param) | AddParam); return; /* command function found */ } ++i; } /* unknown environment must be ignored */ if (AddParam == ON) { snprintf(unknown_environment, 100, "\\%s%s%s", "end{", cCommand, "}"); Ignore_Environment(cCommand); diagnostics(WARNING, "Unknown environment \\begin{%s} ... \\end{%s}", cCommand, cCommand); } } /**************************************************************************** purpose: returns a name for the current environment number ****************************************************************************/ static char *EnvironmentNameByNumber(int n) { if (n<0) return ""; return EnvironmentName(Environments[n]); } void PushEnvironment(int code) /**************************************************************************** purpose: adds the command list for a specific environment to the list of commands searched through. params: constant identifying the environment globals: changes Environment - array of active environments iEnvCount - counter of active environments ****************************************************************************/ { char *diag; g_par_indent_array[iEnvCount] = getLength("parindent"); g_left_indent_array[iEnvCount] = getLeftMarginIndent(); g_right_indent_array[iEnvCount] = getRightMarginIndent(); g_align_array[iEnvCount] = getAlignment(); PushFontSettings(); switch (code) { case PREAMBLE_MODE: Environments[iEnvCount] = PreambleCommands; break; case DOCUMENT_MODE: Environments[iEnvCount] = commands; break; case ITEMIZE_MODE: Environments[iEnvCount] = ItemizeCommands; break; case ENUMERATE_MODE: Environments[iEnvCount] = EnumerateCommands; break; case INPARAENUM_MODE: Environments[iEnvCount] = InparaenumCommands; break; case LETTER_MODE: Environments[iEnvCount] = LetterCommands; break; case DESCRIPTION_MODE: Environments[iEnvCount] = DescriptionCommands; break; case GERMAN_MODE: Environments[iEnvCount] = GermanModeCommands; break; case FRENCH_MODE: Environments[iEnvCount] = FrenchModeCommands; break; case RUSSIAN_MODE: Environments[iEnvCount] = RussianModeCommands; break; case CZECH_MODE: Environments[iEnvCount] = CzechModeCommands; break; case FIGURE_MODE: Environments[iEnvCount] = FigureCommands; break; case HYPERLATEX_MODE: Environments[iEnvCount] = hyperlatexCommands; break; case APACITE_MODE: Environments[iEnvCount] = apaciteCommands; break; case NATBIB_MODE: Environments[iEnvCount] = natbibCommands; break; case HARVARD_MODE: Environments[iEnvCount] = harvardCommands; break; case AUTHORDATE_MODE: Environments[iEnvCount] = authordateCommands; break; case VERBATIM_MODE: Environments[iEnvCount] = verbatimCommands; break; case QUOTATION_MODE: Environments[iEnvCount] = quotationCommands; break; case QUOTE_MODE: Environments[iEnvCount] = quoteCommands; break; case VERSE_MODE: Environments[iEnvCount] = verseCommands; break; case BIBLIOGRAPHY_MODE: Environments[iEnvCount] = bibliographyCommands; break; case GENERIC_MODE: Environments[iEnvCount] = genericCommands; break; case HYPERREF_MODE: Environments[iEnvCount] = hyperrefCommands; break; case IGNORE_MODE: Environments[iEnvCount] = ignoreCommands; break; case ACRONYM_MODE: Environments[iEnvCount] = acronymCommands; break; case SPACING_MODE: Environments[iEnvCount] = spacingCommands; break; default: diagnostics(ERROR, "assertion failed at function PushEnvironment"); } iEnvCount++; diag = EnvironmentNameByNumber(iEnvCount-1); diagnostics(4, "\\begin{%s} [%d]", diag, iEnvCount-1); free(diag); /* WriteEnvironmentStack();*/ } /**************************************************************************** purpose: removes the environment-commands list added by last PushEnvironment; globals: changes Environment - array of active environments iEnvCount - counter of active environments ****************************************************************************/ void PopEnvironment(void) { char *this_env, *last_env; this_env = EnvironmentNameByNumber(iEnvCount-1); last_env = EnvironmentNameByNumber(iEnvCount-2); /* always pop the current environment */ --iEnvCount; Environments[iEnvCount] = NULL; setLength("parindent", g_par_indent_array[iEnvCount]); setLeftMarginIndent(g_left_indent_array[iEnvCount]); setRightMarginIndent(g_right_indent_array[iEnvCount]); setAlignment(g_align_array[iEnvCount]); PopFontSettings(); diagnostics(3, "\\end{%s} [%d]", this_env, iEnvCount-1); free(this_env); free(last_env); /* WriteEnvironmentStack(); */ } latex2rtf-2.3.18/parser.c0000777000175000017500000011431013050672355015371 0ustar wilfriedwilfried /* parser.c - parser for LaTeX code Copyright (C) 1998-2002 The Free Software Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. This file is available from http://sourceforge.net/projects/latex2rtf/ Authors: 1998-2000 Georg Lehner 2001-2007 Scott Prahl */ #include #include #include #include #include "main.h" #include "commands.h" #include "cfg.h" #include "stack.h" #include "utils.h" #include "parser.h" #include "fonts.h" #include "lengths.h" #include "definitions.h" #include "funct1.h" #include "encodings.h" typedef struct InputStackType { char *string; char *string_start; FILE *file; char *file_name; int file_line; } InputStackType; #define PARSER_SOURCE_MAX 100 #define SCAN_BUFFER_SIZE 5000 static InputStackType g_parser_stack[PARSER_SOURCE_MAX]; static int g_parser_depth = -1; static char *g_parser_string = "stdin"; static FILE *g_parser_file = NULL; static int g_parser_line = 1; static int g_parser_include_level = 0; static char g_parser_currentChar; /* Global current character */ static char g_parser_lastChar; static char g_parser_penultimateChar; static int g_parser_backslashes; #define TRACK_LINE_NUMBER_MAX 10 static int g_track_line_number_stack[TRACK_LINE_NUMBER_MAX]; static int g_track_line_number = -1; void PushTrackLineNumber(int flag) /*************************************************************************** purpose: set whether or not line numbers should be tracked in LaTeX source file ****************************************************************************/ { if (g_track_line_number >= TRACK_LINE_NUMBER_MAX) diagnostics(ERROR, "scan ahead stack too large! Sorry."); g_track_line_number++; g_track_line_number_stack[g_track_line_number] = flag; } void PopTrackLineNumber(void) /*************************************************************************** purpose: restore last state of line numbers tracking in LaTeX source file ****************************************************************************/ { if (g_track_line_number < 0) diagnostics(ERROR, "scan ahead stack too small! Sorry."); g_track_line_number--; } /*************************************************************************** purpose: returns the current line number of the text being processed ****************************************************************************/ int CurrentLineNumber(void) { return g_parser_line; } void UpdateLineNumber(char *s) /*************************************************************************** purpose: advances the line number for each '\n' in s ****************************************************************************/ { if (s == NULL) return; while (*s != '\0') { if (*s == '\n') g_parser_line++; s++; } } /*************************************************************************** purpose: returns the current file descriptor ****************************************************************************/ int CurrentFileDescriptor(void) { int fd=0; if (g_parser_file) fd = fileno(g_parser_file); return fd; } char *CurrentFileName(void) /*************************************************************************** purpose: returns the filename of the text being processed ****************************************************************************/ { char *s = "(Not set)"; if (g_parser_stack[g_parser_depth].file_name) return g_parser_stack[g_parser_depth].file_name; else return s; } /* The following two routines allow parsing of multiple files and strings */ int PushSource(const char *filename, const char *string) /*************************************************************************** purpose: change the source used by getRawTexChar() to either file or string --> pass NULL for unused argument (both NULL means use stdin) --> PushSource duplicates string ****************************************************************************/ { char s[50]; FILE *p = NULL; char *name = NULL; int i; int line = 1; if (0) { diagnostics(WARNING, "Before PushSource** line=%d, g_parser_depth=%d, g_parser_include_level=%d", g_parser_line, g_parser_depth, g_parser_include_level); for (i = 0; i <= g_parser_depth; i++) { if (g_parser_stack[i].file) diagnostics(WARNING, "i=%d file =%s, line=%d", i, g_parser_stack[i].file_name, g_parser_stack[i].file_line); else { strncpy_printable(s, g_parser_stack[i].string, 25); diagnostics(WARNING, "i=%d string =%s, line=%d", i, s, g_parser_stack[i].file_line); } } } /* save current values for linenumber and string */ if (g_parser_depth >= 0) { g_parser_stack[g_parser_depth].file_line = g_parser_line; g_parser_stack[g_parser_depth].string = g_parser_string; } /* first test to see if we should use stdin */ if ((filename == NULL || strcmp(filename, "-") == 0) && string == NULL) { g_parser_include_level++; g_parser_line = 1; name = strdup("stdin"); p = stdin; /* if not then try to open a file */ } else if (filename) { p = my_fopen((char *)filename, "rb"); if (p == NULL) return 1; g_parser_include_level++; g_parser_line = 1; name = strdup(filename); } else { name = CurrentFileName(); line = CurrentLineNumber(); } g_parser_depth++; if (g_parser_depth >= PARSER_SOURCE_MAX) diagnostics(ERROR, "More than %d PushSource() calls", (int) PARSER_SOURCE_MAX); g_parser_string = (string) ? strdup(string) : NULL; g_parser_stack[g_parser_depth].string = g_parser_string; g_parser_stack[g_parser_depth].string_start = g_parser_string; g_parser_stack[g_parser_depth].file = p; g_parser_stack[g_parser_depth].file_line = line; g_parser_stack[g_parser_depth].file_name = name; g_parser_file = p; g_parser_string = g_parser_stack[g_parser_depth].string; if (g_parser_file) { diagnostics(3, "Opening Source File %s", g_parser_stack[g_parser_depth].file_name); } else { diagnostics(4, "Opening Source string"); show_string(5, g_parser_string, "opening"); } if (0) { diagnostics(WARNING, "After PushSource** line=%d, g_parser_depth=%d, g_parser_include_level=%d", g_parser_line, g_parser_depth, g_parser_include_level); for (i = 0; i <= g_parser_depth; i++) { if (g_parser_stack[i].file) diagnostics(WARNING, "i=%d file =%s, line=%d", i, g_parser_stack[i].file_name, g_parser_stack[i].file_line); else { strncpy_printable(s, g_parser_stack[i].string, 25); diagnostics(WARNING, "i=%d string =%s, line=%d", i, s, g_parser_stack[i].file_line); } } } return 0; } int StillSource(void) /*************************************************************************** purpose: figure out if text remains to be processed ****************************************************************************/ { if (g_parser_file) return (!feof(g_parser_file)); else return (*g_parser_string != '\0'); } void EndSource(void) { if (g_parser_file) fseek(g_parser_file, 0, SEEK_END); else *g_parser_string = '\0'; return; } void PopSource(void) /*************************************************************************** purpose: return to the previous source ****************************************************************************/ { char s[50]; int i; if (g_parser_depth < 0) { diagnostics(1, "Hmmm. More PopSource() calls than PushSource() calls"); return; } if (0) { diagnostics(WARNING, "Before PopSource** line=%d, g_parser_depth=%d, g_parser_include_level=%d", g_parser_line, g_parser_depth, g_parser_include_level); for (i = 0; i <= g_parser_depth; i++) { if (g_parser_stack[i].file) diagnostics(WARNING, "i=%d file =%s, line=%d", i, g_parser_stack[i].file_name, g_parser_stack[i].file_line); else { strncpy_printable(s, g_parser_stack[i].string, 25); diagnostics(WARNING, "i=%d string =%s, line=%d", i, s, g_parser_stack[i].file_line); } } } if (g_parser_file) { diagnostics(3, "Closing Source File '%s'", g_parser_stack[g_parser_depth].file_name); fclose(g_parser_file); free(g_parser_stack[g_parser_depth].file_name); g_parser_stack[g_parser_depth].file_name = NULL; g_parser_include_level--; } if (g_parser_string) { if (strlen(g_parser_stack[g_parser_depth].string_start) < 49) strcpy(s, g_parser_stack[g_parser_depth].string_start); else { strncpy(s, g_parser_stack[g_parser_depth].string_start, 49); s[49] = '\0'; } show_string(5, s, "closing"); free(g_parser_stack[g_parser_depth].string_start); g_parser_stack[g_parser_depth].string_start = NULL; } g_parser_depth--; if (g_parser_depth >= 0) { g_parser_string = g_parser_stack[g_parser_depth].string; g_parser_file = g_parser_stack[g_parser_depth].file; } if (g_parser_file && 0) { g_parser_line = g_parser_stack[g_parser_depth].file_line; } if (g_parser_file) diagnostics(4, "Resuming Source File '%s'", g_parser_stack[g_parser_depth].file_name); else { diagnostics(5, "Resuming Source string"); show_string(5,g_parser_string,"resuming"); } if (0) { diagnostics(WARNING, "After PopSource** line=%d, g_parser_depth=%d, g_parser_include_level=%d", g_parser_line, g_parser_depth, g_parser_include_level); for (i = 0; i <= g_parser_depth; i++) { if (g_parser_stack[i].file) diagnostics(WARNING, "i=%d file =%s, line=%d", i, g_parser_stack[i].file_name, g_parser_stack[i].file_line); else { strncpy_printable(s, g_parser_stack[i].string, 25); diagnostics(WARNING, "i=%d string =%s, line=%d", i, s, g_parser_stack[i].file_line); } } } } void CmdInclude(int code) /****************************************************************************** purpose: handles \input file, \input{file}, \include{file} code == 0 for \include code == 1 for \input ******************************************************************************/ { int cNext; char name[100]; int i; char *basename=NULL; char *texname=NULL; cNext = getNonSpace(); if (cNext == '{') { /* \input{gnu} or \include{gnu} */ ungetTexChar(cNext); basename = getBraceParam(); } else { /* \input gnu */ i = 0; while (cNext != '\0' && !isspace(cNext)) { if (i<99) name[i] = (char) cNext; i++; cNext = getTexChar(); } if (i<99) name[i] = '\0'; else { name[99] = '\0'; diagnostics(WARNING, "\\input filename '%s' more than 100 chars, skipping",name); return; } basename = strdup(name); } if (strstr(basename, "german.sty") != NULL) { GermanMode = TRUE; PushEnvironment(GERMAN_MODE); free(basename); return; } else if (strstr(basename, "french.sty") != NULL) { FrenchMode = TRUE; PushEnvironment(FRENCH_MODE); free(basename); return; } if (basename && strstr(basename, ".tex") == NULL && strstr(basename, ".ltx") == NULL) /* append .tex if missing */ texname = strdup_together(basename, ".tex"); if (texname && PushSource(texname, NULL) == 0) /* Try the .tex name first*/ diagnostics(WARNING, "Including file <%s> (.tex appended)", texname); else if (basename && PushSource(basename, NULL) == 0) /* Try the basename second*/ diagnostics(WARNING, "Including file <%s>", basename); /* \include{file} always starts a new page */ if (code == 0) PushSource(NULL, "\\pagebreak "); if (basename) free(basename); if (texname) free(texname); } #define CR (char) 0x0d #define LF (char) 0x0a int getParserDepth(void) { return g_parser_depth; } char getRawTexChar(void) /*************************************************************************** purpose: get the next character from the input stream with minimal filtering (CRLF or CR or LF -> \n) and '\t' -> ' ' it also keeps track of the line number should only be used by \verb and \verbatim and getTexChar() ****************************************************************************/ { int thechar; if (g_parser_file) { thechar = getc(g_parser_file); while (thechar == EOF) { if (!feof(g_parser_file)) diagnostics(ERROR, "Unknown file I/O error reading latex file\n"); else if (g_parser_include_level > 1) { PopSource(); /* go back to parsing parent */ thechar = getRawTexChar(); /* get next char from parent file */ } else thechar = '\0'; } if (thechar == CR) { /* convert CR, CRLF, or LF to \n */ thechar = getc(g_parser_file); if (thechar != LF && !feof(g_parser_file)) ungetc(thechar, g_parser_file); thechar = '\n'; } else if (thechar == LF) thechar = '\n'; else if (thechar == '\t') thechar = ' '; g_parser_currentChar = (char) thechar; } else { if (g_parser_string && *g_parser_string) { thechar = *g_parser_string; /* convert CR, CRLF, or LF to \n */ if (thechar == CR) { g_parser_string++; thechar = *g_parser_string; if (thechar != LF) g_parser_string--; thechar = '\n'; } else if (thechar == LF) thechar = '\n'; else if (thechar == '\t') thechar = ' '; g_parser_currentChar = thechar; g_parser_string++; } else if (g_parser_depth > 15) { PopSource(); /* go back to parsing parent */ g_parser_currentChar = getRawTexChar(); /* get next char from parent file */ } else g_parser_currentChar = '\0'; } if (g_parser_currentChar == '\n' && g_track_line_number_stack[g_track_line_number]) g_parser_line++; g_parser_penultimateChar = g_parser_lastChar; g_parser_lastChar = g_parser_currentChar; if (0) { if (g_parser_currentChar=='\n') diagnostics(5,"getRawTexChar = <\\n>"); else if (g_parser_currentChar=='\0') diagnostics(5,"getRawTexChar = <\\0> depth=%d, files=%d", g_parser_depth, g_parser_include_level); else diagnostics(5,"getRawTexChar = <%2c>",g_parser_currentChar); } /* if (g_parser_currentChar=='\0') exit(0);*/ return g_parser_currentChar; } #undef CR #undef LF void ungetTexChar(char c) /**************************************************************************** purpose: rewind the filepointer in the LaTeX-file by one ****************************************************************************/ { if (c == '\0') return; if (g_parser_file) { ungetc(c, g_parser_file); } else { g_parser_string--; if (g_parser_string && *g_parser_string) { *g_parser_string = c; } } if (c == '\n' && g_track_line_number_stack[g_track_line_number]) g_parser_line--; g_parser_currentChar = g_parser_lastChar; g_parser_lastChar = g_parser_penultimateChar; g_parser_penultimateChar = '\0'; /* no longer know what that it was */ g_parser_backslashes = 0; diagnostics(6, "after ungetTexChar=<%c> backslashes=%d line=%ld", c, g_parser_backslashes, g_parser_line); } int skipBOM(int cThis) { /* UTF8 Byte Order Mark */ if (cThis == 0xEF) { cThis = getRawTexChar(); if (cThis == 0xBB) { cThis = getRawTexChar(); if (cThis == 0xBF) { CmdFontEncoding(ENCODING_UTF8); cThis = getRawTexChar(); diagnostics(2, "UTF 8 BOM encountered, now assuming UTF8 input"); } } } /* UTF16 Byte Order Mark */ if (cThis == 0xFE) { cThis = getRawTexChar(); if (cThis == 0xFF) diagnostics(2, "UTF 16 is not supported, you might try converting to UTF8"); } return cThis; } char getTexChar() /*************************************************************************** purpose: get the next character from the input stream This should be the usual place to access the LaTeX file It filters the input stream so that % is handled properly ****************************************************************************/ { int cThis; cThis = getRawTexChar(); cThis = skipBOM(cThis); if (cThis == '\\') g_parser_backslashes++; else g_parser_backslashes = 0; if (0) { if (cThis=='\n') diagnostics(6,"getRawTexChar = <\\n> backslashes=%d line=%ld", g_parser_backslashes, g_parser_line); else if (cThis=='\0') diagnostics(6,"getRawTexChar = <\\0> backslashes=%d line=%ld", g_parser_backslashes, g_parser_line); else diagnostics(6,"getRawTexChar = <%2c> backslashes=%d line=%ld",cThis, g_parser_backslashes, g_parser_line); } return cThis; } void skipToEOL(void) /**************************************************************************** purpose: ignores anything from inputfile until the end of line. uses getRawTexChar() because % are not important ****************************************************************************/ { char cThis; while ((cThis = getRawTexChar()) && cThis != '\n') { } } char getNonBlank(void) /*************************************************************************** Description: get the next non-blank character from the input stream ****************************************************************************/ { char c; c = getTexChar(); while (c == ' ' || c == '\n') { c = getTexChar(); } return c; } char getNonSpace(void) /*************************************************************************** Description: get the next non-space character from the input stream ****************************************************************************/ { char c; while ((c = getTexChar()) && c == ' ') { } return c; } void skipSpaces(void) /*************************************************************************** Description: skip to the next non-space character from the input stream ****************************************************************************/ { char c; while ((c = getTexChar()) && c == ' ') { } ungetTexChar(c); } void skipWhiteSpace(void) /*************************************************************************** Description: skip over spaces and linefeeds ****************************************************************************/ { char c=getNonBlank(); ungetTexChar(c); } int getSameChar(char c) /*************************************************************************** Description: returns the number of characters that are the same as c ****************************************************************************/ { char cThis; int count = -1; do { cThis = getTexChar(); count++; } while (cThis == c); ungetTexChar(cThis); return count; } char *getDelimitedText(char left, char right, int raw) /****************************************************************************** purpose: general scanning routine that allocates and returns a string that is between "left" and "right" that accounts for escaping by '\' Example for getDelimitedText('{','}',TRUE) "the \{ is shown {\it by} a\\} blah blah" ----> "the \{ is shown {\it by} a\\" Note the missing opening brace in the example above It turns out that for getDelimitedText('[',']',TRUE) "the \] is shown {]} a\\] blah blah blah" ----> "the \] is shown {]} a\\" ******************************************************************************/ { char buffer[SCAN_BUFFER_SIZE]; int size = -1; int lefts_needed = 1; int brace_level = 0; int last_char_was_backslash = FALSE; while (lefts_needed && size < SCAN_BUFFER_SIZE-1) { size++; buffer[size] = (raw) ? getRawTexChar() : getTexChar(); if (last_char_was_backslash) { /* ignore \{ etc. */ if (buffer[size] == '\\') { /* two backslashes in a row */ last_char_was_backslash = FALSE; /* next char is not special */ continue; } } else if (buffer[size] == right && brace_level == 0) lefts_needed--; else if (buffer[size] == '{') brace_level++; else if (buffer[size] == '}') brace_level--; last_char_was_backslash = (buffer[size] == '\\') ? TRUE : FALSE; } buffer[size] = '\0'; /* overwrite final delimeter */ if (size == SCAN_BUFFER_SIZE-1) { diagnostics(WARNING, "Could not find closing '%c' in %d chars", right, SCAN_BUFFER_SIZE); return strdup(" NOT FOUND "); } return strdup(buffer); } void parseBrace(void) /**************************************************************************** Description: Skip text to balancing close brace ****************************************************************************/ { char *s = getDelimitedText('{', '}', FALSE); free(s); } static void parseBracket(void) /**************************************************************************** Description: Skip text to balancing close bracket ****************************************************************************/ { char *s = getDelimitedText('[', ']', FALSE); free(s); } void CmdIgnoreParameter(int code) /**************************************************************************** Description: Ignore the parameters of a command Example : CmdIgnoreParameter(21) for \command[opt1]{reg1}{reg2} code is a decimal # of the form "op" where `o' is the number of optional parameters (0-9) and `p' is the # of required parameters. The specified number of parameters is ignored. The order of the parameters in the LaTeX file does not matter. ****************************************************************************/ { int optParmCount = code / 10; int regParmCount = code % 10; char cThis; diagnostics(4, "CmdIgnoreParameter [%d] {%d}", optParmCount, regParmCount); while (regParmCount) { cThis = getNonBlank(); switch (cThis) { case '{': regParmCount--; parseBrace(); break; case '[': optParmCount--; parseBracket(); break; default: diagnostics(WARNING, "Ignored command missing {} expected %d - found %d", code % 10, code % 10 - regParmCount); ungetTexChar(cThis); return; } } /* Check for trailing optional parameter e.g., \item[label] */ if (optParmCount > 0) { cThis = getNonSpace(); if (cThis == '[') parseBracket(); else { ungetTexChar(cThis); return; } } return; } char *getSimpleCommand(void) /************************************************************************** purpose: returns a simple command e.g., \alpha\beta will return "\beta" ^ \! will return \! **************************************************************************/ { char buffer[128]; int size; buffer[0] = getTexChar(); if (buffer[0] != '\\') return NULL; buffer[1] = getTexChar(); for (size = 2; size < 127; size++) { buffer[size] = getRawTexChar(); /* \t \r '%' all end command */ if (!isalpha((int) buffer[size])) { ungetTexChar(buffer[size]); break; } } buffer[size] = '\0'; if (size == 127) { diagnostics(WARNING, "Misplaced brace."); diagnostics(ERROR, "Cannot find close brace in 127 characters"); } diagnostics(5, "getSimpleCommand result <%s>", buffer); return strdup(buffer); } char *getBracketParam(void) /****************************************************************************** purpose: return bracketed parameter \item[1] ---> "1" \item[] ---> "" \item the ---> NULL ^ ^ ^ \item [1] ---> "1" \item [] ---> "" \item the ---> NULL ^ ^ ^ ******************************************************************************/ { char c, *text; c = getNonBlank(); PushTrackLineNumber(FALSE); if (c == '[') { text = getDelimitedText('[', ']', FALSE); diagnostics(6, "getBracketParam [%s]", text); } else { ungetTexChar(c); text = NULL; diagnostics(6, "getBracketParam []"); } PopTrackLineNumber(); return text; } static char *getBraceParam0(int raw_flag) /************************************************************************** purpose: allocates and returns the next parameter in the LaTeX file Examples: (^ indicates the current file position) \alpha\beta ---> "\beta" \bar \alpha ---> "\alpha" ^ ^ \bar{text} ---> "text" \bar text ---> "t" ^ ^ _\alpha ---> "\alpha" _{\alpha} ---> "\alpha" ^ ^ _2 ---> "2" _{2} ---> "2" ^ ^ **************************************************************************/ { char s[2], *text; s[0] = getNonSpace(); /* skip spaces and one possible newline */ if (s[0] == '\n') s[0] = getNonSpace(); PushTrackLineNumber(FALSE); if (s[0] == '\\') { ungetTexChar(s[0]); text = getSimpleCommand(); } else if (s[0] == '{') text = getDelimitedText('{', '}', raw_flag); else { s[1] = '\0'; text = strdup(s); } PopTrackLineNumber(); diagnostics(6, "Leaving getBraceParam {%s}", text); return text; } char *getBraceParam(void) { return getBraceParam0(FALSE); } char *getBraceRawParam(void) { return getBraceParam0(TRUE); } void ignoreBraceParam(void) { char *p = getBraceParam(); if (NULL != p) free(p); } void ignoreBracketParam(void) { char *p = getBracketParam(); if (NULL != p) free(p); } char *getLeftRightParam(void) /************************************************************************** purpose: get text between \left ... \right **************************************************************************/ { char text[5000], s, *command; int i = 0; int lrdepth = 1; text[0] = '\0'; for (;;) { s = getTexChar(); if (s == '\\') { ungetTexChar(s); command = getSimpleCommand(); if (strcmp(command, "\\right") == 0) { lrdepth--; if (lrdepth == 0) { free(command); return strdup(text); } } my_strlcat(text + i, command, 5000); i += (int) strlen(command); if (i > 4950) diagnostics(ERROR, "Contents of \\left .. \\right too large."); if (strcmp(command, "\\left") == 0) lrdepth++; free(command); } else { text[i] = s; i++; text[i] = '\0'; } } return NULL; } char *getTexUntil(char *target, int raw) /************************************************************************** purpose: returns the portion of the file to the beginning of target returns: NULL if not found **************************************************************************/ { enum { BUFFSIZE = 200000 }; char *s; char buffer[BUFFSIZE]; int last_i = -1; int i = 0; /* size of string that has been read */ int j = 0; /* number of found characters */ int end_of_file_reached = FALSE; int len = (int) strlen(target); PushTrackLineNumber(FALSE); diagnostics(5, "getTexUntil target = <%s> raw_search = %d ", target, raw); while (j < len && i < BUFFSIZE) { if (i > last_i) { buffer[i] = (raw) ? getRawTexChar() : getTexChar(); last_i = i; if (buffer[i] != '\n') diagnostics(7, "next char = <%c>, %d, %d, %d", buffer[i], i, j, last_i); else diagnostics(7, "next char = <\\n>"); } if (buffer[i] == '\0') { end_of_file_reached = TRUE; diagnostics(7, "end of file reached"); break; } if (buffer[i] != target[j]) { if (j > 0) { /* false start, put back what was found */ diagnostics(8, "failed to match target[%d]=<%c> != buffer[%d]=<%c>", j, target[j], i, buffer[i]); i -= j; j = 0; } } else j++; i++; } if (i == BUFFSIZE) diagnostics(ERROR, "Could not find <%s> in %d characters \n\ Recompile with larger BUFFSIZE in getTexUntil() in parser.c", target, BUFFSIZE); if (!end_of_file_reached) /* do not include target in returned string */ buffer[i - len] = '\0'; else { diagnostics(ERROR, "Could not find <%s>", target); exit(1); } PopTrackLineNumber(); diagnostics(6, "buffer size =[%d], actual=[%d]", strlen(buffer), i - len); s = strdup(buffer); diagnostics(6, "getTexUntil result = %s", s); return s; } char *getSpacedTexUntil(char *target, int raw) /************************************************************************** purpose: returns the portion of the file to the beginning of target getSpacedTexUntil("\begin|{|document|}") will match the regular expression "\\begin *{ *document *}" **************************************************************************/ { enum { BUFFSIZE = 16000 }; char buffer[BUFFSIZE]; char *s; int buffer_pos, target_pos, target_len, max_buffer_pos, start_pos; PushTrackLineNumber(FALSE); diagnostics(5, "getSpacedTexUntil target = <%s> raw_search = %d ", target, raw); buffer_pos = 0; target_pos = 0; start_pos = 0; target_len = (int) strlen(target); max_buffer_pos = -1; do { /* the next character might already be in the buffer */ if (buffer_pos > max_buffer_pos) { buffer[buffer_pos] = (raw) ? getRawTexChar() : getTexChar(); max_buffer_pos = buffer_pos; } if (buffer[buffer_pos] == '\0') { diagnostics(ERROR, "end of file reached before '%s' was found",target); } if (buffer[buffer_pos] == target[target_pos]) { if (target_pos == 0) start_pos = buffer_pos; target_pos++; } /* does not match next character in target ... */ else if (target[target_pos] != '|') { if (target_pos > 0) /* false start, put back what was found */ buffer_pos = start_pos; target_pos = 0; /* next character in target is '|' */ } else if (buffer[buffer_pos] != ' ' && buffer[buffer_pos] != '\n') { /* next char is non-blank ... either match or reset */ target_pos++; /* move past wildcard */ if (buffer[buffer_pos] == target[target_pos]) { target_pos++; } else { buffer_pos = start_pos; target_pos = 0; } } if (0) { if (buffer[buffer_pos] != '\n') diagnostics(WARNING, "this char = <%c>, %d, %d, max=%d", buffer[buffer_pos], buffer_pos, target_pos, max_buffer_pos); else diagnostics(WARNING, "this char = <\\n>, %d, %d, max=%d", buffer[buffer_pos], buffer_pos, target_pos, max_buffer_pos); } buffer_pos++; if (buffer_pos == BUFFSIZE) diagnostics(ERROR, "Could not find <%s> in %d characters \n\ Recompile with larger BUFFSIZE in getTexUntil() in parser.c", target, BUFFSIZE); } while (target_pos < target_len); /* terminate buffer */ buffer[start_pos] = '\0'; PopTrackLineNumber(); s = strdup(buffer); diagnostics(6, "getSpacedTexUntil result = %s", s); return s; } int getDimension(void) /************************************************************************** purpose: reads a TeX dimension and returns size it twips eg: 3 in, -.013mm, 29 pc, + 42,1 dd, 1234sp **************************************************************************/ { char cThis, buffer[20]; int i = 0; float num; skipSpaces(); /* obtain optional sign */ cThis = getTexChar(); /* skip "to" */ if (cThis == 't') { getTexChar(); cThis = getTexChar(); } /* skip "spread" */ if (cThis == 's') { getTexChar(); getTexChar(); getTexChar(); getTexChar(); getTexChar(); cThis = getTexChar(); } if (cThis == '-' || cThis == '+') { buffer[i++] = cThis; skipSpaces(); cThis = getTexChar(); } /* obtain number */ if (cThis == '\\') buffer[i++] = '1'; else { while (i < 19 && (isdigit((int) cThis) || cThis == '.' || cThis == ',')) { if (cThis == ',') cThis = '.'; buffer[i++] = cThis; cThis = getTexChar(); } } ungetTexChar(cThis); buffer[i] = '\0'; diagnostics(4, "getDimension() raw number is <%s>", buffer); if (i == 19 || sscanf(buffer, "%f", &num) != 1) { diagnostics(WARNING, "Screwy number in TeX dimension"); diagnostics(WARNING, "getDimension() number is <%s>", buffer); return 0; } /* num *= 2; convert pts to twips */ /* obtain unit of measure */ skipSpaces(); buffer[0] = tolower((int) getTexChar()); if (buffer[0] == '\0') /* no units specified ... assume points */ return (int) (num * 20); /* skip "true" */ if (buffer[0] == 't') { getTexChar(); getTexChar(); getTexChar(); skipSpaces(); buffer[0] = tolower((int) getTexChar()); } if (buffer[0] != '\\') { buffer[1] = tolower((int) getTexChar()); buffer[2] = '\0'; diagnostics(4, "getDimension() dimension is <%s>", buffer); if (strstr(buffer, "pt")) return (int) (num * 20); else if (strstr(buffer, "pc")) return (int) (num * 12 * 20); else if (strstr(buffer, "in")) return (int) (num * 72.27 * 20); else if (strstr(buffer, "bp")) return (int) (num * 72.27 / 72 * 20); else if (strstr(buffer, "cm")) return (int) (num * 72.27 / 2.54 * 20); else if (strstr(buffer, "mm")) return (int) (num * 72.27 / 25.4 * 20); else if (strstr(buffer, "dd")) return (int) (num * 1238.0 / 1157.0 * 20); else if (strstr(buffer, "dd")) return (int) (num * 1238.0 / 1157 * 20); else if (strstr(buffer, "cc")) return (int) (num * 1238.0 / 1157.0 * 12.0 * 20); else if (strstr(buffer, "sp")) return (int) (num / 65536.0 * 20); else if (strstr(buffer, "ex")) return (int) (num * CurrentFontSize() * 0.5); else if (strstr(buffer, "em")) return (int) (num * CurrentFontSize()); else if (strstr(buffer, "in")) return (int) (num * 72.27 * 20); else { ungetTexChar(buffer[1]); ungetTexChar(buffer[0]); return (int) num; } } else { char *s, *t; ungetTexChar(buffer[0]); s = getSimpleCommand(); t = s + 1; /* skip initial backslash */ diagnostics(4, "getDimension() dimension is <%s>", t); num *= getLength(t); free(s); return (int) num; } } /*************************************************************************** purpose: return twips for \\, \\[1pt], \\*[1pt] ***************************************************************************/ int getSlashSlashParam(void) { char cThis, *vertical_space; int height = 0; cThis = getTexChar(); if (cThis != '*') ungetTexChar(cThis); vertical_space = getBracketParam(); if (vertical_space) { height = getStringDimension(vertical_space); free(vertical_space); } return height; } latex2rtf-2.3.18/chars.c0000777000175000017500000012506413050672355015205 0ustar wilfriedwilfried/* chars.c - Handle special TeX characters and logos Copyright (C) 2002 The Free Software Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. This file is available from http://sourceforge.net/projects/latex2rtf/ */ #include #include #include #include "main.h" #include "math.h" #include "commands.h" #include "fonts.h" #include "cfg.h" #include "ignore.h" #include "encodings.h" #include "parser.h" #include "chars.h" #include "funct1.h" #include "convert.h" #include "utils.h" #include "vertical.h" #include "fields.h" /***************************************************************************** purpose: emit a unicode character. values above 2^15 are negative the default_char should be a simple ascii 0-127 character ******************************************************************************/ static void putUnicodeChar(unsigned char b1, unsigned char b2, char default_char) { if (getTexMode() == MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); if (b1<128) fprintRTF("\\u%d%c",b1*256+b2,default_char); else fprintRTF("\\u%d%c",b1*256+b2-65536,default_char); } /****************************************************************************** * purpose : inserts a Unicode character *******************************************************************************/ void CmdUnicodeChar(int code) { unsigned char a,b; uint16_t thechar; if (getTexMode() == MODE_VERTICAL) changeTexMode(MODE_HORIZONTAL); thechar = code; a = thechar >> 8; b = thechar - a * 256; putUnicodeChar(a,b,'?'); } /***************************************************************************** purpose : converts characters with diaeresis, e.g., \"{a} or \ddot{a} ******************************************************************************/ void CmdUmlauteChar(int code) { int n = RtfFontNumber("STIXGeneral"); char *cParam = getBraceParam(); if (strstr(cParam, "\\i")) { fprintRTF("\\'ef"); free(cParam); return; } switch (cParam[0]) { case 'A': fprintRTF("\\'c4"); break; case 'E': fprintRTF("\\'cb"); break; case 'I': fprintRTF("\\'cf"); break; case 'O': fprintRTF("\\'d6"); break; case 'U': fprintRTF("\\'dc"); break; case 'a': fprintRTF("\\'e4"); break; case 'e': fprintRTF("\\'eb"); break; case 'i': fprintRTF("\\'ef"); break; case 'o': fprintRTF("\\'f6"); break; case 'u': fprintRTF("\\'fc"); break; case 'y': fprintRTF("\\'ff"); break; case 'Y': putUnicodeChar(0x01,0x78,'Y'); break; case 'H': putUnicodeChar(0x1E,0x26,'H'); break; case 'h': putUnicodeChar(0x1E,0x27,'h'); break; case 'W': putUnicodeChar(0x1E,0x83,'W'); break; case 'w': putUnicodeChar(0x1E,0x84,'w'); break; case 'X': putUnicodeChar(0x1E,0x8C,'X'); break; case 'x': putUnicodeChar(0x1E,0x8D,'x'); break; case 't': putUnicodeChar(0x1E,0x97,'t'); break; case '\0': fprintRTF(" \\u776."); break; default: fprintRTF("{\\f%d",n); fprintRTF("\\u776.}"); /* unicode combining character 0x308*/ ConvertString(cParam); break; } free(cParam); } /****************************************************************************** purpose: converts symbols with grave accents (\`{a}) from LaTeX to RTF ******************************************************************************/ void CmdGraveChar(int code) { int n = RtfFontNumber("STIXGeneral"); char *cParam = getBraceParam(); if (strstr(cParam, "\\i")) { fprintRTF("\\'ec"); free(cParam); return; } switch (cParam[0]) { case 'A': fprintRTF("\\'c0"); break; case 'E': fprintRTF("\\'c8"); break; case 'I': fprintRTF("\\'cc"); break; case 'O': fprintRTF("\\'d2"); break; case 'U': fprintRTF("\\'d9"); break; case 'a': fprintRTF("\\'e0"); break; case 'e': fprintRTF("\\'e8"); break; case 'i': fprintRTF("\\'ec"); break; case 'o': fprintRTF("\\'f2"); break; case 'u': fprintRTF("\\'f9"); break; case 'N': fprintRTF("\\u504N"); break; case 'n': fprintRTF("\\u505n"); break; case '\0': fprintRTF(" \\u768\\'60"); break; default: fprintRTF("{\\f%d",n); fprintRTF("\\u768\\'60}"); /* unicode combining character 0x0300 */ ConvertString(cParam); break; } free(cParam); } /****************************************************************************** purpose: converts symbols with acute accents (\'{a}) from LaTeX to RTF ******************************************************************************/ void CmdAcuteChar(int code) { int n = RtfFontNumber("STIXGeneral"); char *cParam = getBraceParam(); if (strstr(cParam, "\\i")) { fprintRTF("\\'ed"); free(cParam); return; } switch (cParam[0]) { case 'A': fprintRTF("\\'c1"); break; case 'E': fprintRTF("\\'c9"); break; case 'I': fprintRTF("\\'cd"); break; case 'O': fprintRTF("\\'d3"); break; case 'U': fprintRTF("\\'da"); break; case 'a': fprintRTF("\\'e1"); break; case 'e': fprintRTF("\\'e9"); break; case 'i': fprintRTF("\\'ed"); break; case 'o': fprintRTF("\\'f3"); break; case 'u': fprintRTF("\\'fa"); break; case 'y': fprintRTF("\\'fd"); break; case 'Y': fprintRTF("\\'dd"); break; case 'C': fprintRTF("\\u262C"); break; case 'c': fprintRTF("\\u263c"); break; case 'G': fprintRTF("\\u500G"); break; case 'g': fprintRTF("\\u501g"); break; case 'L': fprintRTF("\\u313L"); break; case 'l': fprintRTF("\\u314l"); break; case 'N': fprintRTF("\\u323N"); break; case 'n': fprintRTF("\\u324n"); break; case 'R': fprintRTF("\\u340R"); break; case 'r': fprintRTF("\\u341r"); break; case 'S': fprintRTF("\\u346S"); break; case 's': fprintRTF("\\u347s"); break; case 'Z': fprintRTF("\\u377Z"); break; case 'z': fprintRTF("\\u378z"); break; case '\0': fprintRTF("\\'b4"); break; default: fprintRTF("{\\f%d",n); fprintRTF("\\u769\\'b4}"); /* unicode combining character 0x0301 */ ConvertString(cParam); break; } free(cParam); } /****************************************************************************** purpose: converts \H{o} ******************************************************************************/ void CmdDoubleAcuteChar(int code) { int n = RtfFontNumber("STIXGeneral"); char *cParam = getBraceParam(); switch (cParam[0]) { case 'O': putUnicodeChar(0x01,0x50,'O'); break; case 'o': putUnicodeChar(0x01,0x51,'o'); break; case 'U': putUnicodeChar(0x01,0x70,'U'); break; case 'u': putUnicodeChar(0x01,0x71,'u'); break; case '\0': putUnicodeChar(0x02,0xDD,'"'); break; default: fprintRTF("{\\f%d",n); fprintRTF("\\u779\"}"); /* unicode combining character 0x030B */ ConvertString(cParam); break; } free(cParam); } /****************************************************************************** purpose: converts special symbols from LaTeX to RTF ******************************************************************************/ void CmdMacronChar(int code) { int n = RtfFontNumber("STIXGeneral"); char *cParam = getBraceParam(); if (strstr(cParam, "\\i")) { putUnicodeChar(0x01,0x2B,'i'); free(cParam); return; } switch (cParam[0]) { case 'A': putUnicodeChar(0x01,0x00,'A'); break; case 'a': putUnicodeChar(0x01,0x01,'a'); break; case 'E': putUnicodeChar(0x01,0x12,'E'); break; case 'e': putUnicodeChar(0x01,0x13,'e'); break; case 'I': putUnicodeChar(0x01,0x2A,'l'); break; case 'i': putUnicodeChar(0x01,0x2B,'i'); break; case 'G': putUnicodeChar(0x1E,0x20,'G'); break; case 'g': putUnicodeChar(0x1E,0x21,'g'); break; case 'O': putUnicodeChar(0x01,0x4C,'O'); break; case 'o': putUnicodeChar(0x01,0x4D,'o'); break; case 'U': putUnicodeChar(0x01,0x6A,'U'); break; case 'u': putUnicodeChar(0x01,0x6B,'u'); break; case 'Y': putUnicodeChar(0x02,0x32,'Y'); break; case 'y': putUnicodeChar(0x02,0x33,'y'); break; case '\0': fprintRTF("\\'5f"); break; default: fprintRTF("{\\f%d",n); fprintRTF("\\u772\\'5f}"); /* unicode combining character 0x0304 */ ConvertString(cParam); break; } free(cParam); } /****************************************************************************** purpose: \^{o} and \hat{o} symbols from LaTeX to RTF ******************************************************************************/ void CmdHatChar(int code) { int n = RtfFontNumber("STIXGeneral"); char *cParam = getBraceParam(); switch (cParam[0]) { case 'a': fprintRTF("\\'e2"); break; case 'A': fprintRTF("\\'c2"); break; case 'e': fprintRTF("\\'ea"); break; case 'E': fprintRTF("\\'ca"); break; case 'i': fprintRTF("\\'ee"); break; case 'I': fprintRTF("\\'ce"); break; case 'o': fprintRTF("\\'f4"); break; case 'O': fprintRTF("\\'d4"); break; case 'u': fprintRTF("\\'fb"); break; case 'U': fprintRTF("\\'db"); break; case 'C': fprintRTF("\\u264C"); break; case 'c': fprintRTF("\\u265c"); break; case 'G': fprintRTF("\\u284G"); break; case 'g': fprintRTF("\\u285g"); break; case 'H': fprintRTF("\\u292H"); break; case 'h': fprintRTF("\\u293h"); break; case 'J': fprintRTF("\\u308J"); break; case 'S': fprintRTF("\\u348S"); break; case 's': fprintRTF("\\u349s"); break; case 'W': fprintRTF("\\u372W"); break; case 'w': fprintRTF("\\u373w"); break; case 'Y': fprintRTF("\\u374Y"); break; case 'y': fprintRTF("\\u375y"); break; case '\0': fprintRTF("\\'5e"); break; default: fprintRTF("{\\f%d",n); fprintRTF("\\u770\\'5e}"); /* unicode combining character 0x0302 */ ConvertString(cParam); break; } free(cParam); } /****************************************************************************** purpose: converts \r accents from LaTeX to RTF ******************************************************************************/ void CmdRingChar(int code) { int n = RtfFontNumber("STIXGeneral"); char *cParam; if (code == 1) { char c, d; c = getTexChar(); d = getTexChar(); if (c!='2' || d != '3') { fprintf(stderr, "sorry only \\accent23 is supported \n"); return; } } cParam = getBraceParam(); switch (cParam[0]) { case 'A': fprintRTF("\\'c5"); break; case 'a': fprintRTF("\\'e5"); break; case 'U': putUnicodeChar(0x01,0x6E,'U'); break; case 'u': putUnicodeChar(0x01,0x6F,'u'); break; case 'w': putUnicodeChar(0x01,0x98,'w'); break; case 'y': putUnicodeChar(0x01,0x99,'y'); break; case '\0': fprintRTF("\\'b0"); break; default: fprintRTF("{\\f%d",n); fprintRTF("\\u778\\'b0}"); /* unicode combining character 0x030A */ ConvertString(cParam); break; } free(cParam); } /****************************************************************************** purpose: converts \~{n} from LaTeX to RTF ******************************************************************************/ void CmdTildeChar(int code) { int n = RtfFontNumber("STIXGeneral"); char *cParam = getBraceParam(); if (strstr(cParam, "\\i")) { fprintRTF("\\u297i"); free(cParam); return; } switch (cParam[0]) { case 'A': fprintRTF("\\'c3"); break; case 'O': fprintRTF("\\'d5"); break; case 'a': fprintRTF("\\'e3"); break; case 'o': fprintRTF("\\'f5"); break; case 'n': fprintRTF("\\'f1"); break; case 'N': fprintRTF("\\'d1"); break; case 'I': fprintRTF("\\u296I"); break; case 'U': fprintRTF("\\u360U"); break; case 'u': fprintRTF("\\u361u"); break; case '\0': fprintRTF("\\'7e"); break; default: fprintRTF("{\\f%d",n); fprintRTF("\\u771\\'7e}"); /* unicode combining character 0x0303 */ ConvertString(cParam); break; } free(cParam); } /***************************************************************************** purpose: converts \c{c} from LaTeX to RTF ******************************************************************************/ void CmdCedillaChar(int code) { int n = RtfFontNumber("STIXGeneral"); char *cParam = getBraceParam(); switch (cParam[0]) { case 'C': fprintRTF("\\'c7"); break; case 'c': fprintRTF("\\'e7"); break; case 'G': putUnicodeChar(0x01,0x22,'G'); break; case 'g': putUnicodeChar(0x01,0x23,'g'); break; case 'K': putUnicodeChar(0x01,0x36,'K'); break; case 'k': putUnicodeChar(0x01,0x37,'k'); break; case 'L': putUnicodeChar(0x01,0x3B,'L'); break; case 'l': putUnicodeChar(0x01,0x3C,'l'); break; case 'N': putUnicodeChar(0x01,0x45,'N'); break; case 'n': putUnicodeChar(0x01,0x46,'n'); break; case 'R': putUnicodeChar(0x01,0x56,'R'); break; case 'r': putUnicodeChar(0x01,0x57,'r'); break; case 'S': putUnicodeChar(0x01,0x5E,'S'); break; case 's': putUnicodeChar(0x01,0x5F,'s'); break; case 'T': putUnicodeChar(0x01,0x62,'T'); break; case 't': putUnicodeChar(0x01,0x63,'t'); break; case 'E': putUnicodeChar(0x02,0x28,'E'); break; case 'e': putUnicodeChar(0x02,0x29,'e'); break; case '\0': fprintRTF("\\'b8"); break; default: fprintRTF("{\\f%d",n); fprintRTF("\\u807\\'b8}"); /* unicode combining character 0x0327 */ ConvertString(cParam); break; } free(cParam); } /***************************************************************************** purpose: converts \u{o} and \breve{o} ******************************************************************************/ void CmdBreveChar(int code) { int n = RtfFontNumber("STIXGeneral"); char *cParam = getBraceParam(); switch (cParam[0]) { case 'A': putUnicodeChar(0x01,0x02,'A'); break; case 'a': putUnicodeChar(0x01,0x03,'a'); break; case 'E': putUnicodeChar(0x01,0x14,'E'); break; case 'e': putUnicodeChar(0x01,0x15,'e'); break; case 'G': putUnicodeChar(0x01,0x1e,'G'); break; case 'g': putUnicodeChar(0x01,0x1f,'g'); break; case 'I': putUnicodeChar(0x01,0x2c,'I'); break; case 'i': putUnicodeChar(0x01,0x2d,'i'); break; case 'O': putUnicodeChar(0x01,0x4e,'O'); break; case 'o': putUnicodeChar(0x01,0x4f,'o'); break; case 'U': putUnicodeChar(0x01,0x6c,'U'); break; case 'c': putUnicodeChar(0x01,0x0D,'c'); break; case '\0': putUnicodeChar(0x02,0xD8,'u'); break; default: fprintRTF("{\\f%d",n); fprintRTF("\\u774u}"); /* unicode combining character 0x0306 */ ConvertString(cParam); break; } free(cParam); } /***************************************************************************** purpose: converts \U{i} ... probably specific to ot2 ******************************************************************************/ void CmdWideBreveChar(int code) { int n = RtfFontNumber("STIXGeneral"); char *cParam = getBraceParam(); switch (cParam[0]) { case 'U': CmdUnicodeChar(0x040E); break; case 'I': CmdUnicodeChar(0x0419); break; case 'i': CmdUnicodeChar(0x0439); break; case 'u': CmdUnicodeChar(0x0439); break; default: fprintRTF("{\\f%d",n); fprintRTF("\\u774u}"); /* unicode combining character 0x0306 */ ConvertString(cParam); break; } free(cParam); } /****************************************************************************** purpose: converts \v{a} need something that looks like \\O(a,\\S(\f1\'da)) in RTF file ******************************************************************************/ void CmdCaronChar(int code) { int n = RtfFontNumber("STIXGeneral"); char *cParam = getBraceParam(); switch (cParam[0]) { case 'C': putUnicodeChar(0x01,0x0C,'C'); break; case 'c': putUnicodeChar(0x01,0x0D,'c'); break; case 'D': putUnicodeChar(0x01,0x0E,'D'); break; case 'd': putUnicodeChar(0x01,0x0F,'d'); break; case 'E': putUnicodeChar(0x01,0x1A,'E'); break; case 'e': putUnicodeChar(0x01,0x1B,'e'); break; case 'L': putUnicodeChar(0x01,0x3D,'L'); break; case 'l': putUnicodeChar(0x01,0x3E,'l'); break; case 'N': putUnicodeChar(0x01,0x47,'N'); break; case 'n': putUnicodeChar(0x01,0x48,'n'); break; case 'R': putUnicodeChar(0x01,0x58,'R'); break; case 'r': putUnicodeChar(0x01,0x59,'r'); break; case 'S': putUnicodeChar(0x01,0x60,'S'); break; case 's': putUnicodeChar(0x01,0x61,'s'); break; case 'T': putUnicodeChar(0x01,0x64,'T'); break; case 't': putUnicodeChar(0x01,0x65,'t'); break; case 'Z': putUnicodeChar(0x01,0x7D,'Z'); break; case 'z': putUnicodeChar(0x01,0x7E,'z'); break; case 'A': putUnicodeChar(0x01,0xCD,'A'); break; case 'a': putUnicodeChar(0x01,0xCE,'a'); break; case 'I': putUnicodeChar(0x01,0xCF,'I'); break; case 'i': putUnicodeChar(0x01,0xD0,'i'); break; case 'O': putUnicodeChar(0x01,0xD1,'O'); break; case 'o': putUnicodeChar(0x01,0xD2,'o'); break; case 'U': putUnicodeChar(0x01,0xD3,'U'); break; case 'u': putUnicodeChar(0x01,0xD4,'u'); break; case 'G': putUnicodeChar(0x01,0xE6,'G'); break; case 'g': putUnicodeChar(0x01,0xE7,'g'); break; case 'K': putUnicodeChar(0x01,0xE8,'K'); break; case 'k': putUnicodeChar(0x01,0xE9,'k'); break; case 'j': putUnicodeChar(0x01,0xF0,'j'); break; case 'H': putUnicodeChar(0x02,0x1E,'H'); break; case 'h': putUnicodeChar(0x02,0x1F,'h'); break; case '\0': putUnicodeChar(0x02,0xC7,'-'); break; default: fprintRTF("{\\f%d",n); fprintRTF("\\u780-}"); /* unicode combining character 0x030C */ ConvertString(cParam); break; } free(cParam); } /****************************************************************************** purpose: converts \.{o} and \dot{o} from LaTeX to RTF need something that looks like \\O(a,\\S(\f2\'26)) in RTF file ******************************************************************************/ void CmdDotChar(int code) { int n = RtfFontNumber("STIXGeneral"); char *cParam = getBraceParam(); switch (cParam[0]) { case 'A': fprintRTF("\\u550A"); break; case 'a': fprintRTF("\\u551a"); break; case 'C': fprintRTF("\\u266C"); break; case 'c': fprintRTF("\\u267c"); break; case 'E': fprintRTF("\\u278E"); break; case 'e': fprintRTF("\\u279e"); break; case 'G': fprintRTF("\\u288G"); break; case 'g': fprintRTF("\\u289g"); break; case 'I': fprintRTF("\\u304I"); break; case 'O': fprintRTF("\\u558O"); break; case 'o': fprintRTF("\\u559o"); break; case 'Z': fprintRTF("\\u379Z"); break; case 'z': fprintRTF("\\u380z"); break; case '\0': putUnicodeChar(0x02,0xD9,'.'); break; default: fprintRTF("{\\f%d",n); fprintRTF("\\u775.}"); /* unicode combining character 0x0307 */ ConvertString(cParam); break; } free(cParam); } /****************************************************************************** purpose: converts chars with dots underneath \d{o} ******************************************************************************/ void CmdUnderdotChar(int code) { int n = RtfFontNumber("STIXGeneral"); char *cParam = getBraceParam(); if (strstr(cParam, "\\i")) { fprintRTF("\\u301i"); free(cParam); } switch (cParam[0]) { case 'B': putUnicodeChar(0x1E,0x04,'B'); break; case 'b': putUnicodeChar(0x1E,0x05,'b'); break; case 'D': putUnicodeChar(0x1E,0x0C,'D'); break; case 'd': putUnicodeChar(0x1E,0x0D,'d'); break; case 'H': putUnicodeChar(0x1E,0x24,'H'); break; case 'h': putUnicodeChar(0x1E,0x25,'h'); break; case 'K': putUnicodeChar(0x1E,0x32,'K'); break; case 'k': putUnicodeChar(0x1E,0x33,'k'); break; case 'L': putUnicodeChar(0x1E,0x36,'L'); break; case 'l': putUnicodeChar(0x1E,0x37,'l'); break; case 'M': putUnicodeChar(0x1E,0x42,'M'); break; case 'm': putUnicodeChar(0x1E,0x43,'m'); break; case 'N': putUnicodeChar(0x1E,0x46,'N'); break; case 'n': putUnicodeChar(0x1E,0x47,'n'); break; case 'R': putUnicodeChar(0x1E,0x5A,'R'); break; case 'r': putUnicodeChar(0x1E,0x5B,'r'); break; case 'S': putUnicodeChar(0x1E,0x62,'S'); break; case 's': putUnicodeChar(0x1E,0x63,'s'); break; case 'V': putUnicodeChar(0x1E,0x7E,'V'); break; case 'v': putUnicodeChar(0x1E,0x7F,'v'); break; case 'W': putUnicodeChar(0x1E,0x88,'W'); break; case 'w': putUnicodeChar(0x1E,0x89,'w'); break; case 'Z': putUnicodeChar(0x1E,0x92,'Z'); break; case 'z': putUnicodeChar(0x1E,0x93,'z'); break; case 'A': putUnicodeChar(0x1E,0xA0,'A'); break; case 'a': putUnicodeChar(0x1E,0xA1,'a'); break; case 'E': putUnicodeChar(0x1E,0xB8,'E'); break; case 'e': putUnicodeChar(0x1E,0xB9,'e'); break; case 'I': putUnicodeChar(0x1E,0xCA,'I'); break; case 'i': putUnicodeChar(0x1E,0xCB,'i'); break; case 'O': putUnicodeChar(0x1E,0xCC,'O'); break; case 'o': putUnicodeChar(0x1E,0xCD,'o'); break; case 'U': putUnicodeChar(0x1E,0xE4,'U'); break; case 'u': putUnicodeChar(0x1E,0xE5,'u'); break; case '\0': fprintRTF(" \\u803."); break; default: fprintRTF("{\\f%d",n); fprintRTF("\\u803.}"); /* unicode combining character 0x0323 */ ConvertString(cParam); break; } free(cParam); } /***************************************************************************** purpose: converts \vec{o} from LaTeX to RTF ******************************************************************************/ void CmdVecChar(int code) { int n = RtfFontNumber("STIXGeneral"); char *cParam = getBraceParam(); fprintRTF("{\\f%d ",n); putUnicodeChar(0x20,0xD7,'-'); /* COMBINING RIGHT ARROW ABOVE */ fprintRTF("}"); ConvertString(cParam); free(cParam); } /****************************************************************************** purpose: converts \b{o} ******************************************************************************/ void CmdUnderbarChar(int code) { char *cParam= getBraceParam(); switch (cParam[0]) { case 'B': putUnicodeChar(0x1E,0x06,'B'); break; case 'b': putUnicodeChar(0x1E,0x07,'b'); break; case 'D': putUnicodeChar(0x1E,0x0E,'D'); break; case 'd': putUnicodeChar(0x1E,0x0F,'d'); break; case 'K': putUnicodeChar(0x1E,0x34,'K'); break; case 'k': putUnicodeChar(0x1E,0x35,'k'); break; case 'L': putUnicodeChar(0x1E,0x3A,'L'); break; case 'l': putUnicodeChar(0x1E,0x3B,'l'); break; case 'N': putUnicodeChar(0x1E,0x48,'N'); break; case 'n': putUnicodeChar(0x1E,0x49,'n'); break; case 'R': putUnicodeChar(0x1E,0x5E,'R'); break; case 'r': putUnicodeChar(0x1E,0x5F,'r'); break; case 'T': putUnicodeChar(0x1E,0x6E,'T'); break; case 't': putUnicodeChar(0x1E,0x6F,'t'); break; case 'Z': putUnicodeChar(0x1E,0x94,'Z'); break; case 'z': putUnicodeChar(0x1E,0x95,'z'); break; case 'h': putUnicodeChar(0x1E,0x96,'h'); break; case '\0': fprintRTF("_"); break; default: fprintRTF("\\u817_"); /* unicode combining character 0x0331 */ ConvertString(cParam); break; } free(cParam); } /****************************************************************************** purpose: converts \i and \j to 'i' and 'j' or Unicode equivalent ******************************************************************************/ void CmdDotlessChar(int code) { if (code == 0) fprintRTF("\\u305i"); /*LATIN SMALL LETTER DOTLESS I 0x0131 */ else fprintRTF("\\u567j"); /*LATIN SMALL LETTER DOTLESS J 0x0237 */ } /****************************************************************************** purpose: converts \euro{amount} and \EUR{amount} ******************************************************************************/ void CmdEuro(int code) { char *s=getBraceParam(); fprintRTF("\\'80"); ConvertString(s); free(s); } static int identifyBase(char c) { if (c == '\'') return 8; else if (c == '"') return 16; else if (c == '`') /* next character is treated differently */ return -1; else if (isdigit(c)) return 10; else return 0; } static int isOctal(int c) { if ((int) '0' <= (int) c && (int) c <= (int) '7') return TRUE; return FALSE; } static int isHex(int c) { if (isdigit(c)) return TRUE; if ((int) 'A' <= (int) c && (int) c <= (int) 'F') return TRUE; if ((int) 'a' <= (int) c && (int) c <= (int) 'f') return TRUE; return FALSE; } /****************************************************************************** purpose: code = 0, handles \char'35 or \char"35 or \char35 or \char`b code = 1, handles \symbol{\'22} or \symbol{\"22} ******************************************************************************/ void CmdSymbol(int code) { char c, *s, *t; int n, base; if (code == 0) { char num[4]; int i; c = getNonSpace(); base = identifyBase(c); if (base == 0) { diagnostics(1,"malformed \\char construction"); fprintRTF("%c",c); return; } if (base == -1) { c = getTexChar(); /* \char`b case */ CmdChar((int) c); return; } if (base == 10) ungetTexChar(c); /* read sequence of digits */ for (i=0; i<4; i++) { num[i] = getTexChar(); if (base == 10 && ! isdigit(num[i]) ) break; if (base == 8 && ! isOctal(num[i]) ) break; if (base == 16 && ! isHex (num[i]) ) break; } ungetTexChar(num[i]); num[i] = '\0'; n = (int) strtol(num,&s,base); CmdChar(n); } else { s = getBraceParam(); t = strdup_noendblanks(s); free(s); base = identifyBase(*t); if (base == 0) return; if (base == -1) { CmdChar((int) *(t+1)); /* \char`b case */ return; } n = (int) strtol(t+1,&s,base); CmdChar(n); free(t); } } static void TeXlogo(void ) /****************************************************************************** purpose : prints the Tex logo in the RTF-File (D Taupin) ******************************************************************************/ { int dnsize; dnsize = (int) (0.3 * CurrentFontSize() + 0.45); fprintRTF("T{\\dn%d E}X", dnsize); } static void LaTeXlogo(void) /****************************************************************************** purpose : prints the LaTeX logo in the RTF-File (D Taupin) ******************************************************************************/ { float FloatFsize; int upsize, Asize; if (CurrentFontSize() > 14) FloatFsize = (float) (0.8 * CurrentFontSize()); else FloatFsize = (float) (0.9 * CurrentFontSize()); Asize = (int) (FloatFsize + 0.45); upsize = (int) (0.25 * CurrentFontSize() + 0.45); fprintRTF("L{\\up%d\\fs%d A}", upsize, Asize); TeXlogo(); } void CmdLogo(int code) /****************************************************************************** purpose : converts the LaTeX, TeX, SLiTex, etc logos to RTF ******************************************************************************/ { int dnsize; changeTexMode(MODE_HORIZONTAL); fprintRTF("{\\plain "); switch (code) { case CMD_TEX: TeXlogo(); break; case CMD_LATEX: LaTeXlogo(); break; case CMD_SLITEX: fprintRTF("{\\scaps Sli}"); TeXlogo(); break; case CMD_BIBTEX: fprintRTF("{\\scaps Bib}"); TeXlogo(); break; case CMD_LATEXE: LaTeXlogo(); dnsize = (int) (0.3 * CurrentFontSize() + 0.45); fprintRTF("2{\\dn%d", dnsize); putUnicodeChar(0x03,0xF5,'e'); fprintRTF("}"); break; case CMD_AMSTEX: fprintRTF("{\\i AmS}-"); /* should be calligraphic */ TeXlogo(); break; case CMD_AMSLATEX: fprintRTF("{\\i AmS}-"); /* should be calligraphic */ LaTeXlogo(); break; case CMD_LYX: dnsize = (int) (0.3 * CurrentFontSize() + 0.45); fprintRTF("L{\\dn%d Y}X", dnsize); break; } fprintRTF("}"); } void CmdCzechAbbrev(int code) /****************************************************************************** purpose: only handles \uv{quote} at the moment ******************************************************************************/ { char *quote; quote = getBraceParam(); fprintRTF(" \\'84"); ConvertString(quote); free(quote); fprintRTF("\\ldblquote "); return; } void CmdFrenchAbbrev(int code) /****************************************************************************** purpose: makes \\ier, \\ieme, etc ******************************************************************************/ { float FloatFsize; int up, size; char *fuptext; if (code == INFERIEURA) { fprintRTF("<"); return; } if (code == SUPERIEURA) { fprintRTF(">"); return; } if (code == FRENCH_LQ) { fprintRTF("\\lquote"); return; } if (code == FRENCH_RQ) { fprintRTF("\\rquote"); return; } if (code == FRENCH_OG) { fprintRTF("\\'AB\\'A0"); return; } /* guillemotleft */ if (code == FRENCH_FG) { fprintRTF("\\'BB"); return; } /* guillemotright */ if (code == FRENCH_LQQ) { fprintRTF("\\ldblquote"); return; } if (code == FRENCH_RQQ) { fprintRTF("\\rdblquote"); return; } if (code == POINT_VIRGULE) { fprintRTF(";"); return; } if (code == POINT_EXCLAMATION) { fprintRTF("!"); return; } if (code == POINT_INTERROGATION) { fprintRTF("?"); return; } if (code == DITTO_MARK) { fprintRTF("\""); return; } if (code == DEUX_POINTS) { fprintRTF(":"); return; } if (code == LCS || code == FCS) { char *abbev = getBraceParam(); fprintRTF("{\\scaps "); ConvertString(abbev); free(abbev); fprintRTF("}"); return; } if (code == NUMERO) fprintRTF("n"); if (code == NUMEROS) fprintRTF("n"); if (code == CNUMERO) fprintRTF("N"); if (code == CNUMEROS) fprintRTF("N"); if (code == PRIMO) fprintRTF("1"); if (code == SECUNDO) fprintRTF("2"); if (code == TERTIO) fprintRTF("3"); if (code == QUARTO) fprintRTF("4"); FloatFsize = (float) CurrentFontSize(); if (FloatFsize > 14) FloatFsize = (float) (FloatFsize * 0.75); up = (int) (0.3 * FloatFsize + 0.45); size = (int) (FloatFsize + 0.45); fprintRTF("{\\fs%d\\up%d ", size, up); switch (code) { case NUMERO: fprintRTF("o"); break; case CNUMERO: fprintRTF("o"); break; case NUMEROS: fprintRTF("os"); break; case CNUMEROS: fprintRTF("os"); break; case PRIMO: fprintRTF("o"); break; case SECUNDO: fprintRTF("o"); break; case TERTIO: fprintRTF("o"); break; case QUARTO: fprintRTF("o"); break; case IERF: fprintRTF("er"); break; case IERSF: fprintRTF("ers"); break; case IEMEF: fprintRTF("e"); break; case IEMESF: fprintRTF("es"); break; case IEREF: fprintRTF("re"); break; case IERESF: fprintRTF("res"); break; case FUP: fuptext = getBraceParam(); ConvertString(fuptext); free(fuptext); break; } fprintRTF("}"); } /****************************************************************************** * purpose : \celcius and \degreecelsius from SIUnits.sty * ******************************************************************************/ void CmdDegreeCelsius(int code) { fprintRTF("\\'b0C"); } void CmdNot(int code) { char c, *s; c = getTexChar(); switch (c) { case '=': CmdUnicodeChar(8800); break; case '<': CmdUnicodeChar(8814); break; case '>': CmdUnicodeChar(8815); break; case '\\': ungetTexChar(c); s = getSimpleCommand(); if (strcmp(s,"\\leq")==0) CmdUnicodeChar(8816); else if (strcmp(s,"\\geq")==0) CmdUnicodeChar(8817); else if (strcmp(s,"\\equiv")==0) CmdUnicodeChar(8802); else if (strcmp(s,"\\prec")==0) CmdUnicodeChar(8832); else if (strcmp(s,"\\succ")==0) CmdUnicodeChar(8833); else if (strcmp(s,"\\sim")==0) CmdUnicodeChar(8769); else if (strcmp(s,"\\preceq")==0) CmdUnicodeChar(8928); else if (strcmp(s,"\\succeq")==0) CmdUnicodeChar(8929); else if (strcmp(s,"\\simeq")==0) CmdUnicodeChar(8772); else if (strcmp(s,"\\subset")==0) CmdUnicodeChar(8836); else if (strcmp(s,"\\supset")==0) CmdUnicodeChar(8837); else if (strcmp(s,"\\approx")==0) CmdUnicodeChar(8777); else if (strcmp(s,"\\subseteq")==0) CmdUnicodeChar(8840); else if (strcmp(s,"\\supseteq")==0) CmdUnicodeChar(8841); else if (strcmp(s,"\\cong")==0) CmdUnicodeChar(8775); else if (strcmp(s,"\\sqsubseteq")==0) CmdUnicodeChar(8930); else if (strcmp(s,"\\sqsupseteq")==0) CmdUnicodeChar(8931); else if (strcmp(s,"\\asymp")==0) CmdUnicodeChar(8813); else { fprintRTF("/"); ConvertString(s); } if (s) free(s); break; default: fprintRTF("/"); ungetTexChar(c); break; } } latex2rtf-2.3.18/lengths.c0000777000175000017500000001071013050672355015540 0ustar wilfriedwilfried /* lengths.c - commands that access TeX variables that contain TeX lengths Copyright (C) 2001-2002 The Free Software Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. This file is available from http://sourceforge.net/projects/latex2rtf/ Authors: 2001-2002 Scott Prahl By convention all the values stored should be twips 20 twips = 1 pt */ #include #include #include "main.h" #include "utils.h" #include "lengths.h" #include "parser.h" #define MAX_LENGTHS 50 typedef struct { char *name; int distance; } length_type; length_type Lengths[MAX_LENGTHS]; static int iLengthCount = 0; static int existsLength(char *s) /************************************************************************** purpose: checks to see if a named TeX dimension exists returns: the array index of the named TeX dimension **************************************************************************/ { int i = 0; while (i < iLengthCount && strstr(Lengths[i].name, s) == NULL) i++; if (i == iLengthCount) return -1; else return i; } static void newLength(char *s, int d) /************************************************************************** purpose: allocates and initializes a named TeX dimension **************************************************************************/ { if (iLengthCount == MAX_LENGTHS) { diagnostics(WARNING, "Too many lengths, ignoring %s", s); return; } Lengths[iLengthCount].distance = d; Lengths[iLengthCount].name = strdup(s); if (Lengths[iLengthCount].name == NULL) { diagnostics(ERROR, "Cannot allocate name for length \\%s", s); } iLengthCount++; } void setLength(char *s, int d) /************************************************************************** purpose: allocates (if necessary) and sets a named TeX dimension **************************************************************************/ { int i; i = existsLength(s); if (i < 0) newLength(s, d); else Lengths[i].distance = d; } int getLength(char *s) /************************************************************************** purpose: retrieves a named TeX dimension **************************************************************************/ { int i; i = existsLength(s); if (i < 0) { diagnostics(WARNING, "No length of type %s", s); return 0; } return Lengths[i].distance; } void CmdSetTexLength(int code) { int d; char c; c = getNonSpace(); if (c == '=') /* optional '=' */ skipSpaces(); else ungetTexChar(c); d = getDimension(); diagnostics(4, "CmdSetTexLength size = %d", d); switch (code) { case SL_HOFFSET: setLength("hoffset", d); break; case SL_VOFFSET: setLength("voffset", d); break; case SL_PARINDENT: setLength("parindent", d); break; case SL_PARSKIP: setLength("parskip", d); break; case SL_BASELINESKIP: setLength("baselineskip", d); break; case SL_TOPMARGIN: setLength("topmargin", d); break; case SL_TEXTHEIGHT: setLength("textheight", d); break; case SL_HEADHEIGHT: setLength("headheight", d); break; case SL_HEADSEP: setLength("headsep", d); break; case SL_TEXTWIDTH: setLength("textwidth", d); break; case SL_ODDSIDEMARGIN: setLength("oddsidemargin", d); break; case SL_EVENSIDEMARGIN: setLength("evensidemargin", d); break; case SL_LINEWIDTH: setLength("linewidth", d); break; } } latex2rtf-2.3.18/graphics.c0000777000175000017500000023606113050672354015704 0ustar wilfriedwilfried/* graphics.c - routines that handle LaTeX graphics commands Copyright (C) 2001-2010 The Free Software Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. This file is available from http://sourceforge.net/projects/latex2rtf/ */ #include #include #include #include #include #include #include #include "main.h" #ifdef UNIX #include #endif #include "cfg.h" #include "graphics.h" #include "parser.h" #include "utils.h" #include "commands.h" #include "convert.h" #include "funct1.h" #include "preamble.h" #include "counters.h" #include "vertical.h" #include "fields.h" /* number of points (72/inch) in a meter */ #define POINTS_PER_METER 2834.65 /* Little endian macros to convert to and from host format to network byte ordering */ #define LETONS(A) ((((A) & 0xFF00) >> 8) | (((A) & 0x00FF) << 8)) #define LETONL(A) ((((A) & 0xFF000000) >> 24) | (((A) & 0x00FF0000) >> 8) | \ (((A) & 0x0000FF00) << 8) | (((A) & 0x000000FF) << 24) ) /* Version 1.6 RTF files can include pictures as follows '{' \pict (? & ? & & & ?) '}' \emfblip | \pngblip | \jpegblip | \macpict | \pmmetafile | \wmetafile | \dibitmap | \wbitmap \wbmbitspixel & \wbmplanes & \wbmwidthbytes (\picw & \pich) \picwgoal? & \pichgoal? \picscalex? & \picscaley? & \picscaled? & \piccropt? & \piccropb? & \piccropr? & \piccropl? \picbmp & \picbpp (\bin #BDATA) | #SDATA \emfblip Source of the picture is an EMF (enhanced metafile). \pngblip Source of the picture is a PNG. \jpegblip Source of the picture is a JPEG. \shppict Specifies a Word 97-2000 picture. This is a destination control word. \nonshppict Specifies that Word 97-2000 has written a {\pict destination that it will not read on input. This keyword is for compatibility with other readers. \macpict Source of the picture is PICT file (Quickdraw) \pmmetafileN Source of the picture is an OS/2 metafile \wmetafileN Source of the picture is a Windows metafile \dibitmapN Source of the picture is a Windows device-independent bitmap \wbitmapN Source of the picture is a Windows device-dependent bitmap */ typedef struct _WindowsMetaHeader { uint16_t FileType; /* Type of metafile (0=memory, 1=disk) */ uint16_t HeaderSize; /* Size of header in WORDS (always 9) */ uint16_t Version; /* Version of Microsoft Windows used */ uint32_t FileSize; /* Total size of the metafile in WORDs */ uint16_t NumOfObjects; /* Number of objects in the file */ uint32_t MaxRecordSize; /* The size of largest record in WORDs */ uint16_t NumOfParams; /* Not Used (always 0) */ } WMFHEAD; typedef struct _PlaceableMetaHeader { uint32_t Key; /* Magic number (always 0x9AC6CDD7) */ uint16_t Handle; /* Metafile HANDLE number (always 0) */ int16_t Left; /* Left coordinate in twips */ int16_t Top; /* Top coordinate in twips */ int16_t Right; /* Right coordinate in twips */ int16_t Bottom; /* Bottom coordinate in twips */ uint16_t Inch; /* Scaling factor, 1440 => 1:1, 360 => 4:1, 2880 => 1:2 (half size) */ uint32_t Reserved; /* Reserved (always 0) */ uint16_t Checksum; /* Checksum value for previous 10 WORDs */ } PLACEABLEMETAHEADER; typedef struct _EnhancedMetaHeader { uint32_t RecordType; /* Record type (always 0x00000001) */ uint32_t RecordSize; /* Size of the record in bytes */ int32_t BoundsLeft; /* Left inclusive bounds */ int32_t BoundsTop; /* Top inclusive bounds */ int32_t BoundsRight; /* Right inclusive bounds */ int32_t BoundsBottom; /* Bottom inclusive bounds */ int32_t FrameLeft; /* Left side of inclusive picture frame */ int32_t FrameTop; /* Top side of inclusive picture frame */ int32_t FrameRight; /* Right side of inclusive picture frame */ int32_t FrameBottom; /* Bottom side of inclusive picture frame */ uint32_t Signature; /* Signature ID (always 0x464D4520) */ uint32_t Version; /* Version of the metafile */ uint32_t Size; /* Size of the metafile in bytes */ uint32_t NumOfRecords; /* Number of records in the metafile */ uint16_t NumOfHandles; /* Number of handles in the handle table */ uint16_t Reserved; /* Not used (always 0) */ uint32_t SizeOfDescrip; /* Size of description string in WORDs */ uint32_t OffsOfDescrip; /* Offset of description string in metafile */ uint32_t NumPalEntries; /* Number of color palette entries */ int32_t WidthDevPixels; /* Width of reference device in pixels */ int32_t HeightDevPixels; /* Height of reference device in pixels */ int32_t WidthDevMM; /* Width of reference device in millimeters */ int32_t HeightDevMM; /* Height of reference device in millimeters */ } ENHANCEDMETAHEADER; typedef struct _EmrFormat { uint32_t Signature; /* 0x46535045 for EPS, 0x464D4520 for EMF */ uint32_t Version; /* EPS version number or 0x00000001 for EMF */ uint32_t Data; /* Size of data in bytes */ uint32_t OffsetToData; /* Offset to data */ } EMRFORMAT; typedef struct _GdiCommentMultiFormats { uint32_t Identifier; /* Comment ID (0x43494447) */ uint32_t Comment; /* Multiformats ID (0x40000004) */ int32_t BoundsLeft; /* Left side of bounding rectangle */ int32_t BoundsRight; /* Right side of bounding rectangle */ int32_t BoundsTop; /* Top side of bounding rectangle */ int32_t BoundsBottom; /* Bottom side of bounding rectangle */ uint32_t NumFormats; /* Number of formats in comment */ EMRFORMAT *Data; /* Array of comment data */ } GDICOMMENTMULTIFORMATS; /********************************** table for graphics format handling **********************************/ typedef void PutFileFnc(char *, double, double, double, double); typedef struct { char *extension; PutFileFnc *encoder; } GraphConvertElement; static void PutPictFile(char *, double, double, double, double); static void PutPngFile (char *, double, double, double, double); static void PutJpegFile(char *, double, double, double, double); static void PutEmfFile (char *, double, double, double, double); static void PutWmfFile (char *, double, double, double, double); static void PutPdfFile (char *, double, double, double, double); static void PutEpsFile (char *, double, double, double, double); static void PutPsFile (char *, double, double, double, double); static void PutTiffFile(char *, double, double, double, double); static void PutGifFile (char *, double, double, double, double); GraphConvertElement GraphConvertTable[] = { { ".png", PutPngFile }, { ".pdf", PutPdfFile }, { ".jpg", PutJpegFile }, { ".jpeg", PutJpegFile }, { ".gif", PutGifFile }, { ".eps", PutEpsFile }, { ".tiff", PutTiffFile }, { ".tif", PutTiffFile }, { ".ps", PutPsFile }, { ".pict", PutPictFile }, { ".emf", PutEmfFile }, { ".wmf", PutWmfFile }, { NULL, NULL } }; /******************************************************************************** purpose: implement \graphicspath{{dir1}{dir2}{...}} ********************************************************************************/ static char **graphicsPath = NULL; static int nGraphicsPathElems = 0; static void appendGraphicsPath (char *newPath) { int i; void *ptr; char *add; for (i = 0; i < nGraphicsPathElems; i++) { if (streq (graphicsPath[i], newPath)) { diagnostics(WARNING,"Repeated graphics path element {%s}",newPath); return; } } ptr = (void *) graphicsPath; ptr = realloc (ptr, sizeof (char *) * (nGraphicsPathElems + 1)); graphicsPath = (char **) ptr; /* path must end with a '/' */ if (*(newPath+strlen(newPath)-1) == '/') add = strdup(newPath); else add = strdup_together(newPath,"/"); graphicsPath[nGraphicsPathElems++] = add; diagnostics (WARNING, "Included %s in graphics search path", add); } void CmdGraphicsPath(int code) { char *directories = getBraceParam(); if (directories != NULL) { char *candidate=strtok(directories,"{}"); while (NULL != candidate) { appendGraphicsPath(candidate); candidate = strtok(NULL,"{}"); } } safe_free(directories); } #define CONVERT_SIMPLE 1 #define CONVERT_CROP 2 #define CONVERT_LATEX_TO_PNG 3 #define CONVERT_LATEX_TO_EPS 4 #define CONVERT_PDF 5 #define CONVERT_PS_TO_EPS 6 static char *g_psset_info = NULL; static char *g_psstyle_info = NULL; static char *tikzlibs[32]; static int tikzlibsnum = 0; /****************************************************************************** purpose : portable routine to delete filename ******************************************************************************/ static void my_unlink(char *filename) { #ifdef UNIX unlink(filename); #endif } /****************************************************************************** purpose : create a tmp file name using only the end of the filename ******************************************************************************/ static char *strdup_tmp_path(const char *s) { char *tmp, *p, *fullname; if (s == NULL) return NULL; tmp = getTmpPath(); /* Even in Windows, LaTeX uses the forward slash as path separator */ p = strrchr(s, '/'); if (!p) fullname = strdup_together(tmp, s); else fullname = strdup_together(tmp, p + 1); safe_free(tmp); return fullname; } /****************************************************************************** purpose : System specific shell graphics commands Need to worry about the global flags used on the command-line -D dpi g_dots_per_inch -P path g_script_dir -T /path/to/tmp g_tmp_path We need e.g. to create a system command to convert a PDF to a PNG file. In principle, this could be as simple as convert file.pdf file.png Unfortunately, we need to specify the pixel density, and more importantly, crop whitespace out of the images appropriately. The command then becomes convert -crop 0x0 -units PixelsPerInch -density 300 file.pdf file.png Now the problem arises that apparently ImageMagick reads the wrong /MediaBox for PDF files and this gives a full-page image. Since GhostScript is required for ImageMagick, the solution is to use GhostScript directly gs -dNOPAUSE -dSAFER -dBATCH -sDEVICE=pngalpha -sOutputFile=file.png -r300 file.pdf Unfortunately, this fails to work under Windows XP because gs (gswin32c) fails to execute with message "Program too large for working storage" (in German: "Programm zu gross fuer den Arbeitsspeicher"). Wilfried wrote the script pdf2pnga to solve this problem. So here we are, creating different commands for Windows XP and Unix! Parameters: opt type of conversion offset vertical offset in input filename out output filename ******************************************************************************/ static char *SysGraphicsConvert(int opt, int offset, uint16_t dpi, const char *in, const char *out) { char cmd[512], *out_tmp; int err; int N = 511; diagnostics(3, "SysGraphicsConvert '%s' to '%s'", in, out); out_tmp = strdup_tmp_path(out); if (in == NULL || out == NULL || out_tmp == NULL) return NULL; #ifdef UNIX if (strchr(in, (int) '\'')) { diagnostics(WARNING, "single quote found in filename '%s'. skipping conversion", in); free(out_tmp); return NULL; } if (out_tmp && strchr(out_tmp, (int) '\'')) { diagnostics(WARNING, "single quote found in filename '%s'. skipping conversion", out_tmp); free(out_tmp); return NULL; } if (opt == CONVERT_SIMPLE) { const char format_simple[] = "convert '%s' '%s'"; snprintf(cmd, N, format_simple, in, out_tmp); } if (opt == CONVERT_CROP) { const char format_crop[] = "convert -trim +repage -units PixelsPerInch -density %d '%s' '%s'"; snprintf(cmd, N, format_crop, dpi, in, out_tmp); } if (opt == CONVERT_LATEX_TO_PNG) { if (g_home_dir == NULL) { const char format_unix[] = "%slatex2png -d %d -o %d '%s'"; if (g_script_dir) snprintf(cmd, N, format_unix, g_script_dir, dpi, offset, in); else snprintf(cmd, N, format_unix, "", dpi, offset, in); } else { const char format_unix[] = "%slatex2png -k -d %d -o %d -H '%s' '%s'"; if (g_script_dir) snprintf(cmd, N, format_unix, g_script_dir, dpi, offset, g_home_dir, in); else snprintf(cmd, N, format_unix, "", dpi, offset, g_home_dir, in); } } if (opt == CONVERT_LATEX_TO_EPS) { if (g_home_dir == NULL) { const char format_unix[] = "%slatex2png -e '%s'"; if (g_script_dir) snprintf(cmd, N, format_unix, g_script_dir, in); else snprintf(cmd, N, format_unix, "", in); } else { const char format_unix[] = "%slatex2png -e -H '%s' '%s'"; if (g_script_dir) snprintf(cmd, N, format_unix, g_script_dir, g_home_dir, in); else snprintf(cmd, N, format_unix, "", g_home_dir, in); } } if (opt == CONVERT_PDF) { const char format_unix[] = "gs -q -dNOPAUSE -dSAFER -dBATCH -sDEVICE=pngalpha -r%d -sOutputFile='%s' '%s'"; snprintf(cmd, N, format_unix, dpi, out_tmp, in); } if (opt == CONVERT_PS_TO_EPS) { const char format_unix[] = "eps2eps '%s' '%s'"; snprintf(cmd, N, format_unix, in, out_tmp); } #else if (opt == CONVERT_SIMPLE) { char format_simple[] = "convert \"%s\" \"%s\""; snprintf(cmd, N, format_simple, in, out_tmp); } if (opt == CONVERT_CROP) { char format_crop[] = "convert -crop 0x0 -units PixelsPerInch -density %d \"%s\" \"%s\""; snprintf(cmd, N, format_crop, dpi, in, out_tmp); } if (opt == CONVERT_LATEX_TO_PNG) { if (g_home_dir == NULL){ char format_xp[] = "bash latex2png -d %d -o %d \"%s\""; snprintf(cmd, N, format_xp, dpi, offset, in); } else { char format_xp[] = "bash latex2png -d %d -o %d -H \"%s\" \"%s\""; snprintf(cmd, N, format_xp, dpi, offset, g_home_dir, in); } } if (opt == CONVERT_LATEX_TO_EPS) { if (g_home_dir == NULL){ char format_xp[] = "bash latex2png -e \"%s\""; snprintf(cmd, N, format_xp, in); } else { char format_xp[] = "bash latex2png -e -H \"%s\" \"%s\""; snprintf(cmd, N, format_xp, g_home_dir, in); } } if (opt == CONVERT_PDF) { char format_xp[] = "bash pdf2pnga \"%s\" \"%s\" %d"; snprintf(cmd, N, format_xp, in, out_tmp, dpi); } if (opt == CONVERT_PS_TO_EPS) { char format_xp[] = "eps2eps \"%s\" \"%s\""; snprintf(cmd, N, format_xp, in, out_tmp); } #endif diagnostics(3, "`%s`", cmd); err = system(cmd); if (err) { diagnostics(WARNING, "\nerror=%d when converting %s", err, in); safe_free(out_tmp); return NULL; } return out_tmp; } static void PicComment(int16_t label, int16_t size, FILE * fp) { int16_t long_comment = 0x00A1; int16_t short_comment = 0x00A0; int16_t tag; tag = (size) ? long_comment : short_comment; if (g_little_endian) { tag = LETONS(tag); label = LETONS(label); size = LETONS(size); } if (fwrite(&tag, 2, 1, fp) != 2) return; if (fwrite(&label, 2, 1, fp) != 2) return; if (size) { if (fwrite(&size, 2, 1, fp) != 2) return; } } static char *strdup_new_extension(const char *s, const char *old_ext, const char *new_ext) { char *new_name, *p; int s_len, o_len, n_len, siz; if (s==NULL || old_ext == NULL || new_ext == NULL) return NULL; s_len = (int) strlen(s); o_len = (int) strlen(old_ext); n_len = (int) strlen(new_ext); /* make sure that old_ext exists */ p= (char *) s; do { p = strstr(p, old_ext); } while (p && p-s > s_len-o_len) ; if (p == NULL) return NULL; siz = s_len - o_len + n_len + 1; new_name = (char *) malloc(siz); my_strlcpy(new_name, s, s_len - o_len + 1); my_strlcat(new_name, new_ext, siz); return new_name; } /****************************************************************************** purpose : return true if ext is at end of s (case insensitively) ******************************************************************************/ static int has_extension(const char *s, const char *ext) { char *t; t = (char *)s + strlen(s) - strlen(ext); if (strcasecmp(t, ext) == 0) return TRUE; return FALSE; } /****************************************************************************** purpose : if the file has a graphic extension, return it otherwise return NULL ******************************************************************************/ static char *has_graphic_extension(const char *s) { GraphConvertElement *thisFormat; diagnostics(4,"testing for graphics extension '%s'",s); for (thisFormat = GraphConvertTable; thisFormat->extension != NULL; thisFormat++) { if (has_extension(s,thisFormat->extension)) return strdup(thisFormat->extension); } return NULL; } /****************************************************************************** purpose : split filename into directory, name, and extension ******************************************************************************/ static void split_filename(const char *f, char **dir, char **name, char **ext) { char *s, *t, *x; *dir = NULL; *name = NULL; *ext = NULL; if (f == NULL) return; /* first figure out the directory */ s = strrchr(f,'/'); if (s) { t = strdup(f); x = strrchr(t,'/')+1; *x = '\0'; if (*f == '/') { /* absolute names start with '/' */ *dir=t; } else if (g_home_dir) { /* names are relative to home_dir */ *dir = strdup_together(g_home_dir, t); safe_free(t); } else { *dir=t; } s++; } else { if (g_home_dir) *dir = strdup(g_home_dir); s = (char *) f; } *name = strdup(s); *ext = has_graphic_extension(s); if (*ext) { t = *name + strlen(*name) - strlen(*ext); *t = '\0'; } diagnostics(5,"filename='%s', dir='%s', name='%s', ext='%s'", f, *dir, *name, *ext); } /****************************************************************************** purpose : create a pict file from an EPS file and return file name for the pict file. Ideally this file will contain both the bitmap and the original EPS embedded in the PICT file as comments. If a bitmap cannot be created, then the EPS is still embedded in the PICT file so that at least the printed version will be good. ******************************************************************************/ static char *eps_to_pict(char *s) { char *p, *pict, buffer[560]; long ii, pict_bitmap_size, eps_size; int16_t handle_size; unsigned char byte; int16_t PostScriptBegin = 190; int16_t PostScriptEnd = 191; int16_t PostScriptHandle = 192; char *pict_eps = NULL; char *eps = NULL; char *return_value = NULL; FILE *fp_eps = NULL; FILE *fp_pict_bitmap = NULL; FILE *fp_pict_eps = NULL; int offset = 0; diagnostics(3, "eps_to_pict '%s'", s); /* Create filename for bitmap */ pict = strdup_new_extension(s, ".eps", "a.pict"); if (pict == NULL) { pict = strdup_new_extension(s, ".EPS", "a.pict"); if (pict == NULL) goto Exit; } /* Create filename for eps file */ p = strdup_new_extension(s, ".eps", ".pict"); if (p == NULL) { p = strdup_new_extension(s, ".EPS", ".pict"); if (p == NULL) goto Exit; } pict_eps = strdup(p); free(p); eps = strdup_together(g_home_dir, s); /* create a bitmap version of the eps file */ return_value = SysGraphicsConvert(CONVERT_CROP, offset, g_dots_per_inch, eps, pict); free(pict); if (return_value == NULL) goto Exit; /* open the eps file and make sure that it is less than 32k */ fp_eps = fopen(eps, "rb"); if (fp_eps == NULL) goto Exit; fseek(fp_eps, 0, SEEK_END); eps_size = ftell(fp_eps); if (eps_size > 32000) { diagnostics(WARNING, "EPS file >32K ... using bitmap only"); goto Exit; } rewind(fp_eps); diagnostics(WARNING, "eps size is 0x%X bytes", eps_size); /* open bitmap pict file and get file size */ fp_pict_bitmap = fopen(pict, "rb"); if (fp_pict_bitmap == NULL) goto Exit; fseek(fp_pict_bitmap, 0, SEEK_END); pict_bitmap_size = ftell(fp_pict_bitmap); rewind(fp_pict_bitmap); /* open new pict file */ fp_pict_eps = fopen(pict_eps, "w"); if (fp_pict_eps == NULL) goto Exit; /* copy header 512 buffer + 40 byte header */ if (fread(&buffer, 1, 512 + 40, fp_pict_bitmap) != 512 + 40) goto Exit; if (fwrite(&buffer, 1, 512 + 40, fp_pict_eps) != 512 + 40) goto Exit; /* insert comment that allows embedding postscript */ PicComment(PostScriptBegin, 0, fp_pict_eps); /* copy bitmap 512+40 bytes of header + 2 bytes at end */ for (ii = 512 + 40 + 2; ii < pict_bitmap_size; ii++) { if (fread(&byte, 1, 1, fp_pict_bitmap) != 1) goto Exit; if (fwrite(&byte, 1, 1, fp_pict_eps) != 1) goto Exit; } /* copy eps graphic (write an even number of bytes) */ handle_size = eps_size; if (odd(eps_size)) handle_size++; PicComment(PostScriptHandle, handle_size, fp_pict_eps); for (ii = 0; ii < eps_size; ii++) { if (fread(&byte, 1, 1, fp_eps) != 1) goto Exit; if (fwrite(&byte, 1, 1, fp_pict_eps) != 1) goto Exit; } if (odd(eps_size)) { byte = ' '; if (fwrite(&byte, 1, 1, fp_pict_eps) != 1) goto Exit; } /* close file */ PicComment(PostScriptEnd, 0, fp_pict_eps); byte = 0x00; if (fwrite(&byte, 1, 1, fp_pict_eps) != 1) goto Exit; byte = 0xFF; if (fwrite(&byte, 1, 1, fp_pict_eps) != 1) goto Exit; return_value = pict_eps; Exit: if (eps) free(eps); if (pict_eps) free(pict_eps); if (pict) free(pict); if (fp_eps) fclose(fp_eps); if (fp_pict_eps) fclose(fp_pict_eps); if (fp_pict_bitmap) fclose(fp_pict_bitmap); return return_value; } /****************************************************************************** purpose : create a png file from an EPS or PS file and return file name ******************************************************************************/ static char *eps_to_png(char *name) { char *png, *out; if (name == NULL) return NULL; diagnostics(3, " eps_to_png '%s'", name); if (strstr(name, ".eps") != NULL) png = strdup_new_extension(name, ".eps", ".png"); else if (strstr(name, ".EPS") != NULL) png = strdup_new_extension(name, ".EPS", ".png"); else if (strstr(name, ".ps") != NULL) png = strdup_new_extension(name, ".ps", ".png"); else if (strstr(name, ".PS") != NULL) png = strdup_new_extension(name, ".PS", ".png"); else return NULL; out = SysGraphicsConvert(CONVERT_CROP, 0, g_dots_per_inch, name, png); free(png); return out; } /****************************************************************************** purpose : create a png file from a PDF file and return file name ******************************************************************************/ static char *pdf_to_png(char *pdf) { char *png, *out; if (pdf == NULL) return NULL; if (strstr(pdf, ".pdf") != NULL) png = strdup_new_extension(pdf, ".pdf", ".png"); else if (strstr(pdf, ".PDF") != NULL) png = strdup_new_extension(pdf, ".PDF", ".png"); else return NULL; out = SysGraphicsConvert(CONVERT_PDF, 0, g_dots_per_inch, pdf, png); safe_free(png); return out; } /****************************************************************************** purpose : create a wmf file from an EPS file and return file name ******************************************************************************/ static char *eps_to_emf(char *name) { FILE *fp; char *cmd, *emf, *outfile; size_t cmd_len; char ans[50]; int32_t width, height; outfile = NULL; diagnostics(3, "filename = '%s'", name); if (strstr(name, ".eps") != NULL) outfile = strdup_new_extension(name, ".eps", ".wmf"); else if (strstr(name, ".EPS") != NULL) outfile = strdup_new_extension(name, ".EPS", ".wmf"); if (outfile == NULL) return NULL; emf = strdup_tmp_path(outfile); /* Determine bounding box for EPS file */ cmd_len = strlen(name) + strlen("identify -format \"%w %h\" ") + 3; cmd = (char *) malloc(cmd_len); snprintf(cmd, cmd_len, "identify -format \"%%w %%h\" \"%s\"", name); fp = popen(cmd, "r"); if (fgets(ans, 50, fp) != NULL) sscanf(ans, "%ld %ld", (long *)&width, (long *)&height); pclose(fp); free(cmd); fp = fopen(emf, "wb"); /* write ENHANCEDMETAHEADER */ /* write GDICOMMENTMULTIFORMATS */ /* write EMRFORMAT containing EPS */ free(outfile); fclose(fp); return emf; } /****************************************************************************** purpose : figure out appropriate x and y scaling h and w are the actual height and width of the image in twips target_h and target_w are the desired height and width of the image in twips s is the scaling desired as a fraction ******************************************************************************/ static void AdjustScaling(double h, double w, double target_h, double target_w, double s, uint16_t *sx, uint16_t *sy) { diagnostics(5,"AdjustScaling h =%f w =%f s=%f", h, w, s); diagnostics(5,"AdjustScaling target_h=%f target_w=%f", target_h, target_w); if (target_h != 0 && h != 0) *sy = (uint16_t) my_rint(100.0 * target_h / h); else *sy = (uint16_t) my_rint(s * 100); if (target_w == 0 || w == 0) *sx = *sy; else *sx = (uint16_t) my_rint(100.0 * target_w / w); /* catch the case when width is specified, but not height */ if (target_h == 0 && target_w != 0) *sy = *sx; /* special case if both are zero then just set scaling to one */ if (target_h == 0 && target_w == 0) { *sx = 100. * s; *sy = 100. * s; } diagnostics(5,"AdjustScaling xscale=%d yscale=%d", *sx, *sy); } /****************************************************************************** purpose : write entire file to RTF as hex ******************************************************************************/ static void PutHexFile(FILE * fp) { int i, c; i = 0; while ((c = fgetc(fp)) != EOF) { fprintRTF("%.2x", c); if (++i > 126) { /* keep lines 254 chars long */ i = 0; fprintRTF("\n"); } } } /****************************************************************************** purpose : Include .pict file in RTF ******************************************************************************/ static void PutPictFile(char *s, double height0, double width0, double scale, double baseline) { FILE *fp; char *pict; int16_t buffer[5]; int16_t top, left, bottom, right; int16_t width, height; uint16_t sx,sy; pict = strdup(s); diagnostics(2, "PutPictFile '%s'", pict); fp = fopen(pict, "rb"); free(pict); if (fp == NULL) return; if (fseek(fp, 514L, SEEK_SET) || fread(buffer, 2, 4, fp) != 4) { diagnostics(WARNING, "Cannot read graphics file '%s'", s); fclose(fp); return; } top = buffer[0]; left = buffer[1]; bottom = buffer[2]; right = buffer[3]; width = right - left; height = bottom - top; if (g_little_endian) { top = LETONS(top); bottom = LETONS(bottom); left = LETONS(left); right = LETONS(right); } diagnostics(4, "top = %d, bottom = %d", top, bottom); diagnostics(4, "left = %d, right = %d", left, right); diagnostics(4, "width = %d, height = %d", width, height); fprintRTF("\n{\\pict\\macpict\\picw%d\\pich%d\n", width, height); AdjustScaling(height*20,width*20,height0,width0,scale,&sx,&sy); if (sx != 100 && sy != 100) fprintRTF("\\picscalex%d\\picscaley%d", sx,sy); fseek(fp, -10L, SEEK_CUR); PutHexFile(fp); fprintRTF("}\n"); fclose(fp); } /* typedef struct _PngChunk { uint32_t DataLength; Size of Data field in bytes uint32_t Type; Code identifying the type of chunk BYTE Data[]; The actual data stored by the chunk uint32_t Crc; CRC-32 value of the Type and Data fields } PNGCHUNK; typedef struct _pHYsChunkEntry { uint32_t PixelsPerUnitX; Pixels per unit, X axis uint32_t PixelsPerUnitY; Pixels per unit, Y axis BYTE UnitSpecifier; 0 = unknown, 1 = meter } PHYSCHUNKENTRY; */ static unsigned char * getPngChunk(FILE *fp, char *s) { uint32_t crc, DataLength; char Type[5]; unsigned char *data; Type[4]='\0'; diagnostics(6, "getPngChunk ... seeking '%s'",s); data = NULL; do { if (data) free(data); /* read chuck size */ fread(&DataLength, 4, 1, fp); if (g_little_endian) DataLength = LETONL(DataLength); /* read chunk type */ fread(Type, 1, 4, fp); if (strcmp(Type,"IEND") == 0) return NULL; diagnostics(6,"found chunk '%s' size %u bytes",Type, DataLength); data = (unsigned char *) malloc(DataLength); if (data == NULL) return NULL; fread(data, DataLength, 1, fp); fread(&crc, 4, 1, fp); crc++; /* ignored, but touch to eliminate warning */ } while (strcmp(s,Type) != 0); return data; } static void InsertFigureAsComment(const char *s, int hinline) { if (!s) return; if (*s=='\0') return; if (hinline == 1) fprintRTF("{\\dn10 "); putRtfStrEscaped("[###"); putRtfStrEscaped(s); putRtfStrEscaped("###]"); if (hinline == 1) fprintRTF("}"); } /****************************************************************************** purpose : determine height and width of file w & h are the size in pixels xres is the number of pixels per meter ******************************************************************************/ static void GetPngSize(char *s, uint32_t *w_pixels, uint32_t *h_pixels, double *xres, double *yres, int *bad_res) { FILE *fp; uint32_t *p; unsigned char buffer[16]; char reftag[9] = "\211PNG\r\n\032\n"; unsigned char *data = NULL; diagnostics(4, "GetPngSize of '%s'", s); *xres = POINTS_PER_METER; *yres = POINTS_PER_METER; *bad_res = 1; fp = fopen(s, "rb"); if (fp == NULL) return; if (fread(buffer, 1, 8, fp) < 8) { diagnostics(WARNING, "Cannot read graphics file '%s'", s); fclose(fp); return; } if (memcmp(buffer, reftag, 8) != 0) { diagnostics(WARNING, "Graphics file '%s' is not a PNG file!", s); fclose(fp); return; } data = getPngChunk(fp,"IHDR"); if (data == NULL) { diagnostics(WARNING, "Graphics file '%s': could not locate IHDR chunk!", s); fclose(fp); return; } p = (uint32_t *) data; *w_pixels = (g_little_endian) ? LETONL(*p) : *p; p++; *h_pixels = (g_little_endian) ? LETONL(*p) : *p; free(data); data = getPngChunk(fp,"pHYs"); if (data == NULL) { diagnostics(2, "Graphics file '%s': could not locate pHYs chunk!", s); diagnostics(2, "defaulting to 72 pixels/inch for resolution"); fclose(fp); return; } p = (uint32_t *) data; *xres = (g_little_endian) ? LETONL(*p) : *p; p++; *yres = (g_little_endian) ? LETONL(*p) : *p; free(data); if (fabs(*xres-POINTS_PER_METER)<2) *xres = POINTS_PER_METER; if (fabs(*yres-POINTS_PER_METER)<2) *yres = POINTS_PER_METER; /* dots per inch, not per meter! */ if (*xres < POINTS_PER_METER) { *bad_res = 1; diagnostics(5, "bogus resolution in png image! "); diagnostics(5, "xres = %g, yres = %g, pixels/meter", *xres, *yres); diagnostics(5, "xres = %g, yres = %g, pixels/in", *xres*72.0/POINTS_PER_METER, *yres*72.0/POINTS_PER_METER); *xres *= POINTS_PER_METER/72.0; *yres *= POINTS_PER_METER/72.0; } else *bad_res = 0; diagnostics(5, "xres = %g, yres = %g, pixels/meter", *xres, *yres); diagnostics(5, "xres = %g, yres = %g, pixels/in", *xres*72.0/POINTS_PER_METER, *yres*72.0/POINTS_PER_METER); fclose(fp); } /****************************************************************************** purpose : Include .png file in RTF \pict {...} \picscalex22\picscaley22 \piccropl0\piccropr0\piccropt0\piccropb0 \picw32032\pich29633\picwgoal18160\pichgoal16800 \pngblip There are three scaling factors floating around encode_scale = POINTS_PER_METER/xres (scaling factor inside the PNG) scale = the scaling factor given by \includegraphics Basically, if the PNG was created with a correct value for the resolution then we leave things as they are. On the other hand, an incorrect value means that the Word will assume the image resolution is 1/72 of an inch. Consequently, when this happens, scale must be altered by the convert_scale value. As you can see below, we never use encode_scale. On entry baseline should be in pixels. \picwN width in pixels \pichN height in pixels \picwgoalN Desired width in twips \pichgoalN Desired height in twips \picscalexN Horizontal scaling as a percentage (default=100) \picscaleyN Vertical scaling as a percentage ******************************************************************************/ static void PutPngFile(char *png, double height_goal, double width_goal, double scale, double baseline) { FILE *fp; double xres,yres; char *s; uint32_t w_pixels, h_pixels, b; uint32_t w_twips, h_twips; uint16_t sx, sy; int bad_res; diagnostics(WARNING,"Encoding '%s'",png); GetPngSize(png, &w_pixels, &h_pixels, &xres, &yres, &bad_res); if (w_pixels == 0 || h_pixels == 0) return; /* make sure that we can open the file */ fp = fopen(png, "rb"); if (fp == NULL) return; /* pixels points 20 twips */ /* twips = (pixels) / -------- * -------- * ---------- */ /* meter meter 1 point */ w_twips = (int)(w_pixels / xres * POINTS_PER_METER * 20.0 + 0.5); h_twips = (int)(h_pixels / yres * POINTS_PER_METER * 20.0 + 0.5); /* because \dn command requires half-points! */ b = (uint32_t) baseline * 2; AdjustScaling(h_twips,w_twips,height_goal,width_goal,scale,&sx,&sy); if (bad_res) { sx = (uint16_t) (sx * POINTS_PER_METER / xres); sy = (uint16_t) (sy * POINTS_PER_METER / yres); } diagnostics(4, "picw = %8lu pixels, pich = %8lu pixels", w_pixels, h_pixels); diagnostics(4, "picwgoal = %8lu twips, pichgoal = %8lu twips", w_twips, h_twips); diagnostics(4, "xres = %8.2f pix/meter, yres = %8.2f pix/meter", xres, yres); diagnostics(4, "xres = %8.2f pix/inch, yres = %8.2f pix/inch", xres*72.0/POINTS_PER_METER, yres*72.0/POINTS_PER_METER); diagnostics(4, "scale = %8.3f", scale); diagnostics(4, "width_goal = %8d twips, height_goal = %8d twips", (int)width_goal, (int)height_goal); diagnostics(4, "baseline = %8.3g twips", baseline); diagnostics(4, "sx = %8lu percent, sy = %8lu percent", sx, sy); /* Write the header for the png bitmap */ fprintRTF("\n{"); /* for non-zero baseline shifts, add an extra half-pixel because it looks better */ if (b) fprintRTF("\\dn%lu", b+1); fprintRTF("\\pict"); if (sx != 100 && sy != 100) fprintRTF("\\picscalex%u\\picscaley%u", sx,sy); fprintRTF("\\picw%lu\\pich%lu", w_pixels, h_pixels); fprintRTF("\\picwgoal%lu\\pichgoal%lu", w_twips, h_twips); fprintRTF("\\pngblip\n"); /* Now actually write the PNG file out */ rewind(fp); PutHexFile(fp); fprintRTF("}\n"); fclose(fp); } /****************************************************************************** purpose : Include .jpeg file in RTF ******************************************************************************/ static void PutJpegFile(char *s, double height0, double width0, double scale, double baseline) { FILE *fp; char *jpg; uint16_t buffer[2]; int m=0; uint16_t width, height; uint32_t w, h; uint16_t sx, sy; jpg = strdup_together(g_home_dir, s); diagnostics(2, "PutJpegFile '%s'", jpg); fp = fopen(jpg, "rb"); free(jpg); if (fp == NULL) return; if (fgetc(fp) != 0xFF && fgetc(fp) != 0xD8) { fclose(fp); diagnostics(WARNING, "'%s' is not really a JPEG file --- skipping"); return; } do { /* Look for SOFn tag */ while (!feof(fp) && fgetc(fp) != 0xFF) { } /* Find 0xFF byte */ while (!feof(fp) && (m = fgetc(fp)) == 0xFF) { } /* Skip multiple 0xFFs */ } while (!feof(fp) && m != 0xC0 && m != 0xC1 && m != 0xC2 && m != 0xC3 && m != 0xC5 && m != 0xC6 && m != 0xC7 && m != 0xC9 && m != 0xCA && m != 0xCB && m != 0xCD && m != 0xCE && m != 0xCF); if (fseek(fp, 3, SEEK_CUR) || fread(buffer, 2, 2, fp) != 2) { diagnostics(WARNING, "Cannot read graphics file '%s'", s); fclose(fp); return; } width = buffer[1]; height = buffer[0]; if (g_little_endian) { width = (uint16_t) LETONS(width); height = (uint16_t) LETONS(height); } diagnostics(4, "width = %d, height = %d", width, height); w = (uint32_t) (100000.0 * width / (20 * POINTS_PER_METER)); h = (uint32_t) (100000.0 * height / (20 * POINTS_PER_METER)); fprintRTF("\n{\\pict\\jpegblip\\picw%ld\\pich%ld", w, h); fprintRTF("\\picwgoal%ld\\pichgoal%ld\n", width * 20, height * 20); AdjustScaling(height*20,width*20,height0,width0,scale,&sx,&sy); if (sx != 100 && sy != 100) fprintRTF("\\picscalex%d\\picscaley%d", sx,sy); rewind(fp); PutHexFile(fp); fprintRTF("}\n"); fclose(fp); } static void PutEmfFile(char *s, double height0, double width0, double scale, double baseline) { FILE *fp; char *emf; uint32_t RecordType; /* Record type (always 0x00000001) */ uint32_t RecordSize; /* Size of the record in bytes */ int32_t BoundsLeft; /* Left inclusive bounds */ int32_t BoundsRight; /* Right inclusive bounds */ int32_t BoundsTop; /* Top inclusive bounds */ int32_t BoundsBottom; /* Bottom inclusive bounds */ int32_t FrameLeft; /* Left side of inclusive picture frame */ int32_t FrameRight; /* Right side of inclusive picture frame */ int32_t FrameTop; /* Top side of inclusive picture frame */ int32_t FrameBottom; /* Bottom side of inclusive picture frame */ uint32_t Signature; /* Signature ID (always 0x464D4520) */ uint32_t w, h, width, height; uint16_t sx, sy; emf = strdup(s); diagnostics(2, "PutEmfFile '%s'", emf); fp = fopen(emf, "rb"); free(emf); if (fp == NULL) return; /* extract size information*/ if (fread(&RecordType, 4, 1, fp) != 1) goto out; if (fread(&RecordSize, 4, 1, fp) != 1) goto out; if (fread(&BoundsLeft, 4, 1, fp) != 1) goto out; if (fread(&BoundsTop, 4, 1, fp) != 1) goto out; if (fread(&BoundsRight, 4, 1, fp) != 1) goto out; if (fread(&BoundsBottom, 4, 1, fp) != 1) goto out; if (fread(&FrameLeft, 4, 1, fp) != 1) goto out; if (fread(&FrameRight, 4, 1, fp) != 1) goto out; if (fread(&FrameTop, 4, 1, fp) != 1) goto out; if (fread(&FrameBottom, 4, 1, fp) != 1) goto out; if (fread(&Signature, 4, 1, fp) != 1) goto out; if (!g_little_endian) { RecordType = LETONL(RecordType); RecordSize = LETONL(RecordSize); BoundsLeft = LETONL(BoundsLeft); BoundsTop = LETONL(BoundsTop); BoundsRight = LETONL(BoundsRight); BoundsBottom = LETONL(BoundsBottom); FrameLeft = LETONL(FrameLeft); FrameRight = LETONL(FrameRight); FrameTop = LETONL(FrameTop); FrameBottom = LETONL(FrameBottom); Signature = LETONL(Signature); } if (RecordType != 1 || Signature != 0x464D4520) goto out; height = (uint32_t) (BoundsBottom - BoundsTop); width = (uint32_t) (BoundsRight - BoundsLeft); w = (uint32_t) ((100000.0 * width) / (20 * POINTS_PER_METER)); h = (uint32_t) ((100000.0 * height) / (20 * POINTS_PER_METER)); diagnostics(4, "width = %ld, height = %ld", width, height); fprintRTF("\n{\\pict\\emfblip\\picw%ld\\pich%ld", w, h); fprintRTF("\\picwgoal%ld\\pichgoal%ld\n", width * 20, height * 20); AdjustScaling(height*20,width*20,height0,width0,scale,&sx,&sy); if (sx != 100 && sy != 100) fprintRTF("\\picscalex%d\\picscaley%d", sx,sy); /* write file */ rewind(fp); PutHexFile(fp); fprintRTF("}\n"); fclose(fp); return; out: diagnostics(WARNING, "Problem with file %s --- not included", s); fclose(fp); } /****************************************************************************** purpose : Insert WMF file (from g_home_dir) into RTF file ******************************************************************************/ static void PutWmfFile(char *s, double height0, double width0, double scale, double baseline) { FILE *fp; char *wmf; uint32_t Key; /* Magic number (always 0x9AC6CDD7) */ uint16_t FileType; /* Type of metafile (0=memory, 1=disk) */ uint16_t HeaderSize; /* Size of header in WORDS (always 9) */ uint16_t Handle; /* Metafile HANDLE number (always 0) */ uint16_t Left; /* Left coordinate in twips */ uint16_t Top; /* Top coordinate in twips */ uint16_t Right; /* Right coordinate in twips */ uint16_t Bottom; /* Bottom coordinate in twips */ uint16_t width, height, sx, sy; uint32_t magic_number = 0x9AC6CDD7; /* open the proper file */ wmf = strdup_together(g_home_dir, s); diagnostics(2, "PutWmfFile '%s'", wmf); fp = fopen(wmf, "rb"); free(wmf); if (fp == NULL) return; /* verify file is actually WMF and get size */ if (fread(&Key, 4, 1, fp) != 1) goto out; if (!g_little_endian) Key = LETONL(Key); if (Key == magic_number) { /* file is placeable metafile */ if (fread(&Handle, 2, 1, fp) != 1) goto out; if (fread(&Left, 2, 1, fp) != 1) goto out; if (fread(&Top, 2, 1, fp) != 1) goto out; if (fread(&Right, 2, 1, fp) != 1) goto out; if (fread(&Bottom, 2, 1, fp) != 1) goto out; if (!g_little_endian) { Left = LETONS(Left); Top = LETONS(Top); Right = LETONS(Right); Bottom = LETONS(Bottom); } width = abs(Right - Left); height = abs(Top - Bottom); } else { /* file may be old wmf file with no size */ rewind(fp); if (fread(&FileType, 2, 1, fp) != 1) goto out; if (fread(&HeaderSize, 2, 1, fp) != 1) goto out; if (!g_little_endian) { FileType = (uint16_t) LETONS(FileType); HeaderSize = (uint16_t) LETONS(HeaderSize); } if (FileType != 0 && FileType != 1) goto out; if (HeaderSize != 9) goto out; /* real wmf file ... just assume size */ width = 200; height = 200; } diagnostics(4, "width = %d, height = %d", width, height); fprintRTF("\n{\\pict\\wmetafile1\\picw%d\\pich%d\n", width, height); AdjustScaling(height,width,height0,width0,scale,&sx,&sy); if (sx != 100 && sy != 100) fprintRTF("\\picscalex%d\\picscaley%d", sx,sy); rewind(fp); PutHexFile(fp); fprintRTF("}\n"); fclose(fp); return; out: diagnostics(WARNING, "Problem with file %s --- not included", s); fclose(fp); } /****************************************************************************** purpose : convert pdf to png and insert in RTF file ******************************************************************************/ static void PutPdfFile(char *s, double height0, double width0, double scale, double baseline) { char *png, *pdf, *eps, *out, *tmp_dir; if (g_figure_include_converted) { diagnostics(WARNING, "Rendering '%s'", s); diagnostics(3,"Converting PDF to PNG and inserting into RTF."); png = pdf_to_png(s); if (png) { PutPngFile(png, height0, width0, scale, baseline); my_unlink(png); safe_free(png); } } if (g_figure_comment_converted) { diagnostics(3,"Converting PDF to EPS and inserting file name in text"); eps = strdup_new_extension(s, ".pdf", ".eps"); if (eps == NULL) { eps = strdup_new_extension(s, ".PDF", ".eps"); if (eps == NULL) { diagnostics(ERROR,"PutPdfFile: Graphicsfile hat not .pdf extension"); return; } } tmp_dir = getTmpPath(); pdf = strdup_together(g_home_dir, s); out = SysGraphicsConvert(CONVERT_PS_TO_EPS, 0, g_dots_per_inch, pdf, eps); if (out != NULL) { eps = strdup_together(tmp_dir, eps); putRtfStrEscaped("[###"); putRtfStrEscaped(eps); putRtfStrEscaped("###]"); free(out); } free (tmp_dir); free (pdf); free (eps); } } /****************************************************************************** purpose : convert eps to png and insert in RTF file ******************************************************************************/ static void PutEpsFile(char *s, double height0, double width0, double scale, double baseline) { char *png; if (g_figure_include_converted) { diagnostics(WARNING, "Rendering '%s'", s); diagnostics(3,"Converting EPS to PNG and inserting in RTF."); png = eps_to_png(s); if (png) { PutPngFile(png, height0, width0, scale, baseline); my_unlink(png); free(png); } } if (g_figure_comment_converted) { diagnostics(3,"Inserting EPS file name in text"); putRtfStrEscaped("[###"); putRtfStrEscaped(s); putRtfStrEscaped("###]"); } } /****************************************************************************** purpose : convert ps to png and insert in RTF file ******************************************************************************/ static void PutPsFile(char *s, double height0, double width0, double scale, double baseline) { char *png, *ps, *eps, *out, *tmp_dir; if (g_figure_include_converted) { diagnostics(WARNING, "Rendering '%s'", s); diagnostics(3,"Converting PS to PNG and inserting in RTF."); png = eps_to_png(s); if (png) { PutPngFile(png, height0, width0, scale, baseline); my_unlink(png); free(png); } } if (g_figure_comment_converted) { diagnostics(3,"Converting PS to EPS and inserting file name in text"); eps = strdup_new_extension(s, ".ps", ".eps"); if (eps == NULL) { eps = strdup_new_extension(s, ".PS", ".eps"); if (eps == NULL) { diagnostics(ERROR,"PutPsFile: Graphicsfile hat not .ps extension"); return; } } tmp_dir = getTmpPath(); ps = strdup_together(g_home_dir, s); out = SysGraphicsConvert(CONVERT_PS_TO_EPS, 0, g_dots_per_inch, ps, eps); if (out != NULL) { eps = strdup_together(tmp_dir, eps); putRtfStrEscaped("[###"); putRtfStrEscaped(eps); putRtfStrEscaped("###]"); free (out); } free (tmp_dir); free (ps); free (eps); } } /****************************************************************************** purpose : Insert TIFF file (from g_home_dir) into RTF file as a PNG image ******************************************************************************/ static void PutTiffFile(char *s, double height0, double width0, double scale, double baseline) { char *tiff, *png, *out; diagnostics(2, "PutTiffFile '%s'", s); png = strdup_new_extension(s, ".tiff", ".png"); if (png == NULL) { png = strdup_new_extension(s, ".TIFF", ".png"); if (png == NULL) return; } tiff = strdup_together(g_home_dir, s); out = SysGraphicsConvert(CONVERT_SIMPLE, 0, g_dots_per_inch, tiff, png); if (out != NULL) { PutPngFile(out, height0, width0, scale, baseline); my_unlink(out); free(out); } free(tiff); free(png); } /****************************************************************************** purpose : Insert GIF file (from g_home_dir) into RTF file as a PNG image ******************************************************************************/ static void PutGifFile(char *s, double height0, double width0, double scale, double baseline) { char *gif, *png, *out; diagnostics(2, "PutGifFile '%s'", s); png = strdup_new_extension(s, ".gif", ".png"); if (png == NULL) { png = strdup_new_extension(s, ".GIF", ".png"); if (png == NULL) return; } gif = strdup_together(g_home_dir, s); out = SysGraphicsConvert(CONVERT_SIMPLE, 0, g_dots_per_inch, gif, png); if (out != NULL) { PutPngFile(out, height0, width0, scale, baseline); my_unlink(out); free(out); } free(gif); free(png); } /**************************************************************************** purpose: reads up to and and including a line ending (CR, CRLF, or LF) ****************************************************************************/ static int ReadLine(FILE * fp) { int thechar; while (1) { thechar = getc(fp); if (thechar == EOF) { fclose(fp); return 0; } if (thechar == 0x0a) return 1; /* LF */ if (thechar == 0x0d) { thechar = getc(fp); if (thechar == EOF) { fclose(fp); return 0; } if (thechar == 0x0d) return 1; /* CR LF */ ungetc(thechar, fp); /* CR */ return 1; } } } /**************************************************************************** purpose: reads a .pbm file to determine the baseline for an equation the .pbm file should have dimensions of 1 x height returns the baseline height in pixels ****************************************************************************/ static double GetBaseline(const char *tex_file_stem, const char *pre) { FILE *fp; int thechar; char *pbm_file_name; char magic[250]; int width, height, items, top, bottom; double baseline = 3.0; /* baseline=0 if not an inline image */ if ((strcmp(pre, "$") != 0) && (strcmp(pre, "\\begin{math}") != 0) && (strcmp(pre, "\\(") != 0)) return 0; pbm_file_name = strdup_together(tex_file_stem, ".pbm"); diagnostics(4, "GetBaseline opening='%s'", pbm_file_name); fp = fopen(pbm_file_name, "rb"); free(pbm_file_name); if (fp == NULL) return baseline; items = fscanf(fp, "%c%c", &magic[0], &magic[1]); /* ensure that file begins with "P4" */ if (items != 2 || magic[0]!='P' || magic[1]!='4') { diagnostics(WARNING,"Bad header in PBM file"); fclose(fp); return baseline; } items = fscanf(fp, " %s", magic); while ((items == 1) && (magic[0] == '#')) { /* skip any comment lines in pbm file */ if (!ReadLine(fp)) goto Exit; items = fscanf(fp, "%s", magic); } items = sscanf(magic, "%d", &width); /* make sure image width is 1 */ if (items != 1 || width != 1) goto Exit; items = fscanf(fp, " %d", &height); /* read height */ if (items != 1) goto Exit; if (!ReadLine(fp)) goto Exit; /* pixel map should start on next line */ for (top = height; top > 0; top--) { /* seek first black pixel (0x00) */ thechar = getc(fp); if (thechar == EOF) goto Exit; if (thechar != 0) break; } for (bottom = top - 1; bottom > 0; bottom--) { /* seek first black pixel (0x00) */ thechar = getc(fp); if (thechar == EOF) goto Exit; if (thechar == 0) break; } /* baseline is in pixels at 72 dots per inch but bitmap may be larger */ baseline = bottom * 72.0 / g_dots_per_inch; diagnostics(4, "height=%d top=%d bottom=%d baseline=%g", height, top, bottom, baseline); Exit: fclose(fp); return baseline; } /****************************************************************************** purpose : Convert LaTeX to Bitmap and insert in RTF file ******************************************************************************/ static void PutLatexFile(const char *tex_file_stem, double scale, const char *pre, conversion_t convertTo, int hinline) { char *png_file_name = NULL; char *tmp_path; int bmoffset; int bad_res; double height_goal, width_goal; double baseline = 0; double png_xres, png_yres; uint32_t png_width = 0; uint32_t png_height= 0; uint16_t png_resolution=0; double max_fig_size = 32767.0 / 20.0; /* in twips */ if (convertTo == EPS) { char *eps_file_name = NULL; eps_file_name = strdup_together(tex_file_stem, ".eps"); diagnostics(1, "Converting LaTeX to EPS..."); tmp_path = SysGraphicsConvert(CONVERT_LATEX_TO_EPS, bmoffset, png_resolution, tex_file_stem, eps_file_name); if (NULL == tmp_path) diagnostics(WARNING, "PutLatexFile failed to convert '%s.tex' to '%s'",tex_file_stem,eps_file_name); else InsertFigureAsComment(eps_file_name, hinline); safe_free(eps_file_name); return; } diagnostics(3, "Rendering LaTeX as a bitmap..."); /* arrived at by trial and error ... works for sizes from 72 to 1200 dpi */ bmoffset = g_dots_per_inch / 60 + 1; /* it is possible that the latex image is too wide or tall for Word we only know this after we have tried once. If the image is too large then the resolution is made smaller and the PNG is remade */ png_resolution = (uint16_t) g_dots_per_inch; png_file_name = strdup_together(tex_file_stem, ".png"); tmp_path = SysGraphicsConvert(CONVERT_LATEX_TO_PNG, bmoffset, png_resolution, tex_file_stem, png_file_name); if (NULL == tmp_path) { diagnostics(WARNING, "PutLatexFile failed to convert '%s.tex' to '%s'",tex_file_stem,png_file_name); safe_free(png_file_name); return; } /* Figures can only have so many bits ... figure out the width and height and if these are too large then reduce resolution and make a new bitmap */ GetPngSize(png_file_name, &png_width, &png_height, &png_xres, &png_yres, &bad_res); if (png_width > max_fig_size || png_height > max_fig_size) { if (png_height && png_height > png_width) png_resolution = (uint16_t)((double)g_dots_per_inch / (double)png_height * max_fig_size); else png_resolution = (uint16_t)((double)g_dots_per_inch / (double)png_width * max_fig_size); safe_free(tmp_path); tmp_path = SysGraphicsConvert(CONVERT_LATEX_TO_PNG, bmoffset, png_resolution, tex_file_stem, png_file_name); if (tmp_path == NULL) { safe_free(png_file_name); return; } GetPngSize(png_file_name, &png_width, &png_height, &png_xres, &png_yres, &bad_res); } /* we have a png file of the latex now ... insert it after figuring out offset and scaling */ baseline = GetBaseline(tex_file_stem, pre); diagnostics(3, "PutLatexFile bitmap has (height=%d,width=%d) baseline=%g resolution=%u", png_height, png_width, baseline, png_resolution); height_goal = (scale * png_height * POINTS_PER_METER / png_yres * 20.0 + 0.5); width_goal = (scale * png_width * POINTS_PER_METER / png_xres * 20.0 + 0.5); PutPngFile(png_file_name, height_goal, width_goal, scale*100, baseline); safe_free(tmp_path); safe_free(png_file_name); } /* this is more general than just equations because it is used to create documents for the latex picture, music, tikzpicture environments also */ static char *SaveEquationAsFile(const char *post_begin_document, const char *pre, const char *eq_with_spaces, const char *post) { FILE *f; char name[15]; char *tmp_dir, *tex_file_stem, *tex_file_name, *eq; static int file_number = 0; if (!pre || !eq_with_spaces || !post) return NULL; /* create needed file names */ file_number++; tmp_dir = getTmpPath(); snprintf(name, 15, "l2r_%04d", file_number); tex_file_stem = strdup_together(tmp_dir, name); safe_free(tmp_dir); tex_file_name = strdup_together(tex_file_stem, ".tex"); diagnostics(2, "SaveEquationAsFile = %s", tex_file_name); f = fopen(tex_file_name, "w"); safe_free(tex_file_name); /* cannot open the file for writing */ if (f==NULL) { diagnostics(WARNING, "Could not open '%s' to save equation",tex_file_stem); safe_free(tex_file_stem); return NULL; } eq = strdup_noendblanks(eq_with_spaces); fprintf(f, "%s", g_preamble); fprintf(f, "\\thispagestyle{empty}\n"); fprintf(f, "\\begin{document}\n"); if (post_begin_document) fprintf(f, "%s\n", post_begin_document); fprintf(f, "\\setcounter{equation}{%d}\n", getCounter("equation")); if ( streq(pre, "$") || streq(pre, "\\begin{math}") || streq(pre, "\\(") ) { fprintf(f, "%%INLINE_DOT_ON_BASELINE\n"); if ((g_equation_inline_eps) || (g_equation_display_eps)) { fprintf(f, "%s\n^I_g%s\n%s", pre, eq, post); } else { fprintf(f, "%s\n.\\quad %s\n%s", pre, eq, post); } } else if (strstr(pre, "equation")) /* fprintf(f, "$$%s$$", eq); WH 2014-01-17*/ fprintf(f, "\\begin{displaymath}\n%s\n\\end{displaymath}", eq); /* WH 2014-04-03*/ else fprintf(f, "%s\n%s\n%s", pre, eq, post); fprintf(f, "\n\\end{document}"); fclose(f); free(eq); return tex_file_stem; } /****************************************************************************** purpose : Call before WriteLatexAsBitmap() ******************************************************************************/ void PrepareDisplayedBitmap(char *the_type) { CmdEndParagraph(0); CmdVspace(VSPACE_SMALL_SKIP); CmdIndent(INDENT_NONE); startParagraph(the_type, PARAGRAPH_FIRST); } /****************************************************************************** purpose : Call after WriteLatexAsBitmap() ******************************************************************************/ void FinishDisplayedBitmap(void) { CmdEndParagraph(0); CmdVspace(VSPACE_SMALL_SKIP); CmdIndent(INDENT_INHIBIT); } static char * abbreviate(const char *s, int len) { char *t,*p; int i,n,half; if (s==NULL) return strdup("< EMPTY >"); n = (int) strlen(s); if (n 6) /* found one ... is there a second? */ p = strstr(p + 6, "\\label"); if (p == NULL) name = SaveEquationAsFile(NULL, "\\begin{eqnarray*}", eq, "\\end{eqnarray*}"); else name = SaveEquationAsFile(NULL, pre, eq, post); } else if (pre && streq(pre, "\\begin{align}")) { p = strstr(eq, "\\label"); if (p && strlen(p) > 6) /* found one ... is there a second? */ p = strstr(p + 6, "\\label"); if (p) name = SaveEquationAsFile(NULL, pre, eq, post); else name = SaveEquationAsFile(NULL, "\\begin{align*}", eq, "\\end{align*}"); } else if (pre && (strstr(pre, "psgraph") || strstr(pre, "pspicture")) ){ p = strdup_together(g_psset_info, g_psstyle_info); name = SaveEquationAsFile(p, pre, eq, post); safe_free(p); } else { name = SaveEquationAsFile(NULL, pre, eq, post); if ( streq(pre, "$") || streq(pre, "\\begin{math}") || streq(pre, "\\(") ) hinline=1; } if (name) { if (strstr(pre, "music") || strstr(pre, "figure") || strstr(pre, "picture") || strstr(pre, "tabular") || strstr(pre, "tabbing") || strstr(pre, "psgraph") || strstr(pre, "pspicture") || strstr(pre, "tikzpicture")) PutLatexFile(name, g_png_figure_scale, pre, convertTo, hinline); else PutLatexFile(name, g_png_equation_scale, pre, convertTo, hinline); safe_free(name); } } static char *upper_case_string(const char *s) { char *t, *x; if (!s) return NULL; t = strdup(s); x = t; while (*x) { if (islower(*x)) *x = toupper(*x); x++; } return t; } /* does file exist with upper or lowercase extension */ static char *exists_with_extension(const char *dir, const char *name, const char *ext) { char *t, *x; t = strdup_together3(dir, name, ext); if (file_exists(t)) return t; safe_free(t); /* now try upper case version of ext */ x = upper_case_string(ext); t = strdup_together3(dir, name, x); safe_free(x); if (file_exists(t)) return t; safe_free(t); return NULL; } /****************************************************************************** purpose : return s.ext or s.EXT if it exists otherwise return NULL ******************************************************************************/ static char *exists_with_any_extension(const char *dir, const char *name, const char *ext) { char *x, *newpath; int i; /* if no graphics path or a name is fully specified then try the plain file only */ if (nGraphicsPathElems == 0) return exists_with_extension(dir,name,ext); /* else try the different directories in the graphics path */ for (i=0; i <%s>",opt,opt2); /* \includegraphics[llx,lly][urx,ury]{filename} */ if (opt && opt2) { opt = keyvalue_pair(opt,&key,&value); if (!key) return; llx=getStringDimension(key); free(key); keyvalue_pair(opt,&key,&value); if (!key) return; lly=getStringDimension(key); free(key); opt2 = keyvalue_pair(opt2,&key,&value); if (!key) return; urx=getStringDimension(key); free(key); keyvalue_pair(opt2,&key,&value); if (!key) return; ury=getStringDimension(key); free(key); *h = ury-lly; *w = urx-llx; return; } /* \includegraphics[width,height]{filename} for graphics */ if (g_graphics_package == GRAPHICS_GRAPHICS && opt) { keyvalue_pair(opt,&key,&value); if (!key) return; *w=getStringDimension(key); free(key); keyvalue_pair(opt,&key,&value); if (!key) return; *h=getStringDimension(key); free(key); return; } /* \includegraphics[key=value,key1=value1]{filename} for graphicx */ while (opt) { opt = keyvalue_pair(opt,&key,&value); if (key) { diagnostics(5,"graphicx key=%s, value=%s", key, value); if (strstr(key,"height")) *h=getStringDimension(value); else if (strstr(key,"natheight")) *h=getStringDimension(value); else if (strstr(key,"totalheight")) *h=getStringDimension(value); else if (strstr(key,"width")) *w=getStringDimension(value); else if (strstr(key,"natwidth")) *w=getStringDimension(value); else if (strstr(key,"bbllx")) llx=getStringDimension(value); else if (strstr(key,"bblly")) lly=getStringDimension(value); else if (strstr(key,"bburx")) urx=getStringDimension(value); else if (strstr(key,"bbury")) ury=getStringDimension(value); else if (strstr(key,"bb")) { llx=getStringDimension(value); lly=getStringDimension(value); urx=getStringDimension(value); ury=getStringDimension(value); } else if (strstr(key,"scale")) { sscanf(value, "%lf", s); /* just a float, not a dimension */ } free(key); } if (value) free(value); } diagnostics(5, "image scale = %lf", *s); diagnostics(5, "image height = %lf", *h); diagnostics(5, "image width = %lf", *w); if (urx) *w=urx-llx; if (ury) *h=ury-lly; } /****************************************************************************** purpose: handle psfig options \psfig{figure=filename.ps,height=1in,width=3mm} ******************************************************************************/ static void HandlePsfigOptions(char *opt, char **filename, double *h, double *w, double *s) { *s=1.0; *h=0.0; *w=0.0; *filename = NULL; diagnostics(4,"HandlePsfigOptions <%s>",opt); while (opt) { char *key, *value; opt = keyvalue_pair(opt,&key,&value); if (key) { diagnostics(5,"psfig key=%s, value=%s", key, value); if (strstr(key,"figure")) *filename=strdup(value); else if (strstr(key,"height")) { *h = getStringDimension(value); } else if (strstr(key,"width")) { *w = getStringDimension(value); } free(key); } if (value) free(value); } } /****************************************************************************** purpose: handle various methods for importing graphics usually by converting to png image and inserting \includegraphics*[0,0][5,5]{file.pict} \epsffile{filename.eps} \epsfbox[0 0 30 50]{filename.ps} \BoxedEPSF{filename [scaled nnn]} \psfig{figure=filename,height=hhh,width=www} ******************************************************************************/ void CmdGraphics(int code) { char *options, *options2; char *filename=NULL; double scale = 1.0; double baseline = 0.0; double height = 0.0; double width = 0.0; if (code == FIGURE_INCLUDEGRAPHICS) { options = getBracketParam(); options2 = getBracketParam(); filename = getBraceParam(); HandleGraphicsOptions(options,options2,&height,&width,&scale); safe_free(options); safe_free(options2); } if (code == FIGURE_EPSFFILE) { filename = getBraceParam(); } if (code == FIGURE_EPSFBOX) { int n,llx,lly,urx,ury; options = getBracketParam(); if (options) { n = sscanf(options,"%d %d %d %d", &llx,&lly,&urx,&ury); if (n==4) { width = (urx - llx) * 20; height = (ury - lly) * 20; } free(options); } filename = getBraceParam(); } if (code == FIGURE_BOXEDEPSF) { char *s; filename = getBraceParam(); s = strchr(filename, ' '); if (s) *s = '\0'; } if (code == FIGURE_PSFIG) { options = getBraceParam(); HandlePsfigOptions(options,&filename,&height,&width,&scale); diagnostics(4,"figure=%s, height=%d, width=%d, scale=%d",filename, height, width, scale); free(options); } if (filename) { GraphConvertElement *thisFormat; char *fullpathname=NULL; char *dir=NULL; char *name=NULL; char *ext=NULL; changeTexMode(MODE_HORIZONTAL); split_filename(filename,&dir,&name,&ext); if (ext) { fullpathname=exists_with_any_extension(dir,name,ext); if (fullpathname) { for (thisFormat = GraphConvertTable; thisFormat->extension; thisFormat++) { if (strcasecmp(ext,thisFormat->extension) == 0) break; } } } else { /* implicit extension in file name ... try all of them until one is found */ for (thisFormat = GraphConvertTable; thisFormat->extension; thisFormat++) { fullpathname=exists_with_any_extension(dir,name,thisFormat->extension); if (fullpathname) break; } } if (fullpathname && thisFormat->extension) { diagnostics(2,"located graphics file as '%s'",fullpathname); thisFormat->encoder(fullpathname, height, width, scale, baseline); } else diagnostics(WARNING, "The graphics file '%s' was not found", filename); safe_free(dir); safe_free(name); safe_free(ext); safe_free(fullpathname); safe_free(filename); } } /****************************************************************************** purpose: handle \begin{pspicture} ... \end{pspicture} by converting to png image and inserting ******************************************************************************/ void CmdPsPicture(int code) { char *contents = NULL; char post[] = "\\end{pspicture}"; if (!(code & ON)) { diagnostics(4, "exiting CmdPsPicture"); return; } else diagnostics(4, "entering CmdPsPicture"); contents = getTexUntil(post, 0); PrepareDisplayedBitmap("PS picture"); WriteLatexAsBitmapOrEPS("\\begin{pspicture}", contents, post, BITMAP); FinishDisplayedBitmap(); ConvertString(post); /* to balance the \begin{picture} */ safe_free(contents); } /****************************************************************************** purpose: handle \begin{psgraph} ... \end{psgraph} by converting to png image and inserting ******************************************************************************/ void CmdPsGraph(int code) { char *contents = NULL; char post[] = "\\end{psgraph}"; if (!(code & ON)) { diagnostics(4, "exiting CmdPsGraph"); return; } else diagnostics(4, "entering CmdPsGraph"); contents = getTexUntil(post, 0); PrepareDisplayedBitmap("PS Graph"); WriteLatexAsBitmapOrEPS("\\begin{psgraph}", contents, post, BITMAP); FinishDisplayedBitmap(); ConvertString(post); /* to balance the \begin{graph} */ safe_free(contents); } /****************************************************************************** purpose: handle \psset{info} by converting saving to a local global ******************************************************************************/ void CmdPsset(int code) { char *contents = getBraceParam(); if (g_psset_info) free(g_psset_info); g_psset_info = strdup_together3("\\psset{", contents, "}"); safe_free(contents); } /****************************************************************************** purpose: handle \psnewstyle{info}{moreinfo} by appending to g_psstyle_info ******************************************************************************/ void CmdNewPsStyle(int code) { char *a, *b, *c; a = getBraceParam(); b = getBraceParam(); c = strdup_together4(g_psstyle_info,"\\newpsstyle{",a,"}{"); if (g_psstyle_info) free(g_psstyle_info); g_psstyle_info = strdup_together3(c,b,"} "); safe_free(a); safe_free(b); safe_free(c); } /****************************************************************************** purpose: handle \begin{picture} ... \end{picture} by converting to png image and inserting ******************************************************************************/ void CmdPicture(int code) { char *picture = NULL; char post[] = "\\end{picture}"; if (!(code & ON)) { diagnostics(4, "exiting CmdPicture"); return; } else diagnostics(4, "entering CmdPicture"); picture = getTexUntil(post, 0); PrepareDisplayedBitmap("latex picture"); WriteLatexAsBitmapOrEPS("\\begin{picture}", picture, post, BITMAP); FinishDisplayedBitmap(); ConvertString(post); /* to balance the \begin{picture} */ safe_free(picture); } /****************************************************************************** purpose: handle \begin{tikzpicture} ... \end{tikzpicture} by converting to png image and inserting ******************************************************************************/ void CmdTikzPicture(int code) { char *picture = NULL; char post[] = "\\end{tikzpicture}"; if (!(code & ON)) { diagnostics(4, "exiting CmdTikzPicture"); return; } else diagnostics(4, "entering CmdTikzPicture"); picture = getTexUntil(post, 0); PrepareDisplayedBitmap("picture"); if (g_figure_comment_converted) { WriteLatexAsBitmapOrEPS("\\begin{tikzpicture}", picture, post, EPS); } else { WriteLatexAsBitmapOrEPS("\\begin{tikzpicture}", picture, post, BITMAP); } FinishDisplayedBitmap(); ConvertString(post); /* to balance \begin{tikzpicture} */ safe_free(picture); } /****************************************************************************** purpose: Process \begin{music} ... \end{music} environment ******************************************************************************/ void CmdMusic(int code) { char *contents = NULL; char endmusic[] = "\\end{music}"; if (!(code & ON)) { diagnostics(4, "exiting CmdMusic"); return; } else diagnostics(4, "entering CmdMusic"); diagnostics(4, "entering CmdMusic"); contents = getTexUntil(endmusic, TRUE); PrepareDisplayedBitmap("music"); WriteLatexAsBitmapOrEPS("\\begin{music}", contents, endmusic, BITMAP); FinishDisplayedBitmap(); ConvertString(endmusic); /* to balance the \begin{music} */ safe_free(contents); } void CmdTikzlib(int code) { char *tikzlib = getBraceParam(); tikzlibsnum++; if (tikzlibsnum<32) tikzlibs[tikzlibsnum-1]=tikzlib; } latex2rtf-2.3.18/letterformat.h0000777000175000017500000000033513050672360016607 0ustar wilfriedwilfried#define LETTER_PS 1 #define LETTER_CC 2 #define LETTER_ENCL 3 void CmdLetter(int code); void CmdAddress(int code); void CmdSignature(int code); void CmdOpening(int code); void CmdClosing(int code); void CmdPs(int code); latex2rtf-2.3.18/README.OS20000777000175000017500000000117113050672360015207 0ustar wilfriedwilfriedinstallation: ============ 1) edit Makefile to define -DOS2 and location of 1) copy latex2rtf.exe latex2png.cmd png2png.exe to %PATH% 2) edit variable LATEX in latex2png.cmd for example: LATEX="tex -progname=cslatex -default-translate-file=cp852-cs" 2) copy cfg/* to c:/usr/local/share/latex2rtf/cfg or to other directory , use switch -P , example: latex2rtf -P e:/home/l2r/cfg requiered: ========== emx runtime,tex,sh,gsos2 notes: ====== 1) read latex2rtf original documentation 2) option -i : only small subseet languages curerently supported in original code horeni@quick.cz latex2rtf-2.3.18/tables.c0000777000175000017500000014561713050672354015364 0ustar wilfriedwilfried /* tables.c - Translation of tabbing and tabular environments Copyright (C) 2002 The Free Software Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. This file is available from http://sourceforge.net/projects/latex2rtf/ */ #include #include #include #include "main.h" #include "convert.h" #include "fonts.h" #include "commands.h" #include "funct1.h" #include "tables.h" #include "stack.h" #include "cfg.h" #include "parser.h" #include "counters.h" #include "utils.h" #include "lengths.h" #include "preamble.h" #include "graphics.h" #include "vertical.h" typedef struct TabularT { int n; /* number of columns, 0 column unused except in vert */ int i; /* current column */ char *align; /* align[1] is the alignment of the first column */ int *chars; /* chars[1] is the max number of chars in the first column */ int *vert; /* vert[0] is the number of |'s before first column */ /* vert[1] is the number of |'s after first column */ int *width; /* width[1] is the width of the first column */ int *cline; /* cline[1] is true when line should be drawn across column 1 */ char **before; /* before[1] is TeX to be inserted before each entry in column 1 */ char **after; /* after[1] is TeX to be inserted after each entry in column 1 */ } TabularT; int g_tabbing_left_position = 0; int g_tabbing_current_position = 0; int *g_tabbing_locations = NULL; int tabbing_return = FALSE; int tabbing_on_itself = FALSE; long pos_begin_kill; static TabularT* NewTabular(int size) { int i; TabularT *table = (TabularT *) malloc(sizeof(TabularT)); table->i = 0; table->n = size; table->align = (char *) malloc((size+1)*sizeof(char)); table->chars = (int *) malloc((size+1)*sizeof(int)); table->vert = (int *) malloc((size+1)*sizeof(int)); table->width = (int *) malloc((size+1)*sizeof(int)); table->cline = (int *) malloc((size+1)*sizeof(int)); table->after = (char **) malloc((size+1)*sizeof(char *)); table->before= (char **) malloc((size+1)*sizeof(char *)); /* fill with reasonable starting values */ for (i=0; i <= size; i++) { table->align[i] = 'l'; table->chars[i] = 1; table->vert[i] = 0; table->width[i] = -1; table->cline[i] = 0; table->after[i] = NULL; table->before[i] = NULL; } return table; } static void FreeTabular(TabularT *table) { int i; for (i=0; i <= table->n; i++) { if(table->after[i] ) free(table->after[i]); if(table->before[i]) free(table->before[i]); } free(table->align); free(table->vert); free(table->chars); free(table->width); free(table->cline); free(table->after); free(table->before); free(table); table = NULL; } static void PrintTabular(TabularT *table) { int i; diagnostics(1, "tabular info %p, cols=%d, current col=%d", table, table->n, table->i); diagnostics(1, "textwidth=%d", getLength("textwidth")); for (i=0; i <= table->n; i++) { diagnostics(1, "col %3d, align=%3c, chars=%3d, vert=%3d, width=%5d, cline=%3d, before=%s, after=%s", i, table->align[i],table->chars[i],table->vert[i],table->width[i], table->cline[i],table->before[i],table->after[i]); } } /****************************************************************************** purpose: Just count the number of columns ... very similar to the switch structure in InterpretTabularFormat ******************************************************************************/ static int countTabularColumns(const char *format) { char *t; char *s= (char *) format; int iCol = 0; while (*s) { switch (*s) { case 'c': case 'r': case 'l': iCol++; s++; break; case 'b': case 'm': case 'p': iCol++; s++; t=getStringBraceParam(&s); if (t) free(t); break; case '*': s++; t=getStringBraceParam(&s); if (t) free(t); t=getStringBraceParam(&s); if (t) free(t); break; case '<': case '>': case '@': case '!': s++; t=getStringBraceParam(&s); if (t) free(t); break; default: s++; break; } } return iCol; } /****************************************************************************** purpose: convert the crazy tabular format string to something useable and return a point to that structure. ******************************************************************************/ static TabularT *NewTabularFromFormat(const char *format) { int iCol; char *t, *old, *s; TabularT *table; static int warned_once = FALSE; diagnostics(4, "Entering NewTabularFromFormat, format='%s'", format); table = NewTabular(countTabularColumns(format)); iCol = 0; s = (char *) format; while (*s) { switch (*s) { case 'c': case 'r': case 'l': iCol++; table->align[iCol] = *s; s++; diagnostics(6,"%c item, residual='%s'",*(s-1),s); break; case 'b': case 'm': case 'p': iCol++; table->align[iCol] = 'l'; s++; t=getStringBraceParam(&s); if (t) { table->width[iCol] = getStringDimension(t); free(t); diagnostics(6,"p item, width=%d, residual='%s'",table->width[iCol], s); } break; case '*': diagnostics(WARNING, " '*{num}{cols}' not supported."); s++; t=getStringBraceParam(&s); if (t) free(t); t=getStringBraceParam(&s); if (t) free(t); break; case '<': s++; t=getStringBraceParam(&s); old = table->before[iCol+1]; if (old) { table->before[iCol+1] = strdup_together(t, old); free(t); free(old); } else table->before[iCol+1] = t; diagnostics(6,"< item, residual='%s'",s); break; case '>': s++; t=getStringBraceParam(&s); old = table->after[iCol+1]; if (old) { table->after[iCol+1] = strdup_together(t, old); free(t); free(old); } else table->after[iCol+1] = t; diagnostics(6,"> item, residual='%s'",s); break; case '@': case '!': if (!warned_once) diagnostics(WARNING, " '@{decl.}' and !{decl.} not supported."); s++; t=getStringBraceParam(&s); free(t); warned_once = TRUE; break; case '|': table->vert[iCol]++; s++; break; default: s++; break; } } table->n = iCol; table->i = 0; diagnostics(5, "Exiting NewTabularFromFormat"); return table; } void CmdTabjump(void) { fprintRTF("\\tab\n"); } void CmdTabset(void) { } static void BeginCellRTF(char align) /****************************************************************************** purpose: emit RTF code to start each cell ******************************************************************************/ { fprintRTF("{\\pard\\intbl\\q%c ", align); } static void EndCellRTF(void) /****************************************************************************** purpose: emit RTF code to end each cell ******************************************************************************/ { fprintRTF("\\cell}\n"); } static int TabularColumnPosition(TabularT *table, int n) /****************************************************************************** purpose: return position of nth column ******************************************************************************/ { int i, oldWidth; int colWidth; colWidth = 0; for (i=1; i<=n; i++) colWidth += table->width[i]; oldWidth = getLength("textwidth") * (n ) / (table->n ); diagnostics(5,"col=%3d old=%5d new=%5d",n,oldWidth,colWidth); return (int) colWidth; } static TabularT *TabularPreamble(const char *format) /****************************************************************************** purpose: analyze the format and create and fill a TabularT structure ******************************************************************************/ { TabularT *tabular = NewTabularFromFormat(format); if (getTexMode() != MODE_HORIZONTAL) { CmdIndent(INDENT_NONE); startParagraph("last", PARAGRAPH_FIRST); } fprintRTF("\\par\n"); return tabular; } static void TabularGetRow(const char *tabular_text, char **row, char **next_row, int *height) /****************************************************************************** purpose: scan and duplicate the next row from a tabular environment and any height changes e.g. the & cell & is & here \\[2pt] but & then & it & died \\ will return "the & cell & is & here" and height should be 40 (twips) ******************************************************************************/ { char *s, *dimension, *dim_start; int slash = FALSE; int tabularnewline = FALSE; int row_chars = 0; int dim_chars = 0; int brace = 0; diagnostics(6, "TabularGetFirstRow contents=%s", tabular_text); s = (char *) tabular_text; *row = NULL; *next_row = NULL; *height = 0; if (!s) return; while ( (*s != '\0') && (brace != 0 || *s != '\\' || !slash)) { slash = (*s == '\\') ? TRUE : FALSE; row_chars++; s++; if (!slash && *s =='{') brace++; if (!slash && *s =='}') brace--; if (slash && strncmp(s,"tabularnewline", 14) == 0) { tabularnewline = TRUE; break; } } /* don't include final \\ in copied text */ if (*s == '\\' && slash) row_chars--; /* save row as a new string */ *row = (char *) malloc((row_chars + 1) * sizeof(char)); strncpy(*row, tabular_text, row_chars); (*row)[row_chars] = '\0'; diagnostics(5, "TabularGetFirstRow row = %s", *row); /* all done, leave *next_row = NULL */ if (*s == '\0') return; if (tabularnewline) { *next_row = s+14; return; } /* move after \\ */ s++; /* skip blanks */ while (*s != '\0' && (*s == ' ' || *s == '\n')) s++; /* last row because nothing after \\ so leave *next_row = NULL */ if (*s == '\0') return; /* no height specification so this is the start of the next row */ if (*s != '[') { *next_row = s; return; } /* read dimension between [ ] */ s++; dim_start = s; while (*s != '\0' && *s != ']') { s++; dim_chars++; } /* figure out the row height */ dimension = (char *) malloc((dim_chars + 2) * sizeof(char)); strncpy(dimension, dim_start, dim_chars); dimension[dim_chars] = '\n'; /* make sure entire string is not parsed */ dimension[dim_chars + 1] = '\0'; *height = getStringDimension(dimension); free(dimension); /* skip blanks */ s++; while (*s != '\0' && (*s == ' ' || *s == '\n')) s++; /* last line ends with \\[dimension], so no next_row remains NULL */ if (*s == '\0') return; *next_row = s; } static char *NextAmpersand(const char *t) /****************************************************************************** purpose: find the next ampersand while avoiding \& ******************************************************************************/ { char *s; int escaped = 0; s = (char *) t; diagnostics(5, "TabularNextAmpersand seeking '&' in '%s'",s); while (s && *s != '\0' && (*s != '&' || (*s == '&' && escaped))) { escaped = (*s == '\\') ? 1 : 0; s++; } return s; } static void TabularGetCell(const char *cell_start, char **cell, char **next_cell) /****************************************************************************** purpose: scan and duplicate contents of the next cell cell_start should point to the beginning of the cell on exit next_cell points just after the ampersand cell is a newly allocated string that contains the cell ******************************************************************************/ { char *cell_end, *dup; *cell = NULL; *next_cell = NULL; if (cell_start == NULL) return; diagnostics(5,"TabularGetCell %p start='%s'", cell_start, cell_start); cell_end = NextAmpersand(cell_start); /* last cell in a row ... just duplicate what remains */ if (*cell_end != '&') { *cell = strdup_noendblanks(cell_start); return; } *next_cell = cell_end + 1; dup = my_strndup(cell_start, (size_t) (cell_end - cell_start)); *cell = strdup_noendblanks(dup); free(dup); } static void TabularMultiParameters(const char *cell, int *col_span, char *align, int *lvert, int *rvert) /****************************************************************************** purpose: extract information from \multicolumn's on a line return col_span=0 if none are present ******************************************************************************/ { char *p, *format, *num; TabularT *mtable; diagnostics(5, "TabularMultiParameters cell=\"%s\" ", cell); *col_span = 0; *align = '\0'; *lvert = 0; *rvert = 0; p = strstr(cell, "\\multicolumn"); if (p == NULL) return; p += strlen("\\multicolumn"); num = getStringBraceParam(&p); format = getStringBraceParam(&p); mtable = NewTabularFromFormat(format); *lvert = mtable->vert[0]; *rvert = mtable->vert[mtable->n]; *align = mtable->align[1]; *col_span = atoi(num); /* PrintTabular(mtable); */ free(num); free(format); FreeTabular(mtable); diagnostics(5, "TabularMultiParameters n=%d, align=%c", *col_span, *align); } static int TabularHline(const char *row) /****************************************************************************** purpose: count the number of \hline's in a line ******************************************************************************/ { char *s, *t; if (row == NULL) return 0; s = strstr(row, "\\hline"); if (s == NULL) return 0; t = strstr(s + 6, "\\hline"); if (t == NULL) return 1; return 2; } static char *TabularCline(const char *row, int columns) /****************************************************************************** purpose: mark columns needing underline by \cline{ 1 - 2 } limited to 1-9 columns ******************************************************************************/ { char *s, *x; int i, n, m; char *cline = NULL; cline = (char *) calloc((columns + 2) , sizeof(char)); if (row == NULL) return cline; /* hline commands override cline commands */ n = TabularHline(row); for (i = 0; i <= columns; i++) cline[i] = n; if (n) return cline; s = (char *) row; x = (char *) row + strlen(row); while (s < x) { s = strstr(s, "\\cline{"); if (s == NULL) return cline; s += 7; while (*s && (*s == ' ' || *s == '\n')) s++; /* skip spaces after { */ if (*s <= '0' || *s >= '9') return cline; n = atoi(s); /* first column */ while (*s && *s != '-') s++; /* skip past '-' */ s++; while (*s && (*s == ' ' || *s == '\n')) s++; /* skip spaces after '-' */ if (*s <= '0' || *s >= '9') return cline; m = atoi(s); /* second column */ for (i = n; i <= m; i++) { if (i <= columns && i >= 1) cline[i] = 1; } while (*s && *s != '}') s++; /* skip to last '}' */ } return cline; } static void TabularBeginRow(TabularT *table, const char *this_row, const char *next_row, int first_row) /****************************************************************************** purpose: emit RTF to start one row of a table the vertical bar formatting codes for the entire row must be present at the start of the row. The same holds for horizontal lines. Only the first line may have an hlines above it. Drawing hlines below depends on the next line containing an hline (i.e., after \\ that ends the row) ******************************************************************************/ { int i, span, column; int multi_right_border, multi_left_border; int next_left_border, left_border, right_border; char align; char *cell_start, *cell_end, *cell; int top, bottom; /* cell borders */ char *cline; fprintRTF("{\\trowd"); cell_start = (char *) this_row; column = 0; cline = TabularCline(next_row, table->n); next_left_border = table->vert[column]; while (cell_start) { /* for each cell */ top = 0; left_border = next_left_border; right_border = table->vert[column + 1]; bottom = cline[column + 1]; if (first_row) top = TabularHline(this_row); TabularGetCell(cell_start, &cell, &cell_end); TabularMultiParameters(cell, &span, &align, &multi_left_border, &multi_right_border); if (span > 1) fprintRTF("\\clmgf"); if ( (span==0 && left_border == 2) || (span>0 && multi_left_border == 2) ) fprintRTF("\\clbrdrl\\brdrdb"); if ( (span==0 && left_border == 1) || (span>0 && multi_left_border == 1) ) fprintRTF("\\clbrdrl\\brdrs"); /* assume that next left will have no left border */ next_left_border = 0; if (top == 1) fprintRTF("\\clbrdrt\\brdrs"); if (top == 2) fprintRTF("\\clbrdrt\\brdrdb"); if (bottom == 1) fprintRTF("\\clbrdrb\\brdrs"); if (bottom == 2) fprintRTF("\\clbrdrb\\brdrdb"); if ( (span==0 && right_border == 2) || (span==1 && multi_right_border == 2) ) { fprintRTF("\\clbrdrr\\brdrdb"); next_left_border = 2; } if ( (span==0 && right_border == 1) || (span==1 && multi_right_border == 1) ) { fprintRTF("\\clbrdrr\\brdrs"); next_left_border = 1; } column++; fprintRTF("\\cellx%d", TabularColumnPosition(table, column)); for (i = 2; i <= span; i++) { fprintRTF("\\clmrg"); if (top == 1) fprintRTF("\\clbrdrt\\brdrs"); if (top == 2) fprintRTF("\\clbrdrt\\brdrdb"); if (bottom == 1) fprintRTF("\\clbrdrb\\brdrs"); if (bottom == 2) fprintRTF("\\clbrdrb\\brdrdb"); if (i == span && multi_right_border == 2) { fprintRTF("\\clbrdrr\\brdrdb"); next_left_border = 2; } if (i == span && multi_right_border == 1) { fprintRTF("\\clbrdrr\\brdrs"); next_left_border = 1; } column++; fprintRTF("\\cellx%d", TabularColumnPosition(table, column)); } free(cell); cell_start = cell_end; } fprintRTF("\n"); free(cline); } static void TabularEndRow(void) /****************************************************************************** purpose: emit RTF to finish one row of a table ******************************************************************************/ { fprintRTF("\\row}\n"); } static char TabularColumnAlignment(TabularT *table, int column) /****************************************************************************** purpose: alignment for a column ******************************************************************************/ { return table->align[column+1]; } static void TabularWriteRow(TabularT *table, const char *this_row, const char *next_row, int height, int first_row) { char *cell, *cell_start, *cell_end; char align; int n, lvert, rvert; if (this_row == NULL || strlen(this_row) == 0) return; diagnostics(5, "TabularWriteRow height=%d twpi, row <%s>", height, this_row); /* avoid writing anything for empty last row */ if (next_row == NULL) { /* do nothing if the row is empty */ if (table->n == 1 && strlen(this_row) == 0) return; /* do nothing if there is more than one column, but no '&' */ if (table->n > 1 && !strchr(this_row, '&')) { /* except if the last line is multicolumn! */ TabularMultiParameters(this_row, &n, &align, &lvert, &rvert); if (n==0) return; } } TabularBeginRow(table, this_row, next_row, first_row); cell_start = (char *) this_row; table->i = 0; while (cell_start) { TabularGetCell(cell_start, &cell, &cell_end); /* establish cell alignment */ TabularMultiParameters(cell, &n, &align, &lvert, &rvert); if (n == 0) { align = TabularColumnAlignment(table, table->i); n = 1; } BeginCellRTF(align); if (cell != NULL) { fprintRTF("{"); ConvertString(cell); fprintRTF("}"); } EndCellRTF(); table->i += n; cell_start = cell_end; free(cell); } TabularEndRow(); } static int TabularMeasureCell(const char *cell) /****************************************************************************** purpose: come up with a rough number for the number of characters in a cell this is pretty ridiculous, but just counting characters is better than nothing. ******************************************************************************/ { char *s; int len; if (cell == NULL || *cell == '\0') return 0; s = strstr(cell, "multicolumn"); if (s) { char *num, *format, *text, *xtext; PushSource(NULL, s + strlen("multicolumn")); num = getBraceParam(); format = getBraceParam(); text = getBraceParam(); PopSource(); xtext = strdup_noendblanks(text); len = (int) strlen(xtext); free(num); free(format); free(text); free(xtext); return len; } return (int) strlen(cell); } /****************************************************************************** purpose: determine the widths for all columns ******************************************************************************/ static void TabularSetWidths(TabularT *table) { double total_chars; double twips_to_distribute; double pre_allocated; int i; double twips_per_char; int min_width = 100; /* in twips */ /* total of all characters in all unsized columns*/ total_chars = 0; for (i=1; i<=table->n; i++) { if (table->width[i] == -1) total_chars += table->chars[i]; } /* nothing to do in this case */ if (total_chars == 0) return; /* total width already allocated */ pre_allocated = 0; for (i=1; i<=table->n; i++) { if (table->width[i] != -1) pre_allocated += table->width[i]; else pre_allocated += min_width; } /* space left to distribute */ twips_to_distribute = getLength("textwidth") - pre_allocated; if (twips_to_distribute < 0) twips_to_distribute = 0; twips_per_char = twips_to_distribute / total_chars; diagnostics(5,"used=%g, allocatable=%g, per_char=%g",pre_allocated,twips_to_distribute,twips_per_char); /* distribute space proportionally over columns */ for (i=1; i<=table->n; i++) { if (table->width[i] == -1) table->width[i] = (int) (min_width + twips_per_char * table->chars[i]); } } static void TabularMeasureRow(TabularT *table, const char *this_row, int height) /****************************************************************************** purpose: come up with relative widths for all cells in a row ******************************************************************************/ { char *cell, *cell_start, *cell_end; char align; int n, lvert, rvert, iCol; int len; table->i = 0; if (this_row == NULL || strlen(this_row) == 0) return; diagnostics(5, "TabularMeasureRow height=%d twpi, row <%s>", height, this_row); cell_start = (char *) this_row; iCol = 0; while (cell_start) { TabularGetCell(cell_start, &cell, &cell_end); iCol++; TabularMultiParameters(cell, &n, &align, &lvert, &rvert); if (n <= 1) len = TabularMeasureCell(cell); else { len = 0; iCol += n-1; } if (table->chars[iCol] < len) table->chars[iCol] = len; cell_start = cell_end; free(cell); } } void CmdTabular(int code) /****************************************************************************** purpose: \begin{tabular}[pos]{cols} ... \end{tabular} \begin{tabular*}{width}[pos]{cols} ... \end{tabular*} \begin{array}[pos]{cols} ... \end{array} ******************************************************************************/ { int true_code, this_height, first_row, begins, ends; char *end=NULL, *begin=NULL, *this_row, *next_row_start; char *table = NULL; char *cols = NULL; char *pos = NULL; char *width = NULL; TabularT *tabular_layout; if (!(code & ON)) { diagnostics(4, "Exiting CmdTabular"); g_processing_tabular = FALSE; return; } g_processing_tabular = TRUE; width = NULL; pos = NULL; cols = NULL; true_code = code & ~(ON); switch (true_code) { case TABULAR: end = strdup("\\end{tabular}"); begin = strdup("\\begin{tabular}"); break; case TABULAR_STAR: end = strdup("\\end{tabular*}"); begin = strdup("\\begin{tabular*}"); width = getBraceParam(); break; case TABULAR_LONG: end = strdup("\\end{longtable}"); begin = strdup("\\begin{longtable}"); break; case TABULAR_LONG_STAR: end = strdup("\\end{longtable*}"); begin = strdup("\\begin{longtable*}"); width = getBraceParam(); break; default: diagnostics(ERROR, "This can't happen --- bad code to CmdTabular"); exit(1); } pos = getBracketParam(); cols = getBraceParam(); table = getTexUntil(end, FALSE); if (g_tabular_display_bitmap) { char *pre = strdup_together4(begin,"{",cols,"}"); PrepareDisplayedBitmap("tabular"); WriteLatexAsBitmapOrEPS(pre, table, end, BITMAP); FinishDisplayedBitmap(); free(pre); } if (g_tabular_display_rtf) { /* need to make sure that we don't have nested environments */ begins = strstr_count(table, begin); ends = strstr_count(table, end); while (begins > ends) { char *table2, *table3, *table4; if (begins > ends) { table2 = getTexUntil(end, FALSE); table3 = strdup_together(table, end); table4 = strdup_together(table3, table2); free(table); free(table2); free(table3); table = table4; } begins = strstr_count(table, begin); ends = strstr_count(table, end); } if (begins > 0) { char *p; int num = TexFontNumber("Typewriter"); diagnostics(WARNING, "Nested tabular/tabbing environments not allowed"); diagnostics(5, "table_table_table_table_table\n%stable_table_table_table_table", table); fprintRTF("{\\pard\\ql\\b0\\i0\\scaps0\\f%d ", num); p = begin; while (*p) fprintRTF("%c",*p++); p = table; while (*p) fprintRTF("%c",*p++); p = end; while (*p) fprintRTF("%c",*p++); } else { diagnostics(4, "Entering CmdTabular() options [%s], format {%s}", (pos) ? pos : "", cols); tabular_layout = TabularPreamble(cols); if (0) PrintTabular(tabular_layout); diagnostics(5, "*********** TABULAR TABULAR TABULAR *************"); diagnostics(5, "%s",table); diagnostics(5, "*********** TABULAR TABULAR TABULAR *************"); /* scan entire table to get max number of chars in each column */ /* these are stored in tabular_layout->chars */ TabularGetRow(table, &this_row, &next_row_start, &this_height); while (this_row) { TabularMeasureRow(tabular_layout, this_row, this_height); free(this_row); TabularGetRow(next_row_start, &this_row, &next_row_start, &this_height); } TabularSetWidths(tabular_layout); if (0) PrintTabular(tabular_layout); TabularGetRow(table, &this_row, &next_row_start, &this_height); first_row = TRUE; while (this_row) { char *next_row; TabularGetRow(next_row_start, &next_row, &next_row_start, &this_height); TabularWriteRow(tabular_layout, this_row, next_row, this_height, first_row); free(this_row); this_row = next_row; first_row = FALSE; } /* free before and after strings */ if (cols) free(cols); if (pos) free(pos); if (width) free(width); if (tabular_layout) FreeTabular(tabular_layout); } } ConvertString(end); free(table); free(end); free(begin); } static int TabbingColumnPosition(int n, int total) /****************************************************************************** purpose: return position of nth column ******************************************************************************/ { int colWidth = getLength("textwidth") / total; return colWidth * (n + 1); } /****************************************************************************** purpose: simple minded way to skip \verb#contents$# in cell ******************************************************************************/ static char *skip_verb(char *s) { char endchar; diagnostics(6,"before verb <<%s>>",s); if (s && strncmp(s,"verb",4)==0){ s+=4; endchar = *s; s++; while (*s && *s!= endchar) s++; if (*s) s++; } diagnostics(6,"after verb <<%s>>",s); return s; } static void TabbingNextCellEnd(char *t, char **cell_end, char **next_cell) /****************************************************************************** purpose: find the end of this tabbing cell ******************************************************************************/ { char *s; s = t; while (s) { if (*s == '\0') { *cell_end = s; *next_cell = s; return; } if (*s == '\\') { s++; s = skip_verb(s); if (*s == '=' || *s == '>' || *s == '<' || *s == '\'' || *s == '`') { *cell_end = s - 1; *next_cell = s + 1; return; } } if (*s == '\0') { *cell_end = s; *next_cell = s; return; } s++; } } static char *TabbingNextCell(char *cell_start, char **cell_end) /****************************************************************************** purpose: scan and duplicate contents of the next cell ******************************************************************************/ { char *end=NULL, *dup, *dup2, *next_cell=NULL, *p; TabbingNextCellEnd(cell_start, &end, &next_cell); if (end < cell_start) end = cell_start; dup = my_strndup(cell_start, (size_t) (end - cell_start)); if (*next_cell == '\0') *cell_end = NULL; else *cell_end = next_cell; /* remove \- and \+ from string */ while (((p = strstr(dup, "\\+")) != NULL) || ((p = strstr(dup, "\\-")) != NULL)) { *p = ' '; p++; *p = ' '; } dup2 = strdup_noendblanks(dup); free(dup); diagnostics(5,"next cell = [[%s]]", dup); return dup2; } static void TabbingBeginRow(int n, int n_total, char *align) /****************************************************************************** purpose: emit RTF to start one row of a tabbing environment ******************************************************************************/ { int i; if (n == 0) return; fprintRTF("{\\trowd"); for (i = 0; i < n; i++) fprintRTF("\\cellx%d", TabbingColumnPosition(i, n_total)); fprintRTF("\n"); for (i = 0; i < g_tabbing_left_position; i++) { BeginCellRTF(align[i]); EndCellRTF(); } } static void TabbingWriteRow(char *this_row, int n, int n_total, char *align) { char *start, *end, *cell; int i; diagnostics(5, "TabbingWriteRow n=%d <%s> [%s]", n, align, this_row); if (this_row == NULL || n == 0) return; if (strstr(this_row, "\\kill")) return; TabbingBeginRow(n, n_total, align); start = this_row; end = this_row + strlen(this_row); for (i = g_tabbing_left_position; i < n; i++) { BeginCellRTF(align[i]); cell = TabbingNextCell(start, &end); if (cell) { diagnostics(5, "cell=<%s>", cell); ConvertString(cell); free(cell); } EndCellRTF(); start = end; } fprintRTF("\\row}\n"); } static void TabbingGetRow(char *table, char **row, char **next_row) /****************************************************************************** purpose: scan and duplicate the next row from the tabbing environment ******************************************************************************/ { char *s, *arow; size_t row_chars = 0; int slash; s = table; *row = NULL; *next_row = NULL; if (!s) return; /* the end of a row is caused by one of three things 1) the buffer ends 2) the line ends \\ 3) \kill is encountered */ slash = FALSE; while (!(*s == '\0') && !(*s == '\\' && slash) && !((row_chars > 6) && strncmp(s - 5, "\\kill", 5) == 0 && !isalpha((int) *s)) ) { row_chars++; slash = (*s == '\\') ? 1 : 0; s++; } if (*s == '\\' && slash) { /* line ends with \\ */ row_chars--; if (*(s+1)=='[') { /* skip optional height parameter */ s++; while (*s != '\0' && *s != ']') s++; } } if (*s != '\0') *next_row = s + 1; arow = (char *) malloc((row_chars + 1) * sizeof(char)); strncpy(arow, table, row_chars); arow[row_chars] = '\0'; diagnostics(5, "TabbingGetRow obtained=<%s> remaining[%s]", arow, *next_row); *row = strdup_noendblanks(arow); free(arow); } static void TabbingGetColumnAlignments(char *row, char *align, int *n, int *next_left) /****************************************************************************** purpose: scan one row of tabbing environment to obtain column alignments ******************************************************************************/ { int i; *next_left = g_tabbing_left_position; *n = *next_left + 1; for (i = 0; i < *n; i++) align[i] = 'l'; while (row && *row) { if (*row != '\\') { row++; continue; } row++; row = skip_verb(row); switch (*row) { case '=': align[*n] = 'l'; (*n)++; break; case '>': align[*n] = 'l'; (*n)++; break; case '<': break; case '\'': align[*n - 2] = 'r'; align[*n - 1] = 'l'; break; case '`': align[*n] = 'r'; (*n)++; break; case '+': (*next_left)++; break; case '-': (*next_left)--; break; default: break; } } align[*n] = '\0'; } void CmdTabbing(int code) /****************************************************************************** purpose: \begin{tabbing} ... \end{tabbing} ******************************************************************************/ { int n, n_total, next_left; char *end, *this_row, *next_row_start, *row_start; char *table = NULL; char align[31]; if (!(code & ON)) { diagnostics(4, "Exiting CmdTabbing"); g_processing_tabbing = FALSE; return; } g_processing_tabbing = TRUE; n = 0; g_tabbing_left_position = 0; my_strlcpy(align, "l", 31); end = strdup("\\end{tabbing}"); table = getTexUntil(end, FALSE); diagnostics(4, "Entering CmdTabbing()"); if (g_tabular_display_bitmap) { PrepareDisplayedBitmap("tabbing"); WriteLatexAsBitmapOrEPS("\\begin{tabbing}", table, end, BITMAP); FinishDisplayedBitmap(); } if (g_tabular_display_rtf) { row_start = table; TabbingGetRow(row_start, &this_row, &next_row_start); diagnostics(5, "tabbing_tabbing_tabbing\n%s\ntabbing_tabbing_tabbing", table); if (getTexMode() != MODE_HORIZONTAL) { CmdIndent(INDENT_NONE); startParagraph("tabbing", PARAGRAPH_FIRST); } fprintRTF("\\par\n"); n_total = 0; while (this_row && strlen(this_row) > 0) { show_string(5, this_row, "row"); TabbingGetColumnAlignments(this_row, align, &n, &next_left); if (n > n_total) n_total = n; diagnostics(4, "this row n=%d <%s> left_tab=%d", n, align, g_tabbing_left_position); TabbingWriteRow(this_row, n, n_total, align); g_tabbing_left_position = next_left; row_start = next_row_start; free(this_row); TabbingGetRow(row_start, &this_row, &next_row_start); } } ConvertString(end); free(table); free(end); } void CmdTable(int code) /****************************************************************************** purpose: handles the \begin{table} ... \end{table} codes. The primary use is to properly handle the spacing before and after the table. It is slightly more complicated because the endfloat package suppresses inserting a table in the text, but does it later when the file.ttt is read. g_endfloat_tables is set to true during this phase --- otherwise it is always false (most notably when the endfloat package is not being used.) ******************************************************************************/ { char *location, *table_contents; static char oldalignment; int true_code = code & ~ON; if (code & ON) { location = getBracketParam(); if (location) free(location); CmdEndParagraph(0); oldalignment = getAlignment(); setAlignment(JUSTIFIED); CmdVspace(VSPACE_BIG_SKIP); CmdIndent(INDENT_NONE); g_processing_table = TRUE; if (true_code == TABLE) table_contents = getTexUntil("\\end{table}", TRUE); else table_contents = getTexUntil("\\end{table*}", TRUE); g_table_label = ExtractLabelTag(table_contents); if (g_endfloat_tables) { if (g_endfloat_markers) { setAlignment(CENTERED); startParagraph("endfloat", PARAGRAPH_GENERIC); incrementCounter("endfloattable"); /* two separate counters */ fprintRTF("["); /* one for tables and one for */ ConvertBabelName("TABLENAME"); /* endfloat tables */ fprintRTF(" "); if (g_document_type != FORMAT_ARTICLE && g_document_type != FORMAT_APA) fprintRTF("%d.", getCounter("chapter")); fprintRTF("%d about here]", getCounter("endfloattable")); } } else { startParagraph("table", PARAGRAPH_GENERIC); ConvertString(table_contents); } free(table_contents); if (true_code == TABLE) ConvertString("\\end{table}"); else ConvertString("\\end{table*}"); } else { g_processing_table = FALSE; CmdEndParagraph(0); safe_free(g_table_label); setAlignment(oldalignment); CmdVspace(VSPACE_BIG_SKIP); } } void CmdMultiCol(int code) /****************************************************************************** purpose: handles \multicolumn{n}{format}{content} ******************************************************************************/ { long numCol, i; char *num, *format, *content, *bcontent; num = getBraceParam(); format = getBraceParam(); bcontent = getBraceParam(); content = strdup_noendblanks(bcontent); free(bcontent); diagnostics(4, "CmdMultiCol cols=%s format=<%s> content=<%s>", num, format, content); numCol = atoi(num); free(num); diagnostics(4, "Entering Convert() from CmdMultiCol()"); ConvertString(content); diagnostics(4, "Exiting Convert() from CmdMultiCol()"); for (i = 1; i < numCol; i++) { fprintRTF("\\cell}\n"); fprintRTF("{\\pard\\intbl"); } free(content); free(format); } void CmdHline(int code) { /* cline and hline are already handled by tabular code here we just properly skip the commands */ char *s; if (code == 1) { s = getBraceParam(); free(s); skipSpaces(); } } static void HA_ExtractTemplateAndLines(const char *s, char **thetemplate, char ***thelines, int *nl) { char *p, *ss, *HA_template=NULL; char ** lines; int nlines,i; /* count number of \cr */ ss=(char *)s; nlines = 0; while ( (p=strstr(ss,"\\cr")) ) { nlines++; ss = p + 3; } nlines--; /* since HA_template does not count */ lines = (char **) malloc(nlines * sizeof(char *)); /* extract HA_template */ p = strstr(s,"\\cr"); if (p) { size_t n = p-s+1; HA_template = (char *) malloc((n+1)*sizeof(char)); my_strlcpy(HA_template,s,n); diagnostics(4,"HA_template = '%s'",HA_template); } /* now copy each line into a separate array entry */ ss = p + 3; while (isspace(*ss)) ss++; for (i=0; imax_col) max_col = col; } return max_col; } /* extract the template for the nth column tricky because && indicates that the template should be repeated. Thus t1 & t2 & t3 && t4 & t5 should be interpreted as t1 & t2 & t3 & t4 & t5 & t4 & t5 or & t1 & t2 should be t1 & t2 & t1 & t2 & ... in the first case nrepeat=4 and ncol = 5 second case nrepeat=1 and ncol = 2 */ static void HA_CountColumnsInTemplate(char *HA_template, int *ncol, int *nrepeat) { char *s; int col=1; *nrepeat = 999; s = (char *) HA_template; /* make sure first character is not a '&' */ while (isspace(*s)) s++; if (*s=='&') {*s=' '; *nrepeat = 1; s++;} while ( (s=NextAmpersand(s)) && *s != '\0') { s++; col++; if (*s=='&') {*s=' '; *nrepeat = col; s++;} } *ncol = col; diagnostics(5,"ncolumns = %d, nrepeat = %d", *ncol, *nrepeat); } /* extract the appropriate template for the nth column */ static char * HA_GetCellTemplateN(const char *HA_template, int n, int tcols, int trepeat) { char *s, *next, *cell, *clean_cell; if (n<1) return NULL; /* figure out which column we actually need to extract */ if (n > trepeat) { if (tcols == trepeat) n = trepeat; else n = trepeat + (n - trepeat) % (tcols - trepeat + 1); } s = (char *) HA_template; TabularGetCell(s, &cell, &next); n--; while (n) { free(cell); s = next; TabularGetCell(s, &cell, &next); n--; } clean_cell = strdup_noendblanks(cell); free(cell); return clean_cell; } /* extract the appropriate cell for the nth column */ static char * HA_GetCellN(const char *line, int n) { char *s, *next, *cell; int i; s = (char *) line; for (i=1; i<=n; i++) { TabularGetCell(s, &cell, &next); if (i==n) { char *x = strdup_noendblanks(cell); free(cell); return x; } free(cell); s = next; } return NULL; } /* replace all the #'s in the template with the contents of cell */ static char * HA_ExpandCellWithTemplate(const char *HA_template, const char *cell) { char buffer[500]; char *s, *t, *b, *text; t = (char *) HA_template; b = buffer; /* do nothing if \omit is present */ if ( (s=strstr(cell,"\\omit")) != 0) { text = strdup(s+5); return text; } while (*t != '\0') { if (*t != '#') { *b = *t; b++; } else { s = (char *) cell; while (*s) {*b = *s; b++; s++;} } t++; } *b='\0'; text = strdup(buffer); return text; } /* make guesses about alignment of columns based on presence of \hfil */ static char * HA_AlignFromTemplate(const char *HA_template, int ncols, int tcols, int trepeat) { char *s, *cell, *align; int i; align = (char *) malloc( (ncols+2)*sizeof(char)); align[0] = '*'; align[ncols+1] = '\0'; for (i=1; i<=ncols; i++) { cell = HA_GetCellTemplateN(HA_template, i, tcols, trepeat); align[i] = 'l'; s = cell; while (isspace(*s)) s++; if (strncmp(s,"\\hfil",5) == 0 ) { if (strstr(s+5, "\\hfil") != NULL) align[i] = 'c'; else align[i] = 'r'; } free(cell); } return align; } static void HA_CleanTemplate(char *HA_template) { char *s=HA_template; while ( (s=strstr(s,"\\hfill")) ) {*s++=' ';*s++=' ';*s++=' ';*s++=' ';*s++=' ';*s++=' ';} s=HA_template; while ( (s=strstr(s,"\\hfil")) ) {*s++=' ';*s++=' ';*s++=' ';*s++=' ';*s++=' ';} s=HA_template; while ( (s=strstr(s,"\\qquad")) ) {*s++=' ';*s++=' ';*s++=' ';*s++=' ';*s++=' ';*s++=' ';} s=HA_template; while ( (s=strstr(s,"\\quad")) ) {*s++=' ';*s++=' ';*s++=' ';*s++=' ';*s++=' ';} diagnostics(5,"template='%s'",HA_template); } void CmdHAlign(int code) { char *contents, *HA_template, *align; char **lines; int nlines, ncols,tcols,trepeat,i,line; CmdEndParagraph(0); contents = getBraceParam(); HA_ExtractTemplateAndLines(contents, &HA_template, &lines, &nlines); free(contents); ncols = HA_CountColumnsInHAlign(lines,nlines); HA_CountColumnsInTemplate(HA_template,&tcols,&trepeat); align = HA_AlignFromTemplate(HA_template, ncols,tcols,trepeat); HA_CleanTemplate(HA_template); for (line=0; line. \textIJlig,{\u306**}. \textijlig,{\u307**}. \textiota,{\u953**}. \textkappa,{\u954**}. \textLambda,{\u923**}. \textlambda,{\u955**}. \textless,<. \textminus,{\u8722**}. \textmonetary,\'a4. \textmu,{\u956**}. \textmultiply,\'d7. \textnu,{\u957**}. \textOmega,{\u937**}. \textonesuperior,\'b9. \textordfeminine,\'aa. \textordmasculine,\'ba. \textparagraph,\'b6. \textperiodcentered,{\u8901**}. \textperthousand,\'89. \textPhi,{\u934**}. \textPi,{\u928**}. \textpi,{\u960**}. \textpm,\'b1. \textPsi,{\u936**}. \textpsi,{\u968**}. \textquestiondown,\'bf. \textquotedbl,". \textquotedblleft,\'93. \textquotedblright,\'94. \textquoteleft,\'91. \textquoteright,\'92. \textregistered,\'ae. \textsection,\'a7. \textSigma,{\u931**}. \textsigma,{\u963**}. \texttau,{\u964**}. \textTheta,{\u920**}. \textthreesuperior,\'b3. \texttimes,\'d7. \texttrademark,\'99. \texttwosuperior,\'b2. \textunderscore,_. \textvisiblespace,_. \textXi,{\u926**}. \textzeta,{\u950**}. \times,{\u215**}. \therefore,{\f*Unicode*\u8756**}. \Theta,{\u964**}. \theta,{\u920**}. \to,{\u8594**}. \top,{\u8890**}. \triangle,{\u9653**}. \triangledown,{\u9663**}. \triangleleft,{\u9667**}. \trianglelefteq,{\u8884**}. \triangleq,{\u8796**}. \triangleright,{\u9657**}. \trianglerighteq,{\u8885**}. \twoheadleftarrow,{\u8606**}. \twoheadrightarrow,{\u8608**}. # \ulcorn,{\f*Unicode*\u8988**}. \ulcorner,{\f*Unicode*\u8988**}. \unlhd,{\u8884**}. \unrhd,{\u8885**}. \Uparrow,{\u8657**}. \uparrow,{\u8593**}. \Updownarrow,{\u8661**}. \updownarrow,{\u8597**}. \upharpoonleft,{\u8639**}. \upharpoonright,{\u8638**}. \uplus,{\u8846**}. \Upsilon,{\u933**}. \upsilon,{\u8593**}. \upuparrows,{\u8648**}. \urcorn,{\f*Unicode*\u8989**}. \urcorner,{\f*Unicode*\u8989**}. # \varepsilon,{\u949**}. \varkappa,{\u1008**}. \varnothing,{\u8709**}. \varsigma,{\u962**}. \vartheta,{\u977**}. \varrho,{\u1009**}. \varphi,{\u981**}. \varpi,{\u982**}. \varpropto,{\f*Unicode*\u8733**}. \vartriangle,{\f*Unicode*\u9651**}. \vartriangleleft,{\u8882**}. \vartriangleright,{\u8883**}. \Vdash,{\u8873**}. \vDash,{\u8872**}. \vdash,{\u8866**}. \vdots,{\u8942**}. \vee,{\f*Unicode*\u8744**}. \veebar,{\u8891**}. \Vert,{\f*Unicode*\u8741**}. \vert,|. \vfill,\par \pard . \Vvdash,{\u8874**}. # \wedge,{\f*Unicode*\u8743**}. \wedgeq,{\u8793**}. \wp,{\u8472**}. \wr,{\u8768**}. # \xi,{\u958**}. \Xi,{\u926**}. # \zeta,{\u950**}. # \|,||. # \vernal,{\f*Astro*\u9800**}. \ascnode,{\f*Astro*\u9738**}. \descnode,{\f*Astro*\u9739**}. \fullmoon,{\f*Astro*\u9675**}. \newmoon,{\f*Astro*\u9679**}. \rightmoon,{\f*Astro*\u9789**}. \leftmoon,{\f*Astro*\u9790**}. \astrosun,{\f*Astro*\u9737**}. \mercury,{\f*Astro*\u9791**}. \venus,{\f*Astro*\u9792**}. \earth,{\f*Astro*\u9793**}. \mars,{\f*Astro*\u9794**}. \jupiter,{\f*Astro*\u9795**}. \saturn,{\f*Astro*\u9796**}. \uranus,{\f*Astro*\u9797**}. \neptune,{\f*Astro*\u9798**}. \pluto,{\f*Astro*\u9799**}. \aries,{\f*Astro*\u9800**}. \taurus,{\f*Astro*\u9801**}. \gemini,{\f*Astro*\u9802**}. \cancer,{\f*Astro*\u9803**}. \leo,{\f*Astro*\u9804**}. \virgo,{\f*Astro*\u9805**}. \libra,{\f*Astro*\u9806**}. \scorpio,{\f*Astro*\u9807**}. \sagittarius,{\f*Astro*\u9808**}. \capricornus,{\f*Astro*\u9809**}. \aquarius,{\f*Astro*\u9810**}. \pisces,{\f*Astro*\u9811**}. \conjunction,{\f*Astro*\u9740**}. \opposition,{\f*Astro*\u9741**}. latex2rtf-2.3.18/cfg/usorbian.cfg0000777000175000017500000000101513050672354016767 0ustar wilfriedwilfried# Created using babel.pl from version 3.7 of the Babel system # by Scott Prahl Tue Jul 3 22:26:17 2001 PREFACENAME,Zawod. REFNAME,Referency. ABSTRACTNAME,Abstrakt. BIBNAME,Literatura. CHAPTERNAME,Kapitl. APPENDIXNAME,Dodawki. CONTENTSNAME,Wobsah. LISTFIGURENAME,Zapis wobrazow. LISTTABLENAME,Zapis tabulkow. INDEXNAME,Indeks. FIGURENAME,Wobraz. TABLENAME,Tabulka. PARTNAME,D\'z\v el. ENCLNAME,P\v r\l oha. CCNAME,CC. HEADTONAME,Komu. PAGENAME,Strona. SEENAME,hl.. PROOFNAME,Proof. GLOSSARYNAME,Glossary. KEYWORDS,Key words. latex2rtf-2.3.18/cfg/breton.cfg0000777000175000017500000000112213050672354016435 0ustar wilfriedwilfried# Created using babel.pl from version 3.7 of the Babel system # by Scott Prahl Tue Jul 3 22:26:17 2001 PREFACENAME,Rakskrid. REFNAME,Daveenno\`u. ABSTRACTNAME,Dvierra\~n. BIBNAME,Lennadurezh. CHAPTERNAME,Pennad. APPENDIXNAME,Stagadenn. CONTENTSNAME,Taolenn. LISTFIGURENAME,Listenn ar Figurenno\`u. LISTTABLENAME,Listenn an taolenno\`u. INDEXNAME,Meneger. FIGURENAME,Figurenn. TABLENAME,Taolenn. PARTNAME,Lodenn. ENCLNAME,Diello\`u kevret. CCNAME,Eilskrid da. HEADTONAME,evit. PAGENAME,Pajenn. SEENAME,Gwelout. ALSONAME,Gwelout ivez. PROOFNAME,Proof. GLOSSARYNAME,Glossary. KEYWORDS,Key words. latex2rtf-2.3.18/cfg/greek.cfg0000777000175000017500000000116213050672354016245 0ustar wilfriedwilfriedPREFACENAME,Pr'ologos. REFNAME,Anafor'es. ABSTRACTNAME,Per'ilhyh. BIBNAME,Bibliograf'ia. CHAPTERNAME,Kef'alaio. APPENDIXNAME,Par'arthma. CONTENTSNAME,Perieq'omena. LISTFIGURENAME,Kat'alogos Sqhm'atwn. LISTTABLENAME,Kat'alogos Pin'akwn. INDEXNAME,Euret'hrio. FIGURENAME,Sq'hma. TABLENAME,P'inakas. PARTNAME,M'eros. ENCLNAME,Sunhmm'ena. CCNAME,Koinopo'ihsh. HEADTONAME,Pros. PAGENAME,Sel'ida. SEENAME,bl'epe. ALSONAME,bl'epe ep'ishs. PROOFNAME,Ap'odeixh. GLOSSARYNAME,Glwss'ari. REFNAME,>Anafor`es. INDEXNAME,Eep'ishs. PROOFNAME,>Ap'odeixh. KEYWORDS,Key words. latex2rtf-2.3.18/cfg/galician.cfg0000777000175000017500000000114713050672354016722 0ustar wilfriedwilfried# Created using babel.pl from version 3.7 of the Babel system # by Scott Prahl Tue Jul 3 22:26:17 2001 PREFACENAME,Prefacio. REFNAME,Referencias. ABSTRACTNAME,Resumo. BIBNAME,Bibliograf\'{\i}a. CHAPTERNAME,Cap\'{\i}tulo. APPENDIXNAME,Ap\'endice. CONTENTSNAME,\'Indice Xeral. LISTFIGURENAME,\'Indice de Figuras. LISTTABLENAME,\'Indice de T\'aboas. INDEXNAME,\'Indice de Materias. FIGURENAME,Figura. TABLENAME,T\'aboa. PARTNAME,Parte. ENCLNAME,Adxunto. CCNAME,Copia a. HEADTONAME,A. PAGENAME,P\'axina. SEENAME,v\'exase. ALSONAME,v\'exase tam\'en. PROOFNAME,Demostraci\'on. GLOSSARYNAME,Glosario. KEYWORDS,Key words. latex2rtf-2.3.18/cfg/czech.cfg0000777000175000017500000000112113050672354016237 0ustar wilfriedwilfried# Created using babel.pl from version 3.7 of the Babel system # by Scott Prahl Tue Jul 3 22:26:17 2001 PREFACENAME,P\v redmluva. REFNAME,Reference. ABSTRACTNAME,Abstrakt. BIBNAME,Literatura. CHAPTERNAME,Kapitola. APPENDIXNAME,Dodatek. CONTENTSNAME,Obsah. LISTFIGURENAME,Seznam obr\'azk\r{u}. LISTTABLENAME,Seznam tabulek. INDEXNAME,Index. FIGURENAME,Obr\'azek. TABLENAME,Tabulka. PARTNAME,\v{C}\'ast. ENCLNAME,P\v{r}\'{\i}loha. CCNAME,Na v\v{e}dom\'{\i}:. HEADTONAME,Komu. PAGENAME,Strana. SEENAME,viz. ALSONAME,viz tak\'e. PROOFNAME,D\r{u}kaz. GLOSSARYNAME,Slovn\'{\i}k. KEYWORDS,Key words. latex2rtf-2.3.18/cfg/basque.cfg0000777000175000017500000000112513050672354016427 0ustar wilfriedwilfried# Created using babel.pl from version 3.7 of the Babel system # by Scott Prahl Tue Jul 3 22:26:17 2001 PREFACENAME,Hitzaurrea. REFNAME,Erreferentziak. ABSTRACTNAME,Laburpena. BIBNAME,Bibliografia. CHAPTERNAME,Kapitulua. APPENDIXNAME,Eranskina. CONTENTSNAME,Gaien Aurkibidea. LISTFIGURENAME,Irudien Zerrenda. LISTTABLENAME,Taulen Zerrenda. INDEXNAME,Kontzeptuen Aurkibidea. FIGURENAME,Irudia. TABLENAME,Taula. PARTNAME,Atala. ENCLNAME,Erantsia. CCNAME,Kopia. HEADTONAME,Nori. PAGENAME,Orria. SEENAME,Ikusi. ALSONAME,Ikusi, halaber. PROOFNAME,Frogapena. GLOSSARYNAME,Glosarioa. KEYWORDS,Key words. latex2rtf-2.3.18/cfg/spanish.cfg0000777000175000017500000000115113050672354016613 0ustar wilfriedwilfried# Created using babel.pl from version 3.7 of the Babel system # by Scott Prahl Tue Jul 3 22:26:17 2001 CONTENTSNAME,\'Indice general. TABLENAME,Tabla. PREFACENAME,Prefacio. REFNAME,Referencias. ABSTRACTNAME,Resumen. BIBNAME,Bibliograf\'{\i}a. CHAPTERNAME,Cap\'{\i}tulo. APPENDIXNAME,Ap\'endice. LISTFIGURENAME,\'Indice de figuras. LISTTABLENAME,\'Indice de cuadros. INDEXNAME,\'Indice alfab\'etico. FIGURENAME,Figura. TABLENAME,Cuadro. PARTNAME,Parte. ENCLNAME,Adjunto. CCNAME,Copia a. HEADTONAME,A. PAGENAME,P\'agina. SEENAME,v\'ease. ALSONAME,v\'ease tambi\'en. PROOFNAME,Demostraci\'on. KEYWORDS,Palabras clave:. latex2rtf-2.3.18/cfg/turkish.cfg0000777000175000017500000000111113050672354016633 0ustar wilfriedwilfried# Created using babel.pl from version 3.7 of the Babel system # by Scott Prahl Tue Jul 3 22:26:17 2001 PREFACENAME,\"Ons\"oz. REFNAME,Kaynaklar. ABSTRACTNAME,\"Ozet. BIBNAME,Kaynak\c ca. CHAPTERNAME,B\"ol\"um. APPENDIXNAME,Ek. CONTENTSNAME,\.I\c cindekiler. LISTFIGURENAME,\c Sekil Listesi. LISTTABLENAME,Tablo Listesi. INDEXNAME,Dizin. FIGURENAME,\c Sekil. TABLENAME,Tablo. PARTNAME,K\i s\i m. ENCLNAME,\.Ili\c sik. CCNAME,Di\u ger Al\i c\i lar. HEADTONAME,Al\i c\i. PAGENAME,Sayfa. SEENAME,bkz.. ALSONAME,ayr\i ca bkz.. PROOFNAME,Kan\i t. GLOSSARYNAME,Glossary. KEYWORDS,Key words. latex2rtf-2.3.18/cfg/italian.cfg0000777000175000017500000000113313050672354016567 0ustar wilfriedwilfried# Created using babel.pl from version 3.7 of the Babel system # by Scott Prahl Tue Jul 3 22:26:17 2001 PREFACENAME,Prefazione. REFNAME,Riferimenti bibliografici. ABSTRACTNAME,Sommario. BIBNAME,Bibliografia. CHAPTERNAME,Capitolo. APPENDIXNAME,Appendice. CONTENTSNAME,Indice. LISTFIGURENAME,Elenco delle figure. LISTTABLENAME,Elenco delle tabelle. INDEXNAME,Indice analitico. FIGURENAME,Figura. TABLENAME,Tabella. PARTNAME,Parte. ENCLNAME,Allegati. CCNAME,e~p.~c.. HEADTONAME,Per. PAGENAME,Pag.. SEENAME,vedi. ALSONAME,vedi anche. PROOFNAME,Dimostrazione. GLOSSARYNAME,Glossario. KEYWORDS,Parole chiave. latex2rtf-2.3.18/cfg/russianb.cfg0000777000175000017500000000222213050672354016774 0ustar wilfriedwilfried# Created by Mihail Baikov 4/26/02 PREFACENAME,\CYRV\cyrv\cyre\cyrd\cyre\cyrn\cyri\cyre. REFNAME,\CYRS\cyrs\cyrery\cyrl\cyrk\cyri. ABSTRACTNAME,\CYRR\cyre\cyrz\cyryu\cyrm\cyre. BIBNAME,\CYRL\cyri\cyrt\cyre\cyrr\cyra\cyrt\cyru\cyrr\cyra. CHAPTERNAME,\CYRR\cyra\cyrz\cyrd\cyre\cyrl. APPENDIXNAME,\CYRP\cyrr\cyri\cyrl\cyro\cyrzh\cyre\cyrn\cyri\cyre. CONTENTSNAME,\CYRO\cyrg\cyrl\cyra\cyrv\cyrl\cyre\cyrn\cyri\cyre. LISTFIGURENAME,\CYRS\cyrp\cyri\cyrs\cyro\cyrk \mbox{} \cyrr\cyri\cyrs\cyru\cyrn\cyrk\cyro\cyrv. LISTTABLENAME,\CYRS\cyrp\cyri\cyrs\cyro\cyrk \mbox{} \cyrt\cyra\cyrb\cyrl\cyri\cyrc. INDEXNAME,\CYRU\cyrk\cyra\cyrz\cyra\cyrt\cyre\cyrl\cyrsftsn. FIGURENAME,\CYRR\cyri\cyrs\cyru\cyrn\cyro\cyrk. TABLENAME,\CYRT\cyra\cyrb\cyrl\cyri\cyrc\cyra. PARTNAME,\CYRCH\cyra\cyrs\cyrt\cyrsftsn. ENCLNAME,\cyrz\cyra\cyrk\cyrl. CCNAME,. HEADTONAME,. PAGENAME,\CYRS\cyrt\cyrr\cyra\cyrn\cyri\cyrc\cyra. SEENAME,\cyrs\cyrm\cyro\cyrt\cyrr\cyri. ALSONAME,\cyrs\cyrm\cyro\cyrt\cyrr\cyri \mbox{} \cyrt\cyra\cyrk\cyrzh\cyre. PROOFNAME,\CYRD\cyro\cyrk\cyra\cyrz\cyra\cyrt\cyre\cyrl\cyrsftsn\cyrs\cyrt\cyrv\cyro. GLOSSARYNAME,\CYRS\cyrl\cyro\cyrv\cyra\cyrr\cyrsftsn. KEYWORDS,Key words. latex2rtf-2.3.18/cfg/british.cfg0000777000175000017500000000100313050672354016606 0ustar wilfriedwilfried# Created using babel.pl from version 3.7 of the Babel system # by Scott Prahl Tue Jul 3 22:26:17 2001 PREFACENAME,Preface. REFNAME,References. ABSTRACTNAME,Abstract. BIBNAME,Bibliography. CHAPTERNAME,Chapter. APPENDIXNAME,Appendix. CONTENTSNAME,Contents. LISTFIGURENAME,List of Figures. LISTTABLENAME,List of Tables. INDEXNAME,Index. FIGURENAME,Figure. TABLENAME,Table. PARTNAME,Part. ENCLNAME,encl. CCNAME,cc. HEADTONAME,To. PAGENAME,Page. SEENAME,see. ALSONAME,see also. PROOFNAME,Proof. GLOSSARYNAME,Glossary. latex2rtf-2.3.18/cfg/norsk.cfg0000777000175000017500000000103013050672354016276 0ustar wilfriedwilfried# Created using babel.pl from version 3.7 of the Babel system # by Scott Prahl Tue Jul 3 22:26:17 2001 PREFACENAME,Forord. REFNAME,Referanser. ABSTRACTNAME,Sammendrag. BIBNAME,Bibliografi. CHAPTERNAME,Kapittel. APPENDIXNAME,Tillegg. CONTENTSNAME,Innhold. LISTFIGURENAME,Figurer. LISTTABLENAME,Tabeller. INDEXNAME,Register. FIGURENAME,Figur. TABLENAME,Tabell. PARTNAME,Del. ENCLNAME,Vedlegg. CCNAME,Kopi sendt. HEADTONAME,Til. PAGENAME,Side. SEENAME,Se. ALSONAME,Se ogs\aa{}. PROOFNAME,Bevis. GLOSSARYNAME,Ordliste. KEYWORDS,Key words. latex2rtf-2.3.18/cfg/english.cfg0000777000175000017500000000103013050672354016573 0ustar wilfriedwilfried# Created using babel.pl from version 3.7 of the Babel system # by Scott Prahl Tue Jul 3 22:26:17 2001 PREFACENAME,Preface. REFNAME,References. ABSTRACTNAME,Abstract. BIBNAME,Bibliography. CHAPTERNAME,Chapter. APPENDIXNAME,Appendix. CONTENTSNAME,Contents. LISTFIGURENAME,List of Figures. LISTTABLENAME,List of Tables. INDEXNAME,Index. FIGURENAME,Figure. TABLENAME,Table. PARTNAME,Part. ENCLNAME,encl. CCNAME,cc. HEADTONAME,To. PAGENAME,Page. SEENAME,see. ALSONAME,see also. PROOFNAME,Proof. GLOSSARYNAME,Glossary. KEYWORDS,Key words:. latex2rtf-2.3.18/cfg/slovene.cfg0000777000175000017500000000103113050672354016616 0ustar wilfriedwilfried# Created using babel.pl from version 3.7 of the Babel system # by Scott Prahl Tue Jul 3 22:26:17 2001 PREFACENAME,Predgovor. REFNAME,Literatura. ABSTRACTNAME,Povzetek. BIBNAME,Literatura. CHAPTERNAME,Poglavje. APPENDIXNAME,Dodatek. CONTENTSNAME,Kazalo. LISTFIGURENAME,Slike. LISTTABLENAME,Tabele. INDEXNAME,Stvarno kazalo. FIGURENAME,Slika. TABLENAME,Tabela. PARTNAME,Del. ENCLNAME,Priloge. CCNAME,Kopije. HEADTONAME,Prejme. PAGENAME,Stran. SEENAME,glej. ALSONAME,glej tudi. PROOFNAME,Dokaz. GLOSSARYNAME,Glossary. KEYWORDS,Key words. latex2rtf-2.3.18/cfg/estonian.cfg0000777000175000017500000000102113050672354016762 0ustar wilfriedwilfried# Created using babel.pl from version 3.7 of the Babel system # by Scott Prahl Tue Jul 3 22:26:17 2001 PREFACENAME,Sissejuhatus. REFNAME,Viited. BIBNAME,Kirjandus. CHAPTERNAME,Peat"ukk. APPENDIXNAME,Lisa. CONTENTSNAME,Sisukord. ABSTRACTNAME,Kokkuv~ote. LISTFIGURENAME,Joonised. LISTTABLENAME,Tabelid. INDEXNAME,Indeks. FIGURENAME,Joonis. TABLENAME,Tabel. PARTNAME,Osa. ENCLNAME,Lisa(d). CCNAME,Koopia(d). HEADTONAME,. PAGENAME,Lk.. SEENAME,vt.. ALSONAME,vt. ka. PROOFNAME,Korrektuur. GLOSSARYNAME,S~onastik. KEYWORDS,Key words. latex2rtf-2.3.18/cfg/polish.cfg0000777000175000017500000000112213050672354016442 0ustar wilfriedwilfried# Created using babel.pl from version 3.7 of the Babel system # by Scott Prahl Tue Jul 3 22:26:17 2001 PREFACENAME,Przedmowa. REFNAME,Literatura. ABSTRACTNAME,Streszczenie. BIBNAME,Bibliografia. CHAPTERNAME,Rozdzia\l. APPENDIXNAME,Dodatek. CONTENTSNAME,Spis tre\'sci. LISTFIGURENAME,Spis rysunk\'ow. LISTTABLENAME,Spis tablic. INDEXNAME,Indeks. FIGURENAME,Rysunek. TABLENAME,Tablica. PARTNAME,Cz\eob{}\'s\'c. ENCLNAME,Za\l\aob{}cznik. CCNAME,Kopie:. HEADTONAME,Do. PAGENAME,Strona. SEENAME,Por\'ownaj. ALSONAME,Por\'ownaj tak\.ze. PROOFNAME,Dow\'od. GLOSSARYNAME,Glossary. KEYWORDS,Key words. latex2rtf-2.3.18/cfg/fonts.cfg0000777000175000017500000000173013050672354016302 0ustar wilfriedwilfried# This file defines how LaTeX fonts are translated to fonts in the RTF file. # Each line consists of a LaTeX font name, a comma, the RTF font name, and a period. # # Text after a sharp (#) is ignored to the end of the line. # For repeated LaTeX font names, only the first is used. # Any font in the LaTeX file not mentioned is mapped to the Roman font. # All RTF fonts listed in this file will be in every RTF file header whether used or not. # No spaces before or after the comma are allowed # # The required LaTeX fonts are # Roman (\rm) # Slanted (\sl) # Sans Serif (\sf) # Typewriter (\tt) # # the STIXGeneral font is used for odd math characters that are not # generally present in Unicode fonts. The STIX fonts are available # from # http://www.mozilla.org/projects/mathml/fonts/ # Roman,Times New Roman. Slanted,Arial. Sans Serif,Arial. Typewriter,Courier New. Calligraphic,Zapf Chancery. Unicode,STIXGeneral. Astro,MS Gothic. latex2rtf-2.3.18/cfg/samin.cfg0000777000175000017500000000116313050672354016260 0ustar wilfriedwilfried# Created using babel.pl from version 3.7 of the Babel system # by Scott Prahl Tue Jul 3 22:26:17 2001 PREFACENAME,Ovdas\'atni. REFNAME,\v Cujuhusat. ABSTRACTNAME,\v Coahkk\'aigeassu. BIBNAME,Girjj\'ala\v svuohta. CHAPTERNAME,Kapihttal. APPENDIXNAME,\v Cuovus. CONTENTSNAME,Sisdoallu. LISTFIGURENAME,Govvosat. LISTTABLENAME,Tabeallat. INDEXNAME,Registtar. FIGURENAME,Govus. TABLENAME,Tabealla. PARTNAME,Oassi. ENCLNAME,Mielddus. CCNAME,Kopia s\'addejuvvon. HEADTONAME,Vuost\'aiv\'aldi. PAGENAME,Siidu. SEENAME,geah\v ca. ALSONAME,geah\v ca maidd\'ai. PROOFNAME,Duo\dj{}a\v stus. GLOSSARYNAME,S\'atnelistu. KEYWORDS,Key words. latex2rtf-2.3.18/cfg/french.cfg0000777000175000017500000000117413050672354016420 0ustar wilfriedwilfried# Created using babel.pl from version 3.7 of the Babel system # by Scott Prahl Tue Jul 3 22:26:17 2001 REFNAME,R\'ef\'erences. ABSTRACTNAME,R\'esum\'e. BIBNAME,Bibliographie. PREFACENAME,Pr\'eface. CHAPTERNAME,Chapitre. APPENDIXNAME,Annexe. CONTENTSNAME,Table des mati\`eres. LISTFIGURENAME,Table des figures. LISTTABLENAME,Liste des tableaux. INDEXNAME,Index. FIGURENAME,{\scshape Fig.}. TABLENAME,{\scshape Tab.}. PARTNAME,\protect\@Fpt partie. PAGENAME,page. SEENAME,{\emph{voir}}. ALSONAME,{\emph{voir aussi}}. ENCLNAME,P.~J. . CCNAME,Copie \`a . HEADTONAME,. PROOFNAME,D\'emonstration. GLOSSARYNAME,Glossaire. KEYWORDS,Key words. latex2rtf-2.3.18/cfg/brazil.cfg0000777000175000017500000000115413050672354016434 0ustar wilfriedwilfried# Created using babel.pl from version 3.7 of the Babel system # by Scott Prahl Tue Jul 3 22:26:17 2001 PREFACENAME,Pref\'acio. REFNAME,Refer\^encias. ABSTRACTNAME,Resumo. BIBNAME,Refer\^encias Bibliogr\'aficas. CHAPTERNAME,Cap\'{\i}tulo. APPENDIXNAME,Ap\^endice. CONTENTSNAME,Sum\'ario. LISTFIGURENAME,Lista de Figuras. LISTTABLENAME,Lista de Tabelas. INDEXNAME,\'Indice Remissivo. FIGURENAME,Figura. TABLENAME,Tabela. PARTNAME,Parte. ENCLNAME,Anexo. CCNAME,C\'opia para. HEADTONAME,Para. PAGENAME,P\'agina. SEENAME,veja. ALSONAME,veja tamb\'em. PROOFNAME,Demonstra\c{c}\~ao. GLOSSARYNAME,Glossary. KEYWORDS,Key words. latex2rtf-2.3.18/cfg/welsh.cfg0000777000175000017500000000107013050672354016270 0ustar wilfriedwilfried# Created using babel.pl from version 3.7 of the Babel system # by Scott Prahl Tue Jul 3 22:26:17 2001 PREFACENAME,Rhagair. REFNAME,Cyfeiriadau. ABSTRACTNAME,Crynodeb. BIBNAME,Llyfryddiaeth. CHAPTERNAME,Pennod. APPENDIXNAME,Atodiad. CONTENTSNAME,Cynnwys. LISTFIGURENAME,Rhestr Ddarluniau. LISTTABLENAME,Rhestr Dablau. INDEXNAME,Mynegai. FIGURENAME,Darlun. TABLENAME,Taflen. PARTNAME,Rhan. ENCLNAME,amgae\"edig. CCNAME,cop\"\i au. HEADTONAME,At. PAGENAME,tudalen. SEENAME,gweler. ALSONAME,gweler hefyd. PROOFNAME,Prawf. GLOSSARYNAME,Rhestr termau. KEYWORDS,Key words. latex2rtf-2.3.18/cfg/afrikaans.cfg0000777000175000017500000000107013050672354017105 0ustar wilfriedwilfried# Created using babel.pl from version 3.7 of the Babel system # by Scott Prahl Tue Jul 3 22:26:17 2001 PREFACENAME,Voorwoord. REFNAME,Verwysings. ABSTRACTNAME,Samevatting. BIBNAME,Bibliografie. CHAPTERNAME,Hoofstuk. APPENDIXNAME,Bylae. CONTENTSNAME,Inhoudsopgawe. LISTFIGURENAME,Lys van figure. LISTTABLENAME,Lys van tabelle. INDEXNAME,Inhoud. FIGURENAME,Figuur. TABLENAME,Tabel. PARTNAME,Deel. ENCLNAME,Bylae(n). CCNAME,a.a.. HEADTONAME,Aan. PAGENAME,Bladsy. SEENAME,sien. ALSONAME,sien ook. PROOFNAME,Bewys. GLOSSARYNAME,Verklarende Woordenlys. KEYWORDS,Key words. latex2rtf-2.3.18/cfg/germanb.cfg0000777000175000017500000000113013050672354016556 0ustar wilfriedwilfried# Created using babel.pl from version 3.7 of the Babel system # by Scott Prahl Tue Jul 3 22:26:17 2001 PREFACENAME,Vorwort. REFNAME,Literatur. ABSTRACTNAME,Zusammenfassung. BIBNAME,Literaturverzeichnis. CHAPTERNAME,Kapitel. APPENDIXNAME,Anhang. CONTENTSNAME,Inhaltsverzeichnis. LISTFIGURENAME,Abbildungsverzeichnis. LISTTABLENAME,Tabellenverzeichnis. INDEXNAME,Index. FIGURENAME,Abbildung. TABLENAME,Tabelle. PARTNAME,Teil. ENCLNAME,Anlage(n). CCNAME,Verteiler. HEADTONAME,An. PAGENAME,Seite. SEENAME,siehe. ALSONAME,siehe auch. PROOFNAME,Beweis. GLOSSARYNAME,Glossar. KEYWORDS,Schl\"usselw\"orter. latex2rtf-2.3.18/cfg/serbian.cfg0000777000175000017500000000103613050672354016573 0ustar wilfriedwilfried# Created using babel.pl from version 3.7 of the Babel system # by Scott Prahl Tue Jul 3 22:26:17 2001 PREFACENAME,Predgovor. REFNAME,Literatura. ABSTRACTNAME,Sa\v{z}etak. BIBNAME,Bibliografija. CHAPTERNAME,Glava. APPENDIXNAME,Dodatak. CONTENTSNAME,Sadr\v{z}aj. LISTFIGURENAME,Slike. LISTTABLENAME,Tabele. INDEXNAME,Indeks. FIGURENAME,Slika. TABLENAME,Tabela. PARTNAME,Deo. ENCLNAME,Prilozi. CCNAME,Kopije. HEADTONAME,Prima. PAGENAME,Strana. SEENAME,Vidi. ALSONAME,Vidi tako\dj e. PROOFNAME,Dokaz. GLOSSARYNAME,Glossary. KEYWORDS,Key words. latex2rtf-2.3.18/cfg/lsorbian.cfg0000777000175000017500000000104713050672354016763 0ustar wilfriedwilfried# Created using babel.pl from version 3.7 of the Babel system # by Scott Prahl Tue Jul 3 22:26:17 2001 PREFACENAME,Zawod. REFNAME,Referency. ABSTRACTNAME,Abstrakt. BIBNAME,Literatura. CHAPTERNAME,Kapitl. APPENDIXNAME,Dodawki. CONTENTSNAME,Wop\'simje\'se. LISTFIGURENAME,Zapis wobrazow. LISTTABLENAME,Zapis tabulkow. INDEXNAME,Indeks. FIGURENAME,Wobraz. TABLENAME,Tabulka. PARTNAME,\'Z\v el. ENCLNAME,P\'si\l oga. CCNAME,CC. HEADTONAME,Komu. PAGENAME,Strona. SEENAME,gl.. ALSONAME,gl.~teke. PROOFNAME,Proof. GLOSSARYNAME,Glossary. KEYWORDS,Key words. latex2rtf-2.3.18/cfg/bahasa.cfg0000777000175000017500000000105213050672354016365 0ustar wilfriedwilfried# Created using babel.pl from version 3.7 of the Babel system # by Scott Prahl Tue Jul 3 22:26:17 2001 PREFACENAME,Pendahuluan. REFNAME,Pustaka. ABSTRACTNAME,Ringkasan. BIBNAME,Bibliografi. CHAPTERNAME,Bab. APPENDIXNAME,Lampiran. CONTENTSNAME,Daftar Isi. LISTFIGURENAME,Daftar Gambar. LISTTABLENAME,Daftar Tabel. INDEXNAME,Indeks. FIGURENAME,Gambar. TABLENAME,Tabel. PARTNAME,Bagian. ENCLNAME,Lampiran. CCNAME,cc. HEADTONAME,Kepada. PAGENAME,Halaman. SEENAME,lihat. ALSONAME,lihat juga. PROOFNAME,Bukti. GLOSSARYNAME,Daftar Istilah. KEYWORDS,Key words. latex2rtf-2.3.18/cfg/croatian.cfg0000777000175000017500000000105613050672354016752 0ustar wilfriedwilfried# Created using babel.pl from version 3.7 of the Babel system # by Scott Prahl Tue Jul 3 22:26:17 2001 PREFACENAME,Predgovor. REFNAME,Literatura. ABSTRACTNAME,Sa\v{z}etak. BIBNAME,Bibliografija. CHAPTERNAME,Poglavlje. APPENDIXNAME,Dodatak. CONTENTSNAME,Sadr\v{z}aj. LISTFIGURENAME,Popis slika. LISTTABLENAME,Popis tablica. INDEXNAME,Indeks. FIGURENAME,Slika. TABLENAME,Tablica. PARTNAME,Dio. ENCLNAME,Prilozi. CCNAME,Kopije. HEADTONAME,Prima. PAGENAME,Stranica. SEENAME,Vidjeti. ALSONAME,Vidjeti i. PROOFNAME,Dokaz. GLOSSARYNAME,Kazalo. KEYWORDS,Key words. latex2rtf-2.3.18/cfg/styleAPA.cfg0000777000175000017500000001373213050672354016640 0ustar wilfriedwilfried# style.cfg # # This file is used for translating LaTeX commands to stylesheet styles # # The format is separated by commas # (Name),(RTF Commands),(stylesheet only). # where (RTF Commands) are inserted in the stylesheet as well as in the text, # whereas (stylesheet only) is only inserted in the stylesheet definition. # # The RTF style commands \s### are for setting formatting # this includes indenting, justification/centering, spacing before and after, # font choice, point size, bold, italics, color # # To select a specific font use *fontname*. Make sure that the fontname is # listed in the fonts configuration file fonts.cfg. # # Numbering of the styles and character styles is arbitary, but each style # should have a unique number # Normal, 0,0,\s0\qj\widctlpar\f*Roman*\fs*DefaultFontSize*,\snext0 Normal. Def_Font, 0,0,\cs10,\additive\ssemihidden Default Paragraph Font. part, 0,0,\s1\qc\sb240\sa120\keepn\f*Roman*\b\fs40,\sbasedon0\snext0 Part. chapter, 0,0,\s2\ql\sb240\sa120\keepn\f*Roman*\b\fs40,\sbasedon0\snext0 heading 1. section, 0,0,\s3\qc\sb240\sa120\keepn\f*Roman*\b\fs32,\sbasedon0\snext0 heading 2. subsection, 0,0,\s4\ql\sb240\sa120\keepn\f*Roman*\i\fs32,\sbasedon0\snext0 heading 3. subsubsection, 0,0,\s5\ql\fi425\keepn\f*Roman*\fs24,\sbasedon0\snext0 heading 4. paragraph, 0,0,\s6\ql\sb240\sa120\keepn\f*Roman*\b\fs24,\sbasedon0\snext0 heading 5. subparagraph, 0,0,\s7\ql\sb240\sa120\keepn\f*Roman*\b\fs24,\sbasedon0\snext0 heading 6. rightpar, 0,0,\s8\qr\sb120\sa120\keep\widctlpar\f*Roman*,\sbasedon0\snext8 rightpar. centerpar, 0,0,\s9\qc\sb120\sa120\keep\widctlpar\f*Roman*,\sbasedon0\snext9 centerpar. leftpar, 0,0,\s10\ql\sb120\sa120\keep\widctlpar\f*Roman*,\sbasedon0\snext10 leftpar. # equation, 0,0,\s11\ql\sb120\sa120\keep\widctlpar\f*Roman*,\sbasedon0\snext0 equation. equationNum, 0,0,\s12\ql\sb120\sa120\keep\widctlpar\f*Roman*,\sbasedon0\snext0 equationNum. equationAlign, 0,0,\s13\ql\sb120\sa120\keep\widctlpar\f*Roman*,\sbasedon0\snext0 equationAlign. equationAlignNum, 0,0,\s14\ql\sb120\sa120\keep\widctlpar\f*Roman*,\sbasedon0\snext0 equationAlignNum. equationArray, 0,0,\s15\ql\sb120\sa120\keep\widctlpar\f*Roman*,\sbasedon0\snext0 equationArray. equationArrayNum, 0,0,\s16\ql\sb120\sa120\keep\widctlpar\f*Roman*,\sbasedon0\snext0 equationArrayNum. theorem, 0,0,\s17\ql\sb120\sa120\keep\widctlpar\f*Roman*\fs*CurrentFontSize*,\sbasedon0\snext0 theorem. # bitmapCenter, 0,0,\s18\ql\sb120\sa120\keep\widctlpar\f*Roman*,\sbasedon0\snext0 bitmapCenter. # title, 0,0,\s20\qc\sb240\sa240\b\f*Roman*\fs36,\sbasedon0\snext21 Title. author, 0,0,\s21\qc\sa120\f*Roman*\fs*DefaultFontSize*,\sbasedon0\snext0 author. footer, 0,0,\s22\ql\tqc\tx4536\tqr\tx9072\f*Roman*\fs20,\sbasedon0\snext22 footer. header, 0,0,\s23\ql\tqc\tx4536\tqr\tx9072\f*Roman*\fs20,\sbasedon0\snext23 header. # caption, 0,0,\s30\ql\sb120\sa120\keep\widctlpar\f*Roman*,\sbasedon0\snext0 caption. figure, 0,0,\s31\qc\sb120\sa0\keep\widctlpar\f*Roman*\fs*CurrentFontSize*,\sbasedon0\snext0 Figure. table, 0,0,\s32\qc\sb120\sa0\keep\widctlpar\f*Roman*\fs*CurrentFontSize*,\sbasedon0\snext32 Table. tabular, 0,0,\s33\qc\sb120\sa0\keep\widctlpar\f*Roman*\fs*CurrentFontSize*,\sbasedon0\snext33 Tabular. tabbing, 0,0,\s34\qc\sb120\sa0\keep\widctlpar\f*Roman*\fs*CurrentFontSize*,\sbasedon0\snext34 Tabbing. # quote, 0,0,\s35\qj\li1024\ri1024\fi340\widctlpar\f*Roman*\fs*CurrentFontSize*,\sbasedon0\snext35 Quote. verbatim, 0,0,\s38\ql\widctlpar\f*Typewriter*\fs*DefaultFontSize*,\snext38 verbatim. item, 0,0,\s46\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f*Roman*\fs*CurrentFontSize*,\sbasedon0\snext46 List. list, 0,0,\s47\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f*Roman*\fs*CurrentFontSize*,\sbasedon0\snext47 List 1. # latex picture, 0,0,\s50\qc\sb120\sa120\keep\widctlpar\f*Roman*,\sbasedon0\snext0 latex picture. subfigure, 0,0,\s51\qc\sb120\sa120\keep\widctlpar\f*Roman*,\sbasedon0\snext0 subfigure. # bibliography, 0,0,\s61\ql\sb240\sa120\keepn\f*Roman*\b\fs32,\sbasedon0\snext62 bibheading. bibitem, 0,0,\s62\ql\fi-567\li567\sb0\sa0\f*Roman*\fs20,\sbasedon0\snext62 bibitem. endnotes, 0,0,\s64\ql\fi-283\li283\lin283\sb0\sa120\widctlpar\tql\tx283\f*Roman*\fs*CurrentFontSize*,\sbasedon0\snext64 endnotes. footnote text, 0,0,\s65\ql\fi-113\li397\lin397\f*Roman*\fs*DefaultFontSize*,\sbasedon0\snext65 footnote text. endnote text, 0,0,\s66\qj\fi-170\li454\lin454\f*Roman*\fs*DefaultFontSize*,\sbasedon0\snext66 endnote text. footnote reference, 0,0,\cs62\super,\additive\sbasedon10 footnote reference. endnote reference, 0,0,\cs63\super,\additive\sbasedon10 endnote reference. # # acronym format.. work in progress... acronym, 0,0,\s67\ql\sb60\sa60\keepn\f*Roman*\fs*DefaultFontSize*,\sbasedon0\snext67 acronym. # abstract_title, 0,0,\s70\qc\sa120\b\f*Roman*\fs*DefaultFontSize*,\sbasedon0\snext71 abstract title. abstract, 0,0,\s71\qj\li1024\ri1024\fi340\widctlpar\f*Roman*\fs*DefaultFontSize*,\sbasedon0\snext0 abstract. # contents, 0,0,\s80\ql\sb240\sa120\keepn\f*Roman*\b\fs*CurrentFontSize*,\sbasedon0\snext0 contents_heading. contents_chapter, 0,0,\s81\ql\li425\tqr\tldot\tx8222\sb240\sa60\keepn\f*Roman*\fs*DefaultFontSize*\b,\sbasedon0\snext82 toc 1. contents_section, 0,0,\s82\ql\li512\tqr\tldot\tx8222\sb60\sa60\keepn\f*Roman*\fs*DefaultFontSize*,\sbasedon0\snext83 toc 2. contents_subsection, 0,0,\s83\ql\li1024\tqr\tldot\tx8222\sb60\sa60\keepn\f*Roman*\fs*DefaultFontSize*,\sbasedon0\snext84 toc 3. contents_subsubsection, 0,0,\s84\ql\li1536\tqr\tldot\tx8222\sb60\sa60\keepn\f*Roman*\fs*DefaultFontSize*,\sbasedon0\snext85 toc 4. contents_paragraph, 0,0,\s85\ql\li2048\tqr\tldot\tx8222\sb60\sa60\keepn\f*Roman*\fs*DefaultFontSize*,\sbasedon0\snext86 toc 5. contents_subparagraph, 0,0,\s86\ql\li2560\tqr\tldot\tx8222\sb60\sa60\keepn\f*Roman*\fs*DefaultFontSize*,\sbasedon0\snext86 toc 6. latex2rtf-2.3.18/cfg/magyar.cfg0000777000175000017500000000122513050672354016430 0ustar wilfriedwilfried# Created using babel.pl from version 3.7 of the Babel system # by Scott Prahl Tue Jul 3 22:26:17 2001 PREFACENAME,El\H osz\'o. REFNAME,Hivatkoz\'asok. ABSTRACTNAME,Kivonat. BIBNAME,Irodalomjegyz\'ek. CHAPTERNAME,fejezet. APPENDIXNAME,F\"uggel\'ek. CONTENTSNAME,Tartalomjegyz\'ek. LISTFIGURENAME,\'Abr\'ak jegyz\'eke. LISTTABLENAME,T\'abl\'azatok jegyz\'eke. INDEXNAME,T\'argymutat\'o. FIGURENAME,\'abra. TABLENAME,t\'abl\'azat. PARTNAME,r\'esz. ENCLNAME,Mell\'eklet. CCNAME,K\"orlev\'el--c\'\i mzettek. HEADTONAME,C\'\i mzett. PAGENAME,oldal. SEENAME,l\'asd. ALSONAME,l\'asd m\'eg. PROOFNAME,Bizony\'\i t\'as. GLOSSARYNAME,Sz\'ojegyz\'ek. KEYWORDS,Key words. latex2rtf-2.3.18/cfg/latin.cfg0000777000175000017500000000114113050672354016254 0ustar wilfriedwilfried# Created using babel.pl from version 3.7 of the Babel system # by Scott Prahl Tue Jul 3 22:26:17 2001 PREFACENAME,Pr{\ae}fatio. REFNAME,Conspectus librorum. ABSTRACTNAME,Summarium. BIBNAME,Conspectus librorum. CHAPTERNAME,Caput. APPENDIXNAME,Additamentum. CONTENTSNAME,Index. LISTFIGURENAME,Conspectus descriptionum. LISTTABLENAME,Conspectus tabularum. INDEXNAME,Index rerum notabilium. FIGURENAME,Descriptio. TABLENAME,Tabula. PARTNAME,Pars. ENCLNAME,Adduntur. CCNAME,Exemplar. HEADTONAME,. PAGENAME,Charta. SEENAME,cfr.. ALSONAME,cfr.. PROOFNAME,Demonstratio. GLOSSARYNAME,Glossarium. KEYWORDS,Key words. latex2rtf-2.3.18/definitions.h0000777000175000017500000000144013050672360016410 0ustar wilfriedwilfriedint maybeDefinition(char * s, size_t n); int existsDefinition(char * s); void newDefinition(char *name, char *opt_param, char *def, int params); void renewDefinition(char * name, char *opt_param, char * def, int params); char * expandDefinition(int thedef); int maybeEnvironment(char * s, size_t n); int existsEnvironment(char * s); void newEnvironment(char *name, char *opt_param, char *begdef, char *enddef, int params); void renewEnvironment(char *name, char *opt_param, char *begdef, char *enddef, int params); char * expandEnvironment(int thedef, int starting); void newTheorem(char *name, char *caption, char *numbered_like, char *within); int existsTheorem(char * s); char *expandTheorem(int i, char *option); void resetTheoremCounter(char *unit); latex2rtf-2.3.18/labels.h0000777000175000017500000000061413050672360015341 0ustar wilfriedwilfried#ifndef _LABEL_H_INCLUDED #define _LABEL_H_INCLUDED 1 enum { LABEL_NEW = 0, LABEL_UNDONEW } ; typedef struct _labelElem { char *labelName; char *labelDef; } labelElem; labelElem *getLabel(char *name); char *getLabelDefinition(char *name); char *getLabelSection(char *name); char *getLabelPage(char *name); char *getLabelNameref(char *name); void CmdNewLabel(int code); #endif latex2rtf-2.3.18/vertical.h0000777000175000017500000000272513050672360015715 0ustar wilfriedwilfried#define PARAGRAPH_FIRST 1 #define PARAGRAPH_GENERIC 2 #define PARAGRAPH_SECTION_TITLE 3 #define PARAGRAPH_EQUATION 4 #define PARAGRAPH_SLASHSLASH 5 #define PARAGRAPH_LIST 6 #define PARAGRAPH_ENVIRONMENT 7 #define INDENT_NONE 1 #define INDENT_INHIBIT 2 #define INDENT_USUAL 3 #define MODE_INTERNAL_VERTICAL 1 #define MODE_HORIZONTAL 2 #define MODE_RESTRICTED_HORIZONTAL 3 #define MODE_MATH 4 #define MODE_DISPLAYMATH 5 #define MODE_VERTICAL 6 extern char TexModeName[7][25]; #define VSPACE_VSPACE -1 #define VSPACE_VSKIP 0 #define VSPACE_SMALL_SKIP 1 #define VSPACE_MEDIUM_SKIP 2 #define VSPACE_BIG_SKIP 3 #define LINE_SPACING_SINGLE 240 #define LINE_SPACING_ONE_AND_A_HALF 360 #define LINE_SPACING_DOUBLE 480 void CmdBeginEnd(int code); void CmdEndParagraph(int code); void CmdVspace(int code); void CmdLineSpacing(int code); void CmdSpacingEnviron(int code); void startParagraph(const char *style, int indenting); void CmdIndent(int code); void CmdNewPage(int code); void CmdAlign(int code); void CmdHfill(int code); void setLeftMarginIndent(int indent); void setRightMarginIndent(int indent); int getLeftMarginIndent(void); int getRightMarginIndent(void); void setAlignment(int align); int getAlignment(void); int getTexMode(void); void setTexMode(int mode); void changeTexMode(int mode); void setVspace(int space); int getVspace(void); latex2rtf-2.3.18/rtf.h0000777000175000017500000000103713050672360014672 0ustar wilfriedwilfried#ifndef _INCLUDED_RTF_H #define _INCLUDED_RTF_H 1 #include "labels.h" void referenceBookmark(/* char *post, */ char *type, char *signet, char *text, referenceGetter *getRef); void pageBookmark(/* char *post, */ char *type, char *signet /* , char *text, referenceGetter *getRef */); void InsertReference(char *text, referenceGetter *getRef); void emitBookmark(char *extra, char *presignet,char *signet,char *text); #endif latex2rtf-2.3.18/utf8_support.h0000777000175000017500000000043513256466465016601 0ustar wilfriedwilfried#ifndef _UTF8_SUPPORT_H_INCLUDED #define _UTF8_SUPPORT_H_INCLUDED 1 uint16_t getUtf8SequenceInitialValue (uint8_t byte); uint16_t getUtf8SequenceLength (uint8_t byte); uint16_t updateUf8Sequence (uint16_t value, uint8_t byte); void putRtfUtf8StrEscaped(const char * string); #endif latex2rtf-2.3.18/proof.h0000777000175000017500000000013113256466534015232 0ustar wilfriedwilfried#ifndef _PROOF_H_INCLUDED #define _PROOF_H_INCLUDED 1 void CmdProof (int code); #endif latex2rtf-2.3.18/xrefs.h0000777000175000017500000001060413050672360015226 0ustar wilfriedwilfried#ifndef _INCLUDED_XREFS_H #define _INCLUDED_XREFS_H 1 #define FOOTNOTE 1 #define FOOTNOTE_TEXT 2 #define FOOTNOTE_THANKS 3 #define ENDNOTE 4 #define ENDNOTE_TEXT 5 #define LABEL_LABEL 1 #define LABEL_HYPERREF 2 #define LABEL_REF 3 #define LABEL_HYPERCITE 4 #define LABEL_CITE 5 #define LABEL_HYPERPAGEREF 6 #define LABEL_PAGEREF 7 #define LABEL_HTMLADDNORMALREF 8 #define LABEL_HTMLREF 9 #define LABEL_EQREF 10 #define LABEL_VREF 11 #define LABEL_HREF 12 #define LABEL_URL 13 #define LABEL_NO_LINK_URL 14 #define LABEL_BASE_URL 15 #define LABEL_URLSTYLE 16 #define LABEL_NAMEREF 17 #define LABEL_URL_HYPER 18 #define BIBSTYLE_STANDARD 1 #define BIBSTYLE_APALIKE 2 #define BIBSTYLE_APACITE 3 #define BIBSTYLE_NATBIB 4 #define BIBSTYLE_AUTHORDATE 5 #define BIBSTYLE_HARVARD 6 #define CITE_CITE 1 #define CITE_FULL 2 #define CITE_SHORT 3 #define CITE_CITE_NP 4 #define CITE_FULL_NP 5 #define CITE_SHORT_NP 6 #define CITE_CITE_A 7 #define CITE_FULL_A 8 #define CITE_SHORT_A 9 #define CITE_CITE_AUTHOR 10 #define CITE_FULL_AUTHOR 11 #define CITE_SHORT_AUTHOR 12 #define CITE_YEAR 13 #define CITE_YEAR_NP 14 #define CITE_APA_CITE_YEAR 201 #define CITE_APA_CITE_METASTAR 202 #define CITE_APA_CITE_A_TITLE 203 #define CITE_APA_CITE_B_TITLE 204 #define CITE_APA_CITE_INSERT 205 #define CITE_APA_YMD 206 #define CITE_APA_REF_A_TITLE 207 #define CITE_APA_REF_B_TITLE 208 #define CITE_APA_JVNP 209 #define CITE_APA_REF_YEAR 210 #define CITE_APA_ADD_PUB 211 #define CITE_PRINT_CARDINAL 212 #define CITE_PRINT_BACK_REFS 213 #define CITE_APA_ADD_PUB_EQ_AUTHOR 214 #define CITE_APA_REF_A_E_TITLE 215 #define CITE_APA_MONTH 216 #define CITE_APA_B_VOL_ED_TR 217 #define CITE_APA_ADD_INST 218 #define CITE_APA_HOW 219 #define CITE_APA_ORIG_YEAR_NOTE 220 #define CITE_APA_REF_NOTE 221 #define CITE_APA_REF_B_E_TITLE 223 #define CITE_APA_ORIG_JOUR 224 #define CITE_APA_B_VOL_ED_TR_PGS 225 #define CITE_APA_UNSKIP 226 #define CITE_PRINT_ORDINAL 227 #define CITE_T 16 #define CITE_T_STAR 17 #define CITE_P 18 #define CITE_P_STAR 19 #define CITE_ALT 20 #define CITE_ALP 21 #define CITE_ALT_STAR 22 #define CITE_ALP_STAR 23 #define CITE_TEXT 24 #define CITE_AUTHOR 25 #define CITE_AUTHOR_STAR 26 #define CITE_YEAR_P 27 #define CITE_T_CAP 128 #define CITE_P_CAP 129 #define CITE_ALT_CAP 130 #define CITE_ALP_CAP 131 #define CITE_AUTHOR_CAP 132 #define CITE_AS_NOUN 28 #define CITE_POSSESSIVE 29 #define CITE_AFFIXED 30 #define CITE_YEAR_STAR 31 #define CITE_HARVARD_ITEM 32 #define CITE_HARVARD_YEAR_LEFT 33 #define CITE_HARVARD_YEAR_RIGHT 34 #define CITE_NAME 35 #define CITE_HARVARD_AND 36 #define LIST_OF_FIGURES 1 #define LIST_OF_TABLES 2 #define TABLE_OF_CONTENTS 3 void InitializeBibliography(void); void CmdTheEndNotes(int code); void CmdFootNote(int code); void CmdLabel(int code); void CmdNoCite(int code); void CmdBibliographyStyle(int code); void CmdBibStyle(int code); void CmdBibliography(int code); void CmdThebibliography(int code); void CmdBibitem(int code); void CmdNewblock(int code); void CmdIndex(int code); void CmdPrintIndex(int code); void CmdHtml(int code); void InsertBookmark(char *name, char *text); void InsertContentMark(char marker, char *s1, char *s2, char *s3); void CmdCite(int code); void CmdHarvardCite(int code); void CmdBCAY(int code); void CmdApaCite(int code); void set_longnamesfirst(void); void set_bibpunct_style_super(void); void set_bibpunct_style_number(void); void set_bibpunct_style_separator(char *s); void set_bibpunct_style_paren(char *open, char *close); void set_sorted_citations(void); void set_compressed_citations(void); void CmdCiteName(int code); void CmdNumberLine(int code); void CmdContentsLine(int code); void CmdListOf(int code); void CmdHarvard(int code); void CmdNatbibCite(int code); void CmdBibpunct(int code); void CmdBibEntry(int code); void CmdNatexlab(int code); enum { BIBCITE_TOKEN = 0, NEWLABEL_TOKEN }; enum { SCANAUX_NUMBER = 0, SCANAUX_SECT }; #endif latex2rtf-2.3.18/acronyms.h0000777000175000017500000000146313050672360015735 0ustar wilfriedwilfried#ifndef _ACRONYM_INCLUDED #define _ACRONYM_INCLUDED 1 enum { ACRONYM_NEWACRO = 1, ACRONYM_NEWACROPLURAL, ACRONYM_ACRO, ACRONYM_ACROPLURAL, ACRONYM_ACRODEF, ACRONYM_ACRODEFPLURAL }; enum { ACRONYM_AC = 1, ACRONYM_ACL, ACRONYM_ACS, ACRONYM_ACF, ACRONYM_ACFI, ACRONYM_IGNORE = 0x0ff, ACRONYM_PLURAL = 0x100, ACRONYM_STAR = 0x200, ACRONYM_USED = 0x400 }; extern int acroPrintWithPage; extern int acroPrintOnlyUsed; extern char *acronymAux[]; void UsePackageAcronym(char *options); void CmdBeginAcronym(int code); void CmdAcrodef(int code); void CmdAcroExtra(int code); void CmdAc(int code); void CmdAcResetAll(int code); void CmdAcUsed(int code); void CmdAC(int code); int acronymHint(int maxWidth); extern CommandArray acronymCommands[]; #endif latex2rtf-2.3.18/mygetopt.h0000777000175000017500000000010313050672360015740 0ustar wilfriedwilfriedint my_getopt(int argc, char **argv, char *optstring); latex2rtf-2.3.18/biblio.c0000777000175000017500000001172413050672354015341 0ustar wilfriedwilfried/* Generalised bibliography handling Copyright (C) 1995-2002 The Free Software Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. This file is available from http://sourceforge.net/projects/latex2rtf/ Authors: 1995 Fernando Dorner, Andreas Granzer, Freidrich Polzer, Gerhard Trisko 1995-1997 Ralf Schlatterbeck 1998-2000 Georg Lehner 2001-2002 Scott Prahl */ #include #include #include #include "main.h" #include "utils.h" #include "parser.h" #include "auxfile.h" #include "biblio.h" /* * ********************************************* * A try at unifying the citation infrastructure * ********************************************* */ static biblioElem *biblioTable = NULL; static int biblioCount = 0; static biblioElem *newBiblio(char *newKey) { biblioElem *result = (biblioElem *)realloc(biblioTable, sizeof(biblioElem) * (biblioCount+1)); if (NULL != result) { biblioTable = result; result = &result[biblioCount++]; result->biblioKey = newKey; result->biblioN = NULL; result->biblioFull = NULL; result->biblioAbbr = NULL; result->biblioYear = NULL; } return result; } static void printTable(void) { #ifdef VERBOSE_BIBLIO int i; for (i=0; i< biblioCount; i++) { biblioElem *p = &biblioTable[i]; diagnostics(WARNING,"biblioTable[%d]",i); diagnostics(WARNING,"%s %s %s %s %s %d", p->biblioKey, p->biblioN, p->biblioFull, p->biblioAbbr, p->biblioYear, p->biblioType); } #endif } biblioElem *getBiblio(char *key) { int i; LoadAuxFile(); /* load auxfile if not already loaded */ for (i=0; i< biblioCount; i++) { if (streq(biblioTable[i].biblioKey,key)) { return &biblioTable[i]; } } return NULL; } /* for normal bibliographic references: */ /* \bibcite{key}{ref} */ /* returns ref */ char *getBiblioRef(char *key) { biblioElem *result = getBiblio(key); if (result != NULL) { return strdup(result->biblioN); } return NULL; } /* for extended bibliographic references: */ /* \bibcite{key}{{first}{}{}...} */ /* returns first */ char *getBiblioFirst(char *key) { biblioElem *result = getBiblio(key); if (result != NULL) { char *ref = strdup(result->biblioN); char *res = NULL; if (NULL != ref) { PushSource(NULL,ref); res = getBraceParam(); PopSource(); } safe_free(ref); return res; } return NULL; } biblioElem *newBibCite(char *cite, char *tag) { biblioElem *newCite = newBiblio(cite); if (NULL != newCite) { newCite->biblioN = tag; newCite->biblioType = BIBLIO_BIBCITE; printTable(); } return newCite; } biblioElem *newHarvardCite(char *cite,char *full,char* abbr,char *year) { biblioElem *newCite = newBiblio(cite); if (NULL != newCite) { newCite->biblioFull = full; newCite->biblioAbbr = abbr; newCite->biblioYear = year; newCite->biblioType = BIBLIO_HARVARD; } return newCite; } biblioElem *newNatBibCite(char *cite,char *full,char* abbr,char *year,char *n) { biblioElem *newCite = newBiblio(cite); if (NULL != newCite) { newCite->biblioFull = full; newCite->biblioAbbr = abbr; newCite->biblioYear = year; newCite->biblioN = n; newCite->biblioType = BIBLIO_NATBIB; } return newCite; } /* * Interface to the AUX file parser */ /* \bibcite{rfc2328}{18} */ void CmdBibCite(int code) { char *p1 = getBraceParam(); char *p2 = getBraceParam(); if (NULL == newBibCite(p1,p2)) { diagnostics(WARNING,"memory exhausted for \\bibcite{%s}{%s}",p1,p2); free(p1); free(p2); } } /* \harvardcite{latex}{Lamport}{Lamport}{1986} */ void CmdAuxHarvardCite(int code) { char *key = getBraceParam(); char *full = getBraceParam(); char *abbr = getBraceParam(); char *year = getBraceParam(); if (NULL == newHarvardCite(key,full,abbr,year)) { diagnostics(ERROR,"Memory overflow defining \\harvardcite(%s)",key); } } latex2rtf-2.3.18/HACKING0000777000175000017500000001101213050672360014707 0ustar wilfriedwilfriedHACKING latex2rtf This document is intended to give a broad overview of how latex2rtf operates. It is also intended to explain why somethings are the way that they are. The fundamental problem of latex2rtf is that LaTeX is a sophisticated set of macros that overlay the complete programming language of TeX. RTF is a very limited mark-up language for describing what text should look like. In principle, one could use the entire TeX engine to interpret the source latex file and then capture the characters as they are output at the end of TeX process. Unfortunately, this just produces a character stream without preserving any of the document structure. To avoid this loss, latex2rtf tries to directly translate as many of the high-level latex macro instructions as it can. Thus, LaTeX macros are not expanded into a stream of TeX macros, instead each LaTeX command is converted into a bunch of RTF commands. One important practical consequence is that a command in a LaTeX .sty file that you are using will not automatically supported. Someone, at some time, must have written specific code to translate the command in the style file. The central problem of latex2rtf from a programmer's point-of-view is that latex2rtf is a one-pass converter whose lexer and parser are all mixed together. This was inherited from the original implementation which was just a student project. I have only made this problem worse over the years. ************ OVERALL STRUCTURE The translator is structured like this (from main.c): static void ConvertWholeDocument(void) { ĘĘĘĘConvertLatexPreamble(); ĘĘĘĘWriteRtfHeader(); ĘĘĘĘpreParse(&body, &sec_head, &label); ĘĘĘĘConvertString(body); ĘĘĘĘwhile (strcmp(sec_head,"\\end{document}")!=0) { ĘĘĘĘĘĘĘĘpreParse(&body, &sec_head2, &g_section_label); ĘĘĘĘĘĘĘĘConvertString(sec_head); ĘĘĘĘĘĘĘĘConvertString(body); ĘĘĘĘĘĘĘĘsec_head = sec_head2; ĘĘĘĘ} } The LaTeX preamble is read and parsed. ĘThe RTF header is emitted. ĘThen each section is processed one at a time. This is important because RTF requires that the document be specified pretty completely before anything else happens: void WriteRtfHeader(void) { fprintRTF("{\\rtf1\\ansi\\uc1\\deff%d\\deflang1024\n", DefaultFontFamily()); WriteFontHeader(); WriteColorTable(); WriteStyleHeader(); WriteInfo(); WriteHeadFoot(); WritePageSize(); } ConvertString() calls Convert() which basically looks at a character and translates it the its RTF equivalent. ĘIf the character is the start of a LaTeX command then the command is looked up in the tables at the start of commands.c and the proper subroutine is called to handle the details. The function preParse() is a horrible hack. It was introduced so that cross references could be properly placed in RTF. For example, \label{thisSection} can occur nearly anywhere in a section. To place the cross reference properly in RTF, it is necessary to place the RTF tags at the point where the section number is emitted. So preParse() essentially slurps an entire section and then converts one section at a time to RTF. The text returned by preParse() has all the TeX comments removed, line-endings normalized, and tabs converted to spaces. User-defined macros are also expanded. preParse() is somewhat fragile. Don't look at it cross-eyed or it will fail. ************ IMAGES RTF has very limited support for images. The basic idea is that latex2rtf converts all images to a bitmap (largely using other command-line utilities) and then inserts the bitmap into the RTF stream. ************ EQUATIONS Equations can be handled in three ways at the moment. First, they can be converted to images and inserted as above. Second, they can be converted using Word's quirky FIELD commands. Finally, some attempt can be made to make the conversion without either of the above, but the results are only satisfactory for the very simplest of equations. ************ TABLES The primary difficulty with converting tables is that LaTeX automatically makes the columns the correct width. There is no facility for doing this in RTF and so the column widths must be estimated. Currently, the widths of all columns are just made equal to one another. ************ FIELDS Word fields are problematic and do not work well with any other editor. ************ CHARACTERS TeX existed long before Unicode or any standard character set beyond the lower 128 ASCII characters. RTF is also old and did not add support for unicode until well after latex2rtf was started. Consequently RTF support for unicode characters is hit-or-miss. latex2rtf-2.3.18/auxfile.h0000777000175000017500000000035413050672360015535 0ustar wilfriedwilfried#ifndef _AUX_H_INCLUDED #define _AUX_H_INCLUDED 1 /* * open and read an auxiliary file. * filter lines which start with the * macros contained in char *macros[] * and send them to ConvertString() */ void LoadAuxFile(void); #endif latex2rtf-2.3.18/preparse.c0000777000175000017500000005147113050672355015726 0ustar wilfriedwilfried/* preparser.c - parser for LaTeX code Copyright (C) 2007 The Free Software Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. This file is available from http://sourceforge.net/projects/latex2rtf/ Authors: 2007 Scott Prahl */ #include #include #include #include #include "preparse.h" #include "cfg.h" #include "main.h" #include "utils.h" #include "definitions.h" #include "parser.h" #include "funct1.h" #define SECTION_BUFFER_SIZE 2048 static char *section_buffer = NULL; static long section_buffer_size = SECTION_BUFFER_SIZE; static long section_buffer_end = 0; static void increase_buffer_size(void) { char *new_section_buffer; new_section_buffer = (char *) malloc(2 * section_buffer_size + 1); if (new_section_buffer == NULL) diagnostics(ERROR, "Could not allocate enough memory to process file. Sorry."); memmove(new_section_buffer, section_buffer, section_buffer_size); section_buffer_size *= 2; free(section_buffer); section_buffer = new_section_buffer; diagnostics(4, "Expanded buffer size is now %ld", section_buffer_size); } static void show_buffer(char *s) { long i; char c; for (i=0; i<=section_buffer_end; i++) { if (i==0) diagnostics(WARNING, "\n%-*ld: ", (int) strlen(s), section_buffer_end); else if (i % 100 == 0) diagnostics(WARNING, "\n%s: ",s); c = section_buffer[i]; if (c == '\n') c = '='; if (c == '\0') c = '*'; diagnostics(WARNING,"%c",c); } } static void add_chr_to_buffer(char c) { if (section_buffer == NULL) { section_buffer = (char *) malloc(section_buffer_size + 1); if (section_buffer == NULL) diagnostics(ERROR, "Could not allocate enough memory to process file. Sorry."); } section_buffer_end++; *(section_buffer + section_buffer_end) = c; if (section_buffer_end + 2 >= section_buffer_size) increase_buffer_size(); if (0) { if (c == '\0') diagnostics(WARNING, "[\\0]"); else if (c == '\n') diagnostics(WARNING, "[\\n]"); else diagnostics(WARNING, "[%c]", (int) c); diagnostics(WARNING, "<%ld>", section_buffer_end); } } static void add_str_to_buffer(const char *s) { while (s && *s) { add_chr_to_buffer(*s); s++; } } static int matches_buffer_tail(const char *s) { long len; if (s==NULL) return FALSE; len = (long) strlen(s); if (len > section_buffer_end+1) return FALSE; if (strncmp(s,section_buffer+section_buffer_end-len,len)==0) { return TRUE; } else { return FALSE; } } static void reset_buffer(void) { section_buffer_end = -1; } static void move_end_of_buffer(long n) { section_buffer_end += n; if (0) { if (n<0) diagnostics(WARNING, "[removing %ld chars]", -n); else diagnostics(WARNING, "[adding %ld chars]", n); } if (0) { diagnostics(WARNING,"last 5 characters are [%c][%c][%c][%c][%c]\n", *(section_buffer+section_buffer_end-4), *(section_buffer+section_buffer_end-3), *(section_buffer+section_buffer_end-2), *(section_buffer+section_buffer_end-1), *(section_buffer+section_buffer_end) ); } } void preParse(char **body, char **header, char **label) /************************************************************************** purpose: obtain the next section of the latex file This is now a preparsing routine that breaks a file up into sections. Macro expansion happens here as well. \input and \include are also handled here. The reason for this routine is allow \labels to refer to sections. This routine reads text until a new section heading is found. The text is returned in body and the *next* header is returned in header. If no header follows then NULL is returned. **************************************************************************/ { int any_possible_match, found; char cNext, cThis, *s, *text, *next_header, *str, *p; int i; int possible_match[43]; char *command[43] = { "", /* 0 entry is for user definitions */ "", /* 1 entry is for user environments */ "\\begin{verbatim}", "\\begin{figure}", "\\begin{figure*}", "\\begin{equation}", "\\begin{equation*}", "\\begin{eqnarray}", "\\begin{eqnarray*}", "\\begin{table}", "\\begin{table*}", "\\begin{description}", "\\begin{comment}", "\\end{verbatim}", "\\end{figure}", "\\end{figure*}", "\\end{equation}", "\\end{equation*}", "\\end{eqnarray}", "\\end{eqnarray*}", "\\end{table}", "\\end{table*}", "\\end{description}", "\\end{comment}", "\\part", "\\chapter", "\\section", "\\subsection", "\\subsubsection", "\\section*", "\\subsection*", "\\subsubsection*", "\\label", "\\input", "\\include", "\\verb", "\\url", "\\nolinkurl", "\\newcommand", "\\def", "\\renewcommand", "\\endinput", "\\end{document}", }; int ncommands = 43; const int b_verbatim_item = 2; const int b_figure_item = 3; const int b_figure_item2 = 4; const int b_equation_item = 5; const int b_equation_item2 = 6; const int b_eqnarray_item = 7; const int b_eqnarray_item2 = 8; const int b_table_item = 9; const int b_table_item2 = 10; const int b_description_item = 11; const int b_comment_item = 12; const int e_verbatim_item = 13; const int e_figure_item = 14; const int e_figure_item2 = 15; const int e_equation_item = 16; const int e_equation_item2 = 17; const int e_eqnarray_item = 18; const int e_eqnarray_item2 = 19; const int e_table_item = 20; const int e_table_item2 = 21; const int e_description_item = 22; const int e_comment_item = 23; const int label_item = 32; const int input_item = 33; const int include_item = 34; const int verb_item = 35; const int url_item = 36; const int nolinkurl_item = 37; const int new_item = 38; const int def_item = 39; const int renew_item = 40; const int endinput_item = 41; const int e_document_item = 42; int bs_count = 0; /* number of backslashes encountered in a row */ size_t cmd_pos = 0; /* position of start of command relative to end of buffer */ int label_depth = 0; int i_match = 0; text = NULL; next_header = NULL; /* typically becomes \subsection{Cows eat grass} */ *body = NULL; *header = NULL; *label = NULL; PushTrackLineNumber(FALSE); reset_buffer(); while (1) { cThis = getRawTexChar(); while (cThis == '\0' && getParserDepth() > 0) { PopSource(); diagnostics(4,"parser depth is now %d", getParserDepth()); cThis = getRawTexChar(); } if (cThis == '\0') diagnostics(6, "[%ld] xchar=000 '\\0' (backslash count=%d)", section_buffer_end, bs_count); else if (cThis == '\n') diagnostics(6, "[%ld] xchar=012 '\\n' (backslash count=%d)", section_buffer_end, bs_count); else diagnostics(6, "[%ld] xchar=%03d '%c' (backslash count=%d)", section_buffer_end, (int) cThis, cThis, bs_count); cThis = skipBOM(cThis); add_chr_to_buffer(cThis); if (cThis == '\0') break; if (cThis == '%' && even(bs_count)) { int n = 1; /* remove initial % */ do { cNext = getRawTexChar(); add_chr_to_buffer(cNext); n++; } while (cNext != '\n' && cNext != '\0'); move_end_of_buffer(-n); if (0) show_buffer("percent"); continue; } /* cmd_pos > 0 means that we have encountered a '\' and some fraction of a command, e.g., '\sec', therefore the first time that a backslash is found then cmd_pos becomes 1, */ if (cThis == '\\') { bs_count++; if (odd(bs_count)) { /* avoid "\\section" and "\\\\section" */ for (i = 0; i < ncommands; i++) possible_match[i] = TRUE; cmd_pos = 1; continue; } } else bs_count = 0; if (cmd_pos == 0) continue; /* replace "\ " and "\\n" with a space */ if (cmd_pos == 1 && (cThis == '\n' || cThis == ' ') ) { move_end_of_buffer(-1); add_chr_to_buffer(' '); cmd_pos = 0; continue; } /* at this point we are have encountered a command and may have to do something. if it is a user definition, then the user definition is expanded here if it is a user environment, then expansion also happens here it it is something else then we may or may not have to mess with it. */ /* hack to convert '\begin {' --> '\begin{' */ if (cThis==' ' && (matches_buffer_tail("\\begin") || matches_buffer_tail("\\end")) ) { diagnostics(5, "matched '\\begin ' or '\\end '"); do {cThis = getRawTexChar();} while (cThis == ' '); } /* hack to convert '\begin{ ' --> '\begin{' */ if (cThis==' ' && (matches_buffer_tail("\\begin{") || matches_buffer_tail("\\end{")) ) { diagnostics(5, "matched '\\begin{ ' or '\\end{ '"); do {cThis = getRawTexChar();} while (cThis == ' '); } any_possible_match = FALSE; found = FALSE; /* is is possibly a user defined command? */ if (possible_match[0]) { possible_match[0] = maybeDefinition(section_buffer + section_buffer_end - cmd_pos + 1, cmd_pos - 1); if (possible_match[0]) { /* test to make sure \userdef is complete */ any_possible_match = TRUE; cNext = getRawTexChar(); /* wrong when cNext == '%' */ ungetTexChar(cNext); if (!isalpha((int) cNext)) { /* is macro name complete? */ *(section_buffer + section_buffer_end + 1) = '\0'; i = existsDefinition(section_buffer + section_buffer_end - cmd_pos + 1); if (i > -1) { diagnostics(4, "matched <%s> ", section_buffer + section_buffer_end - cmd_pos); if (cNext == ' ') { cNext = getNonSpace(); ungetTexChar(cNext); } move_end_of_buffer(-cmd_pos-1); /* remove \userdef */ str = expandDefinition(i); PushSource(NULL, str); free(str); cmd_pos = 0; bs_count = 0; continue; } } } } /* is it a user defined environment? */ if (possible_match[1]) { char *pp = section_buffer + section_buffer_end - cmd_pos; possible_match[1] = maybeEnvironment(pp, cmd_pos); if (possible_match[1] == TRUE) { any_possible_match = TRUE; cNext = getRawTexChar(); /* wrong when cNext == '%' */ /* \begin{name} or \end{name} will end with '}' */ if (cNext == '}') { char *ss = NULL; *(pp + cmd_pos + 1) = '\0'; if (*(pp + 1) == 'e') { i = existsEnvironment(pp + strlen("\\end{")); ss = expandEnvironment(i, CMD_END); } else { i = existsEnvironment(pp + strlen("\\begin{")); ss = expandEnvironment(i, CMD_BEGIN); } if (ss) { /* found */ diagnostics(5, "matched <%s}>", pp); diagnostics(5, "expanded to <%s>", ss); PushSource(NULL, ss); move_end_of_buffer(-cmd_pos-1); /* remove \begin{userenvironment} */ free(ss); cmd_pos = 0; continue; } } ungetTexChar(cNext); /* put the character back */ } } /* is it one of the commands listed above? */ for (i = 2; i < ncommands; i++) { if (possible_match[i]) { if (cThis == command[i][cmd_pos]) any_possible_match = TRUE; else possible_match[i] = FALSE; diagnostics(6,"cmd_pos = %d, char = %c, possible match %s, size=%d, possible=%d", \ cmd_pos,cThis,command[i],strlen(command[i]),possible_match[i]); } } i_match = -1; for (i = 2; i < ncommands; i++) { /* discover any exact matches */ if (possible_match[i]) { diagnostics(6, "testing for <%s>", command[i]); /* right length? */ if (cmd_pos+1 == strlen(command[i])) { if (i<=e_comment_item || i==e_comment_item) { /* these entries are complete matches */ found = TRUE; } else { /* these entries we need to be a bit more careful and check next character */ cNext = getRawTexChar(); ungetTexChar(cNext); /* this test for the end of commands may still need tweaking */ if (!isalpha(cNext) && cNext != '*') { found = TRUE; } } } } if (found == TRUE) { diagnostics(6,"preparse matched '%s'",command[i]); i_match = i; break; } } if (any_possible_match) cmd_pos++; else cmd_pos = 0; /* no possible matches, reset and wait for next '\\' */ if (!found) continue; if (i_match == endinput_item) { diagnostics(6, "\\endinput"); move_end_of_buffer(-9); /* remove \endinput */ PopSource(); cmd_pos = 0; /* keep looking */ continue; } /* \end{document} reached! Stop processing */ if (i_match == e_document_item) { diagnostics(6, "\\end{document}"); move_end_of_buffer(-strlen(command[e_document_item])); add_chr_to_buffer('\0'); safe_free(*header); *header = strdup(command[e_document_item]); p = section_buffer; while (*p==' ' || *p == '\n') p++; *body = strdup(p); PopTrackLineNumber(); diagnostics(6, "body = %s", section_buffer); diagnostics(6, "next header = '%s'", command[e_document_item]); return; } if (i_match == verb_item) { /* slurp \verb#text# */ char cc; cNext = getRawTexChar(); add_chr_to_buffer(cNext); diagnostics(6, "verb char = %c", cNext); do { cc = getRawTexChar(); add_chr_to_buffer(cc); } while (cc != cNext && cc != '\0'); cmd_pos = 0; /* reset the command position */ continue; } /* cannot ignore this because it may contain unescaped '%' */ if (i_match == url_item || i_match == nolinkurl_item) { char cc; do { cc = getRawTexChar(); add_chr_to_buffer(cc); } while (cc != '\0' && cc != '}'); cmd_pos = 0; /* reset the command position */ continue; } if (i_match == include_item) { CmdInclude(0); move_end_of_buffer(-strlen(command[i])); cmd_pos = 0; /* reset the command position */ continue; } if (i_match == input_item) { CmdInclude(1); move_end_of_buffer(-strlen(command[i])); cmd_pos = 0; /* reset the command position */ continue; } if (i_match == label_item) { char *tag; tag = getBraceParam(); /* append \label{tag} to the buffer */ add_chr_to_buffer('{'); add_str_to_buffer(tag); add_chr_to_buffer('}'); if (!(*label) && strlen(tag) && label_depth == 0) *label = strdup_nobadchars(tag); free(tag); cmd_pos = 0; /* keep looking */ continue; } /* process any new definitions */ if (i_match == def_item || i_match == new_item || i_match == renew_item) { cNext = getRawTexChar(); /* wrong when cNext == '%' */ ungetTexChar(cNext); if (isalpha((int) cNext)) /* is macro name complete? */ continue; move_end_of_buffer(-strlen(command[i])); /* do not include in buffer */ if (i_match == def_item) CmdNewDef(DEF_DEF); else if (i_match == new_item) CmdNewDef(DEF_NEW); else CmdNewDef(DEF_RENEW); cmd_pos = 0; /* keep looking */ continue; } if (i_match == b_figure_item || i_match == b_figure_item2 || i_match == b_equation_item || i_match == b_equation_item2 || i_match == b_eqnarray_item || i_match == b_eqnarray_item2 || i_match == b_table_item || i_match == b_table_item2 || i_match == b_description_item) { label_depth++; /* labels now will not be the section label */ cmd_pos = 0; continue; } if (i_match == e_figure_item || i_match == e_figure_item2 || i_match == e_equation_item || i_match == e_equation_item2 || i_match == e_eqnarray_item || i_match == e_eqnarray_item2 || i_match == e_table_item || i_match == e_table_item2 || i_match == e_description_item) { label_depth--; /* labels may now be the section label */ cmd_pos = 0; continue; } if (i_match == b_verbatim_item) { /* slurp environment ... toxic contents! */ s = getTexUntil(command[e_verbatim_item], TRUE); add_str_to_buffer(s); free(s); add_str_to_buffer(command[e_verbatim_item]); diagnostics(4,"matched \\end{verbatim}"); cmd_pos = 0; /* keep looking */ continue; } if (i_match == b_comment_item) { /* slurp environment ... toxic contents! */ s = getTexUntil(command[e_comment_item], TRUE); add_str_to_buffer(s); free(s); add_str_to_buffer(command[e_comment_item]); cmd_pos = 0; /* keep looking */ continue; } diagnostics(4, "possible end of section"); diagnostics(4, "label_depth = %d", label_depth); if (label_depth > 0) /* still in a \begin{xxx} environment? */ continue; /* actually found command to end the section */ diagnostics(4, "preParse() found command to end section"); s = getBraceParam(); next_header = strdup_together4(command[i], "{", s, "}"); free(s); move_end_of_buffer(-strlen(command[i])); add_chr_to_buffer('\0'); break; } /*eliminate white space at beginning of buffer */ p = section_buffer; while (*p==' ' || *p == '\n') p++; *body = strdup(p); safe_free(*header); *header = next_header; PopTrackLineNumber(); } latex2rtf-2.3.18/acronyms.c0000777000175000017500000004104313050672355015732 0ustar wilfriedwilfried/* acronym.c - interpret acronym commands Copyright (C) 1995-2002 The Free Software Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. This file is available from http://sourceforge.net/projects/latex2rtf/ Authors: 1995 Fernando Dorner, Andreas Granzer, Freidrich Polzer, Gerhard Trisko 1995-1997 Ralf Schlatterbeck 1998-2000 Georg Lehner 2001-2002 Scott Prahl 2009-2010 Pedro A. Aranda */ #include #include #include #include "main.h" #include "parser.h" #include "utils.h" #include "cfg.h" #include "convert.h" #include "commands.h" #include "lengths.h" #include "vertical.h" #include "auxfile.h" #include "acronyms.h" #include "biblio.h" #include "labels.h" /* I move the acronymCommands here and make them available as soon as the preamble detects a \usepackage[..]{acronym} by pushing an ACRONYM_MODE into the environments */ CommandArray acronymCommands[] = { {"acrodef", CmdAcrodef, ACRONYM_ACRODEF}, {"acrodefplural", CmdAcrodef, ACRONYM_ACRODEFPLURAL}, {"acro", CmdAcrodef, ACRONYM_ACRO}, {"acroplural", CmdAcrodef, ACRONYM_ACROPLURAL}, {"acresetall", CmdAcResetAll, 0}, {"AC" , CmdAC, 0}, {"acused" , CmdAcUsed, 0}, {"acroextra", CmdAcroExtra, 0}, {"ac" , CmdAc, ACRONYM_AC}, {"acl" , CmdAc, ACRONYM_ACL}, {"acs" , CmdAc, ACRONYM_ACS}, {"acf" , CmdAc, ACRONYM_ACF}, {"acfi" , CmdAc, ACRONYM_ACFI}, {"acp" , CmdAc, ACRONYM_AC | ACRONYM_PLURAL }, {"aclp" , CmdAc, ACRONYM_ACL | ACRONYM_PLURAL }, {"acsp" , CmdAc, ACRONYM_ACS | ACRONYM_PLURAL }, {"acfp" , CmdAc, ACRONYM_ACF | ACRONYM_PLURAL }, {"acsu" , CmdAc, ACRONYM_ACS | ACRONYM_USED }, {"aclu" , CmdAc, ACRONYM_ACL | ACRONYM_USED }, {"ac*" , CmdAc, ACRONYM_AC | ACRONYM_STAR }, {"acs*" , CmdAc, ACRONYM_ACS | ACRONYM_STAR }, {"acl*" , CmdAc, ACRONYM_ACL | ACRONYM_STAR }, {"acf*" , CmdAc, ACRONYM_ACF | ACRONYM_STAR }, {"acp*" , CmdAc, ACRONYM_AC | ACRONYM_PLURAL | ACRONYM_STAR}, {"acsp*" , CmdAc, ACRONYM_ACS | ACRONYM_PLURAL | ACRONYM_STAR}, {"aclp*" , CmdAc, ACRONYM_ACL | ACRONYM_PLURAL | ACRONYM_STAR}, {"acfp*" , CmdAc, ACRONYM_ACF | ACRONYM_PLURAL | ACRONYM_STAR}, {"acfi*" , CmdAc, ACRONYM_AC | ACRONYM_STAR }, {"acsu*" , CmdAc, ACRONYM_ACS | ACRONYM_STAR | ACRONYM_USED }, {"aclu*" , CmdAc, ACRONYM_ACL | ACRONYM_STAR | ACRONYM_USED }, {"" , NULL, 0 } }; /* ***************************************************** Acronyms: this version is quite aligned with acronyms.sty v1.35 it supports irregular plurals (...plural macros) \begin{acronym}[HBCI] In standard mode, the acronym-list will consist of all defined acronyms, regardless if the the acronym was used in the text before or not. \usepackage{acronym} accepts following parameters: * printonlyused * withpage TODO: implement better 'acronym' paragraph style Date: 29-Dec-2009 Author: Pedro A. Aranda GutiĂŠrrez ***************************************** */ void UsePackageAcronym(char *options) { diagnostics(WARNING,"acronym package support: almost v1.35"); /* we need an .aux file to get the acronyms from */ LoadAuxFile(); /* we have to activate the acronym commands */ PushEnvironment(ACRONYM_MODE); if (options != NULL) { char *acroOptions = strdup(options); char *opt; diagnostics(WARNING,"acronym package with option%c %s", strHasChar(options,',') ? 's' : ' ', options); for (opt=strtok(acroOptions,","); NULL != opt; opt=strtok(NULL,",")) { if (streq(opt,"printonlyused")) { acroPrintOnlyUsed = TRUE; } else if (streq(opt,"withpage")) { acroPrintWithPage = TRUE; } else { diagnostics(WARNING,"acronym package: option %s unknown",opt); } } free(acroOptions); } } /* TODO: implement longest acronym hint */ static int inAcroEnvironment = FALSE; void CmdBeginAcronym(int code) { /* diagnostics(5,"CmdBeginAcronym(0x%04x) ON = 0x%04x",code,ON); */ if (ON == (code & ON)) { char *longest = getBracketParam(); if (NULL != longest) { diagnostics(WARNING,"Ignoring longest acronym hint '[%s]'",longest); free(longest); } inAcroEnvironment = TRUE; /* PushEnvironment(ACRONYM_MODE); */ } else { inAcroEnvironment = FALSE; /* PopEnvironment(); */ } } /* * This table holds all the acronym information * With irregular plurals it is extremely difficult * to get it on the fly from the .aux file */ typedef struct _acroEntry { char *acDef, *acShort, *acLong; char *acShortPlural, *acLongPlural; int used; int printable; } acroEntry; static acroEntry *acroTable = NULL; static int acroNum = 0; int acroPrintOnlyUsed = FALSE; int acroPrintWithPage = FALSE; /* * acronym table handling routines: * * search an entry in the table... * linear search, OK not completely efficient, but portable * */ static acroEntry *searchEntry(char *acDef) { int i; if (acDef != NULL) { for (i = 0; iacLong); } else { if (NULL != entry->acLongPlural) { ConvertString(entry->acLongPlural); } else { ConvertString(entry->acLong); ConvertString("s"); } } } /* ********************************* print the acronym short expansion ********************************* */ static void printShort(acroEntry *entry,int plural) { if (FALSE == plural) { ConvertString(entry->acShort); } else { if (NULL != entry->acShortPlural) { ConvertString(entry->acShortPlural); } else { ConvertString(entry->acShort); ConvertString("s"); } } } /* *************************************************** Create a regular plural Now I only need it once when defining a long plural *************************************************** */ static char* regularPlural(char *singular) { int singularLength = strlen(singular); char *result = (char *) malloc(singularLength+2); if (NULL != result) { strcpy(result,singular); result[singularLength]='s'; result[singularLength+1]='\0'; } return result; } /* ******************************* create a new entry in the table or use one if it exists ******************************* */ static acroEntry *createEntry(char *acDef) { acroEntry *result = searchEntry(acDef); if (NULL == result) { void *ptr; ptr = (void *) acroTable; ptr = realloc(ptr,(++acroNum)*sizeof(acroEntry)); acroTable = (acroEntry *) ptr; if (NULL != acroTable) { result = &acroTable[acroNum-1]; result->acDef = acDef; result->acShort = NULL; result->acLong = NULL; result->acShortPlural = NULL; result->acLongPlural = NULL; result->used = FALSE; result->printable = FALSE; } } return result; } /* ******************************** Common acro creation diagnostics ******************************** */ static void acroDiag(acroEntry *thisEntry) { register int diagLevel = 5; int entry = thisEntry - acroTable; diagnostics(diagLevel,"defining acronym"); diagnostics(diagLevel," acroTable[%d].acDef = %s",entry,thisEntry->acDef); if (NULL != thisEntry->acShort) diagnostics(diagLevel," acroTable[%d].acShort = %s",entry,thisEntry->acShort); if (NULL != thisEntry->acLong) diagnostics(diagLevel," acroTable[%d].acLong = %s",entry,thisEntry->acLong); if (NULL != thisEntry->acShortPlural) diagnostics(diagLevel," acroTable[%d].acShortPlural = %s",entry,thisEntry->acShortPlural); if (NULL != thisEntry->acLongPlural) diagnostics(diagLevel," acroTable[%d].acLongPlural = %s",entry,thisEntry->acLongPlural); } /* ********************************************************** Ignore \acroplural,\acrodef and \acrodefplural Handle \acro (in the acronym environment) and \newacro and \newacroplural (in the .aux file) only TODO: acronym paragraph style: hint for first tab ********************************************************** */ void CmdAcrodef(int code) { char *acDef = NULL, *acShort = NULL, *acLong = NULL; acroEntry *thisEntry = NULL; acDef = getBraceParam(); acShort = getBracketParam(); acLong = getBraceParam(); /* diagnostics(5,"void CmdAcrodef(%d)",code); */ switch (code) { case ACRONYM_NEWACRO: thisEntry = createEntry(acDef); if (acShort == NULL) acShort = acDef; if (NULL != thisEntry) { thisEntry->acShort = acShort; thisEntry->acLong = acLong; acroDiag(thisEntry); } else { diagnostics(ERROR,"Out of memory!"); } break; case ACRONYM_NEWACROPLURAL: thisEntry = createEntry(acDef); if (NULL != thisEntry) { thisEntry->acShortPlural = (acShort == NULL) ? regularPlural(acDef) : acShort; thisEntry->acLongPlural = acLong; acroDiag(thisEntry); } else { diagnostics(ERROR,"Out of memory!"); } break; case ACRONYM_ACRO: /* * just to know whether we have to print it or not! * use acShort and acLong from the definition */ thisEntry = searchEntry(acDef); if (NULL != thisEntry) { int doPrint; doPrint = /* (inAcroEnvironment == TRUE) && */ ((thisEntry->used == TRUE) || (acroPrintOnlyUsed == FALSE)); /* diagnostics(5,"\\acro('%s','%s')",(NULL != acShort) ? acShort:acDef,acLong); */ if (doPrint) { int vspace = getLength("itemsep") + getLength("parsep"); CmdEndParagraph(0); setVspace(vspace); /* CmdIndent(INDENT_USUAL); */ startParagraph("acronym", PARAGRAPH_FIRST); fprintRTF("{\\b "); ConvertString((NULL != acShort) ? acShort : acDef); fprintRTF("}\\tab\n"); ConvertString(acLong); if (TRUE == acroPrintWithPage) { char *acroLabel = (char *) malloc(strlen(acDef)+8); if (NULL != acroLabel) { char *acroPage; sprintf(acroLabel,"acro:%s",acDef); acroPage = getLabelPage(acroLabel); if (NULL != acroPage) { fprintRTF(" \\tab "); ConvertString(acroPage); } safe_free(acroPage); } safe_free(acroLabel); } CmdEndParagraph(0); } /* fall through to free parameters */ default: safe_free(acDef); safe_free(acShort); safe_free(acLong); break; } } } /* **************************************************** */ /* return a hint for the first tab in the acronym style */ /* **************************************************** */ int acronymHint(int maxWidth) { return (int)(maxWidth / 6.00); } /* ignore the first, push the second */ /* \AC@hyperlink{isis}{IS-IS} */ void CmdAC(int code) { char *shortAc; shortAc = getTexUntil("hyperlink",FALSE); safe_free(shortAc); ignoreBraceParam(); shortAc = getBraceParam(); ConvertString(shortAc); safe_free(shortAc); } /* \ac{acronym} Expand and identify the acronym the first time; use only the acronym thereafter \acf{acronym} Use the full name of the acronym. \acs{acronym} Use the acronym, even before the first corresponding \ac command \acl{acronym} Expand the acronym without using the acronym itself. \acf{SW} Scientific Word (SW) documents are beautifully typeset. \acs{SW} SW documents are beautifully typeset. \acl{SW} Scientific Word documents are beautifully typeset. \acp{label} plural form of acronym by adding an s. \acfp. \acsp, \aclp work as well. */ void CmdAc(int code) { char *ac; acroEntry *found = NULL; int basecode = (code & 0x0ff); int plural = ((code & 0xf00) == ACRONYM_PLURAL); int star = ((code & 0xf00) == ACRONYM_STAR); int markUsed = ((code & 0xf00) == ACRONYM_USED); ac = getBraceParam(); found = searchEntry(ac); if (found == NULL) { if (basecode == ACRONYM_AC) ConvertFmt2String("\\textsf{\\textbf{%s! (%s!)}}",ac,ac); else ConvertFmtString("\\textsf{\\textbf{%s!}}",ac); diagnostics(WARNING,"Undefined acronym '%s'",ac); return; } if (basecode == ACRONYM_AC) { if (found->used == TRUE) { basecode = ACRONYM_ACS; } else { found->used = (star == FALSE); basecode = ACRONYM_ACF; } } if (markUsed == TRUE && star == FALSE) found->used = TRUE; switch(basecode) { case ACRONYM_ACF: printLong(found,plural); ConvertString(" ("); printShort(found,plural); ConvertString(")"); break; case ACRONYM_ACS: printShort(found,plural); break; case ACRONYM_ACL: printLong(found,plural); break; case ACRONYM_ACFI: ConvertFmt2String("\\textit{%s} (%s)", found->acLong, found->acShort); break; default: diagnostics(WARNING,"Fell through CmdAc()!"); break; } safe_free(ac); } /* \acused{ac} */ /* mark an acronym as used */ void CmdAcUsed(int code) { acroEntry *acronym = NULL; char *ac = getBraceParam(); acronym = searchEntry(ac); if (acronym != NULL) { acronym->used = TRUE; } safe_free(ac); } /* \acresetall */ /* resets all acronyms to not used. */ /* Useful after the abstract to redefine */ /* all acronyms in the introduction. */ void CmdAcResetAll(int code) { int i; for (i=0;i #include #include #include #include #include "main.h" #include "convert.h" #include "utils.h" #include "preamble.h" #include "fonts.h" #include "cfg.h" #include "encodings.h" #include "parser.h" #include "funct1.h" #include "lengths.h" #include "ignore.h" #include "commands.h" #include "counters.h" #include "xrefs.h" #include "direct.h" #include "styles.h" #include "vertical.h" #include "auxfile.h" #include "acronyms.h" extern char *Version; /*storage and definition in version.h */ static int g_preambleTwoside = FALSE; static int g_preambleTwocolumn = FALSE; static int g_preambleTitlepage = FALSE; static int g_preambleLandscape = FALSE; static int g_preambleGeometry = FALSE; static int g_geomMargl = 0; static int g_geomMargr = 0; static int g_geomMargt = 0; static int g_geomMargb = 0; static int gColorPackage = 0; static char *g_preambleTitle = NULL; static char *g_preambleAuthor = NULL; static char *g_preambleDate = NULL; static char *g_preambleAffiliation = NULL; static char *g_preambleAbstract = NULL; static char *g_preambleAck = NULL; static char *g_preambleCFOOT = NULL; static char *g_preambleLFOOT = NULL; static char *g_preambleRFOOT = NULL; static char *g_preambleCHEAD = NULL; static char *g_preambleLHEAD = NULL; static char *g_preambleRHEAD = NULL; static void setPaperSize(char *size); static void setDocumentOptions(char *optionlist); static void WriteFontHeader(void); static void WriteStyleHeader(void); static void WritePageSize(void); void ParseOptGeometry(char *options); void ExecGeomOptions (char *option, char *value1, char *value2); void setPackageBabel(char *option) { char *replica,*language,*comma; if (option == NULL || *option == '\0') return; diagnostics(2, "setPackageBabel [%s]", option); replica = strdup_noblanks(option); language = replica; while (language && *language) { comma = strchr(language,','); if (comma != NULL) *comma = '\0'; if (strstr(language, "german")) { /* also catches ngerman */ GermanMode = TRUE; PushEnvironment(GERMAN_MODE); ReadLanguage("german"); return; } if (strstr(language, "french")) { /* also frenchb */ FrenchMode = TRUE; PushEnvironment(FRENCH_MODE); } if (strstr(language, "russian")) { RussianMode = TRUE; PushEnvironment(RUSSIAN_MODE); } if (strstr(language, "czech")) { CzechMode = TRUE; PushEnvironment(CZECH_MODE); if (CurrentFontEncoding()==ENCODING_1252) /* has not been set already */ CmdFontEncoding(ENCODING_LATIN_2); } ReadLanguage(language); language = (comma) ? comma+1 : NULL; } safe_free(replica); } void setPackageInputenc(char *option) { if (strstr(option, "applemac")) CmdFontEncoding(ENCODING_APPLE); else if (strstr(option, "decmulti")) CmdFontEncoding(ENCODING_DEC); else if (strstr(option, "latin1")) CmdFontEncoding(ENCODING_1252); else if (strstr(option, "latin2")) CmdFontEncoding(ENCODING_LATIN_2); else if (strstr(option, "latin3")) CmdFontEncoding(ENCODING_LATIN_3); else if (strstr(option, "latin4")) CmdFontEncoding(ENCODING_LATIN_4); else if (strstr(option, "latin5")) CmdFontEncoding(ENCODING_LATIN_5); else if (strstr(option, "latin9")) CmdFontEncoding(ENCODING_LATIN_9); else if (strstr(option, "latin10")) CmdFontEncoding(ENCODING_LATIN_10); else if (strstr(option, "next")) CmdFontEncoding(ENCODING_NEXT); else if (strstr(option, "maccyr")) CmdFontEncoding(ENCODING_APPLE_CYRILLIC); else if (strstr(option, "macce")) CmdFontEncoding(ENCODING_APPLE_CE); else if (strstr(option, "koi8-r")) CmdFontEncoding(ENCODING_KOI8_R); else if (strstr(option, "koi8-u")) CmdFontEncoding(ENCODING_KOI8_U); else if (strstr(option, "437")) CmdFontEncoding(ENCODING_437); else if (strstr(option, "ansinew")) CmdFontEncoding(ENCODING_1252); else if (strstr(option, "1252")) CmdFontEncoding(ENCODING_1252); else if (strstr(option, "850")) CmdFontEncoding(ENCODING_850); else if (strstr(option, "852")) CmdFontEncoding(ENCODING_852); else if (strstr(option, "855")) CmdFontEncoding(ENCODING_852); else if (strstr(option, "865")) CmdFontEncoding(ENCODING_865); else if (strstr(option, "866")) CmdFontEncoding(ENCODING_866); else if (strstr(option, "1250")) CmdFontEncoding(ENCODING_1250); else if (strstr(option, "1251")) CmdFontEncoding(ENCODING_1251); else if (strstr(option, "1253")) CmdFontEncoding(ENCODING_1253); else if (strstr(option, "raw")) CmdFontEncoding(ENCODING_RAW); else if (strstr(option, "utf8")) CmdFontEncoding(ENCODING_UTF8); else if (strstr(option, "ot2enc")) setPackageBabel("russian"); else diagnostics(WARNING, "Input Encoding <%s> not supported", option); } static void setPackageFont(char *font) { int fnumber = -1; if (strcmp(font, "palatino") == 0) fnumber = RtfFontNumber("Palatino"); else if (strstr(font, "times")) fnumber = RtfFontNumber("Times"); else if (strstr(font, "chancery")) fnumber = RtfFontNumber("Zapf Chancery"); else if (strstr(font, "courier")) fnumber = RtfFontNumber("Courier"); else if (strstr(font, "avant")) fnumber = RtfFontNumber("Avant Garde"); else if (strstr(font, "helvet")) fnumber = RtfFontNumber("Helvetica"); else if (strstr(font, "newcen")) fnumber = RtfFontNumber("New Century Schoolbook"); else if (strstr(font, "book")) fnumber = RtfFontNumber("Bookman"); /* InitializeDocumentFont(fnumber, -1, -1, -1); */ if (fnumber == -1) diagnostics(WARNING, "Font Package <%s> not supported.", font); } static void setThree(char *s, int ten, int eleven, int twelve) { int n = DefaultFontSize(); if (n == 20) setLength(s, ten * 20); else if (n == 22) setLength(s, eleven * 20); else setLength(s, twelve * 20); } static void setPaperSize(char *option) /****************************************************************************** Should also try to reset some of the other sizes at this time ******************************************************************************/ { if (strcmp(option, "landscape") == 0) { g_preambleLandscape = TRUE; } else if (strcmp(option, "a4paper") == 0) { setLength("pageheight", 845 * 20); setLength("hoffset", 0 * 20); setThree("oddsidemargin", 53, 46, 31); setLength("headheight", 12 * 20); setThree("textheight", 598, 596, 592); setLength("footskip", 30 * 20); setLength("marginparpush", 5 * 20); setLength("pagewidth", 598 * 20); setLength("voffset", 0 * 20); setLength("topmargin", 17 * 20); setLength("headsep", 25 * 20); setThree("textwidth", 345, 360, 390); setThree("columnwidth", 345, 360, 390); setThree("linewidth", 345, 360, 390); setLength("marginparsep", 10 * 20); setLength("columnsep", 10 * 20); } else if (strcmp(option, "a4") == 0) { setLength("pageheight", 845 * 20); setLength("hoffset", 0 * 20); setThree("oddsidemargin", 40, 33, 14); setLength("headheight", 12 * 20); setThree("textheight", 646, 637, 621); setLength("footskip", 30 * 20); setLength("marginparpush", 5 * 20); setLength("pagewidth", 598 * 20); setLength("voffset", 0 * 20); setLength("topmargin", 0 * 20); setLength("headsep", 25 * 20); setThree("textwidth", 361, 376, 412); setThree("columnwidth", 361, 376, 412); setThree("linewidth", 361, 376, 412); setLength("marginparsep", 10 * 20); setLength("columnsep", 10 * 20); } else if (strcmp(option, "a4wide") == 0) { setLength("pageheight", 845 * 20); setLength("hoffset", 0 * 20); setThree("oddsidemargin", 18, 9, 0); setLength("headheight", 12 * 20); setThree("textheight", 621, 637, 621); setLength("footskip", 30 * 20); setLength("marginparpush", 5 * 20); setLength("pagewidth", 598 * 20); setLength("voffset", 0 * 20); setLength("topmargin", 0 * 20); setLength("headsep", 25 * 20); setThree("textwidth", 425, 443, 461); setThree("linewidth", 425, 443, 461); setThree("columnwidth", 425, 443, 461); setLength("marginparsep", 10 * 20); setLength("columnsep", 10 * 20); } else if (strcmp(option, "letterpaper") == 0) { setLength("pageheight", 795 * 20); setLength("hoffset", 0 * 20); setThree("oddsidemargin", 62, 54, 39); setLength("headheight", 12 * 20); setThree("textheight", 550, 541, 549); setLength("footskip", 30 * 20); setLength("marginparpush", 5 * 20); setLength("pagewidth", 614 * 20); setLength("voffset", 0 * 20); setLength("topmargin", 18 * 20); setLength("headsep", 25 * 20); setThree("textwidth", 345, 360, 390); setThree("linewidth", 345, 360, 390); setThree("columnwidth", 345, 360, 390); setLength("marginparsep", 10 * 20); setLength("columnsep", 10 * 20); } else if (strcmp(option, "legalpaper") == 0) { setLength("pageheight", 1012 * 20); setLength("hoffset", 0 * 20); setThree("oddsidemargin", 62, 54, 39); setLength("headheight", 12 * 20); setThree("textheight", 766, 759, 766); setLength("footskip", 30 * 20); setLength("marginparpush", 5 * 20); setLength("pagewidth", 614 * 20); setLength("voffset", 0 * 20); setLength("topmargin", 18 * 20); setLength("headsep", 25 * 20); setThree("textwidth", 345, 360, 390); setThree("columnwidth", 345, 360, 390); setThree("linewidth", 345, 360, 390); setLength("marginparsep", 10 * 20); setLength("columnsep", 10 * 20); } else if (strcmp(option, "a5paper") == 0) { setLength("pageheight", 598 * 20); setLength("hoffset", 0 * 20); setLength("oddsidemargin", 0 * 20); setLength("headheight", 12 * 20); setLength("textheight", 350 * 20); setLength("footskip", 30 * 20); setLength("marginparpush", 5 * 20); setLength("pagewidth", 421 * 20); setLength("voffset", 0 * 20); setLength("topmargin", 18 * 20); setLength("headsep", 25 * 20); setLength("textwidth", 276 * 20); setLength("columnwidth", 276 * 20); setLength("linewidth", 276 * 20); setLength("marginparsep", 10 * 20); setLength("columnsep", 10 * 20); } else if (strcmp(option, "b5paper") == 0) { setLength("pageheight", 711 * 20); setLength("hoffset", 0 * 20); setLength("oddsidemargin", 0 * 20); setLength("headheight", 12 * 20); setLength("textheight", 460 * 20); setLength("footskip", 30 * 20); setLength("marginparpush", 5 * 20); setLength("pagewidth", 501 * 20); setLength("voffset", 0 * 20); setLength("topmargin", 19 * 20); setLength("headsep", 25 * 20); setLength("textwidth", 350 * 20); setLength("columnwidth", 350 * 20); setLength("linewidth", 350 * 20); setLength("marginparsep", 10 * 20); setLength("columnsep", 10 * 20); } } static void setPointSize(char *option) { if (strcmp(option, "10pt") == 0) { InitializeDocumentFont(-1, 20, -1, -1, ENCODING_1252); setLength("baselineskip", 12 * 20); setLength("parindent", 15 * 20); setLength("parskip", 0 * 20); } else if (strcmp(option, "11pt") == 0) { InitializeDocumentFont(-1, 22, -1, -1, ENCODING_1252); setLength("baselineskip", 14 * 20); setLength("parindent", 17 * 20); setLength("parskip", 0 * 20); } else { InitializeDocumentFont(-1, 24, -1, -1, ENCODING_1252); setLength("baselineskip", (int) 14.5 * 20); setLength("parindent", 18 * 20); setLength("parskip", 0 * 20); } } static void setDocumentOptions(char *optionlist) { char *option; if (optionlist == NULL) return; option = strtok(optionlist, ","); while (option) { /* while (*option == ' ') option++; skip leading blanks */ diagnostics(2, " (setDocumentOptions) option <%s>", option); if (TryPackageIgnore(option)) { /* silently ignore */ } else if (strcmp(option, "10pt") == 0 || strcmp(option, "11pt") == 0 || strcmp(option, "12pt") == 0) setPointSize(option); else if (strcmp(option, "a4" ) == 0 || strcmp(option, "a4paper" ) == 0 || strcmp(option, "a4wide" ) == 0 || strcmp(option, "b5paper" ) == 0 || strcmp(option, "a5paper" ) == 0 || strcmp(option, "letterpaper") == 0 || strcmp(option, "landscape" ) == 0 || strcmp(option, "legalpaper" ) == 0) setPaperSize(option); else if ( streq(option, "afrikaans") || streq(option, "bahasa") || streq(option, "basque") || streq(option, "brazil") || streq(option, "breton") || streq(option, "catalan") || streq(option, "croatian") || streq(option, "czech") || streq(option, "danish") || streq(option, "dutch") || streq(option, "english") || streq(option, "esperanto") || streq(option, "estonian") || streq(option, "finnish") || streq(option, "french") || streq(option, "galician") || streq(option, "german") || streq(option, "icelandic") || streq(option, "irish") || streq(option, "italian") || streq(option, "latin") || streq(option, "lsorbian") || streq(option, "magyar") || streq(option, "norsk") || streq(option, "nynorsk") || streq(option, "polish") || streq(option, "portuges") || streq(option, "romanian") || streq(option, "russian") || streq(option, "samin") || streq(option, "scottish") || streq(option, "serbian") || streq(option, "slovak") || streq(option, "slovene") || streq(option, "spanish") || streq(option, "swedish") || streq(option, "turkish") || streq(option, "ukrainian") || streq(option, "usorbian") || streq(option, "welsh") ) setPackageBabel(option); else if (strcmp(option, "twoside") == 0) g_preambleTwoside = TRUE; else if (strcmp(option, "twocolumn") == 0) g_preambleTwocolumn = TRUE; else if (strcmp(option, "titlepage") == 0) g_preambleTitlepage = TRUE; else if (strcmp(option, "isolatin1") == 0) setPackageInputenc("latin1"); else if (strcmp(option, "hyperlatex") == 0) PushEnvironment(HYPERLATEX_MODE); else if (strcmp(option, "apalike") == 0) g_document_bibstyle = BIBSTYLE_APALIKE; else if (strcmp(option, "apanat1b") == 0) PushEnvironment(APACITE_MODE); else if (strcmp(option, "endfloat") == 0) g_endfloat_figures = TRUE; else if (strcmp(option, "bibentry") == 0) /* do nothing */; else if (strcmp(option, "harvard") == 0) { PushEnvironment(HARVARD_MODE); g_document_bibstyle = BIBSTYLE_HARVARD; /* parse the .aux file for harvardcite's */ /* if not already done so */ LoadAuxFile(); } else if (strcmp(option, "natbib") == 0) { PushEnvironment(NATBIB_MODE); g_document_bibstyle = BIBSTYLE_NATBIB; } else if (strcmp(option, "authordate") == 0 || strcmp(option, "authordate1") == 0 || strcmp(option, "authordate2") == 0 || strcmp(option, "authordate3") == 0 || strcmp(option, "authordate4") == 0 || strcmp(option, "authordate1-4") == 0) { PushEnvironment(AUTHORDATE_MODE); g_document_bibstyle = BIBSTYLE_AUTHORDATE; } else if (strcmp(option, "apacite") == 0 || strcmp(option, "apacitex") == 0) { PushEnvironment(APACITE_MODE); g_document_bibstyle = BIBSTYLE_APACITE; } else if (strcmp(option, "hyperref") == 0) { PushEnvironment(HYPERREF_MODE); } else if (strcmp(option, "amsmath") == 0) { g_amsmath_package = TRUE; diagnostics(WARNING, "Incomplete support for package/option '%s' ", option); } else if (strcmp(option, "endnotes" ) == 0 || strcmp(option, "bm" ) == 0 || strcmp(option, "pstricks-add") == 0 || strcmp(option, "fancyhdr" ) == 0 || strcmp(option, "html" ) == 0 || strcmp(option, "epsf" ) == 0 || strcmp(option, "psfig" ) == 0 || strcmp(option, "verbatim" ) == 0 || strcmp(option, "paralist" ) == 0 ) { diagnostics(WARNING, "Incomplete support for package/option '%s' ", option); } else if (strcmp(option, "color") == 0) { gColorPackage = 1; } else if (strcmp(option, "man") == 0 || strcmp(option, "jou") == 0) { diagnostics(WARNING, "ignoring [%s], assuming [doc]", option); } else if (strcmp(option, "doc") == 0) { diagnostics(WARNING, "Some support for apa class"); } else if (strcmp(option, "setspace") == 0) { diagnostics(WARNING, "Incomplete support for setspace package"); } else if (strcmp(option,"ifpdf") == 0) { diagnostics(WARNING, "Trivial support for the ifpdf package"); ConvertString("\\newif\\ifpdf"); } else if (strcmp(option,"tikz") == 0) { diagnostics(WARNING, "basic support for tikz"); } else { diagnostics(WARNING, "Package/option '%s' unknown.", option); } option = strtok(NULL, ","); } } /****************************************************************************** purpose: parse \documentstyle[options]{format} or \documentclass[options]{format} ******************************************************************************/ void CmdDocumentStyle(int code) { char *format, *format_with_spaces; char *options, *options_with_spaces; options_with_spaces = getBracketParam(); format_with_spaces = getBraceParam(); format = strdup_noblanks(format_with_spaces); free(format_with_spaces); if (options_with_spaces) diagnostics(4, "Documentstyle/class[%s]{%s}", options_with_spaces, format); else diagnostics(4, "Documentstyle/class{%s}", format); g_document_type = FORMAT_ARTICLE; if (strcmp(format, "book") == 0) g_document_type = FORMAT_BOOK; else if (strcmp(format, "report") == 0) g_document_type = FORMAT_REPORT; else if (strcmp(format, "letter") == 0) g_document_type = FORMAT_LETTER; else if (strcmp(format, "article") == 0) g_document_type = FORMAT_ARTICLE; else if (strcmp(format, "slides") == 0) g_document_type = FORMAT_SLIDES; else if (strcmp(format, "apa") == 0) { g_document_type = FORMAT_APA; g_document_bibstyle = BIBSTYLE_APACITE; PushEnvironment(APACITE_MODE); diagnostics(WARNING, "Meager support for \\documentclass{apa}"); } else diagnostics(WARNING, "Document format <%s> unknown, using article format", format); if (options_with_spaces) { options = strdup_noblanks(options_with_spaces); free(options_with_spaces); setDocumentOptions(options); free(options); } free(format); } /****************************************************************************** purpose: handle \usepackage[option]{packagename} ******************************************************************************/ static void CmdUseOnepackage(char* package, char *options) { diagnostics(2, "CmdUseOnepackage \\usepackage[%s]{%s}", options, package); if (TryPackageIgnore(package) == TRUE) return; if (strcmp(package, "inputenc") == 0 && options) setPackageInputenc(options); else if (strcmp(package, "graphics") == 0) g_graphics_package = GRAPHICS_GRAPHICS; else if (strcmp(package, "graphicx") == 0) g_graphics_package = GRAPHICS_GRAPHICX; else if (strcmp(package, "isolatin1") == 0) setPackageInputenc("latin1"); else if (strcmp(package, "spanish") == 0) setPackageBabel(package); else if (strcmp(package, "babel") == 0) { if (options && *options) setPackageBabel(options); } else if ( strcmp(package, "german") == 0 || strcmp(package, "ngerman") == 0 || strcmp(package, "czech") == 0 || strcmp(package, "frenchb") == 0 || strcmp(package, "french") == 0) setPackageBabel(package); else if (strcmp(package, "palatino") == 0 || strcmp(package, "times") == 0 || strcmp(package, "bookman") == 0 || strcmp(package, "chancery") == 0 || strcmp(package, "courier") == 0 || strstr(package, "avant") || strstr(package, "newcen") || strstr(package, "helvet")) setPackageFont(package); else if (strcmp(package, "endfloat") == 0) { g_endfloat_figures = TRUE; g_endfloat_tables = TRUE; if (options && strstr(options,"nomarkers")) g_endfloat_markers = FALSE; } else if (strcmp(package, "cite") == 0) { set_sorted_citations(); set_compressed_citations(); } else if (strcmp(package, "subfigure") == 0) { diagnostics(WARNING, "partial support for subfigure package"); } else if (strcmp(package, "natbib") == 0) { if (options && strstr(options, "longnamesfirst")) set_longnamesfirst(); if (options && strstr(options, "super")) set_bibpunct_style_super(); if (options && strstr(options, "comma")) set_bibpunct_style_separator(","); if (options && strstr(options, "colon")) set_bibpunct_style_separator(":"); if (options && strstr(options, "round")) set_bibpunct_style_paren("(",")"); if (options && strstr(options, "square")) set_bibpunct_style_paren("[","]"); if (options && strstr(options, "curly")) set_bibpunct_style_paren("{","}"); if (options && strstr(options, "angle")) set_bibpunct_style_paren("<",">"); if (options && strstr(options, "sort")) set_sorted_citations(); if (options && strstr(options, "compress")) set_compressed_citations(); PushEnvironment(NATBIB_MODE); g_document_bibstyle = BIBSTYLE_NATBIB; } else if (strcmp(package, "geometry") == 0) { /* Set default values for geometry package */ g_preambleGeometry = TRUE; if(g_preambleTwoside==FALSE) { g_geomMargr = (int) (getLength("pagewidth") * 0.15); g_geomMargl = g_geomMargr; } else { g_geomMargr = (int) (getLength("pagewidth") * 0.3 * 0.4); g_geomMargl = (int) (getLength("pagewidth") * 0.3 * 0.6); } g_geomMargt = (int) (getLength("pageheight") * 0.3 * 0.4); g_geomMargb = (int) (getLength("pageheight") * 0.3 * 0.6); if (options) { ParseOptGeometry(options); } } else if (strcmp(package,"acronym") == 0) { UsePackageAcronym(options); } else if (strcmp(package,"ifpdf") == 0) { ConvertString("\\newif\\ifpdf"); } else { setDocumentOptions(package); } } /****************************************************************************** purpose: collect options from \geometry{options} ******************************************************************************/ void CmdGeometry(int code) { char *options; options = getBraceParam(); if (options) { diagnostics(2, "geometry command, argument %s\n", options); ParseOptGeometry(options); free(options); } } /********************************************************************************** purpose: parse options from \usepackage[options]{geometry} and \geometry{options} **********************************************************************************/ void ParseOptGeometry(char *options) { char *key, *value1, *value2, *next, *comma = ", ", *colon = ": "; while (options) { next = keyvalue_pair(options,&key,&value1); if (value1 == NULL) { diagnostics(2, "geometry package, single option=[%s]", key); ExecGeomOptions (key, NULL, NULL); } else if (*value1 == '{') { PushSource(NULL, value1); free(value1); value1 = getBraceParam(); PopSource(); value1 = strtok(value1, comma); value2 = strtok(NULL, comma); diagnostics(2, "option=%s with values %s and %s", key, value1, value2); ExecGeomOptions (key, value1, value2); free(value1); } else if (strchr(value1, ':')) { value1 = strtok(value1, colon); value2 = strtok(NULL, colon); diagnostics(2, "option=%s with ratio '%s:%s'", key, value1, value2); ExecGeomOptions (key, value1, value2); free(value1); } else { diagnostics(2, "geometry package, option=[%s], value=%s", key, value1); value2=value1; ExecGeomOptions (key, value1, value2); free(value1); } if (key) free(key); options = next; } } /****************************************************************************** purpose: implement geometry options ******************************************************************************/ void ExecGeomOptions (char *key, char *value1, char *value2) { int ratio_sum, margin_sum; char *value1b = NULL, *value2b = NULL; int dist1 = 0; int dist2 = 0; if (key == NULL) return; if (strstr(key, "ratio")) { if (strchr(value1, ':')) { /* each value is a ratio */ value1 = strtok(value1, ": "); value1b = strtok(NULL, ": "); value2 = strtok(value2, ": "); value2b = strtok(NULL, ": "); } else { /* each value is part of a single ratio */ dist1 = atoi(value1); dist2 = atoi(value2); diagnostics(3, "one ratio parameter, %d:%d", dist1, dist2); } } else if (strstr(key, "centering") == NULL) { dist1=getStringDimension(value1); dist2=getStringDimension(value2); diagnostics(3, "twips parameters, %d and %d", dist1, dist2); } if (strcmp(key, "vmargin") == 0) { diagnostics(3, "vmargin distance(top)=%d, distance (bottom)=%d twips", dist1, dist2); g_geomMargt = dist1; g_geomMargb = dist2; } else if (strcmp(key, "hmargin") == 0) { diagnostics(3, "hmargin distance(left)=%d, distance (right)=%d twips", dist1, dist2); g_geomMargl = dist1; g_geomMargr = dist2; } else if (strcmp(key, "margin") == 0) { ExecGeomOptions ("hmargin", value1, value2); ExecGeomOptions ("vmargin", value1, value2); } else if ((strcmp(key, "left") == 0) || (strcmp(key, "lmargin") == 0) || (strcmp(key, "inner") == 0) ) { g_geomMargl = dist1; } else if ((strcmp(key, "right") == 0) || (strcmp(key, "rmargin") == 0) || (strcmp(key, "outer") == 0) ) { g_geomMargr = dist1; } else if ((strcmp(key, "top") == 0) || (strcmp(key, "tmargin") == 0)) { g_geomMargt = dist1; } else if ((strcmp(key, "bottom") == 0) || (strcmp(key, "bmargin") == 0)) { g_geomMargb = dist1; } else if (strcmp(key, "hmarginratio") == 0) { ratio_sum = dist1 + dist2; margin_sum = g_geomMargl + g_geomMargr; g_geomMargl = (int) (((float) dist1 / (float) ratio_sum) * (float) margin_sum); diagnostics(3, "g_geomMargl %d", g_geomMargl); g_geomMargr = (int) (((float) dist2 / (float) ratio_sum) * (float) margin_sum); diagnostics(3, "g_geomMargr %d", g_geomMargr); } else if (strcmp(key, "vmarginratio") == 0) { ratio_sum = dist1 + dist2; margin_sum = g_geomMargt + g_geomMargb; g_geomMargt = (int) (((float) dist1 / (float) ratio_sum) * (float) margin_sum); g_geomMargb = (int) (((float) dist2 / (float) ratio_sum) * (float) margin_sum); } else if ((strcmp(key, "marginratio") == 0) || (strcmp(key, "ratio") == 0)) { ExecGeomOptions ("hmarginratio", value1, value1b); ExecGeomOptions ("vmarginratio", value2, value2b); } else if (strcmp(key, "hcentering") == 0) { ExecGeomOptions ("hmarginratio", "1", "1"); } else if (strcmp(key, "vcentering") == 0) { ExecGeomOptions ("vmarginratio", "1", "1"); } else if (strcmp(key, "centering") == 0) { ExecGeomOptions ("vmarginratio", "1", "1"); ExecGeomOptions ("hmarginratio", "1", "1"); } } /****************************************************************************** purpose: handle \usepackage[option]{pack1,pack2,pack3} ******************************************************************************/ void CmdUsepackage(int code) { char *package, *package_with_spaces; char *options, *options_with_spaces; char *p,*comma; options = NULL; options_with_spaces = getBracketParam(); package_with_spaces = getBraceParam(); package = strdup_noblanks(package_with_spaces); free(package_with_spaces); if (options_with_spaces) { options = strdup_noblanks(options_with_spaces); free(options_with_spaces); diagnostics(2, "Package {%s} with options [%s]", package, options); } else diagnostics(2, "Package {%s} with no options", package); /* process package names one at a time */ p = package; do { comma = strchr(p,','); if (comma) *comma = '\0'; /* replace ',' by '\0' */ CmdUseOnepackage(p,options); if (comma) p = comma+1; } while (comma != NULL); if (options) free(options); free(package); } void CmdTitle(int code) /****************************************************************************** purpose: saves title, author or date information ******************************************************************************/ { switch (code) { case TITLE_TITLE: g_preambleTitle = getBraceParam(); UpdateLineNumber(g_preambleTitle); break; case TITLE_AUTHOR: g_preambleAuthor = getBraceParam(); UpdateLineNumber(g_preambleAuthor); break; case TITLE_DATE: g_preambleDate = getBraceParam(); UpdateLineNumber(g_preambleDate); break; case TITLE_AFFILIATION: g_preambleAffiliation = getBraceParam(); UpdateLineNumber(g_preambleAffiliation); break; case TITLE_ABSTRACT: g_preambleAbstract = getBraceParam(); UpdateLineNumber(g_preambleAbstract); break; case TITLE_ACKNOWLEDGE: g_preambleAck = getBraceParam(); UpdateLineNumber(g_preambleAck); break; case TITLE_TITLEPAGE: g_preambleTitlepage = TRUE; break; } } void CmdTableOfContents(int code) { startParagraph("contents", PARAGRAPH_SECTION_TITLE); fprintRTF(" "); ConvertBabelName("CONTENTSNAME"); CmdEndParagraph(0); g_tableofcontents = TRUE; startParagraph("Normal", PARAGRAPH_GENERIC); CmdVspace(VSPACE_SMALL_SKIP); fprintRTF("{\\field{\\*\\fldinst TOC \\\\o \"1-3\" }{\\fldrslt }}\n"); CmdNewPage(NewPage); CmdEndParagraph(0); } /****************************************************************************** purpose: Handle \and in \author{A \and B} ******************************************************************************/ void CmdAnd(int code) { startParagraph("author", PARAGRAPH_GENERIC); } /****************************************************************************** purpose: Creates a title page based on saved values for author, title, and date ******************************************************************************/ void CmdMakeTitle(int code) { char title_begin[10]; char author_begin[10]; char date_begin[10]; diagnostics(4,"CmdMakeTitle with title ='%s'",g_preambleTitle); diagnostics(4,"CmdMakeTitle with author ='%s'",g_preambleAuthor); PushTrackLineNumber(FALSE); snprintf(title_begin, 10, "%s%2d", "\\fs", (30 * CurrentFontSize()) / 20); snprintf(author_begin, 10, "%s%2d", "\\fs", (24 * CurrentFontSize()) / 20); snprintf(date_begin, 10, "%s%2d", "\\fs", (24 * CurrentFontSize()) / 20); setAlignment(CENTERED); if (g_preambleTitle != NULL && strcmp(g_preambleTitle, "") != 0) { startParagraph("title", PARAGRAPH_GENERIC); ConvertString(g_preambleTitle); } if (g_preambleAuthor != NULL && strcmp(g_preambleAuthor, "") != 0) { startParagraph("author", PARAGRAPH_GENERIC); ConvertString(g_preambleAuthor); } if (g_preambleAffiliation != NULL && strcmp(g_preambleAffiliation, "") != 0) { startParagraph("author", PARAGRAPH_GENERIC); ConvertString(g_preambleAffiliation); } startParagraph("author", PARAGRAPH_GENERIC); if (g_preambleDate == NULL || strcmp(g_preambleDate, "") == 0) fprintRTF("\\chdate "); else ConvertString(g_preambleDate); if (g_preambleAck != NULL && strcmp(g_preambleAck, "") != 0) { startParagraph("author", PARAGRAPH_GENERIC); ConvertString(g_preambleAck); } CmdEndParagraph(0); setAlignment(JUSTIFIED); if (g_preambleAbstract != NULL && strcmp(g_preambleAbstract, "") != 0) { char *s = strdup_together3("{",g_preambleAbstract,"}"); CmdAbstract(ABSTRACT_PRELUDE_BEGIN); ConvertString("\\noindent"); ConvertString(s); CmdAbstract(ABSTRACT_PRELUDE_END); free(s); } if (g_preambleTitlepage) fprintRTF("\\page "); if (g_document_type == FORMAT_APA) startParagraph("Normal", PARAGRAPH_FIRST); PopTrackLineNumber(); } void CmdPreambleBeginEnd(int code) /*************************************************************************** purpose: catch missed \begin{document} command ***************************************************************************/ { char *cParam = getBraceParam(); if (strcmp(cParam, "document")) diagnostics(ERROR, "\\begin{%s} found before \\begin{document}. Giving up. Sorry", cParam); CallParamFunc(cParam, ON); free(cParam); } void PlainPagestyle(void) /****************************************************************************** LEG030598 purpose: sets centered page numbering at bottom in rtf-output globals : pagenumbering set to TRUE if pagenumbering is to occur, default ******************************************************************************/ { int fn = DefaultFontFamily(); pagenumbering = TRUE; if (g_preambleTwoside) { fprintRTF("\n{\\footerr"); fprintRTF("\\pard\\plain\\f%d\\qc", fn); fprintRTF("{\\field{\\*\\fldinst PAGE}{\\fldrslt ?}}\\par}"); fprintRTF("\n{\\footerl"); fprintRTF("\\pard\\plain\\f%d\\qc", fn); fprintRTF("{\\field{\\*\\fldinst PAGE}{\\fldrslt ?}}\\par}"); } else { fprintRTF("\n{\\footer"); fprintRTF("\\pard\\plain\\f%d\\qc", fn); fprintRTF("{\\field{\\*\\fldinst PAGE}{\\fldrslt ?}}\\par}"); } } void CmdPagestyle( /* @unused@ */ int code) /****************************************************************************** * LEG030598 purpose: sets page numbering in rtf-output parameter: globals : headings set to TRUE if the pagenumber is to go into the header pagenumbering set to TRUE if pagenumbering is to occur- default Produces latex-like headers and footers. Needs to be terminated for: - headings chapter, section information and page numbering - myheadings page nunmbering, combined with markboth, markright. ******************************************************************************/ { static char *style = ""; style = getBraceParam(); if (strcmp(style, "empty") == 0) { if (pagenumbering) { fprintRTF("{\\footer}"); pagenumbering = FALSE; } } else if (strcmp(style, "plain") == 0) PlainPagestyle(); else if (strcmp(style, "headings") == 0) { headings = TRUE; /* insert code to put section information in header, pagenumbering in header */ } else if (strcmp(style, "myheadings") == 0) { headings = TRUE; /*--- insert code to put empty section information in header, will be provided by markboth, markright pagenumbering in header */ } else { diagnostics(WARNING, "\\pagestyle{%s} unknown", style); } } void CmdHeader(int code) /****************************************************************************** purpose: converts the \markboth and \markright Command in Header information parameter: code: BOTH_SIDES, RIGHT_SIDE globals : twoside, ******************************************************************************/ { if (code == BOTH_SIDES) { if (g_preambleTwoside) { RtfHeader(LEFT_SIDE, NULL); RtfHeader(RIGHT_SIDE, NULL); } else diagnostics(WARNING, "\\markboth used in onesided documentstyle"); } else RtfHeader(BOTH_SIDES, NULL); } void CmdThePage(int code) /****************************************************************************** purpose: handles \thepage in headers and footers ******************************************************************************/ { diagnostics(4, "CmdThePage"); fprintRTF("\\chpgn "); } void RtfHeader(int where, char *what) /****************************************************************************** purpose: generates the header command in the rtf-output parameter: where: RIGHT_SIDE, LEFT_SIDE -handed page, BOTH_SIDES what: NULL - Convert from LaTeX input, else put "what" into rtf output ******************************************************************************/ { int fn = TexFontNumber("Roman"); switch (where) { case RIGHT_SIDE: fprintRTF("\n{\\headerr \\pard\\plain\\f%d ", fn); break; case LEFT_SIDE: fprintRTF("\n{\\headerl \\pard\\plain\\f%d ", fn); break; case BOTH_SIDES: fprintRTF("\n{\\header \\pard\\plain\\f%d ", fn); break; default: diagnostics(ERROR, "\n error -> called RtfHeader with illegal parameter\n "); } if (what == NULL) { diagnostics(4, "Entering Convert() from RtfHeader"); Convert(); diagnostics(4, "Exiting Convert() from RtfHeader"); fprintRTF("}"); } else fprintRTF("%s}", what); } void CmdHyphenation(int code) /****************************************************************************** purpose: discard all hyphenation hints since they really only make sense when used with TeX's hyphenation algorithms ******************************************************************************/ { char *hyphenparameter = getBraceParam(); free(hyphenparameter); } static void WriteFontHeader(void) /**************************************************************************** * purpose: writes fontnumbers and styles for headers into Rtf-File \fcharset0: ANSI coding (codepage 1252) \fcharset1: MAC coding \fcharset2: PC coding (codepage 437) \fcharset3: PCA coding (codepage 850) \fcharset204: Cyrillic (codepage 1251) \fcharset238: E. European (codepage 852, 1250) ****************************************************************************/ { int num=0; ConfigEntryT **config_handle; char *font_name; fprintRTF("{\\fonttbl"); config_handle = CfgStartIterate(); while ((config_handle = CfgNextByInsertion(FONT_A, config_handle)) != NULL) { font_name = (char *) (*config_handle)->RtfCommand; fprintRTF("{\\f%d\\fnil\\fcharset0 %s;}\n", num, font_name); num++; } fprintRTF("}\n"); } static void WriteStyleHeader(void) /**************************************************************************** -- | {\stylesheet{\fs20 \sbasedon222\snext10{keycode \shift...} A---| {\s1 \ar \fs20 \sbasedon0\snext1 FLUSHRIGHT}{\s2\fi...} | \sbasedon0snext2 IND:}} -- ... -- | \widowctrl\ftnbj\ftnrestart \sectd \linex0\endnhere | \pard\plain \fs20 This is Normal style. B---| \par \pard\plain \s1 | This is right justified. I call this style FLUSHRIGHT. | \par \pard\plain \s2 | This is an indented paragraph. I call this style IND... -- \par} ****************************************************************************/ { ConfigEntryT **style; const char *rtf; fprintRTF("{\\stylesheet\n"); style = CfgStartIterate(); while ((style = CfgNextByInsertion(STYLE_A, style)) != NULL) { rtf = (*style)->RtfCommand; diagnostics(5, "style <%s>=<%s>", (*style)->TexCommand, rtf); fprintRTF("{"); InsertBasicStyle(rtf, INSERT_STYLE_FOR_HEADER); fprintRTF(";}\n"); } fprintRTF("}\n"); } static void WritePageSize(void) /**************************************************************************** \paperw The paper width (the default is 12,240). \paperh The paper height (the default is 15,840). \margl The left margin (the default is 1,800). \margr The right margin (the default is 1,800). \margt The top margin (the default is 1,440). \margb The bottom margin (the default is 1,440). \facingp Facing pages (activates odd/even headers and gutters). \gutter The gutter width (the default is 0). \margmirror Switches margin definitions on left and right pages. \landscape Landscape format. \pgnstart The beginning page number (the default is 1). \widowctrl Widow control. \ftnbj Footnotes at bottom of page (bj = bottom justified) \aftnnar Endnotes numbered in arabic numerals \headery The header is twips from the top of the page (the default is 720). \footery The footer is twips from the bottom of the page (the default is 720). ****************************************************************************/ { int n; int family = DefaultFontFamily(); fprintRTF("\\paperw%d", getLength("pagewidth")); fprintRTF("\\paperh%d", getLength("pageheight")); if (g_preambleTwoside) fprintRTF("\\facingp"); if (g_preambleLandscape) fprintRTF("\\landscape"); if (g_preambleTwocolumn) fprintRTF("\\cols2\\colsx709"); /* two columns -- space between columns 709 */ if(!g_preambleGeometry){ n = getLength("hoffset") + 72 * 20 + getLength("oddsidemargin"); fprintRTF("\\margl%d", n); diagnostics(4, "Writepagesize left margin =%d pt", n / 20); n = getLength("pagewidth") - (n + getLength("textwidth")); fprintRTF("\\margr%d", n); diagnostics(4, "Writepagesize right margin =%d pt", n / 20); n = getLength("voffset") + 72 * 20 + getLength("topmargin") + getLength("headheight") + getLength("headsep"); fprintRTF("\\margt%d", n); diagnostics(4, "Writepagesize top margin =%d pt", n / 20); n = getLength("pageheight") - (n + getLength("textheight") + getLength("footskip")); fprintRTF("\\margb%d", n); diagnostics(4, "Writepagesize bottom margin =%d pt", n / 20); } else { /* Insert geometry dimensions here */ diagnostics(2, "Using geometry package"); diagnostics(2, "[l,r,t,b] = [%d,%d,%d,%d]",g_geomMargl,g_geomMargr, g_geomMargt,g_geomMargb); fprintRTF("\\margl%d", g_geomMargl); fprintRTF("\\margr%d", g_geomMargr); fprintRTF("\\margt%d", g_geomMargt); fprintRTF("\\margb%d", g_geomMargb); } fprintRTF("\\pgnstart%d", getCounter("page")); fprintRTF("\\widowctrl\\qj\\ftnbj\\f%d\\aftnnar\n", family); } static void WriteHeadFoot(void) /**************************************************************************** \headerl The header is on left pages only. \headerr The header is on right pages only. \headerf The header is on the first page only. \footerl The footer is on left pages only. \footerr The footer is on right pages only. \footerf The footer is on the first page only. ****************************************************************************/ { int family = DefaultFontFamily(); int size = DefaultFontSize(); int textwidth = getLength("textwidth"); if (g_preambleLFOOT || g_preambleCFOOT || g_preambleRFOOT) { fprintRTF("{\\footer\\pard\\plain\\tqc\\tx%d\\tqr\\tx%d ", textwidth / 2, textwidth); setTexMode(MODE_HORIZONTAL); if (g_preambleLFOOT) ConvertString(g_preambleLFOOT); fprintRTF("\\tab\n"); if (g_preambleCFOOT) ConvertString(g_preambleCFOOT); if (g_preambleRFOOT) { fprintRTF("\\tab\n"); ConvertString(g_preambleRFOOT); } fprintRTF("\\par}\n"); } else { fprintRTF("{\\footer\\pard\\plain\\f%d\\fs%d\\qc\\chpgn\\par}\n",family,size); } if (g_preambleLHEAD || g_preambleCHEAD || g_preambleRHEAD) { fprintRTF("{\\header\\pard\\plain\\tqc\\tx%d\\tqr\\tx%d ", textwidth / 2, textwidth); setTexMode(MODE_HORIZONTAL); if (g_preambleLHEAD) ConvertString(g_preambleLHEAD); fprintRTF("\\tab\n"); if (g_preambleCHEAD) ConvertString(g_preambleCHEAD); if (g_preambleRHEAD) { fprintRTF("\\tab\n"); ConvertString(g_preambleRHEAD); } fprintRTF("\\par}\n"); } setTexMode(MODE_VERTICAL); } void CmdHeadFoot(int code) /****************************************************************************** purpose: performs \cfoot, \lfoot, \rfoot, \chead, \lhead, \rhead commands (fancyhdr) adapted from code by Taupin in ltx2rtf ******************************************************************************/ { char *HeaderText = NULL; char *AlternText = NULL; AlternText = getBracketParam(); if (AlternText) free(AlternText); HeaderText = getBraceParam(); diagnostics(4, "CmdHeadFoot code=%d <%s>", code, HeaderText); switch (code) { case CFOOT: g_preambleCFOOT = HeaderText; break; case LFOOT: g_preambleLFOOT = HeaderText; break; case RFOOT: g_preambleRFOOT = HeaderText; break; case CHEAD: g_preambleCHEAD = HeaderText; break; case LHEAD: g_preambleLHEAD = HeaderText; break; case RHEAD: g_preambleRHEAD = HeaderText; break; } if (!g_processing_preamble) WriteHeadFoot(); } static void WriteColorTable(void) /**************************************************************************** '{' \colortbl + '}' \red ? & \green ? & \blue ? ';' ***************************************************************************/ { fprintRTF("{\\colortbl;\n"); fprintRTF("\\red0\\green0\\blue0;\n"); /* black */ fprintRTF("\\red0\\green0\\blue255;\n"); /* blue */ fprintRTF("\\red0\\green255\\blue255;\n"); /* cyan */ fprintRTF("\\red0\\green255\\blue0;\n"); /* green */ fprintRTF("\\red255\\green0\\blue255;\n"); /* magenta */ fprintRTF("\\red255\\green0\\blue0;\n"); /* red */ fprintRTF("\\red255\\green255\\blue0;\n"); /* yellow */ fprintRTF("\\red255\\green255\\blue255;\n"); /* white */ if (!gColorPackage) { fprintRTF("}\n"); return; } fprintRTF("\\red0\\green0\\blue128;\n"); /* dark blue */ fprintRTF("\\red0\\green128\\blue128;\n"); /* dark cyan */ fprintRTF("\\red0\\green128\\blue0;\n"); /* dark green */ fprintRTF("\\red128\\green0\\blue128;\n"); /* dark magenta */ fprintRTF("\\red128\\green0\\blue0;\n"); /* dark red */ fprintRTF("\\red128\\green128\\blue0;\n"); /* dark yellow */ fprintRTF("\\red128\\green128\\blue128;\n"); /* dark gray */ fprintRTF("\\red192\\green192\\blue192;\n"); /* light gray */ fprintRTF("\\red239\\green219\\blue197;\n"); /* Almond */ fprintRTF("\\red205\\green149\\blue117;\n"); /* Antique Brass */ fprintRTF("\\red253\\green217\\blue181;\n"); /* Apricot */ fprintRTF("\\red120\\green219\\blue226;\n"); /* Aquamarine */ fprintRTF("\\red135\\green169\\blue107;\n"); /* Asparagus */ fprintRTF("\\red255\\green164\\blue116;\n"); /* Atomic Tangerine */ fprintRTF("\\red250\\green231\\blue181;\n"); /* Banana Mania */ fprintRTF("\\red159\\green129\\blue112;\n"); /* Beaver */ fprintRTF("\\red253\\green124\\blue110;\n"); /* Bittersweet */ fprintRTF("\\red35\\green35\\blue35;\n"); /* Black */ fprintRTF("\\red31\\green117\\blue254;\n"); /* Blue */ fprintRTF("\\red173\\green173\\blue214;\n"); /* Blue Bell */ fprintRTF("\\red25\\green158\\blue189;\n"); /* Blue Green */ fprintRTF("\\red115\\green102\\blue189;\n"); /* Blue Violet */ fprintRTF("\\red222\\green93\\blue131;\n"); /* Blush */ fprintRTF("\\red203\\green65\\blue84;\n"); /* Brick Red */ fprintRTF("\\red180\\green103\\blue77;\n"); /* Brown */ fprintRTF("\\red255\\green127\\blue73;\n"); /* Burnt Orange */ fprintRTF("\\red234\\green126\\blue93;\n"); /* Burnt Sienna */ fprintRTF("\\red176\\green183\\blue198;\n"); /* Cadet Blue */ fprintRTF("\\red255\\green255\\blue153;\n"); /* Canary */ fprintRTF("\\red28\\green211\\blue162;\n"); /* Caribbean Green */ fprintRTF("\\red255\\green170\\blue204;\n"); /* Carnation Pink */ fprintRTF("\\red221\\green68\\blue146;\n"); /* Cerise */ fprintRTF("\\red29\\green172\\blue214;\n"); /* Cerulean */ fprintRTF("\\red188\\green93\\blue88;\n"); /* Chestnut */ fprintRTF("\\red221\\green148\\blue117;\n"); /* Copper */ fprintRTF("\\red154\\green206\\blue235;\n"); /* Cornflower */ fprintRTF("\\red255\\green188\\blue217;\n"); /* Cotton Candy */ fprintRTF("\\red253\\green219\\blue109;\n"); /* Dandelion */ fprintRTF("\\red43\\green108\\blue196;\n"); /* Denim */ fprintRTF("\\red239\\green205\\blue184;\n"); /* Desert Sand */ fprintRTF("\\red110\\green81\\blue96;\n"); /* Eggplant */ fprintRTF("\\red29\\green249\\blue20;\n"); /* Electric Lime */ fprintRTF("\\red113\\green188\\blue120;\n"); /* Fern */ fprintRTF("\\red109\\green174\\blue129;\n"); /* Forest Green */ fprintRTF("\\red195\\green100\\blue197;\n"); /* Fuchsia */ fprintRTF("\\red204\\green102\\blue102;\n"); /* Fuzzy Wuzzy Brown */ fprintRTF("\\red231\\green198\\blue151;\n"); /* Gold */ fprintRTF("\\red252\\green217\\blue117;\n"); /* Goldenrod */ fprintRTF("\\red168\\green228\\blue160;\n"); /* Granny Smith Apple */ fprintRTF("\\red149\\green145\\blue140;\n"); /* Gray */ fprintRTF("\\red28\\green172\\blue120;\n"); /* Green */ fprintRTF("\\red240\\green232\\blue145;\n"); /* Green Yellow */ fprintRTF("\\red255\\green29\\blue206;\n"); /* Hot Magenta */ fprintRTF("\\red178\\green236\\blue93;\n"); /* Inch Worm */ fprintRTF("\\red93\\green118\\blue203;\n"); /* Indigo */ fprintRTF("\\red202\\green55\\blue103;\n"); /* Jazzberry Jam */ fprintRTF("\\red59\\green176\\blue143;\n"); /* Jungle Green */ fprintRTF("\\red253\\green252\\blue116;\n"); /* Laser Lemon */ fprintRTF("\\red252\\green180\\blue213;\n"); /* Lavender */ fprintRTF("\\red255\\green189\\blue136;\n"); /* Macaroni and Cheese */ fprintRTF("\\red246\\green100\\blue175;\n"); /* Magenta */ fprintRTF("\\red205\\green74\\blue74;\n"); /* Mahogany */ fprintRTF("\\red151\\green154\\blue170;\n"); /* Manatee */ fprintRTF("\\red255\\green130\\blue67;\n"); /* Mango Tango */ fprintRTF("\\red200\\green56\\blue90;\n"); /* Maroon */ fprintRTF("\\red239\\green152\\blue170;\n"); /* Mauvelous */ fprintRTF("\\red253\\green188\\blue180;\n"); /* Melon */ fprintRTF("\\red26\\green72\\blue118;\n"); /* Midnight Blue */ fprintRTF("\\red48\\green186\\blue143;\n"); /* Mountain Meadow */ fprintRTF("\\red25\\green116\\blue210;\n"); /* Navy Blue */ fprintRTF("\\red255\\green163\\blue67;\n"); /* Neon Carrot */ fprintRTF("\\red186\\green184\\blue108;\n"); /* Olive Green */ fprintRTF("\\red255\\green117\\blue56;\n"); /* Orange */ fprintRTF("\\red230\\green168\\blue215;\n"); /* Orchid */ fprintRTF("\\red65\\green74\\blue76;\n"); /* Outer Space */ fprintRTF("\\red255\\green110\\blue74;\n"); /* Outrageous Orange */ fprintRTF("\\red28\\green169\\blue201;\n"); /* Pacific Blue */ fprintRTF("\\red255\\green207\\blue171;\n"); /* Peach */ fprintRTF("\\red197\\green208\\blue230;\n"); /* Periwinkle */ fprintRTF("\\red253\\green215\\blue228;\n"); /* Piggy Pink */ fprintRTF("\\red21\\green128\\blue120;\n"); /* Pine Green */ fprintRTF("\\red252\\green116\\blue253;\n"); /* Pink Flamingo */ fprintRTF("\\red247\\green128\\blue161;\n"); /* Pink Sherbet */ fprintRTF("\\red142\\green69\\blue133;\n"); /* Plum */ fprintRTF("\\red116\\green66\\blue200;\n"); /* Purple Heart */ fprintRTF("\\red157\\green129\\blue186;\n"); /* Purple MountainsŐ Majesty */ fprintRTF("\\red255\\green29\\blue206;\n"); /* Purple Pizzazz */ fprintRTF("\\red255\\green73\\blue108;\n"); /* Radical Red */ fprintRTF("\\red214\\green138\\blue89;\n"); /* Raw Sienna */ fprintRTF("\\red255\\green72\\blue208;\n"); /* Razzle Dazzle Rose */ fprintRTF("\\red227\\green37\\blue107;\n"); /* Razzmatazz */ fprintRTF("\\red238\\green32\\blue77;\n"); /* Red */ fprintRTF("\\red255\\green83\\blue73;\n"); /* Red Orange */ fprintRTF("\\red192\\green68\\blue143;\n"); /* Red Violet */ fprintRTF("\\red31\\green206\\blue203;\n"); /* Robin Egg Blue */ fprintRTF("\\red120\\green81\\blue169;\n"); /* Royal Purple */ fprintRTF("\\red255\\green155\\blue170;\n"); /* Salmon */ fprintRTF("\\red252\\green40\\blue71;\n"); /* Scarlet */ fprintRTF("\\red118\\green255\\blue122;\n"); /* Screamin Green */ fprintRTF("\\red159\\green226\\blue191;\n"); /* Sea Green */ fprintRTF("\\red165\\green105\\blue79;\n"); /* Sepia */ fprintRTF("\\red138\\green121\\blue93;\n"); /* Shadow */ fprintRTF("\\red69\\green206\\blue162;\n"); /* Shamrock */ fprintRTF("\\red251\\green126\\blue253;\n"); /* Shocking Pink */ fprintRTF("\\red205\\green197\\blue194;\n"); /* Silver */ fprintRTF("\\red128\\green218\\blue235;\n"); /* Sky Blue */ fprintRTF("\\red236\\green234\\blue190;\n"); /* Spring Green */ fprintRTF("\\red255\\green207\\blue72;\n"); /* Sunglow */ fprintRTF("\\red253\\green94\\blue83;\n"); /* Sunset Orange */ fprintRTF("\\red250\\green167\\blue108;\n"); /* Tan */ fprintRTF("\\red252\\green137\\blue172;\n"); /* Tickle Me Pink */ fprintRTF("\\red219\\green215\\blue210;\n"); /* Timberwolf */ fprintRTF("\\red23\\green128\\blue109;\n"); /* Tropical Rain Forest */ fprintRTF("\\red222\\green170\\blue136;\n"); /* Tumbleweed */ fprintRTF("\\red119\\green221\\blue231;\n"); /* Turquoise Blue */ fprintRTF("\\red253\\green252\\blue116;\n"); /* Unmellow Yellow */ fprintRTF("\\red146\\green110\\blue174;\n"); /* Violet (Purple) */ fprintRTF("\\red247\\green83\\blue148;\n"); /* Violet Red */ fprintRTF("\\red255\\green160\\blue137;\n"); /* Vivid Tangerine */ fprintRTF("\\red143\\green80\\blue157;\n"); /* Vivid Violet */ fprintRTF("\\red237\\green237\\blue237;\n"); /* White */ fprintRTF("\\red162\\green173\\blue208;\n"); /* Wild Blue Yonder */ fprintRTF("\\red255\\green67\\blue164;\n"); /* Wild Strawberry */ fprintRTF("\\red252\\green108\\blue133;\n"); /* Wild Watermelon */ fprintRTF("\\red205\\green164\\blue222;\n"); /* Wisteria */ fprintRTF("\\red252\\green232\\blue131;\n"); /* Yellow */ fprintRTF("\\red197\\green227\\blue132;\n"); /* Yellow Green */ fprintRTF("\\red255\\green182\\blue83;\n"); /* Yellow Orange */ fprintRTF("}\n"); } static void WriteInfo(void) /**************************************************************************** \title The title of the document \subject The subject of the document \author The author of the document \operator The person who last made changes to the document \keywords Selected keywords for the document \comment Comments; text is ignored \version The version number of the document \doccomm Comments displayed in Word's Summary Info dialog {\info {\title This is a page} {\doccomm Converted using}} ***************************************************************************/ { /* struct stat sb;*/ time_t tm; fprintRTF("{\\info\n{\\title Original file was %s}\n",CurrentFileName()); tm = time(NULL); fprintRTF("{\\doccomm Created using latex2rtf %s on %s}\n", Version, ctime(&tm)); /* if (fstat(CurrentFileDescriptor(),&sb)) {} */ /* fprintRTF("{\\creatim %s}\n", ctime(&tm)); */ fprintRTF("}\n"); } void WriteRtfHeader(void) /**************************************************************************** purpose: writes header info for the RTF file \rtf1 \deff? ? ? ? ? ? ****************************************************************************/ { int family = DefaultFontFamily(); /* int size = DefaultFontSize(); */ diagnostics(4, "Writing header for RTF file"); /* fprintRTF("{\\rtf1\\ansi\\fs%d\\deff%d\\deflang1024\n", size, family); */ fprintRTF("{\\rtf1\\ansi\\uc1\\deff%d\\deflang1024\n", family); WriteFontHeader(); WriteColorTable(); WriteStyleHeader(); WriteInfo(); WriteHeadFoot(); WritePageSize(); } latex2rtf-2.3.18/funct1.h0000777000175000017500000001121613664233372015306 0ustar wilfriedwilfried/* funct1.h Copyright (C) 2002-2010 The Free Software Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. This file is available from http://sourceforge.net/projects/latex2rtf/ */ #define THANKS 2 #define CMD_BEGIN 1 #define CMD_END 2 #define PAR_CENTER 1 #define PAR_RIGHT 2 #define PAR_LEFT 3 #define PAR_CENTERLINE 4 #define PAR_VCENTER 5 #define PAR_RAGGEDRIGHT 6 #define PAR_CENTERING 7 #define BOX_HBOX 1 #define BOX_VBOX 2 #define BOX_MBOX 3 #define BOX_FBOX 4 #define BOX_PARBOX 5 #define BOX_MAKEBOX 6 #define BOX_FRAMEBOX 7 #define VERBATIM_1 1 #define VERBATIM_2 2 #define VERBATIM_3 3 #define VERBATIM_4 4 #define VERB_VERB 1 #define VERB_STAR 2 #define VERB_URL 3 #define DEF_NEW 1 #define DEF_RENEW 2 #define DEF_DEF 3 void CmdNewDef(int code); void CmdNewEnvironment(int code); void CmdToday(int code); void CmdIgnore(int code); void Environment(int code); #define SECT_PART 1 #define SECT_CHAPTER 2 #define SECT_NORM 3 #define SECT_SUB 4 #define SECT_SUBSUB 5 #define SECT_SUBSUBSUB 6 #define SECT_SUBSUBSUBSUB 7 #define SECT_PART_STAR 11 #define SECT_CHAPTER_STAR 12 #define SECT_NORM_STAR 13 #define SECT_SUB_STAR 14 #define SECT_SUBSUB_STAR 15 #define SECT_SUBSUBSUB_STAR 16 #define SECT_SUBSUBSUBSUB_STAR 17 #define SECT_CAPTION 8 void CmdSection(int code); #define QUOTE 1 #define QUOTATION 2 void CmdQuote(int code); #define RESET_ITEM_COUNTER 0 void CmdList(int code); #define COUNTER_NEW 1 #define COUNTER_SET 2 #define COUNTER_ADD 3 #define COUNTER_VALUE 4 #define COUNTER_INCR 5 void CmdCounter(int code); #define LENGTH_NEW 1 #define LENGTH_SET 2 #define LENGTH_ADD 3 void CmdLength(int code); void CmdCaption(int code); void CmdBox(int code); void CmdVerb(int code); void CmdVerbatim(int code); void CmdVerse(int code); void TranslateGerman(void); void GermanPrint(int code); #define GP_CK 1 #define GP_LDBL 2 #define GP_L 3 #define GP_R 4 #define GP_RDBL 5 void CmdIgnoreLet(int code); void CmdIgnoreDef(int code); void CmdItem(int code); void CmdMinipage(int code); #define FIGURE 1 #define FIGURE_1 5 #define WRAP_FIGURE 6 #define IGNORE_HTMLONLY 1 #define IGNORE_PICTURE 2 #define IGNORE_MINIPAGE 3 #define IGNORE_RAWHTML 4 #define No_Opt_One_NormParam 01 #define No_Opt_Two_NormParam 02 #define No_Opt_Three_NormParam 03 #define One_Opt_No_NormParam 10 #define One_Opt_One_NormParam 11 #define One_Opt_Two_NormParam 12 #define One_Opt_Three_NormParam 13 #define Two_Opt_No_NormParam 20 #define Two_Opt_One_NormParam 21 #define Two_Opt_Two_NormParam 22 #define Two_Opt_Three_NormParam 23 #define One_Column 1 #define Two_Column 2 #define NewPage 1 #define NewColumn 2 #define ABSTRACT_SIMPLE 1 #define ABSTRACT_BEGIN_END 2 #define ABSTRACT_PRELUDE_BEGIN 3 #define ABSTRACT_PRELUDE_END 4 extern int g_processing_list_environment; void CmdIgnoreEnviron(int code); void CmdFigure(int code); void CmdSubFigure(int code); void Cmd_OptParam_Without_braces(int code); void CmdColumn(int code); void GetInputParam(char *, int); void CmdBottom(int code); void CmdAbstract(int code); void CmdKeywords(int code); void CmdAcknowledgments(int code); void CmdTitlepage(int code); void CmdAnnotation(int code); void CmdLink(int code); void CmdTextColor(int code); void GetRequiredParam(char *string, int size); void CmdQuad(int kk); void CmdColsep(int code); void CmdSpace(float kk); void CmdVerbosityLevel(int code); void CmdNonBreakSpace(int code); char *FormatUnitNumber(char *name); void CmdNewTheorem(int code); void CmdEndInput(int code); void CmdIf(int code); void CmdKern(int code); void CmdResizeBox(int code); void CmdTextFont(int code); void CmdThe(int code); void CmdRule(int code); void CmdTolerateEnviron(int code); void CmdIflatextortf(int code); void CmdNewif(int code); void CmdElse(int code); void CmdFi(int code); int TryConditionSet(char *command); void CmdAppendix(int code); void CmdAcronymItem(int code); void CmdLap(int code);